optz
A no-magic option parser for Rust.
Usage
use ;
let optz = new
.option
.parse;
TODO
- Check types during parsing instead of at
get() - Remove anyhow dependency
A no-magic option parser for Rust.
use optz::{Opt, Optz};
let optz = Optz::new("myapp")
.option(
Opt::new("blah")
.description("An operation that performs blah")
.short("-b"))
.parse();
get()