mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 20:21:03 +00:00
1204a560aa
* RPCs for versioning. * Build fix for bad merge. * Add system_name RPC * Fix tests. * Fix demo build. * Remove BadFormat.
40 lines
1.3 KiB
TOML
40 lines
1.3 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.11"
|
|
log = "0.3"
|
|
atty = "0.2"
|
|
regex = "0.2"
|
|
time = "0.1"
|
|
ansi_term = "0.10"
|
|
lazy_static = "1.0"
|
|
hex-literal = "0.1"
|
|
triehash = "0.1"
|
|
ed25519 = { path = "../../substrate/ed25519" }
|
|
app_dirs = "1.2"
|
|
tokio-core = "0.1.12"
|
|
futures = "0.1.17"
|
|
ctrlc = { git = "https://github.com/paritytech/rust-ctrlc.git" }
|
|
fdlimit = "0.1"
|
|
parking_lot = "0.4"
|
|
substrate-client = { path = "../../substrate/client" }
|
|
substrate-network = { path = "../../substrate/network" }
|
|
substrate-codec = { path = "../../substrate/codec" }
|
|
substrate-runtime-support = { path = "../../substrate/runtime-support" }
|
|
substrate-state-machine = { path = "../../substrate/state-machine" }
|
|
substrate-executor = { path = "../../substrate/executor" }
|
|
substrate-primitives = { path = "../../substrate/primitives" }
|
|
substrate-rpc = { path = "../../substrate/rpc" }
|
|
substrate-rpc-servers = { path = "../../substrate/rpc-servers" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-executor = { path = "../executor" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-service = { path = "../service" }
|
|
polkadot-transaction-pool = { path = "../transaction-pool" }
|