Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,21 @@ pub mod backup;
// exponential-backoff retry and verified via BLS signature checks.
pub mod webhook;

// Runtime configuration auditing and drift detection.
// Compares approved baselines with runtime snapshots to detect
// unexpected changes during blue-green or canary rollout gates.
pub mod config_audit;

// Multi-region replication and disaster-recovery primitives (issue #91).
// Dependency-free topology management with failover planning,
// canary analysis, and DR-test reporting.
pub mod replication;

// Secret rotation service for database credentials and API keys (issue #79).
// Versioned credential store with scheduled expiry, dual-ended grace windows,
// and atomic rotation that keeps old credentials live for in-flight requests.
pub mod secret_rotation;

// --- ERROR CODES ---

#[contracterror]
Expand Down
Loading
Loading