mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 09:21:04 +00:00
d5c521a086
* Update Substrate after repository reorganisation * Switch back to polkadot-master * Bump `bitvec` and `parity-scale-codec` (#591) Also bump other dependencies, but respect semver on them.
27 lines
1.3 KiB
TOML
27 lines
1.3 KiB
TOML
[package]
|
|
name = "polkadot-collator"
|
|
version = "0.6.17"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
description = "Collator node implementation"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
futures = "0.1.29"
|
|
futures03 = { package = "futures-preview", version = "0.3.0-alpha.19", features = ["compat"] }
|
|
client = { package = "substrate-client", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
client-api = { package = "substrate-client-api", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
primitives = { package = "substrate-primitives", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
substrate-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
consensus_common = { package = "substrate-consensus-common", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|
|
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"
|
|
|
|
[dev-dependencies]
|
|
keyring = { package = "substrate-keyring", git = "https://github.com/paritytech/substrate", branch = "polkadot-master" }
|