diff --git a/Cargo.lock b/Cargo.lock index 2f2b4aa7cf35d..5e5d18a6e5d53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5010,7 +5010,7 @@ dependencies = [ "sp-keystore", "sp-runtime", "sp-std", - "wasm-instrument 0.4.0", + "wasm-instrument", "wasmi 0.20.0", "wasmparser-nostd", "wat", @@ -7599,7 +7599,7 @@ dependencies = [ "sp-maybe-compressed-blob", "sp-wasm-interface", "thiserror", - "wasm-instrument 0.3.0", + "wasm-instrument", "wasmi 0.13.0", ] @@ -10909,15 +10909,6 @@ version = "0.2.77" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c279e376c7a8e8752a8f1eaa35b7b0bee6bb9fb0cdacfa97cc3f1f289c87e2b4" -[[package]] -name = "wasm-instrument" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aa1dafb3e60065305741e83db35c6c2584bb3725b692b5b66148a38d72ace6cd" -dependencies = [ - "parity-wasm", -] - [[package]] name = "wasm-instrument" version = "0.4.0" diff --git a/client/executor/common/Cargo.toml b/client/executor/common/Cargo.toml index 648e937d371ff..82bef7724814c 100644 --- a/client/executor/common/Cargo.toml +++ b/client/executor/common/Cargo.toml @@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] thiserror = "1.0.30" -wasm-instrument = "0.3" +wasm-instrument = "0.4" wasmi = "0.13" sc-allocator = { version = "4.1.0-dev", path = "../../allocator" } sp-maybe-compressed-blob = { version = "4.1.0-dev", path = "../../../primitives/maybe-compressed-blob" }