Files
pezkuwi-sdk/bizinikiwi/client/service/Cargo.toml
T
pezkuwichain ea341084f0 fix: comprehensive feature propagation and dep:serde fixes
- 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.
2026-01-04 20:37:14 +03:00

182 lines
7.0 KiB
TOML

[package]
name = "pezsc-service"
version = "0.35.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 service. Starts a thread that spins up the network, client, and extrinsic pool. Manages communication between them."
readme = "README.md"
documentation.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
async-trait = { workspace = true }
codec = { workspace = true, default-features = true }
directories = { workspace = true }
exit-future = { workspace = true }
futures = { workspace = true }
futures-timer = { workspace = true }
jsonrpsee = { features = ["server"], workspace = true }
log = { workspace = true, default-features = true }
parking_lot = { workspace = true, default-features = true }
pezsc-chain-spec = { workspace = true, default-features = true }
pezsc-client-api = { workspace = true, default-features = true }
pezsc-client-db = { workspace = true }
pezsc-consensus = { workspace = true, default-features = true }
pezsc-executor = { workspace = true, default-features = true }
pezsc-informant = { workspace = true, default-features = true }
pezsc-keystore = { workspace = true, default-features = true }
pezsc-network = { workspace = true, default-features = true }
pezsc-network-common = { workspace = true, default-features = true }
pezsc-network-light = { workspace = true, default-features = true }
pezsc-network-sync = { workspace = true, default-features = true }
pezsc-network-transactions = { workspace = true, default-features = true }
pezsc-network-types = { workspace = true, default-features = true }
pezsc-rpc = { workspace = true, default-features = true }
pezsc-rpc-server = { workspace = true, default-features = true }
pezsc-rpc-spec-v2 = { workspace = true, default-features = true }
pezsc-sysinfo = { workspace = true, default-features = true }
pezsc-telemetry = { workspace = true, default-features = true }
pezsc-tracing = { workspace = true, default-features = true }
pezsc-transaction-pool = { workspace = true, default-features = true }
pezsc-transaction-pool-api = { workspace = true, default-features = true }
pezsc-utils = { 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-core = { workspace = true, default-features = true }
pezsp-externalities = { workspace = true, default-features = true }
pezsp-keystore = { workspace = true, default-features = true }
pezsp-runtime = { workspace = true, default-features = true }
pezsp-session = { workspace = true, default-features = true }
pezsp-state-machine = { workspace = true, default-features = true }
pezsp-storage = { workspace = true, default-features = true }
pezsp-transaction-pool = { workspace = true, default-features = true }
pezsp-transaction-storage-proof = { workspace = true, default-features = true }
pezsp-trie = { workspace = true, default-features = true }
pezsp-version = { workspace = true, default-features = true }
pin-project = { workspace = true }
prometheus-endpoint = { workspace = true, default-features = true }
rand = { workspace = true, default-features = true }
schnellru = { workspace = true }
serde = { workspace = true, default-features = true }
serde_json = { workspace = true, default-features = true }
static_init = { workspace = true }
tempfile = { workspace = true }
thiserror = { workspace = true }
tokio = { features = [
"parking_lot",
"rt-multi-thread",
"time",
], workspace = true, default-features = true }
tracing = { workspace = true, default-features = true }
tracing-futures = { workspace = true }
[dev-dependencies]
bizinikiwi-test-runtime = { workspace = true }
bizinikiwi-test-runtime-client = { workspace = true }
[features]
default = ["rocksdb"]
# The RocksDB feature activates the RocksDB database backend. If it is not activated, and you pass
# a path to a database, an error will be produced at runtime.
rocksdb = ["pezsc-client-db/rocksdb"]
runtime-benchmarks = [
"bizinikiwi-test-runtime-client/runtime-benchmarks",
"bizinikiwi-test-runtime/runtime-benchmarks",
"pezsc-chain-spec/runtime-benchmarks",
"pezsc-client-api/runtime-benchmarks",
"pezsc-client-db/runtime-benchmarks",
"pezsc-consensus/runtime-benchmarks",
"pezsc-executor/runtime-benchmarks",
"pezsc-informant/runtime-benchmarks",
"pezsc-keystore/runtime-benchmarks",
"pezsc-network-common/runtime-benchmarks",
"pezsc-network-light/runtime-benchmarks",
"pezsc-network-sync/runtime-benchmarks",
"pezsc-network-transactions/runtime-benchmarks",
"pezsc-network/runtime-benchmarks",
"pezsc-rpc-server/runtime-benchmarks",
"pezsc-rpc-spec-v2/runtime-benchmarks",
"pezsc-rpc/runtime-benchmarks",
"pezsc-sysinfo/runtime-benchmarks",
"pezsc-tracing/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-session/runtime-benchmarks",
"pezsp-state-machine/runtime-benchmarks",
"pezsp-transaction-pool/runtime-benchmarks",
"pezsp-transaction-storage-proof/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
"pezsp-version/runtime-benchmarks",
]
std = [
"bizinikiwi-test-runtime-client/std",
"log/std",
"pezsc-chain-spec/std",
"pezsc-client-api/std",
"pezsc-client-db/std",
"pezsc-consensus/std",
"pezsc-informant/std",
"pezsc-keystore/std",
"pezsc-network-common/std",
"pezsc-network-light/std",
"pezsc-network-sync/std",
"pezsc-network-transactions/std",
"pezsc-network-types/std",
"pezsc-network/std",
"pezsc-rpc-server/std",
"pezsc-rpc-spec-v2/std",
"pezsc-rpc/std",
"pezsc-sysinfo/std",
"pezsc-telemetry/std",
"pezsc-tracing/std",
"pezsc-transaction-pool-api/std",
"pezsc-transaction-pool/std",
"pezsc-utils/std",
"pezsp-blockchain/std",
"pezsp-consensus/std",
"prometheus-endpoint/std",
]
try-runtime = [
"bizinikiwi-test-runtime-client/try-runtime",
"bizinikiwi-test-runtime/try-runtime",
"pezsc-chain-spec/try-runtime",
"pezsc-client-api/try-runtime",
"pezsc-client-db/try-runtime",
"pezsc-consensus/try-runtime",
"pezsc-executor/try-runtime",
"pezsc-informant/try-runtime",
"pezsc-network-common/try-runtime",
"pezsc-network-light/try-runtime",
"pezsc-network-sync/try-runtime",
"pezsc-network-transactions/try-runtime",
"pezsc-network/try-runtime",
"pezsc-rpc-spec-v2/try-runtime",
"pezsc-rpc/try-runtime",
"pezsc-sysinfo/try-runtime",
"pezsc-tracing/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-session/try-runtime",
"pezsp-transaction-pool/try-runtime",
"pezsp-transaction-storage-proof/try-runtime",
"pezsp-version/try-runtime",
]
serde = []