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
54 lines
1.8 KiB
TOML
54 lines
1.8 KiB
TOML
[package]
|
|
name = "xcm-pez-docs"
|
|
description = "Documentation and guides for XCM"
|
|
version = "0.1.0"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
repository.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish = false
|
|
documentation = "https://docs.rs/xcm-pez-docs"
|
|
homepage = { workspace = true }
|
|
|
|
[dependencies]
|
|
# For XCM stuff
|
|
pezpallet-xcm = { workspace = true, default-features = true }
|
|
xcm = { workspace = true, default-features = true }
|
|
xcm-builder = { workspace = true, default-features = true }
|
|
xcm-executor = { workspace = true, default-features = true }
|
|
xcm-pez-simulator = { workspace = true, default-features = true }
|
|
|
|
# For building FRAME runtimes
|
|
codec = { workspace = true, default-features = true }
|
|
frame = { features = ["runtime"], workspace = true, default-features = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
scale-info = { workspace = true }
|
|
|
|
# Some pallets
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-message-queue = { workspace = true, default-features = true }
|
|
|
|
# For building docs
|
|
docify = { workspace = true }
|
|
simple-mermaid = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
test-log = { workspace = true }
|
|
|
|
[features]
|
|
runtime-benchmarks = [
|
|
"frame/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-pez-simulator/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|