optz 0.3.0

A no-magic option parser for Rust
Documentation

optz

A no-magic option parser for Rust.

Usage

use optz::{Opt, Optz};

let optz = Optz::new("myapp")
  .option(
    Opt::new("blah")
      .description("An operation that performs blah")
      .short("-b"))
  .parse();

TODO

  • Check types during parsing instead of at get()
  • Remove anyhow dependency