From efa69d36684dbe40ab463f814cea07ba1cecabd7 Mon Sep 17 00:00:00 2001 From: zach Date: Thu, 25 Jan 2024 16:11:17 -0800 Subject: [PATCH] chore: support for wasmtime 17.0.0 (#665) --- runtime/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 9b567ed..4f5ef99 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -9,8 +9,8 @@ repository.workspace = true version.workspace = true [dependencies] -wasmtime = ">= 14.0.0, < 17.0.0" -wasmtime-wasi = ">= 14.0.0, < 17.0.0" +wasmtime = ">= 14.0.0, < 18.0.0" +wasmtime-wasi = ">= 14.0.0, < 18.0.0" anyhow = "1" serde = {version = "1", features = ["derive"]} serde_json = "1"