isolate scram behind a compilation feature
This commit is contained in:
parent
4b9f2376af
commit
a8f8744e21
6 changed files with 25 additions and 2 deletions
|
|
@ -2,8 +2,12 @@
|
|||
|
||||
mod anonymous;
|
||||
mod plain;
|
||||
|
||||
#[cfg(feature = "scram")]
|
||||
mod scram;
|
||||
|
||||
pub use self::anonymous::Anonymous;
|
||||
pub use self::plain::Plain;
|
||||
|
||||
#[cfg(feature = "scram")]
|
||||
pub use self::scram::Scram;
|
||||
|
|
|
|||
Loading…
Reference in a new issue