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
109 lines
3.1 KiB
TOML
109 lines
3.1 KiB
TOML
[package]
|
|
name = "pezcumulus-pezpallet-xcmp-queue"
|
|
version = "0.7.1"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Pallet to queue outbound and inbound XCMP messages."
|
|
license = "Apache-2.0"
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
documentation = "https://docs.rs/pezcumulus-pezpallet-xcmp-queue"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { features = ["derive"], workspace = true }
|
|
scale-info = { features = ["derive"], workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# Bizinikiwi
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
pezpallet-message-queue = { workspace = true }
|
|
pezsp-core = { workspace = true }
|
|
pezsp-io = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
|
|
# Pezkuwi
|
|
pezkuwi-runtime-common = { workspace = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true }
|
|
xcm = { workspace = true }
|
|
xcm-builder = { workspace = true }
|
|
xcm-executor = { workspace = true }
|
|
|
|
# Pezcumulus
|
|
pezcumulus-primitives-core = { workspace = true }
|
|
|
|
# Optional import for weight accuracy testing
|
|
approx = { workspace = true }
|
|
# Optional import for benchmarking
|
|
bounded-collections = { workspace = true }
|
|
pezframe-benchmarking = { optional = true, workspace = true }
|
|
|
|
# Bridges
|
|
bp-xcm-bridge-hub-router = { optional = true, workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Bizinikiwi
|
|
pezframe-support = { features = [
|
|
"experimental",
|
|
], workspace = true, default-features = true }
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
|
|
# Pezcumulus
|
|
pezcumulus-pezpallet-teyrchain-system = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [
|
|
"approx/std",
|
|
"bounded-collections/std",
|
|
"bp-xcm-bridge-hub-router?/std",
|
|
"codec/std",
|
|
"pezcumulus-primitives-core/std",
|
|
"pezframe-benchmarking?/std",
|
|
"pezframe-support/std",
|
|
"pezframe-system/std",
|
|
"pezkuwi-runtime-common/std",
|
|
"pezkuwi-runtime-teyrchains/std",
|
|
"pezpallet-message-queue/std",
|
|
"pezsp-core/std",
|
|
"pezsp-io/std",
|
|
"pezsp-runtime/std",
|
|
"scale-info/std",
|
|
"tracing/std",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
runtime-benchmarks = [
|
|
"bp-xcm-bridge-hub-router?/runtime-benchmarks",
|
|
"pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks",
|
|
"pezcumulus-primitives-core/runtime-benchmarks",
|
|
"pezframe-benchmarking/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezkuwi-runtime-common/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"pezcumulus-pezpallet-teyrchain-system/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezkuwi-runtime-common/try-runtime",
|
|
"pezkuwi-runtime-teyrchains/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezpallet-message-queue/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
bridging = ["bp-xcm-bridge-hub-router"]
|