rsasl 2.3.0

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.
Documentation
1
2
3
4
5
6
7
8
9
//! 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")]
pub use std::io::*;
#[cfg(not(feature = "std"))]
compile_error!("The \"std\" feature must be enabled for rsasl to function!");