Files
pezkuwi-sdk/bizinikiwi/utils/pezframe/rpc/client/Cargo.toml
T
pezkuwichain 267fcec12d fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config
   - Command: taplo format --config .config/taplo.toml

2. Zepter feature propagation fix:
   - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature

3. generate-umbrella.py bug fix:
   - Script crashed when Cargo.toml/src didn't exist in umbrella dir
   - Added existence checks before deletion
2026-01-26 00:39:59 +03:00

42 lines
1.1 KiB
TOML

[package]
name = "bizinikiwi-rpc-client"
version = "0.33.0"
authors.workspace = true
edition.workspace = true
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
description = "Shared JSON-RPC client"
documentation.workspace = true
[lints]
workspace = true
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
async-trait = { workspace = true }
jsonrpsee = { features = ["ws-client"], workspace = true }
log = { workspace = true, default-features = true }
pezsc-rpc-api = { workspace = true, default-features = true }
pezsp-runtime = { workspace = true, default-features = true }
serde = { workspace = true, default-features = true }
[dev-dependencies]
pezsp-core = { workspace = true, default-features = true }
tokio = { features = [
"macros",
"rt-multi-thread",
"sync",
], workspace = true, default-features = true }
[features]
runtime-benchmarks = [
"pezsc-rpc-api/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
std = ["log/std", "pezsc-rpc-api/std"]
try-runtime = ["pezsc-rpc-api/try-runtime", "pezsp-runtime/try-runtime"]
serde = []