mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-11 22:21:07 +00:00
Node template folders restructuring (#4811)
* Restructure node-template so it is clear that node, runtime, and pallets are separated * Separating to mock and tests * restructuring runtime to top-level * updated release script * updated Cargo.lock
This commit is contained in:
@@ -0,0 +1,38 @@
|
||||
[package]
|
||||
name = "node-template"
|
||||
version = "2.0.0"
|
||||
authors = ["Anonymous"]
|
||||
edition = "2018"
|
||||
license = "Unlicense"
|
||||
build = "build.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "node-template"
|
||||
|
||||
[dependencies]
|
||||
futures = "0.3.1"
|
||||
log = "0.4.8"
|
||||
structopt = "0.3.8"
|
||||
|
||||
sc-cli = { version = "0.8.0", path = "../../../client/cli" }
|
||||
sp-core = { version = "2.0.0", path = "../../../primitives/core" }
|
||||
sc-executor = { version = "0.8", path = "../../../client/executor" }
|
||||
sc-service = { version = "0.8", path = "../../../client/service" }
|
||||
sp-inherents = { version = "2.0.0", path = "../../../primitives/inherents" }
|
||||
sc-transaction-pool = { version = "2.0.0", path = "../../../client/transaction-pool" }
|
||||
sp-transaction-pool = { version = "2.0.0", path = "../../../primitives/transaction-pool" }
|
||||
sc-network = { version = "0.8", path = "../../../client/network" }
|
||||
sc-consensus-aura = { version = "0.8", path = "../../../client/consensus/aura" }
|
||||
sp-consensus-aura = { version = "0.8", path = "../../../primitives/consensus/aura" }
|
||||
sp-consensus = { version = "0.8", path = "../../../primitives/consensus/common" }
|
||||
grandpa = { version = "0.8", package = "sc-finality-grandpa", path = "../../../client/finality-grandpa" }
|
||||
grandpa-primitives = { version = "2.0.0", package = "sp-finality-grandpa", path = "../../../primitives/finality-grandpa" }
|
||||
sc-client = { version = "0.8", path = "../../../client/" }
|
||||
sp-runtime = { version = "2.0.0", path = "../../../primitives/runtime" }
|
||||
sc-basic-authorship = { path = "../../../client/basic-authorship" }
|
||||
|
||||
node-template-runtime = { version = "2.0.0", path = "../runtime" }
|
||||
|
||||
[build-dependencies]
|
||||
vergen = "3.0.4"
|
||||
build-script-utils = { version = "2.0.0", package = "substrate-build-script-utils", path = "../../../utils/build-script-utils" }
|
||||
Reference in New Issue
Block a user