bd2d665c4e
- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates) - Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features - Regenerate umbrella crate with proper feature propagation - Format all TOML files with taplo This resolves check-umbrella and check-zepter CI failures.
121 lines
4.3 KiB
TOML
121 lines
4.3 KiB
TOML
[package]
|
|
name = "pezsc-consensus-manual-seal"
|
|
version = "0.35.0"
|
|
authors.workspace = true
|
|
description = "Manual sealing engine for Bizinikiwi"
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
assert_matches = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
futures = { workspace = true }
|
|
futures-timer = { workspace = true }
|
|
jsonrpsee = { features = [
|
|
"client-core",
|
|
"macros",
|
|
"server-core",
|
|
], workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-consensus = { workspace = true, default-features = true }
|
|
pezsc-consensus-aura = { workspace = true, default-features = true }
|
|
pezsc-consensus-babe = { workspace = true, default-features = true }
|
|
pezsc-consensus-epochs = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsp-api = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
pezsp-consensus-aura = { workspace = true, default-features = true }
|
|
pezsp-consensus-babe = { workspace = true, default-features = true }
|
|
pezsp-consensus-slots = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-inherents = { workspace = true, default-features = true }
|
|
pezsp-keystore = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-timestamp = { workspace = true, default-features = true }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
bizinikiwi-test-runtime-transaction-pool = { workspace = true }
|
|
pezsc-basic-authorship = { workspace = true, default-features = true }
|
|
tokio = { features = [
|
|
"macros",
|
|
"rt-multi-thread",
|
|
], workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-transaction-pool/runtime-benchmarks",
|
|
"pezsc-basic-authorship/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-consensus-aura/runtime-benchmarks",
|
|
"pezsc-consensus-babe/runtime-benchmarks",
|
|
"pezsc-consensus-epochs/runtime-benchmarks",
|
|
"pezsc-consensus/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsc-transaction-pool/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus-aura/runtime-benchmarks",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus-slots/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-inherents/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-timestamp/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"bizinikiwi-test-runtime-client/std",
|
|
"bizinikiwi-test-runtime-transaction-pool/std",
|
|
"log/std",
|
|
"pezsc-basic-authorship/std",
|
|
"pezsc-client-api/std",
|
|
"pezsc-consensus-aura/std",
|
|
"pezsc-consensus-babe/std",
|
|
"pezsc-consensus-epochs/std",
|
|
"pezsc-consensus/std",
|
|
"pezsc-transaction-pool-api/std",
|
|
"pezsc-transaction-pool/std",
|
|
"pezsp-blockchain/std",
|
|
"pezsp-consensus/std",
|
|
"prometheus-endpoint/std",
|
|
]
|
|
try-runtime = [
|
|
"bizinikiwi-test-runtime-client/try-runtime",
|
|
"bizinikiwi-test-runtime-transaction-pool/try-runtime",
|
|
"pezsc-basic-authorship/try-runtime",
|
|
"pezsc-client-api/try-runtime",
|
|
"pezsc-consensus-aura/try-runtime",
|
|
"pezsc-consensus-babe/try-runtime",
|
|
"pezsc-consensus-epochs/try-runtime",
|
|
"pezsc-consensus/try-runtime",
|
|
"pezsc-transaction-pool-api/try-runtime",
|
|
"pezsc-transaction-pool/try-runtime",
|
|
"pezsp-api/try-runtime",
|
|
"pezsp-blockchain/try-runtime",
|
|
"pezsp-consensus-aura/try-runtime",
|
|
"pezsp-consensus-babe/try-runtime",
|
|
"pezsp-consensus/try-runtime",
|
|
"pezsp-inherents/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"pezsp-timestamp/try-runtime",
|
|
]
|
|
serde = []
|