canic_backup/lib.rs
1//! Host-side fleet backup and restore primitives for Canic.
2//!
3//! This crate intentionally keeps backup-run provenance and restore contracts
4//! outside canister runtime state. Root registry storage, topology cascade DTOs,
5//! and backup manifests remain separate boundary types.
6
7pub mod artifacts;
8pub mod discovery;
9pub mod execution;
10pub(crate) mod hash;
11pub mod journal;
12pub mod manifest;
13pub mod persistence;
14pub mod plan;
15pub mod restore;
16pub mod snapshot;
17#[cfg(test)]
18mod test_support;
19pub mod timestamp;
20pub mod topology;