From 6a6ad509b28108cccb6ced6e3037a48f9bd23171 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Aug 2022 02:03:23 +0000 Subject: [PATCH] Bump wasmparser from 0.71.0 to 0.90.0 Bumps [wasmparser](https://github.com/bytecodealliance/wasm-tools) from 0.71.0 to 0.90.0. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/compare/wasmparser-0.71.0...wasmparser-0.90.0) --- updated-dependencies: - dependency-name: wasmparser dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 29 +++++++++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 28 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 515af95..256904a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,6 +28,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "autocfg" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" + [[package]] name = "bitflags" version = "1.2.1" @@ -102,6 +108,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + [[package]] name = "heck" version = "0.3.1" @@ -120,6 +132,16 @@ dependencies = [ "libc", ] +[[package]] +name = "indexmap" +version = "1.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "10a35a97730320ffe8e2d410b5d3b69279b98d2c14bdb8b70ea89ecf7888d41e" +dependencies = [ + "autocfg", + "hashbrown", +] + [[package]] name = "instant" version = "0.1.12" @@ -360,9 +382,12 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.71.0" +version = "0.90.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89a30c99437829ede826802bfcf28500cf58df00e66cb9114df98813bc145ff1" +checksum = "b62c8d843f4423efee314dc75a1049886deba3214f7e7f9ff0e4e58b4d618581" +dependencies = [ + "indexmap", +] [[package]] name = "winapi" diff --git a/Cargo.toml b/Cargo.toml index dac86be..a10893f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ is-it-maintained-issue-resolution = { repository = "enarx/enarx" } is-it-maintained-open-issues = { repository = "enarx/enarx" } [dependencies] -wasmparser = "0.71" +wasmparser = "0.90" structopt = "0.3" tempfile = "3.3" lebicon = "4.0"