mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 15:18:00 +00:00
495d24d730
Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Bastian Köcher <info@kchr.de>
22 lines
734 B
TOML
22 lines
734 B
TOML
[package]
|
|
name = "cumulus-client-consensus-proposer"
|
|
description = "A Substrate `Proposer` for building parachain blocks"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-trait = "0.1.73"
|
|
thiserror = "1.0.48"
|
|
|
|
# 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" }
|