mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 16:51:02 +00:00
d978425f05
* Informant * Pass Handle instead of Core
31 lines
1.1 KiB
TOML
31 lines
1.1 KiB
TOML
[package]
|
|
name = "polkadot-cli"
|
|
version = "0.1.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"
|
|
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" }
|
|
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-servers = { path = "../../substrate/rpc-servers" }
|
|
polkadot-primitives = { path = "../primitives" }
|
|
polkadot-executor = { path = "../executor" }
|
|
polkadot-runtime = { path = "../runtime" }
|
|
polkadot-service = { path = "../service" }
|