config 0.15.22

Layered configuration system for Rust applications.
Documentation
1
2
3
4
5
6
7
/// The backing store for [`Config`][crate::Config]
pub type Map<K, V> = InternalMap<K, V>;

#[cfg(not(feature = "preserve_order"))]
type InternalMap<K, V> = std::collections::HashMap<K, V>;
#[cfg(feature = "preserve_order")]
type InternalMap<K, V> = indexmap::IndexMap<K, V>;