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
176 lines
5.7 KiB
TOML
176 lines
5.7 KiB
TOML
[package]
|
|
name = "pezkuwi-test-runtime"
|
|
build = "build.rs"
|
|
publish = false
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
description = "Pezkuwi SDK relay chain component: test runtime"
|
|
documentation = "https://docs.rs/pezkuwi-test-runtime"
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
log = { workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
pezframe-election-provider-support = { workspace = true }
|
|
pezsp-api = { workspace = true }
|
|
pezsp-authority-discovery = { workspace = true }
|
|
pezsp-block-builder = { workspace = true }
|
|
pezsp-consensus-babe = { workspace = true }
|
|
pezsp-consensus-beefy = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-genesis-builder = { workspace = true }
|
|
pezsp-inherents = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-mmr-primitives = { workspace = true }
|
|
pezsp-offchain = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-session = { workspace = true }
|
|
pezsp-staking = { workspace = true }
|
|
pezsp-transaction-pool = { workspace = true }
|
|
pezsp-version = { workspace = true }
|
|
|
|
pezframe-executive = { workspace = true }
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezframe-system-rpc-runtime-api = { workspace = true }
|
|
pezpallet-authority-discovery = { workspace = true }
|
|
pezpallet-authorship = { workspace = true }
|
|
pezpallet-babe = { workspace = true }
|
|
pezpallet-balances = { workspace = true }
|
|
pezpallet-grandpa = { workspace = true }
|
|
pezpallet-indices = { workspace = true }
|
|
pezpallet-offences = { workspace = true }
|
|
pezpallet-session = { workspace = true }
|
|
pezpallet-staking = { workspace = true }
|
|
pezpallet-staking-reward-curve = { workspace = true, default-features = true }
|
|
pezpallet-sudo = { workspace = true }
|
|
pezpallet-timestamp = { workspace = true }
|
|
pezpallet-transaction-payment = { workspace = true }
|
|
pezpallet-transaction-payment-rpc-runtime-api = { workspace = true }
|
|
pezpallet-vesting = { workspace = true }
|
|
peztest-runtime-constants = { workspace = true }
|
|
|
|
pezkuwi-primitives = { workspace = true }
|
|
pezkuwi-runtime-common = { workspace = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true }
|
|
pezpallet-xcm = { workspace = true }
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
bizinikiwi-wasm-builder = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
no_std = []
|
|
|
|
runtime-metrics = [
|
|
"pezkuwi-runtime-teyrchains/runtime-metrics",
|
|
"pezsp-io/with-tracing",
|
|
]
|
|
std = [
|
|
"codec/std",
|
|
"log/std",
|
|
"pezframe-election-provider-support/std",
|
|
"pezframe-executive/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system-rpc-runtime-api/std",
|
|
"pezframe-system/std",
|
|
"pezkuwi-primitives/std",
|
|
"pezkuwi-runtime-common/std",
|
|
"pezkuwi-runtime-teyrchains/std",
|
|
"pezpallet-authority-discovery/std",
|
|
"pezpallet-authorship/std",
|
|
"pezpallet-babe/std",
|
|
"pezpallet-balances/std",
|
|
"pezpallet-grandpa/std",
|
|
"pezpallet-indices/std",
|
|
"pezpallet-offences/std",
|
|
"pezpallet-session/std",
|
|
"pezpallet-staking/std",
|
|
"pezpallet-sudo/std",
|
|
"pezpallet-timestamp/std",
|
|
"pezpallet-transaction-payment-rpc-runtime-api/std",
|
|
"pezpallet-transaction-payment/std",
|
|
"pezpallet-vesting/std",
|
|
"pezpallet-xcm/std",
|
|
"pezsp-api/std",
|
|
"pezsp-authority-discovery/std",
|
|
"pezsp-block-builder/std",
|
|
"pezsp-consensus-babe/std",
|
|
"pezsp-consensus-beefy/std",
|
|
"pezsp-core/std",
|
|
"pezsp-genesis-builder/std",
|
|
"pezsp-inherents/std",
|
|
"pezsp-io/std",
|
|
"pezsp-mmr-primitives/std",
|
|
"pezsp-offchain/std",
|
|
"pezsp-runtime/std",
|
|
"pezsp-session/std",
|
|
"pezsp-staking/std",
|
|
"pezsp-transaction-pool/std",
|
|
"pezsp-version/std",
|
|
"peztest-runtime-constants/std",
|
|
"scale-info/std",
|
|
"serde/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bizinikiwi-wasm-builder/runtime-benchmarks",
|
|
"pezframe-election-provider-support/runtime-benchmarks",
|
|
"pezframe-executive/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system-rpc-runtime-api/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezkuwi-primitives/runtime-benchmarks",
|
|
"pezkuwi-runtime-common/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezpallet-authority-discovery/runtime-benchmarks",
|
|
"pezpallet-authorship/runtime-benchmarks",
|
|
"pezpallet-babe/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-grandpa/runtime-benchmarks",
|
|
"pezpallet-indices/runtime-benchmarks",
|
|
"pezpallet-offences/runtime-benchmarks",
|
|
"pezpallet-session/runtime-benchmarks",
|
|
"pezpallet-staking-reward-curve/runtime-benchmarks",
|
|
"pezpallet-staking/runtime-benchmarks",
|
|
"pezpallet-sudo/runtime-benchmarks",
|
|
"pezpallet-timestamp/runtime-benchmarks",
|
|
"pezpallet-transaction-payment-rpc-runtime-api/runtime-benchmarks",
|
|
"pezpallet-transaction-payment/runtime-benchmarks",
|
|
"pezpallet-vesting/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezsp-api/runtime-benchmarks",
|
|
"pezsp-authority-discovery/runtime-benchmarks",
|
|
"pezsp-block-builder/runtime-benchmarks",
|
|
"pezsp-consensus-babe/runtime-benchmarks",
|
|
"pezsp-consensus-beefy/runtime-benchmarks",
|
|
"pezsp-genesis-builder/runtime-benchmarks",
|
|
"pezsp-inherents/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-mmr-primitives/runtime-benchmarks",
|
|
"pezsp-offchain/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"pezsp-session/runtime-benchmarks",
|
|
"pezsp-staking/runtime-benchmarks",
|
|
"pezsp-transaction-pool/runtime-benchmarks",
|
|
"pezsp-version/runtime-benchmarks",
|
|
"peztest-runtime-constants/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|