pub mod bind; pub mod iq; pub mod message; pub mod presence; pub mod sasl; pub mod starttls; pub mod stream; use quick_xml::events::{BytesDecl, Event}; lazy_static! { pub static ref DECLARATION: Event<'static> = Event::Decl(BytesDecl::new("1.0", None, None)); }