From 9e3ebe5fd79effd50fd711deb7aca53b53888f0d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Apr 2024 09:06:56 +0000 Subject: [PATCH] chore(deps): bump wat from 1.0.85 to 1.203.0 Bumps [wat](https://github.com/bytecodealliance/wasm-tools) from 1.0.85 to 1.203.0. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/compare/wat-1.0.85...v1.203.0) --- 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..4750d30 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3035,6 +3035,15 @@ dependencies = [ "leb128", ] +[[package]] +name = "wasm-encoder" +version = "0.203.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87e3b46a0d9d9143d57aa926c42e2af284b5cb8f0c7b71079afc7a6fca42db50" +dependencies = [ + "leb128", +] + [[package]] name = "wasm-metadata" version = "0.10.17" @@ -3454,24 +3463,24 @@ dependencies = [ [[package]] name = "wast" -version = "70.0.2" +version = "203.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a3d5061300042ff5065123dae1e27d00c03f567d34a2937c8472255148a216dc" +checksum = "872020f79fa7a09aeaec308d0ba60816e2f808d9b402e2f89d2a9c76eda482cd" dependencies = [ "bumpalo", "leb128", "memchr", "unicode-width", - "wasm-encoder 0.41.0", + "wasm-encoder 0.203.0", ] [[package]] name = "wat" -version = "1.0.85" +version = "1.203.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "afd7357b6cc46d46a2509c43dcb1dd4131dafbf4e75562d87017b5a05ffad2d6" +checksum = "e2913b554125048798744fce03832d5330d87624782f8ec6ad8c9716a1ef7a37" dependencies = [ - "wast 70.0.2", + "wast 203.0.0", ] [[package]] diff --git a/src/kiwi/Cargo.toml b/src/kiwi/Cargo.toml index 3f352a5..709985f 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.203.0" wit-component = "0.20.1" ringbuf = "0.3.3" async-stream = "0.3.5"