mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 22:17:58 +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
44 lines
1.7 KiB
TOML
44 lines
1.7 KiB
TOML
[package]
|
|
name = "polkadot-gossip-support"
|
|
version = "7.0.0"
|
|
description = "Polkadot Gossip Support subsystem. Responsible for keeping track of session changes and issuing a connection request to the relevant validators on every new session."
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
sp-application-crypto = { path = "../../../../substrate/primitives/application-crypto" }
|
|
sp-keystore = { path = "../../../../substrate/primitives/keystore" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-crypto-hashing = { path = "../../../../substrate/primitives/crypto/hashing" }
|
|
sc-network = { path = "../../../../substrate/client/network" }
|
|
sc-network-common = { path = "../../../../substrate/client/network/common" }
|
|
|
|
polkadot-node-network-protocol = { path = "../protocol" }
|
|
polkadot-node-subsystem = { path = "../../subsystem" }
|
|
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
|
|
polkadot-primitives = { path = "../../../primitives" }
|
|
|
|
futures = "0.3.30"
|
|
futures-timer = "3.0.2"
|
|
rand = { version = "0.8.5", default-features = false }
|
|
rand_chacha = { version = "0.3.1", default-features = false }
|
|
gum = { package = "tracing-gum", path = "../../gum" }
|
|
|
|
[dev-dependencies]
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sp-consensus-babe = { path = "../../../../substrate/primitives/consensus/babe" }
|
|
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
|
sp-authority-discovery = { path = "../../../../substrate/primitives/authority-discovery" }
|
|
|
|
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
|
|
|
|
assert_matches = "1.4.0"
|
|
async-trait = "0.1.79"
|
|
parking_lot = "0.12.1"
|
|
lazy_static = "1.4.0"
|
|
quickcheck = "1.0.3"
|