xchecker 1.2.0

Spec pipeline with receipts and gateable JSON contracts
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! xchecker CLI binary
//!
//! This is the minimal entrypoint for the xchecker CLI.
//! All logic is in the library; main.rs only invokes cli::run().

fn main() {
    // cli::run() handles ALL output including errors
    // Returns Result<(), ExitCode> - main only maps to process exit
    if let Err(code) = xchecker::cli::run() {
        std::process::exit(code.as_i32());
    }
}