mkenv 1.0.2

Lightweight yet useful library to help you define the environment your app needs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Module containing configuration value types.
//!
//! Configuration value types are types implementing the [`Layer`][1] trait.
//!
//! [1]: crate::layer::Layer

pub mod cached;
pub mod file_read;
pub mod or_default;
pub mod parsed;
pub mod text_var;

pub use cached::Cached;
pub use file_read::FileRead;
pub use or_default::OrDefault;
pub use parsed::Parsed;
pub use text_var::TextVar;