secunit-core 0.7.1

Registry, evidence, hashing, and verification primitives for secunit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! `secunit-core` — registry parsing, cadence/scope resolution, evidence
//! hashing, and manifest verification. Library-shaped so tests and the CLI
//! can drive it without going through `clap`.

pub mod evidence;
pub mod model;
pub mod registry;
pub mod reports;
pub mod risks;
pub mod schemas;
pub mod skills;
pub mod wisp;

/// Schema version implemented by this crate. Bumped only on breaking
/// on-disk changes; reads of older versions remain best-effort.
pub const SCHEMA_VERSION: u32 = 1;