Use workspace inheritance for some more dependencies (#5349)

Deduplicate some dependency directives through `[workspace.dependencies]`
This commit is contained in:
Alex Crichton
2022-11-29 16:32:56 -06:00
committed by GitHub
parent 2ad3f78624
commit 86acb9a438
16 changed files with 32 additions and 26 deletions

View File

@@ -17,8 +17,8 @@ wiggle = { path = "..", features = ["tracing_log"] }
[dev-dependencies]
anyhow = { workspace = true }
thiserror = "1.0"
tracing = "0.1.26"
thiserror = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt'] }
env_logger = "0.9"