From 9fb3bca16876c756266274f78fcd0214e0581eaa Mon Sep 17 00:00:00 2001 From: daxpedda Date: Fri, 10 Nov 2023 22:50:43 +0100 Subject: [PATCH] Bump `walrus` to v0.20 (#3483) --- CHANGELOG.md | 5 +++++ crates/cli-support/Cargo.toml | 2 +- crates/cli/Cargo.toml | 2 +- crates/externref-xform/Cargo.toml | 2 +- crates/multi-value-xform/Cargo.toml | 2 +- crates/threads-xform/Cargo.toml | 2 +- crates/wasm-conventions/Cargo.toml | 2 +- crates/wasm-interpreter/Cargo.toml | 2 +- 8 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c74e9368c35..62f8afabe59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,11 @@ * Add additional constructor to `DataView` for `SharedArrayBuffer`. [#3695](https://github.com/rustwasm/wasm-bindgen/pull/3695) +### Fixed + +* The DWARF section is now correctly modified instead of leaving it in a broken state. + [#3483](https://github.com/rustwasm/wasm-bindgen/pull/3483) + ## [0.2.88](https://github.com/rustwasm/wasm-bindgen/compare/0.2.87...0.2.88) Released 2023-11-01 diff --git a/crates/cli-support/Cargo.toml b/crates/cli-support/Cargo.toml index 309804e62b7..1213c61a037 100644 --- a/crates/cli-support/Cargo.toml +++ b/crates/cli-support/Cargo.toml @@ -19,7 +19,7 @@ log = "0.4" rustc-demangle = "0.1.13" serde_json = "1.0" tempfile = "3.0" -walrus = "0.19.0" +walrus = "0.20.2" wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.88' } wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.88' } wasm-bindgen-shared = { path = "../shared", version = '=0.2.88' } diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index 543f4d05ff3..a8f322db9ef 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -33,7 +33,7 @@ ureq = { version = "2.7", default-features = false, features = [ "brotli", "gzip", ] } -walrus = { version = "0.19.0", features = ['parallel'] } +walrus = { version = "0.20.2", features = ['parallel'] } wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.88" } wasm-bindgen-shared = { path = "../shared", version = "=0.2.88" } diff --git a/crates/externref-xform/Cargo.toml b/crates/externref-xform/Cargo.toml index 97d2fab05c1..e14deec35df 100644 --- a/crates/externref-xform/Cargo.toml +++ b/crates/externref-xform/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.57" [dependencies] anyhow = "1.0" -walrus = "0.19.0" +walrus = "0.20.2" [dev-dependencies] rayon = "1.0" diff --git a/crates/multi-value-xform/Cargo.toml b/crates/multi-value-xform/Cargo.toml index b24cc440ea2..40f9a701a89 100644 --- a/crates/multi-value-xform/Cargo.toml +++ b/crates/multi-value-xform/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.57" [dependencies] anyhow = "1.0" -walrus = "0.19.0" +walrus = "0.20.2" [dev-dependencies] rayon = "1.0" diff --git a/crates/threads-xform/Cargo.toml b/crates/threads-xform/Cargo.toml index 0a47e9d380e..e917945ba61 100644 --- a/crates/threads-xform/Cargo.toml +++ b/crates/threads-xform/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.57" [dependencies] anyhow = "1.0" -walrus = "0.19.0" +walrus = "0.20.2" wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.88" } [dev-dependencies] diff --git a/crates/wasm-conventions/Cargo.toml b/crates/wasm-conventions/Cargo.toml index 4327f64c902..0d5406522e3 100644 --- a/crates/wasm-conventions/Cargo.toml +++ b/crates/wasm-conventions/Cargo.toml @@ -11,5 +11,5 @@ edition = "2018" rust-version = "1.57" [dependencies] -walrus = "0.19.0" +walrus = "0.20.2" anyhow = "1.0" diff --git a/crates/wasm-interpreter/Cargo.toml b/crates/wasm-interpreter/Cargo.toml index c107cf9e7ed..8a49c618567 100644 --- a/crates/wasm-interpreter/Cargo.toml +++ b/crates/wasm-interpreter/Cargo.toml @@ -15,7 +15,7 @@ rust-version = "1.57" [dependencies] anyhow = "1.0" log = "0.4" -walrus = "0.19.0" +walrus = "0.20.2" wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.88" } [dev-dependencies]