Remove useless dev-dependencies

This commit is contained in:
Lukas Kalbertodt
2021-07-28 12:06:04 +02:00
parent 313d143486
commit b7515239e5
2 changed files with 1 additions and 5 deletions

View File

@@ -14,7 +14,3 @@ 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"

View File

@@ -36,7 +36,7 @@ struct LogConfig {
}
fn main() -> Result<(), anyhow::Error> {
fn main() -> Result<(), Box<dyn std::error::Error>> {
let r = Conf::builder()
.env()
.file("examples/files/simple.toml")