Skip to main content

runx_runtime/
lib.rs

1//! Native Rust runtime placeholder for runx execution and adapters.
2//!
3//! This crate is intentionally empty of runtime behavior until the pure crates
4//! and feature-parity matrix are ready. Adapter families are planned as runtime
5//! features instead of a separate crate.
6
7pub const PACKAGE_NAME: &str = env!("CARGO_PKG_NAME");
8pub const ROLE: &str = "native runtime for execution, adapter features, MCP, and sandboxing";
9pub const IS_PLACEHOLDER: bool = true;
10
11#[cfg(test)]
12mod tests {
13    #[test]
14    fn package_name_matches() {
15        assert_eq!(crate::PACKAGE_NAME, "runx-runtime");
16    }
17}