From d5f14c66e3540adcbe72176c204e3e21b172a693 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Oct 2025 08:57:24 +0000 Subject: [PATCH] build(deps): bump wasi Bumps [wasi](https://github.com/bytecodealliance/wasi-rs) from 0.11.0+wasi-snapshot-preview1 to 0.14.7+wasi-0.2.4. - [Commits](https://github.com/bytecodealliance/wasi-rs/compare/0.11.0...0.14.7) --- updated-dependencies: - dependency-name: wasi dependency-version: 0.14.7+wasi-0.2.4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 37 ++++++++++++++++++++++++++++----- examples/hermit-wasm/Cargo.toml | 2 +- 2 files changed, 33 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 838117a64..e3fd39437 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1045,7 +1045,7 @@ checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7" dependencies = [ "cfg-if", "libc", - "wasi", + "wasi 0.11.1+wasi-snapshot-preview1", ] [[package]] @@ -1191,7 +1191,7 @@ dependencies = [ "hermit-abi 0.5.2", "libc", "log", - "wasi", + "wasi 0.14.7+wasi-0.2.4", "wasmtime", "zerocopy", ] @@ -1566,7 +1566,7 @@ checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873" dependencies = [ "libc", "log", - "wasi", + "wasi 0.11.1+wasi-snapshot-preview1", "windows-sys 0.61.0", ] @@ -2899,9 +2899,27 @@ dependencies = [ [[package]] name = "wasi" -version = "0.11.0+wasi-snapshot-preview1" +version = "0.11.1+wasi-snapshot-preview1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasi" +version = "0.14.7+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c" +dependencies = [ + "wasip2", +] + +[[package]] +name = "wasip2" +version = "1.0.1+wasi-0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7" +dependencies = [ + "wit-bindgen", +] [[package]] name = "wasm-bindgen" @@ -3503,6 +3521,15 @@ version = "0.53.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486" +[[package]] +name = "wit-bindgen" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59" +dependencies = [ + "bitflags", +] + [[package]] name = "x25519-dalek" version = "2.0.1" diff --git a/examples/hermit-wasm/Cargo.toml b/examples/hermit-wasm/Cargo.toml index 4f3747bd3..d9772f508 100644 --- a/examples/hermit-wasm/Cargo.toml +++ b/examples/hermit-wasm/Cargo.toml @@ -29,7 +29,7 @@ cfg-if = "1" log = { version = "0.4" } #, features = ["kv_unstable"]} libc = "0.2" env_logger = { version = "0.11", default-features = false } -wasi = "0.11" +wasi = "0.14" wasmtime = { version = "37", default-features = false, features = ["std", "runtime", "cranelift", "threads", "parallel-compilation", "custom-virtual-memory", "gc", "gc-drc", 'gc-null',] } #"pooling-allocator", "incremental-cache", "component-model"] } zerocopy = { version = "0.8", default-features = false, features = ["alloc", "derive", "simd-nightly"] }