ogre-config-meld 0.1.6

Melds configs from files, env, and CLI into a clean, validated strong typed 'effective configuration'.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod types;
pub use types::*;

mod logic;
pub use logic::*;

#[cfg(test)]
mod test_commons;

// re-exports
/////////////

// allows user programs to use these dependencies without requiring them to directly depend on them.
pub use clap;

// this export allows user programs to use the same fs encryption version
pub use encryptable_tokio_fs;