mod.rs

 1//! Provides a few SASL mechanisms.
 2
 3mod anonymous;
 4mod plain;
 5
 6#[cfg(feature = "scram")]
 7mod scram;
 8
 9pub use self::anonymous::Anonymous;
10pub use self::plain::Plain;
11
12#[cfg(feature = "scram")]
13pub use self::scram::Scram;