Skip to content

Update walrus requirement from 0.21.2 to 0.22.0 #4126

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/cli-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tempfile = "3.0"
unicode-ident = "1.0.5"
walrus = "0.21.2"
walrus = "0.22"
wasm-bindgen-externref-xform = { path = '../externref-xform', version = '=0.2.93' }
wasm-bindgen-multi-value-xform = { path = '../multi-value-xform', version = '=0.2.93' }
wasm-bindgen-shared = { path = "../shared", version = '=0.2.93' }
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ serde = { version = "1.0", features = ['derive'] }
serde_derive = "1.0"
serde_json = "1.0"
ureq = { version = "2.7", default-features = false, features = ["brotli", "gzip"] }
walrus = { version = "0.21.2", features = ['parallel'] }
walrus = { version = "0.22", features = ['parallel'] }
wasm-bindgen-cli-support = { path = "../cli-support", version = "=0.2.93" }
wasm-bindgen-shared = { path = "../shared", version = "=0.2.93" }

Expand Down
2 changes: 1 addition & 1 deletion crates/externref-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version = "0.2.93"

[dependencies]
anyhow = "1.0"
walrus = "0.21.2"
walrus = "0.22"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.93" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/multi-value-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version = "0.2.93"

[dependencies]
anyhow = "1.0"
walrus = "0.21.2"
walrus = "0.22"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.93" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/threads-xform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ version = "0.2.93"

[dependencies]
anyhow = "1.0"
walrus = "0.21.2"
walrus = "0.22"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "=0.2.93" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-conventions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ version = "0.2.93"

[dependencies]
leb128 = "0.2"
walrus = "0.21.2"
walrus = "0.22"
# Matching the version `walrus` depends on.
anyhow = "1.0"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ version = "0.2.93"
[dependencies]
anyhow = "1.0"
log = "0.4"
walrus = "0.21.2"
walrus = "0.22"
wasm-bindgen-wasm-conventions = { path = "../wasm-conventions", version = "0.2.93" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/wasm-interpreter/tests/smoke.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use wasm_bindgen_wasm_interpreter::Interpreter;

fn interpret(wat: &str, name: &str, result: Option<&[u32]>) {
let wasm = wat::parse_str(wat).unwrap();
let mut module = ModuleConfig::new()
let module = ModuleConfig::new()
.generate_producers_section(false)
.parse(&wasm)
.unwrap();
Expand Down