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

@@ -19,13 +19,13 @@ links = "wasi-common-19"
[dependencies]
anyhow = { workspace = true }
thiserror = "1.0"
thiserror = { workspace = true }
wiggle = { workspace = true }
wasmtime = { workspace = true }
tracing = "0.1.19"
tracing = { workspace = true }
cap-std = { workspace = true }
cap-rand = "1.0.0"
bitflags = "1.2"
cap-rand = { workspace = true }
bitflags = { workspace = true }
[target.'cfg(unix)'.dependencies]
rustix = { workspace = true, features = ["fs"] }