Skip to main content

runx_parser/
lib.rs

1//! Pure Rust parser parity crate for runx skills, graphs, and tools.
2//!
3//! This crate is a placeholder. No parsing behavior is implemented yet.
4
5pub const PACKAGE_NAME: &str = env!("CARGO_PKG_NAME");
6pub const ROLE: &str = "pure parser parity for skills, graphs, and tool manifests";
7pub const IS_PLACEHOLDER: bool = true;
8
9#[cfg(test)]
10mod tests {
11    #[test]
12    fn package_name_matches() {
13        assert_eq!(crate::PACKAGE_NAME, "runx-parser");
14    }
15}