okcodes-config 0.14.3

Layered configuration system for Rust applications.
Documentation
1
2
3
4
#[cfg(not(feature = "preserve_order"))]
pub type Map<K, V> = std::collections::HashMap<K, V>;
#[cfg(feature = "preserve_order")]
pub type Map<K, V> = indexmap::IndexMap<K, V>;