[package] name = "config" version = "0.2.0" 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 "] license = "MIT/Apache-2.0" [features] default = ["toml"] json = ["serde_json"] yaml = ["yaml-rust"] [dependencies] nom = "^2.1" toml = { version = "0.2.1", optional = true } serde_json = { version = "0.9", optional = true } yaml-rust = { version = "0.3.5", optional = true }