invariant-biosynthesis 0.0.3

Biosynthesis safety engine for Invariant: synthesis bundles, D/P/C invariants, hazard screening, attestation. As of 0.2.0 this crate ships from the unified Invariant workspace at https://github.com/clay-good/invariant — the standalone invariant-biosynthesis repo has been merged in.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Core data models for the biosynthesis firewall.

/// Audit log entry types.
pub mod audit;
/// Synthesis bundle (the bio analog of a motion command).
pub mod bundle;
/// Bio-firewall ValidationError taxonomy (distinct from robotics; kept local).
pub mod error;
/// Signed execution token produced for approved bundles.
pub mod execution_token;
/// Bio profile schema.
pub mod profile;
/// Safety verdict types.
pub mod verdict;

// Re-export the shared authority data types from invariant-core.
pub use invariant_core::models::authority;