figment 0.8.1

A configuration library so con-free, it's unreal.
Documentation
[package]
name = "figment"
version = "0.8.1"
authors = ["Sergio Benitez <sb@sergio.bz>"]
edition = "2018"
documentation = "https://docs.rs/figment/0.8"
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"]
magic = ["serde/derive"]
# 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 }

[dev-dependencies]
tempfile = "3"
parking_lot = "0.11"

[build-dependencies]
version_check = "0.9"

[package.metadata.docs.rs]
all-features = true