From 03764f8cedb3f0a55a61be0f0a59faaa6357a83a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?cel=20=F0=9F=8C=B8?= Date: Wed, 4 Dec 2024 17:40:56 +0000 Subject: [PATCH] rename jabber to jabber_stream --- src/{jabber.rs => jabber_stream.rs} | 0 src/lib.rs | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) rename src/{jabber.rs => jabber_stream.rs} (100%) diff --git a/src/jabber.rs b/src/jabber_stream.rs similarity index 100% rename from src/jabber.rs rename to src/jabber_stream.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;