pound 0.1.6

low footprint, derive-first CLI parser
Documentation
1
2
3
4
5
6
7
8
9
10
use pound::Parse;

// `global` requires a named flag/option, not a positional
#[derive(Parse)]
struct Bad {
    #[pound(global)]
    name: String,
}

fn main() {}