Files
pezkuwi-sdk/pezcumulus/pezkuwi-teyrchain/Cargo.toml
T
pezkuwichain 3208f208c0 fix: Resolve cargo clippy errors and add CI workflow plan
## 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
2025-12-23 09:37:11 +03:00

118 lines
4.2 KiB
TOML

[package]
name = "pezkuwi-teyrchain-bin"
version = "4.0.0"
authors.workspace = true
edition.workspace = true
build = "build.rs"
description = "Runs a pezkuwi teyrchain node"
license = "Apache-2.0"
homepage.workspace = true
repository.workspace = true
documentation = "https://docs.rs/pezkuwi-teyrchain-bin"
[lints]
workspace = true
[[bin]]
name = "pezkuwi-teyrchain"
path = "src/main.rs"
[dependencies]
color-eyre = { workspace = true }
hex-literal = { workspace = true, default-features = true }
log = { workspace = true, default-features = true }
serde = { features = ["derive"], workspace = true, default-features = true }
serde_json = { workspace = true, default-features = true }
# Local
asset-hub-pezkuwichain-runtime = { workspace = true, default-features = true }
asset-hub-zagros-runtime = { workspace = true, default-features = true }
collectives-zagros-runtime = { workspace = true }
coretime-pezkuwichain-runtime = { workspace = true }
coretime-zagros-runtime = { workspace = true }
glutton-zagros-runtime = { workspace = true }
people-pezkuwichain-runtime = { workspace = true }
people-zagros-runtime = { workspace = true }
pez-penpal-runtime = { workspace = true }
pezbridge-hub-pezkuwichain-runtime = { workspace = true, default-features = true }
pezbridge-hub-zagros-runtime = { workspace = true, default-features = true }
pezkuwi-omni-node-lib = { features = [
"pezkuwichain-native",
"zagros-native",
], workspace = true }
pezkuwichain-teyrchain-runtime = { workspace = true }
teyrchains-common = { workspace = true, default-features = true }
# Bizinikiwi
pezsc-chain-spec = { workspace = true, default-features = true }
pezsc-cli = { workspace = true, default-features = true }
pezsc-service = { workspace = true, default-features = true }
pezsp-core = { workspace = true, default-features = true }
pezsp-genesis-builder = { workspace = true, default-features = true }
pezsp-keyring = { workspace = true, default-features = true }
# Pezkuwi
xcm = { workspace = true, default-features = true }
# Pezcumulus
pezcumulus-client-consensus-aura = { workspace = true }
pezcumulus-primitives-core = { workspace = true, default-features = true }
yet-another-teyrchain-runtime = { workspace = true }
[dev-dependencies]
assert_cmd = { workspace = true }
[build-dependencies]
bizinikiwi-build-script-utils = { workspace = true, default-features = true }
[features]
default = []
runtime-benchmarks = [
"pezcumulus-primitives-core/runtime-benchmarks",
"pezkuwi-omni-node-lib/runtime-benchmarks",
"pezsc-service/runtime-benchmarks",
"teyrchains-common/runtime-benchmarks",
"asset-hub-pezkuwichain-runtime/runtime-benchmarks",
"asset-hub-zagros-runtime/runtime-benchmarks",
"collectives-zagros-runtime/runtime-benchmarks",
"coretime-pezkuwichain-runtime/runtime-benchmarks",
"coretime-zagros-runtime/runtime-benchmarks",
"glutton-zagros-runtime/runtime-benchmarks",
"people-pezkuwichain-runtime/runtime-benchmarks",
"people-zagros-runtime/runtime-benchmarks",
"pez-penpal-runtime/runtime-benchmarks",
"pezbridge-hub-pezkuwichain-runtime/runtime-benchmarks",
"pezbridge-hub-zagros-runtime/runtime-benchmarks",
"pezcumulus-client-consensus-aura/runtime-benchmarks",
"pezkuwichain-teyrchain-runtime/runtime-benchmarks",
"pezsc-chain-spec/runtime-benchmarks",
"pezsc-cli/runtime-benchmarks",
"pezsp-genesis-builder/runtime-benchmarks",
"pezsp-keyring/runtime-benchmarks",
"xcm/runtime-benchmarks",
"yet-another-teyrchain-runtime/runtime-benchmarks",
]
try-runtime = [
"pezkuwi-omni-node-lib/try-runtime",
"asset-hub-pezkuwichain-runtime/try-runtime",
"asset-hub-zagros-runtime/try-runtime",
"collectives-zagros-runtime/try-runtime",
"coretime-pezkuwichain-runtime/try-runtime",
"coretime-zagros-runtime/try-runtime",
"glutton-zagros-runtime/try-runtime",
"people-pezkuwichain-runtime/try-runtime",
"people-zagros-runtime/try-runtime",
"pez-penpal-runtime/try-runtime",
"pezbridge-hub-pezkuwichain-runtime/try-runtime",
"pezbridge-hub-zagros-runtime/try-runtime",
"teyrchains-common/try-runtime",
]
fast-runtime = [
"coretime-pezkuwichain-runtime/fast-runtime",
"coretime-zagros-runtime/fast-runtime",
"pezbridge-hub-pezkuwichain-runtime/fast-runtime",
"pezbridge-hub-zagros-runtime/fast-runtime",
]