Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Enable wasmtime on node-template #6336

Merged
2 commits merged into from
Jun 11, 2020
Merged
Show file tree
Hide file tree
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
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" }
sc-cli = { version = "0.8.0-rc3", path = "../../../client/cli", features = "wasmtime" }
shawntabrizi marked this conversation as resolved.
Show resolved Hide resolved
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" }
shawntabrizi marked this conversation as resolved.
Show resolved Hide resolved
sc-service = { version = "0.8.0-rc3", path = "../../../client/service", features = "wasmtime" }
shawntabrizi marked this conversation as resolved.
Show resolved Hide resolved
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
1 change: 1 addition & 0 deletions bin/node-template/pallets/template/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ path = "../../../../frame/support"
default-features = false
version = "2.0.0-rc3"
path = "../../../../frame/system"

[dev-dependencies.sp-core]
default-features = false
version = "2.0.0-rc3"
Expand Down