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

@@ -11,12 +11,12 @@ repository = "https://github.com/bytecodealliance/wasmtime"
include = ["src/**/*", "README.md", "LICENSE"]
[dependencies]
thiserror = "1"
thiserror = { workspace = true }
witx = { path = "../wasi-common/WASI/tools/witx", version = "0.9.1", optional = true }
wiggle-macro = { workspace = true }
tracing = "0.1.26"
bitflags = "1.2"
async-trait = "0.1.42"
tracing = { workspace = true }
bitflags = { workspace = true }
async-trait = { workspace = true }
wasmtime = { workspace = true }
anyhow = { workspace = true }