reinhardt-conf 0.3.2

Configuration management framework for Reinhardt - Django-inspired settings with encryption and secrets management
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Secret management infrastructure.
//!
//! Provides secret storage, retrieval, rotation, and audit capabilities
//! through pluggable provider backends.

/// Audit logging for secret access operations.
pub mod audit;
/// Secret provider backend implementations.
pub mod providers;
/// Automatic secret rotation support.
pub mod rotation;
/// Core secret types, errors, and traits.
pub mod types;

pub use types::*;