xmpp-rs/tokio-xmpp/src/lib.rs

49 lines
1.2 KiB
Rust
Raw Normal View History

2019-03-11 19:00:25 +00:00
//! XMPP implementation with asynchronous I/O using Tokio.
2018-08-02 17:58:19 +00:00
#![deny(unsafe_code, missing_docs, bare_trait_objects)]
2020-03-15 23:34:46 +00:00
#[cfg(all(
not(xmpprs_doc_build),
not(doc),
feature = "tls-native",
feature = "tls-rust"
))]
compile_error!("Both tls-native and tls-rust features can't be enabled at the same time.");
#[cfg(all(
feature = "starttls",
not(feature = "tls-native"),
not(feature = "tls-rust")
))]
compile_error!(
"when starttls feature enabled one of tls-native and tls-rust features must be enabled."
);
#[cfg(feature = "starttls")]
pub mod starttls;
2018-12-18 18:04:31 +00:00
mod stream_start;
#[cfg(feature = "insecure-tcp")]
pub mod tcp;
2020-03-15 23:34:46 +00:00
mod xmpp_codec;
2024-06-15 13:21:20 +00:00
pub use crate::xmpp_codec::{Packet, XmppCodec};
mod event;
2020-05-29 22:14:32 +00:00
pub use event::Event;
mod client;
pub mod connect;
pub mod stream_features;
2020-05-29 22:14:32 +00:00
pub mod xmpp_stream;
pub use client::{
async_client::{Client as AsyncClient, Config as AsyncConfig},
simple_client::Client as SimpleClient,
};
2017-07-22 00:59:51 +00:00
mod component;
2018-12-18 17:29:31 +00:00
pub use crate::component::Component;
2018-09-06 15:46:06 +00:00
mod error;
pub use crate::error::{AuthError, Error, ParseError, ProtocolError};
// Re-exports
pub use minidom::Element;
pub use xmpp_parsers as parsers;
pub use xmpp_parsers::{BareJid, FullJid, Jid, JidParseError};