#derive #structopt #clap #cli

macro structopt-toml-derive

A derive crate of structopt-toml

17 releases

0.5.1 Jul 9, 2022
0.5.0 Jul 27, 2021
0.4.5 May 6, 2020
0.4.2 Mar 12, 2020
0.2.4 Mar 20, 2018

#15 in #structopt

Download history 148/week @ 2023-12-11 114/week @ 2023-12-18 53/week @ 2023-12-25 46/week @ 2024-01-01 232/week @ 2024-01-08 368/week @ 2024-01-15 386/week @ 2024-01-22 352/week @ 2024-01-29 241/week @ 2024-02-05 149/week @ 2024-02-12 159/week @ 2024-02-19 225/week @ 2024-02-26 213/week @ 2024-03-04 191/week @ 2024-03-11 182/week @ 2024-03-18 280/week @ 2024-03-25

882 downloads per month
Used in 3 crates (via structopt-toml)

MIT/Apache

8KB
163 lines

structopt-toml

An default value loader from TOML 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.104"
serde_derive   = "1.0.104"
structopt      = "0.3.11"
structopt-toml = "0.5.1"
toml           = "0.5.6"

Example

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

use serde_derive::Deserialize;
use structopt::StructOpt;
use structopt_toml::StructOptToml;

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

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

The execution result is below.

$ ./example
a:10        // value from TOML 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
~34K SLoC