2017-06-02 23:58:31 +00:00
|
|
|
#[macro_use]
|
2017-06-01 22:42:57 +00:00
|
|
|
extern crate futures;
|
|
|
|
extern crate tokio_core;
|
2017-06-04 00:05:08 +00:00
|
|
|
extern crate tokio_io;
|
|
|
|
extern crate bytes;
|
2017-06-01 22:42:57 +00:00
|
|
|
extern crate xml;
|
2017-06-04 22:42:35 +00:00
|
|
|
extern crate rustls;
|
|
|
|
extern crate tokio_rustls;
|
2017-06-01 22:42:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
mod xmpp_codec;
|
2017-06-03 23:37:46 +00:00
|
|
|
pub use xmpp_codec::*;
|
|
|
|
mod tcp;
|
|
|
|
pub use tcp::*;
|
2017-06-04 22:42:35 +00:00
|
|
|
mod starttls;
|
|
|
|
pub use starttls::*;
|
2017-06-01 22:42:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
// type FullClient = sasl::Client<StartTLS<TCPConnection>>
|
|
|
|
|