clapfig 0.21.4

Rich, layered configuration for Rust CLI apps
Documentation
1
2
3
4
5
6
7
8
9
use clapfig::Schema;

#[derive(Schema)]
#[clapfig(notreal = "x")]
struct Bad {
    field: String,
}

fn main() {}