Enable wasmtime on node-template (#6336)

* Enable wasmtime on node-template

* Apply suggestions from code review

syntax

Co-authored-by: Nikolay Volf <nikvolf@gmail.com>

Co-authored-by: Nikolay Volf <nikvolf@gmail.com>
This commit is contained in:
Shawn Tabrizi
2020-06-11 20:44:24 +02:00
committed by GitHub
parent 2cb11261e7
commit b0a4456988
2 changed files with 4 additions and 3 deletions
+3 -3
View File
@@ -21,10 +21,10 @@ log = "0.4.8"
structopt = "0.3.8"
parking_lot = "0.10.0"
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli" }
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli", features = ["wasmtime"] }
sp-core = { version = "2.0.0-rc3", path = "../../../primitives/core" }
sc-executor = { version = "0.8.0-rc3", path = "../../../client/executor" }
sc-service = { version = "0.8.0-rc3", path = "../../../client/service" }
sc-executor = { version = "0.8.0-rc3", path = "../../../client/executor", features = ["wasmtime"] }
sc-service = { version = "0.8.0-rc3", path = "../../../client/service", features = ["wasmtime"] }
sp-inherents = { version = "2.0.0-rc3", path = "../../../primitives/inherents" }
sc-transaction-pool = { version = "2.0.0-rc3", path = "../../../client/transaction-pool" }
sp-transaction-pool = { version = "2.0.0-rc3", path = "../../../primitives/transaction-pool" }