Cargo.toml 1.39 KiB
Newer Older
[package]
name = "polkadot-collator"
Gavin Wood's avatar
Gavin Wood committed
version = "0.7.1"
authors = ["Parity Technologies <[email protected]>"]
description = "Collator node implementation"
edition = "2018"

[dependencies]
futures01 = { package = "futures", version = "0.1.17" }
futures = { version = "0.3.1", features = ["compat"] }
Ashley's avatar
Ashley committed
client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "ashley-update-exit-future" }
client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "ashley-update-exit-future" }
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "ashley-update-exit-future" }
substrate-network = { git = "https://github.com/paritytech/substrate", branch = "ashley-update-exit-future" }
consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "ashley-update-exit-future" }
polkadot-runtime = { path = "../runtime" }
polkadot-primitives = { path = "../primitives" }
polkadot-cli = { path = "../cli" }
polkadot-network = { path = "../network" }
polkadot-validation = { path = "../validation" }
polkadot-service = { path = "../service" }
log = "0.4.8"
tokio = "0.1.22"
futures-timer = "1.0"
Ashley's avatar
Ashley committed
keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "ashley-update-exit-future" }