mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 08:07:58 +00:00
756f95c407
* Sort cleanups * Bump versions
38 lines
1.7 KiB
TOML
38 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-collator"
|
|
version = "0.8.22"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Collator node implementation"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.3.4"
|
|
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sc-network = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
consensus_common = { package = "sp-consensus", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
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 }
|
|
log = "0.4.8"
|
|
tokio = "0.2.13"
|
|
futures-timer = "2.0"
|
|
codec = { package = "parity-scale-codec", version = "1.3.4" }
|
|
|
|
[dev-dependencies]
|
|
keyring = { package = "sp-keyring", git = "https://github.com/paritytech/substrate", branch = "master" }
|
|
|
|
[features]
|
|
default = ["service-old"]
|
|
service-old = [ "polkadot-service" ]
|
|
service-rewr = [ "polkadot-service-new" ]
|