The Rust SASL framework, aimed at both middleware-style protocol implementation and application code.
Designed to make SASL authentication simple and safe while handing as much control to the user as possible.
//! Traits, helpers, and type definitions for core I/O functionality.
//!//! For the time being this is a direct re-export of `std::io`, existing as redirection so the
//! remaining rsasl code can use `crate::io` without worrying about the specifics.
#[cfg(feature ="std")]pubusestd::io::*;#[cfg(not(feature ="std"))]compile_error!("The \"std\" feature must be enabled for rsasl to function!");