diff options
author | 2025-03-24 21:01:21 +0000 | |
---|---|---|
committer | 2025-03-24 21:01:21 +0000 | |
commit | f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6 (patch) | |
tree | 85ee05ea2724104a9318894ec06d07d1dc8fcdfc /stanza/src/lib.rs | |
parent | 85a3093674506b60b31a023ae40df1d65b2f1fb4 (diff) | |
download | luz-f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6.tar.gz luz-f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6.tar.bz2 luz-f7e3ad972e6c10f9d94f2809d1355ee7dd8c7ff6.zip |
feat(stanza): feature gate xep-0199
Diffstat (limited to '')
-rw-r--r-- | stanza/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/stanza/src/lib.rs b/stanza/src/lib.rs index c8daaa5..85bce52 100644 --- a/stanza/src/lib.rs +++ b/stanza/src/lib.rs @@ -10,6 +10,7 @@ pub mod stream; pub mod stream_error; #[cfg(feature = "xep_0030")] pub mod xep_0030; +#[cfg(feature = "xep_0199")] pub mod xep_0199; #[cfg(feature = "xep_0203")] pub mod xep_0203; |