diff options
author | 2025-03-31 18:07:21 +0100 | |
---|---|---|
committer | 2025-03-31 18:07:21 +0100 | |
commit | b18c1cc2568dc116de5944d9829303ef8cc61b00 (patch) | |
tree | 3156d0c1114ae2d45df0f7a34924de4240a883bb /stanza/src/lib.rs | |
parent | 6d59d6690c3e5afd936f067b32e9998bc834728c (diff) | |
download | luz-b18c1cc2568dc116de5944d9829303ef8cc61b00.tar.gz luz-b18c1cc2568dc116de5944d9829303ef8cc61b00.tar.bz2 luz-b18c1cc2568dc116de5944d9829303ef8cc61b00.zip |
feat(stanza): xep-0004: data forms
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 9585353..85c5c84 100644 --- a/stanza/src/lib.rs +++ b/stanza/src/lib.rs @@ -9,6 +9,8 @@ pub mod stanza_error; pub mod starttls; pub mod stream; pub mod stream_error; +#[cfg(feature = "xep_0004")] +pub mod xep_0004; #[cfg(feature = "xep_0030")] pub mod xep_0030; #[cfg(feature = "xep_0199")] |