mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-13 05:51:02 +00:00
b8216372c7
* Substrate service * Splitting polkadot service * Specialised components * Specialised components * Docs and style * Docs and style * Final touches * Added db key assertion
43 lines
1.4 KiB
TOML
43 lines
1.4 KiB
TOML
[package]
|
|
name = "polkadot-cli"
|
|
version = "0.2.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Polkadot node implementation in Rust."
|
|
|
|
[dependencies]
|
|
clap = { version = "2.27", features = ["yaml"] }
|
|
env_logger = "0.4"
|
|
error-chain = "0.12"
|
|
log = "0.3"
|
|
atty = "0.2"
|
|
regex = "0.2"
|
|
time = "0.1"
|
|
slog = "^2"
|
|
ansi_term = "0.10"
|
|
lazy_static = "1.0"
|
|
triehash = "0.1"
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
app_dirs = "1.2"
|
|
tokio = "0.1.7"
|
|
futures = "0.1.17"
|
|
fdlimit = "0.1"
|
|
parking_lot = "0.4"
|
|
serde_json = "1.0"
|
|
serde = "1.0"
|
|
exit-future = "0.1"
|
|
substrate-client = { path = "../../substrate/client" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-extrinsic-pool = { path = "../../substrate/extrinsic-pool" }
|
|
substrate-network = { path = "../../substrate/network" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-rpc = { path = "../../substrate/rpc" }
|
|
substrate-rpc-servers = { path = "../../substrate/rpc-servers" }
|
|
substrate-runtime-primitives = { path = "../../substrate/runtime/primitives" }
|
|
substrate-service = { path = "../../substrate/service" }
|
|
substrate-state-machine = { path = "../../substrate/state-machine" }
|
|
substrate-telemetry = { path = "../../substrate/telemetry" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-service = { path = "../service" }
|
|
polkadot-transaction-pool = { path = "../transaction-pool" }
|