2017-06-02 00:42:57 +02:00
|
|
|
extern crate futures;
|
|
|
|
|
extern crate tokio_core;
|
2017-06-04 02:05:08 +02:00
|
|
|
extern crate tokio_io;
|
|
|
|
|
extern crate bytes;
|
2017-07-17 20:53:00 +02:00
|
|
|
extern crate xml5ever;
|
|
|
|
|
extern crate tendril;
|
|
|
|
|
extern crate minidom;
|
2017-06-06 02:03:38 +02:00
|
|
|
extern crate native_tls;
|
|
|
|
|
extern crate tokio_tls;
|
2017-06-06 01:29:20 +02:00
|
|
|
extern crate sasl;
|
|
|
|
|
extern crate rustc_serialize as serialize;
|
2017-06-14 01:55:56 +02:00
|
|
|
extern crate jid;
|
2017-07-13 02:56:02 +02:00
|
|
|
extern crate domain;
|
2017-07-21 00:39:29 +02:00
|
|
|
extern crate idna;
|
2017-07-22 01:59:51 +01:00
|
|
|
extern crate sha_1;
|
2017-06-02 00:42:57 +02:00
|
|
|
|
2017-06-05 02:50:22 +02:00
|
|
|
pub mod xmpp_codec;
|
|
|
|
|
pub mod xmpp_stream;
|
|
|
|
|
mod stream_start;
|
2017-06-05 00:42:35 +02:00
|
|
|
mod starttls;
|
2017-07-18 21:54:10 +01:00
|
|
|
pub use starttls::StartTlsClient;
|
2017-07-13 02:56:02 +02:00
|
|
|
mod happy_eyeballs;
|
2017-07-23 02:46:47 +02:00
|
|
|
mod event;
|
|
|
|
|
pub use event::Event;
|
2017-06-20 21:26:51 +02:00
|
|
|
mod client;
|
2017-07-23 02:46:47 +02:00
|
|
|
pub use client::Client;
|
2017-07-22 01:59:51 +01:00
|
|
|
mod component;
|
2017-07-23 02:46:47 +02:00
|
|
|
pub use component::Component;
|