2019-03-11 19:00:25 +00:00
|
|
|
//! XMPP implementation with asynchronous I/O using Tokio.
|
2018-08-02 19:58:19 +02:00
|
|
|
|
2021-09-02 03:21:25 +02:00
|
|
|
#![deny(unsafe_code, missing_docs, bare_trait_objects)]
|
2020-03-16 00:34:46 +01:00
|
|
|
|
2018-12-18 19:04:31 +01:00
|
|
|
mod starttls;
|
|
|
|
|
mod stream_start;
|
2020-03-16 00:34:46 +01:00
|
|
|
mod xmpp_codec;
|
2019-01-29 01:52:07 +01:00
|
|
|
pub use crate::xmpp_codec::Packet;
|
2017-07-23 02:46:47 +02:00
|
|
|
mod event;
|
2020-05-30 00:14:32 +02:00
|
|
|
pub use event::Event;
|
|
|
|
|
mod client;
|
2018-12-18 19:04:31 +01:00
|
|
|
mod happy_eyeballs;
|
2020-03-18 01:12:48 +01:00
|
|
|
pub mod stream_features;
|
2020-05-30 00:14:32 +02:00
|
|
|
pub mod xmpp_stream;
|
2020-05-30 00:07:36 +02:00
|
|
|
pub use client::{async_client::Client as AsyncClient, simple_client::Client as SimpleClient};
|
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;
|
2022-03-22 23:29:25 +01:00
|
|
|
pub use crate::error::{AuthError, ConnecterError, Error, ParseError, ProtocolError};
|
2021-12-28 16:38:52 +01:00
|
|
|
pub use starttls::starttls;
|