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 risks;
9pub mod schemas;
10pub mod skills;
11pub mod wisp;
12
13/// Schema version implemented by this crate. Bumped only on breaking
14/// on-disk changes; reads of older versions remain best-effort.
15pub const SCHEMA_VERSION: u32 = 1;