mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-17 21:51:06 +00:00
21 lines
786 B
TOML
21 lines
786 B
TOML
[package]
|
|
name = "cumulus-client-consensus-proposer"
|
|
description = "A Substrate `Proposer` for building parachain blocks"
|
|
version = "0.1.0"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
async-trait = "0.1.68"
|
|
thiserror = "1.0.40"
|
|
|
|
# Substrate
|
|
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" }
|
|
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" }
|
|
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" }
|
|
sp-state-machine = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-parachain-inherent = { path = "../../../primitives/parachain-inherent" }
|