Update wasmparser to 0.51.2 (#952)

Fixes a bug in multi-value loop validation,
bytecodealliance/wasmparser#195
This commit is contained in:
Alex Crichton
2020-02-18 13:59:22 -06:00
committed by GitHub
parent b15b5cd05a
commit a09eed97db
2 changed files with 12 additions and 12 deletions

22
Cargo.lock generated
View File

@@ -906,7 +906,7 @@ dependencies = [
"smallvec", "smallvec",
"thiserror", "thiserror",
"typemap", "typemap",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"wat", "wat",
] ]
@@ -1877,9 +1877,9 @@ checksum = "073da89bf1c84db000dd68ce660c1b4a08e3a2d28fd1e3394ab9e7abdde4a0f8"
[[package]] [[package]]
name = "wasmparser" name = "wasmparser"
version = "0.51.1" version = "0.51.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e41b27a1677fe28c115de49efca55dabb14f7fece2c32947ffb9b1064fe5bd4" checksum = "a40d24f114a3f24b459ec292019220cff6388673b4a2c0a11483665b599ef15c"
[[package]] [[package]]
name = "wasmprinter" name = "wasmprinter"
@@ -1888,7 +1888,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bd423d45b95fcee11775472bfdce66c63c45ada23c1b338e0a63d623a6c475b" checksum = "8bd423d45b95fcee11775472bfdce66c63c45ada23c1b338e0a63d623a6c475b"
dependencies = [ dependencies = [
"anyhow", "anyhow",
"wasmparser 0.51.1", "wasmparser 0.51.2",
] ]
[[package]] [[package]]
@@ -1907,7 +1907,7 @@ dependencies = [
"rustc-demangle", "rustc-demangle",
"target-lexicon", "target-lexicon",
"wasi-common", "wasi-common",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-jit", "wasmtime-jit",
"wasmtime-runtime", "wasmtime-runtime",
@@ -1961,7 +1961,7 @@ dependencies = [
"more-asserts", "more-asserts",
"target-lexicon", "target-lexicon",
"thiserror", "thiserror",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"wasmtime-environ", "wasmtime-environ",
] ]
@@ -1994,7 +1994,7 @@ dependencies = [
"tempfile", "tempfile",
"thiserror", "thiserror",
"toml", "toml",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"winapi", "winapi",
"zstd", "zstd",
] ]
@@ -2018,7 +2018,7 @@ dependencies = [
"binaryen", "binaryen",
"env_logger 0.7.1", "env_logger 0.7.1",
"log", "log",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"wasmprinter", "wasmprinter",
"wasmtime", "wasmtime",
"wat", "wat",
@@ -2031,7 +2031,7 @@ dependencies = [
"anyhow", "anyhow",
"walrus", "walrus",
"wasm-webidl-bindings", "wasm-webidl-bindings",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"wasmtime", "wasmtime",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-jit", "wasmtime-jit",
@@ -2054,7 +2054,7 @@ dependencies = [
"region", "region",
"target-lexicon", "target-lexicon",
"thiserror", "thiserror",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"wasmtime-debug", "wasmtime-debug",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-runtime", "wasmtime-runtime",
@@ -2079,7 +2079,7 @@ dependencies = [
"pyo3", "pyo3",
"region", "region",
"target-lexicon", "target-lexicon",
"wasmparser 0.51.1", "wasmparser 0.51.2",
"wasmtime", "wasmtime",
"wasmtime-interface-types", "wasmtime-interface-types",
"wasmtime-wasi", "wasmtime-wasi",

View File

@@ -12,7 +12,7 @@ edition = "2018"
wasmtime-runtime = { path = "../runtime", version = "0.9.0" } wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
wasmtime-environ = { path = "../environ", version = "0.9.0" } wasmtime-environ = { path = "../environ", version = "0.9.0" }
wasmtime-jit = { path = "../jit", version = "0.9.0" } wasmtime-jit = { path = "../jit", version = "0.9.0" }
wasmparser = "0.51.1" wasmparser = "0.51.2"
target-lexicon = { version = "0.10.0", default-features = false } target-lexicon = { version = "0.10.0", default-features = false }
anyhow = "1.0.19" anyhow = "1.0.19"
region = "2.0.0" region = "2.0.0"