23 releases (6 stable)
2.2.0 | Mar 7, 2022 |
---|---|
2.0.1 | Apr 2, 2021 |
2.0.0 | Dec 3, 2020 |
2.0.0-alpha.3 | Nov 30, 2020 |
0.8.0 | Jul 17, 2020 |
#592 in Command-line interface
84 downloads per month
Used in 3 crates
19KB
310 lines
Arguably
A ridiculously simple Rust library for parsing command line arguments.
lib.rs
:
A minimalist library for parsing command line arguments.
Features
- Long-form boolean flags with single-character shortcuts:
--flag
,-f
. - Long-form string-valued options with single-character shortcuts:
--option <arg>
,-o <arg>
. - Condensed short-form options:
-abc <arg> <arg>
. - Automatic
--help
and--version
flags. - Support for multivalued options.
- Support for git-style command interfaces with arbitrarily-nested commands.
Example
let mut parser = ArgParser::new()
.helptext("Usage: foobar...")
.version("1.0")
.option("bar b", "default")
.flag("foo f");
if let Err(err) = parser.parse() {
err.exit();
}
if parser.found("foo") {
println!("Flag --foo/-f found.");
}
println!("Option --bar/-b has value: {}", parser.value("bar"));
for arg in parser.args {
println!("Arg: {}", arg);
}