clier-0.4.3 has been yanked.
Clier
Command Line Argument Parser for Rust
Clier is a command line argument parser and command framework for rust.
Parser
To start a new cli projects run:
$ cargo new demo
$ cargo add clier
Then define your CLI in main.rs:
use Argv;
use Clier;
And try it out:
$ cargo run -- command subcommand --test=value --no-production --help --try-me=false
Argv {
}
Framework
soon...