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
78 lines
3.3 KiB
TOML
78 lines
3.3 KiB
TOML
[package]
|
|
authors.workspace = true
|
|
name = "pezcumulus-relay-chain-minimal-node"
|
|
version = "0.7.0"
|
|
edition.workspace = true
|
|
description = "Minimal node implementation to be used in tandem with RPC or light-client mode."
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/pezcumulus-relay-chain-minimal-node"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# pezkuwi deps
|
|
pezkuwi-core-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-node-network-protocol = { workspace = true, default-features = true }
|
|
pezkuwi-node-subsystem-util = { workspace = true, default-features = true }
|
|
pezkuwi-overseer = { workspace = true, default-features = true }
|
|
pezkuwi-primitives = { workspace = true, default-features = true }
|
|
|
|
pezkuwi-network-bridge = { workspace = true, default-features = true }
|
|
pezkuwi-service = { workspace = true, default-features = true }
|
|
|
|
# bizinikiwi deps
|
|
pezsc-authority-discovery = { workspace = true, default-features = true }
|
|
pezsc-client-api = { workspace = true, default-features = true }
|
|
pezsc-network = { workspace = true, default-features = true }
|
|
pezsc-network-common = { workspace = true, default-features = true }
|
|
pezsc-service = { workspace = true, default-features = true }
|
|
pezsc-tracing = { 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-consensus-babe = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
prometheus-endpoint = { workspace = true, default-features = true }
|
|
|
|
# pezcumulus deps
|
|
pezcumulus-client-bootnodes = { workspace = true, default-features = true }
|
|
pezcumulus-primitives-core = { workspace = true, default-features = true }
|
|
pezcumulus-relay-chain-interface = { workspace = true, default-features = true }
|
|
pezcumulus-relay-chain-rpc-interface = { workspace = true, default-features = true }
|
|
|
|
array-bytes = { workspace = true, default-features = true }
|
|
async-channel = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"pezcumulus-client-bootnodes/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezcumulus-relay-chain-interface/runtime-benchmarks",
|
|
"pezcumulus-relay-chain-rpc-interface/runtime-benchmarks",
|
|
"pezkuwi-core-primitives/runtime-benchmarks",
|
|
"pezkuwi-network-bridge/runtime-benchmarks",
|
|
"pezkuwi-node-network-protocol/runtime-benchmarks",
|
|
"pezkuwi-node-subsystem-util/runtime-benchmarks",
|
|
"pezkuwi-overseer/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezkuwi-service/runtime-benchmarks",
|
|
"pezsc-authority-discovery/runtime-benchmarks",
|
|
"pezsc-client-api/runtime-benchmarks",
|
|
"pezsc-network-common/runtime-benchmarks",
|
|
"pezsc-network/runtime-benchmarks",
|
|
"pezsc-service/runtime-benchmarks",
|
|
"pezsc-tracing/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-blockchain/runtime-benchmarks",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
]
|