okf 0.2.6

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.
Documentation
1
2
3
4
5
6
7
8
9
//! Binary entry point for the `okf` CLI. The implementation lives in the
//! library's `cli` module so the `cargo-okf` subcommand can reuse it.

use std::process::ExitCode;

fn main() -> ExitCode {
    let args: Vec<String> = std::env::args().skip(1).collect();
    okf::cli::run(&args)
}