A Rust library for simple and lightweight command-line argument parsing, with:
ArgSpec
,It's also worth pointing out what easy-args
is not:
Documentation:
Add this to your Cargo.toml
:
toml
[dependencies]
easy-args = "0.2.0"
To get started using easy-args.
First you must define an ArgSpec
which will determine what the command-line
arguments are for your program and will be used by the parser to do some
simple checks.
You make an ArgSpec
with the builder pattern.
let spec = ArgSpec::build()
.boolean("windowed")
.string("mode")
.done()?;
Second you call ArgSpecs
's parse()
method to retrieve the command-line
arguments in a processed form.
let args = spec.parse()?;
if args.boolean("windowed") == Some(&true) {
// Put application into windowed mode
}
And that's it! The arguments have been parsed and processed and can be
accessed via Args
's getter methods.
ArgSpec
also has a parse()
method so you don't have to make a
throwaway variable.
let args = ArgSpec::build()
.boolean("windowed")
.string("mode")
.parse()?;
easy-args is an immature crate and as such may make breaking changes in future versions.
Current easy-args versions are:
unsigned_integer
methods to uinteger
and added error checking for
to building ArgSpec
's.easy-args is distributed under the terms of the MIT license.