ursula-config 0.5.0-patch1

Ursula configuration types and TOML loading.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod config;
pub mod human;
pub mod load;
pub mod preset;
pub mod validate;

pub use config::UrsulaConfig;
pub use config::*;
pub use human::HumanDuration;
pub use human::HumanSize;
pub use load::ConfigError;
pub use load::find_default_config;
pub use load::load_config;
pub use preset::Preset;

#[cfg(test)]
mod tests;