aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2024-12-04 17:40:56 +0000
committerLibravatar cel 🌸 <cel@bunny.garden>2024-12-04 17:40:56 +0000
commit03764f8cedb3f0a55a61be0f0a59faaa6357a83a (patch)
treec6a257abb130ed2a3dfb520884d3b21845bd6b09
parent21f10a0b43c4ab1429b274b386065c023c661ab0 (diff)
downloadluz-03764f8cedb3f0a55a61be0f0a59faaa6357a83a.tar.gz
luz-03764f8cedb3f0a55a61be0f0a59faaa6357a83a.tar.bz2
luz-03764f8cedb3f0a55a61be0f0a59faaa6357a83a.zip
rename jabber to jabber_stream
-rw-r--r--src/jabber_stream.rs (renamed from src/jabber.rs)0
-rw-r--r--src/lib.rs4
2 files changed, 2 insertions, 2 deletions
diff --git a/src/jabber.rs b/src/jabber_stream.rs
index 8ee45b5..8ee45b5 100644
--- a/src/jabber.rs
+++ b/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<T> = std::result::Result<T, Error>;