From 466336c32830e2bcef9a4ec8c5f9c9a527cce91b Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Thu, 2 May 2024 15:39:09 +0900 Subject: [PATCH] host_wasmtime/Cargo.toml: exact match wasmtime version it seems that precompiled modules are incompatible among patch versions. --- host_wasmtime/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/host_wasmtime/Cargo.toml b/host_wasmtime/Cargo.toml index 89fefa0..7b3a7c9 100644 --- a/host_wasmtime/Cargo.toml +++ b/host_wasmtime/Cargo.toml @@ -26,5 +26,5 @@ async-trait = "0.1.77" tokio = { version = "1.37.0", default-features = false } # preview2 and component-model are still moving targets. -wasmtime = { version = "17.0.2", default-features = false, features = ["component-model", "cranelift"]} -wasmtime-wasi = { version = "17.0.2", default-features = false, features = ["preview2", "sync"] } +wasmtime = { version = "=17.0.2", default-features = false, features = ["component-model", "cranelift"]} +wasmtime-wasi = { version = "=17.0.2", default-features = false, features = ["preview2", "sync"] }