From 2f3dd362d89df246e0fd69c13c20f8eea433d9b9 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Wed, 5 Feb 2020 22:09:18 +0000 Subject: [PATCH] Update wasmparser requirement from 0.49.0 to 0.50.0 Updates the requirements on [wasmparser](https://github.com/bytecodealliance/wasmparser.rs) to permit the latest version. - [Release notes](https://github.com/bytecodealliance/wasmparser.rs/releases) - [Commits](https://github.com/bytecodealliance/wasmparser.rs/commits) Signed-off-by: dependabot-preview[bot] --- Cargo.toml | 2 +- crates/fuzz-utils/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 97f4f9b9..f1e85f69 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ leb128 = "0.2.4" log = "0.4.8" rayon = { version = "1.1.0", optional = true } walrus-macro = { path = './crates/macro', version = '=0.15.0' } -wasmparser = "0.49.0" +wasmparser = "0.50.0" [features] parallel = ['rayon', 'id-arena/rayon'] diff --git a/crates/fuzz-utils/Cargo.toml b/crates/fuzz-utils/Cargo.toml index 8e4efafa..cd47f01e 100644 --- a/crates/fuzz-utils/Cargo.toml +++ b/crates/fuzz-utils/Cargo.toml @@ -10,7 +10,7 @@ anyhow = "1.0" env_logger = "0.7.0" rand = { version = "0.7.0", features = ['small_rng'] } tempfile = "3.1.0" -wasmparser = "0.48" +wasmparser = "0.50" wat = "1.0" [dependencies.walrus]