unison 0.3.2

Unison is a easy to use config loader which can collect configuration from flags, environment variables, and configuration files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
extern crate seckey;
extern crate serde;
extern crate serde_json;
extern crate serde_yaml;
extern crate toml;

mod config;
mod value;
mod error;

pub use config::Config;
pub use value::Value;
pub use error::Error;