Cargo.toml 1.94 KiB
Newer Older
[package]
name = "polkadot-collator"
version = "0.8.15"
authors = ["Parity Technologies <[email protected]>"]
description = "Collator node implementation"
edition = "2018"

[dependencies]
Gavin Wood's avatar
Gavin Wood committed
futures = "0.3.4"
Tomasz Drwięga's avatar
Tomasz Drwięga committed
sc-service = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sc-network = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-api = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }
polkadot-primitives = { path = "../primitives" }
polkadot-cli = { path = "../cli" }
polkadot-network = { path = "../network" }
polkadot-validation = { path = "../validation" }
polkadot-service = { path = "../service", optional = true}
polkadot-service-new = { path = "../node/service", optional = true }
futures-timer = "2.0"
codec = { package = "parity-scale-codec", version = "1.3.0" }
Tomasz Drwięga's avatar
Tomasz Drwięga committed
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "td-weight-parameters-refactor" }

[features]
default = ["service-old"]
service-old = [ "polkadot-service" ]
service-rewr = [ "polkadot-service-new" ]