Update wasmparser to 0.45.1 (#776)

This commit is contained in:
Andrew Brown
2020-01-07 14:21:50 -08:00
committed by Alex Crichton
parent 4adca3d07e
commit 296ebc46fd
9 changed files with 19 additions and 19 deletions

22
Cargo.lock generated
View File

@@ -443,7 +443,7 @@ dependencies = [
"log", "log",
"serde", "serde",
"thiserror", "thiserror",
"wasmparser 0.45.0", "wasmparser 0.45.1",
] ]
[[package]] [[package]]
@@ -948,7 +948,7 @@ dependencies = [
"smallvec", "smallvec",
"thiserror", "thiserror",
"typemap", "typemap",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"wat", "wat",
] ]
@@ -1947,9 +1947,9 @@ checksum = "1527c84a5bd585215f29c06b0e2a5274e478ad4dfc970d26ffad66fdc6cb311d"
[[package]] [[package]]
name = "wasmparser" name = "wasmparser"
version = "0.45.0" version = "0.45.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd242c848b25027c3e29fb2bd34c8648755b33fef66a22f65b942d06562d3020" checksum = "4ee23c9b67aa5d7a2381ae56805ced08960d21b7cf6ca11f78b42d68e698d03b"
[[package]] [[package]]
name = "wasmprinter" name = "wasmprinter"
@@ -1973,7 +1973,7 @@ dependencies = [
"target-lexicon", "target-lexicon",
"thiserror", "thiserror",
"wasi-common", "wasi-common",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-jit", "wasmtime-jit",
"wasmtime-runtime", "wasmtime-runtime",
@@ -2020,7 +2020,7 @@ dependencies = [
"more-asserts", "more-asserts",
"target-lexicon", "target-lexicon",
"thiserror", "thiserror",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"wasmtime-environ", "wasmtime-environ",
] ]
@@ -2054,7 +2054,7 @@ dependencies = [
"tempfile", "tempfile",
"thiserror", "thiserror",
"toml", "toml",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"winapi", "winapi",
"zstd", "zstd",
] ]
@@ -2081,7 +2081,7 @@ dependencies = [
"binaryen", "binaryen",
"env_logger 0.7.1", "env_logger 0.7.1",
"log", "log",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"wasmprinter", "wasmprinter",
"wasmtime", "wasmtime",
"wasmtime-environ", "wasmtime-environ",
@@ -2096,7 +2096,7 @@ dependencies = [
"anyhow", "anyhow",
"walrus", "walrus",
"wasm-webidl-bindings", "wasm-webidl-bindings",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"wasmtime", "wasmtime",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-jit", "wasmtime-jit",
@@ -2118,7 +2118,7 @@ dependencies = [
"region", "region",
"target-lexicon", "target-lexicon",
"thiserror", "thiserror",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"wasmtime-debug", "wasmtime-debug",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-runtime", "wasmtime-runtime",
@@ -2143,7 +2143,7 @@ dependencies = [
"pyo3", "pyo3",
"region", "region",
"target-lexicon", "target-lexicon",
"wasmparser 0.45.0", "wasmparser 0.45.1",
"wasmtime", "wasmtime",
"wasmtime-environ", "wasmtime-environ",
"wasmtime-interface-types", "wasmtime-interface-types",

View File

@@ -16,7 +16,7 @@ crate-type = ["lib", "staticlib", "cdylib"]
wasmtime-runtime = { path = "../runtime" } wasmtime-runtime = { path = "../runtime" }
wasmtime-environ = { path = "../environ" } wasmtime-environ = { path = "../environ" }
wasmtime-jit = { path = "../jit" } wasmtime-jit = { path = "../jit" }
wasmparser = { version = "0.45.0", default-features = false } wasmparser = { version = "0.45.1", default-features = false }
target-lexicon = { version = "0.9.0", default-features = false } target-lexicon = { version = "0.9.0", default-features = false }
anyhow = "1.0.19" anyhow = "1.0.19"
thiserror = "1.0.4" thiserror = "1.0.4"

View File

@@ -13,7 +13,7 @@ edition = "2018"
[dependencies] [dependencies]
gimli = "0.19.0" gimli = "0.19.0"
wasmparser = "0.45.0" wasmparser = "0.45.1"
faerie = "0.13.0" faerie = "0.13.0"
wasmtime-environ = { path = "../environ" } wasmtime-environ = { path = "../environ" }
target-lexicon = { version = "0.9.0", default-features = false } target-lexicon = { version = "0.9.0", default-features = false }

View File

@@ -16,7 +16,7 @@ anyhow = "1.0"
cranelift-codegen = { version = "0.52.0", features = ["enable-serde"] } cranelift-codegen = { version = "0.52.0", features = ["enable-serde"] }
cranelift-entity = { version = "0.52.0", features = ["enable-serde"] } cranelift-entity = { version = "0.52.0", features = ["enable-serde"] }
cranelift-wasm = { version = "0.52.0", features = ["enable-serde"] } cranelift-wasm = { version = "0.52.0", features = ["enable-serde"] }
wasmparser = "0.45.0" wasmparser = "0.45.1"
lightbeam = { path = "../lightbeam", optional = true } lightbeam = { path = "../lightbeam", optional = true }
indexmap = "1.0.2" indexmap = "1.0.2"
rayon = "1.2.1" rayon = "1.2.1"

View File

@@ -14,7 +14,7 @@ arbitrary = "0.2.0"
binaryen = "0.8.2" binaryen = "0.8.2"
env_logger = { version = "0.7.1", optional = true } env_logger = { version = "0.7.1", optional = true }
log = "0.4.8" log = "0.4.8"
wasmparser = "0.45.0" wasmparser = "0.45.1"
wasmprinter = "0.2.0" wasmprinter = "0.2.0"
wasmtime = { path = "../api" } wasmtime = { path = "../api" }
wasmtime-environ = { path = "../environ" } wasmtime-environ = { path = "../environ" }

View File

@@ -13,7 +13,7 @@ edition = "2018"
[dependencies] [dependencies]
anyhow = "1.0.19" anyhow = "1.0.19"
walrus = "0.13" walrus = "0.13"
wasmparser = { version = "0.45.0", default-features = false } wasmparser = { version = "0.45.1", default-features = false }
wasm-webidl-bindings = "0.6" wasm-webidl-bindings = "0.6"
wasmtime = { path = '../api' } wasmtime = { path = '../api' }
wasmtime-jit = { path = '../jit' } wasmtime-jit = { path = '../jit' }

View File

@@ -22,7 +22,7 @@ wasmtime-debug = { path = "../debug" }
region = "2.0.0" region = "2.0.0"
thiserror = "1.0.4" thiserror = "1.0.4"
target-lexicon = { version = "0.9.0", default-features = false } target-lexicon = { version = "0.9.0", default-features = false }
wasmparser = { version = "0.45.0", default-features = false } wasmparser = { version = "0.45.1", default-features = false }
more-asserts = "0.2.1" more-asserts = "0.2.1"
anyhow = "1.0" anyhow = "1.0"

View File

@@ -14,7 +14,7 @@ edition = "2018"
smallvec = "1.0.0" smallvec = "1.0.0"
dynasm = "0.5.2" dynasm = "0.5.2"
dynasmrt = "0.5.2" dynasmrt = "0.5.2"
wasmparser = "0.45.0" wasmparser = "0.45.1"
memoffset = "0.5.3" memoffset = "0.5.3"
itertools = "0.8.2" itertools = "0.8.2"
capstone = "0.6.0" capstone = "0.6.0"

View File

@@ -25,7 +25,7 @@ wasmtime-wasi = { path = "../../wasi" }
target-lexicon = { version = "0.9.0", default-features = false } target-lexicon = { version = "0.9.0", default-features = false }
anyhow = "1.0.19" anyhow = "1.0.19"
region = "2.0.0" region = "2.0.0"
wasmparser = "0.45.0" wasmparser = "0.45.1"
pyo3 = { version = "0.8.0", features = ["extension-module"] } pyo3 = { version = "0.8.0", features = ["extension-module"] }
[badges] [badges]