mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 14: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
33 lines
1.2 KiB
TOML
33 lines
1.2 KiB
TOML
[package]
|
|
name = "cumulus-client-consensus-relay-chain"
|
|
description = "The relay-chain provided consensus algorithm"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.79"
|
|
futures = "0.3.28"
|
|
parking_lot = "0.12.1"
|
|
tracing = "0.1.37"
|
|
|
|
# Substrate
|
|
sc-consensus = { path = "../../../../substrate/client/consensus/common" }
|
|
sp-api = { path = "../../../../substrate/primitives/api" }
|
|
sp-block-builder = { path = "../../../../substrate/primitives/block-builder" }
|
|
sp-blockchain = { path = "../../../../substrate/primitives/blockchain" }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
|
substrate-prometheus-endpoint = { path = "../../../../substrate/utils/prometheus" }
|
|
|
|
# Cumulus
|
|
cumulus-client-consensus-common = { path = "../common" }
|
|
cumulus-primitives-core = { path = "../../../primitives/core" }
|
|
cumulus-relay-chain-interface = { path = "../../relay-chain-interface" }
|