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.
57 lines
1.6 KiB
TOML
57 lines
1.6 KiB
TOML
[package]
|
|
name = "pezstaging-node-inspect"
|
|
version = "0.12.0"
|
|
authors.workspace = true
|
|
description = "Bizinikiwi node block inspection tool."
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
clap = { features = ["derive"], workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
pezsc-cli = { workspace = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-service = { workspace = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-statement-store = { workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezsc-cli/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-service/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-statement-store/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"pezsc-cli/std",
|
|
"pezsc-client-api/std",
|
|
"pezsc-service/std",
|
|
"pezsp-blockchain/std",
|
|
]
|
|
try-runtime = [
|
|
"pezsc-cli/try-runtime",
|
|
"pezsc-client-api/try-runtime",
|
|
"pezsc-service/try-runtime",
|
|
"pezsp-blockchain/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"pezsp-statement-store/try-runtime",
|
|
]
|
|
serde = []
|
|
with-tracing = []
|