1 2 3 4 5 6 7 8
//! Multiple backends for storing authentication data. pub mod file; #[cfg(feature = "keyring")] pub mod keyring; pub mod memory; #[cfg(feature = "netrc-rs")] pub mod netrc;