Skip to content

Commit

Permalink
Bump Walrus from v0.21 to v0.22 (#4126)
Browse files Browse the repository at this point in the history
Co-authored-by: daxpedda <[email protected]>
  • Loading branch information
dependabot[bot] and daxpedda authored Sep 28, 2024
1 parent 9b81f4b commit d8b6bd0
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
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

0 comments on commit d8b6bd0

Please sign in to comment.