xmpp-rs/src/lib.rs

16 lines
223 B
Rust
Raw Normal View History

2017-02-18 21:16:20 +00:00
extern crate xml;
extern crate openssl;
extern crate minidom;
2017-02-20 15:28:51 +00:00
extern crate base64;
2017-02-18 21:16:20 +00:00
pub mod ns;
pub mod transport;
pub mod error;
pub mod jid;
2017-02-18 23:01:39 +00:00
pub mod client;
2017-02-20 15:28:51 +00:00
pub mod plugin;
pub mod event;
pub mod plugins;
mod locked_io;