runx-parser 0.0.1

Pure Rust parser parity crate for runx skills, graphs, and tool manifests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Pure Rust parser parity crate for runx skills, graphs, and tools.
//!
//! This crate is a placeholder. No parsing behavior is implemented yet.

pub const PACKAGE_NAME: &str = env!("CARGO_PKG_NAME");
pub const ROLE: &str = "pure parser parity for skills, graphs, and tool manifests";
pub const IS_PLACEHOLDER: bool = true;

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