From 592fbc153798f5f4eb8dc75112129a2f37e4e30e Mon Sep 17 00:00:00 2001 From: Kurdistan Tech Ministry Date: Wed, 7 Jan 2026 18:16:03 +0300 Subject: [PATCH] fix: CI - zepter feature propagation (347 issues), taplo format, umbrella --- bizinikiwi/bin/node/cli/Cargo.toml | 2 + .../client/merkle-mountain-range/Cargo.toml | 2 + bizinikiwi/pezframe/balances/Cargo.toml | 1 + bizinikiwi/pezframe/benchmarking/Cargo.toml | 4 + bizinikiwi/pezframe/contracts/Cargo.toml | 2 + bizinikiwi/pezframe/executive/Cargo.toml | 4 + bizinikiwi/pezframe/lottery/Cargo.toml | 2 + .../metadata-hash-extension/Cargo.toml | 5 + bizinikiwi/pezframe/parameters/Cargo.toml | 1 + bizinikiwi/pezframe/society/Cargo.toml | 2 + bizinikiwi/pezframe/support/Cargo.toml | 1 + bizinikiwi/pezframe/system/Cargo.toml | 2 + bizinikiwi/pezframe/utility/Cargo.toml | 1 + .../pezframe/benchmarking-cli/Cargo.toml | 7 +- .../utils/pezframe/rpc/system/Cargo.toml | 2 + pezbridges/primitives/header-chain/Cargo.toml | 1 + pezcumulus/client/collator/Cargo.toml | 5 + pezcumulus/client/consensus/aura/Cargo.toml | 4 + pezcumulus/client/network/Cargo.toml | 8 + .../Cargo.toml | 2 + .../teyrchains/pezpallets/perwerde/Cargo.toml | 3 + pezkuwi/node/collation-generation/Cargo.toml | 2 + .../core/approval-voting-parallel/Cargo.toml | 1 + pezkuwi/node/core/approval-voting/Cargo.toml | 5 + pezkuwi/node/core/av-store/Cargo.toml | 2 + pezkuwi/node/core/backing/Cargo.toml | 2 + pezkuwi/node/core/bitfield-signing/Cargo.toml | 2 + .../node/core/candidate-validation/Cargo.toml | 2 + pezkuwi/node/core/chain-api/Cargo.toml | 1 + pezkuwi/node/core/chain-selection/Cargo.toml | 1 + .../node/core/dispute-coordinator/Cargo.toml | 3 + .../core/prospective-teyrchains/Cargo.toml | 2 + pezkuwi/node/core/provisioner/Cargo.toml | 2 + pezkuwi/node/core/pvf-checker/Cargo.toml | 3 + pezkuwi/node/core/pvf/Cargo.toml | 3 + pezkuwi/node/core/runtime-api/Cargo.toml | 2 + .../network/approval-distribution/Cargo.toml | 2 + .../availability-distribution/Cargo.toml | 3 + .../network/availability-recovery/Cargo.toml | 3 + .../network/bitfield-distribution/Cargo.toml | 1 + pezkuwi/node/network/bridge/Cargo.toml | 2 + .../node/network/collator-protocol/Cargo.toml | 3 + .../network/dispute-distribution/Cargo.toml | 2 + .../node/network/gossip-support/Cargo.toml | 1 + .../network/statement-distribution/Cargo.toml | 3 + pezkuwi/node/service/Cargo.toml | 5 + pezkuwi/node/subsystem-util/Cargo.toml | 2 + pezkuwi/xcm/pezpallet-xcm/Cargo.toml | 2 + pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml | 2 + umbrella/Cargo.toml | 1894 ++++++++++++++++- 50 files changed, 2011 insertions(+), 8 deletions(-) diff --git a/bizinikiwi/bin/node/cli/Cargo.toml b/bizinikiwi/bin/node/cli/Cargo.toml index cde400e5..ffdaceff 100644 --- a/bizinikiwi/bin/node/cli/Cargo.toml +++ b/bizinikiwi/bin/node/cli/Cargo.toml @@ -291,6 +291,7 @@ runtime-benchmarks = [ "pezsp-timestamp/runtime-benchmarks", "pezsp-transaction-storage-proof/runtime-benchmarks", "remote-externalities/runtime-benchmarks", + "pezkuwi-sdk/runtime-benchmarks" ] storage-benchmark = ["pezframe-benchmarking-cli/storage-benchmark"] try-runtime = [ @@ -361,6 +362,7 @@ try-runtime = [ "pezsp-timestamp/try-runtime", "pezsp-transaction-storage-proof/try-runtime", "remote-externalities/try-runtime", + "pezkuwi-sdk/try-runtime" ] std = [ "bizinikiwi-cli-test-utils/std", diff --git a/bizinikiwi/client/merkle-mountain-range/Cargo.toml b/bizinikiwi/client/merkle-mountain-range/Cargo.toml index 99ae5833..c8dd21a4 100644 --- a/bizinikiwi/client/merkle-mountain-range/Cargo.toml +++ b/bizinikiwi/client/merkle-mountain-range/Cargo.toml @@ -55,6 +55,7 @@ std = [ "pezsc-offchain/std", "pezsp-blockchain/std", "pezsp-consensus/std", + "bizinikiwi-test-runtime-client/std" ] try-runtime = [ "pezsc-block-builder/try-runtime", @@ -66,6 +67,7 @@ try-runtime = [ "pezsp-consensus/try-runtime", "pezsp-mmr-primitives/try-runtime", "pezsp-runtime/try-runtime", + "bizinikiwi-test-runtime-client/try-runtime" ] serde = [] with-tracing = [] diff --git a/bizinikiwi/pezframe/balances/Cargo.toml b/bizinikiwi/pezframe/balances/Cargo.toml index bd942b83..958a46ed 100644 --- a/bizinikiwi/pezframe/balances/Cargo.toml +++ b/bizinikiwi/pezframe/balances/Cargo.toml @@ -63,6 +63,7 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", + "pezpallet-transaction-payment/try-runtime" ] serde = [] experimental = [] diff --git a/bizinikiwi/pezframe/benchmarking/Cargo.toml b/bizinikiwi/pezframe/benchmarking/Cargo.toml index 8715422e..3cb1b70d 100644 --- a/bizinikiwi/pezframe/benchmarking/Cargo.toml +++ b/bizinikiwi/pezframe/benchmarking/Cargo.toml @@ -65,6 +65,7 @@ std = [ "pezsp-storage/std", "scale-info/std", "serde", + "pezsc-client-db/std" ] runtime-benchmarks = [ "pezframe-support-procedural/runtime-benchmarks", @@ -77,12 +78,15 @@ runtime-benchmarks = [ "pezsp-runtime-interface/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", + "pezsc-client-db/runtime-benchmarks" ] try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", + "pezpallet-example-basic/try-runtime", + "pezsc-client-db/try-runtime" ] serde = [ "array-bytes/serde", diff --git a/bizinikiwi/pezframe/contracts/Cargo.toml b/bizinikiwi/pezframe/contracts/Cargo.toml index c918584b..97b534c5 100644 --- a/bizinikiwi/pezframe/contracts/Cargo.toml +++ b/bizinikiwi/pezframe/contracts/Cargo.toml @@ -97,6 +97,7 @@ std = [ "wasmi/std", "xcm-builder/std", "xcm/std", + "pezpallet-contracts-fixtures/std" ] runtime-benchmarks = [ "pezframe-benchmarking/runtime-benchmarks", @@ -127,6 +128,7 @@ try-runtime = [ "pezsp-runtime/try-runtime", "xcm-builder/try-runtime", "xcm/try-runtime", + "pezpallet-contracts-fixtures/try-runtime" ] serde = [ "array-bytes/serde", diff --git a/bizinikiwi/pezframe/executive/Cargo.toml b/bizinikiwi/pezframe/executive/Cargo.toml index e9cf3d6a..b65d5125 100644 --- a/bizinikiwi/pezframe/executive/Cargo.toml +++ b/bizinikiwi/pezframe/executive/Cargo.toml @@ -59,6 +59,7 @@ std = [ "pezsp-tracing/std", "pezsp-version/std", "scale-info/std", + "bizinikiwi-test-runtime-client/std" ] try-runtime = [ "pezframe-support/try-runtime", @@ -67,6 +68,9 @@ try-runtime = [ "pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime", "pezsp-version/try-runtime", + "bizinikiwi-test-runtime-client/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-transaction-payment/try-runtime" ] runtime-benchmarks = [ "bizinikiwi-test-runtime-client/runtime-benchmarks", diff --git a/bizinikiwi/pezframe/lottery/Cargo.toml b/bizinikiwi/pezframe/lottery/Cargo.toml index b114fc64..855646c2 100644 --- a/bizinikiwi/pezframe/lottery/Cargo.toml +++ b/bizinikiwi/pezframe/lottery/Cargo.toml @@ -49,6 +49,7 @@ runtime-benchmarks = [ "pezpallet-balances/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", + "pezframe-support-test/runtime-benchmarks" ] try-runtime = [ "pezframe-benchmarking?/try-runtime", @@ -56,6 +57,7 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", + "pezframe-support-test/try-runtime" ] serde = [] experimental = [] diff --git a/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml b/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml index 5d2d3dca..1e60b7fd 100644 --- a/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml +++ b/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml @@ -42,6 +42,8 @@ std = [ "pezframe-system/std", "pezsp-runtime/std", "scale-info/std", + "bizinikiwi-test-runtime-client/std", + "bizinikiwi-wasm-builder/std" ] runtime-benchmarks = [ "bizinikiwi-test-runtime-client/runtime-benchmarks", @@ -50,12 +52,15 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-transaction-pool/runtime-benchmarks", + "bizinikiwi-wasm-builder/runtime-benchmarks" ] try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", + "bizinikiwi-test-runtime-client/try-runtime", + "pezsp-transaction-pool/try-runtime" ] serde = [] experimental = [] diff --git a/bizinikiwi/pezframe/parameters/Cargo.toml b/bizinikiwi/pezframe/parameters/Cargo.toml index e8c2f569..faadffa4 100644 --- a/bizinikiwi/pezframe/parameters/Cargo.toml +++ b/bizinikiwi/pezframe/parameters/Cargo.toml @@ -60,6 +60,7 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", + "pezpallet-example-basic/try-runtime" ] serde = [ "codec/serde", diff --git a/bizinikiwi/pezframe/society/Cargo.toml b/bizinikiwi/pezframe/society/Cargo.toml index 6c816776..530cfa22 100644 --- a/bizinikiwi/pezframe/society/Cargo.toml +++ b/bizinikiwi/pezframe/society/Cargo.toml @@ -57,6 +57,7 @@ runtime-benchmarks = [ "pezpallet-balances/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", + "pezframe-support-test/runtime-benchmarks" ] try-runtime = [ "pezframe-benchmarking?/try-runtime", @@ -64,6 +65,7 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", + "pezframe-support-test/try-runtime" ] serde = [] experimental = [] diff --git a/bizinikiwi/pezframe/support/Cargo.toml b/bizinikiwi/pezframe/support/Cargo.toml index 50bb19a3..a0f5038b 100644 --- a/bizinikiwi/pezframe/support/Cargo.toml +++ b/bizinikiwi/pezframe/support/Cargo.toml @@ -109,6 +109,7 @@ try-runtime = [ "pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime", "pezsp-staking/try-runtime", + "pezframe-system/try-runtime" ] experimental = ["pezframe-support-procedural/experimental"] # By default some types have documentation, `no-metadata-docs` allows to reduce the documentation diff --git a/bizinikiwi/pezframe/system/Cargo.toml b/bizinikiwi/pezframe/system/Cargo.toml index e733e6ee..41803cd0 100644 --- a/bizinikiwi/pezframe/system/Cargo.toml +++ b/bizinikiwi/pezframe/system/Cargo.toml @@ -53,6 +53,7 @@ std = [ "pezsp-weights/std", "scale-info/std", "serde/std", + "bizinikiwi-test-runtime-client/std" ] runtime-benchmarks = [ "bizinikiwi-test-runtime-client/runtime-benchmarks", @@ -65,6 +66,7 @@ try-runtime = [ "pezframe-support/try-runtime", "pezsp-runtime/try-runtime", "pezsp-version/try-runtime", + "bizinikiwi-test-runtime-client/try-runtime" ] experimental = ["pezframe-support/experimental"] serde = [] diff --git a/bizinikiwi/pezframe/utility/Cargo.toml b/bizinikiwi/pezframe/utility/Cargo.toml index 26cab055..71e2b7f1 100644 --- a/bizinikiwi/pezframe/utility/Cargo.toml +++ b/bizinikiwi/pezframe/utility/Cargo.toml @@ -63,6 +63,7 @@ try-runtime = [ "pezpallet-collective/try-runtime", "pezpallet-timestamp/try-runtime", "pezsp-runtime/try-runtime", + "pezpallet-root-testing/try-runtime" ] serde = [] experimental = [] diff --git a/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml b/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml index 3be3d395..620784b8 100644 --- a/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml +++ b/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml @@ -25,7 +25,6 @@ codec = { workspace = true, default-features = true } comfy-table = { workspace = true } env_filter = { workspace = true } gethostname = { workspace = true } -pezframe-storage-access-test-runtime = { workspace = true, optional = true } handlebars = { workspace = true } itertools = { workspace = true } linked-hash-map = { workspace = true } @@ -33,6 +32,7 @@ log = { workspace = true, default-features = true } pezcumulus-client-teyrchain-inherent = { workspace = true, default-features = true } pezcumulus-primitives-proof-size-hostfunction = { workspace = true, default-features = true } pezframe-benchmarking = { workspace = true, default-features = true } +pezframe-storage-access-test-runtime = { workspace = true, optional = true } pezframe-support = { workspace = true, default-features = true } pezframe-system = { workspace = true, default-features = true } pezkuwi-primitives = { workspace = true, default-features = true } @@ -127,6 +127,7 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "pezsp-version/runtime-benchmarks", "zagros-runtime/runtime-benchmarks", + "pezframe-storage-access-test-runtime?/runtime-benchmarks" ] rocksdb = ["pezsc-cli/rocksdb", "pezsc-client-db/rocksdb"] std = [ @@ -170,6 +171,10 @@ try-runtime = [ "pezsp-timestamp/try-runtime", "pezsp-transaction-pool/try-runtime", "pezsp-version/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezcumulus-test-runtime/try-runtime", + "pezframe-storage-access-test-runtime?/try-runtime", + "zagros-runtime/try-runtime" ] serde = [] experimental = [] diff --git a/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml b/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml index 1d0b0cf9..185c04ee 100644 --- a/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml +++ b/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml @@ -60,6 +60,7 @@ std = [ "pezsc-transaction-pool-api/std", "pezsc-transaction-pool/std", "pezsp-blockchain/std", + "bizinikiwi-test-runtime-client/std" ] try-runtime = [ "pezsc-rpc-api/try-runtime", @@ -69,6 +70,7 @@ try-runtime = [ "pezsp-block-builder/try-runtime", "pezsp-blockchain/try-runtime", "pezsp-runtime/try-runtime", + "bizinikiwi-test-runtime-client/try-runtime" ] serde = [] with-tracing = [] diff --git a/pezbridges/primitives/header-chain/Cargo.toml b/pezbridges/primitives/header-chain/Cargo.toml index 869f0ab7..73bf78fd 100644 --- a/pezbridges/primitives/header-chain/Cargo.toml +++ b/pezbridges/primitives/header-chain/Cargo.toml @@ -59,6 +59,7 @@ try-runtime = [ "pezframe-support/try-runtime", "pezsp-consensus-grandpa/try-runtime", "pezsp-runtime/try-runtime", + "pezbp-test-utils/try-runtime" ] serde = [] experimental = [] diff --git a/pezcumulus/client/collator/Cargo.toml b/pezcumulus/client/collator/Cargo.toml index 77764f0a..7f95b834 100644 --- a/pezcumulus/client/collator/Cargo.toml +++ b/pezcumulus/client/collator/Cargo.toml @@ -79,6 +79,8 @@ std = [ "pezkuwi-pez-node-primitives/std", "pezsc-client-api/std", "pezsp-consensus/std", + "pezcumulus-test-client/std", + "pezkuwi-node-subsystem-test-helpers/std" ] try-runtime = [ "pezcumulus-client-consensus-common/try-runtime", @@ -89,6 +91,9 @@ try-runtime = [ "pezsp-api/try-runtime", "pezsp-consensus/try-runtime", "pezsp-runtime/try-runtime", + "pezcumulus-test-client/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", + "pezcumulus-test-runtime/try-runtime" ] serde = [] with-tracing = [] diff --git a/pezcumulus/client/consensus/aura/Cargo.toml b/pezcumulus/client/consensus/aura/Cargo.toml index 63d79ff7..7d4bf150 100644 --- a/pezcumulus/client/consensus/aura/Cargo.toml +++ b/pezcumulus/client/consensus/aura/Cargo.toml @@ -128,6 +128,8 @@ std = [ "pezsp-tracing/std", "pezsp-version/std", "prometheus-endpoint/std", + "pezcumulus-test-client/std", + "pezcumulus-test-relay-sproof-builder/std" ] try-runtime = [ "pezcumulus-client-collator/try-runtime", @@ -151,6 +153,8 @@ try-runtime = [ "pezsp-runtime/try-runtime", "pezsp-timestamp/try-runtime", "pezsp-version/try-runtime", + "pezcumulus-test-client/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime" ] serde = [] with-tracing = [] diff --git a/pezcumulus/client/network/Cargo.toml b/pezcumulus/client/network/Cargo.toml index 625b1f7a..e7440f28 100644 --- a/pezcumulus/client/network/Cargo.toml +++ b/pezcumulus/client/network/Cargo.toml @@ -87,6 +87,10 @@ std = [ "pezsc-network/std", "pezsp-blockchain/std", "pezsp-consensus/std", + "pezcumulus-relay-chain-inprocess-interface/std", + "pezcumulus-test-service/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-test-client/std" ] try-runtime = [ "pezcumulus-primitives-core/try-runtime", @@ -100,5 +104,9 @@ try-runtime = [ "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", "pezsp-version/try-runtime", + "pezcumulus-relay-chain-inprocess-interface/try-runtime", + "pezcumulus-test-service/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime", + "pezkuwi-test-client/try-runtime" ] serde = [] diff --git a/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml b/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml index 195cbf6f..95a2f3b8 100644 --- a/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml +++ b/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml @@ -81,6 +81,7 @@ std = [ "pezsc-telemetry/std", "pezsc-tracing/std", "pezsp-consensus/std", + "pezkuwi-test-client/std" ] try-runtime = [ "pezcumulus-client-bootnodes/try-runtime", @@ -97,5 +98,6 @@ try-runtime = [ "pezsp-consensus/try-runtime", "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezkuwi-test-client/try-runtime" ] serde = [] diff --git a/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml b/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml index d6814170..6c72b5a2 100644 --- a/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml @@ -59,6 +59,7 @@ std = [ "scale-info/std", "serde", "serde?/std", + "pezpallet-sudo/std" ] runtime-benchmarks = [ "pezframe-benchmarking/runtime-benchmarks", @@ -73,6 +74,7 @@ runtime-benchmarks = [ "pezsp-io", "pezsp-io?/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", + "pezpallet-sudo/runtime-benchmarks" ] try-runtime = [ "pezframe-benchmarking?/try-runtime", @@ -82,6 +84,7 @@ try-runtime = [ "pezpallet-balances?/try-runtime", "pezpallet-collective?/try-runtime", "pezsp-runtime/try-runtime", + "pezpallet-sudo/try-runtime" ] serde = [ "codec/serde", diff --git a/pezkuwi/node/collation-generation/Cargo.toml b/pezkuwi/node/collation-generation/Cargo.toml index b86affa3..38d3b8f0 100644 --- a/pezkuwi/node/collation-generation/Cargo.toml +++ b/pezkuwi/node/collation-generation/Cargo.toml @@ -52,5 +52,7 @@ std = [ "pezkuwi-node-subsystem-util/std", "pezkuwi-node-subsystem/std", "pezkuwi-pez-node-primitives/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/core/approval-voting-parallel/Cargo.toml b/pezkuwi/node/core/approval-voting-parallel/Cargo.toml index 10d37de3..e4dd5f37 100644 --- a/pezkuwi/node/core/approval-voting-parallel/Cargo.toml +++ b/pezkuwi/node/core/approval-voting-parallel/Cargo.toml @@ -77,6 +77,7 @@ std = [ "pezsp-tracing/std", "rand/std", "rand_core/std", + "pezkuwi-node-subsystem-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/core/approval-voting/Cargo.toml b/pezkuwi/node/core/approval-voting/Cargo.toml index 36e8b040..3ab808cf 100644 --- a/pezkuwi/node/core/approval-voting/Cargo.toml +++ b/pezkuwi/node/core/approval-voting/Cargo.toml @@ -98,6 +98,9 @@ std = [ "pezsp-runtime/std", "pezsp-tracing/std", "rand_core/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-subsystem-bench/std" ] try-runtime = [ "pezkuwi-primitives/try-runtime", @@ -105,6 +108,8 @@ try-runtime = [ "pezsp-consensus/try-runtime", "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime", + "pezkuwi-subsystem-bench/try-runtime" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/core/av-store/Cargo.toml b/pezkuwi/node/core/av-store/Cargo.toml index 0a219e56..6dc933dd 100644 --- a/pezkuwi/node/core/av-store/Cargo.toml +++ b/pezkuwi/node/core/av-store/Cargo.toml @@ -59,6 +59,8 @@ std = [ "pezkuwi-pez-node-primitives/std", "pezsp-consensus/std", "pezsp-tracing/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/core/backing/Cargo.toml b/pezkuwi/node/core/backing/Cargo.toml index cf9b617e..deb686a7 100644 --- a/pezkuwi/node/core/backing/Cargo.toml +++ b/pezkuwi/node/core/backing/Cargo.toml @@ -65,6 +65,8 @@ std = [ "pezkuwi-pez-node-primitives/std", "pezkuwi-statement-table/std", "pezsc-keystore/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/core/bitfield-signing/Cargo.toml b/pezkuwi/node/core/bitfield-signing/Cargo.toml index 468a2e01..46ae739b 100644 --- a/pezkuwi/node/core/bitfield-signing/Cargo.toml +++ b/pezkuwi/node/core/bitfield-signing/Cargo.toml @@ -39,4 +39,6 @@ std = [ "gum/std", "pezkuwi-node-subsystem-util/std", "pezkuwi-node-subsystem/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] diff --git a/pezkuwi/node/core/candidate-validation/Cargo.toml b/pezkuwi/node/core/candidate-validation/Cargo.toml index c5b5084c..75999268 100644 --- a/pezkuwi/node/core/candidate-validation/Cargo.toml +++ b/pezkuwi/node/core/candidate-validation/Cargo.toml @@ -71,5 +71,7 @@ std = [ "pezkuwi-pez-node-primitives/std", "pezsp-application-crypto/std", "pezsp-keystore/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/core/chain-api/Cargo.toml b/pezkuwi/node/core/chain-api/Cargo.toml index cee24eb2..2962ba5e 100644 --- a/pezkuwi/node/core/chain-api/Cargo.toml +++ b/pezkuwi/node/core/chain-api/Cargo.toml @@ -53,5 +53,6 @@ std = [ "pezsc-client-api/std", "pezsc-consensus-babe/std", "pezsp-blockchain/std", + "pezkuwi-node-subsystem-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/core/chain-selection/Cargo.toml b/pezkuwi/node/core/chain-selection/Cargo.toml index 18c7b567..b10fbcb2 100644 --- a/pezkuwi/node/core/chain-selection/Cargo.toml +++ b/pezkuwi/node/core/chain-selection/Cargo.toml @@ -44,5 +44,6 @@ std = [ "pezkuwi-node-subsystem-util/std", "pezkuwi-node-subsystem/std", "pezkuwi-pez-node-primitives/std", + "pezkuwi-node-subsystem-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/core/dispute-coordinator/Cargo.toml b/pezkuwi/node/core/dispute-coordinator/Cargo.toml index be2aecb3..70a05e4f 100644 --- a/pezkuwi/node/core/dispute-coordinator/Cargo.toml +++ b/pezkuwi/node/core/dispute-coordinator/Cargo.toml @@ -71,6 +71,9 @@ std = [ "pezkuwi-node-subsystem/std", "pezkuwi-pez-node-primitives/std", "pezsc-keystore/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-subsystem-bench/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/core/prospective-teyrchains/Cargo.toml b/pezkuwi/node/core/prospective-teyrchains/Cargo.toml index dbddb30f..ac0aec81 100644 --- a/pezkuwi/node/core/prospective-teyrchains/Cargo.toml +++ b/pezkuwi/node/core/prospective-teyrchains/Cargo.toml @@ -47,6 +47,8 @@ std = [ "pezkuwi-node-subsystem/std", "pezsp-tracing/std", "rand/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/core/provisioner/Cargo.toml b/pezkuwi/node/core/provisioner/Cargo.toml index e5f8fca1..0f8202bf 100644 --- a/pezkuwi/node/core/provisioner/Cargo.toml +++ b/pezkuwi/node/core/provisioner/Cargo.toml @@ -52,5 +52,7 @@ std = [ "pezkuwi-node-subsystem/std", "pezkuwi-pez-node-primitives/std", "pezsc-consensus-slots/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/core/pvf-checker/Cargo.toml b/pezkuwi/node/core/pvf-checker/Cargo.toml index 3d038ca0..76cba185 100644 --- a/pezkuwi/node/core/pvf-checker/Cargo.toml +++ b/pezkuwi/node/core/pvf-checker/Cargo.toml @@ -50,10 +50,13 @@ std = [ "pezkuwi-node-subsystem-util/std", "pezkuwi-node-subsystem/std", "pezsc-keystore/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] try-runtime = [ "pezkuwi-primitives/try-runtime", "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime" ] serde = [] diff --git a/pezkuwi/node/core/pvf/Cargo.toml b/pezkuwi/node/core/pvf/Cargo.toml index a2ad23da..ec869fc4 100644 --- a/pezkuwi/node/core/pvf/Cargo.toml +++ b/pezkuwi/node/core/pvf/Cargo.toml @@ -101,6 +101,7 @@ runtime-benchmarks = [ "pezsc-sysinfo/runtime-benchmarks", "pezsc-tracing/runtime-benchmarks", "test-teyrchain-adder/runtime-benchmarks", + "test-teyrchain-halt/runtime-benchmarks" ] std = [ "codec/std", @@ -113,5 +114,7 @@ std = [ "pezkuwi-pez-node-primitives/std", "pezsc-sysinfo/std", "pezsc-tracing/std", + "pezkuwi-node-core-pvf/std", + "pezkuwi-node-subsystem-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/core/runtime-api/Cargo.toml b/pezkuwi/node/core/runtime-api/Cargo.toml index f9111e88..41f678d3 100644 --- a/pezkuwi/node/core/runtime-api/Cargo.toml +++ b/pezkuwi/node/core/runtime-api/Cargo.toml @@ -54,5 +54,7 @@ std = [ "pezkuwi-node-subsystem-types/std", "pezkuwi-node-subsystem/std", "pezkuwi-pez-node-primitives/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/network/approval-distribution/Cargo.toml b/pezkuwi/node/network/approval-distribution/Cargo.toml index 4f7a26c0..09ec1f55 100644 --- a/pezkuwi/node/network/approval-distribution/Cargo.toml +++ b/pezkuwi/node/network/approval-distribution/Cargo.toml @@ -68,6 +68,8 @@ std = [ "pezsp-tracing/std", "rand_core/std", "schnorrkel/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/network/availability-distribution/Cargo.toml b/pezkuwi/node/network/availability-distribution/Cargo.toml index 06d7a824..997c7d44 100644 --- a/pezkuwi/node/network/availability-distribution/Cargo.toml +++ b/pezkuwi/node/network/availability-distribution/Cargo.toml @@ -70,6 +70,9 @@ std = [ "pezkuwi-node-subsystem/std", "pezkuwi-pez-node-primitives/std", "pezsc-network/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-subsystem-bench/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/network/availability-recovery/Cargo.toml b/pezkuwi/node/network/availability-recovery/Cargo.toml index 02633324..4f327cc8 100644 --- a/pezkuwi/node/network/availability-recovery/Cargo.toml +++ b/pezkuwi/node/network/availability-recovery/Cargo.toml @@ -75,6 +75,9 @@ std = [ "pezkuwi-node-subsystem/std", "pezkuwi-pez-node-primitives/std", "pezsc-network/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-subsystem-bench/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/network/bitfield-distribution/Cargo.toml b/pezkuwi/node/network/bitfield-distribution/Cargo.toml index 380b0c0b..b71457f6 100644 --- a/pezkuwi/node/network/bitfield-distribution/Cargo.toml +++ b/pezkuwi/node/network/bitfield-distribution/Cargo.toml @@ -54,6 +54,7 @@ std = [ "pezkuwi-node-subsystem-util/std", "pezkuwi-node-subsystem/std", "pezsp-tracing/std", + "pezkuwi-node-subsystem-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/network/bridge/Cargo.toml b/pezkuwi/node/network/bridge/Cargo.toml index 0e5ec1e5..1c6669b1 100644 --- a/pezkuwi/node/network/bridge/Cargo.toml +++ b/pezkuwi/node/network/bridge/Cargo.toml @@ -64,5 +64,7 @@ std = [ "pezkuwi-overseer/std", "pezsc-network/std", "pezsp-consensus/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] diff --git a/pezkuwi/node/network/collator-protocol/Cargo.toml b/pezkuwi/node/network/collator-protocol/Cargo.toml index 9ff3c33e..cc6c82e2 100644 --- a/pezkuwi/node/network/collator-protocol/Cargo.toml +++ b/pezkuwi/node/network/collator-protocol/Cargo.toml @@ -81,6 +81,8 @@ std = [ "pezsc-keystore/std", "pezsc-network/std", "pezsp-tracing/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] try-runtime = [ "pezkuwi-node-network-protocol/try-runtime", @@ -88,6 +90,7 @@ try-runtime = [ "pezsc-network/try-runtime", "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/network/dispute-distribution/Cargo.toml b/pezkuwi/node/network/dispute-distribution/Cargo.toml index 88ddb5c8..544ad10d 100644 --- a/pezkuwi/node/network/dispute-distribution/Cargo.toml +++ b/pezkuwi/node/network/dispute-distribution/Cargo.toml @@ -62,6 +62,8 @@ std = [ "pezkuwi-pez-node-primitives/std", "pezsc-keystore/std", "pezsc-network/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/network/gossip-support/Cargo.toml b/pezkuwi/node/network/gossip-support/Cargo.toml index 9c4fb671..60e97e19 100644 --- a/pezkuwi/node/network/gossip-support/Cargo.toml +++ b/pezkuwi/node/network/gossip-support/Cargo.toml @@ -65,6 +65,7 @@ std = [ "pezsc-network/std", "rand/std", "rand_chacha/std", + "pezkuwi-node-subsystem-test-helpers/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/network/statement-distribution/Cargo.toml b/pezkuwi/node/network/statement-distribution/Cargo.toml index 3bfc3e0c..b0ee3674 100644 --- a/pezkuwi/node/network/statement-distribution/Cargo.toml +++ b/pezkuwi/node/network/statement-distribution/Cargo.toml @@ -77,6 +77,9 @@ std = [ "pezkuwi-pez-node-primitives/std", "pezsc-keystore/std", "pezsc-network/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-subsystem-bench/std" ] serde = [] with-tracing = [] diff --git a/pezkuwi/node/service/Cargo.toml b/pezkuwi/node/service/Cargo.toml index 90a92340..e0cbc825 100644 --- a/pezkuwi/node/service/Cargo.toml +++ b/pezkuwi/node/service/Cargo.toml @@ -348,6 +348,8 @@ try-runtime = [ "xcm/try-runtime", "zagros-runtime-constants?/try-runtime", "zagros-runtime?/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime", + "pezkuwi-test-client/try-runtime" ] fast-runtime = [ "pezkuwichain-runtime?/fast-runtime", @@ -420,6 +422,9 @@ std = [ "pezsp-consensus/std", "pezsp-tracing/std", "prometheus-endpoint/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-test-client/std" ] serde = [] experimental = [] diff --git a/pezkuwi/node/subsystem-util/Cargo.toml b/pezkuwi/node/subsystem-util/Cargo.toml index 249f7bd6..30eb7998 100644 --- a/pezkuwi/node/subsystem-util/Cargo.toml +++ b/pezkuwi/node/subsystem-util/Cargo.toml @@ -73,5 +73,7 @@ std = [ "pezkuwi-node-subsystem/std", "pezkuwi-overseer/std", "pezkuwi-pez-node-primitives/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-primitives-test-helpers/std" ] serde = [] diff --git a/pezkuwi/xcm/pezpallet-xcm/Cargo.toml b/pezkuwi/xcm/pezpallet-xcm/Cargo.toml index 5e7ffa2f..7d25a23c 100644 --- a/pezkuwi/xcm/pezpallet-xcm/Cargo.toml +++ b/pezkuwi/xcm/pezpallet-xcm/Cargo.toml @@ -63,6 +63,7 @@ std = [ "xcm-executor/std", "xcm-runtime-pezapis/std", "xcm/std", + "xcm-pez-simulator/std" ] runtime-benchmarks = [ "pezframe-benchmarking/runtime-benchmarks", @@ -94,6 +95,7 @@ try-runtime = [ "xcm-executor/try-runtime", "xcm-runtime-pezapis/try-runtime", "xcm/try-runtime", + "xcm-pez-simulator/try-runtime" ] serde = [ "bounded-collections/serde", diff --git a/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml b/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml index 2019fdd3..f3eec39a 100644 --- a/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml +++ b/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml @@ -75,6 +75,8 @@ try-runtime = [ "xcm-builder/try-runtime", "xcm-executor/try-runtime", "xcm/try-runtime", + "pezpallet-xcm/try-runtime", + "xcm-pez-simulator/try-runtime" ] serde = [] experimental = [] diff --git a/umbrella/Cargo.toml b/umbrella/Cargo.toml index e45d2a45..c889d295 100644 --- a/umbrella/Cargo.toml +++ b/umbrella/Cargo.toml @@ -6,12 +6,1728 @@ license = "Apache-2.0" [features] default = ["std"] -std = [] -runtime-benchmarks = [] -try-runtime = [] -serde = [] -experimental = [] -with-tracing = [] +std = [ + "asset-test-pezutils?/std", + "bizinikiwi-bip39?/std", + "bizinikiwi-frame-rpc-support?/std", + "bizinikiwi-frame-rpc-system?/std", + "bizinikiwi-prometheus-endpoint?/std", + "bizinikiwi-rpc-client?/std", + "bizinikiwi-state-trie-migration-rpc?/std", + "bizinikiwi-txtesttool?/std", + "bizinikiwi-wasm-builder?/std", + "pez-assets-common?/std", + "pez-binary-merkle-tree?/std", + "pez-ethereum-standards?/std", + "pez-fork-tree?/std", + "pez-generate-bags?/std", + "pez-slot-range-helper?/std", + "pez-subkey?/std", + "pez-tracing-gum?/std", + "pezbp-header-pez-chain?/std", + "pezbp-messages?/std", + "pezbp-pezkuwi-core?/std", + "pezbp-relayers?/std", + "pezbp-runtime?/std", + "pezbp-test-utils?/std", + "pezbp-teyrchains?/std", + "pezbp-xcm-bridge-hub-router?/std", + "pezbp-xcm-bridge-hub?/std", + "pezbridge-hub-common?/std", + "pezbridge-hub-test-utils?/std", + "pezbridge-runtime-common?/std", + "pezcumulus-client-bootnodes?/std", + "pezcumulus-client-cli?/std", + "pezcumulus-client-collator?/std", + "pezcumulus-client-consensus-aura?/std", + "pezcumulus-client-consensus-common?/std", + "pezcumulus-client-consensus-proposer?/std", + "pezcumulus-client-consensus-relay-chain?/std", + "pezcumulus-client-network?/std", + "pezcumulus-client-pov-recovery?/std", + "pezcumulus-client-service?/std", + "pezcumulus-client-teyrchain-inherent?/std", + "pezcumulus-pezpallet-aura-ext?/std", + "pezcumulus-pezpallet-dmp-queue?/std", + "pezcumulus-pezpallet-session-benchmarking?/std", + "pezcumulus-pezpallet-solo-to-para?/std", + "pezcumulus-pezpallet-teyrchain-system-proc-macro?/std", + "pezcumulus-pezpallet-teyrchain-system?/std", + "pezcumulus-pezpallet-weight-reclaim?/std", + "pezcumulus-pezpallet-xcm?/std", + "pezcumulus-pezpallet-xcmp-queue?/std", + "pezcumulus-ping?/std", + "pezcumulus-primitives-aura?/std", + "pezcumulus-primitives-core?/std", + "pezcumulus-primitives-proof-size-hostfunction?/std", + "pezcumulus-primitives-storage-weight-reclaim?/std", + "pezcumulus-primitives-teyrchain-inherent?/std", + "pezcumulus-primitives-timestamp?/std", + "pezcumulus-primitives-utility?/std", + "pezcumulus-relay-chain-inprocess-interface?/std", + "pezcumulus-relay-chain-interface?/std", + "pezcumulus-relay-chain-minimal-node?/std", + "pezcumulus-relay-chain-rpc-interface?/std", + "pezcumulus-relay-chain-streams?/std", + "pezcumulus-test-relay-sproof-builder?/std", + "pezframe-benchmarking-cli?/std", + "pezframe-benchmarking-pezpallet-pov?/std", + "pezframe-benchmarking?/std", + "pezframe-election-provider-solution-type?/std", + "pezframe-election-provider-support?/std", + "pezframe-executive?/std", + "pezframe-metadata-hash-extension?/std", + "pezframe-metadata?/std", + "pezframe-remote-externalities?/std", + "pezframe-support-procedural?/std", + "pezframe-support?/std", + "pezframe-system-benchmarking?/std", + "pezframe-system-rpc-runtime-api?/std", + "pezframe-system?/std", + "pezframe?/std", + "pezkuwi-approval-distribution?/std", + "pezkuwi-availability-bitfield-distribution?/std", + "pezkuwi-availability-distribution?/std", + "pezkuwi-availability-recovery?/std", + "pezkuwi-cli?/std", + "pezkuwi-collator-protocol?/std", + "pezkuwi-core-primitives?/std", + "pezkuwi-dispute-distribution?/std", + "pezkuwi-erasure-coding?/std", + "pezkuwi-gossip-support?/std", + "pezkuwi-network-bridge?/std", + "pezkuwi-node-collation-generation?/std", + "pezkuwi-node-core-approval-voting-parallel?/std", + "pezkuwi-node-core-approval-voting?/std", + "pezkuwi-node-core-av-store?/std", + "pezkuwi-node-core-backing?/std", + "pezkuwi-node-core-bitfield-signing?/std", + "pezkuwi-node-core-candidate-validation?/std", + "pezkuwi-node-core-chain-api?/std", + "pezkuwi-node-core-chain-selection?/std", + "pezkuwi-node-core-dispute-coordinator?/std", + "pezkuwi-node-core-prospective-teyrchains?/std", + "pezkuwi-node-core-provisioner?/std", + "pezkuwi-node-core-pvf-checker?/std", + "pezkuwi-node-core-pvf-common?/std", + "pezkuwi-node-core-pvf-execute-worker?/std", + "pezkuwi-node-core-pvf-prepare-worker?/std", + "pezkuwi-node-core-pvf?/std", + "pezkuwi-node-core-runtime-api?/std", + "pezkuwi-node-core-teyrchains-inherent?/std", + "pezkuwi-node-metrics?/std", + "pezkuwi-node-network-protocol?/std", + "pezkuwi-node-subsystem-types?/std", + "pezkuwi-node-subsystem-util?/std", + "pezkuwi-node-subsystem?/std", + "pezkuwi-omni-node-lib?/std", + "pezkuwi-overseer?/std", + "pezkuwi-pez-node-primitives?/std", + "pezkuwi-primitives-test-helpers?/std", + "pezkuwi-primitives?/std", + "pezkuwi-rpc?/std", + "pezkuwi-runtime-common?/std", + "pezkuwi-runtime-metrics?/std", + "pezkuwi-runtime-teyrchains?/std", + "pezkuwi-service?/std", + "pezkuwi-statement-distribution?/std", + "pezkuwi-statement-table?/std", + "pezkuwi-subxt-codegen?/std", + "pezkuwi-subxt-core?/std", + "pezkuwi-subxt-lightclient?/std", + "pezkuwi-subxt-macro?/std", + "pezkuwi-subxt-metadata?/std", + "pezkuwi-subxt-rpcs?/std", + "pezkuwi-subxt-signer?/std", + "pezkuwi-subxt-utils-fetchmetadata?/std", + "pezkuwi-subxt-utils-stripmetadata?/std", + "pezkuwi-subxt?/std", + "pezkuwi-teyrchain-primitives?/std", + "pezkuwi-zombienet-configuration?/std", + "pezkuwi-zombienet-orchestrator?/std", + "pezkuwi-zombienet-prom-metrics-parser?/std", + "pezkuwi-zombienet-provider?/std", + "pezkuwi-zombienet-sdk?/std", + "pezkuwi-zombienet-support?/std", + "pezmmr-gadget?/std", + "pezmmr-rpc?/std", + "pezpallet-alliance?/std", + "pezpallet-asset-conversion-ops?/std", + "pezpallet-asset-conversion-tx-payment?/std", + "pezpallet-asset-conversion?/std", + "pezpallet-asset-rate?/std", + "pezpallet-asset-rewards?/std", + "pezpallet-asset-tx-payment?/std", + "pezpallet-assets-freezer?/std", + "pezpallet-assets-holder?/std", + "pezpallet-assets-precompiles?/std", + "pezpallet-assets?/std", + "pezpallet-atomic-swap?/std", + "pezpallet-aura?/std", + "pezpallet-authority-discovery?/std", + "pezpallet-authorship?/std", + "pezpallet-babe?/std", + "pezpallet-bags-list?/std", + "pezpallet-balances?/std", + "pezpallet-beefy-mmr?/std", + "pezpallet-beefy?/std", + "pezpallet-bounties?/std", + "pezpallet-bridge-grandpa?/std", + "pezpallet-bridge-messages?/std", + "pezpallet-bridge-relayers?/std", + "pezpallet-bridge-teyrchains?/std", + "pezpallet-broker?/std", + "pezpallet-child-bounties?/std", + "pezpallet-collator-selection?/std", + "pezpallet-collective-content?/std", + "pezpallet-collective?/std", + "pezpallet-contracts-fixtures?/std", + "pezpallet-contracts-mock-network?/std", + "pezpallet-contracts-uapi?/std", + "pezpallet-contracts?/std", + "pezpallet-conviction-voting?/std", + "pezpallet-core-fellowship?/std", + "pezpallet-delegated-staking?/std", + "pezpallet-democracy?/std", + "pezpallet-derivatives?/std", + "pezpallet-dummy-dim?/std", + "pezpallet-election-provider-multi-block?/std", + "pezpallet-election-provider-multi-phase?/std", + "pezpallet-election-provider-support-benchmarking?/std", + "pezpallet-elections-phragmen?/std", + "pezpallet-fast-unstake?/std", + "pezpallet-glutton?/std", + "pezpallet-grandpa?/std", + "pezpallet-identity?/std", + "pezpallet-im-online?/std", + "pezpallet-indices?/std", + "pezpallet-insecure-randomness-collective-flip?/std", + "pezpallet-lottery?/std", + "pezpallet-membership?/std", + "pezpallet-message-queue?/std", + "pezpallet-meta-tx?/std", + "pezpallet-migrations?/std", + "pezpallet-minimal-template?/std", + "pezpallet-mixnet?/std", + "pezpallet-mmr?/std", + "pezpallet-multi-asset-bounties?/std", + "pezpallet-multisig?/std", + "pezpallet-nft-fractionalization?/std", + "pezpallet-nfts-runtime-api?/std", + "pezpallet-nfts?/std", + "pezpallet-nis?/std", + "pezpallet-node-authorization?/std", + "pezpallet-nomination-pools-benchmarking?/std", + "pezpallet-nomination-pools-runtime-api?/std", + "pezpallet-nomination-pools?/std", + "pezpallet-offences-benchmarking?/std", + "pezpallet-offences?/std", + "pezpallet-oracle-runtime-api?/std", + "pezpallet-oracle?/std", + "pezpallet-origin-restriction?/std", + "pezpallet-paged-list?/std", + "pezpallet-parameters?/std", + "pezpallet-people?/std", + "pezpallet-preimage?/std", + "pezpallet-proxy?/std", + "pezpallet-ranked-collective?/std", + "pezpallet-recovery?/std", + "pezpallet-referenda?/std", + "pezpallet-remark?/std", + "pezpallet-revive-uapi?/std", + "pezpallet-revive?/std", + "pezpallet-root-offences?/std", + "pezpallet-root-testing?/std", + "pezpallet-safe-mode?/std", + "pezpallet-salary?/std", + "pezpallet-scheduler?/std", + "pezpallet-scored-pool?/std", + "pezpallet-session-benchmarking?/std", + "pezpallet-session?/std", + "pezpallet-skip-feeless-payment?/std", + "pezpallet-society?/std", + "pezpallet-staking-async-ah-client?/std", + "pezpallet-staking-async-rc-client?/std", + "pezpallet-staking-async-reward-fn?/std", + "pezpallet-staking-async-runtime-api?/std", + "pezpallet-staking-async?/std", + "pezpallet-staking-reward-curve?/std", + "pezpallet-staking-reward-fn?/std", + "pezpallet-staking-runtime-api?/std", + "pezpallet-staking?/std", + "pezpallet-state-trie-migration?/std", + "pezpallet-statement?/std", + "pezpallet-sudo?/std", + "pezpallet-timestamp?/std", + "pezpallet-tips?/std", + "pezpallet-transaction-payment-rpc-runtime-api?/std", + "pezpallet-transaction-payment-rpc?/std", + "pezpallet-transaction-payment?/std", + "pezpallet-transaction-storage?/std", + "pezpallet-treasury?/std", + "pezpallet-tx-pause?/std", + "pezpallet-uniques?/std", + "pezpallet-utility?/std", + "pezpallet-verify-signature?/std", + "pezpallet-vesting?/std", + "pezpallet-whitelist?/std", + "pezpallet-xcm-benchmarks?/std", + "pezpallet-xcm-bridge-hub-router?/std", + "pezpallet-xcm-bridge-hub?/std", + "pezpallet-xcm-precompiles?/std", + "pezpallet-xcm?/std", + "pezsc-allocator?/std", + "pezsc-authority-discovery?/std", + "pezsc-basic-authorship?/std", + "pezsc-block-builder?/std", + "pezsc-chain-spec?/std", + "pezsc-cli?/std", + "pezsc-client-api?/std", + "pezsc-client-db?/std", + "pezsc-consensus-aura?/std", + "pezsc-consensus-babe-rpc?/std", + "pezsc-consensus-babe?/std", + "pezsc-consensus-beefy-rpc?/std", + "pezsc-consensus-beefy?/std", + "pezsc-consensus-epochs?/std", + "pezsc-consensus-grandpa-rpc?/std", + "pezsc-consensus-grandpa?/std", + "pezsc-consensus-manual-seal?/std", + "pezsc-consensus-pow?/std", + "pezsc-consensus-slots?/std", + "pezsc-consensus?/std", + "pezsc-executor-common?/std", + "pezsc-executor-polkavm?/std", + "pezsc-executor-wasmtime?/std", + "pezsc-executor?/std", + "pezsc-informant?/std", + "pezsc-keystore?/std", + "pezsc-mixnet?/std", + "pezsc-network-common?/std", + "pezsc-network-gossip?/std", + "pezsc-network-light?/std", + "pezsc-network-statement?/std", + "pezsc-network-sync?/std", + "pezsc-network-transactions?/std", + "pezsc-network-types?/std", + "pezsc-network?/std", + "pezsc-offchain?/std", + "pezsc-proposer-metrics?/std", + "pezsc-rpc-api?/std", + "pezsc-rpc-server?/std", + "pezsc-rpc-spec-v2?/std", + "pezsc-rpc?/std", + "pezsc-runtime-utilities?/std", + "pezsc-service?/std", + "pezsc-state-db?/std", + "pezsc-statement-store?/std", + "pezsc-storage-monitor?/std", + "pezsc-sync-state-rpc?/std", + "pezsc-sysinfo?/std", + "pezsc-telemetry?/std", + "pezsc-tracing?/std", + "pezsc-transaction-pool-api?/std", + "pezsc-transaction-pool?/std", + "pezsc-utils?/std", + "pezsp-api-proc-macro?/std", + "pezsp-api?/std", + "pezsp-application-crypto?/std", + "pezsp-arithmetic?/std", + "pezsp-authority-discovery?/std", + "pezsp-block-builder?/std", + "pezsp-blockchain?/std", + "pezsp-consensus-aura?/std", + "pezsp-consensus-babe?/std", + "pezsp-consensus-beefy?/std", + "pezsp-consensus-grandpa?/std", + "pezsp-consensus-pow?/std", + "pezsp-consensus-slots?/std", + "pezsp-consensus?/std", + "pezsp-core-hashing-proc-macro?/std", + "pezsp-core-hashing?/std", + "pezsp-core?/std", + "pezsp-crypto-ec-utils?/std", + "pezsp-crypto-hashing-proc-macro?/std", + "pezsp-crypto-hashing?/std", + "pezsp-debug-derive?/std", + "pezsp-externalities?/std", + "pezsp-genesis-builder?/std", + "pezsp-inherents?/std", + "pezsp-io?/std", + "pezsp-keyring?/std", + "pezsp-keystore?/std", + "pezsp-metadata-ir?/std", + "pezsp-mixnet?/std", + "pezsp-mmr-primitives?/std", + "pezsp-npos-elections?/std", + "pezsp-offchain?/std", + "pezsp-panic-handler?/std", + "pezsp-rpc?/std", + "pezsp-runtime-interface?/std", + "pezsp-session?/std", + "pezsp-ss58-registry?/std", + "pezsp-staking?/std", + "pezsp-state-machine?/std", + "pezsp-statement-store?/std", + "pezsp-std?/std", + "pezsp-storage?/std", + "pezsp-timestamp?/std", + "pezsp-tracing?/std", + "pezsp-transaction-pool?/std", + "pezsp-transaction-storage-proof?/std", + "pezsp-trie?/std", + "pezsp-version-proc-macro?/std", + "pezsp-version?/std", + "pezsp-wasm-interface?/std", + "pezsp-weights?/std", + "pezstaging-chain-spec-builder?/std", + "pezstaging-node-inspect?/std", + "pezstaging-teyrchain-info?/std", + "pezstaging-xcm-builder?/std", + "pezstaging-xcm-executor?/std", + "pezstaging-xcm?/std", + "testnet-teyrchains-constants?/std", + "teyrchains-common?/std", + "teyrchains-runtimes-test-utils?/std", + "xcm-pez-emulator?/std", + "xcm-pez-procedural?/std", + "xcm-pez-simulator?/std", + "xcm-runtime-pezapis?/std", +] +runtime-benchmarks = [ + "asset-test-pezutils?/runtime-benchmarks", + "bizinikiwi-frame-rpc-support?/runtime-benchmarks", + "bizinikiwi-frame-rpc-system?/runtime-benchmarks", + "bizinikiwi-rpc-client?/runtime-benchmarks", + "bizinikiwi-state-trie-migration-rpc?/runtime-benchmarks", + "bizinikiwi-txtesttool?/runtime-benchmarks", + "bizinikiwi-wasm-builder?/runtime-benchmarks", + "pez-assets-common?/runtime-benchmarks", + "pez-binary-merkle-tree?/runtime-benchmarks", + "pez-generate-bags?/runtime-benchmarks", + "pez-slot-range-helper?/runtime-benchmarks", + "pez-subkey?/runtime-benchmarks", + "pez-tracing-gum?/runtime-benchmarks", + "pezbp-header-pez-chain?/runtime-benchmarks", + "pezbp-messages?/runtime-benchmarks", + "pezbp-pezkuwi-core?/runtime-benchmarks", + "pezbp-relayers?/runtime-benchmarks", + "pezbp-runtime?/runtime-benchmarks", + "pezbp-test-utils?/runtime-benchmarks", + "pezbp-teyrchains?/runtime-benchmarks", + "pezbp-xcm-bridge-hub-router?/runtime-benchmarks", + "pezbp-xcm-bridge-hub?/runtime-benchmarks", + "pezbridge-hub-common?/runtime-benchmarks", + "pezbridge-hub-test-utils?/runtime-benchmarks", + "pezbridge-runtime-common?/runtime-benchmarks", + "pezcumulus-client-bootnodes?/runtime-benchmarks", + "pezcumulus-client-cli?/runtime-benchmarks", + "pezcumulus-client-collator?/runtime-benchmarks", + "pezcumulus-client-consensus-aura?/runtime-benchmarks", + "pezcumulus-client-consensus-common?/runtime-benchmarks", + "pezcumulus-client-consensus-proposer?/runtime-benchmarks", + "pezcumulus-client-consensus-relay-chain?/runtime-benchmarks", + "pezcumulus-client-network?/runtime-benchmarks", + "pezcumulus-client-pov-recovery?/runtime-benchmarks", + "pezcumulus-client-service?/runtime-benchmarks", + "pezcumulus-client-teyrchain-inherent?/runtime-benchmarks", + "pezcumulus-pezpallet-aura-ext?/runtime-benchmarks", + "pezcumulus-pezpallet-dmp-queue?/runtime-benchmarks", + "pezcumulus-pezpallet-session-benchmarking?/runtime-benchmarks", + "pezcumulus-pezpallet-solo-to-para?/runtime-benchmarks", + "pezcumulus-pezpallet-teyrchain-system?/runtime-benchmarks", + "pezcumulus-pezpallet-weight-reclaim?/runtime-benchmarks", + "pezcumulus-pezpallet-xcm?/runtime-benchmarks", + "pezcumulus-pezpallet-xcmp-queue?/runtime-benchmarks", + "pezcumulus-ping?/runtime-benchmarks", + "pezcumulus-primitives-aura?/runtime-benchmarks", + "pezcumulus-primitives-core?/runtime-benchmarks", + "pezcumulus-primitives-proof-size-hostfunction?/runtime-benchmarks", + "pezcumulus-primitives-storage-weight-reclaim?/runtime-benchmarks", + "pezcumulus-primitives-teyrchain-inherent?/runtime-benchmarks", + "pezcumulus-primitives-timestamp?/runtime-benchmarks", + "pezcumulus-primitives-utility?/runtime-benchmarks", + "pezcumulus-relay-chain-inprocess-interface?/runtime-benchmarks", + "pezcumulus-relay-chain-interface?/runtime-benchmarks", + "pezcumulus-relay-chain-minimal-node?/runtime-benchmarks", + "pezcumulus-relay-chain-rpc-interface?/runtime-benchmarks", + "pezcumulus-relay-chain-streams?/runtime-benchmarks", + "pezcumulus-test-relay-sproof-builder?/runtime-benchmarks", + "pezframe-benchmarking-cli?/runtime-benchmarks", + "pezframe-benchmarking-pezpallet-pov?/runtime-benchmarks", + "pezframe-benchmarking?/runtime-benchmarks", + "pezframe-election-provider-solution-type?/runtime-benchmarks", + "pezframe-election-provider-support?/runtime-benchmarks", + "pezframe-executive?/runtime-benchmarks", + "pezframe-metadata-hash-extension?/runtime-benchmarks", + "pezframe-remote-externalities?/runtime-benchmarks", + "pezframe-support-procedural?/runtime-benchmarks", + "pezframe-support?/runtime-benchmarks", + "pezframe-system-benchmarking?/runtime-benchmarks", + "pezframe-system-rpc-runtime-api?/runtime-benchmarks", + "pezframe-system?/runtime-benchmarks", + "pezframe?/runtime-benchmarks", + "pezkuwi-approval-distribution?/runtime-benchmarks", + "pezkuwi-availability-bitfield-distribution?/runtime-benchmarks", + "pezkuwi-availability-distribution?/runtime-benchmarks", + "pezkuwi-availability-recovery?/runtime-benchmarks", + "pezkuwi-cli?/runtime-benchmarks", + "pezkuwi-collator-protocol?/runtime-benchmarks", + "pezkuwi-core-primitives?/runtime-benchmarks", + "pezkuwi-dispute-distribution?/runtime-benchmarks", + "pezkuwi-erasure-coding?/runtime-benchmarks", + "pezkuwi-gossip-support?/runtime-benchmarks", + "pezkuwi-network-bridge?/runtime-benchmarks", + "pezkuwi-node-collation-generation?/runtime-benchmarks", + "pezkuwi-node-core-approval-voting-parallel?/runtime-benchmarks", + "pezkuwi-node-core-approval-voting?/runtime-benchmarks", + "pezkuwi-node-core-av-store?/runtime-benchmarks", + "pezkuwi-node-core-backing?/runtime-benchmarks", + "pezkuwi-node-core-bitfield-signing?/runtime-benchmarks", + "pezkuwi-node-core-candidate-validation?/runtime-benchmarks", + "pezkuwi-node-core-chain-api?/runtime-benchmarks", + "pezkuwi-node-core-chain-selection?/runtime-benchmarks", + "pezkuwi-node-core-dispute-coordinator?/runtime-benchmarks", + "pezkuwi-node-core-prospective-teyrchains?/runtime-benchmarks", + "pezkuwi-node-core-provisioner?/runtime-benchmarks", + "pezkuwi-node-core-pvf-checker?/runtime-benchmarks", + "pezkuwi-node-core-pvf-common?/runtime-benchmarks", + "pezkuwi-node-core-pvf-execute-worker?/runtime-benchmarks", + "pezkuwi-node-core-pvf-prepare-worker?/runtime-benchmarks", + "pezkuwi-node-core-pvf?/runtime-benchmarks", + "pezkuwi-node-core-runtime-api?/runtime-benchmarks", + "pezkuwi-node-core-teyrchains-inherent?/runtime-benchmarks", + "pezkuwi-node-metrics?/runtime-benchmarks", + "pezkuwi-node-network-protocol?/runtime-benchmarks", + "pezkuwi-node-subsystem-types?/runtime-benchmarks", + "pezkuwi-node-subsystem-util?/runtime-benchmarks", + "pezkuwi-node-subsystem?/runtime-benchmarks", + "pezkuwi-omni-node-lib?/runtime-benchmarks", + "pezkuwi-overseer?/runtime-benchmarks", + "pezkuwi-pez-node-primitives?/runtime-benchmarks", + "pezkuwi-primitives-test-helpers?/runtime-benchmarks", + "pezkuwi-primitives?/runtime-benchmarks", + "pezkuwi-rpc?/runtime-benchmarks", + "pezkuwi-runtime-common?/runtime-benchmarks", + "pezkuwi-runtime-metrics?/runtime-benchmarks", + "pezkuwi-runtime-teyrchains?/runtime-benchmarks", + "pezkuwi-service?/runtime-benchmarks", + "pezkuwi-statement-distribution?/runtime-benchmarks", + "pezkuwi-statement-table?/runtime-benchmarks", + "pezkuwi-subxt-core?/runtime-benchmarks", + "pezkuwi-subxt-macro?/runtime-benchmarks", + "pezkuwi-subxt-rpcs?/runtime-benchmarks", + "pezkuwi-subxt-signer?/runtime-benchmarks", + "pezkuwi-subxt?/runtime-benchmarks", + "pezkuwi-teyrchain-primitives?/runtime-benchmarks", + "pezkuwi-zombienet-orchestrator?/runtime-benchmarks", + "pezkuwi-zombienet-sdk?/runtime-benchmarks", + "pezmmr-gadget?/runtime-benchmarks", + "pezmmr-rpc?/runtime-benchmarks", + "pezpallet-alliance?/runtime-benchmarks", + "pezpallet-asset-conversion-ops?/runtime-benchmarks", + "pezpallet-asset-conversion-tx-payment?/runtime-benchmarks", + "pezpallet-asset-conversion?/runtime-benchmarks", + "pezpallet-asset-rate?/runtime-benchmarks", + "pezpallet-asset-rewards?/runtime-benchmarks", + "pezpallet-asset-tx-payment?/runtime-benchmarks", + "pezpallet-assets-freezer?/runtime-benchmarks", + "pezpallet-assets-holder?/runtime-benchmarks", + "pezpallet-assets-precompiles?/runtime-benchmarks", + "pezpallet-assets?/runtime-benchmarks", + "pezpallet-atomic-swap?/runtime-benchmarks", + "pezpallet-aura?/runtime-benchmarks", + "pezpallet-authority-discovery?/runtime-benchmarks", + "pezpallet-authorship?/runtime-benchmarks", + "pezpallet-babe?/runtime-benchmarks", + "pezpallet-bags-list?/runtime-benchmarks", + "pezpallet-balances?/runtime-benchmarks", + "pezpallet-beefy-mmr?/runtime-benchmarks", + "pezpallet-beefy?/runtime-benchmarks", + "pezpallet-bounties?/runtime-benchmarks", + "pezpallet-bridge-grandpa?/runtime-benchmarks", + "pezpallet-bridge-messages?/runtime-benchmarks", + "pezpallet-bridge-relayers?/runtime-benchmarks", + "pezpallet-bridge-teyrchains?/runtime-benchmarks", + "pezpallet-broker?/runtime-benchmarks", + "pezpallet-child-bounties?/runtime-benchmarks", + "pezpallet-collator-selection?/runtime-benchmarks", + "pezpallet-collective-content?/runtime-benchmarks", + "pezpallet-collective?/runtime-benchmarks", + "pezpallet-contracts-fixtures?/runtime-benchmarks", + "pezpallet-contracts-mock-network?/runtime-benchmarks", + "pezpallet-contracts?/runtime-benchmarks", + "pezpallet-conviction-voting?/runtime-benchmarks", + "pezpallet-core-fellowship?/runtime-benchmarks", + "pezpallet-delegated-staking?/runtime-benchmarks", + "pezpallet-democracy?/runtime-benchmarks", + "pezpallet-derivatives?/runtime-benchmarks", + "pezpallet-dummy-dim?/runtime-benchmarks", + "pezpallet-election-provider-multi-block?/runtime-benchmarks", + "pezpallet-election-provider-multi-phase?/runtime-benchmarks", + "pezpallet-election-provider-support-benchmarking?/runtime-benchmarks", + "pezpallet-elections-phragmen?/runtime-benchmarks", + "pezpallet-fast-unstake?/runtime-benchmarks", + "pezpallet-glutton?/runtime-benchmarks", + "pezpallet-grandpa?/runtime-benchmarks", + "pezpallet-identity?/runtime-benchmarks", + "pezpallet-im-online?/runtime-benchmarks", + "pezpallet-indices?/runtime-benchmarks", + "pezpallet-insecure-randomness-collective-flip?/runtime-benchmarks", + "pezpallet-lottery?/runtime-benchmarks", + "pezpallet-membership?/runtime-benchmarks", + "pezpallet-message-queue?/runtime-benchmarks", + "pezpallet-meta-tx?/runtime-benchmarks", + "pezpallet-migrations?/runtime-benchmarks", + "pezpallet-minimal-template?/runtime-benchmarks", + "pezpallet-mixnet?/runtime-benchmarks", + "pezpallet-mmr?/runtime-benchmarks", + "pezpallet-multi-asset-bounties?/runtime-benchmarks", + "pezpallet-multisig?/runtime-benchmarks", + "pezpallet-nft-fractionalization?/runtime-benchmarks", + "pezpallet-nfts-runtime-api?/runtime-benchmarks", + "pezpallet-nfts?/runtime-benchmarks", + "pezpallet-nis?/runtime-benchmarks", + "pezpallet-node-authorization?/runtime-benchmarks", + "pezpallet-nomination-pools-benchmarking?/runtime-benchmarks", + "pezpallet-nomination-pools-runtime-api?/runtime-benchmarks", + "pezpallet-nomination-pools?/runtime-benchmarks", + "pezpallet-offences-benchmarking?/runtime-benchmarks", + "pezpallet-offences?/runtime-benchmarks", + "pezpallet-oracle-runtime-api?/runtime-benchmarks", + "pezpallet-oracle?/runtime-benchmarks", + "pezpallet-origin-restriction?/runtime-benchmarks", + "pezpallet-paged-list?/runtime-benchmarks", + "pezpallet-parameters?/runtime-benchmarks", + "pezpallet-people?/runtime-benchmarks", + "pezpallet-preimage?/runtime-benchmarks", + "pezpallet-proxy?/runtime-benchmarks", + "pezpallet-ranked-collective?/runtime-benchmarks", + "pezpallet-recovery?/runtime-benchmarks", + "pezpallet-referenda?/runtime-benchmarks", + "pezpallet-remark?/runtime-benchmarks", + "pezpallet-revive?/runtime-benchmarks", + "pezpallet-root-offences?/runtime-benchmarks", + "pezpallet-root-testing?/runtime-benchmarks", + "pezpallet-safe-mode?/runtime-benchmarks", + "pezpallet-salary?/runtime-benchmarks", + "pezpallet-scheduler?/runtime-benchmarks", + "pezpallet-scored-pool?/runtime-benchmarks", + "pezpallet-session-benchmarking?/runtime-benchmarks", + "pezpallet-session?/runtime-benchmarks", + "pezpallet-skip-feeless-payment?/runtime-benchmarks", + "pezpallet-society?/runtime-benchmarks", + "pezpallet-staking-async-ah-client?/runtime-benchmarks", + "pezpallet-staking-async-rc-client?/runtime-benchmarks", + "pezpallet-staking-async-runtime-api?/runtime-benchmarks", + "pezpallet-staking-async?/runtime-benchmarks", + "pezpallet-staking-reward-curve?/runtime-benchmarks", + "pezpallet-staking-runtime-api?/runtime-benchmarks", + "pezpallet-staking?/runtime-benchmarks", + "pezpallet-state-trie-migration?/runtime-benchmarks", + "pezpallet-statement?/runtime-benchmarks", + "pezpallet-sudo?/runtime-benchmarks", + "pezpallet-timestamp?/runtime-benchmarks", + "pezpallet-tips?/runtime-benchmarks", + "pezpallet-transaction-payment-rpc-runtime-api?/runtime-benchmarks", + "pezpallet-transaction-payment-rpc?/runtime-benchmarks", + "pezpallet-transaction-payment?/runtime-benchmarks", + "pezpallet-transaction-storage?/runtime-benchmarks", + "pezpallet-treasury?/runtime-benchmarks", + "pezpallet-tx-pause?/runtime-benchmarks", + "pezpallet-uniques?/runtime-benchmarks", + "pezpallet-utility?/runtime-benchmarks", + "pezpallet-verify-signature?/runtime-benchmarks", + "pezpallet-vesting?/runtime-benchmarks", + "pezpallet-whitelist?/runtime-benchmarks", + "pezpallet-xcm-benchmarks?/runtime-benchmarks", + "pezpallet-xcm-bridge-hub-router?/runtime-benchmarks", + "pezpallet-xcm-bridge-hub?/runtime-benchmarks", + "pezpallet-xcm-precompiles?/runtime-benchmarks", + "pezpallet-xcm?/runtime-benchmarks", + "pezsc-authority-discovery?/runtime-benchmarks", + "pezsc-basic-authorship?/runtime-benchmarks", + "pezsc-block-builder?/runtime-benchmarks", + "pezsc-chain-spec?/runtime-benchmarks", + "pezsc-cli?/runtime-benchmarks", + "pezsc-client-api?/runtime-benchmarks", + "pezsc-client-db?/runtime-benchmarks", + "pezsc-consensus-aura?/runtime-benchmarks", + "pezsc-consensus-babe-rpc?/runtime-benchmarks", + "pezsc-consensus-babe?/runtime-benchmarks", + "pezsc-consensus-beefy-rpc?/runtime-benchmarks", + "pezsc-consensus-beefy?/runtime-benchmarks", + "pezsc-consensus-epochs?/runtime-benchmarks", + "pezsc-consensus-grandpa-rpc?/runtime-benchmarks", + "pezsc-consensus-grandpa?/runtime-benchmarks", + "pezsc-consensus-manual-seal?/runtime-benchmarks", + "pezsc-consensus-pow?/runtime-benchmarks", + "pezsc-consensus-slots?/runtime-benchmarks", + "pezsc-consensus?/runtime-benchmarks", + "pezsc-executor-wasmtime?/runtime-benchmarks", + "pezsc-executor?/runtime-benchmarks", + "pezsc-informant?/runtime-benchmarks", + "pezsc-keystore?/runtime-benchmarks", + "pezsc-mixnet?/runtime-benchmarks", + "pezsc-network-common?/runtime-benchmarks", + "pezsc-network-gossip?/runtime-benchmarks", + "pezsc-network-light?/runtime-benchmarks", + "pezsc-network-statement?/runtime-benchmarks", + "pezsc-network-sync?/runtime-benchmarks", + "pezsc-network-transactions?/runtime-benchmarks", + "pezsc-network?/runtime-benchmarks", + "pezsc-offchain?/runtime-benchmarks", + "pezsc-rpc-api?/runtime-benchmarks", + "pezsc-rpc-server?/runtime-benchmarks", + "pezsc-rpc-spec-v2?/runtime-benchmarks", + "pezsc-rpc?/runtime-benchmarks", + "pezsc-runtime-utilities?/runtime-benchmarks", + "pezsc-service?/runtime-benchmarks", + "pezsc-statement-store?/runtime-benchmarks", + "pezsc-sync-state-rpc?/runtime-benchmarks", + "pezsc-sysinfo?/runtime-benchmarks", + "pezsc-tracing?/runtime-benchmarks", + "pezsc-transaction-pool-api?/runtime-benchmarks", + "pezsc-transaction-pool?/runtime-benchmarks", + "pezsp-api?/runtime-benchmarks", + "pezsp-application-crypto?/runtime-benchmarks", + "pezsp-authority-discovery?/runtime-benchmarks", + "pezsp-block-builder?/runtime-benchmarks", + "pezsp-blockchain?/runtime-benchmarks", + "pezsp-consensus-aura?/runtime-benchmarks", + "pezsp-consensus-babe?/runtime-benchmarks", + "pezsp-consensus-beefy?/runtime-benchmarks", + "pezsp-consensus-grandpa?/runtime-benchmarks", + "pezsp-consensus-pow?/runtime-benchmarks", + "pezsp-consensus-slots?/runtime-benchmarks", + "pezsp-consensus?/runtime-benchmarks", + "pezsp-crypto-ec-utils?/runtime-benchmarks", + "pezsp-genesis-builder?/runtime-benchmarks", + "pezsp-inherents?/runtime-benchmarks", + "pezsp-io?/runtime-benchmarks", + "pezsp-keyring?/runtime-benchmarks", + "pezsp-mixnet?/runtime-benchmarks", + "pezsp-mmr-primitives?/runtime-benchmarks", + "pezsp-npos-elections?/runtime-benchmarks", + "pezsp-offchain?/runtime-benchmarks", + "pezsp-runtime-interface?/runtime-benchmarks", + "pezsp-session?/runtime-benchmarks", + "pezsp-staking?/runtime-benchmarks", + "pezsp-state-machine?/runtime-benchmarks", + "pezsp-statement-store?/runtime-benchmarks", + "pezsp-timestamp?/runtime-benchmarks", + "pezsp-transaction-pool?/runtime-benchmarks", + "pezsp-transaction-storage-proof?/runtime-benchmarks", + "pezsp-trie?/runtime-benchmarks", + "pezsp-version-proc-macro?/runtime-benchmarks", + "pezsp-version?/runtime-benchmarks", + "pezstaging-chain-spec-builder?/runtime-benchmarks", + "pezstaging-node-inspect?/runtime-benchmarks", + "pezstaging-teyrchain-info?/runtime-benchmarks", + "pezstaging-xcm-builder?/runtime-benchmarks", + "pezstaging-xcm-executor?/runtime-benchmarks", + "pezstaging-xcm?/runtime-benchmarks", + "testnet-teyrchains-constants?/runtime-benchmarks", + "teyrchains-common?/runtime-benchmarks", + "teyrchains-runtimes-test-utils?/runtime-benchmarks", + "xcm-pez-emulator?/runtime-benchmarks", + "xcm-pez-procedural?/runtime-benchmarks", + "xcm-pez-simulator?/runtime-benchmarks", + "xcm-runtime-pezapis?/runtime-benchmarks", +] +try-runtime = [ + "asset-test-pezutils?/try-runtime", + "bizinikiwi-frame-rpc-support?/try-runtime", + "bizinikiwi-frame-rpc-system?/try-runtime", + "bizinikiwi-rpc-client?/try-runtime", + "bizinikiwi-state-trie-migration-rpc?/try-runtime", + "pez-assets-common?/try-runtime", + "pez-generate-bags?/try-runtime", + "pez-slot-range-helper?/try-runtime", + "pezbp-header-pez-chain?/try-runtime", + "pezbp-messages?/try-runtime", + "pezbp-pezkuwi-core?/try-runtime", + "pezbp-relayers?/try-runtime", + "pezbp-runtime?/try-runtime", + "pezbp-test-utils?/try-runtime", + "pezbp-teyrchains?/try-runtime", + "pezbp-xcm-bridge-hub-router?/try-runtime", + "pezbp-xcm-bridge-hub?/try-runtime", + "pezbridge-hub-common?/try-runtime", + "pezbridge-hub-test-utils?/try-runtime", + "pezbridge-runtime-common?/try-runtime", + "pezcumulus-client-bootnodes?/try-runtime", + "pezcumulus-client-cli?/try-runtime", + "pezcumulus-client-collator?/try-runtime", + "pezcumulus-client-consensus-aura?/try-runtime", + "pezcumulus-client-consensus-common?/try-runtime", + "pezcumulus-client-consensus-proposer?/try-runtime", + "pezcumulus-client-consensus-relay-chain?/try-runtime", + "pezcumulus-client-network?/try-runtime", + "pezcumulus-client-pov-recovery?/try-runtime", + "pezcumulus-client-service?/try-runtime", + "pezcumulus-client-teyrchain-inherent?/try-runtime", + "pezcumulus-pezpallet-aura-ext?/try-runtime", + "pezcumulus-pezpallet-dmp-queue?/try-runtime", + "pezcumulus-pezpallet-session-benchmarking?/try-runtime", + "pezcumulus-pezpallet-solo-to-para?/try-runtime", + "pezcumulus-pezpallet-teyrchain-system?/try-runtime", + "pezcumulus-pezpallet-weight-reclaim?/try-runtime", + "pezcumulus-pezpallet-xcm?/try-runtime", + "pezcumulus-pezpallet-xcmp-queue?/try-runtime", + "pezcumulus-ping?/try-runtime", + "pezcumulus-primitives-core?/try-runtime", + "pezcumulus-primitives-storage-weight-reclaim?/try-runtime", + "pezcumulus-primitives-utility?/try-runtime", + "pezcumulus-relay-chain-inprocess-interface?/try-runtime", + "pezcumulus-relay-chain-minimal-node?/try-runtime", + "pezcumulus-relay-chain-rpc-interface?/try-runtime", + "pezcumulus-test-relay-sproof-builder?/try-runtime", + "pezframe-benchmarking-cli?/try-runtime", + "pezframe-benchmarking-pezpallet-pov?/try-runtime", + "pezframe-benchmarking?/try-runtime", + "pezframe-election-provider-support?/try-runtime", + "pezframe-executive?/try-runtime", + "pezframe-metadata-hash-extension?/try-runtime", + "pezframe-remote-externalities?/try-runtime", + "pezframe-support?/try-runtime", + "pezframe-system-benchmarking?/try-runtime", + "pezframe-system?/try-runtime", + "pezframe?/try-runtime", + "pezkuwi-cli?/try-runtime", + "pezkuwi-collator-protocol?/try-runtime", + "pezkuwi-core-primitives?/try-runtime", + "pezkuwi-node-core-approval-voting?/try-runtime", + "pezkuwi-node-core-pvf-checker?/try-runtime", + "pezkuwi-node-network-protocol?/try-runtime", + "pezkuwi-node-subsystem-types?/try-runtime", + "pezkuwi-omni-node-lib?/try-runtime", + "pezkuwi-primitives-test-helpers?/try-runtime", + "pezkuwi-primitives?/try-runtime", + "pezkuwi-rpc?/try-runtime", + "pezkuwi-runtime-common?/try-runtime", + "pezkuwi-runtime-teyrchains?/try-runtime", + "pezkuwi-service?/try-runtime", + "pezkuwi-subxt?/try-runtime", + "pezkuwi-teyrchain-primitives?/try-runtime", + "pezmmr-gadget?/try-runtime", + "pezmmr-rpc?/try-runtime", + "pezpallet-alliance?/try-runtime", + "pezpallet-asset-conversion-ops?/try-runtime", + "pezpallet-asset-conversion-tx-payment?/try-runtime", + "pezpallet-asset-conversion?/try-runtime", + "pezpallet-asset-rate?/try-runtime", + "pezpallet-asset-rewards?/try-runtime", + "pezpallet-asset-tx-payment?/try-runtime", + "pezpallet-assets-freezer?/try-runtime", + "pezpallet-assets-holder?/try-runtime", + "pezpallet-assets-precompiles?/try-runtime", + "pezpallet-assets?/try-runtime", + "pezpallet-atomic-swap?/try-runtime", + "pezpallet-aura?/try-runtime", + "pezpallet-authority-discovery?/try-runtime", + "pezpallet-authorship?/try-runtime", + "pezpallet-babe?/try-runtime", + "pezpallet-bags-list?/try-runtime", + "pezpallet-balances?/try-runtime", + "pezpallet-beefy-mmr?/try-runtime", + "pezpallet-beefy?/try-runtime", + "pezpallet-bounties?/try-runtime", + "pezpallet-bridge-grandpa?/try-runtime", + "pezpallet-bridge-messages?/try-runtime", + "pezpallet-bridge-relayers?/try-runtime", + "pezpallet-bridge-teyrchains?/try-runtime", + "pezpallet-broker?/try-runtime", + "pezpallet-child-bounties?/try-runtime", + "pezpallet-collator-selection?/try-runtime", + "pezpallet-collective-content?/try-runtime", + "pezpallet-collective?/try-runtime", + "pezpallet-contracts-fixtures?/try-runtime", + "pezpallet-contracts-mock-network?/try-runtime", + "pezpallet-contracts?/try-runtime", + "pezpallet-conviction-voting?/try-runtime", + "pezpallet-core-fellowship?/try-runtime", + "pezpallet-delegated-staking?/try-runtime", + "pezpallet-democracy?/try-runtime", + "pezpallet-derivatives?/try-runtime", + "pezpallet-dummy-dim?/try-runtime", + "pezpallet-election-provider-multi-block?/try-runtime", + "pezpallet-election-provider-multi-phase?/try-runtime", + "pezpallet-election-provider-support-benchmarking?/try-runtime", + "pezpallet-elections-phragmen?/try-runtime", + "pezpallet-fast-unstake?/try-runtime", + "pezpallet-glutton?/try-runtime", + "pezpallet-grandpa?/try-runtime", + "pezpallet-identity?/try-runtime", + "pezpallet-im-online?/try-runtime", + "pezpallet-indices?/try-runtime", + "pezpallet-insecure-randomness-collective-flip?/try-runtime", + "pezpallet-lottery?/try-runtime", + "pezpallet-membership?/try-runtime", + "pezpallet-message-queue?/try-runtime", + "pezpallet-meta-tx?/try-runtime", + "pezpallet-migrations?/try-runtime", + "pezpallet-minimal-template?/try-runtime", + "pezpallet-mixnet?/try-runtime", + "pezpallet-mmr?/try-runtime", + "pezpallet-multi-asset-bounties?/try-runtime", + "pezpallet-multisig?/try-runtime", + "pezpallet-nft-fractionalization?/try-runtime", + "pezpallet-nfts?/try-runtime", + "pezpallet-nis?/try-runtime", + "pezpallet-node-authorization?/try-runtime", + "pezpallet-nomination-pools-benchmarking?/try-runtime", + "pezpallet-nomination-pools-runtime-api?/try-runtime", + "pezpallet-nomination-pools?/try-runtime", + "pezpallet-offences-benchmarking?/try-runtime", + "pezpallet-offences?/try-runtime", + "pezpallet-oracle?/try-runtime", + "pezpallet-origin-restriction?/try-runtime", + "pezpallet-paged-list?/try-runtime", + "pezpallet-parameters?/try-runtime", + "pezpallet-people?/try-runtime", + "pezpallet-preimage?/try-runtime", + "pezpallet-proxy?/try-runtime", + "pezpallet-ranked-collective?/try-runtime", + "pezpallet-recovery?/try-runtime", + "pezpallet-referenda?/try-runtime", + "pezpallet-remark?/try-runtime", + "pezpallet-revive?/try-runtime", + "pezpallet-root-offences?/try-runtime", + "pezpallet-root-testing?/try-runtime", + "pezpallet-safe-mode?/try-runtime", + "pezpallet-salary?/try-runtime", + "pezpallet-scheduler?/try-runtime", + "pezpallet-scored-pool?/try-runtime", + "pezpallet-session-benchmarking?/try-runtime", + "pezpallet-session?/try-runtime", + "pezpallet-skip-feeless-payment?/try-runtime", + "pezpallet-society?/try-runtime", + "pezpallet-staking-async-ah-client?/try-runtime", + "pezpallet-staking-async-rc-client?/try-runtime", + "pezpallet-staking-async?/try-runtime", + "pezpallet-staking-reward-curve?/try-runtime", + "pezpallet-staking?/try-runtime", + "pezpallet-state-trie-migration?/try-runtime", + "pezpallet-statement?/try-runtime", + "pezpallet-sudo?/try-runtime", + "pezpallet-timestamp?/try-runtime", + "pezpallet-tips?/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api?/try-runtime", + "pezpallet-transaction-payment-rpc?/try-runtime", + "pezpallet-transaction-payment?/try-runtime", + "pezpallet-transaction-storage?/try-runtime", + "pezpallet-treasury?/try-runtime", + "pezpallet-tx-pause?/try-runtime", + "pezpallet-uniques?/try-runtime", + "pezpallet-utility?/try-runtime", + "pezpallet-verify-signature?/try-runtime", + "pezpallet-vesting?/try-runtime", + "pezpallet-whitelist?/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", + "pezpallet-xcm-bridge-hub-router?/try-runtime", + "pezpallet-xcm-bridge-hub?/try-runtime", + "pezpallet-xcm-precompiles?/try-runtime", + "pezpallet-xcm?/try-runtime", + "pezsc-authority-discovery?/try-runtime", + "pezsc-basic-authorship?/try-runtime", + "pezsc-block-builder?/try-runtime", + "pezsc-chain-spec?/try-runtime", + "pezsc-cli?/try-runtime", + "pezsc-client-api?/try-runtime", + "pezsc-client-db?/try-runtime", + "pezsc-consensus-aura?/try-runtime", + "pezsc-consensus-babe-rpc?/try-runtime", + "pezsc-consensus-babe?/try-runtime", + "pezsc-consensus-beefy-rpc?/try-runtime", + "pezsc-consensus-beefy?/try-runtime", + "pezsc-consensus-epochs?/try-runtime", + "pezsc-consensus-grandpa-rpc?/try-runtime", + "pezsc-consensus-grandpa?/try-runtime", + "pezsc-consensus-manual-seal?/try-runtime", + "pezsc-consensus-pow?/try-runtime", + "pezsc-consensus-slots?/try-runtime", + "pezsc-consensus?/try-runtime", + "pezsc-executor?/try-runtime", + "pezsc-informant?/try-runtime", + "pezsc-mixnet?/try-runtime", + "pezsc-network-common?/try-runtime", + "pezsc-network-gossip?/try-runtime", + "pezsc-network-light?/try-runtime", + "pezsc-network-statement?/try-runtime", + "pezsc-network-sync?/try-runtime", + "pezsc-network-transactions?/try-runtime", + "pezsc-network?/try-runtime", + "pezsc-offchain?/try-runtime", + "pezsc-rpc-api?/try-runtime", + "pezsc-rpc-spec-v2?/try-runtime", + "pezsc-rpc?/try-runtime", + "pezsc-service?/try-runtime", + "pezsc-statement-store?/try-runtime", + "pezsc-sync-state-rpc?/try-runtime", + "pezsc-sysinfo?/try-runtime", + "pezsc-tracing?/try-runtime", + "pezsc-transaction-pool-api?/try-runtime", + "pezsc-transaction-pool?/try-runtime", + "pezsp-api?/try-runtime", + "pezsp-authority-discovery?/try-runtime", + "pezsp-block-builder?/try-runtime", + "pezsp-blockchain?/try-runtime", + "pezsp-consensus-aura?/try-runtime", + "pezsp-consensus-babe?/try-runtime", + "pezsp-consensus-beefy?/try-runtime", + "pezsp-consensus-grandpa?/try-runtime", + "pezsp-consensus-pow?/try-runtime", + "pezsp-consensus?/try-runtime", + "pezsp-genesis-builder?/try-runtime", + "pezsp-inherents?/try-runtime", + "pezsp-keyring?/try-runtime", + "pezsp-mmr-primitives?/try-runtime", + "pezsp-npos-elections?/try-runtime", + "pezsp-offchain?/try-runtime", + "pezsp-session?/try-runtime", + "pezsp-staking?/try-runtime", + "pezsp-statement-store?/try-runtime", + "pezsp-timestamp?/try-runtime", + "pezsp-transaction-pool?/try-runtime", + "pezsp-transaction-storage-proof?/try-runtime", + "pezsp-version?/try-runtime", + "pezstaging-node-inspect?/try-runtime", + "pezstaging-teyrchain-info?/try-runtime", + "pezstaging-xcm-builder?/try-runtime", + "pezstaging-xcm-executor?/try-runtime", + "pezstaging-xcm?/try-runtime", + "testnet-teyrchains-constants?/try-runtime", + "teyrchains-common?/try-runtime", + "teyrchains-runtimes-test-utils?/try-runtime", + "xcm-pez-emulator?/try-runtime", + "xcm-pez-procedural?/try-runtime", + "xcm-pez-simulator?/try-runtime", + "xcm-runtime-pezapis?/try-runtime", +] +serde = [ + "asset-test-pezutils?/serde", + "bizinikiwi-bip39?/serde", + "bizinikiwi-frame-rpc-support?/serde", + "bizinikiwi-frame-rpc-system?/serde", + "bizinikiwi-prometheus-endpoint?/serde", + "bizinikiwi-rpc-client?/serde", + "bizinikiwi-state-trie-migration-rpc?/serde", + "bizinikiwi-txtesttool?/serde", + "bizinikiwi-wasm-builder?/serde", + "pez-assets-common?/serde", + "pez-binary-merkle-tree?/serde", + "pez-ethereum-standards?/serde", + "pez-fork-tree?/serde", + "pez-generate-bags?/serde", + "pez-slot-range-helper?/serde", + "pezbp-header-pez-chain?/serde", + "pezbp-messages?/serde", + "pezbp-pezkuwi-core?/serde", + "pezbp-relayers?/serde", + "pezbp-runtime?/serde", + "pezbp-test-utils?/serde", + "pezbp-teyrchains?/serde", + "pezbp-xcm-bridge-hub-router?/serde", + "pezbp-xcm-bridge-hub?/serde", + "pezbridge-hub-common?/serde", + "pezbridge-hub-test-utils?/serde", + "pezbridge-runtime-common?/serde", + "pezcumulus-client-bootnodes?/serde", + "pezcumulus-client-cli?/serde", + "pezcumulus-client-collator?/serde", + "pezcumulus-client-consensus-aura?/serde", + "pezcumulus-client-consensus-common?/serde", + "pezcumulus-client-consensus-proposer?/serde", + "pezcumulus-client-consensus-relay-chain?/serde", + "pezcumulus-client-network?/serde", + "pezcumulus-client-pov-recovery?/serde", + "pezcumulus-client-service?/serde", + "pezcumulus-client-teyrchain-inherent?/serde", + "pezcumulus-pezpallet-aura-ext?/serde", + "pezcumulus-pezpallet-dmp-queue?/serde", + "pezcumulus-pezpallet-session-benchmarking?/serde", + "pezcumulus-pezpallet-solo-to-para?/serde", + "pezcumulus-pezpallet-teyrchain-system?/serde", + "pezcumulus-pezpallet-weight-reclaim?/serde", + "pezcumulus-pezpallet-xcm?/serde", + "pezcumulus-pezpallet-xcmp-queue?/serde", + "pezcumulus-ping?/serde", + "pezcumulus-primitives-aura?/serde", + "pezcumulus-primitives-core?/serde", + "pezcumulus-primitives-proof-size-hostfunction?/serde", + "pezcumulus-primitives-storage-weight-reclaim?/serde", + "pezcumulus-primitives-teyrchain-inherent?/serde", + "pezcumulus-primitives-utility?/serde", + "pezcumulus-relay-chain-inprocess-interface?/serde", + "pezcumulus-relay-chain-interface?/serde", + "pezcumulus-relay-chain-minimal-node?/serde", + "pezcumulus-relay-chain-rpc-interface?/serde", + "pezcumulus-test-relay-sproof-builder?/serde", + "pezframe-benchmarking-cli?/serde", + "pezframe-benchmarking-pezpallet-pov?/serde", + "pezframe-benchmarking?/serde", + "pezframe-election-provider-solution-type?/serde", + "pezframe-election-provider-support?/serde", + "pezframe-executive?/serde", + "pezframe-metadata-hash-extension?/serde", + "pezframe-metadata?/serde", + "pezframe-remote-externalities?/serde", + "pezframe-support?/serde", + "pezframe-system-benchmarking?/serde", + "pezframe-system-rpc-runtime-api?/serde", + "pezframe-system?/serde", + "pezframe?/serde", + "pezkuwi-approval-distribution?/serde", + "pezkuwi-availability-bitfield-distribution?/serde", + "pezkuwi-availability-distribution?/serde", + "pezkuwi-availability-recovery?/serde", + "pezkuwi-cli?/serde", + "pezkuwi-collator-protocol?/serde", + "pezkuwi-core-primitives?/serde", + "pezkuwi-dispute-distribution?/serde", + "pezkuwi-erasure-coding?/serde", + "pezkuwi-gossip-support?/serde", + "pezkuwi-network-bridge?/serde", + "pezkuwi-node-collation-generation?/serde", + "pezkuwi-node-core-approval-voting-parallel?/serde", + "pezkuwi-node-core-approval-voting?/serde", + "pezkuwi-node-core-av-store?/serde", + "pezkuwi-node-core-backing?/serde", + "pezkuwi-node-core-candidate-validation?/serde", + "pezkuwi-node-core-chain-api?/serde", + "pezkuwi-node-core-chain-selection?/serde", + "pezkuwi-node-core-dispute-coordinator?/serde", + "pezkuwi-node-core-prospective-teyrchains?/serde", + "pezkuwi-node-core-provisioner?/serde", + "pezkuwi-node-core-pvf-checker?/serde", + "pezkuwi-node-core-pvf-common?/serde", + "pezkuwi-node-core-pvf-execute-worker?/serde", + "pezkuwi-node-core-pvf-prepare-worker?/serde", + "pezkuwi-node-core-pvf?/serde", + "pezkuwi-node-core-runtime-api?/serde", + "pezkuwi-node-metrics?/serde", + "pezkuwi-node-network-protocol?/serde", + "pezkuwi-node-subsystem-types?/serde", + "pezkuwi-node-subsystem-util?/serde", + "pezkuwi-omni-node-lib?/serde", + "pezkuwi-overseer?/serde", + "pezkuwi-pez-node-primitives?/serde", + "pezkuwi-primitives-test-helpers?/serde", + "pezkuwi-primitives?/serde", + "pezkuwi-rpc?/serde", + "pezkuwi-runtime-common?/serde", + "pezkuwi-runtime-metrics?/serde", + "pezkuwi-runtime-teyrchains?/serde", + "pezkuwi-service?/serde", + "pezkuwi-statement-distribution?/serde", + "pezkuwi-statement-table?/serde", + "pezkuwi-subxt-codegen?/serde", + "pezkuwi-subxt-core?/serde", + "pezkuwi-subxt-lightclient?/serde", + "pezkuwi-subxt-macro?/serde", + "pezkuwi-subxt-metadata?/serde", + "pezkuwi-subxt-rpcs?/serde", + "pezkuwi-subxt-signer?/serde", + "pezkuwi-subxt-utils-fetchmetadata?/serde", + "pezkuwi-subxt-utils-stripmetadata?/serde", + "pezkuwi-subxt?/serde", + "pezkuwi-teyrchain-primitives?/serde", + "pezkuwi-zombienet-configuration?/serde", + "pezkuwi-zombienet-orchestrator?/serde", + "pezkuwi-zombienet-provider?/serde", + "pezkuwi-zombienet-sdk?/serde", + "pezkuwi-zombienet-support?/serde", + "pezmmr-gadget?/serde", + "pezmmr-rpc?/serde", + "pezpallet-alliance?/serde", + "pezpallet-asset-conversion-ops?/serde", + "pezpallet-asset-conversion-tx-payment?/serde", + "pezpallet-asset-conversion?/serde", + "pezpallet-asset-rate?/serde", + "pezpallet-asset-rewards?/serde", + "pezpallet-asset-tx-payment?/serde", + "pezpallet-assets-freezer?/serde", + "pezpallet-assets-holder?/serde", + "pezpallet-assets-precompiles?/serde", + "pezpallet-assets?/serde", + "pezpallet-atomic-swap?/serde", + "pezpallet-aura?/serde", + "pezpallet-authority-discovery?/serde", + "pezpallet-authorship?/serde", + "pezpallet-babe?/serde", + "pezpallet-bags-list?/serde", + "pezpallet-balances?/serde", + "pezpallet-beefy-mmr?/serde", + "pezpallet-beefy?/serde", + "pezpallet-bounties?/serde", + "pezpallet-bridge-grandpa?/serde", + "pezpallet-bridge-messages?/serde", + "pezpallet-bridge-relayers?/serde", + "pezpallet-bridge-teyrchains?/serde", + "pezpallet-broker?/serde", + "pezpallet-child-bounties?/serde", + "pezpallet-collator-selection?/serde", + "pezpallet-collective-content?/serde", + "pezpallet-collective?/serde", + "pezpallet-contracts-fixtures?/serde", + "pezpallet-contracts-mock-network?/serde", + "pezpallet-contracts-uapi?/serde", + "pezpallet-contracts?/serde", + "pezpallet-conviction-voting?/serde", + "pezpallet-core-fellowship?/serde", + "pezpallet-delegated-staking?/serde", + "pezpallet-democracy?/serde", + "pezpallet-derivatives?/serde", + "pezpallet-dummy-dim?/serde", + "pezpallet-election-provider-multi-block?/serde", + "pezpallet-election-provider-multi-phase?/serde", + "pezpallet-election-provider-support-benchmarking?/serde", + "pezpallet-elections-phragmen?/serde", + "pezpallet-fast-unstake?/serde", + "pezpallet-glutton?/serde", + "pezpallet-grandpa?/serde", + "pezpallet-identity?/serde", + "pezpallet-im-online?/serde", + "pezpallet-indices?/serde", + "pezpallet-insecure-randomness-collective-flip?/serde", + "pezpallet-lottery?/serde", + "pezpallet-membership?/serde", + "pezpallet-message-queue?/serde", + "pezpallet-meta-tx?/serde", + "pezpallet-migrations?/serde", + "pezpallet-minimal-template?/serde", + "pezpallet-mixnet?/serde", + "pezpallet-mmr?/serde", + "pezpallet-multi-asset-bounties?/serde", + "pezpallet-multisig?/serde", + "pezpallet-nft-fractionalization?/serde", + "pezpallet-nfts-runtime-api?/serde", + "pezpallet-nfts?/serde", + "pezpallet-nis?/serde", + "pezpallet-node-authorization?/serde", + "pezpallet-nomination-pools-benchmarking?/serde", + "pezpallet-nomination-pools-runtime-api?/serde", + "pezpallet-nomination-pools?/serde", + "pezpallet-offences-benchmarking?/serde", + "pezpallet-offences?/serde", + "pezpallet-oracle-runtime-api?/serde", + "pezpallet-oracle?/serde", + "pezpallet-origin-restriction?/serde", + "pezpallet-paged-list?/serde", + "pezpallet-parameters?/serde", + "pezpallet-people?/serde", + "pezpallet-preimage?/serde", + "pezpallet-proxy?/serde", + "pezpallet-ranked-collective?/serde", + "pezpallet-recovery?/serde", + "pezpallet-referenda?/serde", + "pezpallet-remark?/serde", + "pezpallet-revive-uapi?/serde", + "pezpallet-revive?/serde", + "pezpallet-root-offences?/serde", + "pezpallet-root-testing?/serde", + "pezpallet-safe-mode?/serde", + "pezpallet-salary?/serde", + "pezpallet-scheduler?/serde", + "pezpallet-scored-pool?/serde", + "pezpallet-session-benchmarking?/serde", + "pezpallet-session?/serde", + "pezpallet-skip-feeless-payment?/serde", + "pezpallet-society?/serde", + "pezpallet-staking-async-ah-client?/serde", + "pezpallet-staking-async-rc-client?/serde", + "pezpallet-staking-async-reward-fn?/serde", + "pezpallet-staking-async-runtime-api?/serde", + "pezpallet-staking-async?/serde", + "pezpallet-staking-reward-curve?/serde", + "pezpallet-staking-reward-fn?/serde", + "pezpallet-staking-runtime-api?/serde", + "pezpallet-staking?/serde", + "pezpallet-state-trie-migration?/serde", + "pezpallet-statement?/serde", + "pezpallet-sudo?/serde", + "pezpallet-timestamp?/serde", + "pezpallet-tips?/serde", + "pezpallet-transaction-payment-rpc-runtime-api?/serde", + "pezpallet-transaction-payment-rpc?/serde", + "pezpallet-transaction-payment?/serde", + "pezpallet-transaction-storage?/serde", + "pezpallet-treasury?/serde", + "pezpallet-tx-pause?/serde", + "pezpallet-uniques?/serde", + "pezpallet-utility?/serde", + "pezpallet-verify-signature?/serde", + "pezpallet-vesting?/serde", + "pezpallet-whitelist?/serde", + "pezpallet-xcm-benchmarks?/serde", + "pezpallet-xcm-bridge-hub-router?/serde", + "pezpallet-xcm-bridge-hub?/serde", + "pezpallet-xcm-precompiles?/serde", + "pezpallet-xcm?/serde", + "pezsc-allocator?/serde", + "pezsc-authority-discovery?/serde", + "pezsc-basic-authorship?/serde", + "pezsc-block-builder?/serde", + "pezsc-chain-spec?/serde", + "pezsc-cli?/serde", + "pezsc-client-api?/serde", + "pezsc-client-db?/serde", + "pezsc-consensus-aura?/serde", + "pezsc-consensus-babe-rpc?/serde", + "pezsc-consensus-babe?/serde", + "pezsc-consensus-beefy-rpc?/serde", + "pezsc-consensus-beefy?/serde", + "pezsc-consensus-epochs?/serde", + "pezsc-consensus-grandpa-rpc?/serde", + "pezsc-consensus-grandpa?/serde", + "pezsc-consensus-manual-seal?/serde", + "pezsc-consensus-pow?/serde", + "pezsc-consensus-slots?/serde", + "pezsc-consensus?/serde", + "pezsc-executor-polkavm?/serde", + "pezsc-executor-wasmtime?/serde", + "pezsc-executor?/serde", + "pezsc-informant?/serde", + "pezsc-keystore?/serde", + "pezsc-mixnet?/serde", + "pezsc-network-common?/serde", + "pezsc-network-gossip?/serde", + "pezsc-network-light?/serde", + "pezsc-network-statement?/serde", + "pezsc-network-sync?/serde", + "pezsc-network-transactions?/serde", + "pezsc-network-types?/serde", + "pezsc-network?/serde", + "pezsc-offchain?/serde", + "pezsc-proposer-metrics?/serde", + "pezsc-rpc-api?/serde", + "pezsc-rpc-server?/serde", + "pezsc-rpc-spec-v2?/serde", + "pezsc-rpc?/serde", + "pezsc-runtime-utilities?/serde", + "pezsc-service?/serde", + "pezsc-state-db?/serde", + "pezsc-statement-store?/serde", + "pezsc-storage-monitor?/serde", + "pezsc-sync-state-rpc?/serde", + "pezsc-sysinfo?/serde", + "pezsc-telemetry?/serde", + "pezsc-tracing?/serde", + "pezsc-transaction-pool-api?/serde", + "pezsc-transaction-pool?/serde", + "pezsc-utils?/serde", + "pezsp-api?/serde", + "pezsp-application-crypto?/serde", + "pezsp-arithmetic?/serde", + "pezsp-authority-discovery?/serde", + "pezsp-block-builder?/serde", + "pezsp-blockchain?/serde", + "pezsp-consensus-aura?/serde", + "pezsp-consensus-babe?/serde", + "pezsp-consensus-beefy?/serde", + "pezsp-consensus-grandpa?/serde", + "pezsp-consensus-pow?/serde", + "pezsp-consensus-slots?/serde", + "pezsp-consensus?/serde", + "pezsp-core?/serde", + "pezsp-crypto-hashing?/serde", + "pezsp-database?/serde", + "pezsp-externalities?/serde", + "pezsp-genesis-builder?/serde", + "pezsp-inherents?/serde", + "pezsp-io?/serde", + "pezsp-keyring?/serde", + "pezsp-keystore?/serde", + "pezsp-metadata-ir?/serde", + "pezsp-mixnet?/serde", + "pezsp-mmr-primitives?/serde", + "pezsp-npos-elections?/serde", + "pezsp-offchain?/serde", + "pezsp-panic-handler?/serde", + "pezsp-rpc?/serde", + "pezsp-runtime-interface?/serde", + "pezsp-session?/serde", + "pezsp-ss58-registry?/serde", + "pezsp-staking?/serde", + "pezsp-state-machine?/serde", + "pezsp-statement-store?/serde", + "pezsp-storage?/serde", + "pezsp-timestamp?/serde", + "pezsp-tracing?/serde", + "pezsp-transaction-pool?/serde", + "pezsp-transaction-storage-proof?/serde", + "pezsp-trie?/serde", + "pezsp-version-proc-macro?/serde", + "pezsp-version?/serde", + "pezsp-wasm-interface?/serde", + "pezsp-weights?/serde", + "pezstaging-node-inspect?/serde", + "pezstaging-teyrchain-info?/serde", + "pezstaging-xcm-builder?/serde", + "pezstaging-xcm-executor?/serde", + "pezstaging-xcm?/serde", + "testnet-teyrchains-constants?/serde", + "teyrchains-common?/serde", + "teyrchains-runtimes-test-utils?/serde", + "xcm-pez-emulator?/serde", + "xcm-pez-simulator?/serde", + "xcm-runtime-pezapis?/serde", +] +experimental = [ + "asset-test-pezutils?/experimental", + "bizinikiwi-frame-rpc-support?/experimental", + "pez-assets-common?/experimental", + "pez-generate-bags?/experimental", + "pezbp-header-pez-chain?/experimental", + "pezbp-messages?/experimental", + "pezbp-pezkuwi-core?/experimental", + "pezbp-relayers?/experimental", + "pezbp-runtime?/experimental", + "pezbp-teyrchains?/experimental", + "pezbp-xcm-bridge-hub?/experimental", + "pezbridge-hub-common?/experimental", + "pezbridge-hub-test-utils?/experimental", + "pezbridge-runtime-common?/experimental", + "pezcumulus-pezpallet-aura-ext?/experimental", + "pezcumulus-pezpallet-dmp-queue?/experimental", + "pezcumulus-pezpallet-session-benchmarking?/experimental", + "pezcumulus-pezpallet-solo-to-para?/experimental", + "pezcumulus-pezpallet-teyrchain-system?/experimental", + "pezcumulus-pezpallet-weight-reclaim?/experimental", + "pezcumulus-pezpallet-xcm?/experimental", + "pezcumulus-pezpallet-xcmp-queue?/experimental", + "pezcumulus-ping?/experimental", + "pezcumulus-primitives-storage-weight-reclaim?/experimental", + "pezcumulus-primitives-utility?/experimental", + "pezframe-benchmarking-cli?/experimental", + "pezframe-benchmarking-pezpallet-pov?/experimental", + "pezframe-benchmarking?/experimental", + "pezframe-election-provider-support?/experimental", + "pezframe-executive?/experimental", + "pezframe-metadata-hash-extension?/experimental", + "pezframe-support-procedural?/experimental", + "pezframe-support?/experimental", + "pezframe-system-benchmarking?/experimental", + "pezframe-system?/experimental", + "pezframe?/experimental", + "pezkuwi-omni-node-lib?/experimental", + "pezkuwi-pez-node-primitives?/experimental", + "pezkuwi-runtime-common?/experimental", + "pezkuwi-runtime-teyrchains?/experimental", + "pezkuwi-service?/experimental", + "pezpallet-alliance?/experimental", + "pezpallet-asset-conversion-ops?/experimental", + "pezpallet-asset-conversion-tx-payment?/experimental", + "pezpallet-asset-conversion?/experimental", + "pezpallet-asset-rate?/experimental", + "pezpallet-asset-rewards?/experimental", + "pezpallet-asset-tx-payment?/experimental", + "pezpallet-assets-freezer?/experimental", + "pezpallet-assets-holder?/experimental", + "pezpallet-assets-precompiles?/experimental", + "pezpallet-assets?/experimental", + "pezpallet-atomic-swap?/experimental", + "pezpallet-aura?/experimental", + "pezpallet-authority-discovery?/experimental", + "pezpallet-authorship?/experimental", + "pezpallet-babe?/experimental", + "pezpallet-bags-list?/experimental", + "pezpallet-balances?/experimental", + "pezpallet-beefy-mmr?/experimental", + "pezpallet-beefy?/experimental", + "pezpallet-bounties?/experimental", + "pezpallet-bridge-grandpa?/experimental", + "pezpallet-bridge-messages?/experimental", + "pezpallet-bridge-relayers?/experimental", + "pezpallet-bridge-teyrchains?/experimental", + "pezpallet-broker?/experimental", + "pezpallet-child-bounties?/experimental", + "pezpallet-collator-selection?/experimental", + "pezpallet-collective-content?/experimental", + "pezpallet-collective?/experimental", + "pezpallet-contracts-fixtures?/experimental", + "pezpallet-contracts-mock-network?/experimental", + "pezpallet-contracts?/experimental", + "pezpallet-conviction-voting?/experimental", + "pezpallet-core-fellowship?/experimental", + "pezpallet-delegated-staking?/experimental", + "pezpallet-democracy?/experimental", + "pezpallet-derivatives?/experimental", + "pezpallet-dummy-dim?/experimental", + "pezpallet-election-provider-multi-block?/experimental", + "pezpallet-election-provider-multi-phase?/experimental", + "pezpallet-election-provider-support-benchmarking?/experimental", + "pezpallet-elections-phragmen?/experimental", + "pezpallet-fast-unstake?/experimental", + "pezpallet-glutton?/experimental", + "pezpallet-grandpa?/experimental", + "pezpallet-identity?/experimental", + "pezpallet-im-online?/experimental", + "pezpallet-indices?/experimental", + "pezpallet-insecure-randomness-collective-flip?/experimental", + "pezpallet-lottery?/experimental", + "pezpallet-membership?/experimental", + "pezpallet-message-queue?/experimental", + "pezpallet-meta-tx?/experimental", + "pezpallet-migrations?/experimental", + "pezpallet-minimal-template?/experimental", + "pezpallet-mixnet?/experimental", + "pezpallet-mmr?/experimental", + "pezpallet-multi-asset-bounties?/experimental", + "pezpallet-multisig?/experimental", + "pezpallet-nft-fractionalization?/experimental", + "pezpallet-nfts?/experimental", + "pezpallet-nis?/experimental", + "pezpallet-node-authorization?/experimental", + "pezpallet-nomination-pools-benchmarking?/experimental", + "pezpallet-nomination-pools?/experimental", + "pezpallet-offences-benchmarking?/experimental", + "pezpallet-offences?/experimental", + "pezpallet-oracle?/experimental", + "pezpallet-origin-restriction?/experimental", + "pezpallet-paged-list?/experimental", + "pezpallet-parameters?/experimental", + "pezpallet-people?/experimental", + "pezpallet-preimage?/experimental", + "pezpallet-proxy?/experimental", + "pezpallet-ranked-collective?/experimental", + "pezpallet-recovery?/experimental", + "pezpallet-referenda?/experimental", + "pezpallet-remark?/experimental", + "pezpallet-revive?/experimental", + "pezpallet-root-offences?/experimental", + "pezpallet-root-testing?/experimental", + "pezpallet-safe-mode?/experimental", + "pezpallet-salary?/experimental", + "pezpallet-scheduler?/experimental", + "pezpallet-scored-pool?/experimental", + "pezpallet-session-benchmarking?/experimental", + "pezpallet-session?/experimental", + "pezpallet-skip-feeless-payment?/experimental", + "pezpallet-society?/experimental", + "pezpallet-staking-async-ah-client?/experimental", + "pezpallet-staking-async-rc-client?/experimental", + "pezpallet-staking-async?/experimental", + "pezpallet-staking?/experimental", + "pezpallet-state-trie-migration?/experimental", + "pezpallet-statement?/experimental", + "pezpallet-sudo?/experimental", + "pezpallet-timestamp?/experimental", + "pezpallet-tips?/experimental", + "pezpallet-transaction-payment?/experimental", + "pezpallet-transaction-storage?/experimental", + "pezpallet-treasury?/experimental", + "pezpallet-tx-pause?/experimental", + "pezpallet-uniques?/experimental", + "pezpallet-utility?/experimental", + "pezpallet-verify-signature?/experimental", + "pezpallet-vesting?/experimental", + "pezpallet-whitelist?/experimental", + "pezpallet-xcm-benchmarks?/experimental", + "pezpallet-xcm-bridge-hub-router?/experimental", + "pezpallet-xcm-bridge-hub?/experimental", + "pezpallet-xcm-precompiles?/experimental", + "pezpallet-xcm?/experimental", + "pezsc-client-db?/experimental", + "pezsp-consensus-beefy?/experimental", + "pezsp-core?/experimental", + "pezsp-maybe-compressed-blob?/experimental", + "pezstaging-teyrchain-info?/experimental", + "pezstaging-xcm-builder?/experimental", + "pezstaging-xcm-executor?/experimental", + "pezstaging-xcm?/experimental", + "testnet-teyrchains-constants?/experimental", + "teyrchains-common?/experimental", + "teyrchains-runtimes-test-utils?/experimental", + "xcm-pez-emulator?/experimental", + "xcm-pez-procedural?/experimental", + "xcm-pez-simulator?/experimental", + "xcm-runtime-pezapis?/experimental", +] +with-tracing = [ + "asset-test-pezutils?/with-tracing", + "bizinikiwi-frame-rpc-system?/with-tracing", + "bizinikiwi-wasm-builder?/with-tracing", + "pezbp-messages?/with-tracing", + "pezbp-runtime?/with-tracing", + "pezbp-xcm-bridge-hub?/with-tracing", + "pezbridge-hub-test-utils?/with-tracing", + "pezbridge-runtime-common?/with-tracing", + "pezcumulus-client-collator?/with-tracing", + "pezcumulus-client-consensus-aura?/with-tracing", + "pezcumulus-client-consensus-common?/with-tracing", + "pezcumulus-client-pov-recovery?/with-tracing", + "pezcumulus-client-service?/with-tracing", + "pezcumulus-pezpallet-aura-ext?/with-tracing", + "pezcumulus-pezpallet-dmp-queue?/with-tracing", + "pezcumulus-pezpallet-teyrchain-system?/with-tracing", + "pezcumulus-pezpallet-weight-reclaim?/with-tracing", + "pezcumulus-pezpallet-xcm?/with-tracing", + "pezcumulus-pezpallet-xcmp-queue?/with-tracing", + "pezcumulus-primitives-proof-size-hostfunction?/with-tracing", + "pezcumulus-primitives-storage-weight-reclaim?/with-tracing", + "pezframe-benchmarking-cli?/with-tracing", + "pezframe-benchmarking-pezpallet-pov?/with-tracing", + "pezframe-benchmarking?/with-tracing", + "pezframe-election-provider-support?/with-tracing", + "pezframe-executive?/with-tracing", + "pezframe-metadata-hash-extension?/with-tracing", + "pezframe-remote-externalities?/with-tracing", + "pezframe-support?/with-tracing", + "pezframe-system-benchmarking?/with-tracing", + "pezframe-system?/with-tracing", + "pezframe?/with-tracing", + "pezkuwi-approval-distribution?/with-tracing", + "pezkuwi-availability-bitfield-distribution?/with-tracing", + "pezkuwi-availability-distribution?/with-tracing", + "pezkuwi-availability-recovery?/with-tracing", + "pezkuwi-collator-protocol?/with-tracing", + "pezkuwi-dispute-distribution?/with-tracing", + "pezkuwi-gossip-support?/with-tracing", + "pezkuwi-node-core-approval-voting-parallel?/with-tracing", + "pezkuwi-node-core-approval-voting?/with-tracing", + "pezkuwi-node-core-av-store?/with-tracing", + "pezkuwi-node-core-backing?/with-tracing", + "pezkuwi-node-core-dispute-coordinator?/with-tracing", + "pezkuwi-node-core-prospective-teyrchains?/with-tracing", + "pezkuwi-node-core-pvf-common?/with-tracing", + "pezkuwi-primitives?/with-tracing", + "pezkuwi-runtime-common?/with-tracing", + "pezkuwi-runtime-metrics?/with-tracing", + "pezkuwi-runtime-teyrchains?/with-tracing", + "pezkuwi-service?/with-tracing", + "pezkuwi-statement-distribution?/with-tracing", + "pezkuwi-subxt-macro?/with-tracing", + "pezmmr-gadget?/with-tracing", + "pezpallet-alliance?/with-tracing", + "pezpallet-asset-conversion-ops?/with-tracing", + "pezpallet-asset-conversion-tx-payment?/with-tracing", + "pezpallet-asset-conversion?/with-tracing", + "pezpallet-asset-rate?/with-tracing", + "pezpallet-asset-rewards?/with-tracing", + "pezpallet-asset-tx-payment?/with-tracing", + "pezpallet-assets-holder?/with-tracing", + "pezpallet-assets-precompiles?/with-tracing", + "pezpallet-assets?/with-tracing", + "pezpallet-aura?/with-tracing", + "pezpallet-authority-discovery?/with-tracing", + "pezpallet-authorship?/with-tracing", + "pezpallet-babe?/with-tracing", + "pezpallet-bags-list?/with-tracing", + "pezpallet-balances?/with-tracing", + "pezpallet-beefy-mmr?/with-tracing", + "pezpallet-beefy?/with-tracing", + "pezpallet-bounties?/with-tracing", + "pezpallet-bridge-grandpa?/with-tracing", + "pezpallet-bridge-messages?/with-tracing", + "pezpallet-bridge-relayers?/with-tracing", + "pezpallet-bridge-teyrchains?/with-tracing", + "pezpallet-broker?/with-tracing", + "pezpallet-child-bounties?/with-tracing", + "pezpallet-collator-selection?/with-tracing", + "pezpallet-collective-content?/with-tracing", + "pezpallet-collective?/with-tracing", + "pezpallet-contracts-mock-network?/with-tracing", + "pezpallet-contracts?/with-tracing", + "pezpallet-conviction-voting?/with-tracing", + "pezpallet-core-fellowship?/with-tracing", + "pezpallet-delegated-staking?/with-tracing", + "pezpallet-democracy?/with-tracing", + "pezpallet-derivatives?/with-tracing", + "pezpallet-dummy-dim?/with-tracing", + "pezpallet-election-provider-multi-block?/with-tracing", + "pezpallet-election-provider-multi-phase?/with-tracing", + "pezpallet-elections-phragmen?/with-tracing", + "pezpallet-fast-unstake?/with-tracing", + "pezpallet-glutton?/with-tracing", + "pezpallet-grandpa?/with-tracing", + "pezpallet-identity?/with-tracing", + "pezpallet-im-online?/with-tracing", + "pezpallet-indices?/with-tracing", + "pezpallet-lottery?/with-tracing", + "pezpallet-membership?/with-tracing", + "pezpallet-message-queue?/with-tracing", + "pezpallet-meta-tx?/with-tracing", + "pezpallet-migrations?/with-tracing", + "pezpallet-mmr?/with-tracing", + "pezpallet-multi-asset-bounties?/with-tracing", + "pezpallet-nfts?/with-tracing", + "pezpallet-nis?/with-tracing", + "pezpallet-nomination-pools-benchmarking?/with-tracing", + "pezpallet-nomination-pools?/with-tracing", + "pezpallet-offences-benchmarking?/with-tracing", + "pezpallet-offences?/with-tracing", + "pezpallet-oracle?/with-tracing", + "pezpallet-origin-restriction?/with-tracing", + "pezpallet-parameters?/with-tracing", + "pezpallet-people?/with-tracing", + "pezpallet-preimage?/with-tracing", + "pezpallet-ranked-collective?/with-tracing", + "pezpallet-referenda?/with-tracing", + "pezpallet-remark?/with-tracing", + "pezpallet-revive?/with-tracing", + "pezpallet-root-offences?/with-tracing", + "pezpallet-root-testing?/with-tracing", + "pezpallet-scheduler?/with-tracing", + "pezpallet-scored-pool?/with-tracing", + "pezpallet-session-benchmarking?/with-tracing", + "pezpallet-session?/with-tracing", + "pezpallet-society?/with-tracing", + "pezpallet-staking-async-ah-client?/with-tracing", + "pezpallet-staking-async?/with-tracing", + "pezpallet-staking?/with-tracing", + "pezpallet-state-trie-migration?/with-tracing", + "pezpallet-statement?/with-tracing", + "pezpallet-sudo?/with-tracing", + "pezpallet-timestamp?/with-tracing", + "pezpallet-tips?/with-tracing", + "pezpallet-transaction-payment?/with-tracing", + "pezpallet-transaction-storage?/with-tracing", + "pezpallet-treasury?/with-tracing", + "pezpallet-uniques?/with-tracing", + "pezpallet-utility?/with-tracing", + "pezpallet-verify-signature?/with-tracing", + "pezpallet-vesting?/with-tracing", + "pezpallet-xcm-benchmarks?/with-tracing", + "pezpallet-xcm-bridge-hub-router?/with-tracing", + "pezpallet-xcm-bridge-hub?/with-tracing", + "pezpallet-xcm-precompiles?/with-tracing", + "pezpallet-xcm?/with-tracing", + "pezsc-authority-discovery?/with-tracing", + "pezsc-chain-spec?/with-tracing", + "pezsc-cli?/with-tracing", + "pezsc-client-db?/with-tracing", + "pezsc-consensus-aura?/with-tracing", + "pezsc-consensus-babe?/with-tracing", + "pezsc-consensus-beefy?/with-tracing", + "pezsc-consensus-grandpa?/with-tracing", + "pezsc-executor-wasmtime?/with-tracing", + "pezsc-executor?/with-tracing", + "pezsc-network-sync?/with-tracing", + "pezsc-network?/with-tracing", + "pezsc-offchain?/with-tracing", + "pezsc-runtime-utilities?/with-tracing", + "pezsc-statement-store?/with-tracing", + "pezsc-sysinfo?/with-tracing", + "pezsc-tracing?/with-tracing", + "pezsc-transaction-pool?/with-tracing", + "pezsp-application-crypto?/with-tracing", + "pezsp-consensus-beefy?/with-tracing", + "pezsp-io?/with-tracing", + "pezsp-runtime-interface?/with-tracing", + "pezsp-tracing?/with-tracing", + "pezstaging-chain-spec-builder?/with-tracing", + "pezstaging-node-inspect?/with-tracing", + "pezstaging-xcm-builder?/with-tracing", + "pezstaging-xcm-executor?/with-tracing", + "pezstaging-xcm?/with-tracing", + "teyrchains-common?/with-tracing", + "teyrchains-runtimes-test-utils?/with-tracing", + "xcm-pez-emulator?/with-tracing", + "xcm-pez-simulator?/with-tracing", + "xcm-runtime-pezapis?/with-tracing", +] runtime-full = [ "bizinikiwi-bip39", "pez-assets-common", @@ -267,6 +1983,8 @@ runtime = [ "pezframe-system", "pezframe-system-benchmarking", "pezframe-system-rpc-runtime-api", + "pezframe?/runtime", + "pezkuwi-subxt?/runtime", ] node = [ "asset-test-pezutils", @@ -431,7 +2149,169 @@ node = [ "xcm-pez-emulator", "xcm-pez-simulator", ] -tuples-96 = [] +tuples-96 = [ + "asset-test-pezutils?/tuples-96", + "bizinikiwi-frame-rpc-support?/tuples-96", + "pez-assets-common?/tuples-96", + "pez-generate-bags?/tuples-96", + "pezbp-header-pez-chain?/tuples-96", + "pezbp-messages?/tuples-96", + "pezbp-pezkuwi-core?/tuples-96", + "pezbp-relayers?/tuples-96", + "pezbp-runtime?/tuples-96", + "pezbp-teyrchains?/tuples-96", + "pezbp-xcm-bridge-hub?/tuples-96", + "pezbridge-hub-common?/tuples-96", + "pezbridge-hub-test-utils?/tuples-96", + "pezbridge-runtime-common?/tuples-96", + "pezcumulus-pezpallet-aura-ext?/tuples-96", + "pezcumulus-pezpallet-dmp-queue?/tuples-96", + "pezcumulus-pezpallet-session-benchmarking?/tuples-96", + "pezcumulus-pezpallet-solo-to-para?/tuples-96", + "pezcumulus-pezpallet-teyrchain-system?/tuples-96", + "pezcumulus-pezpallet-weight-reclaim?/tuples-96", + "pezcumulus-pezpallet-xcm?/tuples-96", + "pezcumulus-pezpallet-xcmp-queue?/tuples-96", + "pezcumulus-ping?/tuples-96", + "pezcumulus-primitives-storage-weight-reclaim?/tuples-96", + "pezcumulus-primitives-utility?/tuples-96", + "pezframe-benchmarking-cli?/tuples-96", + "pezframe-benchmarking-pezpallet-pov?/tuples-96", + "pezframe-benchmarking?/tuples-96", + "pezframe-election-provider-support?/tuples-96", + "pezframe-executive?/tuples-96", + "pezframe-metadata-hash-extension?/tuples-96", + "pezframe-support-procedural?/tuples-96", + "pezframe-support?/tuples-96", + "pezframe-system-benchmarking?/tuples-96", + "pezframe-system?/tuples-96", + "pezframe?/tuples-96", + "pezkuwi-omni-node-lib?/tuples-96", + "pezkuwi-runtime-common?/tuples-96", + "pezkuwi-runtime-teyrchains?/tuples-96", + "pezpallet-alliance?/tuples-96", + "pezpallet-asset-conversion-ops?/tuples-96", + "pezpallet-asset-conversion-tx-payment?/tuples-96", + "pezpallet-asset-conversion?/tuples-96", + "pezpallet-asset-rate?/tuples-96", + "pezpallet-asset-rewards?/tuples-96", + "pezpallet-asset-tx-payment?/tuples-96", + "pezpallet-assets-freezer?/tuples-96", + "pezpallet-assets-holder?/tuples-96", + "pezpallet-assets-precompiles?/tuples-96", + "pezpallet-assets?/tuples-96", + "pezpallet-atomic-swap?/tuples-96", + "pezpallet-aura?/tuples-96", + "pezpallet-authority-discovery?/tuples-96", + "pezpallet-authorship?/tuples-96", + "pezpallet-babe?/tuples-96", + "pezpallet-bags-list?/tuples-96", + "pezpallet-balances?/tuples-96", + "pezpallet-beefy-mmr?/tuples-96", + "pezpallet-beefy?/tuples-96", + "pezpallet-bounties?/tuples-96", + "pezpallet-bridge-grandpa?/tuples-96", + "pezpallet-bridge-messages?/tuples-96", + "pezpallet-bridge-relayers?/tuples-96", + "pezpallet-bridge-teyrchains?/tuples-96", + "pezpallet-broker?/tuples-96", + "pezpallet-child-bounties?/tuples-96", + "pezpallet-collator-selection?/tuples-96", + "pezpallet-collective-content?/tuples-96", + "pezpallet-collective?/tuples-96", + "pezpallet-contracts-mock-network?/tuples-96", + "pezpallet-contracts?/tuples-96", + "pezpallet-conviction-voting?/tuples-96", + "pezpallet-core-fellowship?/tuples-96", + "pezpallet-delegated-staking?/tuples-96", + "pezpallet-democracy?/tuples-96", + "pezpallet-derivatives?/tuples-96", + "pezpallet-dummy-dim?/tuples-96", + "pezpallet-election-provider-multi-block?/tuples-96", + "pezpallet-election-provider-multi-phase?/tuples-96", + "pezpallet-elections-phragmen?/tuples-96", + "pezpallet-fast-unstake?/tuples-96", + "pezpallet-glutton?/tuples-96", + "pezpallet-grandpa?/tuples-96", + "pezpallet-identity?/tuples-96", + "pezpallet-im-online?/tuples-96", + "pezpallet-indices?/tuples-96", + "pezpallet-insecure-randomness-collective-flip?/tuples-96", + "pezpallet-lottery?/tuples-96", + "pezpallet-membership?/tuples-96", + "pezpallet-message-queue?/tuples-96", + "pezpallet-meta-tx?/tuples-96", + "pezpallet-migrations?/tuples-96", + "pezpallet-minimal-template?/tuples-96", + "pezpallet-mixnet?/tuples-96", + "pezpallet-mmr?/tuples-96", + "pezpallet-multi-asset-bounties?/tuples-96", + "pezpallet-multisig?/tuples-96", + "pezpallet-nft-fractionalization?/tuples-96", + "pezpallet-nfts?/tuples-96", + "pezpallet-nis?/tuples-96", + "pezpallet-node-authorization?/tuples-96", + "pezpallet-nomination-pools-benchmarking?/tuples-96", + "pezpallet-nomination-pools?/tuples-96", + "pezpallet-offences-benchmarking?/tuples-96", + "pezpallet-offences?/tuples-96", + "pezpallet-oracle?/tuples-96", + "pezpallet-origin-restriction?/tuples-96", + "pezpallet-paged-list?/tuples-96", + "pezpallet-parameters?/tuples-96", + "pezpallet-people?/tuples-96", + "pezpallet-preimage?/tuples-96", + "pezpallet-proxy?/tuples-96", + "pezpallet-ranked-collective?/tuples-96", + "pezpallet-recovery?/tuples-96", + "pezpallet-referenda?/tuples-96", + "pezpallet-remark?/tuples-96", + "pezpallet-revive?/tuples-96", + "pezpallet-root-offences?/tuples-96", + "pezpallet-root-testing?/tuples-96", + "pezpallet-safe-mode?/tuples-96", + "pezpallet-salary?/tuples-96", + "pezpallet-scheduler?/tuples-96", + "pezpallet-scored-pool?/tuples-96", + "pezpallet-session-benchmarking?/tuples-96", + "pezpallet-session?/tuples-96", + "pezpallet-skip-feeless-payment?/tuples-96", + "pezpallet-society?/tuples-96", + "pezpallet-staking-async-ah-client?/tuples-96", + "pezpallet-staking-async-rc-client?/tuples-96", + "pezpallet-staking-async?/tuples-96", + "pezpallet-staking?/tuples-96", + "pezpallet-state-trie-migration?/tuples-96", + "pezpallet-statement?/tuples-96", + "pezpallet-sudo?/tuples-96", + "pezpallet-timestamp?/tuples-96", + "pezpallet-tips?/tuples-96", + "pezpallet-transaction-payment?/tuples-96", + "pezpallet-transaction-storage?/tuples-96", + "pezpallet-treasury?/tuples-96", + "pezpallet-tx-pause?/tuples-96", + "pezpallet-uniques?/tuples-96", + "pezpallet-utility?/tuples-96", + "pezpallet-verify-signature?/tuples-96", + "pezpallet-vesting?/tuples-96", + "pezpallet-whitelist?/tuples-96", + "pezpallet-xcm-benchmarks?/tuples-96", + "pezpallet-xcm-bridge-hub-router?/tuples-96", + "pezpallet-xcm-bridge-hub?/tuples-96", + "pezpallet-xcm-precompiles?/tuples-96", + "pezpallet-xcm?/tuples-96", + "pezstaging-teyrchain-info?/tuples-96", + "pezstaging-xcm-builder?/tuples-96", + "pezstaging-xcm-executor?/tuples-96", + "pezstaging-xcm?/tuples-96", + "testnet-teyrchains-constants?/tuples-96", + "teyrchains-common?/tuples-96", + "teyrchains-runtimes-test-utils?/tuples-96", + "xcm-pez-emulator?/tuples-96", + "xcm-pez-procedural?/tuples-96", + "xcm-pez-simulator?/tuples-96", + "xcm-runtime-pezapis?/tuples-96", +] [package.edition] workspace = true