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

View File

@@ -12,7 +12,7 @@ edition = "2018"
wasmtime-runtime = { path = "../runtime", version = "0.9.0" }
wasmtime-environ = { path = "../environ", 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 }
anyhow = "1.0.19"
region = "2.0.0"