mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 13:57:58 +00:00
7f6862ba5e
* Move `chain_spec` into `node-cli` * Fixes tests * Adds `construct_simple_service` and `construct_service_factory` macros * Remove the `node-service` crate * Add some documentation * Fixes compilation on stable
25 lines
813 B
TOML
25 lines
813 B
TOML
[package]
|
|
name = "node-cli"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Substrate node implementation in Rust."
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
tokio = "0.1.7"
|
|
exit-future = "0.1"
|
|
substrate-cli = { path = "../../core/cli" }
|
|
substrate-primitives = { path = "../../core/primitives" }
|
|
node-runtime = { path = "../runtime" }
|
|
node-primitives = { path = "../primitives" }
|
|
node-network = { path = "../network" }
|
|
hex-literal = "0.1"
|
|
substrate-service = { path = "../../core/service" }
|
|
substrate-transaction-pool = { path = "../../core/transaction-pool" }
|
|
substrate-network = { path = "../../core/network" }
|
|
sr-primitives = { path = "../../core/sr-primitives" }
|
|
node-executor = { path = "../executor" }
|
|
|
|
[dev-dependencies]
|
|
substrate-service-test = { path = "../../core/service/test" }
|