tier 0.1.17

Rust configuration library for layered TOML, env, and CLI settings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod example;
mod json;
#[cfg(feature = "toml")]
mod toml;

pub use self::example::{
    config_example_for, config_example_pretty, config_example_report, config_example_report_json,
    config_example_report_json_pretty,
};
pub use self::json::{
    annotated_json_schema_for, annotated_json_schema_pretty, annotated_json_schema_report,
    annotated_json_schema_report_json, annotated_json_schema_report_json_pretty, json_schema_for,
    json_schema_pretty, json_schema_report, json_schema_report_json,
    json_schema_report_json_pretty,
};
#[cfg(feature = "toml")]
pub use self::toml::config_example_toml;