diff options
author | 2025-03-24 12:22:08 +0000 | |
---|---|---|
committer | 2025-03-24 12:31:01 +0000 | |
commit | 54ca5eb3155d1cfcadced7c0a3a405ce1d51ecf6 (patch) | |
tree | 49a59ebae7bd7b58caaa748a20b745397c37c2e3 /stanza/src/lib.rs | |
parent | 9f0a480bc4c6ee3ac8c707b05d40529afef0d78f (diff) | |
download | luz-54ca5eb3155d1cfcadced7c0a3a405ce1d51ecf6.tar.gz luz-54ca5eb3155d1cfcadced7c0a3a405ce1d51ecf6.tar.bz2 luz-54ca5eb3155d1cfcadced7c0a3a405ce1d51ecf6.zip |
feat(stanza): xep-0203
Diffstat (limited to 'stanza/src/lib.rs')
-rw-r--r-- | stanza/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/stanza/src/lib.rs b/stanza/src/lib.rs index 4120207..4629c07 100644 --- a/stanza/src/lib.rs +++ b/stanza/src/lib.rs @@ -9,5 +9,7 @@ pub mod starttls; pub mod stream; pub mod stream_error; pub mod xep_0199; +#[cfg(feature = "xep_0203")] +pub mod xep_0203; pub static XML_VERSION: VersionInfo = VersionInfo::One; |