figment 0.10.3

A configuration library so con-free, it's unreal.
Documentation
[package]
name = "figment"
version = "0.10.3"
authors = ["Sergio Benitez <sb@sergio.bz>"]
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