Skip to content
Snippets Groups Projects
Commit 82367431 authored by dependabot[bot]'s avatar dependabot[bot] Committed by GitHub
Browse files

Bump wasmi from 0.9.0 to 0.9.1 (#10116)


Bumps [wasmi](https://github.com/paritytech/wasmi) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/paritytech/wasmi/releases)
- [Commits](https://github.com/paritytech/wasmi/compare/v0.9.0...v0.9.1)

---
updated-dependencies:
- dependency-name: wasmi
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: default avatardependabot[bot] <support@github.com>

Co-authored-by: default avatardependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
parent b48d721c
No related merge requests found
...@@ -11498,9 +11498,9 @@ dependencies = [ ...@@ -11498,9 +11498,9 @@ dependencies = [
[[package]] [[package]]
name = "wasmi" name = "wasmi"
version = "0.9.0" version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2ee05bba3d1d994652079893941a2ef9324d2b58a63c31b40678fb7eddd7a5a" checksum = "ca00c5147c319a8ec91ec1a0edbec31e566ce2c9cc93b3f9bb86a9efd0eb795d"
dependencies = [ dependencies = [
"downcast-rs", "downcast-rs",
"errno", "errno",
......
...@@ -21,7 +21,7 @@ sp-tasks = { version = "4.0.0-dev", path = "../../primitives/tasks" } ...@@ -21,7 +21,7 @@ sp-tasks = { version = "4.0.0-dev", path = "../../primitives/tasks" }
sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" } sp-trie = { version = "4.0.0-dev", path = "../../primitives/trie" }
sp-version = { version = "4.0.0-dev", path = "../../primitives/version" } sp-version = { version = "4.0.0-dev", path = "../../primitives/version" }
sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" } sp-panic-handler = { version = "3.0.0", path = "../../primitives/panic-handler" }
wasmi = "0.9.0" wasmi = "0.9.1"
lazy_static = "1.4.0" lazy_static = "1.4.0"
sp-api = { version = "4.0.0-dev", path = "../../primitives/api" } sp-api = { version = "4.0.0-dev", path = "../../primitives/api" }
sp-wasm-interface = { version = "4.0.0-dev", path = "../../primitives/wasm-interface" } sp-wasm-interface = { version = "4.0.0-dev", path = "../../primitives/wasm-interface" }
......
...@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"] ...@@ -17,7 +17,7 @@ targets = ["x86_64-unknown-linux-gnu"]
derive_more = "0.99.2" derive_more = "0.99.2"
pwasm-utils = "0.18.0" pwasm-utils = "0.18.0"
codec = { package = "parity-scale-codec", version = "2.0.0" } codec = { package = "parity-scale-codec", version = "2.0.0" }
wasmi = "0.9.0" wasmi = "0.9.1"
sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" } sp-core = { version = "4.0.0-dev", path = "../../../primitives/core" }
sc-allocator = { version = "4.0.0-dev", path = "../../allocator" } sc-allocator = { version = "4.0.0-dev", path = "../../allocator" }
sp-wasm-interface = { version = "4.0.0-dev", path = "../../../primitives/wasm-interface" } sp-wasm-interface = { version = "4.0.0-dev", path = "../../../primitives/wasm-interface" }
......
...@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"] ...@@ -15,7 +15,7 @@ targets = ["x86_64-unknown-linux-gnu"]
[dependencies] [dependencies]
log = "0.4.8" log = "0.4.8"
wasmi = "0.9.0" wasmi = "0.9.1"
codec = { package = "parity-scale-codec", version = "2.0.0" } codec = { package = "parity-scale-codec", version = "2.0.0" }
sc-executor-common = { version = "0.10.0-dev", path = "../common" } sc-executor-common = { version = "0.10.0-dev", path = "../common" }
sc-allocator = { version = "4.0.0-dev", path = "../../allocator" } sc-allocator = { version = "4.0.0-dev", path = "../../allocator" }
......
...@@ -27,7 +27,7 @@ primitive-types = { version = "0.10.1", default-features = false, features = [ ...@@ -27,7 +27,7 @@ primitive-types = { version = "0.10.1", default-features = false, features = [
"scale-info" "scale-info"
] } ] }
impl-serde = { version = "0.3.0", optional = true } impl-serde = { version = "0.3.0", optional = true }
wasmi = { version = "0.9.0", optional = true } wasmi = { version = "0.9.1", optional = true }
hash-db = { version = "0.15.2", default-features = false } hash-db = { version = "0.15.2", default-features = false }
hash256-std-hasher = { version = "0.15.2", default-features = false } hash256-std-hasher = { version = "0.15.2", default-features = false }
base58 = { version = "0.2.0", optional = true } base58 = { version = "0.2.0", optional = true }
......
...@@ -13,7 +13,7 @@ readme = "README.md" ...@@ -13,7 +13,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"] targets = ["x86_64-unknown-linux-gnu"]
[target.'cfg(target_arch = "wasm32")'.dependencies] [target.'cfg(target_arch = "wasm32")'.dependencies]
wasmi = { version = "0.9.0", default-features = false, features = ["core"] } wasmi = { version = "0.9.1", default-features = false, features = ["core"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] [target.'cfg(not(target_arch = "wasm32"))'.dependencies]
wasmi = "0.9.0" wasmi = "0.9.0"
......
...@@ -14,7 +14,7 @@ readme = "README.md" ...@@ -14,7 +14,7 @@ readme = "README.md"
targets = ["x86_64-unknown-linux-gnu"] targets = ["x86_64-unknown-linux-gnu"]
[dependencies] [dependencies]
wasmi = { version = "0.9.0", optional = true } wasmi = { version = "0.9.1", optional = true }
impl-trait-for-tuples = "0.2.1" impl-trait-for-tuples = "0.2.1"
sp-std = { version = "4.0.0-dev", path = "../std", default-features = false } sp-std = { version = "4.0.0-dev", path = "../std", default-features = false }
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] } codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment