config 0.9.2

Layered configuration system for Rust applications.
Documentation
[package]
name = "config"
version = "0.9.2"
description = "Layered configuration system for Rust applications."
homepage = "https://github.com/mehcode/config-rs"
repository = "https://github.com/mehcode/config-rs"
readme = "README.md"
keywords = ["config", "configuration", "settings", "env", "environment"]
authors = ["Ryan Leckey <leckey.ryan@gmail.com>"]
categories = ["config"]
license = "MIT/Apache-2.0"

[badges]
travis-ci = { repository = "mehcode/config-rs" }

[features]
default = ["toml", "json", "yaml", "hjson", "ini"]
json = ["serde_json"]
yaml = ["yaml-rust"]
hjson = ["serde-hjson"]
ini = ["rust-ini"]

[dependencies]
lazy_static = "1.0"
serde = "1.0.8"
nom = "4.0.0"

toml = { version = "0.4.1", optional = true }
serde_json = { version = "1.0.2", optional = true }
yaml-rust = { version = "0.4", optional = true }
serde-hjson = { version = "0.8.2", optional = true }
rust-ini = { version = "0.13", optional = true }

[dev-dependencies]
serde_derive = "1.0.8"
float-cmp = "0.4"
chrono = { version = "0.4", features = ["serde"] }