xmpp-rs/src/lib.rs

21 lines
525 B
Rust
Raw Normal View History

2018-09-08 01:42:23 +02:00
#![deny(unsafe_code, unused, missing_docs)]
2018-08-02 19:58:19 +02:00
//! XMPP implemeentation with asynchronous I/O using Tokio.
2018-09-06 17:46:06 +02:00
#[macro_use]
extern crate derive_error;
2017-06-02 00:42:57 +02:00
pub mod xmpp_codec;
pub mod xmpp_stream;
mod stream_start;
2017-06-05 00:42:35 +02:00
mod starttls;
2018-12-18 18:29:31 +01:00
pub use crate::starttls::StartTlsClient;
2017-07-13 02:56:02 +02:00
mod happy_eyeballs;
mod event;
2018-12-18 18:29:31 +01:00
pub use crate::event::Event;
2017-06-20 21:26:51 +02:00
mod client;
2018-12-18 18:29:31 +01:00
pub use crate::client::Client;
2017-07-22 01:59:51 +01:00
mod component;
2018-12-18 18:29:31 +01:00
pub use crate::component::Component;
2018-09-06 17:46:06 +02:00
mod error;
2018-12-18 18:29:31 +01:00
pub use crate::error::{Error, ProtocolError, AuthError, ConnecterError, ParseError, ParserError};