From 9ae060a12a0799f9679b3052050cf30625731899 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 7 Jul 2022 13:47:39 -0500 Subject: [PATCH] Update some dependency versions used by Wasmtime (#4405) No major motivation here, mostly just dependency gardening. --- Cargo.lock | 16 ++++++++-------- cranelift/codegen/Cargo.toml | 2 +- cranelift/frontend/Cargo.toml | 2 +- cranelift/module/Cargo.toml | 2 +- cranelift/object/Cargo.toml | 2 +- cranelift/wasm/Cargo.toml | 2 +- crates/cranelift/Cargo.toml | 2 +- crates/environ/Cargo.toml | 2 +- crates/jit-debug/Cargo.toml | 2 +- crates/jit/Cargo.toml | 2 +- crates/wasmtime/Cargo.toml | 2 +- 11 files changed, 18 insertions(+), 18 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9626e0d7b49c..98fe9b819226 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -141,9 +141,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" [[package]] name = "backtrace" -version = "0.3.65" +version = "0.3.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "11a17d453482a265fd5f8479f2a3f405566e6ca627837aaddb85af8b1ab8ef61" +checksum = "cab84319d616cfb654d03394f38ab7e6f0919e181b1b57e1fd15e7fb4077d9a7" dependencies = [ "addr2line", "cc", @@ -1296,9 +1296,9 @@ checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" [[package]] name = "hashbrown" -version = "0.11.2" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +checksum = "db0d4cf898abf0081f964436dc980e96670a0f36863e4b83aaacdb65c9d7ccc3" dependencies = [ "ahash", ] @@ -1370,9 +1370,9 @@ checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005" [[package]] name = "indexmap" -version = "1.8.1" +version = "1.9.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0f647032dfaa1f8b6dc29bd3edb7bbef4861b8b8007ebb118d6db284fd59f6ee" +checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" dependencies = [ "autocfg 1.1.0", "hashbrown", @@ -1831,9 +1831,9 @@ checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a" [[package]] name = "object" -version = "0.28.3" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "40bec70ba014595f99f7aa110b84331ffe1ee9aece7fe6f387cc7e3ecda4d456" +checksum = "21158b2c33aa6d4561f1c0a6ea283ca92bc54802a93b263e910746d679a7eb53" dependencies = [ "crc32fast", "hashbrown", diff --git a/cranelift/codegen/Cargo.toml b/cranelift/codegen/Cargo.toml index 23e631cc7ee6..bf1083905498 100644 --- a/cranelift/codegen/Cargo.toml +++ b/cranelift/codegen/Cargo.toml @@ -16,7 +16,7 @@ edition = "2021" cranelift-codegen-shared = { path = "./shared", version = "0.87.0" } cranelift-entity = { path = "../entity", version = "0.87.0" } cranelift-bforest = { path = "../bforest", version = "0.87.0" } -hashbrown = { version = "0.11", optional = true } +hashbrown = { version = "0.12", optional = true } target-lexicon = "0.12" log = { version = "0.4.6", default-features = false } serde = { version = "1.0.94", features = ["derive"], optional = true } diff --git a/cranelift/frontend/Cargo.toml b/cranelift/frontend/Cargo.toml index 20bd91e5db08..55bb630e5f64 100644 --- a/cranelift/frontend/Cargo.toml +++ b/cranelift/frontend/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" cranelift-codegen = { path = "../codegen", version = "0.87.0", default-features = false } target-lexicon = "0.12" log = { version = "0.4.6", default-features = false } -hashbrown = { version = "0.11", optional = true } +hashbrown = { version = "0.12", optional = true } smallvec = { version = "1.6.1" } [features] diff --git a/cranelift/module/Cargo.toml b/cranelift/module/Cargo.toml index 20f150e472bf..33f096ed9b4a 100644 --- a/cranelift/module/Cargo.toml +++ b/cranelift/module/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [dependencies] cranelift-codegen = { path = "../codegen", version = "0.87.0", default-features = false } -hashbrown = { version = "0.11", optional = true } +hashbrown = { version = "0.12", optional = true } anyhow = "1.0" [features] diff --git a/cranelift/object/Cargo.toml b/cranelift/object/Cargo.toml index 7d0951acf910..bd81c670cd15 100644 --- a/cranelift/object/Cargo.toml +++ b/cranelift/object/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [dependencies] cranelift-module = { path = "../module", version = "0.87.0" } cranelift-codegen = { path = "../codegen", version = "0.87.0", default-features = false, features = ["std"] } -object = { version = "0.28.0", default-features = false, features = ["write"] } +object = { version = "0.29.0", default-features = false, features = ["write"] } target-lexicon = "0.12" anyhow = "1.0" log = { version = "0.4.6", default-features = false } diff --git a/cranelift/wasm/Cargo.toml b/cranelift/wasm/Cargo.toml index 016005ccadec..413e364a902d 100644 --- a/cranelift/wasm/Cargo.toml +++ b/cranelift/wasm/Cargo.toml @@ -17,7 +17,7 @@ cranelift-codegen = { path = "../codegen", version = "0.87.0", default-features cranelift-entity = { path = "../entity", version = "0.87.0" } cranelift-frontend = { path = "../frontend", version = "0.87.0", default-features = false } wasmtime-types = { path = "../../crates/types", version = "0.40.0" } -hashbrown = { version = "0.11", optional = true } +hashbrown = { version = "0.12", optional = true } itertools = "0.10.0" log = { version = "0.4.6", default-features = false } serde = { version = "1.0.94", features = ["derive"], optional = true } diff --git a/crates/cranelift/Cargo.toml b/crates/cranelift/Cargo.toml index 5c100f87ab6e..07464c2fe5b2 100644 --- a/crates/cranelift/Cargo.toml +++ b/crates/cranelift/Cargo.toml @@ -22,7 +22,7 @@ cranelift-native = { path = "../../cranelift/native", version = "0.87.0" } wasmparser = "0.87.0" target-lexicon = "0.12" gimli = { version = "0.26.0", default-features = false, features = ['read', 'std'] } -object = { version = "0.28.0", default-features = false, features = ['write'] } +object = { version = "0.29.0", default-features = false, features = ['write'] } more-asserts = "0.2.1" thiserror = "1.0.4" diff --git a/crates/environ/Cargo.toml b/crates/environ/Cargo.toml index d1b3d06780a9..7d5131fa2434 100644 --- a/crates/environ/Cargo.toml +++ b/crates/environ/Cargo.toml @@ -21,7 +21,7 @@ serde = { version = "1.0.94", features = ["derive"] } log = { version = "0.4.8", default-features = false } more-asserts = "0.2.1" gimli = { version = "0.26.0", default-features = false, features = ['read'] } -object = { version = "0.28.0", default-features = false, features = ['read_core', 'write_core', 'elf'] } +object = { version = "0.29.0", default-features = false, features = ['read_core', 'write_core', 'elf'] } target-lexicon = "0.12" [badges] diff --git a/crates/jit-debug/Cargo.toml b/crates/jit-debug/Cargo.toml index d0a55e6c04bc..db82066789c2 100644 --- a/crates/jit-debug/Cargo.toml +++ b/crates/jit-debug/Cargo.toml @@ -12,7 +12,7 @@ edition = "2021" [dependencies] once_cell = {version = "1.12.0", optional = true } -object = { version = "0.28.0", default-features = false, features = ["std", "read_core"], optional = true } +object = { version = "0.29.0", default-features = false, features = ["std", "read_core"], optional = true } [target.'cfg(target_os = "linux")'.dependencies] rustix = { version = "0.35.6", features = ["mm", "param", "time"], optional = true } diff --git a/crates/jit/Cargo.toml b/crates/jit/Cargo.toml index c35896e533ec..cf3be933398c 100644 --- a/crates/jit/Cargo.toml +++ b/crates/jit/Cargo.toml @@ -20,7 +20,7 @@ target-lexicon = { version = "0.12.0", default-features = false } anyhow = "1.0" cfg-if = "1.0" gimli = { version = "0.26.0", default-features = false, features = ["std", "read"] } -object = { version = "0.28.0", default-features = false, features = ["std", "read_core", "elf"] } +object = { version = "0.29.0", default-features = false, features = ["std", "read_core", "elf"] } serde = { version = "1.0.94", features = ["derive"] } addr2line = { version = "0.17.0", default-features = false } ittapi-rs = { version = "0.2.0", optional = true } diff --git a/crates/wasmtime/Cargo.toml b/crates/wasmtime/Cargo.toml index e7c842ea0f5f..9defc87ee60a 100644 --- a/crates/wasmtime/Cargo.toml +++ b/crates/wasmtime/Cargo.toml @@ -36,7 +36,7 @@ paste = "1.0.3" psm = "0.1.11" once_cell = "1.12.0" rayon = { version = "1.0", optional = true } -object = { version = "0.28", default-features = false, features = ['read_core', 'elf'] } +object = { version = "0.29", default-features = false, features = ['read_core', 'elf'] } async-trait = { version = "0.1.51", optional = true } [target.'cfg(target_os = "windows")'.dependencies.windows-sys]