runx-core 0.0.1

Pure Rust parity kernel for runx state-machine and policy decisions.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Pure Rust parity kernel for runx decisions.
//!
//! This crate is a placeholder. TypeScript remains the source of truth until
//! state-machine and policy parity fixtures pass in both languages.

pub const PACKAGE_NAME: &str = env!("CARGO_PKG_NAME");
pub const ROLE: &str = "pure state-machine and policy parity kernel";
pub const IS_PLACEHOLDER: bool = true;

#[cfg(test)]
mod tests {
    #[test]
    fn package_name_matches() {
        assert_eq!(crate::PACKAGE_NAME, "runx-core");
    }
}