Self-similar derive-based command line argument parsing, in the same genre as Clap-derive. It supports
This attempts to support parsing arbitrarily complex command line arguments. Like with Serde, you can combine structs, vecs, enums in any way you want. Just because you can doesn't mean you should.
``` $ echo This is an example help output, sans light ansi styling $ ./target/debug/spagh-cli publish -h Usage: ./target/debug/spagh-cli publish PUBLISH
Create or replace existing publish data for an identity on a publisher server
PUBLISH: SERVER IDENTITY DATA
SERVER: {KEY: {"ttl": SECONDS, "value": "DATA"}, ...}
IDENTITY: local | card
local
Why this and not Clap?
#[derive(Aargvark)]
)Why not this?
-v
-vv
-vvv
) break patterns and probably won't ever be implemented. Other things just haven't been implemented yet due to lack of time.To add it to your project, run
sh
cargo add aargvark
To parse command line arguments
Define the data type you want to parse them into, like
```rust
struct MyArgs {
velociraptor: String,
deadly: bool,
color_pattern: Option
Vark it
let args = aargvark::vark::<MyArgs>();
Optional fields in structs become optional (--long
) arguments. If you want a bool
long option that's enabled if the flag is specified (i.e. doesn't take a value), use Option<()>
.
You can derive structs, enums, and tuples, and there are implementations for Vec
, HashSet
, most Ip
and SocketAddr
types, and PathBuf
provided.
Some additional wrappers are provided for automatically loading (and parsing) files:
AargvarkFile<T>
AargvarkJson<T>
requires feature serde_json
AargvarkYaml<T>
requires feature serde_yaml
To parse your own types, implement AargvarkTrait
, or if your type takes a single string argument you can implement AargvarkFromStr
.