Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Apply suggestions from code review
syntax

Co-authored-by: Nikolay Volf <[email protected]>
  • Loading branch information
shawntabrizi and NikVolf authored Jun 11, 2020
commit c17010206af6a0b05e4bb0e0cb1010382a5c3a6b
6 changes: 3 additions & 3 deletions bin/node-template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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", features = "wasmtime" }
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", features = "wasmtime" }
sc-service = { version = "0.8.0-rc3", path = "../../../client/service", features = "wasmtime" }
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" }
Expand Down