ea341084f0
- 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.
128 lines
4.6 KiB
TOML
128 lines
4.6 KiB
TOML
[package]
|
|
name = "pezsc-rpc-spec-v2"
|
|
version = "0.34.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 interface v2."
|
|
readme = "README.md"
|
|
documentation.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
jsonrpsee = { workspace = true, features = [
|
|
"client-core",
|
|
"macros",
|
|
"server-core",
|
|
] }
|
|
# Internal chain structures for "chain_spec".
|
|
pezsc-chain-spec = { workspace = true, default-features = true }
|
|
# Pool for submitting extrinsics required by "transaction"
|
|
array-bytes = { workspace = true, default-features = true }
|
|
codec = { workspace = true, default-features = true }
|
|
futures = { workspace = true }
|
|
futures-util = { workspace = true }
|
|
hex = { workspace = true, default-features = true }
|
|
itertools = { workspace = true }
|
|
log = { workspace = true, default-features = true }
|
|
parking_lot = { workspace = true, default-features = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-rpc = { 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-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 }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
rand = { workspace = true, default-features = true }
|
|
schnellru = { workspace = true }
|
|
serde = { workspace = true, default-features = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { features = ["sync"], workspace = true, default-features = true }
|
|
tokio-stream = { features = ["sync"], workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
bizinikiwi-test-runtime = { workspace = true }
|
|
bizinikiwi-test-runtime-client = { workspace = true }
|
|
bizinikiwi-test-runtime-transaction-pool = { workspace = true }
|
|
jsonrpsee = { workspace = true, features = ["server", "ws-client"] }
|
|
pezsc-block-builder = { workspace = true, default-features = true }
|
|
pezsc-rpc = { workspace = true, default-features = true, features = [
|
|
"test-helpers",
|
|
] }
|
|
pezsc-service = { workspace = true, default-features = true }
|
|
pezsc-transaction-pool = { workspace = true, default-features = true }
|
|
pezsc-utils = { workspace = true, default-features = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
pezsp-externalities = { workspace = true, default-features = true }
|
|
pezsp-maybe-compressed-blob = { workspace = true, default-features = true }
|
|
pretty_assertions = { workspace = true }
|
|
serde_json = { workspace = true, default-features = true }
|
|
tokio = { features = ["macros"], workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"bizinikiwi-test-runtime-client/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime-transaction-pool/runtime-benchmarks",
|
|
"bizinikiwi-test-runtime/runtime-benchmarks",
|
|
"pezsc-block-builder/runtime-benchmarks",
|
|
"pezsc-chain-spec/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-rpc/runtime-benchmarks",
|
|
"pezsc-service/runtime-benchmarks",
|
|
"pezsc-transaction-pool-api/runtime-benchmarks",
|
|
"pezsc-transaction-pool/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-version/runtime-benchmarks",
|
|
]
|
|
std = [
|
|
"bizinikiwi-test-runtime-client/std",
|
|
"bizinikiwi-test-runtime-transaction-pool/std",
|
|
"futures-util/std",
|
|
"log/std",
|
|
"pezsc-block-builder/std",
|
|
"pezsc-chain-spec/std",
|
|
"pezsc-client-api/std",
|
|
"pezsc-rpc/std",
|
|
"pezsc-service/std",
|
|
"pezsc-transaction-pool-api/std",
|
|
"pezsc-transaction-pool/std",
|
|
"pezsc-utils/std",
|
|
"pezsp-blockchain/std",
|
|
"pezsp-consensus/std",
|
|
"pezsp-rpc/std",
|
|
"prometheus-endpoint/std",
|
|
]
|
|
try-runtime = [
|
|
"bizinikiwi-test-runtime-client/try-runtime",
|
|
"bizinikiwi-test-runtime-transaction-pool/try-runtime",
|
|
"bizinikiwi-test-runtime/try-runtime",
|
|
"pezsc-block-builder/try-runtime",
|
|
"pezsc-chain-spec/try-runtime",
|
|
"pezsc-client-api/try-runtime",
|
|
"pezsc-rpc/try-runtime",
|
|
"pezsc-service/try-runtime",
|
|
"pezsc-transaction-pool-api/try-runtime",
|
|
"pezsc-transaction-pool/try-runtime",
|
|
"pezsp-api/try-runtime",
|
|
"pezsp-blockchain/try-runtime",
|
|
"pezsp-consensus/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
"pezsp-version/try-runtime",
|
|
]
|
|
serde = []
|