Files
confique/Cargo.toml
Lukas Kalbertodt 366fd3d10a Remove example module and doc-example feature
Now that we use derives, not a lot of magic happens anymore. Thus, I
think it's not necessary to show the generated stuff anymore.
2021-05-16 15:30:26 +02:00

21 lines
461 B
TOML

[package]
name = "confique"
version = "0.1.0"
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
edition = "2018"
[features]
default = ["toml", "yaml"]
yaml = ["serde_yaml"]
[dependencies]
confique-macro = { path = "macro" }
serde = { version = "1", features = ["derive"] }
serde_yaml = { version = "0.8", optional = true }
toml = { version = "0.5", optional = true }
[dev-dependencies]
log = { version = "0.4", features = ["serde"] }
anyhow = "1"