The Open Knowledge Format (OKF) v0.2 in pure Rust: the `okf` CLI (validate, lint, inspect, index, graph, format, diff) plus the full okf-core and okf-validator library APIs re-exported.
//! Binary entry point for the `okf` CLI. The implementation lives in the
//! library's `cli` module so the `cargo-okf` subcommand can reuse it.
usestd::process::ExitCode;fnmain()-> ExitCode{let args:Vec<String>=std::env::args().skip(1).collect();okf::cli::run(&args)}