From 5395443416b4e145f7d475f1becddd301492b749 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Dec 2024 15:27:02 +0000 Subject: [PATCH] build(deps): update wasmtime requirement from >=22, <28 to >=22, <29 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/v28.0.0/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/compare/v22.0.0...v28.0.0) --- updated-dependencies: - dependency-name: wasmtime dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7578477..8693cc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ serde_json = "1.0.18" # This is the earliest version which supports 128-bit inte thiserror = ">=1, <3" tokio = { version = "1.5", features = ["sync", "macros"] } tracing = "0.1.27" -wasmtime = { version = ">=22, <28", default-features = false, features = [ +wasmtime = { version = ">=22, <29", default-features = false, features = [ "async", ] } @@ -65,7 +65,7 @@ version = "1.5" features = ["macros", "fs", "rt", "rt-multi-thread"] [dev-dependencies] -wasmtime = { version = ">=22, <28", default-features = false, features = [ +wasmtime = { version = ">=22, <29", default-features = false, features = [ "cranelift", ] } insta = { version = "1", features = ["yaml"] }