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
93 lines
4.1 KiB
TOML
93 lines
4.1 KiB
TOML
[package]
|
|
|
|
name = "pezcumulus-client-service"
|
|
version = "0.7.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Common functions used to assemble the components of a teyrchain node."
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/pezcumulus-client-service"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
async-channel = { workspace = true }
|
|
futures = { workspace = true }
|
|
prometheus = { workspace = true }
|
|
|
|
# Bizinikiwi
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-consensus = { workspace = true, default-features = true }
|
|
pezsc-network = { workspace = true, default-features = true }
|
|
pezsc-network-sync = { workspace = true, default-features = true }
|
|
pezsc-network-transactions = { workspace = true, default-features = true }
|
|
pezsc-rpc = { workspace = true, default-features = true }
|
|
pezsc-service = { 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-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-io = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
pezsp-transaction-pool = { workspace = true, default-features = true }
|
|
pezsp-trie = { workspace = true, default-features = true }
|
|
|
|
# Pezkuwi
|
|
pezkuwi-overseer = { workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
|
|
# Pezcumulus
|
|
pezcumulus-client-cli = { workspace = true, default-features = true }
|
|
pezcumulus-client-collator = { workspace = true, default-features = true }
|
|
pezcumulus-client-consensus-common = { workspace = true, default-features = true }
|
|
pezcumulus-client-network = { workspace = true, default-features = true }
|
|
pezcumulus-client-pov-recovery = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-core = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-proof-size-hostfunction = { workspace = true, default-features = true }
|
|
pezcumulus-relay-chain-inprocess-interface = { workspace = true, default-features = true }
|
|
pezcumulus-relay-chain-interface = { workspace = true, default-features = true }
|
|
pezcumulus-relay-chain-minimal-node = { workspace = true, default-features = true }
|
|
pezcumulus-relay-chain-streams = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezcumulus-client-cli/runtime-benchmarks",
|
|
"pezcumulus-client-collator/runtime-benchmarks",
|
|
"pezcumulus-client-consensus-common/runtime-benchmarks",
|
|
"pezcumulus-client-network/runtime-benchmarks",
|
|
"pezcumulus-client-pov-recovery/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezcumulus-primitives-proof-size-hostfunction/runtime-benchmarks",
|
|
"pezcumulus-relay-chain-inprocess-interface/runtime-benchmarks",
|
|
"pezcumulus-relay-chain-interface/runtime-benchmarks",
|
|
"pezcumulus-relay-chain-minimal-node/runtime-benchmarks",
|
|
"pezcumulus-relay-chain-streams/runtime-benchmarks",
|
|
"pezkuwi-overseer/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-consensus/runtime-benchmarks",
|
|
"pezsc-network-sync/runtime-benchmarks",
|
|
"pezsc-network-transactions/runtime-benchmarks",
|
|
"pezsc-network/runtime-benchmarks",
|
|
"pezsc-rpc/runtime-benchmarks",
|
|
"pezsc-service/runtime-benchmarks",
|
|
"pezsc-sysinfo/runtime-benchmarks",
|
|
"pezsc-tracing/runtime-benchmarks",
|
|
"pezsc-transaction-pool/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-transaction-pool/runtime-benchmarks",
|
|
"pezsp-trie/runtime-benchmarks",
|
|
]
|