46 lines
1.5 KiB
TOML
46 lines
1.5 KiB
TOML
[package]
|
|
name = "cumulus-client-consensus-proposer"
|
|
description = "A Substrate `Proposer` for building teyrchain blocks"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true, default-features = true }
|
|
async-trait = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
# Substrate
|
|
sc-basic-authorship = { workspace = true }
|
|
sc-block-builder = { workspace = true }
|
|
sc-transaction-pool-api = { workspace = true }
|
|
sp-api = { workspace = true, default-features = true }
|
|
sp-blockchain = { workspace = true, default-features = true }
|
|
sp-consensus = { workspace = true, default-features = true }
|
|
sp-inherents = { workspace = true, default-features = true }
|
|
sp-runtime = { workspace = true, default-features = true }
|
|
sp-state-machine = { workspace = true, default-features = true }
|
|
|
|
# Cumulus
|
|
cumulus-primitives-teyrchain-inherent = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"cumulus-primitives-teyrchain-inherent/runtime-benchmarks",
|
|
"sc-basic-authorship/runtime-benchmarks",
|
|
"sc-block-builder/runtime-benchmarks",
|
|
"sc-transaction-pool-api/runtime-benchmarks",
|
|
"sp-api/runtime-benchmarks",
|
|
"sp-blockchain/runtime-benchmarks",
|
|
"sp-consensus/runtime-benchmarks",
|
|
"sp-inherents/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"sp-state-machine/runtime-benchmarks",
|
|
]
|