feat(llvm): Use workspace-wide object crate

This commit is contained in:
Edoardo Marangoni
2025-02-05 11:31:08 +01:00
parent 43eda383f1
commit 321fca7d15
3 changed files with 5 additions and 4 deletions

2
Cargo.lock generated
View File

@ -6914,7 +6914,7 @@ dependencies = [
"itertools 0.10.5",
"lazy_static",
"libc",
"object 0.30.4",
"object 0.32.2",
"phf",
"rayon",
"regex",

View File

@ -124,7 +124,7 @@ pretty_assertions = "1.4.0"
base64 = "0.22.0"
time = "0.3.36"
target-lexicon = { version = "0.12.2", default-features = false }
object = "0.32.0"
object = { version = "0.32.0", default-features = true }
derive_more = { version = "1", features = ["debug"] }
[build-dependencies]

View File

@ -15,13 +15,14 @@ version.workspace = true
[dependencies]
wasmer-compiler = { path = "../compiler", version = "=5.0.5-rc1", features = [
"translator", "compiler"
"translator",
"compiler",
] }
wasmer-vm = { path = "../vm", version = "=5.0.5-rc1" }
wasmer-types = { path = "../types", version = "=5.0.5-rc1" }
target-lexicon = { version = "0.12.2", default-features = false }
smallvec = "1.6"
object = { version = "0.30.3", default-features = false, features = ["read"] }
object = { workspace = true, features = ["read"] }
libc.workspace = true
byteorder = "1"
itertools = "0.10"