cipherstash-client 0.34.1-alpha.1

The official CipherStash SDK
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Module for structs used to configure various internal service clients.

pub mod docker_env_file;
pub mod errors;
pub mod idp_provider;
pub mod paths;
mod source;
pub mod vars;

pub use docker_env_file::DockerEnvFile;
pub use errors::ConfigError;
pub use source::{
    CipherStashConfigFile, CipherStashConfigFileBuilder, CipherStashSecretConfigFile,
    CipherStashSecretConfigFileBuilder, ConfigSource, FileSource, IntoFileSource, UserConfigSource,
};