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.
61 lines
1.7 KiB
TOML
61 lines
1.7 KiB
TOML
[package]
|
|
name = "pezsc-rpc-api"
|
|
version = "0.33.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
description = "Bizinikiwi RPC interfaces."
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
codec = { workspace = true, default-features = true }
|
|
jsonrpsee = { features = [
|
|
"client-core",
|
|
"macros",
|
|
"server-core",
|
|
], workspace = true }
|
|
pezsc-chain-spec = { workspace = true, default-features = true }
|
|
pezsc-mixnet = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool-api = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-rpc = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-version = { workspace = true, default-features = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { features = ["derive"], workspace = true, default-features = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezsc-chain-spec/runtime-benchmarks",
|
|
"pezsc-mixnet/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-version/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"pezsc-chain-spec/std",
|
|
"pezsc-mixnet/std",
|
|
"pezsc-transaction-pool-api/std",
|
|
"pezsp-rpc/std",
|
|
"scale-info/std",
|
|
]
|
|
try-runtime = [
|
|
"pezsc-chain-spec/try-runtime",
|
|
"pezsc-mixnet/try-runtime",
|
|
"pezsc-transaction-pool-api/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"pezsp-version/try-runtime",
|
|
]
|
|
serde = []
|