Skip to main content

runx_core/
lib.rs

1//! Pure Rust parity kernel for runx decisions.
2//!
3//! This crate is a placeholder. TypeScript remains the source of truth until
4//! state-machine and policy parity fixtures pass in both languages.
5
6pub const PACKAGE_NAME: &str = env!("CARGO_PKG_NAME");
7pub const ROLE: &str = "pure state-machine and policy parity kernel";
8pub const IS_PLACEHOLDER: bool = true;
9
10#[cfg(test)]
11mod tests {
12    #[test]
13    fn package_name_matches() {
14        assert_eq!(crate::PACKAGE_NAME, "runx-core");
15    }
16}