From 10eead18c8c6cb3a12e3749c1ef8fe7529fedd15 Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Mon, 26 Jul 2021 12:10:41 -0700 Subject: [PATCH] Update `object` to 0.26.0 --- Cargo.lock | 27 +++++++++------------------ Cargo.toml | 2 +- cranelift/object/Cargo.toml | 2 +- crates/debug/Cargo.toml | 2 +- crates/jit/Cargo.toml | 2 +- crates/obj/Cargo.toml | 2 +- crates/profiling/Cargo.toml | 2 +- 7 files changed, 15 insertions(+), 24 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6a062c841e..b33798e93f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -176,7 +176,7 @@ dependencies = [ "cfg-if 1.0.0", "libc", "miniz_oxide", - "object 0.26.0", + "object", "rustc-demangle", ] @@ -722,7 +722,7 @@ dependencies = [ "cranelift-frontend", "cranelift-module", "log", - "object 0.25.3", + "object", "target-lexicon", ] @@ -1888,23 +1888,14 @@ version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a" -[[package]] -name = "object" -version = "0.25.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a38f2be3697a57b4060074ff41b44c16870d916ad7877c17696e063257482bc7" -dependencies = [ - "crc32fast", - "indexmap", - "memchr", -] - [[package]] name = "object" version = "0.26.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c55827317fb4c08822499848a14237d2874d6f139828893017237e7ab93eb386" dependencies = [ + "crc32fast", + "indexmap", "memchr", ] @@ -3626,7 +3617,7 @@ dependencies = [ "log", "more-asserts", "num_cpus", - "object 0.25.3", + "object", "pretty_env_logger", "rayon", "structopt", @@ -3673,7 +3664,7 @@ dependencies = [ "anyhow", "gimli", "more-asserts", - "object 0.25.3", + "object", "target-lexicon", "thiserror", "wasmparser", @@ -3759,7 +3750,7 @@ dependencies = [ "gimli", "log", "more-asserts", - "object 0.25.3", + "object", "rayon", "region", "serde", @@ -3792,7 +3783,7 @@ version = "0.28.0" dependencies = [ "anyhow", "more-asserts", - "object 0.25.3", + "object", "target-lexicon", "wasmtime-debug", "wasmtime-environ", @@ -3808,7 +3799,7 @@ dependencies = [ "ittapi-rs", "lazy_static", "libc", - "object 0.25.3", + "object", "scroll", "serde", "target-lexicon", diff --git a/Cargo.toml b/Cargo.toml index d7e00d0771..4cbf38bd8d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -33,7 +33,7 @@ wasmtime-wasi = { path = "crates/wasi", version = "0.28.0" } wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.28.0", optional = true } wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.28.0", optional = true } structopt = { version = "0.3.5", features = ["color", "suggestions"] } -object = { version = "0.25.0", default-features = false, features = ["write"] } +object = { version = "0.26.0", default-features = false, features = ["write"] } anyhow = "1.0.19" target-lexicon = { version = "0.12.0", default-features = false } pretty_env_logger = "0.4.0" diff --git a/cranelift/object/Cargo.toml b/cranelift/object/Cargo.toml index 311c4f32a7..5af86177aa 100644 --- a/cranelift/object/Cargo.toml +++ b/cranelift/object/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] cranelift-module = { path = "../module", version = "0.75.0" } cranelift-codegen = { path = "../codegen", version = "0.75.0", default-features = false, features = ["std"] } -object = { version = "0.25.3", default-features = false, features = ["write"] } +object = { version = "0.26.0", default-features = false, features = ["write"] } target-lexicon = "0.12" anyhow = "1.0" log = { version = "0.4.6", default-features = false } diff --git a/crates/debug/Cargo.toml b/crates/debug/Cargo.toml index 20b2623d58..82574b8f2f 100644 --- a/crates/debug/Cargo.toml +++ b/crates/debug/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] gimli = "0.25.0" wasmparser = "0.79" -object = { version = "0.25.0", default-features = false, features = ["read_core", "elf", "write"] } +object = { version = "0.26.0", default-features = false, features = ["read_core", "elf", "write"] } wasmtime-environ = { path = "../environ", version = "0.28.0" } target-lexicon = { version = "0.12.0", default-features = false } anyhow = "1.0" diff --git a/crates/jit/Cargo.toml b/crates/jit/Cargo.toml index 10c6016f2f..5cb318ef2d 100644 --- a/crates/jit/Cargo.toml +++ b/crates/jit/Cargo.toml @@ -33,7 +33,7 @@ anyhow = "1.0" cfg-if = "1.0" log = "0.4" gimli = { version = "0.25.0", default-features = false, features = ["write"] } -object = { version = "0.25.0", default-features = false, features = ["write"] } +object = { version = "0.26.0", default-features = false, features = ["write"] } serde = { version = "1.0.94", features = ["derive"] } addr2line = { version = "0.16.0", default-features = false } diff --git a/crates/obj/Cargo.toml b/crates/obj/Cargo.toml index 749d404a52..fc61516d9c 100644 --- a/crates/obj/Cargo.toml +++ b/crates/obj/Cargo.toml @@ -12,7 +12,7 @@ edition = "2018" [dependencies] anyhow = "1.0" wasmtime-environ = { path = "../environ", version = "0.28.0" } -object = { version = "0.25.0", default-features = false, features = ["write"] } +object = { version = "0.26.0", default-features = false, features = ["write"] } more-asserts = "0.2.1" target-lexicon = { version = "0.12.0", default-features = false } wasmtime-debug = { path = "../debug", version = "0.28.0" } diff --git a/crates/profiling/Cargo.toml b/crates/profiling/Cargo.toml index aa7d83c953..ba4a1f8ba3 100644 --- a/crates/profiling/Cargo.toml +++ b/crates/profiling/Cargo.toml @@ -23,7 +23,7 @@ wasmtime-runtime = { path = "../runtime", version = "0.28.0" } ittapi-rs = { version = "0.1.5", optional = true } [dependencies.object] -version = "0.25.0" +version = "0.26.0" optional = true default-features = false features = ['read_core', 'elf', 'std']