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: URL of a server with publishing set up IDENTITY: IDENTITY Identity to publish as DATA: |- Data to publish. Must be json in the structure {KEY: {"ttl": SECONDS, "value": "DATA"}, ...}

IDENTITY: local | card

local |- card PCSC-ID PIN ```

Why or why not

Why this and not Clap?

Why not this?

Conventions and usage

To add it to your project, run

sh cargo add aargvark

To parse command line arguments

  1. Define the data type you want to parse them into, like

    ```rust

    [derive(Aargvark)]

    struct MyArgs { velociraptor: String, deadly: bool, color_pattern: Option, } ```

  2. 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:

To parse your own types, implement AargvarkTrait, or if your type takes a single string argument you can implement AargvarkFromStr.