diff options
author | 2025-03-26 15:48:20 +0000 | |
---|---|---|
committer | 2025-03-26 15:48:20 +0000 | |
commit | 4d1be876f8bccf8018728d5ee474f91c256da5c9 (patch) | |
tree | 87bd55596221246e31b2f13942ce82f1014b146a /stanza/src/lib.rs | |
parent | bf677e1f9ce07e2fa8971c15b9a082cddbb40dec (diff) | |
download | luz-4d1be876f8bccf8018728d5ee474f91c256da5c9.tar.gz luz-4d1be876f8bccf8018728d5ee474f91c256da5c9.tar.bz2 luz-4d1be876f8bccf8018728d5ee474f91c256da5c9.zip |
feat(stanza): feature-gate rfc 6121 jabber:iq:roster
Diffstat (limited to 'stanza/src/lib.rs')
-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 85bce52..9585353 100644 --- a/stanza/src/lib.rs +++ b/stanza/src/lib.rs @@ -2,6 +2,7 @@ use peanuts::declaration::VersionInfo; pub mod bind; pub mod client; +#[cfg(feature = "rfc_6121")] pub mod roster; pub mod sasl; pub mod stanza_error; |