Use workspace inheritance for some more dependencies (#5349)
Deduplicate some dependency directives through `[workspace.dependencies]`
This commit is contained in:
@@ -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"] }
|
||||
|
||||
Reference in New Issue
Block a user