From fcc4a781b88750244112541294fd5fc9a3f9f42e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 03:06:02 +0000 Subject: [PATCH] build(deps): update wasmtime requirement from 24.0 to 25.0 Updates the requirements on [wasmtime](https://github.com/bytecodealliance/wasmtime) to permit the latest version. - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md) - [Commits](https://github.com/bytecodealliance/wasmtime/compare/v24.0.0...v25.0.0) --- updated-dependencies: - dependency-name: wasmtime dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- examples/wasmtime/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/wasmtime/Cargo.toml b/examples/wasmtime/Cargo.toml index fe2368f41..411553612 100644 --- a/examples/wasmtime/Cargo.toml +++ b/examples/wasmtime/Cargo.toml @@ -18,7 +18,7 @@ cfg-if = "1" log = { version = "0.4" } #, features = ["kv_unstable"]} simple_logger = { version = "5.0", default-features = false } # FIXME: remove `gc` feature once upgraded to wasmtime 25: -wasmtime = { version = "24.0", default-features = false, features = ["std", "gc", "runtime", "cranelift", "threads", "parallel-compilation"] } #"pooling-allocator", "incremental-cache", "wat", "gc", "component-model"] } +wasmtime = { version = "25.0", default-features = false, features = ["std", "gc", "runtime", "cranelift", "threads", "parallel-compilation"] } #"pooling-allocator", "incremental-cache", "wat", "gc", "component-model"] } zerocopy = { version = "0.7", default-features = false, features = ["alloc", "derive", "simd-nightly"] } [target.'cfg(target_os = "hermit")'.dependencies]