mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 17:57:56 +00:00
8778ca7dc8
* Rename: Phase 1. * Unify codec. * Fixing: Phase 2 * Fixing: Phase 3. * Fixing: Phase 4. * Fixing: Phase 5. * Fixing: Phase 6. * Fixing: Phase 7. * Fixing: Phase 8. Tests * Fixing: Phase 9. Tests!!! * Fixing: Phase 10. Moar tests! * Finally done! * More fixes. * Rename primitives:: to sp_core:: * Apply renames in finality-grandpa. * Fix benches. * Fix benches 2. * Revert node-template. * Fix frame-system in our modules.
43 lines
1.6 KiB
TOML
43 lines
1.6 KiB
TOML
[package]
|
|
name = "node-template"
|
|
version = "2.0.0"
|
|
authors = ["Anonymous"]
|
|
build = "build.rs"
|
|
edition = "2018"
|
|
|
|
[[bin]]
|
|
name = "node-template"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
futures = "0.3.1"
|
|
futures01 = { package = "futures", version = "0.1.29" }
|
|
ctrlc = { version = "3.1.3", features = ["termination"] }
|
|
log = "0.4.8"
|
|
tokio = "0.1.22"
|
|
parking_lot = "0.9.0"
|
|
codec = { package = "parity-scale-codec", version = "1.0.0" }
|
|
trie-root = "0.15.2"
|
|
sp-io = { path = "../../primitives/io" }
|
|
sc-cli = { path = "../../client/cli" }
|
|
sp-core = { path = "../../primitives/core" }
|
|
sc-executor = { path = "../../client/executor" }
|
|
sc-service = { path = "../../client/service" }
|
|
sp-inherents = { path = "../../primitives/inherents" }
|
|
sc-transaction-pool = { path = "../../client/transaction-pool" }
|
|
sp-transaction-pool = { path = "../../primitives/transaction-pool" }
|
|
sc-network = { path = "../../client/network" }
|
|
sc-consensus-aura = { path = "../../client/consensus/aura" }
|
|
sp-consensus-aura = { path = "../../primitives/consensus/aura" }
|
|
sp-consensus = { path = "../../primitives/consensus/common" }
|
|
grandpa = { package = "sc-finality-grandpa", path = "../../client/finality-grandpa" }
|
|
grandpa-primitives = { package = "sp-finality-grandpa", path = "../../primitives/finality-grandpa" }
|
|
sc-client = { path = "../../client/" }
|
|
node-template-runtime = { path = "runtime" }
|
|
sp-runtime = { path = "../../primitives/runtime" }
|
|
sc-basic-authority = { path = "../../client/basic-authorship"}
|
|
|
|
[build-dependencies]
|
|
vergen = "3.0.4"
|
|
build-script-utils = { package = "substrate-build-script-utils", path = "../../utils/build-script-utils" }
|