Skip to main content

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;
10mod hash;
11pub mod journal;
12pub mod manifest;
13pub mod persistence;
14pub mod plan;
15pub mod registry;
16pub mod restore;
17pub mod runner;
18pub mod snapshot;
19#[cfg(test)]
20mod test_support;
21pub mod timestamp;
22pub mod topology;