From ff0404fd5f3e2b0772cc2b12321c99db4dc46b89 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Mon, 28 Oct 2024 23:38:28 +0100 Subject: [PATCH 1/2] remove unused feature settings --- crates/fuzz/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/fuzz/Cargo.toml b/crates/fuzz/Cargo.toml index 47e889ee08..0c47e18fe5 100644 --- a/crates/fuzz/Cargo.toml +++ b/crates/fuzz/Cargo.toml @@ -16,8 +16,8 @@ publish = false [dependencies] wasmi = { workspace = true, features = ["std"] } -wasmi-stack = { package = "wasmi", feature = ["std"], version = "0.31.2", optional = true } -wasmtime = { version = "26.0.0", feature = ["std"], optional = true } +wasmi-stack = { package = "wasmi", version = "0.31.2", optional = true } +wasmtime = { version = "26.0.0", optional = true } wasm-smith = "0.219.1" arbitrary = "1.3.2" sha2 = "0.10" From 9dd052ca2798bef745ddf0f2db0d6df89424cc38 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Mon, 28 Oct 2024 23:38:48 +0100 Subject: [PATCH 2/2] remove default features --- crates/fuzz/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/fuzz/Cargo.toml b/crates/fuzz/Cargo.toml index 0c47e18fe5..81e86ced34 100644 --- a/crates/fuzz/Cargo.toml +++ b/crates/fuzz/Cargo.toml @@ -25,7 +25,7 @@ wasmprinter = "0.219.1" anyhow = "1.0.91" [features] -default = ["differential"] +default = [] differential = [ "dep:wasmi-stack", "dep:wasmtime",