mirror of
https://github.com/OMGeeky/confique.git
synced 2025-12-30 00:03:50 +01:00
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.
21 lines
461 B
TOML
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"
|