forked from SergioBenitez/Figment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (38 loc) · 1.23 KB
/
Cargo.toml
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
40
41
42
43
44
[package]
name = "figment"
version = "0.10.6"
authors = ["Sergio Benitez <[email protected]>"]
edition = "2018"
documentation = "https://docs.rs/figment/0.10"
description = "A configuration library so con-free, it's unreal."
repository = "https://github.com/SergioBenitez/Figment"
readme = "README.md"
keywords = ["config", "configuration", "toml", "json", "yaml"]
license = "MIT OR Apache-2.0"
categories = ["config"]
[features]
env = ["pear", "parse-value"]
json = ["serde_json"]
yaml = ["serde_yaml"]
parse-value = ["pear"]
test = ["tempfile", "parking_lot"]
# toml = ["toml"]
[dependencies]
serde = { version = "1.0" }
uncased = "0.9.3"
pear = { version = "0.2", optional = true }
toml = { version = "0.5", optional = true }
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.8", optional = true }
tempfile = { version = "3", optional = true }
parking_lot = { version = "0.11", optional = true }
[target.'cfg(any(target_pointer_width = "8", target_pointer_width = "16", target_pointer_width = "32"))'.dependencies]
atomic = "0.5.0"
[dev-dependencies]
tempfile = "3"
parking_lot = "0.11"
serde = { version = "1.0", features = ["derive"] }
[build-dependencies]
version_check = "0.9"
[package.metadata.docs.rs]
all-features = true