diff --git a/Cargo.lock b/Cargo.lock index c40c48a9b4..353a23c836 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5838,6 +5838,12 @@ version = "0.42.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "be5e13c266502aadf83426d87d81a0f5d1ef45b8027f5a471c360abfe4bfae92" +[[package]] +name = "parity-wasm" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1ad0aff30c1da14b1254fcb2af73e1fa9a28670e584a626f53a369d0e157304" + [[package]] name = "parity-ws" version = "0.10.0" @@ -7465,7 +7471,7 @@ dependencies = [ "libsecp256k1", "log", "parity-scale-codec", - "parity-wasm 0.42.2", + "parity-wasm 0.45.0", "parking_lot 0.11.1", "paste 1.0.4", "regex", @@ -7535,7 +7541,7 @@ dependencies = [ "libc", "log", "parity-scale-codec", - "parity-wasm 0.42.2", + "parity-wasm 0.45.0", "pwasm-utils", "sc-allocator", "sc-executor-common", @@ -9416,7 +9422,7 @@ version = "3.0.0" dependencies = [ "impl-serde", "parity-scale-codec", - "parity-wasm 0.42.2", + "parity-wasm 0.45.0", "serde", "sp-runtime", "sp-std", diff --git a/client/executor/Cargo.toml b/client/executor/Cargo.toml index 1f10c65e12..4064d2ef1d 100644 --- a/client/executor/Cargo.toml +++ b/client/executor/Cargo.toml @@ -24,7 +24,7 @@ sp-serializer = { version = "3.0.0", path = "../../primitives/serializer" } sp-version = { version = "3.0.0", path = "../../primitives/version" } sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" } wasmi = "0.9.0" -parity-wasm = "0.42.0" +parity-wasm = "0.45.0" lazy_static = "1.4.0" sp-api = { version = "3.0.0", path = "../../primitives/api" } sp-wasm-interface = { version = "3.0.0", path = "../../primitives/wasm-interface" } diff --git a/client/executor/wasmtime/Cargo.toml b/client/executor/wasmtime/Cargo.toml index 1b8606c440..2238586c7d 100644 --- a/client/executor/wasmtime/Cargo.toml +++ b/client/executor/wasmtime/Cargo.toml @@ -17,7 +17,7 @@ libc = "0.2.90" cfg-if = "1.0" log = "0.4.8" scoped-tls = "1.0" -parity-wasm = "0.42.0" +parity-wasm = "0.45.0" codec = { package = "parity-scale-codec", version = "2.0.0" } sc-executor-common = { version = "0.9.0", path = "../common" } sp-wasm-interface = { version = "3.0.0", path = "../../../primitives/wasm-interface" } diff --git a/primitives/version/Cargo.toml b/primitives/version/Cargo.toml index 877897c54c..8fd24604f9 100644 --- a/primitives/version/Cargo.toml +++ b/primitives/version/Cargo.toml @@ -21,7 +21,7 @@ codec = { package = "parity-scale-codec", version = "2.0.0", default-features = sp-std = { version = "3.0.0", default-features = false, path = "../std" } sp-runtime = { version = "3.0.0", default-features = false, path = "../runtime" } sp-version-proc-macro = { version = "3.0.0", default-features = false, path = "proc-macro" } -parity-wasm = { version = "0.42.2", optional = true } +parity-wasm = { version = "0.45.0", optional = true } thiserror = { version = "1.0.21", optional = true } [features]