Skip to content

Commit

Permalink
Clean up fuzzing infra (#1264)
Browse files Browse the repository at this point in the history
* remove unused feature settings

* remove default features
  • Loading branch information
Robbepop authored Oct 28, 2024
1 parent 59bd59e commit c724b91
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions crates/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ 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"
wasmprinter = "0.219.1"
anyhow = "1.0.91"

[features]
default = ["differential"]
default = []
differential = [
"dep:wasmi-stack",
"dep:wasmtime",
Expand Down

0 comments on commit c724b91

Please sign in to comment.