aboutsummaryrefslogtreecommitdiffstats
path: root/stanza/src/lib.rs
blob: c8daaa546a40a48b764b9f5c42efa07782e41bfd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use peanuts::declaration::VersionInfo;

pub mod bind;
pub mod client;
pub mod roster;
pub mod sasl;
pub mod stanza_error;
pub mod starttls;
pub mod stream;
pub mod stream_error;
#[cfg(feature = "xep_0030")]
pub mod xep_0030;
pub mod xep_0199;
#[cfg(feature = "xep_0203")]
pub mod xep_0203;

pub static XML_VERSION: VersionInfo = VersionInfo::One;