Cargo.toml 1.31 KiB
Newer Older
[package]
name = "polkadot-collator"
version = "0.7.8"
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"] }
client = { package = "sc-client", git = "https://github.com/paritytech/substrate", branch = "ashley-polkadot-wasm" }
client-api = { package = "sc-client-api", git = "https://github.com/paritytech/substrate", branch = "ashley-polkadot-wasm" }
primitives = { package = "sp-core", git = "https://github.com/paritytech/substrate", branch = "ashley-polkadot-wasm" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "ashley-polkadot-wasm" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "ashley-polkadot-wasm" }
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"
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "ashley-polkadot-wasm" }