diff options
author | 2025-04-03 05:30:35 +0100 | |
---|---|---|
committer | 2025-04-03 05:30:35 +0100 | |
commit | 6664a9df01b8b6f89e72f9568f90ad7397ceae36 (patch) | |
tree | c221139702270cf9f413d579812989e37f346fc6 /stanza/src/lib.rs | |
parent | 91f1994af940085d5d475a97820900ebbf0eb553 (diff) | |
download | luz-6664a9df01b8b6f89e72f9568f90ad7397ceae36.tar.gz luz-6664a9df01b8b6f89e72f9568f90ad7397ceae36.tar.bz2 luz-6664a9df01b8b6f89e72f9568f90ad7397ceae36.zip |
feat(stanza): xep-0300: use of cryptographic hash functions
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 5474aee..bc8d59a 100644 --- a/stanza/src/lib.rs +++ b/stanza/src/lib.rs @@ -25,5 +25,7 @@ pub mod xep_0172; pub mod xep_0199; #[cfg(feature = "xep_0203")] pub mod xep_0203; +#[cfg(feature = "xep_0300")] +pub mod xep_0300; pub static XML_VERSION: VersionInfo = VersionInfo::One; |