tier 0.1.17

Rust configuration library for layered TOML, env, and CLI settings
Documentation
1
2
3
4
5
6
7
8
use std::collections::BTreeSet;

use serde_json::Value;

pub(in crate::loader) struct ParsedOverride {
    pub(in crate::loader) value: Value,
    pub(in crate::loader) string_coercion_suffixes: BTreeSet<String>,
}