summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: 2d16216a7eb97b1fd6acf750ffdb8a30f3b3d50b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "config-maint"
version = "0.11.0"
description = "Layered configuration system for Rust applications. (Maintenance fork)"
homepage = "https://sr.ht/~matthiasbeyer/config-rs-maint/"
repository = "https://git.sr.ht/~matthiasbeyer/config-rs-maint/"
documentation = "https://docs.rs/config-maint"
readme = "README.md"
keywords = ["config", "configuration", "settings", "env", "environment"]
authors = ["Ryan Leckey <leckey.ryan@gmail.com>",
           "Matthias Beyer <mail@beyermatthias.de>"]
categories = ["config"]
license = "MIT/Apache-2.0"

[badges]
maintenance = { status = "actively-developed" }

[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 = "5.0.0"

toml = { version = "0.5", optional = true }
serde_json = { version = "1.0.2", optional = true }
yaml-rust = { version = "0.4", optional = true }
serde-hjson = { version = "0.9", default-features = false, optional = true }
rust-ini = { version = "0.16", optional = true }

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