canic-backup 0.68.2

Manifest and orchestration primitives for Canic deployment backup and restore
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Module: manifest
//!
//! Responsibility: define, validate, and summarize backup manifests.
//! Does not own: discovery, snapshot capture, restore execution, or storage IO.
//! Boundary: exposes backup manifest contracts to backup and restore flows.

mod error;
mod summary;
#[cfg(test)]
mod tests;
mod types;
mod validation;

pub use error::ManifestValidationError;
pub use summary::manifest_validation_summary;
pub use types::*;