#derive #structopt #clap #cli

macro structopt-yaml-derive

A derive crate of structopt-yaml

2 releases

0.4.6 Apr 15, 2021
0.4.5 Apr 15, 2021

#16 in #structopt

Download history 17/week @ 2024-01-04 50/week @ 2024-01-11 72/week @ 2024-01-18 26/week @ 2024-01-25 54/week @ 2024-02-01 70/week @ 2024-02-08 76/week @ 2024-02-15 96/week @ 2024-02-22 114/week @ 2024-02-29 99/week @ 2024-03-07 128/week @ 2024-03-14 109/week @ 2024-03-21 130/week @ 2024-03-28 161/week @ 2024-04-04 105/week @ 2024-04-11 91/week @ 2024-04-18

528 downloads per month
Used in structopt-yaml

MIT/Apache

8KB
164 lines

structopt-yaml

An default value loader from YAML for structopt. It combinates with structopt.

Actions Status Crates.io Docs.rs codecov

Usage

This crate must be used with serde, serde_derive, structopt, and toml explicitly.

[dependencies]
serde          = "1.0"
serde_derive   = "1.0"
serde_yaml     = "0.8"
structopt      = "0.3.21"
structopt-yaml = "0.4.6"

Example

If derive(Deserialize), derive(StructOptYaml) and serde(default) are added to the struct with derive(StructOpt), some functions like from_args_with_yaml can be used.

use serde_derive::Deserialize;
use structopt::StructOpt;
use structopt_yaml::StructOptYaml;

#[derive(Debug, Deserialize, StructOpt, StructOptYaml)]
#[serde(default)]
struct Opt {
    #[structopt(default_value = "0", short = "a")] a: i32,
    #[structopt(default_value = "0", short = "b")] b: i32,
}

fn main() {
    let yaml_str = r#"
        a: 10
    "#;
    let opt = Opt::from_args_with_yaml(yaml_str).expect("yaml parse failed");
    println!("a:{}", opt.a);
    println!("b:{}", opt.b);
}

The execution result is below.

$ ./example
a:10        // value from YAML string
b:0         // value from default_value of structopt

$ ./example -a 20
a:20        // value from command line argument
b:0

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

~1.5MB
~33K SLoC