config 0.8.0

Layered configuration system for Rust applications.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g. crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

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

[dependencies.nom]
version = "^3.2.1"

[dependencies.serde]
version = "^1.0.8"

[dependencies.serde-hjson]
version = "^0.8.1"
optional = true

[dependencies.serde_json]
version = "^1.0.2"
optional = true

[dependencies.toml]
version = "^0.4.1"
optional = true

[dependencies.yaml-rust]
version = "^0.4"
optional = true
[dev-dependencies.chrono]
version = "0.4"
features = ["serde"]

[dev-dependencies.float-cmp]
version = "0.2.3"

[dev-dependencies.serde_derive]
version = "^1.0.8"

[features]
default = ["toml", "json", "yaml", "hjson"]
hjson = ["serde-hjson"]
json = ["serde_json"]
yaml = ["yaml-rust"]
[badges.travis-ci]
repository = "mehcode/config-rs"