aboutsummaryrefslogtreecommitdiffstats
path: root/src/stanza/mod.rs
diff options
context:
space:
mode:
authorLibravatar cel 🌸 <cel@bunny.garden>2024-12-03 03:51:26 +0000
committerLibravatar cel 🌸 <cel@bunny.garden>2024-12-03 03:51:26 +0000
commit7c2577d196c059ab6e2d5b0efe5e036bdad75be7 (patch)
tree7649b705f0af85a8b521d8fa849f9ed77e2c201c /src/stanza/mod.rs
parentbe198ca15bbaf633c1535db5bae7091520546aed (diff)
downloadluz-7c2577d196c059ab6e2d5b0efe5e036bdad75be7.tar.gz
luz-7c2577d196c059ab6e2d5b0efe5e036bdad75be7.tar.bz2
luz-7c2577d196c059ab6e2d5b0efe5e036bdad75be7.zip
implement remaining rfc6120 xml schemas
Diffstat (limited to '')
-rw-r--r--src/stanza/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/stanza/mod.rs b/src/stanza/mod.rs
index 84e80ab..32716d3 100644
--- a/src/stanza/mod.rs
+++ b/src/stanza/mod.rs
@@ -2,11 +2,10 @@ use peanuts::declaration::VersionInfo;
pub mod bind;
pub mod client;
-pub mod error;
pub mod sasl;
+pub mod stanza_error;
pub mod starttls;
pub mod stream;
+pub mod stream_error;
pub static XML_VERSION: VersionInfo = VersionInfo::One;
-
-pub use error::Error;