clap-themes 0.1.3

Theme presets for clap CLIs
Documentation
use clap::Parser;

#[derive(Parser)]
#[clap(version, styles = clap_themes::CARGO)]
struct Cli {
    /// Here's some good help text!
    #[clap(short, long)]
    arg1: String,

    /// Some args have default values.
    #[clap(long, default_value = "foobar")]
    arg2: String,

    #[clap(long, env)]
    arg3: String,

    #[clap(long, env, default_value = "foobar")]
    arg4: String,

    arg5: String,
}

fn main() {
    let _cli = Cli::parse();
}