Skip to main content

secunit_core/
evidence.rs

1//! Run lifecycle: prepare, capture (the agent's job), finalize, abort,
2//! resume; plus chain verification.
3//!
4//! The seam is the directory layout under `evidence/<y>/<q>/<id>/<run-id>/`
5//! described in `docs/storage.md`. The binary owns every state-changing
6//! filesystem operation; the agent only writes data files into the slots
7//! prepare carved out.
8
9pub mod hasher;
10pub mod lock;
11pub mod manifest;
12pub mod runner;
13pub mod verifier;