mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-14 00:31:07 +00:00
e89d0fca35
Lifting some more dependencies to the workspace. Just using the most-often updated ones for now. It can be reproduced locally. ```sh # First you can check if there would be semver incompatible bumps (looks good in this case): $ zepter transpose dependency lift-to-workspace --ignore-errors syn quote thiserror "regex:^serde.*" # Then apply the changes: $ zepter transpose dependency lift-to-workspace --version-resolver=highest syn quote thiserror "regex:^serde.*" --fix # And format the changes: $ taplo format --config .config/taplo.toml ``` --------- Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
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.74"
|
|
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" }
|