structconf 0.5.0

Combine clap and rust-ini into a single procedural macro
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The most basic test possible.

use structconf::StructConf;

#[allow(dead_code)]
#[derive(StructConf)]
struct Config {
    nothing: bool,
}

fn main() {}