mirror of
https://github.com/OMGeeky/confique.git
synced 2025-12-30 00:03:50 +01:00
21 lines
501 B
TOML
21 lines
501 B
TOML
[package]
|
|
name = "confique"
|
|
version = "0.1.0"
|
|
authors = ["Lukas Kalbertodt <lukas.kalbertodt@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
|
|
[dependencies]
|
|
confique-macro = { path = "macro" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
log = { version = "0.4", features = ["serde"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
log = { version = "0.4", features = ["serde"] }
|
|
|
|
|
|
[features]
|
|
# This is used to enable the `example` module. This is only useful to generate
|
|
# the docs for this library!
|
|
doc-example = ["log"]
|