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-07-17 18:53:00 +00:00
|
|
|
extern crate xml5ever;
|
|
|
|
extern crate tendril;
|
|
|
|
extern crate minidom;
|
2017-06-06 00:03:38 +00:00
|
|
|
extern crate native_tls;
|
|
|
|
extern crate tokio_tls;
|
2017-06-05 23:29:20 +00:00
|
|
|
extern crate sasl;
|
|
|
|
extern crate rustc_serialize as serialize;
|
2017-06-13 23:55:56 +00:00
|
|
|
extern crate jid;
|
2017-07-13 00:56:02 +00:00
|
|
|
extern crate domain;
|
2017-06-01 22:42:57 +00:00
|
|
|
|
2017-06-05 00:50:22 +00:00
|
|
|
pub mod xmpp_codec;
|
|
|
|
pub mod xmpp_stream;
|
|
|
|
mod stream_start;
|
2017-06-04 22:42:35 +00:00
|
|
|
mod starttls;
|
2017-07-18 20:54:10 +00:00
|
|
|
pub use starttls::StartTlsClient;
|
2017-07-13 00:56:02 +00:00
|
|
|
mod happy_eyeballs;
|
2017-06-20 19:26:51 +00:00
|
|
|
mod client;
|
|
|
|
pub use client::{Client, ClientEvent};
|