summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 7aef758c60d53b5516f3d709cba36f0ec050eff6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
[package]
name = "config"
version = "0.1.0"
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 }