Files
confique/Cargo.toml
2023-12-10 12:20:59 +01:00

37 lines
919 B
TOML

[package]
name = "confique"
version = "0.2.5"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2021"
description = "Type-safe, layered, light-weight, `serde`-based configuration library"
documentation = "https://docs.rs/confique/"
repository = "https://github.com/LukasKalbertodt/confique/"
readme = "README.md"
license = "MIT/Apache-2.0"
keywords = ["config", "configuration", "conf", "serde", "type-safe"]
categories = ["config"]
exclude = [".github"]
[[example]]
name = "simple"
required-features = ["toml"]
[features]
default = ["toml", "yaml", "json5"]
yaml = ["serde_yaml"]
[dependencies]
confique-macro = { version = "=0.0.9", path = "macro" }
json5 = { version = "0.4.1", optional = true }
serde = { version = "1", features = ["derive"] }
serde_yaml = { version = "0.9", optional = true }
toml = { version = "0.5", optional = true }
[dev-dependencies]
pretty_assertions = "1.2.1"