optz 0.1.0

A no-magic option parser for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# optz

A no-magic option parser for Rust.


## Usage

```rust
use optz::{Opt, Optz};

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