xmpp-rs/src/lib.rs

26 lines
433 B
Rust
Raw Normal View History

#![feature(try_from)]
2017-02-18 21:16:20 +00:00
extern crate xml;
extern crate xmpp_parsers;
2017-02-18 21:16:20 +00:00
extern crate openssl;
extern crate minidom;
2017-02-20 15:28:51 +00:00
extern crate base64;
extern crate sha_1;
pub extern crate jid;
2017-02-27 15:10:11 +00:00
pub extern crate sasl;
2017-02-18 21:16:20 +00:00
pub mod ns;
pub mod transport;
pub mod error;
2017-02-18 23:01:39 +00:00
pub mod client;
2017-05-24 23:22:40 +00:00
pub mod component;
2017-02-20 15:28:51 +00:00
pub mod plugin;
#[macro_use] pub mod plugin_macro;
2017-02-20 15:28:51 +00:00
pub mod event;
pub mod plugins;
pub mod connection;
pub mod util;
pub mod components;
mod locked_io;