ipld-schema 0.3.2

IPLD Schema tools
Documentation
#![cfg(feature = "build-binary")]

use ipld_schema::{run, Opt};
use structopt::StructOpt;

fn main() -> Result<(), ()> {
    run(&Opt::from_args(), &mut std::io::stdout())?;
    Ok(())
}