config-tools 0.5.0

A simplified set of tools for working with configuration files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod builder;
mod config;
mod error;
mod macros;
mod outcome;

pub use builder::ConfigBuilder;
pub use config::{Config, Section};
pub use config_tools_derive::FromSection;
pub use error::Error;
pub use outcome::LoadOutcome;