diff --git a/crates/api/Cargo.toml b/crates/api/Cargo.toml index 9e4689616c..73fc3efcb3 100644 --- a/crates/api/Cargo.toml +++ b/crates/api/Cargo.toml @@ -21,7 +21,7 @@ cranelift-frontend = "0.50.0" wasmtime-runtime = { path = "../runtime" } wasmtime-environ = { path = "../environ" } wasmtime-jit = { path = "../jit" } -wasmparser = { version = "0.39.2", default-features = false } +wasmparser = { version = "0.44.0", default-features = false } target-lexicon = { version = "0.9.0", default-features = false } anyhow = "1.0.19" thiserror = "1.0.4" diff --git a/crates/debug/Cargo.toml b/crates/debug/Cargo.toml index 6ded069424..3da10aaf57 100644 --- a/crates/debug/Cargo.toml +++ b/crates/debug/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] gimli = "0.19.0" -wasmparser = "0.39.2" +wasmparser = "0.44.0" cranelift-codegen = { 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"] } diff --git a/crates/environ/Cargo.toml b/crates/environ/Cargo.toml index 7125ed26b6..4f0fdad613 100644 --- a/crates/environ/Cargo.toml +++ b/crates/environ/Cargo.toml @@ -15,7 +15,7 @@ edition = "2018" cranelift-codegen = { 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"] } -wasmparser = "0.39.2" +wasmparser = "0.44.0" lightbeam = { path = "../lightbeam", optional = true } indexmap = "1.0.2" rayon = "1.2.1" diff --git a/crates/fuzzing/Cargo.toml b/crates/fuzzing/Cargo.toml index 152cdeae64..476bf3a46a 100644 --- a/crates/fuzzing/Cargo.toml +++ b/crates/fuzzing/Cargo.toml @@ -16,7 +16,7 @@ cranelift-codegen = "0.50.0" cranelift-native = "0.50.0" env_logger = { version = "0.7.1", optional = true } log = "0.4.8" -wasmparser = "0.42.1" +wasmparser = "0.44.0" wasmprinter = "0.2.0" wasmtime = { path = "../api" } wasmtime-jit = { path = "../jit" } diff --git a/crates/interface-types/Cargo.toml b/crates/interface-types/Cargo.toml index b94178016d..3a0ec65409 100644 --- a/crates/interface-types/Cargo.toml +++ b/crates/interface-types/Cargo.toml @@ -14,7 +14,7 @@ edition = "2018" anyhow = "1.0.19" cranelift-codegen = { version = "0.50.0", default-features = false } walrus = "0.13" -wasmparser = { version = "0.39.2", default-features = false } +wasmparser = { version = "0.44.0", default-features = false } wasm-webidl-bindings = "0.6" wasmtime = { path = '../api' } wasmtime-jit = { path = '../jit' } diff --git a/crates/jit/Cargo.toml b/crates/jit/Cargo.toml index 3fc9e0c644..36a789a9a5 100644 --- a/crates/jit/Cargo.toml +++ b/crates/jit/Cargo.toml @@ -21,7 +21,7 @@ wasmtime-debug = { path = "../debug" } region = "2.0.0" thiserror = "1.0.4" target-lexicon = { version = "0.9.0", default-features = false } -wasmparser = { version = "0.39.2", default-features = false } +wasmparser = { version = "0.44.0", default-features = false } more-asserts = "0.2.1" anyhow = "1.0" diff --git a/crates/misc/py/Cargo.toml b/crates/misc/py/Cargo.toml index a0bb8caf6b..22955b0535 100644 --- a/crates/misc/py/Cargo.toml +++ b/crates/misc/py/Cargo.toml @@ -29,7 +29,7 @@ wasmtime-wasi = { path = "../../wasi" } target-lexicon = { version = "0.9.0", default-features = false } anyhow = "1.0.19" region = "2.0.0" -wasmparser = "0.39.2" +wasmparser = "0.44.0" pyo3 = { version = "0.8.0", features = ["extension-module"] } [badges]