From 2c685fc3998a6eb339fde8a20746a49ab47b6658 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jun 2022 02:05:39 +0000 Subject: [PATCH] Bump wasmparser from 0.71.0 to 0.86.0 Bumps [wasmparser](https://github.com/bytecodealliance/wasm-tools) from 0.71.0 to 0.86.0. - [Release notes](https://github.com/bytecodealliance/wasm-tools/releases) - [Commits](https://github.com/bytecodealliance/wasm-tools/compare/wasmparser-0.71.0...wasmparser-0.86.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..bdec01b 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.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" + [[package]] name = "heck" version = "0.3.1" @@ -120,6 +132,16 @@ dependencies = [ "libc", ] +[[package]] +name = "indexmap" +version = "1.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6012d540c5baa3589337a98ce73408de9b5a25ec9fc2c6fd6be8f0d39e0ca5a" +dependencies = [ + "autocfg", + "hashbrown", +] + [[package]] name = "instant" version = "0.1.12" @@ -360,9 +382,12 @@ dependencies = [ [[package]] name = "wasmparser" -version = "0.71.0" +version = "0.86.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89a30c99437829ede826802bfcf28500cf58df00e66cb9114df98813bc145ff1" +checksum = "4bcbfe95447da2aa7ff171857fc8427513eb57c75a729bb190e974dc695e8f5c" +dependencies = [ + "indexmap", +] [[package]] name = "winapi" diff --git a/Cargo.toml b/Cargo.toml index dac86be..b7896cb 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.86" structopt = "0.3" tempfile = "3.3" lebicon = "4.0"