Update wasmparser to 0.45.0 (#733)
This commit is contained in:
committed by
Yury Delendik
parent
31472fbb5a
commit
086ff63e6b
20
Cargo.lock
generated
20
Cargo.lock
generated
@@ -960,7 +960,7 @@ dependencies = [
|
|||||||
"smallvec",
|
"smallvec",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"typemap",
|
"typemap",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"wat",
|
"wat",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -1931,9 +1931,9 @@ checksum = "1527c84a5bd585215f29c06b0e2a5274e478ad4dfc970d26ffad66fdc6cb311d"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasmparser"
|
name = "wasmparser"
|
||||||
version = "0.44.0"
|
version = "0.45.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "babc64a146209e9ba40dd1ab89b161d27993b274a032a2fc34e967dd43b85e3a"
|
checksum = "cd242c848b25027c3e29fb2bd34c8648755b33fef66a22f65b942d06562d3020"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasmprinter"
|
name = "wasmprinter"
|
||||||
@@ -1959,7 +1959,7 @@ dependencies = [
|
|||||||
"target-lexicon",
|
"target-lexicon",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"wasi-common",
|
"wasi-common",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"wasmtime-environ",
|
"wasmtime-environ",
|
||||||
"wasmtime-jit",
|
"wasmtime-jit",
|
||||||
"wasmtime-runtime",
|
"wasmtime-runtime",
|
||||||
@@ -2008,7 +2008,7 @@ dependencies = [
|
|||||||
"more-asserts",
|
"more-asserts",
|
||||||
"target-lexicon",
|
"target-lexicon",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"wasmtime-environ",
|
"wasmtime-environ",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -2041,7 +2041,7 @@ dependencies = [
|
|||||||
"tempfile",
|
"tempfile",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"toml",
|
"toml",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"winapi",
|
"winapi",
|
||||||
"zstd",
|
"zstd",
|
||||||
]
|
]
|
||||||
@@ -2067,7 +2067,7 @@ dependencies = [
|
|||||||
"binaryen",
|
"binaryen",
|
||||||
"env_logger 0.7.1",
|
"env_logger 0.7.1",
|
||||||
"log",
|
"log",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"wasmprinter",
|
"wasmprinter",
|
||||||
"wasmtime",
|
"wasmtime",
|
||||||
"wasmtime-environ",
|
"wasmtime-environ",
|
||||||
@@ -2082,7 +2082,7 @@ dependencies = [
|
|||||||
"anyhow",
|
"anyhow",
|
||||||
"walrus",
|
"walrus",
|
||||||
"wasm-webidl-bindings",
|
"wasm-webidl-bindings",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"wasmtime",
|
"wasmtime",
|
||||||
"wasmtime-environ",
|
"wasmtime-environ",
|
||||||
"wasmtime-jit",
|
"wasmtime-jit",
|
||||||
@@ -2104,7 +2104,7 @@ dependencies = [
|
|||||||
"region",
|
"region",
|
||||||
"target-lexicon",
|
"target-lexicon",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"wasmtime-debug",
|
"wasmtime-debug",
|
||||||
"wasmtime-environ",
|
"wasmtime-environ",
|
||||||
"wasmtime-runtime",
|
"wasmtime-runtime",
|
||||||
@@ -2128,7 +2128,7 @@ dependencies = [
|
|||||||
"pyo3",
|
"pyo3",
|
||||||
"region",
|
"region",
|
||||||
"target-lexicon",
|
"target-lexicon",
|
||||||
"wasmparser 0.44.0",
|
"wasmparser 0.45.0",
|
||||||
"wasmtime",
|
"wasmtime",
|
||||||
"wasmtime-environ",
|
"wasmtime-environ",
|
||||||
"wasmtime-interface-types",
|
"wasmtime-interface-types",
|
||||||
|
|||||||
@@ -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.44.0", default-features = false }
|
wasmparser = { version = "0.45.0", 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"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gimli = "0.19.0"
|
gimli = "0.19.0"
|
||||||
wasmparser = "0.44.0"
|
wasmparser = "0.45.0"
|
||||||
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 }
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ edition = "2018"
|
|||||||
cranelift-codegen = { version = "0.50.0", features = ["enable-serde"] }
|
cranelift-codegen = { version = "0.50.0", features = ["enable-serde"] }
|
||||||
cranelift-entity = { version = "0.50.0", features = ["enable-serde"] }
|
cranelift-entity = { version = "0.50.0", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { version = "0.50.0", features = ["enable-serde"] }
|
cranelift-wasm = { version = "0.50.0", features = ["enable-serde"] }
|
||||||
wasmparser = "0.44.0"
|
wasmparser = "0.45.0"
|
||||||
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"
|
||||||
|
|||||||
@@ -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.44.0"
|
wasmparser = "0.45.0"
|
||||||
wasmprinter = "0.2.0"
|
wasmprinter = "0.2.0"
|
||||||
wasmtime = { path = "../api" }
|
wasmtime = { path = "../api" }
|
||||||
wasmtime-environ = { path = "../environ" }
|
wasmtime-environ = { path = "../environ" }
|
||||||
|
|||||||
@@ -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.44.0", default-features = false }
|
wasmparser = { version = "0.45.0", 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' }
|
||||||
|
|||||||
@@ -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.44.0", default-features = false }
|
wasmparser = { version = "0.45.0", default-features = false }
|
||||||
more-asserts = "0.2.1"
|
more-asserts = "0.2.1"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|
||||||
|
|||||||
@@ -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.44.0"
|
wasmparser = "0.45.0"
|
||||||
memoffset = "0.5.3"
|
memoffset = "0.5.3"
|
||||||
itertools = "0.8.2"
|
itertools = "0.8.2"
|
||||||
capstone = "0.6.0"
|
capstone = "0.6.0"
|
||||||
|
|||||||
@@ -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.44.0"
|
wasmparser = "0.45.0"
|
||||||
pyo3 = { version = "0.8.0", features = ["extension-module"] }
|
pyo3 = { version = "0.8.0", features = ["extension-module"] }
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
|
|||||||
Reference in New Issue
Block a user