Skip to main content

runx_receipts/
lib.rs

1//! Pure Rust receipt model and verification parity for runx.
2//!
3//! This crate is a placeholder. The TypeScript receipt implementation remains
4//! authoritative until receipt fixtures pass in both languages.
5
6pub const PACKAGE_NAME: &str = env!("CARGO_PKG_NAME");
7pub const ROLE: &str = "receipt model, canonicalization, and verification parity";
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-receipts");
15    }
16}