From 0a9fed4a4aadffa5f5c1dcaea13d6b56ef4f4b18 Mon Sep 17 00:00:00 2001 From: Alex Snaps Date: Wed, 18 Sep 2024 07:26:32 -0400 Subject: [PATCH] Only enable minimum set of wasmtime features Signed-off-by: Alex Snaps --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4f82b6d..a9bbb1b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -wasmtime = "23.0.1" +wasmtime = { version = "24.0.0", default-features = false, features = ["cranelift", "parallel-compilation", "std", "runtime"] } anyhow = "1.0.72" lazy_static = "1.4.0" more-asserts = "0.3.1"