From b8a60cff94a37708525c5eda4fb6f10e37af076b Mon Sep 17 00:00:00 2001 From: Nick Fitzgerald Date: Thu, 5 Dec 2019 10:08:53 -0800 Subject: [PATCH] Bump wasmparser to 0.44.0 --- Cargo.toml | 2 +- src/module/functions/local_function/mod.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7d6caa79..91d36896 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.14.0' } -wasmparser = "0.42.0" +wasmparser = "0.44.0" [features] parallel = ['rayon', 'id-arena/rayon'] diff --git a/src/module/functions/local_function/mod.rs b/src/module/functions/local_function/mod.rs index 560b09af..6c2d2034 100644 --- a/src/module/functions/local_function/mod.rs +++ b/src/module/functions/local_function/mod.rs @@ -1415,7 +1415,7 @@ fn validate_instruction<'context>( op @ Operator::TableInit { .. } | op @ Operator::ElemDrop { .. } - | op @ Operator::TableCopy => { + | op @ Operator::TableCopy {.. } => { bail!("Have not implemented support for opcode yet: {:?}", op) } }