From 03764f8cedb3f0a55a61be0f0a59faaa6357a83a Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Wed, 4 Dec 2024 17:40:56 +0000 Subject: rename jabber to jabber_stream --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib.rs') diff --git a/src/lib.rs b/src/lib.rs index e55d3f5..43aa581 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,14 +5,14 @@ pub mod client; pub mod connection; pub mod error; -pub mod jabber; +pub mod jabber_stream; pub mod jid; pub mod stanza; pub use connection::Connection; use connection::Tls; pub use error::Error; -pub use jabber::JabberStream; +pub use jabber_stream::JabberStream; pub use jid::JID; pub type Result = std::result::Result; -- cgit