Skip to content

Commit

Permalink
Update wasm-tools dependencies (#1309)
Browse files Browse the repository at this point in the history
* update wasm-tools dependencies

* update cargo deps

* disable memory64 for wasm-smith

* update Cargo.lock
  • Loading branch information
Robbepop authored Nov 17, 2024
1 parent 19bae9b commit e427d0f
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 37 deletions.
59 changes: 25 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ wasmtime = { version = "26.0.0", optional = true, default-features = false, feat
"runtime",
"std",
] }
wasm-smith = "0.219.1"
wasm-smith = "0.220.0"
arbitrary = "1.3.2"
sha2 = "0.10"
wasmprinter = { version = "0.219.1", default-features = false }
wasmprinter = { version = "0.220.0", default-features = false }
anyhow = "1.0.91"

[features]
Expand Down
1 change: 1 addition & 0 deletions crates/fuzz/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ impl Arbitrary<'_> for FuzzSmithConfig {
reference_types_enabled: false, // TODO: re-enable reference-types for differential fuzzing
simd_enabled: false,
multi_value_enabled: true,
memory64_enabled: false,
saturating_float_to_int_enabled: true,
sign_extension_ops_enabled: true,
relaxed_simd_enabled: false,
Expand Down
2 changes: 1 addition & 1 deletion fuzz/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ cargo-fuzz = true
[dependencies]
wasmi_fuzz = { workspace = true }
wasmi = { workspace = true, features = ["std"] }
wasm-smith = "0.219.1"
wasm-smith = "0.220.0"
libfuzzer-sys = "0.4.7"
arbitrary = "1.3.2"

Expand Down

0 comments on commit e427d0f

Please sign in to comment.