From a3f907844a037e0be053212c90ddadba134533e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 08:25:41 +0000 Subject: [PATCH] chore(deps): bump wat from 1.0.85 to 1.208.1 Bumps [wat](https://github.com/bytecodealliance/wasm-tools) from 1.0.85 to 1.208.1. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/compare/wat-1.0.85...v1.208.1) --- updated-dependencies: - dependency-name: wat dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 21 +++++++++++++++------ src/kiwi/Cargo.toml | 2 +- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9d77a17..12a712b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3035,6 +3035,15 @@ dependencies = [ "leb128", ] +[[package]] +name = "wasm-encoder" +version = "0.208.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6425e84e42f7f558478e40ecc2287912cb319f2ca68e5c0bb93c61d4fc63fa17" +dependencies = [ + "leb128", +] + [[package]] name = "wasm-metadata" version = "0.10.17" @@ -3454,24 +3463,24 @@ dependencies = [ [[package]] name = "wast" -version = "70.0.2" +version = "208.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3d5061300042ff5065123dae1e27d00c03f567d34a2937c8472255148a216dc" +checksum = "bc00b3f023b4e2ccd2e054e240294263db52ae962892e6523e550783c83a67f1" dependencies = [ "bumpalo", "leb128", "memchr", "unicode-width", - "wasm-encoder 0.41.0", + "wasm-encoder 0.208.1", ] [[package]] name = "wat" -version = "1.0.85" +version = "1.208.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afd7357b6cc46d46a2509c43dcb1dd4131dafbf4e75562d87017b5a05ffad2d6" +checksum = "58ed38e59176550214c025ea2bd0eeefd8e86b92d0af6698d5ba95020ec2e07b" dependencies = [ - "wast 70.0.2", + "wast 208.0.1", ] [[package]] diff --git a/src/kiwi/Cargo.toml b/src/kiwi/Cargo.toml index 3f352a5..71d91a9 100644 --- a/src/kiwi/Cargo.toml +++ b/src/kiwi/Cargo.toml @@ -29,7 +29,7 @@ tracing-subscriber = "0.3.18" wasmtime = { version = "18.0.2", features = ["component-model", "async"] } wasmtime-wasi = "18.0.2" wasmtime-wasi-http = "18.0.2" -wat = "1.0.85" +wat = "1.208.1" wit-component = "0.20.1" ringbuf = "0.3.3" async-stream = "0.3.5"