From 9c162a2f4a35c44ca979c30022100e434a24ae8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2025 04:18:27 +0000 Subject: [PATCH] Bump wat from 1.222.0 to 1.225.0 in /native/wasmex Bumps [wat](https://github.com/bytecodealliance/wasm-tools) from 1.222.0 to 1.225.0. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/compare/v1.222.0...v1.225.0) --- updated-dependencies: - dependency-name: wat dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- native/wasmex/Cargo.lock | 32 +++++++++++++++++++------------- native/wasmex/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 14 deletions(-) diff --git a/native/wasmex/Cargo.lock b/native/wasmex/Cargo.lock index e773e2e..02e42bd 100644 --- a/native/wasmex/Cargo.lock +++ b/native/wasmex/Cargo.lock @@ -1099,6 +1099,12 @@ version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67" +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + [[package]] name = "libc" version = "0.2.164" @@ -2062,12 +2068,12 @@ dependencies = [ [[package]] name = "wasm-encoder" -version = "0.222.0" +version = "0.225.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3432682105d7e994565ef928ccf5856cf6af4ba3dddebedb737f61caed70f956" +checksum = "6f7eac0445cac73bcf09e6a97f83248d64356dccf9f2b100199769b6b42464e5" dependencies = [ - "leb128", - "wasmparser 0.222.0", + "leb128fmt", + "wasmparser 0.225.0", ] [[package]] @@ -2102,9 +2108,9 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.222.0" +version = "0.225.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4adf50fde1b1a49c1add6a80d47aea500c88db70551805853aa8b88f3ea27ab5" +checksum = "36e5456165f81e64cb9908a0fe9b9d852c2c74582aa3fe2be3c2da57f937d3ae" dependencies = [ "bitflags", "indexmap", @@ -2429,24 +2435,24 @@ dependencies = [ [[package]] name = "wast" -version = "222.0.0" +version = "225.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5ce7191f4b7da0dd300cc32476abae6457154e4625d9b1bc26890828a9a26f6e" +checksum = "c61496027ff707f9fa9e0b22c34ec163eb7adb1070df565e32a9180a76e4300b" dependencies = [ "bumpalo", - "leb128", + "leb128fmt", "memchr", "unicode-width", - "wasm-encoder 0.222.0", + "wasm-encoder 0.225.0", ] [[package]] name = "wat" -version = "1.222.0" +version = "1.225.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fde61b4b52f9a84ae31b5e8902a2cd3162ea45d8bf564c729c3288fe52f4334" +checksum = "89e72a33942234fd0794bcdac30e43b448de3187512414267678e511c6755f11" dependencies = [ - "wast 222.0.0", + "wast 225.0.0", ] [[package]] diff --git a/native/wasmex/Cargo.toml b/native/wasmex/Cargo.toml index 3c4bf0e..d97b50f 100644 --- a/native/wasmex/Cargo.toml +++ b/native/wasmex/Cargo.toml @@ -23,6 +23,6 @@ wasmtime-wasi = "28.0.0" wasmtime-wasi-http = "28.0.0" wasi-common = "28.0.0" wiggle = "28.0.0" -wat = "1.220.0" +wat = "1.225.0" wit-parser = "0.221.2" convert_case = "0.6.0"