11 releases

0.3.0 Nov 28, 2023
0.2.9 Jul 9, 2021
0.2.7 Jun 11, 2020
0.2.6 Feb 16, 2020
0.1.0 Jul 29, 2019

#583 in Command-line interface

Download history 2/week @ 2023-11-20 179/week @ 2023-11-27 131/week @ 2023-12-04 58/week @ 2023-12-11 16/week @ 2023-12-18 27/week @ 2024-01-08 23/week @ 2024-01-15 81/week @ 2024-02-19 59/week @ 2024-02-26 34/week @ 2024-03-04

174 downloads per month
Used in 2 crates

Apache-2.0/MIT

41KB
703 lines

AutoArgs Build Status

Parse command line arguments by defining a struct. It uses a derive to define a set of command-line flags. It does not use clap and its dependencies are rather slimmer.

The basic idea is that you define a type that represents the information you want on the command-line from the person running your program, and derive(AutoArgs) on that type, and then call YourType::from_args() to find out what your user gave you.

Differences from ClapMe

AutoArgs is essentially equivalent to ClapMe. It only differs in implementation, speed of compilation, help messages, and error messages.

Differences from structopt

StructOpt is a tool that serves the same function as auto-args, but with a different philosophy. StructOpt strives to be as expressive as clap, and to enable all features clap does, and with a tightly coupled API. It does this by extensive use of attributes such as #[structopt(long = "long-name")], which define the behavior and property of each flag. This makes it powerful, but also rather verbose to use.

In contrast, AutoArgs does not (yet?) support any attributes, and determines all behavior directly from your type. This means that you don't repeat yourself, but also means that you have less fine-grained control over your interface, and some interfaces may be well-nigh impossible.

You can implement the AutoArgs trait manually, which does make it possible (and not even that painful) to create a different command-line for a given type, but this is not the intended way to use AutoArgs.

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2MB
~47K SLoC