Update wasmparser (#934)

Pulls in bytecodealliance/wasmparser#193 which is a good bug fix to
have!
This commit is contained in:
Alex Crichton
2020-02-11 16:01:05 -08:00
committed by GitHub
parent 699109658c
commit ca509f8c29
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.0", "wasmparser 0.51.1",
"wat", "wat",
] ]
@@ -1877,9 +1877,9 @@ checksum = "073da89bf1c84db000dd68ce660c1b4a08e3a2d28fd1e3394ab9e7abdde4a0f8"
[[package]] [[package]]
name = "wasmparser" name = "wasmparser"
version = "0.51.0" version = "0.51.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6860a452de64c9f5fb5af92a630b3894c0414a5f6a113f184ad2376d7a39fb40" checksum = "9e41b27a1677fe28c115de49efca55dabb14f7fece2c32947ffb9b1064fe5bd4"
[[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.0", "wasmparser 0.51.1",
] ]
[[package]] [[package]]
@@ -1907,7 +1907,7 @@ dependencies = [
"rustc-demangle", "rustc-demangle",
"target-lexicon", "target-lexicon",
"wasi-common", "wasi-common",
"wasmparser 0.51.0", "wasmparser 0.51.1",
"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.0", "wasmparser 0.51.1",
"wasmtime-environ", "wasmtime-environ",
] ]
@@ -1994,7 +1994,7 @@ dependencies = [
"tempfile", "tempfile",
"thiserror", "thiserror",
"toml", "toml",
"wasmparser 0.51.0", "wasmparser 0.51.1",
"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.0", "wasmparser 0.51.1",
"wasmprinter", "wasmprinter",
"wasmtime", "wasmtime",
"wat", "wat",
@@ -2031,7 +2031,7 @@ dependencies = [
"anyhow", "anyhow",
"walrus", "walrus",
"wasm-webidl-bindings", "wasm-webidl-bindings",
"wasmparser 0.51.0", "wasmparser 0.51.1",
"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.0", "wasmparser 0.51.1",
"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.0", "wasmparser 0.51.1",
"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.0" wasmparser = "0.51.1"
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"