rfc5321/lib.rs
1#[cfg(feature = "client")]
2pub mod client;
3pub mod client_types;
4pub mod parser;
5
6// Re-export TLS types from kumo-tls-helper for backwards compatibility
7#[cfg(feature = "client")]
8pub use kumo_tls_helper::TlsOptions;
9#[cfg(feature = "client")]
10pub use kumo_tls_helper::{AsyncReadAndWrite, BoxedAsyncReadAndWrite};
11
12#[cfg(feature = "client")]
13pub use client::*;
14pub use client_types::*;
15pub use parser::*;