1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#[macro_use]extern crate log;
extern crate futures;
extern crate tokio_core;
extern crate native_tls;
extern crate tokio_tls;
extern crate tokio_io;
extern crate bytes;
extern crate base64;
#[macro_use] extern crate lazy_static;
extern crate regex;
extern crate elementtree;


pub mod default;
pub mod config;
pub mod events;
pub mod jid;
pub mod stream;
pub mod codec;
pub mod stanza;
pub mod connection;
pub mod ns;
pub mod transport;
pub mod credentials;
pub mod parser;

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
    }
}