Cargo.toml 1.41 KiB
Newer Older
[package]
name = "polkadot-cli"
Gav Wood's avatar
Gav Wood committed
version = "0.3.0"
authors = ["Parity Technologies <[email protected]>"]
description = "Polkadot node implementation in Rust."

[dependencies]
clap = { version = "~2.32", features = ["yaml"] }
Tomasz Drwięga's avatar
Tomasz Drwięga committed
error-chain = "0.12"
log = "0.3"
Gav Wood's avatar
Gav Wood committed
slog = "^2"
lazy_static = "1.0"
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
futures = "0.1.17"
substrate-cli = { git = "https://github.com/paritytech/substrate" }
substrate-client = { git = "https://github.com/paritytech/substrate" }
substrate-codec = { git = "https://github.com/paritytech/substrate" }
substrate-extrinsic-pool = { git = "https://github.com/paritytech/substrate" }
substrate-network = { git = "https://github.com/paritytech/substrate" }
substrate-primitives = { git = "https://github.com/paritytech/substrate" }
substrate-rpc = { git = "https://github.com/paritytech/substrate" }
substrate-rpc-servers = { git = "https://github.com/paritytech/substrate" }
substrate-runtime-primitives = { git = "https://github.com/paritytech/substrate" }
substrate-service = { git = "https://github.com/paritytech/substrate" }
substrate-state-machine = { git = "https://github.com/paritytech/substrate" }
substrate-telemetry = { git = "https://github.com/paritytech/substrate" }
polkadot-primitives = { path = "../primitives" }
polkadot-runtime = { path = "../runtime" }
Arkadiy Paronyan's avatar
Arkadiy Paronyan committed
polkadot-service = { path = "../service" }
polkadot-transaction-pool = { path = "../transaction-pool" }