mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 12: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
25 lines
772 B
TOML
25 lines
772 B
TOML
[package]
|
|
name = "cumulus-client-consensus-proposer"
|
|
description = "A Substrate `Proposer` for building parachain blocks"
|
|
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]
|
|
anyhow = "1.0"
|
|
async-trait = "0.1.79"
|
|
thiserror = { workspace = true }
|
|
|
|
# Substrate
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
|
sp-inherents = { path = "../../../../substrate/primitives/inherents" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime" }
|
|
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-parachain-inherent = { path = "../../../primitives/parachain-inherent" }
|