summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: ddf1d7e59f11d390f316bc525234981faf91aaac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "config"
version = "0.2.0"5
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>"]

[features]
default = ["toml"]
json = ["serde_json"]

[dependencies]
toml = { version = "0.2.1", optional = true }
serde_json = { version = "0.9", optional = true }