diff --git a/Cargo.toml b/Cargo.toml index 291cdb4..0c86dc6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ libc = "0.2.58" [dev-dependencies] assert_matches = "1.1" rand = "0.4.2" -wabt = "0.6" +wabt = "0.9" [features] default = ["std"] diff --git a/benches/Cargo.toml b/benches/Cargo.toml index de60346..6e69f2b 100644 --- a/benches/Cargo.toml +++ b/benches/Cargo.toml @@ -6,7 +6,7 @@ authors = ["Sergey Pepyakin "] [dependencies] wasmi = { path = ".." } assert_matches = "1.2" -wabt = "0.6" +wabt = "0.9" [profile.bench] debug = true diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 4431140..693992d 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -10,7 +10,7 @@ cargo-fuzz = true [dependencies] wasmi = { path = ".." } -wabt = "0.6.0" +wabt = "0.9" wasmparser = "0.14.1" tempdir = "0.3.6" diff --git a/hfuzz/Cargo.toml b/hfuzz/Cargo.toml index 266b767..46bd8ea 100644 --- a/hfuzz/Cargo.toml +++ b/hfuzz/Cargo.toml @@ -7,4 +7,4 @@ authors = ["Sergey Pepyakin "] honggfuzz = "=0.5.9" # Strict equal since hfuzz requires dep and cmd versions to match. wasmi = { path = ".." } tempdir = "0.3.6" -wabt = "0.6.0" +wabt = "0.9" diff --git a/tests/spec/run.rs b/tests/spec/run.rs index 59db57b..0e4d778 100644 --- a/tests/spec/run.rs +++ b/tests/spec/run.rs @@ -18,6 +18,7 @@ fn spec_to_runtime_value(val: Value) -> RuntimeValue { Value::I64(v) => RuntimeValue::I64(v), Value::F32(v) => RuntimeValue::F32(v.into()), Value::F64(v) => RuntimeValue::F64(v.into()), + Value::V128(_) => panic!("v128 is not supported"), } }