Skip to main content

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