diff options
author | 2025-04-01 08:27:33 +0100 | |
---|---|---|
committer | 2025-04-01 08:27:33 +0100 | |
commit | 132d932e6264774ad7d6eab9f52719848c5c91bb (patch) | |
tree | 35eb26a46e3da3e7a6451d6fe49f413c00458199 /stanza/src/lib.rs | |
parent | b18c1cc2568dc116de5944d9829303ef8cc61b00 (diff) | |
download | luz-132d932e6264774ad7d6eab9f52719848c5c91bb.tar.gz luz-132d932e6264774ad7d6eab9f52719848c5c91bb.tar.bz2 luz-132d932e6264774ad7d6eab9f52719848c5c91bb.zip |
feat(stanza): xep-0060: pubsub
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 85c5c84..f4c0899 100644 --- a/stanza/src/lib.rs +++ b/stanza/src/lib.rs @@ -13,6 +13,8 @@ pub mod stream_error; pub mod xep_0004; #[cfg(feature = "xep_0030")] pub mod xep_0030; +#[cfg(feature = "xep_0060")] +pub mod xep_0060; #[cfg(feature = "xep_0199")] pub mod xep_0199; #[cfg(feature = "xep_0203")] |