figment2 0.11.5

Remaintained fork of figment: A configuration library so con-free, it's unreal.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Built-in [`Provider`](crate::Provider) implementations for common sources.
//!
//! The [top-level docs](crate#built-in-providers) contain a list and
//! description of each provider.

mod serialized;
mod data;
mod env;
mod named;

pub use self::env::Env;
pub use self::serialized::Serialized;
pub use self::data::*;
pub use self::named::Named;