From 3330520ff11e1de1423803543d1f457b6d48fe6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 18:52:28 +0000 Subject: [PATCH] build(deps): update wasmtime requirement from 22.0 to 24.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/v22.0.0...v24.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 68302652f..693560b9f 100644 --- a/examples/wasmtime/Cargo.toml +++ b/examples/wasmtime/Cargo.toml @@ -17,7 +17,7 @@ bitflags = "2.5" cfg-if = "1" log = { version = "0.4" } #, features = ["kv_unstable"]} simple_logger = { version = "5.0", default-features = false } -wasmtime = { version = "22.0", default-features = false, features = ["std", "runtime", "cranelift", "threads", "parallel-compilation"] } #"pooling-allocator", "incremental-cache", "wat", "gc", "component-model"] } +wasmtime = { version = "24.0", default-features = false, features = ["std", "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]