From d1f263d84fae526b2738c9581b98f041937c047e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Aug 2026 05:03:36 +0000 Subject: [PATCH] chore(deps): bump wit-component from 0.247.0 to 0.255.0 Bumps [wit-component](https://github.com/bytecodealliance/wasm-tools) from 0.247.0 to 0.255.0. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/commits) --- updated-dependencies: - dependency-name: wit-component dependency-version: 0.255.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 57 +++++++++++++++++++++++++++++++++++++++++------------- Cargo.toml | 2 +- 2 files changed, 45 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index c50e2f35..6abe3659 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -278,10 +278,10 @@ dependencies = [ "syn 2.0.118", "toml", "toml_edit", - "wasmparser", + "wasmparser 0.247.0", "which", "wit-component", - "wit-parser", + "wit-parser 0.247.0", ] [[package]] @@ -1543,24 +1543,24 @@ checksum = "c31d56021e873866c968588ed85ccdf56db5c426e44afdb4618c39895104b920" [[package]] name = "wasm-encoder" -version = "0.247.0" +version = "0.255.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "30b6733b8b91d010a6ac5b0fb237dc46a19650bc4c67db66857e2e787d437204" +checksum = "9b524283fb5df62eec102ed0574838961bdd7ba5ac9c50d38e2756c51c971a42" dependencies = [ "leb128fmt", - "wasmparser", + "wasmparser 0.255.0", ] [[package]] name = "wasm-metadata" -version = "0.247.0" +version = "0.255.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "665fe59e56cc9b419ca6fcca56673e3421d1a5011e3b65caf6b726fd9e041d10" +checksum = "4d3b0da506f1b8514517972fbc47057b21273cb619290f51ea31403c157f896c" dependencies = [ "anyhow", "indexmap 2.14.0", "wasm-encoder", - "wasmparser", + "wasmparser 0.255.0", ] [[package]] @@ -1576,6 +1576,18 @@ dependencies = [ "serde", ] +[[package]] +name = "wasmparser" +version = "0.255.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8e329ef4b5d46e73b91d3ac6924417cad55a8cbbf869c199283383427c3320b" +dependencies = [ + "bitflags", + "hashbrown 0.17.1", + "indexmap 2.14.0", + "semver", +] + [[package]] name = "web-sys" version = "0.3.103" @@ -1683,9 +1695,9 @@ dependencies = [ [[package]] name = "wit-component" -version = "0.247.0" +version = "0.255.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9d567162a6b9843080e5e0053f696623ff694bae8ae017c9ec536d1873bbe3d8" +checksum = "b0c8948006f57458ae3b2103f2e0e33847a6cdf4f5c763bbe7540fa89f3039f1" dependencies = [ "anyhow", "bitflags", @@ -1696,8 +1708,8 @@ dependencies = [ "serde_json", "wasm-encoder", "wasm-metadata", - "wasmparser", - "wit-parser", + "wasmparser 0.255.0", + "wit-parser 0.255.0", ] [[package]] @@ -1716,7 +1728,26 @@ dependencies = [ "serde_derive", "serde_json", "unicode-xid", - "wasmparser", + "wasmparser 0.247.0", +] + +[[package]] +name = "wit-parser" +version = "0.255.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab5f6371fc71f15730b756c1dea3562a67adab1a7e519c4ca010173d883695bb" +dependencies = [ + "anyhow", + "hashbrown 0.17.1", + "id-arena", + "indexmap 2.14.0", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-ident", + "wasmparser 0.255.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index a00c59b8..4bf5f542 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -134,5 +134,5 @@ wit-parser = "=0.247.0" # Deliberately default-features: the `dummy-module` feature gates a `ComponentEncoder` path that is a # FALSE ORACLE for worlds exporting resources (it fails a package that resolves, encodes, validates # and builds). -wit-component = "=0.247.0" +wit-component = "=0.255.0" wasmparser = "=0.247.0"