3208f208c0
## Changes
### Clippy Fixes
- Fixed deprecated `cargo_bin` usage in 27 test files (added #![allow(deprecated)])
- Fixed uninlined_format_args in zombienet-sdk-tests
- Fixed subxt API changes in revive/rpc/tests.rs (fetch signature, StorageValue)
- Fixed dead_code warnings in validator-pool and identity-kyc mocks
- Fixed field name `i` -> `_i` in tasks example
### CI Infrastructure
- Added .claude/WORKFLOW_PLAN.md for tracking CI fix progress
- Updated lychee.toml and taplo.toml configs
### Files Modified
- 27 test files with deprecated cargo_bin fix
- bizinikiwi/pezframe/revive/rpc/src/tests.rs (subxt API)
- pezkuwi/pezpallets/validator-pool/src/{mock,tests}.rs
- pezcumulus/teyrchains/pezpallets/identity-kyc/src/mock.rs
- bizinikiwi/pezframe/examples/tasks/src/tests.rs
## Status
- cargo clippy: PASSING
- Next: cargo fmt, zepter, workspace checks
136 lines
5.8 KiB
TOML
136 lines
5.8 KiB
TOML
[package]
|
|
name = "pezkuwi-subsystem-bench"
|
|
description = "Subsystem performance benchmark client"
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
readme = "README.md"
|
|
publish = false
|
|
documentation = "https://docs.rs/pezkuwi-subsystem-bench"
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lib]
|
|
name = "pezkuwi_subsystem_bench"
|
|
path = "src/lib/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "subsystem-bench"
|
|
path = "src/cli/subsystem-bench.rs"
|
|
|
|
# Prevent rustdoc error. Already documented from top-level Cargo.toml.
|
|
doc = false
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
bincode = { workspace = true }
|
|
bitvec = { workspace = true, default-features = true }
|
|
clap = { features = ["derive"], workspace = true }
|
|
color-eyre = { workspace = true }
|
|
colored = { workspace = true }
|
|
futures = { workspace = true }
|
|
gum = { workspace = true, default-features = true }
|
|
hex = { workspace = true, default-features = true }
|
|
kvdb-memorydb = { workspace = true }
|
|
pezkuwi-availability-bitfield-distribution = { workspace = true, default-features = true }
|
|
pezkuwi-availability-distribution = { workspace = true, default-features = true }
|
|
pezkuwi-availability-recovery = { features = [
|
|
"subsystem-benchmarks",
|
|
], workspace = true, default-features = true }
|
|
pezkuwi-dispute-distribution = { workspace = true, default-features = true }
|
|
pezkuwi-node-core-av-store = { workspace = true, default-features = true }
|
|
pezkuwi-node-core-dispute-coordinator = { workspace = true, default-features = true }
|
|
pezkuwi-node-network-protocol = { workspace = true, default-features = true }
|
|
pezkuwi-node-subsystem = { workspace = true, default-features = true }
|
|
pezkuwi-node-subsystem-types = { workspace = true, default-features = true }
|
|
pezkuwi-node-subsystem-util = { workspace = true, default-features = true }
|
|
pezkuwi-overseer = { workspace = true, default-features = true }
|
|
pezkuwi-pez-node-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, features = ["test"] }
|
|
pezkuwi-statement-distribution = { workspace = true, default-features = true }
|
|
# `rand` only supports uniform distribution, we need normal distribution for latency.
|
|
pezsc-keystore = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-keystore = { workspace = true, default-features = true }
|
|
pezsp-tracing = { workspace = true }
|
|
rand = { workspace = true, default-features = true }
|
|
rand_distr = { workspace = true }
|
|
sha1 = { workspace = true }
|
|
tikv-jemallocator = { features = [
|
|
"profiling",
|
|
"unprefixed_malloc_on_supported_platforms",
|
|
], workspace = true, optional = true }
|
|
|
|
codec = { features = [
|
|
"derive",
|
|
"std",
|
|
], workspace = true, default-features = true }
|
|
itertools = { workspace = true }
|
|
pezkuwi-node-metrics = { workspace = true, default-features = true }
|
|
pezkuwi-node-subsystem-test-helpers = { workspace = true }
|
|
pezkuwi-primitives-test-helpers = { workspace = true }
|
|
pezsc-network = { workspace = true, default-features = true }
|
|
pezsc-network-types = { workspace = true, default-features = true }
|
|
pezsc-service = { workspace = true, default-features = true }
|
|
pezsp-application-crypto = { workspace = true, default-features = true }
|
|
pezsp-consensus = { workspace = true, default-features = true }
|
|
pezsp-keyring = { workspace = true, default-features = true }
|
|
prometheus = { workspace = true }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
serde = { workspace = true, default-features = true }
|
|
serde_json = { workspace = true }
|
|
serde_yaml = { workspace = true }
|
|
tokio = { features = [
|
|
"parking_lot",
|
|
"rt-multi-thread",
|
|
], workspace = true, default-features = true }
|
|
|
|
pezkuwi-approval-distribution = { workspace = true, default-features = true }
|
|
pezkuwi-node-core-approval-voting = { workspace = true, default-features = true }
|
|
pezkuwi-node-core-approval-voting-parallel = { workspace = true, default-features = true }
|
|
pezsp-consensus-babe = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-timestamp = { workspace = true, default-features = true }
|
|
|
|
orchestra = { features = ["futures_channel"], workspace = true }
|
|
paste = { workspace = true, default-features = true }
|
|
pyroscope = { workspace = true }
|
|
pyroscope_pprofrs = { workspace = true }
|
|
rand_chacha = { workspace = true, default-features = true }
|
|
strum = { features = ["derive"], workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = []
|
|
memprofile = ["dep:tikv-jemallocator"]
|
|
runtime-benchmarks = [
|
|
"gum/runtime-benchmarks",
|
|
"pezkuwi-approval-distribution/runtime-benchmarks",
|
|
"pezkuwi-availability-bitfield-distribution/runtime-benchmarks",
|
|
"pezkuwi-availability-distribution/runtime-benchmarks",
|
|
"pezkuwi-availability-recovery/runtime-benchmarks",
|
|
"pezkuwi-dispute-distribution/runtime-benchmarks",
|
|
"pezkuwi-node-core-approval-voting-parallel/runtime-benchmarks",
|
|
"pezkuwi-node-core-approval-voting/runtime-benchmarks",
|
|
"pezkuwi-node-core-av-store/runtime-benchmarks",
|
|
"pezkuwi-node-core-dispute-coordinator/runtime-benchmarks",
|
|
"pezkuwi-node-metrics/runtime-benchmarks",
|
|
"pezkuwi-node-network-protocol/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem-test-helpers/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem-types/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem-util/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem/runtime-benchmarks",
|
|
"pezkuwi-overseer/runtime-benchmarks",
|
|
"pezkuwi-pez-node-primitives/runtime-benchmarks",
|
|
"pezkuwi-primitives-test-helpers/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezkuwi-statement-distribution/runtime-benchmarks",
|
|
"pezsc-network/runtime-benchmarks",
|
|
"pezsc-service/runtime-benchmarks",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-keyring/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-timestamp/runtime-benchmarks",
|
|
]
|