siphon-secrets 0.1.1

Secret management with multiple backend support for Siphon
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Secret backend implementations

#[cfg(feature = "base64")]
pub mod base64;

#[cfg(feature = "env")]
pub mod env;

#[cfg(feature = "file")]
pub mod file;

#[cfg(feature = "keychain")]
pub mod keychain;

#[cfg(feature = "onepassword")]
pub mod onepassword;