diff --git a/Cargo.lock b/Cargo.lock index 18cd2afe5..02ba158a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -774,7 +774,7 @@ dependencies = [ "serde", "smallvec", "thiserror", - "wasmparser", + "wasmparser 0.78.2", ] [[package]] @@ -1593,7 +1593,7 @@ dependencies = [ "tonic", "tonic-build", "url", - "wasmparser", + "wasmparser 0.118.2", "web3", ] @@ -5293,6 +5293,16 @@ version = "0.78.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "52144d4c78e5cf8b055ceab8e5fa22814ce4315d6002ad32cfd914f37c12fd65" +[[package]] +name = "wasmparser" +version = "0.118.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77f1154f1ab868e2a01d9834a805faca7bf8b50d041b4ca714d005d0dab1c50c" +dependencies = [ + "indexmap 2.1.0", + "semver", +] + [[package]] name = "wasmtime" version = "0.27.0" @@ -5315,7 +5325,7 @@ dependencies = [ "serde", "smallvec", "target-lexicon", - "wasmparser", + "wasmparser 0.78.2", "wasmtime-cache", "wasmtime-environ", "wasmtime-fiber", @@ -5358,7 +5368,7 @@ dependencies = [ "cranelift-frontend", "cranelift-wasm", "target-lexicon", - "wasmparser", + "wasmparser 0.78.2", "wasmtime-environ", ] @@ -5374,7 +5384,7 @@ dependencies = [ "object 0.24.0", "target-lexicon", "thiserror", - "wasmparser", + "wasmparser 0.78.2", "wasmtime-environ", ] @@ -5394,7 +5404,7 @@ dependencies = [ "more-asserts", "serde", "thiserror", - "wasmparser", + "wasmparser 0.78.2", ] [[package]] @@ -5431,7 +5441,7 @@ dependencies = [ "serde", "target-lexicon", "thiserror", - "wasmparser", + "wasmparser 0.78.2", "wasmtime-cranelift", "wasmtime-debug", "wasmtime-environ", diff --git a/graph/Cargo.toml b/graph/Cargo.toml index bbb4d6d4b..65ea41081 100644 --- a/graph/Cargo.toml +++ b/graph/Cargo.toml @@ -62,7 +62,7 @@ prost = { workspace = true } prost-types = { workspace = true } futures03 = { version = "0.3.1", package = "futures", features = ["compat"] } -wasmparser = "0.78.2" +wasmparser = "0.118.2" thiserror = "1.0.25" parking_lot = "0.12.1" itertools = "0.12.0"