blarg
is a command line argument parser for Rust.
In brief, it provides type-safe, domain sensitive, argument-option paradigm command line parser functionality.
Check out the rustdoc for more information.
"blarg" is derived from the following: * arg for argument parser. * blarg because all the other names are already taken.
use blarg::{CommandLineParser, Parameter, Scalar, Switch};
fn main() {
let mut verbose: bool = false;
let mut value: u32 = 0;
let ap = CommandLineParser::new("example");
let parser = ap
.add(Parameter::option(
Switch::new(&mut verbose, true),
"verbose",
Some('v'),
))
.add(Parameter::argument(Scalar::new(&mut value), "value"))
.build()
.expect("Invalid argument parser configuration");
parser.parse();
println!("value: {value}, verbose: {verbose}");
}
$ ./main -h
usage: example [-h] [-v] VALUE
positional arguments:
VALUE
options:
-h, --help Show this help message and exit.
-v, --verbose
cargo build
cargo test
cargo doc --open --no-deps
./target/debug/examples/reducer -h