Tidy up some more deps with workspace dependencies (#4965)
I missed these in #4905 and noticed just now but wanted to handle them to ensure we uniformly handle deps in the workspace.
This commit is contained in:
@@ -12,7 +12,7 @@ keywords = ["btree", "forest", "set", "map"]
|
|||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-entity = { path = "../entity", version = "0.89.0", default-features = false }
|
cranelift-entity = { workspace = true }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "experimental" }
|
maintenance = { status = "experimental" }
|
||||||
|
|||||||
@@ -9,9 +9,9 @@ repository = "https://github.com/bytecodealliance/wasmtime"
|
|||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-entity = { path = "../entity", version = "0.89.0" }
|
cranelift-entity = { workspace = true }
|
||||||
log = { version = "0.4.6", default-features = false }
|
log = { workspace = true }
|
||||||
smallvec = { version = "1.6.1", features = ["union"] }
|
smallvec = { workspace = true }
|
||||||
indexmap = { version = "1.9.1" }
|
indexmap = { version = "1.9.1" }
|
||||||
hashbrown = { version = "0.12.2", features = ["raw"] }
|
hashbrown = { version = "0.12.2", features = ["raw"] }
|
||||||
fxhash = "0.2.1"
|
fxhash = "0.2.1"
|
||||||
@@ -21,4 +21,4 @@ default = []
|
|||||||
|
|
||||||
# Enable detailed trace-level debug logging. Excluded by default to
|
# Enable detailed trace-level debug logging. Excluded by default to
|
||||||
# omit the dynamic overhead of checking the logging level.
|
# omit the dynamic overhead of checking the logging level.
|
||||||
trace-log = []
|
trace-log = []
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ keywords = ["optimize", "compile", "compiler", "jit"]
|
|||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", version = "0.89.0", default-features = false }
|
cranelift-codegen = { workspace = true }
|
||||||
# This is commented out because it doesn't build on Rust 1.25.0, which
|
# This is commented out because it doesn't build on Rust 1.25.0, which
|
||||||
# cranelift currently supports.
|
# cranelift currently supports.
|
||||||
# rustc_apfloat = { version = "0.1.2", default-features = false }
|
# rustc_apfloat = { version = "0.1.2", default-features = false }
|
||||||
|
|||||||
@@ -12,8 +12,8 @@ keywords = ["compile", "compiler", "jit"]
|
|||||||
edition.workspace = true
|
edition.workspace = true
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-codegen = { path = "../codegen", version = "0.89.0", default-features = false }
|
cranelift-codegen = { workspace = true }
|
||||||
cranelift-frontend = { path = "../frontend", version = "0.89.0", default-features = false }
|
cranelift-frontend = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["std"]
|
default = ["std"]
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ hashbrown = { workspace = true, optional = true }
|
|||||||
itertools = "0.10.0"
|
itertools = "0.10.0"
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
serde = { version = "1.0.94", features = ["derive"], optional = true }
|
serde = { version = "1.0.94", features = ["derive"], optional = true }
|
||||||
smallvec = { version = "1.6.1", features = ["union"] }
|
smallvec = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
wat = { workspace = true }
|
wat = { workspace = true }
|
||||||
|
|||||||
Reference in New Issue
Block a user