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.
126 lines
4.9 KiB
TOML
126 lines
4.9 KiB
TOML
[package]
|
|
name = "pez-node-rpc"
|
|
version = "3.0.0-dev"
|
|
authors.workspace = true
|
|
description = "Bizinikiwi node rpc methods."
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
publish = false
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
bizinikiwi-frame-rpc-system = { workspace = true, default-features = true }
|
|
bizinikiwi-state-trie-migration-rpc = { workspace = true, default-features = true }
|
|
jsonrpsee = { features = ["server"], workspace = true }
|
|
pez-node-primitives = { workspace = true, default-features = true }
|
|
pezmmr-rpc = { workspace = true, default-features = true }
|
|
pezpallet-transaction-payment-rpc = { workspace = true, default-features = true }
|
|
pezsc-chain-spec = { workspace = true, default-features = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-consensus-babe = { workspace = true, default-features = true }
|
|
pezsc-consensus-babe-rpc = { workspace = true, default-features = true }
|
|
pezsc-consensus-beefy = { workspace = true, default-features = true }
|
|
pezsc-consensus-beefy-rpc = { workspace = true, default-features = true }
|
|
pezsc-consensus-grandpa = { workspace = true, default-features = true }
|
|
pezsc-consensus-grandpa-rpc = { workspace = true, default-features = true }
|
|
pezsc-mixnet = { workspace = true, default-features = true }
|
|
pezsc-rpc = { workspace = true, default-features = true }
|
|
pezsc-sync-state-rpc = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsp-api = { workspace = true, default-features = true }
|
|
pezsp-application-crypto = { workspace = true, default-features = true }
|
|
pezsp-block-builder = { workspace = true, default-features = true }
|
|
pezsp-blockchain = { workspace = true, default-features = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
pezsp-consensus-babe = { workspace = true, default-features = true }
|
|
pezsp-consensus-beefy = { workspace = true, default-features = true }
|
|
pezsp-keystore = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-statement-store = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"bizinikiwi-frame-rpc-system/runtime-benchmarks",
|
|
"bizinikiwi-state-trie-migration-rpc/runtime-benchmarks",
|
|
"pez-node-primitives/runtime-benchmarks",
|
|
"pezmmr-rpc/runtime-benchmarks",
|
|
"pezpallet-transaction-payment-rpc/runtime-benchmarks",
|
|
"pezsc-chain-spec/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-consensus-babe-rpc/runtime-benchmarks",
|
|
"pezsc-consensus-babe/runtime-benchmarks",
|
|
"pezsc-consensus-beefy-rpc/runtime-benchmarks",
|
|
"pezsc-consensus-beefy/runtime-benchmarks",
|
|
"pezsc-consensus-grandpa-rpc/runtime-benchmarks",
|
|
"pezsc-consensus-grandpa/runtime-benchmarks",
|
|
"pezsc-mixnet/runtime-benchmarks",
|
|
"pezsc-rpc/runtime-benchmarks",
|
|
"pezsc-sync-state-rpc/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-application-crypto/runtime-benchmarks",
|
|
"pezsp-block-builder/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus-beefy/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-statement-store/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"bizinikiwi-frame-rpc-system/std",
|
|
"bizinikiwi-state-trie-migration-rpc/std",
|
|
"pezmmr-rpc/std",
|
|
"pezpallet-transaction-payment-rpc/std",
|
|
"pezsc-chain-spec/std",
|
|
"pezsc-client-api/std",
|
|
"pezsc-consensus-babe-rpc/std",
|
|
"pezsc-consensus-babe/std",
|
|
"pezsc-consensus-beefy-rpc/std",
|
|
"pezsc-consensus-beefy/std",
|
|
"pezsc-consensus-grandpa-rpc/std",
|
|
"pezsc-consensus-grandpa/std",
|
|
"pezsc-mixnet/std",
|
|
"pezsc-rpc/std",
|
|
"pezsc-sync-state-rpc/std",
|
|
"pezsc-transaction-pool-api/std",
|
|
"pezsp-blockchain/std",
|
|
"pezsp-consensus/std",
|
|
]
|
|
try-runtime = [
|
|
"bizinikiwi-frame-rpc-system/try-runtime",
|
|
"bizinikiwi-state-trie-migration-rpc/try-runtime",
|
|
"pez-node-primitives/try-runtime",
|
|
"pezmmr-rpc/try-runtime",
|
|
"pezpallet-transaction-payment-rpc/try-runtime",
|
|
"pezsc-chain-spec/try-runtime",
|
|
"pezsc-client-api/try-runtime",
|
|
"pezsc-consensus-babe-rpc/try-runtime",
|
|
"pezsc-consensus-babe/try-runtime",
|
|
"pezsc-consensus-beefy-rpc/try-runtime",
|
|
"pezsc-consensus-beefy/try-runtime",
|
|
"pezsc-consensus-grandpa-rpc/try-runtime",
|
|
"pezsc-consensus-grandpa/try-runtime",
|
|
"pezsc-mixnet/try-runtime",
|
|
"pezsc-rpc/try-runtime",
|
|
"pezsc-sync-state-rpc/try-runtime",
|
|
"pezsc-transaction-pool-api/try-runtime",
|
|
"pezsp-api/try-runtime",
|
|
"pezsp-block-builder/try-runtime",
|
|
"pezsp-blockchain/try-runtime",
|
|
"pezsp-consensus-babe/try-runtime",
|
|
"pezsp-consensus-beefy/try-runtime",
|
|
"pezsp-consensus/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"pezsp-statement-store/try-runtime",
|
|
]
|
|
serde = []
|