secunit_core/lib.rs
1//! `secunit-core` — registry parsing, cadence/scope resolution, evidence
2//! hashing, and manifest verification. Library-shaped so tests and the CLI
3//! can drive it without going through `clap`.
4
5pub mod evidence;
6pub mod model;
7pub mod registry;
8pub mod schemas;
9
10/// Schema version implemented by this crate. Bumped only on breaking
11/// on-disk changes; reads of older versions remain best-effort.
12pub const SCHEMA_VERSION: u32 = 1;