Skip to main content

runx_core/
lib.rs

1//! Pure Rust parity kernel for runx decisions.
2//!
3//! This crate owns the pure Rust decision domains. Keep IO, adapter, runtime,
4//! and CLI presentation concerns outside this boundary.
5
6pub mod kernel_eval;
7pub mod policy;
8pub mod serde_conventions;
9pub mod state_machine;