diff --git a/Cargo.toml b/Cargo.toml index a13ac9b..0d76470 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ rust-version = "1.85" [workspace.dependencies] # WebAssembly parsing and encoding -wasmparser = { version = "0.252", features = ["component-model"] } +wasmparser = { version = "0.253", features = ["component-model"] } wasm-encoder = { version = "0.253", features = ["component-model"] } wasmprinter = "0.252" wat = "1.241" diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 97423ac..6a1982d 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -16,7 +16,7 @@ libfuzzer-sys = "0.4" arbitrary = { version = "1", features = ["derive"] } # Disable verification feature to avoid Z3 compilation (not needed for fuzzing) loom-core = { path = "../loom-core", default-features = false } -wasmparser = { version = "0.252" } +wasmparser = { version = "0.253" } [[bin]] name = "fuzz_optimize"