2 releases
0.1.1 | Nov 6, 2023 |
---|---|
0.1.0 | Oct 26, 2023 |
#811 in Procedural macros
30 downloads per month
7KB
76 lines
merge-cfg
Merge or cover config based on priorities.
Usage
You can get your configuration from config file in any way at first. Then derive MergeCfg
to merge your configuration from command line arguments.
use merge_cfg::MergeCfg;
#[derive(Debug, MergeCfg)]
struct Config {
id: u64,
name: String,
scores: Vec<i32>,
}
fn main() {
let mut cfg = Config {
id: 1,
name: "abc".to_string(),
scores: vec![-1],
};
cfg.merge_cfg();
println!("{:?}", cfg);
}
Command line arguments format: {field}={value}
, field name should be the same with what you defined in your structure:
$ cargo run
Config { id: 1, name: "abc", scores: [-1] }
$ cargo run id=2
Config { id: 2, name: "abc", scores: [-1] }
$ cargo run name=xyz
Config { id: 1, name: "xyz", scores: [-1] }
$ cargo run scores=100 scores=-1000
Config { id: 1, name: "abc", scores: [100, -1000] }
$ cargo run id=2 name=xyz scores=100
Config { id: 2, name: "xyz", scores: [100] }
Roadmap
- Support environment variables
- Merge priority
- Merge option (choose which to merge)
- More command line argument formats
- Simple equal format:
{field}={value}
- getopt format:
-h --{field} {value}
- Simple equal format:
- Various use cases
- Non-panic function
- Immutable function
- Field Alias
- Support complex field type
- Document
- Readme
- ...
Dependencies
~260–710KB
~17K SLoC