From 027255c029402feb653885e44cad11b29e949253 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Apr 2023 09:14:02 +0000 Subject: [PATCH] Bump wasmparser from 0.73.1 to 0.92.0 Bumps [wasmparser](https://github.com/bytecodealliance/wasm-tools) from 0.73.1 to 0.92.0. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/compare/wasmparser-0.73.1...wasmparser-0.92.0) --- updated-dependencies: - dependency-name: wasmparser dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 7 +++++-- parser/Cargo.toml | 2 +- traits/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 05c55023..55e876bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -728,9 +728,12 @@ checksum = "d554b7f530dee5964d9a9468d95c1f8b8acae4f282807e7d27d4b03099a46744" [[package]] name = "wasmparser" -version = "0.80.2" +version = "0.92.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "449167e2832691a1bff24cde28d2804e90e09586a448c8e76984792c44334a6b" +checksum = "7da34cec2a8c23db906cdf8b26e988d7a7f0d549eb5d51299129647af61a1b37" +dependencies = [ + "indexmap", +] [[package]] name = "winapi" diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 52ed37a6..265ad533 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -17,7 +17,7 @@ anyhow = "1.0" fallible-iterator = { version = "0.2.0", optional = true } gimli = { version = "0.27.2", optional = true, default-features = false, features = ["std", "read"] } object = { version = "0.17.0", optional = true } -wasmparser = "0.80.0" +wasmparser = "0.92.0" typed-arena = { version = "2.0.2", optional = true } twiggy-ir = { version = "=0.7.0", path = "../ir" } twiggy-traits = { version = "=0.7.0", path = "../traits" } diff --git a/traits/Cargo.toml b/traits/Cargo.toml index 83c992ff..c56670d3 100644 --- a/traits/Cargo.toml +++ b/traits/Cargo.toml @@ -16,7 +16,7 @@ path = "./traits.rs" thiserror = "1.0" anyhow = "1.0" gimli = { version = "0.27.2", optional = true, default-features = false, features = ["std", "read"] } -wasmparser = "0.80.0" +wasmparser = "0.92.0" twiggy-ir = { version = "=0.7.0", path = "../ir" } csv = "1.2.1" regex = "1.4.2"