xmpp-rs/src/lib.rs
2017-06-20 21:27:10 +02:00

26 lines
484 B
Rust

#[macro_use]
extern crate futures;
extern crate tokio_core;
extern crate tokio_io;
extern crate bytes;
extern crate xml;
extern crate native_tls;
extern crate tokio_tls;
extern crate sasl;
extern crate rustc_serialize as serialize;
extern crate jid;
pub mod xmpp_codec;
pub mod xmpp_stream;
mod stream_start;
mod tcp;
pub use tcp::*;
mod starttls;
pub use starttls::*;
mod client;
pub use client::{Client, ClientEvent};
// type FullClient = sasl::Client<StartTLS<TCPConnection>>