reinhardt-conf 0.3.2

Configuration management framework for Reinhardt - Django-inspired settings with encryption and secrets management
Documentation
//! Secret provider implementations
//!
//! Various backends for storing and retrieving secrets:
//! - HashiCorp Vault
//! - AWS Secrets Manager
//! - Azure Key Vault
//! - Environment variables
//! - Memory (for testing)

pub mod env;
pub mod memory;

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

#[cfg(feature = "aws-secrets")]
pub mod aws;

pub mod azure;