ortho_config 0.9.0

A configuration management library for Rust, inspired by esbuild.
Documentation
1
2
3
4
5
6
7
8
//! trybuild coverage for the localised clap parsing public API.

#[test]
fn localized_parse_compile_time_contracts() {
    let t = trybuild::TestCases::new();
    t.pass("tests/trybuild/localized_parse_parser.rs");
    t.compile_fail("tests/trybuild/localized_parse_requires_parser.rs");
}