mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 00:37:57 +00:00
8e95a3e1aa
Working towards migrating the `parity-bridges-common` repo inside `polkadot-sdk`. This PR upgrades some dependencies in order to align them with the versions used in `parity-bridges-common` Related to https://github.com/paritytech/parity-bridges-common/issues/2538
48 lines
1.7 KiB
TOML
48 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-collator-protocol"
|
|
version = "7.0.0"
|
|
description = "Polkadot Collator Protocol subsystem. Allows collators and validators to talk to each other."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
bitvec = { version = "1.0.1", default-features = false, features = ["alloc"] }
|
|
futures = "0.3.30"
|
|
futures-timer = "3"
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
|
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
|
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
polkadot-node-network-protocol = { path = "../protocol" }
|
|
polkadot-node-primitives = { path = "../../primitives" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
fatality = "0.0.6"
|
|
thiserror = { workspace = true }
|
|
tokio-util = "0.7.1"
|
|
|
|
[dev-dependencies]
|
|
log = { workspace = true, default-features = true }
|
|
env_logger = "0.11"
|
|
assert_matches = "1.4.0"
|
|
|
|
sp-core = { path = "../../../../substrate/primitives/core", features = ["std"] }
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sc-keystore = { path = "../../../../substrate/client/keystore" }
|
|
sc-network = { path = "../../../../substrate/client/network" }
|
|
parity-scale-codec = { version = "3.6.1", features = ["std"] }
|
|
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
polkadot-primitives-test-helpers = { path = "../../../primitives/test-helpers" }
|
|
|
|
[features]
|
|
default = []
|
|
elastic-scaling-experimental = []
|