diff --git a/Cargo.lock b/Cargo.lock index a701db02..61ef774c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1044,6 +1044,9 @@ name = "array-bytes" version = "6.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5d5dde061bd34119e902bbb2d9b90c5692635cf59fb91d582c2b68043f1b8293" +dependencies = [ + "serde", +] [[package]] name = "array-bytes" @@ -3935,6 +3938,7 @@ dependencies = [ "digest 0.10.7", "fiat-crypto", "rustc_version 0.4.1", + "serde", "subtle 2.6.1", "zeroize", ] @@ -4537,6 +4541,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53" dependencies = [ "pkcs8", + "serde", "signature", ] @@ -4566,6 +4571,7 @@ dependencies = [ "hashbrown 0.15.5", "pkcs8", "rand_core 0.6.4", + "serde", "sha2 0.10.9", "subtle 2.6.1", "zeroize", @@ -4740,6 +4746,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef" dependencies = [ "enumflags2_derive", + "serde", ] [[package]] @@ -5991,6 +5998,9 @@ name = "hex" version = "0.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" +dependencies = [ + "serde", +] [[package]] name = "hex-conservative" @@ -8078,6 +8088,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" dependencies = [ "scopeguard", + "serde", ] [[package]] @@ -22795,6 +22806,7 @@ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31" dependencies = [ "num-traits", "rand 0.8.5", + "serde", ] [[package]] @@ -22804,6 +22816,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e" dependencies = [ "rand_core 0.6.4", + "serde", ] [[package]] @@ -24053,10 +24066,12 @@ dependencies = [ "aead", "arrayref", "arrayvec 0.7.6", + "cfg-if", "curve25519-dalek", "getrandom_or_panic", "merlin", "rand_core 0.6.4", + "serde", "serde_bytes", "sha2 0.10.9", "subtle 2.6.1", @@ -24137,6 +24152,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10" dependencies = [ "secp256k1-sys 0.9.2", + "serde", ] [[package]] @@ -25115,7 +25131,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "057291e5631f280978fa9c8009390663ca4613359fc1318e36a8c24c392f6d1f" dependencies = [ "bitvec", + "hex", "num-bigint", + "serde", "sha2 0.9.9", "ssz_rs_derive", ] @@ -28671,6 +28689,7 @@ version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0" dependencies = [ + "serde", "zeroize_derive", ] diff --git a/bizinikiwi/bin/node/bench/Cargo.toml b/bizinikiwi/bin/node/bench/Cargo.toml index f6c53b02..9c2f82d1 100644 --- a/bizinikiwi/bin/node/bench/Cargo.toml +++ b/bizinikiwi/bin/node/bench/Cargo.toml @@ -63,3 +63,29 @@ runtime-benchmarks = [ "pezsp-timestamp/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +std = [ + "log/std", + "pez-node-testing/std", + "pezsc-basic-authorship/std", + "pezsc-client-api/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-consensus/std", + "pezsp-timestamp/std", +] +try-runtime = [ + "pez-kitchensink-runtime/try-runtime", + "pez-node-primitives/try-runtime", + "pez-node-testing/try-runtime", + "pezsc-basic-authorship/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] diff --git a/bizinikiwi/bin/node/cli/Cargo.toml b/bizinikiwi/bin/node/cli/Cargo.toml index 7ffcb828..626bc1eb 100644 --- a/bizinikiwi/bin/node/cli/Cargo.toml +++ b/bizinikiwi/bin/node/cli/Cargo.toml @@ -203,19 +203,234 @@ default = ["cli"] cli = ["clap", "clap_complete", "dep:node-inspect"] runtime-benchmarks = [ "bizinikiwi-cli-test-utils/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-wasm-builder/runtime-benchmarks", + "chain-spec-builder/runtime-benchmarks", + "gum/runtime-benchmarks", "node-inspect?/runtime-benchmarks", + "pez-generate-bags/runtime-benchmarks", "pez-kitchensink-runtime/runtime-benchmarks", "pez-node-primitives/runtime-benchmarks", "pez-node-rpc/runtime-benchmarks", "pez-node-testing/runtime-benchmarks", + "pez-subkey/runtime-benchmarks", "pezframe-benchmarking-cli?/runtime-benchmarks", + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezmmr-gadget/runtime-benchmarks", + "pezmmr-rpc/runtime-benchmarks", + "pezpallet-transaction-payment-rpc/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-service-test/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-blockchain/runtime-benchmarks", + "pezsp-consensus/runtime-benchmarks", + "pezsp-inherents/runtime-benchmarks", + "pezsp-io/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", + "pezsp-mmr-primitives/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", + "pezsp-statement-store/runtime-benchmarks", + "pezsp-timestamp/runtime-benchmarks", + "pezsp-transaction-storage-proof/runtime-benchmarks", + "remote-externalities/runtime-benchmarks", ] storage-benchmark = ["pezframe-benchmarking-cli/storage-benchmark"] try-runtime = [ "bizinikiwi-cli-test-utils/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", + "node-inspect?/try-runtime", + "pez-generate-bags/try-runtime", "pez-kitchensink-runtime/try-runtime", + "pez-node-primitives/try-runtime", + "pez-node-rpc/try-runtime", + "pez-node-testing/try-runtime", + "pezframe-benchmarking-cli?/try-runtime", + "pezmmr-gadget/try-runtime", + "pezmmr-rpc/try-runtime", + "pezpallet-transaction-payment-rpc/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-test/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-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-mmr-primitives/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-statement-store/try-runtime", + "pezsp-timestamp/try-runtime", + "pezsp-transaction-storage-proof/try-runtime", + "remote-externalities/try-runtime", ] +std = [ + "bizinikiwi-cli-test-utils/std", + "bizinikiwi-frame-rpc-support/std", + "bizinikiwi-frame-rpc-system/std", + "bizinikiwi-rpc-client/std", + "bizinikiwi-state-trie-migration-rpc/std", + "bizinikiwi-wasm-builder/std", + "chain-spec-builder/std", + "gum/std", + "log/std", + "node-inspect?/std", + "pez-fork-tree/std", + "pez-generate-bags/std", + "pez-node-rpc/std", + "pez-node-testing/std", + "pez-subkey/std", + "pezframe-benchmarking-cli?/std", + "pezmmr-gadget/std", + "pezmmr-rpc/std", + "pezpallet-transaction-payment-rpc/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-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-service-test/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-blockchain/std", + "pezsp-consensus/std", + "pezsp-core-hashing-proc-macro/std", + "pezsp-keyring/std", + "pezsp-panic-handler/std", + "pezsp-rpc/std", + "pezsp-runtime/std", + "prometheus-endpoint/std", + "remote-externalities/std", +] +serde = [] +experimental = [] +with-tracing = [] diff --git a/bizinikiwi/bin/node/inspect/Cargo.toml b/bizinikiwi/bin/node/inspect/Cargo.toml index 6d3638d7..70788e90 100644 --- a/bizinikiwi/bin/node/inspect/Cargo.toml +++ b/bizinikiwi/bin/node/inspect/Cargo.toml @@ -38,3 +38,19 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-statement-store/runtime-benchmarks", ] +std = [ + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-service/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsc-cli/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-service/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-statement-store/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/bin/node/primitives/Cargo.toml b/bizinikiwi/bin/node/primitives/Cargo.toml index 78c35e86..4bb5963c 100644 --- a/bizinikiwi/bin/node/primitives/Cargo.toml +++ b/bizinikiwi/bin/node/primitives/Cargo.toml @@ -24,3 +24,7 @@ pezsp-runtime = { workspace = true } default = ["std"] std = ["pezsp-core/std", "pezsp-runtime/std"] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/bin/node/rpc/Cargo.toml b/bizinikiwi/bin/node/rpc/Cargo.toml index f7ecc0d2..103ad127 100644 --- a/bizinikiwi/bin/node/rpc/Cargo.toml +++ b/bizinikiwi/bin/node/rpc/Cargo.toml @@ -66,6 +66,7 @@ runtime-benchmarks = [ "pezsc-sync-state-rpc/runtime-benchmarks", "pezsc-transaction-pool-api/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", @@ -74,3 +75,51 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-statement-store/runtime-benchmarks", ] +std = [ + "bizinikiwi-frame-rpc-system/std", + "bizinikiwi-state-trie-migration-rpc/std", + "pezmmr-rpc/std", + "pezpallet-transaction-payment-rpc/std", + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-consensus-babe-rpc/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-beefy-rpc/std", + "pezsc-consensus-beefy/std", + "pezsc-consensus-grandpa-rpc/std", + "pezsc-consensus-grandpa/std", + "pezsc-mixnet/std", + "pezsc-rpc/std", + "pezsc-sync-state-rpc/std", + "pezsc-transaction-pool-api/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-frame-rpc-system/try-runtime", + "bizinikiwi-state-trie-migration-rpc/try-runtime", + "pez-node-primitives/try-runtime", + "pezmmr-rpc/try-runtime", + "pezpallet-transaction-payment-rpc/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/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-grandpa-rpc/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsc-mixnet/try-runtime", + "pezsc-rpc/try-runtime", + "pezsc-sync-state-rpc/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-statement-store/try-runtime", +] +serde = [] diff --git a/bizinikiwi/bin/node/runtime/Cargo.toml b/bizinikiwi/bin/node/runtime/Cargo.toml index f74c6f98..8e77ebde 100644 --- a/bizinikiwi/bin/node/runtime/Cargo.toml +++ b/bizinikiwi/bin/node/runtime/Cargo.toml @@ -55,6 +55,7 @@ default = ["std"] with-tracing = ["pezkuwi-sdk/with-tracing"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "log/std", "pez-node-primitives/std", @@ -81,6 +82,7 @@ runtime-benchmarks = [ "rand_pcg", ] try-runtime = [ + "pez-node-primitives/try-runtime", "pezframe-try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-sdk/try-runtime", @@ -88,5 +90,10 @@ try-runtime = [ "pezpallet-example-tasks/try-runtime", "pezsp-runtime/try-runtime", ] -experimental = ["pezpallet-example-tasks/experimental"] +experimental = [ + "pezkuwi-sdk/experimental", + "pezpallet-example-tasks/experimental", +] metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] +serde = [] +tuples-96 = [] diff --git a/bizinikiwi/bin/node/testing/Cargo.toml b/bizinikiwi/bin/node/testing/Cargo.toml index 44927e6e..5c126317 100644 --- a/bizinikiwi/bin/node/testing/Cargo.toml +++ b/bizinikiwi/bin/node/testing/Cargo.toml @@ -80,3 +80,45 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-client/std", + "log/std", + "node-cli/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-consensus/std", + "pezsc-service/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "pezsp-timestamp/std", +] +try-runtime = [ + "bizinikiwi-test-client/try-runtime", + "node-cli/try-runtime", + "pez-kitchensink-runtime/try-runtime", + "pez-node-primitives/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-asset-conversion-tx-payment/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezpallet-revive/try-runtime", + "pezpallet-skip-feeless-payment/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-client-db/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-service/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] diff --git a/bizinikiwi/bin/utils/chain-spec-builder/Cargo.toml b/bizinikiwi/bin/utils/chain-spec-builder/Cargo.toml index e334e7f6..33cce68a 100644 --- a/bizinikiwi/bin/utils/chain-spec-builder/Cargo.toml +++ b/bizinikiwi/bin/utils/chain-spec-builder/Cargo.toml @@ -50,3 +50,7 @@ runtime-benchmarks = [ # "bizinikiwi-test-runtime/runtime-benchmarks", "pezsc-chain-spec/runtime-benchmarks", ] +std = [ + "pezsc-chain-spec/std", +] +with-tracing = [] diff --git a/bizinikiwi/bin/utils/pez-subkey/Cargo.toml b/bizinikiwi/bin/utils/pez-subkey/Cargo.toml index e81724bf..525af423 100644 --- a/bizinikiwi/bin/utils/pez-subkey/Cargo.toml +++ b/bizinikiwi/bin/utils/pez-subkey/Cargo.toml @@ -26,3 +26,6 @@ pezsc-cli = { workspace = true, default-features = true } [features] runtime-benchmarks = ["pezsc-cli/runtime-benchmarks"] +std = [ + "pezsc-cli/std", +] diff --git a/bizinikiwi/client/allocator/Cargo.toml b/bizinikiwi/client/allocator/Cargo.toml index 8c84f984..14ae03c0 100644 --- a/bizinikiwi/client/allocator/Cargo.toml +++ b/bizinikiwi/client/allocator/Cargo.toml @@ -21,3 +21,9 @@ log = { workspace = true, default-features = true } pezsp-core = { workspace = true, default-features = true } pezsp-wasm-interface = { workspace = true, default-features = true } thiserror = { workspace = true } + +[features] +std = [ + "log/std", +] +serde = [] diff --git a/bizinikiwi/client/api/Cargo.toml b/bizinikiwi/client/api/Cargo.toml index e1212d4a..f58baef5 100644 --- a/bizinikiwi/client/api/Cargo.toml +++ b/bizinikiwi/client/api/Cargo.toml @@ -52,3 +52,24 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +std = [ + "codec/std", + "log/std", + "pezsc-transaction-pool-api/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "pezsp-core/std", + "pezsp-runtime/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/authority-discovery/Cargo.toml b/bizinikiwi/client/authority-discovery/Cargo.toml index de9147a2..a2d9641a 100644 --- a/bizinikiwi/client/authority-discovery/Cargo.toml +++ b/bizinikiwi/client/authority-discovery/Cargo.toml @@ -64,3 +64,29 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "codec/std", + "hex/std", + "log/std", + "pezsc-client-api/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsp-blockchain/std", + "prometheus-endpoint/std", + "serde/std", + "serde_json/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsp-api/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/basic-authorship/Cargo.toml b/bizinikiwi/client/basic-authorship/Cargo.toml index eba17c4f..71db234d 100644 --- a/bizinikiwi/client/basic-authorship/Cargo.toml +++ b/bizinikiwi/client/basic-authorship/Cargo.toml @@ -53,3 +53,29 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-proposer-metrics/std", + "pezsc-telemetry/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/block-builder/Cargo.toml b/bizinikiwi/client/block-builder/Cargo.toml index 1b5d6713..c70539ac 100644 --- a/bizinikiwi/client/block-builder/Cargo.toml +++ b/bizinikiwi/client/block-builder/Cargo.toml @@ -41,3 +41,16 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/chain-spec/Cargo.toml b/bizinikiwi/client/chain-spec/Cargo.toml index 05486149..2ad2870d 100644 --- a/bizinikiwi/client/chain-spec/Cargo.toml +++ b/bizinikiwi/client/chain-spec/Cargo.toml @@ -52,6 +52,7 @@ runtime-benchmarks = [ "pezsc-client-api/runtime-benchmarks", "pezsc-executor/runtime-benchmarks", "pezsc-network/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-genesis-builder/runtime-benchmarks", @@ -60,3 +61,26 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "codec/std", + "pezsc-client-api/std", + "pezsc-network/std", + "pezsc-telemetry/std", + "pezsp-application-crypto/std", + "pezsp-blockchain/std", + "pezsp-consensus-babe/std", + "pezsp-io/std", +] +try-runtime = [ + "bizinikiwi-test-runtime/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-network/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/cli/Cargo.toml b/bizinikiwi/client/cli/Cargo.toml index 3e385310..724aed42 100644 --- a/bizinikiwi/client/cli/Cargo.toml +++ b/bizinikiwi/client/cli/Cargo.toml @@ -68,6 +68,7 @@ rocksdb = ["pezsc-client-db/rocksdb"] runtime-benchmarks = [ "pezsc-client-api/runtime-benchmarks", "pezsc-client-db/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-mixnet/runtime-benchmarks", "pezsc-network/runtime-benchmarks", "pezsc-service/runtime-benchmarks", @@ -78,3 +79,33 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-keystore/std", + "pezsc-mixnet/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsc-telemetry/std", + "pezsc-tracing/std", + "pezsc-transaction-pool/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-panic-handler/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-client-db/try-runtime", + "pezsc-mixnet/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsc-tracing/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/consensus/aura/Cargo.toml b/bizinikiwi/client/consensus/aura/Cargo.toml index e4c5a2b9..ed24ef04 100644 --- a/bizinikiwi/client/consensus/aura/Cargo.toml +++ b/bizinikiwi/client/consensus/aura/Cargo.toml @@ -60,9 +60,11 @@ runtime-benchmarks = [ "pezsc-client-api/runtime-benchmarks", "pezsc-consensus-slots/runtime-benchmarks", "pezsc-consensus/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network-test/runtime-benchmarks", "pezsc-network/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-aura/runtime-benchmarks", @@ -73,3 +75,39 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pez-fork-tree/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-consensus-slots/std", + "pezsc-consensus/std", + "pezsc-keystore/std", + "pezsc-network-test/std", + "pezsc-network/std", + "pezsc-telemetry/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-slots/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network-test/try-runtime", + "pezsc-network/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/consensus/babe/Cargo.toml b/bizinikiwi/client/consensus/babe/Cargo.toml index 60059ec0..ed1bedd3 100644 --- a/bizinikiwi/client/consensus/babe/Cargo.toml +++ b/bizinikiwi/client/consensus/babe/Cargo.toml @@ -67,6 +67,7 @@ runtime-benchmarks = [ "pezsc-network-test/runtime-benchmarks", "pezsc-transaction-pool-api/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", @@ -77,3 +78,41 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "num-bigint/std", + "pez-fork-tree/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-consensus-epochs/std", + "pezsc-consensus-slots/std", + "pezsc-consensus/std", + "pezsc-network-test/std", + "pezsc-telemetry/std", + "pezsc-transaction-pool-api/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-epochs/try-runtime", + "pezsc-consensus-slots/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network-test/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/consensus/babe/rpc/Cargo.toml b/bizinikiwi/client/consensus/babe/rpc/Cargo.toml index 8d0bc9ef..109f6dbe 100644 --- a/bizinikiwi/client/consensus/babe/rpc/Cargo.toml +++ b/bizinikiwi/client/consensus/babe/rpc/Cargo.toml @@ -53,9 +53,35 @@ runtime-benchmarks = [ "pezsc-rpc-api/runtime-benchmarks", "pezsc-transaction-pool-api/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-consensus/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-epochs/std", + "pezsc-consensus/std", + "pezsc-rpc-api/std", + "pezsc-transaction-pool-api/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsc-consensus-epochs/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/consensus/beefy/Cargo.toml b/bizinikiwi/client/consensus/beefy/Cargo.toml index f10e38fa..89ef3b7b 100644 --- a/bizinikiwi/client/consensus/beefy/Cargo.toml +++ b/bizinikiwi/client/consensus/beefy/Cargo.toml @@ -67,9 +67,44 @@ runtime-benchmarks = [ "pezsc-network-test/runtime-benchmarks", "pezsc-network/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-beefy/runtime-benchmarks", "pezsp-consensus/runtime-benchmarks", "pezsp-mmr-primitives/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsc-network-gossip/std", + "pezsc-network-sync/std", + "pezsc-network-test/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network-gossip/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network-test/try-runtime", + "pezsc-network/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-mmr-primitives/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/consensus/beefy/rpc/Cargo.toml b/bizinikiwi/client/consensus/beefy/rpc/Cargo.toml index e1e6ee1d..a7bcb17a 100644 --- a/bizinikiwi/client/consensus/beefy/rpc/Cargo.toml +++ b/bizinikiwi/client/consensus/beefy/rpc/Cargo.toml @@ -43,6 +43,21 @@ runtime-benchmarks = [ "bizinikiwi-test-runtime-client/runtime-benchmarks", "pezsc-consensus-beefy/runtime-benchmarks", "pezsc-rpc/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-beefy/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-consensus-beefy/std", + "pezsc-rpc/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-consensus-beefy/try-runtime", + "pezsc-rpc/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/consensus/common/Cargo.toml b/bizinikiwi/client/consensus/common/Cargo.toml index 0c5b6949..17a97323 100644 --- a/bizinikiwi/client/consensus/common/Cargo.toml +++ b/bizinikiwi/client/consensus/common/Cargo.toml @@ -46,3 +46,20 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-test-primitives/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-client-api/std", + "pezsc-network-types/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-test-primitives/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/consensus/epochs/Cargo.toml b/bizinikiwi/client/consensus/epochs/Cargo.toml index 96f3cee8..a9d626a5 100644 --- a/bizinikiwi/client/consensus/epochs/Cargo.toml +++ b/bizinikiwi/client/consensus/epochs/Cargo.toml @@ -31,3 +31,16 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pez-fork-tree/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/consensus/grandpa/Cargo.toml b/bizinikiwi/client/consensus/grandpa/Cargo.toml index aef77c69..a4b9601e 100644 --- a/bizinikiwi/client/consensus/grandpa/Cargo.toml +++ b/bizinikiwi/client/consensus/grandpa/Cargo.toml @@ -83,9 +83,52 @@ runtime-benchmarks = [ "pezsc-network/runtime-benchmarks", "pezsc-transaction-pool-api/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-grandpa/runtime-benchmarks", "pezsp-consensus/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pez-fork-tree/std", + "pezsc-block-builder/std", + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsc-network-common/std", + "pezsc-network-gossip/std", + "pezsc-network-sync/std", + "pezsc-network-test/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-telemetry/std", + "pezsc-transaction-pool-api/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network-common/try-runtime", + "pezsc-network-gossip/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network-test/try-runtime", + "pezsc-network/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/consensus/grandpa/rpc/Cargo.toml b/bizinikiwi/client/consensus/grandpa/rpc/Cargo.toml index 59656ad4..b7dc6baf 100644 --- a/bizinikiwi/client/consensus/grandpa/rpc/Cargo.toml +++ b/bizinikiwi/client/consensus/grandpa/rpc/Cargo.toml @@ -56,3 +56,24 @@ runtime-benchmarks = [ "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-consensus-grandpa/std", + "pezsc-rpc/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsc-rpc/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/consensus/manual-seal/Cargo.toml b/bizinikiwi/client/consensus/manual-seal/Cargo.toml index 9ba57036..22e441de 100644 --- a/bizinikiwi/client/consensus/manual-seal/Cargo.toml +++ b/bizinikiwi/client/consensus/manual-seal/Cargo.toml @@ -81,3 +81,40 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "bizinikiwi-test-runtime-transaction-pool/std", + "log/std", + "pezsc-basic-authorship/std", + "pezsc-client-api/std", + "pezsc-consensus-aura/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-epochs/std", + "pezsc-consensus/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "bizinikiwi-test-runtime-transaction-pool/try-runtime", + "pezsc-basic-authorship/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-aura/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsc-consensus-epochs/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/consensus/pow/Cargo.toml b/bizinikiwi/client/consensus/pow/Cargo.toml index 94e223a0..636e3235 100644 --- a/bizinikiwi/client/consensus/pow/Cargo.toml +++ b/bizinikiwi/client/consensus/pow/Cargo.toml @@ -48,3 +48,23 @@ runtime-benchmarks = [ "pezsp-inherents/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-pow/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/consensus/slots/Cargo.toml b/bizinikiwi/client/consensus/slots/Cargo.toml index 882cdae9..792cb5ab 100644 --- a/bizinikiwi/client/consensus/slots/Cargo.toml +++ b/bizinikiwi/client/consensus/slots/Cargo.toml @@ -50,3 +50,22 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsc-telemetry/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/db/Cargo.toml b/bizinikiwi/client/db/Cargo.toml index 5c952b1d..a8599e52 100644 --- a/bizinikiwi/client/db/Cargo.toml +++ b/bizinikiwi/client/db/Cargo.toml @@ -69,3 +69,21 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", ] rocksdb = ["kvdb-rocksdb"] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-client-api/std", + "pezsc-state-db/std", + "pezsp-blockchain/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pez-kitchensink-runtime/try-runtime", + "pezsc-client-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] diff --git a/bizinikiwi/client/executor/Cargo.toml b/bizinikiwi/client/executor/Cargo.toml index 82e59e0d..9745aabe 100644 --- a/bizinikiwi/client/executor/Cargo.toml +++ b/bizinikiwi/client/executor/Cargo.toml @@ -62,11 +62,16 @@ default = ["std"] # This crate does not have `no_std` support, we just require this for tests std = [ "bizinikiwi-test-runtime/std", + "pezsc-executor-common/std", + "pezsc-executor-polkavm/std", + "pezsc-executor-wasmtime/std", "pezsc-runtime-test/std", + "pezsc-tracing/std", "pezsp-api/std", "pezsp-core/std", "pezsp-externalities/std", "pezsp-io/std", + "pezsp-panic-handler/std", "pezsp-runtime-interface/std", "pezsp-runtime/std", "pezsp-state-machine/std", @@ -89,3 +94,13 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +try-runtime = [ + "bizinikiwi-test-runtime/try-runtime", + "pezsc-runtime-test/try-runtime", + "pezsc-tracing/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/executor/common/Cargo.toml b/bizinikiwi/client/executor/common/Cargo.toml index 4c69e05a..6a9f29e9 100644 --- a/bizinikiwi/client/executor/common/Cargo.toml +++ b/bizinikiwi/client/executor/common/Cargo.toml @@ -26,3 +26,7 @@ wasm-instrument = { workspace = true, default-features = true } [features] default = [] +std = [ + "pezsc-allocator/std", + "polkavm/std", +] diff --git a/bizinikiwi/client/executor/polkavm/Cargo.toml b/bizinikiwi/client/executor/polkavm/Cargo.toml index 3812f6da..534d6d6a 100644 --- a/bizinikiwi/client/executor/polkavm/Cargo.toml +++ b/bizinikiwi/client/executor/polkavm/Cargo.toml @@ -22,3 +22,11 @@ polkavm = { workspace = true } pezsc-executor-common = { workspace = true, default-features = true } pezsp-wasm-interface = { workspace = true, default-features = true } + +[features] +std = [ + "log/std", + "pezsc-executor-common/std", + "polkavm/std", +] +serde = [] diff --git a/bizinikiwi/client/executor/runtime-test/Cargo.toml b/bizinikiwi/client/executor/runtime-test/Cargo.toml index 0b20018d..bdd71831 100644 --- a/bizinikiwi/client/executor/runtime-test/Cargo.toml +++ b/bizinikiwi/client/executor/runtime-test/Cargo.toml @@ -30,6 +30,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "pezsp-core/std", "pezsp-io/std", "pezsp-runtime-interface/std", @@ -41,3 +42,8 @@ runtime-benchmarks = [ "pezsp-runtime-interface/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/executor/wasmtime/Cargo.toml b/bizinikiwi/client/executor/wasmtime/Cargo.toml index 86aa129c..d94223bc 100644 --- a/bizinikiwi/client/executor/wasmtime/Cargo.toml +++ b/bizinikiwi/client/executor/wasmtime/Cargo.toml @@ -71,3 +71,13 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime-interface/runtime-benchmarks", ] +std = [ + "anyhow/std", + "log/std", + "pezsc-allocator/std", + "pezsc-executor-common/std", + "rustix/std", + "wasmtime/std", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/informant/Cargo.toml b/bizinikiwi/client/informant/Cargo.toml index 356eda5b..3f023087 100644 --- a/bizinikiwi/client/informant/Cargo.toml +++ b/bizinikiwi/client/informant/Cargo.toml @@ -35,3 +35,18 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-client-api/std", + "pezsc-network-sync/std", + "pezsc-network/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/keystore/Cargo.toml b/bizinikiwi/client/keystore/Cargo.toml index eb13db91..2f792b8c 100644 --- a/bizinikiwi/client/keystore/Cargo.toml +++ b/bizinikiwi/client/keystore/Cargo.toml @@ -45,3 +45,8 @@ bandersnatch-experimental = [ "pezsp-core/bandersnatch-experimental", "pezsp-keystore/bandersnatch-experimental", ] +std = [] +serde = [] +runtime-benchmarks = [ + "pezsp-application-crypto/runtime-benchmarks", +] diff --git a/bizinikiwi/client/merkle-mountain-range/Cargo.toml b/bizinikiwi/client/merkle-mountain-range/Cargo.toml index bbd5bfa7..93efe6f2 100644 --- a/bizinikiwi/client/merkle-mountain-range/Cargo.toml +++ b/bizinikiwi/client/merkle-mountain-range/Cargo.toml @@ -48,3 +48,24 @@ runtime-benchmarks = [ "pezsp-mmr-primitives/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-offchain/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-offchain/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-mmr-primitives/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/merkle-mountain-range/rpc/Cargo.toml b/bizinikiwi/client/merkle-mountain-range/rpc/Cargo.toml index 55302213..0875e63a 100644 --- a/bizinikiwi/client/merkle-mountain-range/rpc/Cargo.toml +++ b/bizinikiwi/client/merkle-mountain-range/rpc/Cargo.toml @@ -39,3 +39,13 @@ runtime-benchmarks = [ "pezsp-mmr-primitives/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-mmr-primitives/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/mixnet/Cargo.toml b/bizinikiwi/client/mixnet/Cargo.toml index bf7b44cd..bbce5042 100644 --- a/bizinikiwi/client/mixnet/Cargo.toml +++ b/bizinikiwi/client/mixnet/Cargo.toml @@ -52,3 +52,21 @@ runtime-benchmarks = [ "pezsp-mixnet/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "codec/std", + "log/std", + "pezsc-client-api/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-transaction-pool-api/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-network/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/network-gossip/Cargo.toml b/bizinikiwi/client/network-gossip/Cargo.toml index f42682fa..0b6d36cc 100644 --- a/bizinikiwi/client/network-gossip/Cargo.toml +++ b/bizinikiwi/client/network-gossip/Cargo.toml @@ -45,3 +45,20 @@ runtime-benchmarks = [ "pezsc-network/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-network-common/std", + "pezsc-network-sync/std", + "pezsc-network-types/std", + "pezsc-network/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-network-common/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/network/Cargo.toml b/bizinikiwi/client/network/Cargo.toml index f4b6b31c..f575a5ac 100644 --- a/bizinikiwi/client/network/Cargo.toml +++ b/bizinikiwi/client/network/Cargo.toml @@ -122,3 +122,29 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-network-common/std", + "pezsc-network-types/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", + "unsigned-varint/std", + "zeroize/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-network-common/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/network/common/Cargo.toml b/bizinikiwi/client/network/common/Cargo.toml index cc8087de..5c8fd4f2 100644 --- a/bizinikiwi/client/network/common/Cargo.toml +++ b/bizinikiwi/client/network/common/Cargo.toml @@ -22,3 +22,8 @@ pezsp-runtime = { workspace = true, default-features = true } [features] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +std = [] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/network/light/Cargo.toml b/bizinikiwi/client/network/light/Cargo.toml index 4fb32f71..14e7aeb3 100644 --- a/bizinikiwi/client/network/light/Cargo.toml +++ b/bizinikiwi/client/network/light/Cargo.toml @@ -40,3 +40,17 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-client-api/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-network/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/network/statement/Cargo.toml b/bizinikiwi/client/network/statement/Cargo.toml index 3b156325..a8b0523d 100644 --- a/bizinikiwi/client/network/statement/Cargo.toml +++ b/bizinikiwi/client/network/statement/Cargo.toml @@ -43,3 +43,21 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-statement-store/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-network-common/std", + "pezsc-network-sync/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezsc-network-common/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-statement-store/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/network/sync/Cargo.toml b/bizinikiwi/client/network/sync/Cargo.toml index 20c5023e..199e3aa1 100644 --- a/bizinikiwi/client/network/sync/Cargo.toml +++ b/bizinikiwi/client/network/sync/Cargo.toml @@ -71,3 +71,33 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-test-primitives/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pez-fork-tree/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsc-network-common/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network-common/try-runtime", + "pezsc-network/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-test-primitives/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/network/test/Cargo.toml b/bizinikiwi/client/network/test/Cargo.toml index 5e5605c3..15ad527f 100644 --- a/bizinikiwi/client/network/test/Cargo.toml +++ b/bizinikiwi/client/network/test/Cargo.toml @@ -60,3 +60,36 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsc-network-common/std", + "pezsc-network-light/std", + "pezsc-network-sync/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network-common/try-runtime", + "pezsc-network-light/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/network/transactions/Cargo.toml b/bizinikiwi/client/network/transactions/Cargo.toml index e3723c3c..c8a520ae 100644 --- a/bizinikiwi/client/network/transactions/Cargo.toml +++ b/bizinikiwi/client/network/transactions/Cargo.toml @@ -37,3 +37,21 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-network-common/std", + "pezsc-network-sync/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-utils/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezsc-network-common/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/network/types/Cargo.toml b/bizinikiwi/client/network/types/Cargo.toml index 1ef9221a..4acb3281 100644 --- a/bizinikiwi/client/network/types/Cargo.toml +++ b/bizinikiwi/client/network/types/Cargo.toml @@ -27,3 +27,14 @@ zeroize = { workspace = true } [dev-dependencies] quickcheck = { workspace = true, default-features = true } + +[features] +std = [ + "bytes/std", + "log/std", + "multihash/std", + "serde/std", + "serde_with/std", + "zeroize/std", +] +serde = [] diff --git a/bizinikiwi/client/offchain/Cargo.toml b/bizinikiwi/client/offchain/Cargo.toml index 76c327b6..77872d41 100644 --- a/bizinikiwi/client/offchain/Cargo.toml +++ b/bizinikiwi/client/offchain/Cargo.toml @@ -77,3 +77,31 @@ runtime-benchmarks = [ "pezsp-offchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsc-utils/std", + "pezsp-consensus/std", + "rustls/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-client-db/try-runtime", + "pezsc-network/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/proposer-metrics/Cargo.toml b/bizinikiwi/client/proposer-metrics/Cargo.toml index f8cb39f0..49bfee99 100644 --- a/bizinikiwi/client/proposer-metrics/Cargo.toml +++ b/bizinikiwi/client/proposer-metrics/Cargo.toml @@ -19,3 +19,10 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] log = { workspace = true, default-features = true } prometheus-endpoint = { workspace = true, default-features = true } + +[features] +std = [ + "log/std", + "prometheus-endpoint/std", +] +serde = [] diff --git a/bizinikiwi/client/rpc-api/Cargo.toml b/bizinikiwi/client/rpc-api/Cargo.toml index 6c89631a..c51698ab 100644 --- a/bizinikiwi/client/rpc-api/Cargo.toml +++ b/bizinikiwi/client/rpc-api/Cargo.toml @@ -43,3 +43,18 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "pezsc-chain-spec/std", + "pezsc-mixnet/std", + "pezsc-transaction-pool-api/std", + "pezsp-rpc/std", + "scale-info/std", +] +try-runtime = [ + "pezsc-chain-spec/try-runtime", + "pezsc-mixnet/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/rpc-servers/Cargo.toml b/bizinikiwi/client/rpc-servers/Cargo.toml index e76705d0..8e585288 100644 --- a/bizinikiwi/client/rpc-servers/Cargo.toml +++ b/bizinikiwi/client/rpc-servers/Cargo.toml @@ -39,3 +39,10 @@ tower-http = { workspace = true, features = ["cors"] } [features] runtime-benchmarks = ["pezsc-rpc-api/runtime-benchmarks"] +std = [ + "log/std", + "pezsc-rpc-api/std", + "prometheus-endpoint/std", + "serde/std", +] +serde = [] diff --git a/bizinikiwi/client/rpc-spec-v2/Cargo.toml b/bizinikiwi/client/rpc-spec-v2/Cargo.toml index caf6b656..ef21082b 100644 --- a/bizinikiwi/client/rpc-spec-v2/Cargo.toml +++ b/bizinikiwi/client/rpc-spec-v2/Cargo.toml @@ -89,3 +89,39 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "bizinikiwi-test-runtime-transaction-pool/std", + "futures-util/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-rpc/std", + "pezsc-service/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "pezsp-rpc/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "bizinikiwi-test-runtime-transaction-pool/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-rpc/try-runtime", + "pezsc-service/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/rpc/Cargo.toml b/bizinikiwi/client/rpc/Cargo.toml index c05d529c..166dd511 100644 --- a/bizinikiwi/client/rpc/Cargo.toml +++ b/bizinikiwi/client/rpc/Cargo.toml @@ -74,3 +74,41 @@ runtime-benchmarks = [ "pezsp-statement-store/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-mixnet/std", + "pezsc-network/std", + "pezsc-rpc-api/std", + "pezsc-tracing/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "pezsp-rpc/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-mixnet/try-runtime", + "pezsc-network/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsc-tracing/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-statement-store/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/runtime-utilities/Cargo.toml b/bizinikiwi/client/runtime-utilities/Cargo.toml index 96b3e6db..08ff9c8a 100644 --- a/bizinikiwi/client/runtime-utilities/Cargo.toml +++ b/bizinikiwi/client/runtime-utilities/Cargo.toml @@ -38,8 +38,15 @@ pezsp-version = { workspace = true, default-features = true } runtime-benchmarks = [ "pezcumulus-primitives-proof-size-hostfunction/runtime-benchmarks", "pezcumulus-test-runtime/runtime-benchmarks", + "pezkuwi-subxt/runtime-benchmarks", "pezsc-executor/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "pezkuwi-subxt/std", + "pezsc-executor-common/std", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/service/Cargo.toml b/bizinikiwi/client/service/Cargo.toml index f8c72c27..651f53b8 100644 --- a/bizinikiwi/client/service/Cargo.toml +++ b/bizinikiwi/client/service/Cargo.toml @@ -97,6 +97,7 @@ runtime-benchmarks = [ "pezsc-consensus/runtime-benchmarks", "pezsc-executor/runtime-benchmarks", "pezsc-informant/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network-common/runtime-benchmarks", "pezsc-network-light/runtime-benchmarks", "pezsc-network-sync/runtime-benchmarks", @@ -120,3 +121,61 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-consensus/std", + "pezsc-informant/std", + "pezsc-keystore/std", + "pezsc-network-common/std", + "pezsc-network-light/std", + "pezsc-network-sync/std", + "pezsc-network-transactions/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-rpc-server/std", + "pezsc-rpc-spec-v2/std", + "pezsc-rpc/std", + "pezsc-sysinfo/std", + "pezsc-telemetry/std", + "pezsc-tracing/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-client-db/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-informant/try-runtime", + "pezsc-network-common/try-runtime", + "pezsc-network-light/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network-transactions/try-runtime", + "pezsc-network/try-runtime", + "pezsc-rpc-spec-v2/try-runtime", + "pezsc-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-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-transaction-storage-proof/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/service/test/Cargo.toml b/bizinikiwi/client/service/test/Cargo.toml index e70a5ca3..ed4de77f 100644 --- a/bizinikiwi/client/service/test/Cargo.toml +++ b/bizinikiwi/client/service/test/Cargo.toml @@ -67,3 +67,36 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-consensus/std", + "pezsc-network-sync/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsc-transaction-pool-api/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-client-db/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/state-db/Cargo.toml b/bizinikiwi/client/state-db/Cargo.toml index 349bf986..10d799ef 100644 --- a/bizinikiwi/client/state-db/Cargo.toml +++ b/bizinikiwi/client/state-db/Cargo.toml @@ -21,3 +21,9 @@ codec = { features = ["derive"], workspace = true, default-features = true } log = { workspace = true, default-features = true } parking_lot = { workspace = true, default-features = true } pezsp-core = { workspace = true, default-features = true } + +[features] +std = [ + "log/std", +] +serde = [] diff --git a/bizinikiwi/client/statement-store/Cargo.toml b/bizinikiwi/client/statement-store/Cargo.toml index e2dafe23..f2c2e21f 100644 --- a/bizinikiwi/client/statement-store/Cargo.toml +++ b/bizinikiwi/client/statement-store/Cargo.toml @@ -44,9 +44,29 @@ required-features = [] [features] runtime-benchmarks = [ "pezsc-client-api/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network-statement/runtime-benchmarks", "pezsp-api/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-statement-store/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-client-api/std", + "pezsc-keystore/std", + "pezsc-network-statement/std", + "pezsp-blockchain/std", + "pezsp-tracing/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-network-statement/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-statement-store/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/storage-monitor/Cargo.toml b/bizinikiwi/client/storage-monitor/Cargo.toml index 8a880217..7f622d18 100644 --- a/bizinikiwi/client/storage-monitor/Cargo.toml +++ b/bizinikiwi/client/storage-monitor/Cargo.toml @@ -19,3 +19,9 @@ log = { workspace = true, default-features = true } pezsp-core = { workspace = true, default-features = true } thiserror = { workspace = true } tokio = { features = ["time"], workspace = true, default-features = true } + +[features] +std = [ + "log/std", +] +serde = [] diff --git a/bizinikiwi/client/sync-state-rpc/Cargo.toml b/bizinikiwi/client/sync-state-rpc/Cargo.toml index ffc6bc9d..171928db 100644 --- a/bizinikiwi/client/sync-state-rpc/Cargo.toml +++ b/bizinikiwi/client/sync-state-rpc/Cargo.toml @@ -43,3 +43,21 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-epochs/std", + "pezsc-consensus-grandpa/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsc-consensus-epochs/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/sysinfo/Cargo.toml b/bizinikiwi/client/sysinfo/Cargo.toml index af93761f..3c160810 100644 --- a/bizinikiwi/client/sysinfo/Cargo.toml +++ b/bizinikiwi/client/sysinfo/Cargo.toml @@ -39,3 +39,12 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-telemetry/std", +] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/telemetry/Cargo.toml b/bizinikiwi/client/telemetry/Cargo.toml index bde7e64e..ba8ff2de 100644 --- a/bizinikiwi/client/telemetry/Cargo.toml +++ b/bizinikiwi/client/telemetry/Cargo.toml @@ -29,3 +29,10 @@ serde = { features = ["derive"], workspace = true, default-features = true } serde_json = { workspace = true, default-features = true } thiserror = { workspace = true } wasm-timer = { workspace = true } + +[features] +std = [ + "log/std", + "pezsc-utils/std", +] +serde = [] diff --git a/bizinikiwi/client/tracing/Cargo.toml b/bizinikiwi/client/tracing/Cargo.toml index f3554527..f294fcb7 100644 --- a/bizinikiwi/client/tracing/Cargo.toml +++ b/bizinikiwi/client/tracing/Cargo.toml @@ -70,3 +70,17 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-client-api/std", + "pezsp-blockchain/std", + "pezsp-rpc/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/transaction-pool/Cargo.toml b/bizinikiwi/client/transaction-pool/Cargo.toml index c307e426..d611df84 100644 --- a/bizinikiwi/client/transaction-pool/Cargo.toml +++ b/bizinikiwi/client/transaction-pool/Cargo.toml @@ -76,6 +76,7 @@ runtime-benchmarks = [ "bizinikiwi-test-runtime-transaction-pool/runtime-benchmarks", "bizinikiwi-test-runtime/runtime-benchmarks", "pezcumulus-zombienet-sdk-helpers/runtime-benchmarks", + "pezkuwi-zombienet-sdk/runtime-benchmarks", "pezsc-block-builder/runtime-benchmarks", "pezsc-client-api/runtime-benchmarks", "pezsc-transaction-pool-api/runtime-benchmarks", @@ -84,4 +85,37 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-transaction-pool/runtime-benchmarks", + "txtesttool/runtime-benchmarks", ] +std = [ + "anyhow/std", + "bizinikiwi-test-runtime-client/std", + "bizinikiwi-test-runtime-transaction-pool/std", + "pezcumulus-zombienet-sdk-helpers/std", + "pezkuwi-zombienet-configuration/std", + "pezkuwi-zombienet-sdk/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-transaction-pool-api/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", + "serde_json/std", + "txtesttool/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "bizinikiwi-test-runtime-transaction-pool/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-transaction-pool/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/client/transaction-pool/api/Cargo.toml b/bizinikiwi/client/transaction-pool/api/Cargo.toml index f2fff74c..e4f81360 100644 --- a/bizinikiwi/client/transaction-pool/api/Cargo.toml +++ b/bizinikiwi/client/transaction-pool/api/Cargo.toml @@ -32,3 +32,14 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsp-blockchain/std", + "pezsp-core/std", + "pezsp-runtime/std", +] +try-runtime = [ + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/client/utils/Cargo.toml b/bizinikiwi/client/utils/Cargo.toml index d1c38a46..177bdeea 100644 --- a/bizinikiwi/client/utils/Cargo.toml +++ b/bizinikiwi/client/utils/Cargo.toml @@ -28,3 +28,8 @@ tokio-test = { workspace = true } [features] default = ["metered"] metered = [] +std = [ + "log/std", + "pezsp-arithmetic/std", +] +serde = [] diff --git a/bizinikiwi/deprecated/hashing/proc-macro/Cargo.toml b/bizinikiwi/deprecated/hashing/proc-macro/Cargo.toml index 7817f939..80f2160b 100644 --- a/bizinikiwi/deprecated/hashing/proc-macro/Cargo.toml +++ b/bizinikiwi/deprecated/hashing/proc-macro/Cargo.toml @@ -17,3 +17,8 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] pezsp-crypto-hashing-proc-macro = { workspace = true, default-features = true } + +[features] +std = [ + "pezsp-crypto-hashing-proc-macro/std", +] diff --git a/bizinikiwi/pezframe/Cargo.toml b/bizinikiwi/pezframe/Cargo.toml index d29031ed..0ba7acab 100644 --- a/bizinikiwi/pezframe/Cargo.toml +++ b/bizinikiwi/pezframe/Cargo.toml @@ -115,13 +115,29 @@ runtime-benchmarks = [ "pezsp-version?/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", + "pezsp-api?/try-runtime", + "pezsp-block-builder?/try-runtime", + "pezsp-consensus-aura?/try-runtime", + "pezsp-consensus-grandpa?/try-runtime", + "pezsp-genesis-builder?/try-runtime", + "pezsp-inherents?/try-runtime", + "pezsp-keyring?/try-runtime", + "pezsp-offchain?/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session?/try-runtime", + "pezsp-transaction-pool?/try-runtime", + "pezsp-version?/try-runtime", +] +experimental = [ + "pezframe-support/experimental", + "pezframe-system/experimental", ] -experimental = ["pezframe-support/experimental"] runtime = [ "pezframe-executive", "pezframe-system-rpc-runtime-api", @@ -138,3 +154,6 @@ runtime = [ "pezsp-transaction-pool", "pezsp-version", ] +serde = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/alliance/Cargo.toml b/bizinikiwi/pezframe/alliance/Cargo.toml index 96a92259..8935e4d9 100644 --- a/bizinikiwi/pezframe/alliance/Cargo.toml +++ b/bizinikiwi/pezframe/alliance/Cargo.toml @@ -71,6 +71,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -78,3 +79,7 @@ try-runtime = [ "pezpallet-identity/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/asset-conversion/Cargo.toml b/bizinikiwi/pezframe/asset-conversion/Cargo.toml index e2fb9a1e..94921bbb 100644 --- a/bizinikiwi/pezframe/asset-conversion/Cargo.toml +++ b/bizinikiwi/pezframe/asset-conversion/Cargo.toml @@ -67,9 +67,15 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/asset-conversion/ops/Cargo.toml b/bizinikiwi/pezframe/asset-conversion/ops/Cargo.toml index 39018cc1..88e044eb 100644 --- a/bizinikiwi/pezframe/asset-conversion/ops/Cargo.toml +++ b/bizinikiwi/pezframe/asset-conversion/ops/Cargo.toml @@ -66,6 +66,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-asset-conversion/try-runtime", @@ -73,3 +74,7 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/asset-rate/Cargo.toml b/bizinikiwi/pezframe/asset-rate/Cargo.toml index 4927a672..79c83389 100644 --- a/bizinikiwi/pezframe/asset-rate/Cargo.toml +++ b/bizinikiwi/pezframe/asset-rate/Cargo.toml @@ -52,8 +52,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/asset-rewards/Cargo.toml b/bizinikiwi/pezframe/asset-rewards/Cargo.toml index 6fee03a0..b25abf1d 100644 --- a/bizinikiwi/pezframe/asset-rewards/Cargo.toml +++ b/bizinikiwi/pezframe/asset-rewards/Cargo.toml @@ -69,10 +69,16 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-assets-freezer/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/assets-freezer/Cargo.toml b/bizinikiwi/pezframe/assets-freezer/Cargo.toml index 92a02c8e..5b5eee56 100644 --- a/bizinikiwi/pezframe/assets-freezer/Cargo.toml +++ b/bizinikiwi/pezframe/assets-freezer/Cargo.toml @@ -53,3 +53,6 @@ try-runtime = [ "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/assets-holder/Cargo.toml b/bizinikiwi/pezframe/assets-holder/Cargo.toml index b07db587..6adc540c 100644 --- a/bizinikiwi/pezframe/assets-holder/Cargo.toml +++ b/bizinikiwi/pezframe/assets-holder/Cargo.toml @@ -55,9 +55,14 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/assets/Cargo.toml b/bizinikiwi/pezframe/assets/Cargo.toml index 6883e38d..c7f0f4f0 100644 --- a/bizinikiwi/pezframe/assets/Cargo.toml +++ b/bizinikiwi/pezframe/assets/Cargo.toml @@ -57,8 +57,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/assets/precompiles/Cargo.toml b/bizinikiwi/pezframe/assets/precompiles/Cargo.toml index 6aed9209..e369e388 100644 --- a/bizinikiwi/pezframe/assets/precompiles/Cargo.toml +++ b/bizinikiwi/pezframe/assets/precompiles/Cargo.toml @@ -34,6 +34,7 @@ scale-info = { workspace = true } default = ["std"] std = [ "codec/std", + "pez-ethereum-standards/std", "pezframe-support/std", "pezframe-system/std", "pezpallet-assets/std", @@ -61,3 +62,7 @@ try-runtime = [ "pezpallet-revive/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/atomic-swap/Cargo.toml b/bizinikiwi/pezframe/atomic-swap/Cargo.toml index 1b162bcf..edbff20e 100644 --- a/bizinikiwi/pezframe/atomic-swap/Cargo.toml +++ b/bizinikiwi/pezframe/atomic-swap/Cargo.toml @@ -48,3 +48,6 @@ runtime-benchmarks = [ "pezframe/runtime-benchmarks", "pezpallet-balances/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/aura/Cargo.toml b/bizinikiwi/pezframe/aura/Cargo.toml index 6f5ae001..97fd1031 100644 --- a/bizinikiwi/pezframe/aura/Cargo.toml +++ b/bizinikiwi/pezframe/aura/Cargo.toml @@ -50,13 +50,19 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-consensus-aura/try-runtime", "pezsp-runtime/try-runtime", ] runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-aura/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/authority-discovery/Cargo.toml b/bizinikiwi/pezframe/authority-discovery/Cargo.toml index 89b46f17..9ea8accb 100644 --- a/bizinikiwi/pezframe/authority-discovery/Cargo.toml +++ b/bizinikiwi/pezframe/authority-discovery/Cargo.toml @@ -51,6 +51,7 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-session/try-runtime", + "pezsp-authority-discovery/try-runtime", "pezsp-runtime/try-runtime", ] runtime-benchmarks = [ @@ -58,7 +59,12 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezpallet-balances/runtime-benchmarks", "pezpallet-session/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/authorship/Cargo.toml b/bizinikiwi/pezframe/authorship/Cargo.toml index 25f47e31..7eac54bc 100644 --- a/bizinikiwi/pezframe/authorship/Cargo.toml +++ b/bizinikiwi/pezframe/authorship/Cargo.toml @@ -50,3 +50,7 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/babe/Cargo.toml b/bizinikiwi/pezframe/babe/Cargo.toml index 4b1e0421..3a51a394 100644 --- a/bizinikiwi/pezframe/babe/Cargo.toml +++ b/bizinikiwi/pezframe/babe/Cargo.toml @@ -56,6 +56,7 @@ std = [ "pezpallet-balances/std", "pezpallet-offences/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-application-crypto/std", @@ -79,6 +80,7 @@ runtime-benchmarks = [ "pezpallet-staking-reward-curve/runtime-benchmarks", "pezpallet-staking/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", @@ -86,6 +88,7 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", @@ -93,7 +96,15 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-offences/try-runtime", "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-consensus-babe/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/bags-list/Cargo.toml b/bizinikiwi/pezframe/bags-list/Cargo.toml index 47297785..291baa8c 100644 --- a/bizinikiwi/pezframe/bags-list/Cargo.toml +++ b/bizinikiwi/pezframe/bags-list/Cargo.toml @@ -85,9 +85,14 @@ fuzz = [ "pezsp-tracing", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances?/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/bags-list/fuzzer/Cargo.toml b/bizinikiwi/pezframe/bags-list/fuzzer/Cargo.toml index de77fad6..af0e3348 100644 --- a/bizinikiwi/pezframe/bags-list/fuzzer/Cargo.toml +++ b/bizinikiwi/pezframe/bags-list/fuzzer/Cargo.toml @@ -31,3 +31,8 @@ runtime-benchmarks = [ "pezframe-election-provider-support/runtime-benchmarks", "pezpallet-bags-list/runtime-benchmarks", ] +std = [] +try-runtime = [ + "pezframe-election-provider-support/try-runtime", + "pezpallet-bags-list/try-runtime", +] diff --git a/bizinikiwi/pezframe/bags-list/remote-tests/Cargo.toml b/bizinikiwi/pezframe/bags-list/remote-tests/Cargo.toml index 4a2f1ea6..156864de 100644 --- a/bizinikiwi/pezframe/bags-list/remote-tests/Cargo.toml +++ b/bizinikiwi/pezframe/bags-list/remote-tests/Cargo.toml @@ -46,3 +46,19 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "remote-externalities/runtime-benchmarks", ] +std = [ + "log/std", + "remote-externalities/std", +] +try-runtime = [ + "pezframe-election-provider-support/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-bags-list/try-runtime", + "pezpallet-staking/try-runtime", + "pezsp-runtime/try-runtime", + "remote-externalities/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/balances/Cargo.toml b/bizinikiwi/pezframe/balances/Cargo.toml index 0a93cae8..814eaf25 100644 --- a/bizinikiwi/pezframe/balances/Cargo.toml +++ b/bizinikiwi/pezframe/balances/Cargo.toml @@ -58,7 +58,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/beefy-mmr/Cargo.toml b/bizinikiwi/pezframe/beefy-mmr/Cargo.toml index ac3640ba..350890f2 100644 --- a/bizinikiwi/pezframe/beefy-mmr/Cargo.toml +++ b/bizinikiwi/pezframe/beefy-mmr/Cargo.toml @@ -62,13 +62,17 @@ std = [ "serde", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-beefy/try-runtime", "pezpallet-mmr/try-runtime", "pezpallet-session/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus-beefy/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] runtime-benchmarks = [ "pez-binary-merkle-tree/runtime-benchmarks", @@ -86,3 +90,19 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +serde = [ + "array-bytes?/serde", + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezpallet-beefy/serde", + "pezsp-consensus-beefy/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-staking/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/beefy/Cargo.toml b/bizinikiwi/pezframe/beefy/Cargo.toml index 06df9864..cb9d6b6d 100644 --- a/bizinikiwi/pezframe/beefy/Cargo.toml +++ b/bizinikiwi/pezframe/beefy/Cargo.toml @@ -51,6 +51,7 @@ std = [ "pezpallet-balances/std", "pezpallet-offences/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-consensus-beefy/std", @@ -71,9 +72,13 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-offences/try-runtime", "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-consensus-beefy/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", ] runtime-benchmarks = [ "pezframe-election-provider-support/runtime-benchmarks", @@ -93,3 +98,16 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezsp-consensus-beefy/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-staking/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/benchmarking/Cargo.toml b/bizinikiwi/pezframe/benchmarking/Cargo.toml index fdae94f1..cce510d9 100644 --- a/bizinikiwi/pezframe/benchmarking/Cargo.toml +++ b/bizinikiwi/pezframe/benchmarking/Cargo.toml @@ -70,8 +70,29 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime-interface/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [ + "array-bytes/serde", + "codec/serde", + "dep:serde", + "log/serde", + "pezsp-application-crypto/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-storage/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/benchmarking/pov/Cargo.toml b/bizinikiwi/pezframe/benchmarking/pov/Cargo.toml index c18a70ae..f8519a31 100644 --- a/bizinikiwi/pezframe/benchmarking/pov/Cargo.toml +++ b/bizinikiwi/pezframe/benchmarking/pov/Cargo.toml @@ -43,7 +43,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/bounties/Cargo.toml b/bizinikiwi/pezframe/bounties/Cargo.toml index 666ccce7..0f82a922 100644 --- a/bizinikiwi/pezframe/bounties/Cargo.toml +++ b/bizinikiwi/pezframe/bounties/Cargo.toml @@ -56,9 +56,14 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-treasury/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/broker/Cargo.toml b/bizinikiwi/pezframe/broker/Cargo.toml index 34f1027c..9ec37635 100644 --- a/bizinikiwi/pezframe/broker/Cargo.toml +++ b/bizinikiwi/pezframe/broker/Cargo.toml @@ -58,7 +58,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/child-bounties/Cargo.toml b/bizinikiwi/pezframe/child-bounties/Cargo.toml index 706a4433..3a040d1b 100644 --- a/bizinikiwi/pezframe/child-bounties/Cargo.toml +++ b/bizinikiwi/pezframe/child-bounties/Cargo.toml @@ -60,6 +60,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -67,3 +68,7 @@ try-runtime = [ "pezpallet-treasury/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/collective/Cargo.toml b/bizinikiwi/pezframe/collective/Cargo.toml index 4add6c51..2b2a1777 100644 --- a/bizinikiwi/pezframe/collective/Cargo.toml +++ b/bizinikiwi/pezframe/collective/Cargo.toml @@ -54,8 +54,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/contracts/Cargo.toml b/bizinikiwi/pezframe/contracts/Cargo.toml index b9d211c9..e58ac0ab 100644 --- a/bizinikiwi/pezframe/contracts/Cargo.toml +++ b/bizinikiwi/pezframe/contracts/Cargo.toml @@ -80,6 +80,7 @@ std = [ "pezframe-support/std", "pezframe-system/std", "pezpallet-balances?/std", + "pezpallet-contracts-uapi/std", "pezpallet-insecure-randomness-collective-flip/std", "pezpallet-proxy/std", "pezpallet-timestamp/std", @@ -114,6 +115,7 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -121,5 +123,24 @@ try-runtime = [ "pezpallet-proxy/try-runtime", "pezpallet-timestamp/try-runtime", "pezpallet-utility/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", ] +serde = [ + "array-bytes/serde", + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "rand/serde", + "rand_pcg/serde", + "scale-info/serde", + "smallvec/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/contracts/fixtures/Cargo.toml b/bizinikiwi/pezframe/contracts/fixtures/Cargo.toml index cd5d42b0..0b510b5c 100644 --- a/bizinikiwi/pezframe/contracts/fixtures/Cargo.toml +++ b/bizinikiwi/pezframe/contracts/fixtures/Cargo.toml @@ -31,3 +31,10 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [] +try-runtime = [ + "pezframe-system/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] diff --git a/bizinikiwi/pezframe/contracts/mock-network/Cargo.toml b/bizinikiwi/pezframe/contracts/mock-network/Cargo.toml index 11cf9b6b..9e3d375e 100644 --- a/bizinikiwi/pezframe/contracts/mock-network/Cargo.toml +++ b/bizinikiwi/pezframe/contracts/mock-network/Cargo.toml @@ -49,6 +49,8 @@ std = [ "pezframe-support/std", "pezframe-system/std", "pezpallet-balances/std", + "pezpallet-contracts-fixtures/std", + "pezpallet-contracts-uapi/std", "pezpallet-contracts/std", "pezpallet-timestamp/std", "pezpallet-xcm/std", @@ -59,6 +61,7 @@ std = [ "pezsp-runtime/std", "scale-info/std", "xcm-executor/std", + "xcm-pez-simulator/std", "xcm/std", ] @@ -83,3 +86,27 @@ runtime-benchmarks = [ "xcm-pez-simulator/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-contracts-fixtures/try-runtime", + "pezpallet-contracts/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/contracts/uapi/Cargo.toml b/bizinikiwi/pezframe/contracts/uapi/Cargo.toml index 0fe05702..f7b53d25 100644 --- a/bizinikiwi/pezframe/contracts/uapi/Cargo.toml +++ b/bizinikiwi/pezframe/contracts/uapi/Cargo.toml @@ -27,3 +27,8 @@ scale-info = { features = ["derive"], optional = true, workspace = true } [features] default = ["scale"] scale = ["dep:codec", "scale-info"] +std = [ + "codec?/std", + "scale-info?/std", +] +serde = [] diff --git a/bizinikiwi/pezframe/conviction-voting/Cargo.toml b/bizinikiwi/pezframe/conviction-voting/Cargo.toml index 1297486b..7909a5c1 100644 --- a/bizinikiwi/pezframe/conviction-voting/Cargo.toml +++ b/bizinikiwi/pezframe/conviction-voting/Cargo.toml @@ -56,8 +56,20 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/core-fellowship/Cargo.toml b/bizinikiwi/pezframe/core-fellowship/Cargo.toml index 06286e01..bfba8a6c 100644 --- a/bizinikiwi/pezframe/core-fellowship/Cargo.toml +++ b/bizinikiwi/pezframe/core-fellowship/Cargo.toml @@ -54,8 +54,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-ranked-collective?/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/delegated-staking/Cargo.toml b/bizinikiwi/pezframe/delegated-staking/Cargo.toml index 82a413af..f4b5bb4e 100644 --- a/bizinikiwi/pezframe/delegated-staking/Cargo.toml +++ b/bizinikiwi/pezframe/delegated-staking/Cargo.toml @@ -42,6 +42,7 @@ std = [ "pezframe-system/std", "pezpallet-balances/std", "pezpallet-nomination-pools/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-core/std", @@ -69,7 +70,13 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-nomination-pools/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/democracy/Cargo.toml b/bizinikiwi/pezframe/democracy/Cargo.toml index 18959211..a77af49b 100644 --- a/bizinikiwi/pezframe/democracy/Cargo.toml +++ b/bizinikiwi/pezframe/democracy/Cargo.toml @@ -63,6 +63,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -70,3 +71,15 @@ try-runtime = [ "pezpallet-scheduler/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/derivatives/Cargo.toml b/bizinikiwi/pezframe/derivatives/Cargo.toml index c5bccf00..930dff43 100644 --- a/bizinikiwi/pezframe/derivatives/Cargo.toml +++ b/bizinikiwi/pezframe/derivatives/Cargo.toml @@ -64,8 +64,16 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/dummy-dim/Cargo.toml b/bizinikiwi/pezframe/dummy-dim/Cargo.toml index 5c5034d6..d52123aa 100644 --- a/bizinikiwi/pezframe/dummy-dim/Cargo.toml +++ b/bizinikiwi/pezframe/dummy-dim/Cargo.toml @@ -57,8 +57,14 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-people/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/election-provider-multi-block/Cargo.toml b/bizinikiwi/pezframe/election-provider-multi-block/Cargo.toml index dec0668a..a0774603 100644 --- a/bizinikiwi/pezframe/election-provider-multi-block/Cargo.toml +++ b/bizinikiwi/pezframe/election-provider-multi-block/Cargo.toml @@ -74,9 +74,15 @@ runtime-benchmarks = [ "rand", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/election-provider-multi-phase/Cargo.toml b/bizinikiwi/pezframe/election-provider-multi-phase/Cargo.toml index 0b66e691..df9b6c5b 100644 --- a/bizinikiwi/pezframe/election-provider-multi-phase/Cargo.toml +++ b/bizinikiwi/pezframe/election-provider-multi-phase/Cargo.toml @@ -68,6 +68,7 @@ std = [ "pezsp-runtime/std", "pezsp-tracing/std", "rand/std", + "remote-externalities?/std", "scale-info/std", "strum/std", ] @@ -85,9 +86,16 @@ runtime-benchmarks = [ "strum", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", + "remote-externalities?/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/Cargo.toml b/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/Cargo.toml index 72f5f0d2..fee6a37a 100644 --- a/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/Cargo.toml +++ b/bizinikiwi/pezframe/election-provider-multi-phase/test-staking-e2e/Cargo.toml @@ -57,7 +57,9 @@ try-runtime = [ "pezpallet-session/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] runtime-benchmarks = [ "pezframe-election-provider-support/runtime-benchmarks", @@ -76,3 +78,11 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +std = [ + "log/std", + "pezsp-npos-elections/std", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/election-provider-support/Cargo.toml b/bizinikiwi/pezframe/election-provider-support/Cargo.toml index bb6d5974..ddbeb93c 100644 --- a/bizinikiwi/pezframe/election-provider-support/Cargo.toml +++ b/bizinikiwi/pezframe/election-provider-support/Cargo.toml @@ -38,6 +38,7 @@ default = ["std"] fuzz = ["default"] std = [ "codec/std", + "pezframe-election-provider-solution-type/std", "pezframe-support/std", "pezframe-system/std", "pezsp-arithmetic/std", @@ -59,5 +60,10 @@ runtime-benchmarks = [ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/election-provider-support/benchmarking/Cargo.toml b/bizinikiwi/pezframe/election-provider-support/benchmarking/Cargo.toml index 220b1496..4d807648 100644 --- a/bizinikiwi/pezframe/election-provider-support/benchmarking/Cargo.toml +++ b/bizinikiwi/pezframe/election-provider-support/benchmarking/Cargo.toml @@ -40,3 +40,12 @@ runtime-benchmarks = [ "pezsp-npos-elections/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezframe-benchmarking?/try-runtime", + "pezframe-election-provider-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-npos-elections/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] diff --git a/bizinikiwi/pezframe/election-provider-support/solution-type/Cargo.toml b/bizinikiwi/pezframe/election-provider-support/solution-type/Cargo.toml index 10d3ef79..5867d013 100644 --- a/bizinikiwi/pezframe/election-provider-support/solution-type/Cargo.toml +++ b/bizinikiwi/pezframe/election-provider-support/solution-type/Cargo.toml @@ -33,3 +33,5 @@ trybuild = { workspace = true } [features] runtime-benchmarks = [] +std = [] +serde = [] diff --git a/bizinikiwi/pezframe/election-provider-support/solution-type/fuzzer/Cargo.toml b/bizinikiwi/pezframe/election-provider-support/solution-type/fuzzer/Cargo.toml index e2426e0e..9e655c9e 100644 --- a/bizinikiwi/pezframe/election-provider-support/solution-type/fuzzer/Cargo.toml +++ b/bizinikiwi/pezframe/election-provider-support/solution-type/fuzzer/Cargo.toml @@ -38,3 +38,15 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "codec/std", + "pezframe-election-provider-solution-type/std", +] +try-runtime = [ + "pezframe-election-provider-support/try-runtime", + "pezframe-support/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/elections-phragmen/Cargo.toml b/bizinikiwi/pezframe/elections-phragmen/Cargo.toml index 61c4ede8..abe4585a 100644 --- a/bizinikiwi/pezframe/elections-phragmen/Cargo.toml +++ b/bizinikiwi/pezframe/elections-phragmen/Cargo.toml @@ -63,8 +63,15 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/Cargo.toml b/bizinikiwi/pezframe/examples/Cargo.toml index de2ab443..11dac8cb 100644 --- a/bizinikiwi/pezframe/examples/Cargo.toml +++ b/bizinikiwi/pezframe/examples/Cargo.toml @@ -51,6 +51,7 @@ try-runtime = [ "pezpallet-example-basic/try-runtime", "pezpallet-example-kitchensink/try-runtime", "pezpallet-example-offchain-worker/try-runtime", + "pezpallet-example-pezframe-crate/try-runtime", "pezpallet-example-single-block-migrations/try-runtime", "pezpallet-example-split/try-runtime", "pezpallet-example-tasks/try-runtime", @@ -69,3 +70,4 @@ runtime-benchmarks = [ "pezpallet-example-tasks/runtime-benchmarks", "pezpallet-example-view-functions/runtime-benchmarks", ] +experimental = [] diff --git a/bizinikiwi/pezframe/examples/authorization-tx-extension/Cargo.toml b/bizinikiwi/pezframe/examples/authorization-tx-extension/Cargo.toml index 25de3800..44ff46d1 100644 --- a/bizinikiwi/pezframe/examples/authorization-tx-extension/Cargo.toml +++ b/bizinikiwi/pezframe/examples/authorization-tx-extension/Cargo.toml @@ -58,8 +58,14 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-verify-signature/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/basic/Cargo.toml b/bizinikiwi/pezframe/examples/basic/Cargo.toml index ced41ab5..268017c0 100644 --- a/bizinikiwi/pezframe/examples/basic/Cargo.toml +++ b/bizinikiwi/pezframe/examples/basic/Cargo.toml @@ -54,8 +54,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/default-config/Cargo.toml b/bizinikiwi/pezframe/examples/default-config/Cargo.toml index b00298b9..430ca462 100644 --- a/bizinikiwi/pezframe/examples/default-config/Cargo.toml +++ b/bizinikiwi/pezframe/examples/default-config/Cargo.toml @@ -49,3 +49,7 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/dev-mode/Cargo.toml b/bizinikiwi/pezframe/examples/dev-mode/Cargo.toml index b8bbd961..2de90ac4 100644 --- a/bizinikiwi/pezframe/examples/dev-mode/Cargo.toml +++ b/bizinikiwi/pezframe/examples/dev-mode/Cargo.toml @@ -56,3 +56,7 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/kitchensink/Cargo.toml b/bizinikiwi/pezframe/examples/kitchensink/Cargo.toml index e9e6b3b0..b5849558 100644 --- a/bizinikiwi/pezframe/examples/kitchensink/Cargo.toml +++ b/bizinikiwi/pezframe/examples/kitchensink/Cargo.toml @@ -57,8 +57,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/multi-block-migrations/Cargo.toml b/bizinikiwi/pezframe/examples/multi-block-migrations/Cargo.toml index 34f3d21d..b09a6f8d 100644 --- a/bizinikiwi/pezframe/examples/multi-block-migrations/Cargo.toml +++ b/bizinikiwi/pezframe/examples/multi-block-migrations/Cargo.toml @@ -43,7 +43,12 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-migrations/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/offchain-worker/Cargo.toml b/bizinikiwi/pezframe/examples/offchain-worker/Cargo.toml index 39e39df3..a5ec6311 100644 --- a/bizinikiwi/pezframe/examples/offchain-worker/Cargo.toml +++ b/bizinikiwi/pezframe/examples/offchain-worker/Cargo.toml @@ -54,3 +54,7 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/pezframe-crate/Cargo.toml b/bizinikiwi/pezframe/examples/pezframe-crate/Cargo.toml index 5a84ea06..cecb6358 100644 --- a/bizinikiwi/pezframe/examples/pezframe-crate/Cargo.toml +++ b/bizinikiwi/pezframe/examples/pezframe-crate/Cargo.toml @@ -41,3 +41,11 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezframe/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/single-block-migrations/Cargo.toml b/bizinikiwi/pezframe/examples/single-block-migrations/Cargo.toml index f6515240..e2f9fd35 100644 --- a/bizinikiwi/pezframe/examples/single-block-migrations/Cargo.toml +++ b/bizinikiwi/pezframe/examples/single-block-migrations/Cargo.toml @@ -53,4 +53,9 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/split/Cargo.toml b/bizinikiwi/pezframe/examples/split/Cargo.toml index 486b5ec6..79efe21a 100644 --- a/bizinikiwi/pezframe/examples/split/Cargo.toml +++ b/bizinikiwi/pezframe/examples/split/Cargo.toml @@ -50,4 +50,12 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezsp-io/runtime-benchmarks", ] -try-runtime = ["pezframe-support/try-runtime", "pezframe-system/try-runtime"] +try-runtime = [ + "pezframe-benchmarking?/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/tasks/Cargo.toml b/bizinikiwi/pezframe/examples/tasks/Cargo.toml index 9553ee6c..0b61d82a 100644 --- a/bizinikiwi/pezframe/examples/tasks/Cargo.toml +++ b/bizinikiwi/pezframe/examples/tasks/Cargo.toml @@ -51,6 +51,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", @@ -59,3 +60,6 @@ experimental = [ "pezframe-support/experimental", "pezframe-system/experimental", ] +serde = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/examples/view-functions/Cargo.toml b/bizinikiwi/pezframe/examples/view-functions/Cargo.toml index 8101371e..ff4bf878 100644 --- a/bizinikiwi/pezframe/examples/view-functions/Cargo.toml +++ b/bizinikiwi/pezframe/examples/view-functions/Cargo.toml @@ -60,3 +60,7 @@ try-runtime = [ "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/executive/Cargo.toml b/bizinikiwi/pezframe/executive/Cargo.toml index fef806f4..57a1e55f 100644 --- a/bizinikiwi/pezframe/executive/Cargo.toml +++ b/bizinikiwi/pezframe/executive/Cargo.toml @@ -39,7 +39,10 @@ pezsp-version = { workspace = true, default-features = true } [features] default = ["std"] -with-tracing = ["pezsp-tracing/with-tracing"] +with-tracing = [ + "pezsp-io/with-tracing", + "pezsp-tracing/with-tracing", +] std = [ "codec/std", "log/std", @@ -59,7 +62,9 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", + "pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", ] runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", @@ -70,3 +75,6 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/fast-unstake/Cargo.toml b/bizinikiwi/pezframe/fast-unstake/Cargo.toml index c1efd7e8..20d30386 100644 --- a/bizinikiwi/pezframe/fast-unstake/Cargo.toml +++ b/bizinikiwi/pezframe/fast-unstake/Cargo.toml @@ -50,6 +50,7 @@ std = [ "pezframe-support/std", "pezframe-system/std", "pezpallet-balances/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-core/std", @@ -73,11 +74,18 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/glutton/Cargo.toml b/bizinikiwi/pezframe/glutton/Cargo.toml index a461abeb..362b7aeb 100644 --- a/bizinikiwi/pezframe/glutton/Cargo.toml +++ b/bizinikiwi/pezframe/glutton/Cargo.toml @@ -45,8 +45,10 @@ std = [ "scale-info/std", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime", ] @@ -58,3 +60,7 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/grandpa/Cargo.toml b/bizinikiwi/pezframe/grandpa/Cargo.toml index 64fb89fa..2f68696d 100644 --- a/bizinikiwi/pezframe/grandpa/Cargo.toml +++ b/bizinikiwi/pezframe/grandpa/Cargo.toml @@ -60,6 +60,7 @@ std = [ "pezpallet-balances/std", "pezpallet-offences/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-application-crypto/std", @@ -83,6 +84,7 @@ runtime-benchmarks = [ "pezpallet-staking-reward-curve/runtime-benchmarks", "pezpallet-staking/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-grandpa/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", @@ -91,6 +93,7 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", @@ -98,7 +101,16 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-offences/try-runtime", "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/honzon/oracle/Cargo.toml b/bizinikiwi/pezframe/honzon/oracle/Cargo.toml index d532742d..1e1e6b10 100644 --- a/bizinikiwi/pezframe/honzon/oracle/Cargo.toml +++ b/bizinikiwi/pezframe/honzon/oracle/Cargo.toml @@ -52,11 +52,17 @@ runtime-benchmarks = [ "pezframe-benchmarking/runtime-benchmarks", "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/honzon/oracle/runtime-api/Cargo.toml b/bizinikiwi/pezframe/honzon/oracle/runtime-api/Cargo.toml index 4f8fad6f..ca62e4ed 100644 --- a/bizinikiwi/pezframe/honzon/oracle/runtime-api/Cargo.toml +++ b/bizinikiwi/pezframe/honzon/oracle/runtime-api/Cargo.toml @@ -24,3 +24,4 @@ scale-info = { workspace = true } default = ["std"] std = ["codec/std", "pezsp-api/std", "pezsp-std/std", "scale-info/std"] runtime-benchmarks = ["pezsp-api/runtime-benchmarks"] +serde = [] diff --git a/bizinikiwi/pezframe/identity/Cargo.toml b/bizinikiwi/pezframe/identity/Cargo.toml index dd11cd62..e8d06012 100644 --- a/bizinikiwi/pezframe/identity/Cargo.toml +++ b/bizinikiwi/pezframe/identity/Cargo.toml @@ -57,8 +57,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/im-online/Cargo.toml b/bizinikiwi/pezframe/im-online/Cargo.toml index 94139bce..993a0c31 100644 --- a/bizinikiwi/pezframe/im-online/Cargo.toml +++ b/bizinikiwi/pezframe/im-online/Cargo.toml @@ -59,15 +59,22 @@ runtime-benchmarks = [ "pezpallet-authorship/runtime-benchmarks", "pezpallet-balances/runtime-benchmarks", "pezpallet-session/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-session/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/indices/Cargo.toml b/bizinikiwi/pezframe/indices/Cargo.toml index aa7e9266..d8826a02 100644 --- a/bizinikiwi/pezframe/indices/Cargo.toml +++ b/bizinikiwi/pezframe/indices/Cargo.toml @@ -51,8 +51,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/insecure-randomness-collective-flip/Cargo.toml b/bizinikiwi/pezframe/insecure-randomness-collective-flip/Cargo.toml index 45d19a05..2db83768 100644 --- a/bizinikiwi/pezframe/insecure-randomness-collective-flip/Cargo.toml +++ b/bizinikiwi/pezframe/insecure-randomness-collective-flip/Cargo.toml @@ -44,3 +44,6 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezframe/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/lottery/Cargo.toml b/bizinikiwi/pezframe/lottery/Cargo.toml index dd8724ff..614f0915 100644 --- a/bizinikiwi/pezframe/lottery/Cargo.toml +++ b/bizinikiwi/pezframe/lottery/Cargo.toml @@ -51,8 +51,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/membership/Cargo.toml b/bizinikiwi/pezframe/membership/Cargo.toml index dd829eb0..902d05ba 100644 --- a/bizinikiwi/pezframe/membership/Cargo.toml +++ b/bizinikiwi/pezframe/membership/Cargo.toml @@ -48,7 +48,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/merkle-mountain-range/Cargo.toml b/bizinikiwi/pezframe/merkle-mountain-range/Cargo.toml index f244f6ec..dfccf57b 100644 --- a/bizinikiwi/pezframe/merkle-mountain-range/Cargo.toml +++ b/bizinikiwi/pezframe/merkle-mountain-range/Cargo.toml @@ -49,4 +49,9 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezframe/try-runtime", + "pezsp-mmr-primitives/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/message-queue/Cargo.toml b/bizinikiwi/pezframe/message-queue/Cargo.toml index 58235fc0..3483fc03 100644 --- a/bizinikiwi/pezframe/message-queue/Cargo.toml +++ b/bizinikiwi/pezframe/message-queue/Cargo.toml @@ -63,7 +63,24 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-arithmetic/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-weights/serde", + "rand/serde", + "rand_distr/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/meta-tx/Cargo.toml b/bizinikiwi/pezframe/meta-tx/Cargo.toml index acb2905f..5ad8cde8 100644 --- a/bizinikiwi/pezframe/meta-tx/Cargo.toml +++ b/bizinikiwi/pezframe/meta-tx/Cargo.toml @@ -59,10 +59,23 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-verify-signature/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml b/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml index c506feb4..d13d4ef4 100644 --- a/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml +++ b/bizinikiwi/pezframe/metadata-hash-extension/Cargo.toml @@ -47,3 +47,13 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/migrations/Cargo.toml b/bizinikiwi/pezframe/migrations/Cargo.toml index 76873ffc..f739b438 100644 --- a/bizinikiwi/pezframe/migrations/Cargo.toml +++ b/bizinikiwi/pezframe/migrations/Cargo.toml @@ -61,9 +61,14 @@ runtime-benchmarks = [ ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezframe/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/mixnet/Cargo.toml b/bizinikiwi/pezframe/mixnet/Cargo.toml index 36981a42..1df08fcc 100644 --- a/bizinikiwi/pezframe/mixnet/Cargo.toml +++ b/bizinikiwi/pezframe/mixnet/Cargo.toml @@ -52,5 +52,9 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", "pezframe/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-mixnet/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/multi-asset-bounties/Cargo.toml b/bizinikiwi/pezframe/multi-asset-bounties/Cargo.toml index 2eb2e548..fcfe8d50 100644 --- a/bizinikiwi/pezframe/multi-asset-bounties/Cargo.toml +++ b/bizinikiwi/pezframe/multi-asset-bounties/Cargo.toml @@ -58,6 +58,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -65,3 +66,7 @@ try-runtime = [ "pezpallet-utility/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/multisig/Cargo.toml b/bizinikiwi/pezframe/multisig/Cargo.toml index 1b2c39b7..060c3dfb 100644 --- a/bizinikiwi/pezframe/multisig/Cargo.toml +++ b/bizinikiwi/pezframe/multisig/Cargo.toml @@ -51,3 +51,6 @@ try-runtime = [ "pezframe/try-runtime", "pezpallet-balances/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/nft-fractionalization/Cargo.toml b/bizinikiwi/pezframe/nft-fractionalization/Cargo.toml index 041d7396..b138acd1 100644 --- a/bizinikiwi/pezframe/nft-fractionalization/Cargo.toml +++ b/bizinikiwi/pezframe/nft-fractionalization/Cargo.toml @@ -58,3 +58,6 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-nfts/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/nfts/Cargo.toml b/bizinikiwi/pezframe/nfts/Cargo.toml index 5e352b7d..dd8ea0a6 100644 --- a/bizinikiwi/pezframe/nfts/Cargo.toml +++ b/bizinikiwi/pezframe/nfts/Cargo.toml @@ -57,8 +57,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/nfts/runtime-api/Cargo.toml b/bizinikiwi/pezframe/nfts/runtime-api/Cargo.toml index 0ef5c0b7..d504bd1f 100644 --- a/bizinikiwi/pezframe/nfts/runtime-api/Cargo.toml +++ b/bizinikiwi/pezframe/nfts/runtime-api/Cargo.toml @@ -24,3 +24,4 @@ pezsp-api = { workspace = true } default = ["std"] std = ["codec/std", "pezsp-api/std"] runtime-benchmarks = ["pezsp-api/runtime-benchmarks"] +serde = [] diff --git a/bizinikiwi/pezframe/nis/Cargo.toml b/bizinikiwi/pezframe/nis/Cargo.toml index 3355a029..083f5c4f 100644 --- a/bizinikiwi/pezframe/nis/Cargo.toml +++ b/bizinikiwi/pezframe/nis/Cargo.toml @@ -49,3 +49,7 @@ try-runtime = [ "pezframe/try-runtime", "pezpallet-balances/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/node-authorization/Cargo.toml b/bizinikiwi/pezframe/node-authorization/Cargo.toml index e7a11a4a..77d080dc 100644 --- a/bizinikiwi/pezframe/node-authorization/Cargo.toml +++ b/bizinikiwi/pezframe/node-authorization/Cargo.toml @@ -43,3 +43,6 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezframe/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/nomination-pools/Cargo.toml b/bizinikiwi/pezframe/nomination-pools/Cargo.toml index 249a560d..9774d9d5 100644 --- a/bizinikiwi/pezframe/nomination-pools/Cargo.toml +++ b/bizinikiwi/pezframe/nomination-pools/Cargo.toml @@ -66,4 +66,9 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances?/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/nomination-pools/benchmarking/Cargo.toml b/bizinikiwi/pezframe/nomination-pools/benchmarking/Cargo.toml index 6d50579d..f12227d6 100644 --- a/bizinikiwi/pezframe/nomination-pools/benchmarking/Cargo.toml +++ b/bizinikiwi/pezframe/nomination-pools/benchmarking/Cargo.toml @@ -55,6 +55,7 @@ std = [ "pezpallet-balances/std", "pezpallet-delegated-staking/std", "pezpallet-nomination-pools/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-core/std", @@ -81,3 +82,22 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +try-runtime = [ + "pezframe-benchmarking/try-runtime", + "pezframe-election-provider-support/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-bags-list/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-delegated-staking/try-runtime", + "pezpallet-nomination-pools/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", + "pezpallet-staking/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/nomination-pools/fuzzer/Cargo.toml b/bizinikiwi/pezframe/nomination-pools/fuzzer/Cargo.toml index adb3cb2a..fd3616e8 100644 --- a/bizinikiwi/pezframe/nomination-pools/fuzzer/Cargo.toml +++ b/bizinikiwi/pezframe/nomination-pools/fuzzer/Cargo.toml @@ -45,3 +45,16 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", +] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-nomination-pools/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/nomination-pools/runtime-api/Cargo.toml b/bizinikiwi/pezframe/nomination-pools/runtime-api/Cargo.toml index 9a023f12..c48cf4de 100644 --- a/bizinikiwi/pezframe/nomination-pools/runtime-api/Cargo.toml +++ b/bizinikiwi/pezframe/nomination-pools/runtime-api/Cargo.toml @@ -28,3 +28,8 @@ runtime-benchmarks = [ "pezpallet-nomination-pools/runtime-benchmarks", "pezsp-api/runtime-benchmarks", ] +try-runtime = [ + "pezpallet-nomination-pools/try-runtime", + "pezsp-api/try-runtime", +] +serde = [] diff --git a/bizinikiwi/pezframe/nomination-pools/test-delegate-stake/Cargo.toml b/bizinikiwi/pezframe/nomination-pools/test-delegate-stake/Cargo.toml index 82125d84..9f56a52f 100644 --- a/bizinikiwi/pezframe/nomination-pools/test-delegate-stake/Cargo.toml +++ b/bizinikiwi/pezframe/nomination-pools/test-delegate-stake/Cargo.toml @@ -60,3 +60,25 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +std = [ + "log/std", + "pezpallet-staking-reward-curve/std", +] +try-runtime = [ + "pezframe-election-provider-support/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-bags-list/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-delegated-staking/try-runtime", + "pezpallet-nomination-pools/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", + "pezpallet-staking/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/offences/Cargo.toml b/bizinikiwi/pezframe/offences/Cargo.toml index acf83f09..e01c6abd 100644 --- a/bizinikiwi/pezframe/offences/Cargo.toml +++ b/bizinikiwi/pezframe/offences/Cargo.toml @@ -55,4 +55,17 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-staking/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/offences/benchmarking/Cargo.toml b/bizinikiwi/pezframe/offences/benchmarking/Cargo.toml index 58c49533..c7d8fb71 100644 --- a/bizinikiwi/pezframe/offences/benchmarking/Cargo.toml +++ b/bizinikiwi/pezframe/offences/benchmarking/Cargo.toml @@ -56,6 +56,7 @@ std = [ "pezpallet-im-online/std", "pezpallet-offences/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-core/std", @@ -82,3 +83,24 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +try-runtime = [ + "pezframe-benchmarking/try-runtime", + "pezframe-election-provider-support/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-babe/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-grandpa/try-runtime", + "pezpallet-im-online/try-runtime", + "pezpallet-offences/try-runtime", + "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", + "pezpallet-staking/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/origin-restriction/Cargo.toml b/bizinikiwi/pezframe/origin-restriction/Cargo.toml index a95e0c58..1fbb4365 100644 --- a/bizinikiwi/pezframe/origin-restriction/Cargo.toml +++ b/bizinikiwi/pezframe/origin-restriction/Cargo.toml @@ -49,8 +49,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/paged-list/Cargo.toml b/bizinikiwi/pezframe/paged-list/Cargo.toml index 53e23329..316bb518 100644 --- a/bizinikiwi/pezframe/paged-list/Cargo.toml +++ b/bizinikiwi/pezframe/paged-list/Cargo.toml @@ -49,3 +49,6 @@ try-runtime = [ ] frame-metadata = ["pezsp-metadata-ir"] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/paged-list/fuzzer/Cargo.toml b/bizinikiwi/pezframe/paged-list/fuzzer/Cargo.toml index c56e72d2..f1318048 100644 --- a/bizinikiwi/pezframe/paged-list/fuzzer/Cargo.toml +++ b/bizinikiwi/pezframe/paged-list/fuzzer/Cargo.toml @@ -39,3 +39,11 @@ runtime-benchmarks = [ "pezframe/runtime-benchmarks", "pezpallet-paged-list/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", + "pezpallet-paged-list/try-runtime", +] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/parameters/Cargo.toml b/bizinikiwi/pezframe/parameters/Cargo.toml index cdfafc87..f9b9cd90 100644 --- a/bizinikiwi/pezframe/parameters/Cargo.toml +++ b/bizinikiwi/pezframe/parameters/Cargo.toml @@ -54,8 +54,20 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/people/Cargo.toml b/bizinikiwi/pezframe/people/Cargo.toml index 7cde3ff5..7e6a4298 100644 --- a/bizinikiwi/pezframe/people/Cargo.toml +++ b/bizinikiwi/pezframe/people/Cargo.toml @@ -51,7 +51,12 @@ runtime-benchmarks = [ "verifiable/no-std-prover", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/pezframe-metadata/Cargo.toml b/bizinikiwi/pezframe/pezframe-metadata/Cargo.toml index de247d81..67b4a621 100644 --- a/bizinikiwi/pezframe/pezframe-metadata/Cargo.toml +++ b/bizinikiwi/pezframe/pezframe-metadata/Cargo.toml @@ -43,6 +43,11 @@ serde_full = ["codec/serde", "scale-info/serde", "serde", "serde/alloc"] decode = ["scale-info/decode"] std = ["codec/std", "decode", "scale-info/std", "serde/std", "serde_full"] +serde = [ + "codec/serde", + "dep:serde", + "scale-info?/serde", +] [lints] workspace = true diff --git a/bizinikiwi/pezframe/preimage/Cargo.toml b/bizinikiwi/pezframe/preimage/Cargo.toml index d6813a07..58b34fd7 100644 --- a/bizinikiwi/pezframe/preimage/Cargo.toml +++ b/bizinikiwi/pezframe/preimage/Cargo.toml @@ -51,8 +51,13 @@ std = [ "scale-info/std", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/proxy/Cargo.toml b/bizinikiwi/pezframe/proxy/Cargo.toml index c4d055da..49a07a4b 100644 --- a/bizinikiwi/pezframe/proxy/Cargo.toml +++ b/bizinikiwi/pezframe/proxy/Cargo.toml @@ -50,3 +50,6 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-utility/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/ranked-collective/Cargo.toml b/bizinikiwi/pezframe/ranked-collective/Cargo.toml index 52665c7f..6703a5a5 100644 --- a/bizinikiwi/pezframe/ranked-collective/Cargo.toml +++ b/bizinikiwi/pezframe/ranked-collective/Cargo.toml @@ -51,7 +51,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/recovery/Cargo.toml b/bizinikiwi/pezframe/recovery/Cargo.toml index ef188513..de0dc10f 100644 --- a/bizinikiwi/pezframe/recovery/Cargo.toml +++ b/bizinikiwi/pezframe/recovery/Cargo.toml @@ -48,3 +48,6 @@ try-runtime = [ "pezframe/try-runtime", "pezpallet-balances/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/referenda/Cargo.toml b/bizinikiwi/pezframe/referenda/Cargo.toml index cff0d20f..a4aef85d 100644 --- a/bizinikiwi/pezframe/referenda/Cargo.toml +++ b/bizinikiwi/pezframe/referenda/Cargo.toml @@ -69,6 +69,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -76,3 +77,16 @@ try-runtime = [ "pezpallet-scheduler/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-arithmetic/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/remark/Cargo.toml b/bizinikiwi/pezframe/remark/Cargo.toml index a2b425fd..ee47e7e0 100644 --- a/bizinikiwi/pezframe/remark/Cargo.toml +++ b/bizinikiwi/pezframe/remark/Cargo.toml @@ -48,7 +48,19 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/revive/Cargo.toml b/bizinikiwi/pezframe/revive/Cargo.toml index 830267e2..03ef2b90 100644 --- a/bizinikiwi/pezframe/revive/Cargo.toml +++ b/bizinikiwi/pezframe/revive/Cargo.toml @@ -110,6 +110,7 @@ std = [ "num-bigint/std", "num-integer/std", "num-traits/std", + "pez-ethereum-standards/std", "pezframe-benchmarking?/std", "pezframe-support/std", "pezframe-system/std", @@ -117,6 +118,7 @@ std = [ "pezkuwi-subxt-signer?/std", "pezpallet-proxy/std", "pezpallet-revive-fixtures?/std", + "pezpallet-revive-uapi/std", "pezpallet-timestamp/std", "pezpallet-transaction-payment/std", "pezpallet-utility/std", @@ -147,9 +149,11 @@ runtime-benchmarks = [ "pezframe-benchmarking/runtime-benchmarks", "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", + "pezkuwi-subxt-signer?/runtime-benchmarks", "pezpallet-balances/runtime-benchmarks", "pezpallet-proxy/runtime-benchmarks", "pezpallet-revive-fixtures", + "pezpallet-revive-fixtures?/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", "pezpallet-transaction-payment/runtime-benchmarks", "pezpallet-utility/runtime-benchmarks", @@ -166,6 +170,7 @@ runtime-benchmarks = [ "pezsp-version/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -173,5 +178,13 @@ try-runtime = [ "pezpallet-timestamp/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-utility/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus-aura?/try-runtime", + "pezsp-consensus-babe?/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/revive/dev-node/node/Cargo.toml b/bizinikiwi/pezframe/revive/dev-node/node/Cargo.toml index 93c2c623..c067c5b0 100644 --- a/bizinikiwi/pezframe/revive/dev-node/node/Cargo.toml +++ b/bizinikiwi/pezframe/revive/dev-node/node/Cargo.toml @@ -49,3 +49,12 @@ runtime-benchmarks = [ "pezkuwi-sdk/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pez-revive-dev-runtime/try-runtime", + "pezkuwi-sdk/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml b/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml index 4a313ebf..76721c01 100644 --- a/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml +++ b/bizinikiwi/pezframe/revive/dev-node/runtime/Cargo.toml @@ -53,3 +53,11 @@ runtime-benchmarks = [ "pezkuwi-sdk/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezkuwi-sdk/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/revive/fixtures/Cargo.toml b/bizinikiwi/pezframe/revive/fixtures/Cargo.toml index ce5109e5..61d8498d 100644 --- a/bizinikiwi/pezframe/revive/fixtures/Cargo.toml +++ b/bizinikiwi/pezframe/revive/fixtures/Cargo.toml @@ -41,7 +41,13 @@ std = [ "alloy-core", "anyhow", "hex/std", + "pezpallet-revive-uapi/std", "pezsp-core", "pezsp-io", "serde_json/std", ] +serde = [] +with-tracing = [] +runtime-benchmarks = [ + "pezsp-io?/runtime-benchmarks", +] diff --git a/bizinikiwi/pezframe/revive/rpc/Cargo.toml b/bizinikiwi/pezframe/revive/rpc/Cargo.toml index d7845821..4321325f 100644 --- a/bizinikiwi/pezframe/revive/rpc/Cargo.toml +++ b/bizinikiwi/pezframe/revive/rpc/Cargo.toml @@ -72,6 +72,9 @@ pezsp-runtime = { workspace = true, default-features = true } runtime-benchmarks = [ "pez-revive-dev-node/runtime-benchmarks", "pez-revive-dev-runtime/runtime-benchmarks", + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezkuwi-subxt/runtime-benchmarks", + "pezpallet-revive-fixtures/runtime-benchmarks", "pezpallet-revive/runtime-benchmarks", "pezsc-cli/runtime-benchmarks", "pezsc-rpc-api/runtime-benchmarks", @@ -81,3 +84,34 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "anyhow/std", + "codec/std", + "hex/std", + "log/std", + "pezkuwi-subxt/std", + "pezsc-cli/std", + "pezsc-rpc-api/std", + "pezsc-rpc/std", + "pezsc-service/std", + "pezsp-crypto-hashing/std", + "pezsp-rpc/std", + "pezsp-timestamp/std", + "prometheus-endpoint/std", + "rlp/std", + "serde_json/std", +] +try-runtime = [ + "pez-revive-dev-node/try-runtime", + "pez-revive-dev-runtime/try-runtime", + "pezkuwi-subxt/try-runtime", + "pezpallet-revive/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsc-rpc/try-runtime", + "pezsc-service/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/pezframe/revive/uapi/Cargo.toml b/bizinikiwi/pezframe/revive/uapi/Cargo.toml index e0241263..fd51e3d8 100644 --- a/bizinikiwi/pezframe/revive/uapi/Cargo.toml +++ b/bizinikiwi/pezframe/revive/uapi/Cargo.toml @@ -36,3 +36,9 @@ default = ["scale"] scale = ["dep:codec", "scale-info"] precompiles-sol-interfaces = ["alloy-core"] unstable-hostfn = [] +std = [ + "alloy-core?/std", + "codec?/std", + "scale-info?/std", +] +serde = [] diff --git a/bizinikiwi/pezframe/root-offences/Cargo.toml b/bizinikiwi/pezframe/root-offences/Cargo.toml index b5035f9d..2d740693 100644 --- a/bizinikiwi/pezframe/root-offences/Cargo.toml +++ b/bizinikiwi/pezframe/root-offences/Cargo.toml @@ -47,6 +47,7 @@ std = [ "pezframe-system/std", "pezpallet-balances/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-timestamp/std", "pezsp-core/std", @@ -74,7 +75,13 @@ try-runtime = [ "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/root-testing/Cargo.toml b/bizinikiwi/pezframe/root-testing/Cargo.toml index 632a87ae..702a1cf9 100644 --- a/bizinikiwi/pezframe/root-testing/Cargo.toml +++ b/bizinikiwi/pezframe/root-testing/Cargo.toml @@ -45,3 +45,7 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/safe-mode/Cargo.toml b/bizinikiwi/pezframe/safe-mode/Cargo.toml index 2ae05e31..da26cb5d 100644 --- a/bizinikiwi/pezframe/safe-mode/Cargo.toml +++ b/bizinikiwi/pezframe/safe-mode/Cargo.toml @@ -59,3 +59,6 @@ try-runtime = [ "pezpallet-proxy?/try-runtime", "pezpallet-utility?/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/salary/Cargo.toml b/bizinikiwi/pezframe/salary/Cargo.toml index 2539691d..4e7efdb9 100644 --- a/bizinikiwi/pezframe/salary/Cargo.toml +++ b/bizinikiwi/pezframe/salary/Cargo.toml @@ -48,3 +48,6 @@ try-runtime = [ "pezframe/try-runtime", "pezpallet-ranked-collective?/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/sassafras/Cargo.toml b/bizinikiwi/pezframe/sassafras/Cargo.toml index 4d0f63fa..2f6135d9 100644 --- a/bizinikiwi/pezframe/sassafras/Cargo.toml +++ b/bizinikiwi/pezframe/sassafras/Cargo.toml @@ -61,10 +61,16 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsp-consensus-sassafras/try-runtime", "pezsp-runtime/try-runtime", ] # Construct dummy ring context on genesis. # Mostly used for testing and development. construct-dummy-ring-context = [] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/scheduler/Cargo.toml b/bizinikiwi/pezframe/scheduler/Cargo.toml index bf5dccd0..fca9173c 100644 --- a/bizinikiwi/pezframe/scheduler/Cargo.toml +++ b/bizinikiwi/pezframe/scheduler/Cargo.toml @@ -55,8 +55,13 @@ std = [ "scale-info/std", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-preimage/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/scored-pool/Cargo.toml b/bizinikiwi/pezframe/scored-pool/Cargo.toml index b558c7ba..ccb6a442 100644 --- a/bizinikiwi/pezframe/scored-pool/Cargo.toml +++ b/bizinikiwi/pezframe/scored-pool/Cargo.toml @@ -51,3 +51,7 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/session/Cargo.toml b/bizinikiwi/pezframe/session/Cargo.toml index 44e0ff1b..a259d577 100644 --- a/bizinikiwi/pezframe/session/Cargo.toml +++ b/bizinikiwi/pezframe/session/Cargo.toml @@ -58,6 +58,8 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-timestamp/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", ] runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", @@ -71,3 +73,7 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie?/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/session/benchmarking/Cargo.toml b/bizinikiwi/pezframe/session/benchmarking/Cargo.toml index 56918716..77fc4c38 100644 --- a/bizinikiwi/pezframe/session/benchmarking/Cargo.toml +++ b/bizinikiwi/pezframe/session/benchmarking/Cargo.toml @@ -45,6 +45,7 @@ std = [ "pezframe-support/std", "pezframe-system/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezsp-runtime/std", "pezsp-session/std", @@ -66,3 +67,21 @@ runtime-benchmarks = [ "pezsp-session/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +try-runtime = [ + "pezframe-benchmarking/try-runtime", + "pezframe-election-provider-support/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", + "pezpallet-staking/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/society/Cargo.toml b/bizinikiwi/pezframe/society/Cargo.toml index 1347b606..60bf26de 100644 --- a/bizinikiwi/pezframe/society/Cargo.toml +++ b/bizinikiwi/pezframe/society/Cargo.toml @@ -59,8 +59,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking-async/Cargo.toml b/bizinikiwi/pezframe/staking-async/Cargo.toml index 91b9ca63..a2802f0a 100644 --- a/bizinikiwi/pezframe/staking-async/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/Cargo.toml @@ -82,17 +82,25 @@ runtime-benchmarks = [ "pezpallet-bags-list/runtime-benchmarks", "pezpallet-balances/runtime-benchmarks", "pezpallet-staking-async-rc-client/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-npos-elections/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-bags-list/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-staking-async-rc-client/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking-async/ah-client/Cargo.toml b/bizinikiwi/pezframe/staking-async/ah-client/Cargo.toml index ba7a1835..a00265a0 100644 --- a/bizinikiwi/pezframe/staking-async/ah-client/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/ah-client/Cargo.toml @@ -57,13 +57,19 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-session/try-runtime", "pezpallet-staking-async-rc-client/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] [dev-dependencies] pezsp-io = { workspace = true } diff --git a/bizinikiwi/pezframe/staking-async/ahm-test/Cargo.toml b/bizinikiwi/pezframe/staking-async/ahm-test/Cargo.toml index 37009622..94090cb5 100644 --- a/bizinikiwi/pezframe/staking-async/ahm-test/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/ahm-test/Cargo.toml @@ -70,6 +70,8 @@ try-runtime = [ "pezpallet-staking-async/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", ] runtime-benchmarks = [ "pezframe-election-provider-support/runtime-benchmarks", @@ -90,3 +92,7 @@ runtime-benchmarks = [ "pezsp-session/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking-async/rc-client/Cargo.toml b/bizinikiwi/pezframe/staking-async/rc-client/Cargo.toml index 12a4789d..54f5865c 100644 --- a/bizinikiwi/pezframe/staking-async/rc-client/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/rc-client/Cargo.toml @@ -45,4 +45,9 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking-async/reward-fn/Cargo.toml b/bizinikiwi/pezframe/staking-async/reward-fn/Cargo.toml index e5d368f8..88d014eb 100644 --- a/bizinikiwi/pezframe/staking-async/reward-fn/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/reward-fn/Cargo.toml @@ -24,3 +24,4 @@ pezsp-arithmetic = { workspace = true } [features] default = ["std"] std = ["log/std", "pezsp-arithmetic/std"] +serde = [] diff --git a/bizinikiwi/pezframe/staking-async/runtime-api/Cargo.toml b/bizinikiwi/pezframe/staking-async/runtime-api/Cargo.toml index 195067ec..e012ce28 100644 --- a/bizinikiwi/pezframe/staking-async/runtime-api/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/runtime-api/Cargo.toml @@ -28,3 +28,4 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +serde = [] diff --git a/bizinikiwi/pezframe/staking-async/runtimes/preset-store/Cargo.toml b/bizinikiwi/pezframe/staking-async/runtimes/preset-store/Cargo.toml index a2def0c2..db3a7b0a 100644 --- a/bizinikiwi/pezframe/staking-async/runtimes/preset-store/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/runtimes/preset-store/Cargo.toml @@ -35,3 +35,12 @@ runtime-benchmarks = [ "pezframe/runtime-benchmarks", "pezpallet-staking-async-ah-client/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", + "pezpallet-staking-async-ah-client/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking-async/runtimes/rc/Cargo.toml b/bizinikiwi/pezframe/staking-async/runtimes/rc/Cargo.toml index 54c5ddd5..15d215c0 100644 --- a/bizinikiwi/pezframe/staking-async/runtimes/rc/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/runtimes/rc/Cargo.toml @@ -136,6 +136,7 @@ default = ["std"] no_std = [] std = [ "bitvec/std", + "bizinikiwi-wasm-builder/std", "codec/std", "log/std", "pez-binary-merkle-tree/std", @@ -220,6 +221,7 @@ std = [ "pezsp-tracing/std", "pezsp-transaction-pool/std", "pezsp-version/std", + "remote-externalities/std", "scale-info/std", "serde/std", "serde_derive", @@ -292,6 +294,7 @@ runtime-benchmarks = [ "pezpallet-xcm-benchmarks/runtime-benchmarks", "pezpallet-xcm/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", @@ -316,14 +319,19 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime", "pezframe-try-runtime/try-runtime", + "pezkuwi-primitives/try-runtime", "pezkuwi-runtime-common/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-asset-rate/try-runtime", "pezpallet-authority-discovery/try-runtime", "pezpallet-authorship/try-runtime", @@ -334,6 +342,7 @@ try-runtime = [ "pezpallet-beefy/try-runtime", "pezpallet-conviction-voting/try-runtime", "pezpallet-election-provider-multi-phase/try-runtime", + "pezpallet-election-provider-support-benchmarking?/try-runtime", "pezpallet-fast-unstake/try-runtime", "pezpallet-grandpa/try-runtime", "pezpallet-identity/try-runtime", @@ -342,6 +351,7 @@ try-runtime = [ "pezpallet-migrations/try-runtime", "pezpallet-mmr/try-runtime", "pezpallet-multisig/try-runtime", + "pezpallet-offences-benchmarking?/try-runtime", "pezpallet-offences/try-runtime", "pezpallet-parameters/try-runtime", "pezpallet-preimage/try-runtime", @@ -351,19 +361,45 @@ try-runtime = [ "pezpallet-root-offences/try-runtime", "pezpallet-root-testing/try-runtime", "pezpallet-scheduler/try-runtime", + "pezpallet-session-benchmarking?/try-runtime", "pezpallet-session/try-runtime", "pezpallet-staking-async-ah-client/try-runtime", + "pezpallet-staking-async-preset-store/try-runtime", "pezpallet-staking-async-rc-client/try-runtime", + "pezpallet-staking-async-rc-runtime-constants/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-vesting/try-runtime", "pezpallet-whitelist/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus-grandpa/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-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "remote-externalities/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] # Enable the metadata hash generation in the wasm builder. @@ -381,3 +417,7 @@ runtime-metrics = [ # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking-async/runtimes/rc/constants/Cargo.toml b/bizinikiwi/pezframe/staking-async/runtimes/rc/constants/Cargo.toml index 2ddee6de..125943ee 100644 --- a/bizinikiwi/pezframe/staking-async/runtimes/rc/constants/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/runtimes/rc/constants/Cargo.toml @@ -51,3 +51,14 @@ runtime-benchmarks = [ "xcm-builder/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/Cargo.toml b/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/Cargo.toml index 10bccaff..02ac3d55 100644 --- a/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/Cargo.toml +++ b/bizinikiwi/pezframe/staking-async/runtimes/teyrchain/Cargo.toml @@ -248,17 +248,27 @@ runtime-benchmarks = [ try-runtime = [ "asset-test-pezutils/try-runtime", "pez-assets-common/try-runtime", + "pezbp-asset-hub-pezkuwichain/try-runtime", + "pezbp-bridge-hub-pezkuwichain/try-runtime", + "pezbp-bridge-hub-zagros/try-runtime", "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-asset-conversion-ops/try-runtime", "pezpallet-asset-conversion-tx-payment/try-runtime", "pezpallet-asset-conversion/try-runtime", @@ -268,6 +278,7 @@ try-runtime = [ "pezpallet-assets/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-authorship/try-runtime", + "pezpallet-bags-list-remote-tests/try-runtime", "pezpallet-bags-list/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-collator-selection/try-runtime", @@ -280,32 +291,57 @@ try-runtime = [ "pezpallet-multisig/try-runtime", "pezpallet-nft-fractionalization/try-runtime", "pezpallet-nfts/try-runtime", + "pezpallet-nomination-pools-runtime-api/try-runtime", "pezpallet-nomination-pools/try-runtime", "pezpallet-preimage/try-runtime", "pezpallet-proxy/try-runtime", "pezpallet-referenda/try-runtime", "pezpallet-scheduler/try-runtime", "pezpallet-session/try-runtime", + "pezpallet-staking-async-preset-store/try-runtime", "pezpallet-staking-async-rc-client/try-runtime", "pezpallet-staking-async/try-runtime", "pezpallet-state-trie-migration/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-uniques/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-vesting/try-runtime", "pezpallet-whitelist/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm-bridge-hub-router/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-npos-elections/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "remote-externalities/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", ] std = [ # "bp-asset-hub-next-zagros/std", "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "log/std", "pez-assets-common/std", @@ -341,6 +377,7 @@ std = [ "pezpallet-assets/std", "pezpallet-aura/std", "pezpallet-authorship/std", + "pezpallet-bags-list-remote-tests/std", "pezpallet-bags-list/std", "pezpallet-balances/std", "pezpallet-collator-selection/std", @@ -396,6 +433,7 @@ std = [ "pezsp-transaction-pool/std", "pezsp-version/std", "primitive-types/std", + "remote-externalities/std", "scale-info/std", "serde_json/std", "testnet-teyrchains-constants/std", @@ -417,3 +455,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking/Cargo.toml b/bizinikiwi/pezframe/staking/Cargo.toml index 2644dcc8..50536a2a 100644 --- a/bizinikiwi/pezframe/staking/Cargo.toml +++ b/bizinikiwi/pezframe/staking/Cargo.toml @@ -64,6 +64,7 @@ std = [ "pezpallet-bags-list/std", "pezpallet-balances/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-timestamp/std", "pezsp-application-crypto/std", "pezsp-io/std", @@ -85,6 +86,7 @@ runtime-benchmarks = [ "pezpallet-session/runtime-benchmarks", "pezpallet-staking-reward-curve/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-npos-elections/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", @@ -92,6 +94,7 @@ runtime-benchmarks = [ "rand_chacha", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", @@ -99,6 +102,13 @@ try-runtime = [ "pezpallet-bags-list/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/staking/reward-curve/Cargo.toml b/bizinikiwi/pezframe/staking/reward-curve/Cargo.toml index 21a71438..bb6103d0 100644 --- a/bizinikiwi/pezframe/staking/reward-curve/Cargo.toml +++ b/bizinikiwi/pezframe/staking/reward-curve/Cargo.toml @@ -29,3 +29,8 @@ pezsp-runtime = { workspace = true, default-features = true } [features] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +std = [] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/pezframe/staking/reward-fn/Cargo.toml b/bizinikiwi/pezframe/staking/reward-fn/Cargo.toml index 301dd65d..703145e8 100644 --- a/bizinikiwi/pezframe/staking/reward-fn/Cargo.toml +++ b/bizinikiwi/pezframe/staking/reward-fn/Cargo.toml @@ -22,3 +22,4 @@ pezsp-arithmetic = { workspace = true } [features] default = ["std"] std = ["log/std", "pezsp-arithmetic/std"] +serde = [] diff --git a/bizinikiwi/pezframe/staking/runtime-api/Cargo.toml b/bizinikiwi/pezframe/staking/runtime-api/Cargo.toml index 9227b007..f33ac65e 100644 --- a/bizinikiwi/pezframe/staking/runtime-api/Cargo.toml +++ b/bizinikiwi/pezframe/staking/runtime-api/Cargo.toml @@ -28,3 +28,4 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +serde = [] diff --git a/bizinikiwi/pezframe/state-trie-migration/Cargo.toml b/bizinikiwi/pezframe/state-trie-migration/Cargo.toml index b3deeb66..13e28fe5 100644 --- a/bizinikiwi/pezframe/state-trie-migration/Cargo.toml +++ b/bizinikiwi/pezframe/state-trie-migration/Cargo.toml @@ -39,6 +39,7 @@ tokio = { features = ["macros"], workspace = true, default-features = true } [features] default = ["std"] std = [ + "bizinikiwi-state-trie-migration-rpc?/std", "codec/std", "log/std", "pezframe-benchmarking?/std", @@ -49,6 +50,7 @@ std = [ "pezsp-io/std", "pezsp-runtime/std", "pezsp-tracing/std", + "remote-externalities?/std", "scale-info/std", ] runtime-benchmarks = [ @@ -63,10 +65,13 @@ runtime-benchmarks = [ "remote-externalities?/runtime-benchmarks", ] try-runtime = [ + "bizinikiwi-state-trie-migration-rpc?/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", + "remote-externalities?/try-runtime", ] remote-test = [ "bizinikiwi-state-trie-migration-rpc", @@ -76,3 +81,15 @@ remote-test = [ "thousands", "zstd", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/statement/Cargo.toml b/bizinikiwi/pezframe/statement/Cargo.toml index ae423a9d..2f5e9625 100644 --- a/bizinikiwi/pezframe/statement/Cargo.toml +++ b/bizinikiwi/pezframe/statement/Cargo.toml @@ -49,7 +49,9 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-statement-store/try-runtime", ] runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", @@ -60,3 +62,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-statement-store/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/sudo/Cargo.toml b/bizinikiwi/pezframe/sudo/Cargo.toml index 6d0d2367..1e292ccf 100644 --- a/bizinikiwi/pezframe/sudo/Cargo.toml +++ b/bizinikiwi/pezframe/sudo/Cargo.toml @@ -46,7 +46,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/support/Cargo.toml b/bizinikiwi/pezframe/support/Cargo.toml index 74e68cd5..a21f9051 100644 --- a/bizinikiwi/pezframe/support/Cargo.toml +++ b/bizinikiwi/pezframe/support/Cargo.toml @@ -72,6 +72,7 @@ std = [ "pezsp-api/std", "pezsp-arithmetic/std", "pezsp-core/std", + "pezsp-crypto-hashing-proc-macro/std", "pezsp-debug-derive/std", "pezsp-genesis-builder/std", "pezsp-inherents/std", @@ -100,7 +101,14 @@ runtime-benchmarks = [ "pezsp-state-machine?/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] -try-runtime = ["pezsp-debug-derive/force-debug", "pezsp-runtime/try-runtime"] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-debug-derive/force-debug", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", +] experimental = ["pezframe-support-procedural/experimental"] # By default some types have documentation, `no-metadata-docs` allows to reduce the documentation # in the metadata. @@ -115,3 +123,5 @@ full-metadata-docs = ["scale-info/docs"] # pallets in a runtime grows. Does increase the compile time! tuples-96 = ["pezframe-support-procedural/tuples-96"] tuples-128 = ["pezframe-support-procedural/tuples-128"] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/pezframe/support/test/Cargo.toml b/bizinikiwi/pezframe/support/test/Cargo.toml index 72413350..9e6d1fc0 100644 --- a/bizinikiwi/pezframe/support/test/Cargo.toml +++ b/bizinikiwi/pezframe/support/test/Cargo.toml @@ -78,10 +78,14 @@ runtime-benchmarks = [ "test-pezpallet/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", + "test-pezpallet/try-runtime", ] # WARNING: # Only CI runs with this feature enabled. This feature is for testing stuff related to the FRAME macros @@ -91,3 +95,6 @@ frame-feature-testing-2 = [] # Disable ui tests disable-ui-tests = [] no-metadata-docs = ["pezframe-support/no-metadata-docs"] +serde = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/support/test/compile_pass/Cargo.toml b/bizinikiwi/pezframe/support/test/compile_pass/Cargo.toml index caf81439..7e84aaf4 100644 --- a/bizinikiwi/pezframe/support/test/compile_pass/Cargo.toml +++ b/bizinikiwi/pezframe/support/test/compile_pass/Cargo.toml @@ -42,3 +42,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/support/test/pezpallet/Cargo.toml b/bizinikiwi/pezframe/support/test/pezpallet/Cargo.toml index 4735c9bf..7130fba3 100644 --- a/bizinikiwi/pezframe/support/test/pezpallet/Cargo.toml +++ b/bizinikiwi/pezframe/support/test/pezpallet/Cargo.toml @@ -39,3 +39,11 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/support/test/stg_pezframe_crate/Cargo.toml b/bizinikiwi/pezframe/support/test/stg_pezframe_crate/Cargo.toml index 0d525c1c..6b011600 100644 --- a/bizinikiwi/pezframe/support/test/stg_pezframe_crate/Cargo.toml +++ b/bizinikiwi/pezframe/support/test/stg_pezframe_crate/Cargo.toml @@ -37,3 +37,11 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezframe/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/system/Cargo.toml b/bizinikiwi/pezframe/system/Cargo.toml index 5cdb75d5..432776fc 100644 --- a/bizinikiwi/pezframe/system/Cargo.toml +++ b/bizinikiwi/pezframe/system/Cargo.toml @@ -60,5 +60,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] -try-runtime = ["pezframe-support/try-runtime", "pezsp-runtime/try-runtime"] +try-runtime = [ + "pezframe-support/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] experimental = ["pezframe-support/experimental"] +serde = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/system/benchmarking/Cargo.toml b/bizinikiwi/pezframe/system/benchmarking/Cargo.toml index 061b20c5..1ed306b1 100644 --- a/bizinikiwi/pezframe/system/benchmarking/Cargo.toml +++ b/bizinikiwi/pezframe/system/benchmarking/Cargo.toml @@ -50,3 +50,14 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +try-runtime = [ + "pezframe-benchmarking/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/system/rpc/runtime-api/Cargo.toml b/bizinikiwi/pezframe/system/rpc/runtime-api/Cargo.toml index f1820408..40dba253 100644 --- a/bizinikiwi/pezframe/system/rpc/runtime-api/Cargo.toml +++ b/bizinikiwi/pezframe/system/rpc/runtime-api/Cargo.toml @@ -25,3 +25,4 @@ pezsp-api = { workspace = true } default = ["std"] std = ["codec/std", "pezsp-api/std"] runtime-benchmarks = ["pezsp-api/runtime-benchmarks"] +serde = [] diff --git a/bizinikiwi/pezframe/timestamp/Cargo.toml b/bizinikiwi/pezframe/timestamp/Cargo.toml index 86760f81..84304381 100644 --- a/bizinikiwi/pezframe/timestamp/Cargo.toml +++ b/bizinikiwi/pezframe/timestamp/Cargo.toml @@ -57,7 +57,14 @@ runtime-benchmarks = [ "pezsp-timestamp/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/tips/Cargo.toml b/bizinikiwi/pezframe/tips/Cargo.toml index 11bc169d..281bcdc1 100644 --- a/bizinikiwi/pezframe/tips/Cargo.toml +++ b/bizinikiwi/pezframe/tips/Cargo.toml @@ -60,9 +60,24 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-treasury/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezpallet-treasury/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-storage/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/transaction-payment/Cargo.toml b/bizinikiwi/pezframe/transaction-payment/Cargo.toml index 25cee824..06bed269 100644 --- a/bizinikiwi/pezframe/transaction-payment/Cargo.toml +++ b/bizinikiwi/pezframe/transaction-payment/Cargo.toml @@ -53,8 +53,20 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/transaction-payment/asset-conversion-tx-payment/Cargo.toml b/bizinikiwi/pezframe/transaction-payment/asset-conversion-tx-payment/Cargo.toml index 46ffb92e..400c6d97 100644 --- a/bizinikiwi/pezframe/transaction-payment/asset-conversion-tx-payment/Cargo.toml +++ b/bizinikiwi/pezframe/transaction-payment/asset-conversion-tx-payment/Cargo.toml @@ -56,6 +56,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-asset-conversion/try-runtime", @@ -64,3 +65,7 @@ try-runtime = [ "pezpallet-transaction-payment/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/transaction-payment/asset-tx-payment/Cargo.toml b/bizinikiwi/pezframe/transaction-payment/asset-tx-payment/Cargo.toml index 5329d5e6..5c01adf7 100644 --- a/bizinikiwi/pezframe/transaction-payment/asset-tx-payment/Cargo.toml +++ b/bizinikiwi/pezframe/transaction-payment/asset-tx-payment/Cargo.toml @@ -61,6 +61,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-assets/try-runtime", @@ -69,3 +70,14 @@ try-runtime = [ "pezpallet-transaction-payment/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezpallet-transaction-payment/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/transaction-payment/rpc/Cargo.toml b/bizinikiwi/pezframe/transaction-payment/rpc/Cargo.toml index 791336f2..33070312 100644 --- a/bizinikiwi/pezframe/transaction-payment/rpc/Cargo.toml +++ b/bizinikiwi/pezframe/transaction-payment/rpc/Cargo.toml @@ -38,3 +38,14 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezsp-blockchain/std", + "pezsp-rpc/std", +] +try-runtime = [ + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/pezframe/transaction-payment/rpc/runtime-api/Cargo.toml b/bizinikiwi/pezframe/transaction-payment/rpc/runtime-api/Cargo.toml index 4487d171..0f059577 100644 --- a/bizinikiwi/pezframe/transaction-payment/rpc/runtime-api/Cargo.toml +++ b/bizinikiwi/pezframe/transaction-payment/rpc/runtime-api/Cargo.toml @@ -37,3 +37,9 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezpallet-transaction-payment/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/pezframe/transaction-payment/skip-feeless-payment/Cargo.toml b/bizinikiwi/pezframe/transaction-payment/skip-feeless-payment/Cargo.toml index c722592f..926f4d8e 100644 --- a/bizinikiwi/pezframe/transaction-payment/skip-feeless-payment/Cargo.toml +++ b/bizinikiwi/pezframe/transaction-payment/skip-feeless-payment/Cargo.toml @@ -45,3 +45,6 @@ try-runtime = [ "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/transaction-storage/Cargo.toml b/bizinikiwi/pezframe/transaction-storage/Cargo.toml index 53208caa..1b1f8334 100644 --- a/bizinikiwi/pezframe/transaction-storage/Cargo.toml +++ b/bizinikiwi/pezframe/transaction-storage/Cargo.toml @@ -60,8 +60,23 @@ runtime-benchmarks = [ "pezsp-transaction-storage-proof/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsp-inherents/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-transaction-storage-proof/try-runtime", ] +serde = [ + "array-bytes/serde", + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/treasury/Cargo.toml b/bizinikiwi/pezframe/treasury/Cargo.toml index ccf19f2e..13cd6e83 100644 --- a/bizinikiwi/pezframe/treasury/Cargo.toml +++ b/bizinikiwi/pezframe/treasury/Cargo.toml @@ -63,9 +63,22 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-utility/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-core?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/try-runtime/Cargo.toml b/bizinikiwi/pezframe/try-runtime/Cargo.toml index 16f9e9b4..aaa92e1e 100644 --- a/bizinikiwi/pezframe/try-runtime/Cargo.toml +++ b/bizinikiwi/pezframe/try-runtime/Cargo.toml @@ -29,9 +29,16 @@ std = [ "pezsp-api/std", "pezsp-runtime/std", ] -try-runtime = ["pezframe-support/try-runtime", "pezsp-runtime/try-runtime"] +try-runtime = [ + "pezframe-support/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/tx-pause/Cargo.toml b/bizinikiwi/pezframe/tx-pause/Cargo.toml index d696c2d3..c6af3de0 100644 --- a/bizinikiwi/pezframe/tx-pause/Cargo.toml +++ b/bizinikiwi/pezframe/tx-pause/Cargo.toml @@ -53,3 +53,6 @@ try-runtime = [ "pezpallet-proxy/try-runtime", "pezpallet-utility/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/uniques/Cargo.toml b/bizinikiwi/pezframe/uniques/Cargo.toml index 2f41e444..0fb82355 100644 --- a/bizinikiwi/pezframe/uniques/Cargo.toml +++ b/bizinikiwi/pezframe/uniques/Cargo.toml @@ -49,8 +49,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/utility/Cargo.toml b/bizinikiwi/pezframe/utility/Cargo.toml index e8e8099c..e8441891 100644 --- a/bizinikiwi/pezframe/utility/Cargo.toml +++ b/bizinikiwi/pezframe/utility/Cargo.toml @@ -55,6 +55,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -62,3 +63,7 @@ try-runtime = [ "pezpallet-timestamp/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/verify-signature/Cargo.toml b/bizinikiwi/pezframe/verify-signature/Cargo.toml index 8bb4a192..a1774fad 100644 --- a/bizinikiwi/pezframe/verify-signature/Cargo.toml +++ b/bizinikiwi/pezframe/verify-signature/Cargo.toml @@ -46,7 +46,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/vesting/Cargo.toml b/bizinikiwi/pezframe/vesting/Cargo.toml index 649252e1..f35f3372 100644 --- a/bizinikiwi/pezframe/vesting/Cargo.toml +++ b/bizinikiwi/pezframe/vesting/Cargo.toml @@ -49,8 +49,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/pezframe/whitelist/Cargo.toml b/bizinikiwi/pezframe/whitelist/Cargo.toml index 1952fbeb..b15eba57 100644 --- a/bizinikiwi/pezframe/whitelist/Cargo.toml +++ b/bizinikiwi/pezframe/whitelist/Cargo.toml @@ -49,3 +49,6 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-preimage/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/primitives/api/Cargo.toml b/bizinikiwi/primitives/api/Cargo.toml index c560fd54..7690299e 100644 --- a/bizinikiwi/primitives/api/Cargo.toml +++ b/bizinikiwi/primitives/api/Cargo.toml @@ -70,3 +70,8 @@ runtime-benchmarks = [ "pezsp-trie?/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +try-runtime = [ + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/api/test/Cargo.toml b/bizinikiwi/primitives/api/test/Cargo.toml index 5176d1df..109cf45b 100644 --- a/bizinikiwi/primitives/api/test/Cargo.toml +++ b/bizinikiwi/primitives/api/test/Cargo.toml @@ -55,3 +55,20 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-block-builder/std", + "pezsp-consensus/std", + "scale-info/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/primitives/application-crypto/Cargo.toml b/bizinikiwi/primitives/application-crypto/Cargo.toml index 59a72759..d38316f0 100644 --- a/bizinikiwi/primitives/application-crypto/Cargo.toml +++ b/bizinikiwi/primitives/application-crypto/Cargo.toml @@ -35,7 +35,12 @@ std = [ ] # Serde support without relying on std features. -serde = ["dep:serde", "pezsp-core/serde", "scale-info/serde"] +serde = [ + "codec/serde", + "dep:serde", + "pezsp-core/serde", + "scale-info/serde", +] # This feature enables all crypto primitives for `no_std` builds like microcontrollers # or Intel SGX. @@ -63,3 +68,7 @@ bandersnatch-experimental = [ "pezsp-core/bandersnatch-experimental", "pezsp-io/bandersnatch-experimental", ] +with-tracing = [] +runtime-benchmarks = [ + "pezsp-io/runtime-benchmarks", +] diff --git a/bizinikiwi/primitives/application-crypto/test/Cargo.toml b/bizinikiwi/primitives/application-crypto/test/Cargo.toml index 84647544..cf3a0cce 100644 --- a/bizinikiwi/primitives/application-crypto/test/Cargo.toml +++ b/bizinikiwi/primitives/application-crypto/test/Cargo.toml @@ -29,4 +29,12 @@ bls-experimental = ["bizinikiwi-test-runtime-client/bls-experimental"] runtime-benchmarks = [ "bizinikiwi-test-runtime-client/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "pezsp-core/std", + "pezsp-keystore/std", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/primitives/arithmetic/Cargo.toml b/bizinikiwi/primitives/arithmetic/Cargo.toml index 986d6a40..a55ede97 100644 --- a/bizinikiwi/primitives/arithmetic/Cargo.toml +++ b/bizinikiwi/primitives/arithmetic/Cargo.toml @@ -45,4 +45,10 @@ std = [ "serde/std", ] # Serde support without relying on std features. -serde = ["dep:serde", "scale-info/serde"] +serde = [ + "codec/serde", + "dep:serde", + "primitive-types/serde", + "rand/serde", + "scale-info/serde", +] diff --git a/bizinikiwi/primitives/arithmetic/fuzzer/Cargo.toml b/bizinikiwi/primitives/arithmetic/fuzzer/Cargo.toml index 40cb17c8..a9ef3f38 100644 --- a/bizinikiwi/primitives/arithmetic/fuzzer/Cargo.toml +++ b/bizinikiwi/primitives/arithmetic/fuzzer/Cargo.toml @@ -46,3 +46,9 @@ fraction = { workspace = true } honggfuzz = { workspace = true } num-bigint = { workspace = true } pezsp-arithmetic = { workspace = true, default-features = true } + +[features] +std = [ + "num-bigint/std", +] +serde = [] diff --git a/bizinikiwi/primitives/authority-discovery/Cargo.toml b/bizinikiwi/primitives/authority-discovery/Cargo.toml index ea45c252..3b6bd273 100644 --- a/bizinikiwi/primitives/authority-discovery/Cargo.toml +++ b/bizinikiwi/primitives/authority-discovery/Cargo.toml @@ -33,11 +33,17 @@ std = [ "scale-info/std", ] serde = [ + "codec/serde", "pezsp-application-crypto/serde", "pezsp-runtime/serde", "scale-info/serde", ] runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] diff --git a/bizinikiwi/primitives/block-builder/Cargo.toml b/bizinikiwi/primitives/block-builder/Cargo.toml index a3599c0e..da5808e8 100644 --- a/bizinikiwi/primitives/block-builder/Cargo.toml +++ b/bizinikiwi/primitives/block-builder/Cargo.toml @@ -29,3 +29,9 @@ runtime-benchmarks = [ "pezsp-inherents/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/blockchain/Cargo.toml b/bizinikiwi/primitives/blockchain/Cargo.toml index da4b8087..21b50b82 100644 --- a/bizinikiwi/primitives/blockchain/Cargo.toml +++ b/bizinikiwi/primitives/blockchain/Cargo.toml @@ -37,3 +37,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "codec/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/consensus/aura/Cargo.toml b/bizinikiwi/primitives/consensus/aura/Cargo.toml index 8c491e83..20d130a5 100644 --- a/bizinikiwi/primitives/consensus/aura/Cargo.toml +++ b/bizinikiwi/primitives/consensus/aura/Cargo.toml @@ -43,6 +43,7 @@ std = [ # Serde support without relying on std features. serde = [ + "codec/serde", "pezsp-application-crypto/serde", "pezsp-consensus-slots/serde", "pezsp-runtime/serde", @@ -50,8 +51,15 @@ serde = [ ] runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-slots/runtime-benchmarks", "pezsp-inherents/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] diff --git a/bizinikiwi/primitives/consensus/babe/Cargo.toml b/bizinikiwi/primitives/consensus/babe/Cargo.toml index 9c92dad7..9a502c72 100644 --- a/bizinikiwi/primitives/consensus/babe/Cargo.toml +++ b/bizinikiwi/primitives/consensus/babe/Cargo.toml @@ -47,6 +47,7 @@ std = [ # Serde support without relying on std features. serde = [ + "codec/serde", "dep:serde", "pezsp-application-crypto/serde", "pezsp-consensus-slots/serde", @@ -56,8 +57,15 @@ serde = [ ] runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-slots/runtime-benchmarks", "pezsp-inherents/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp?/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp?/try-runtime", +] diff --git a/bizinikiwi/primitives/consensus/beefy/Cargo.toml b/bizinikiwi/primitives/consensus/beefy/Cargo.toml index 3cda9615..4bb84806 100644 --- a/bizinikiwi/primitives/consensus/beefy/Cargo.toml +++ b/bizinikiwi/primitives/consensus/beefy/Cargo.toml @@ -54,10 +54,14 @@ std = [ # Serde support without relying on std features. serde = [ + "array-bytes/serde", + "codec/serde", "dep:serde", "pezsp-application-crypto/serde", "pezsp-core/serde", + "pezsp-mmr-primitives/serde", "pezsp-runtime/serde", + "pezsp-weights/serde", "scale-info/serde", ] @@ -69,7 +73,15 @@ bls-experimental = [ ] runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-mmr-primitives/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-mmr-primitives/try-runtime", + "pezsp-runtime/try-runtime", +] +experimental = [] +with-tracing = [] diff --git a/bizinikiwi/primitives/consensus/common/Cargo.toml b/bizinikiwi/primitives/consensus/common/Cargo.toml index 4d0ed9db..04c5618d 100644 --- a/bizinikiwi/primitives/consensus/common/Cargo.toml +++ b/bizinikiwi/primitives/consensus/common/Cargo.toml @@ -35,3 +35,11 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "log/std", +] +try-runtime = [ + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/consensus/grandpa/Cargo.toml b/bizinikiwi/primitives/consensus/grandpa/Cargo.toml index 4ae199f9..ab72875c 100644 --- a/bizinikiwi/primitives/consensus/grandpa/Cargo.toml +++ b/bizinikiwi/primitives/consensus/grandpa/Cargo.toml @@ -45,7 +45,9 @@ std = [ # Serde support without relying on std features. serde = [ + "codec/serde", "dep:serde", + "log/serde", "pezsp-application-crypto/serde", "pezsp-core/serde", "pezsp-runtime/serde", @@ -53,5 +55,10 @@ serde = [ ] runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] diff --git a/bizinikiwi/primitives/consensus/pow/Cargo.toml b/bizinikiwi/primitives/consensus/pow/Cargo.toml index 4b1bff7d..9cdd43d4 100644 --- a/bizinikiwi/primitives/consensus/pow/Cargo.toml +++ b/bizinikiwi/primitives/consensus/pow/Cargo.toml @@ -29,3 +29,8 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/consensus/sassafras/Cargo.toml b/bizinikiwi/primitives/consensus/sassafras/Cargo.toml index 2447b104..f8078970 100644 --- a/bizinikiwi/primitives/consensus/sassafras/Cargo.toml +++ b/bizinikiwi/primitives/consensus/sassafras/Cargo.toml @@ -47,6 +47,7 @@ std = [ # Serde support without relying on std features. serde = [ + "codec/serde", "dep:serde", "pezsp-application-crypto/serde", "pezsp-consensus-slots/serde", @@ -56,6 +57,11 @@ serde = [ ] runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-slots/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] diff --git a/bizinikiwi/primitives/consensus/slots/Cargo.toml b/bizinikiwi/primitives/consensus/slots/Cargo.toml index b736fa47..b26a9a2c 100644 --- a/bizinikiwi/primitives/consensus/slots/Cargo.toml +++ b/bizinikiwi/primitives/consensus/slots/Cargo.toml @@ -27,5 +27,9 @@ default = ["std"] std = ["codec/std", "pezsp-timestamp/std", "scale-info/std", "serde/std"] # Serde support without relying on std features. -serde = ["dep:serde", "scale-info/serde"] +serde = [ + "codec/serde", + "dep:serde", + "scale-info/serde", +] runtime-benchmarks = ["pezsp-timestamp/runtime-benchmarks"] diff --git a/bizinikiwi/primitives/core/Cargo.toml b/bizinikiwi/primitives/core/Cargo.toml index 599f0773..fe962bf3 100644 --- a/bizinikiwi/primitives/core/Cargo.toml +++ b/bizinikiwi/primitives/core/Cargo.toml @@ -139,15 +139,27 @@ std = [ # Serde support without relying on std features. serde = [ + "array-bytes/serde", + "bip39/serde", "blake2", "bounded-collections/serde", "bs58/alloc", + "codec/serde", "dep:serde", + "ed25519-zebra/serde", "impl-serde", "k256/serde", + "log/serde", + "parking_lot?/serde", "pezsp-storage/serde", + "primitive-types/serde", "primitive-types/serde_no_std", + "rand?/serde", "scale-info/serde", + "schnorrkel/serde", + "secp256k1?/serde", + "secrecy/serde", + "zeroize/serde", ] # This feature enables all crypto primitives for `no_std` builds like microcontrollers @@ -164,3 +176,4 @@ bls-experimental = ["sha2", "w3f-bls"] # It should not be used in production since the implementation and interface may still # be subject to significant changes. bandersnatch-experimental = ["ark-vrf"] +experimental = [] diff --git a/bizinikiwi/primitives/core/fuzz/Cargo.toml b/bizinikiwi/primitives/core/fuzz/Cargo.toml index 86703b33..0099cd25 100644 --- a/bizinikiwi/primitives/core/fuzz/Cargo.toml +++ b/bizinikiwi/primitives/core/fuzz/Cargo.toml @@ -27,3 +27,7 @@ libfuzzer-sys = { workspace = true } regex = { workspace = true } pezsp-core = { workspace = true, default-features = true } + +[features] +std = [] +serde = [] diff --git a/bizinikiwi/primitives/crypto/ec-utils/Cargo.toml b/bizinikiwi/primitives/crypto/ec-utils/Cargo.toml index d3bc45d7..5c6b5776 100644 --- a/bizinikiwi/primitives/crypto/ec-utils/Cargo.toml +++ b/bizinikiwi/primitives/crypto/ec-utils/Cargo.toml @@ -65,3 +65,6 @@ all-curves = [ "ed-on-bls12-377", "ed-on-bls12-381-bandersnatch", ] +runtime-benchmarks = [ + "pezsp-runtime-interface?/runtime-benchmarks", +] diff --git a/bizinikiwi/primitives/crypto/hashing/Cargo.toml b/bizinikiwi/primitives/crypto/hashing/Cargo.toml index 25b28c4e..5796d321 100644 --- a/bizinikiwi/primitives/crypto/hashing/Cargo.toml +++ b/bizinikiwi/primitives/crypto/hashing/Cargo.toml @@ -45,3 +45,4 @@ std = [ "sha3/std", "twox-hash/std", ] +serde = [] diff --git a/bizinikiwi/primitives/crypto/hashing/proc-macro/Cargo.toml b/bizinikiwi/primitives/crypto/hashing/proc-macro/Cargo.toml index 01a2c768..6e3e2e16 100644 --- a/bizinikiwi/primitives/crypto/hashing/proc-macro/Cargo.toml +++ b/bizinikiwi/primitives/crypto/hashing/proc-macro/Cargo.toml @@ -22,3 +22,8 @@ proc-macro = true pezsp-crypto-hashing = { workspace = true } quote = { workspace = true } syn = { features = ["full", "parsing"], workspace = true } + +[features] +std = [ + "pezsp-crypto-hashing/std", +] diff --git a/bizinikiwi/primitives/database/Cargo.toml b/bizinikiwi/primitives/database/Cargo.toml index 833fd8fe..265daa5f 100644 --- a/bizinikiwi/primitives/database/Cargo.toml +++ b/bizinikiwi/primitives/database/Cargo.toml @@ -16,3 +16,6 @@ workspace = true [dependencies] kvdb = { workspace = true } parking_lot = { workspace = true, default-features = true } + +[features] +serde = [] diff --git a/bizinikiwi/primitives/externalities/Cargo.toml b/bizinikiwi/primitives/externalities/Cargo.toml index 0c69441b..6c6469f5 100644 --- a/bizinikiwi/primitives/externalities/Cargo.toml +++ b/bizinikiwi/primitives/externalities/Cargo.toml @@ -24,3 +24,4 @@ pezsp-storage = { workspace = true } [features] default = ["std"] std = ["codec/std", "environmental/std", "pezsp-storage/std"] +serde = [] diff --git a/bizinikiwi/primitives/genesis-builder/Cargo.toml b/bizinikiwi/primitives/genesis-builder/Cargo.toml index 128c31ad..c1a7c854 100644 --- a/bizinikiwi/primitives/genesis-builder/Cargo.toml +++ b/bizinikiwi/primitives/genesis-builder/Cargo.toml @@ -37,3 +37,8 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/inherents/Cargo.toml b/bizinikiwi/primitives/inherents/Cargo.toml index b351f8d0..a213fa70 100644 --- a/bizinikiwi/primitives/inherents/Cargo.toml +++ b/bizinikiwi/primitives/inherents/Cargo.toml @@ -37,3 +37,7 @@ std = [ "thiserror", ] runtime-benchmarks = ["pezsp-runtime?/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime?/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/io/Cargo.toml b/bizinikiwi/primitives/io/Cargo.toml index c9281d23..33ae0f93 100644 --- a/bizinikiwi/primitives/io/Cargo.toml +++ b/bizinikiwi/primitives/io/Cargo.toml @@ -130,3 +130,4 @@ runtime-benchmarks = [ "pezsp-state-machine?/runtime-benchmarks", "pezsp-trie?/runtime-benchmarks", ] +serde = [] diff --git a/bizinikiwi/primitives/keyring/Cargo.toml b/bizinikiwi/primitives/keyring/Cargo.toml index 8aff9ba3..c26367ab 100644 --- a/bizinikiwi/primitives/keyring/Cargo.toml +++ b/bizinikiwi/primitives/keyring/Cargo.toml @@ -30,3 +30,7 @@ std = ["pezsp-core/std", "pezsp-runtime/std", "strum/std"] # be subject to significant changes. bandersnatch-experimental = ["pezsp-core/bandersnatch-experimental"] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/keystore/Cargo.toml b/bizinikiwi/primitives/keystore/Cargo.toml index fe323ceb..42225516 100644 --- a/bizinikiwi/primitives/keystore/Cargo.toml +++ b/bizinikiwi/primitives/keystore/Cargo.toml @@ -39,3 +39,4 @@ bls-experimental = ["pezsp-core/bls-experimental"] # It should not be used in production since the implementation and interface may still # be subject to significant changes. bandersnatch-experimental = ["pezsp-core/bandersnatch-experimental"] +serde = [] diff --git a/bizinikiwi/primitives/maybe-compressed-blob/Cargo.toml b/bizinikiwi/primitives/maybe-compressed-blob/Cargo.toml index 563a22ed..341770f8 100644 --- a/bizinikiwi/primitives/maybe-compressed-blob/Cargo.toml +++ b/bizinikiwi/primitives/maybe-compressed-blob/Cargo.toml @@ -16,3 +16,6 @@ workspace = true [dependencies] thiserror = { workspace = true } zstd = { workspace = true } + +[features] +experimental = [] diff --git a/bizinikiwi/primitives/merkle-mountain-range/Cargo.toml b/bizinikiwi/primitives/merkle-mountain-range/Cargo.toml index 6ba2ac70..c1e09767 100644 --- a/bizinikiwi/primitives/merkle-mountain-range/Cargo.toml +++ b/bizinikiwi/primitives/merkle-mountain-range/Cargo.toml @@ -47,7 +47,10 @@ std = [ # Serde support without relying on std features. serde = [ + "array-bytes/serde", + "codec/serde", "dep:serde", + "log/serde", "pezsp-core/serde", "pezsp-runtime/serde", "scale-info/serde", @@ -56,3 +59,7 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] diff --git a/bizinikiwi/primitives/metadata-ir/Cargo.toml b/bizinikiwi/primitives/metadata-ir/Cargo.toml index 12a02fec..fa9432f2 100644 --- a/bizinikiwi/primitives/metadata-ir/Cargo.toml +++ b/bizinikiwi/primitives/metadata-ir/Cargo.toml @@ -23,3 +23,4 @@ scale-info = { features = ["derive"], workspace = true } [features] default = ["std"] std = ["codec/std", "frame-metadata/std", "scale-info/std"] +serde = [] diff --git a/bizinikiwi/primitives/mixnet/Cargo.toml b/bizinikiwi/primitives/mixnet/Cargo.toml index 54742a11..aa8d4ffe 100644 --- a/bizinikiwi/primitives/mixnet/Cargo.toml +++ b/bizinikiwi/primitives/mixnet/Cargo.toml @@ -33,4 +33,8 @@ std = [ "pezsp-application-crypto/std", "scale-info/std", ] -runtime-benchmarks = ["pezsp-api/runtime-benchmarks"] +runtime-benchmarks = [ + "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", +] +serde = [] diff --git a/bizinikiwi/primitives/npos-elections/Cargo.toml b/bizinikiwi/primitives/npos-elections/Cargo.toml index b75bf278..ee4ac9af 100644 --- a/bizinikiwi/primitives/npos-elections/Cargo.toml +++ b/bizinikiwi/primitives/npos-elections/Cargo.toml @@ -38,6 +38,7 @@ std = [ # Serde support without relying on std features. serde = [ + "codec/serde", "dep:serde", "pezsp-arithmetic/serde", "pezsp-core/serde", @@ -45,3 +46,6 @@ serde = [ "scale-info/serde", ] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime/try-runtime", +] diff --git a/bizinikiwi/primitives/npos-elections/fuzzer/Cargo.toml b/bizinikiwi/primitives/npos-elections/fuzzer/Cargo.toml index 194a1eac..5f640be7 100644 --- a/bizinikiwi/primitives/npos-elections/fuzzer/Cargo.toml +++ b/bizinikiwi/primitives/npos-elections/fuzzer/Cargo.toml @@ -47,3 +47,9 @@ runtime-benchmarks = [ "pezsp-npos-elections/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [] +try-runtime = [ + "pezsp-npos-elections/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/offchain/Cargo.toml b/bizinikiwi/primitives/offchain/Cargo.toml index f5b98384..343cb27c 100644 --- a/bizinikiwi/primitives/offchain/Cargo.toml +++ b/bizinikiwi/primitives/offchain/Cargo.toml @@ -28,3 +28,8 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/panic-handler/Cargo.toml b/bizinikiwi/primitives/panic-handler/Cargo.toml index 223b157f..820e247f 100644 --- a/bizinikiwi/primitives/panic-handler/Cargo.toml +++ b/bizinikiwi/primitives/panic-handler/Cargo.toml @@ -19,3 +19,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] backtrace = { workspace = true } regex = { workspace = true } + +[features] +std = [] +serde = [] diff --git a/bizinikiwi/primitives/pez-ethereum-standards/Cargo.toml b/bizinikiwi/primitives/pez-ethereum-standards/Cargo.toml index fc202011..ee7228f2 100644 --- a/bizinikiwi/primitives/pez-ethereum-standards/Cargo.toml +++ b/bizinikiwi/primitives/pez-ethereum-standards/Cargo.toml @@ -14,3 +14,9 @@ workspace = true [dependencies] alloy-core = { workspace = true, features = ["sol-types"] } + +[features] +std = [ + "alloy-core/std", +] +serde = [] diff --git a/bizinikiwi/primitives/rpc/Cargo.toml b/bizinikiwi/primitives/rpc/Cargo.toml index 0c29324a..6bbacd5b 100644 --- a/bizinikiwi/primitives/rpc/Cargo.toml +++ b/bizinikiwi/primitives/rpc/Cargo.toml @@ -23,3 +23,7 @@ serde = { features = ["derive"], workspace = true, default-features = true } [dev-dependencies] serde_json = { workspace = true, default-features = true } + +[features] +std = [] +serde = [] diff --git a/bizinikiwi/primitives/runtime-interface/Cargo.toml b/bizinikiwi/primitives/runtime-interface/Cargo.toml index 630e0e91..75bf4958 100644 --- a/bizinikiwi/primitives/runtime-interface/Cargo.toml +++ b/bizinikiwi/primitives/runtime-interface/Cargo.toml @@ -55,3 +55,5 @@ std = [ # check is changed into a runtime check. disable_target_static_assertions = [] runtime-benchmarks = [] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml b/bizinikiwi/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml index 779a0d3b..17449137 100644 --- a/bizinikiwi/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml +++ b/bizinikiwi/primitives/runtime-interface/test-wasm-deprecated/Cargo.toml @@ -29,7 +29,15 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "pezsp-core/std", "pezsp-io/std", "pezsp-runtime-interface/std", ] +serde = [] +with-tracing = [] +runtime-benchmarks = [ + "bizinikiwi-wasm-builder?/runtime-benchmarks", + "pezsp-io/runtime-benchmarks", + "pezsp-runtime-interface/runtime-benchmarks", +] diff --git a/bizinikiwi/primitives/runtime-interface/test-wasm/Cargo.toml b/bizinikiwi/primitives/runtime-interface/test-wasm/Cargo.toml index 1556acc0..c679f562 100644 --- a/bizinikiwi/primitives/runtime-interface/test-wasm/Cargo.toml +++ b/bizinikiwi/primitives/runtime-interface/test-wasm/Cargo.toml @@ -30,8 +30,16 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "bytes/std", "pezsp-core/std", "pezsp-io/std", "pezsp-runtime-interface/std", ] +serde = [] +with-tracing = [] +runtime-benchmarks = [ + "bizinikiwi-wasm-builder?/runtime-benchmarks", + "pezsp-io/runtime-benchmarks", + "pezsp-runtime-interface/runtime-benchmarks", +] diff --git a/bizinikiwi/primitives/runtime-interface/test/Cargo.toml b/bizinikiwi/primitives/runtime-interface/test/Cargo.toml index 95490c99..e841a568 100644 --- a/bizinikiwi/primitives/runtime-interface/test/Cargo.toml +++ b/bizinikiwi/primitives/runtime-interface/test/Cargo.toml @@ -32,7 +32,18 @@ tracing-core = { workspace = true, default-features = true } runtime-benchmarks = [ "pezsc-executor/runtime-benchmarks", "pezsp-io/runtime-benchmarks", + "pezsp-runtime-interface-test-wasm-deprecated/runtime-benchmarks", + "pezsp-runtime-interface-test-wasm/runtime-benchmarks", "pezsp-runtime-interface/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "pezsc-executor-common/std", +] +try-runtime = [ + "pezsc-executor/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/primitives/runtime/Cargo.toml b/bizinikiwi/primitives/runtime/Cargo.toml index 07e3e295..7df39ca7 100644 --- a/bizinikiwi/primitives/runtime/Cargo.toml +++ b/bizinikiwi/primitives/runtime/Cargo.toml @@ -59,6 +59,7 @@ zstd = { workspace = true } [features] runtime-benchmarks = [ "pez-binary-merkle-tree/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", @@ -93,10 +94,17 @@ std = [ # Serde support without relying on std features. serde = [ + "bytes/serde", + "codec/serde", "dep:serde", + "either/serde", + "log/serde", "pezsp-application-crypto/serde", "pezsp-arithmetic/serde", "pezsp-core/serde", "pezsp-weights/serde", + "rand?/serde", "scale-info/serde", ] +experimental = [] +with-tracing = [] diff --git a/bizinikiwi/primitives/session/Cargo.toml b/bizinikiwi/primitives/session/Cargo.toml index d7912dce..2d5251fe 100644 --- a/bizinikiwi/primitives/session/Cargo.toml +++ b/bizinikiwi/primitives/session/Cargo.toml @@ -41,3 +41,9 @@ runtime-benchmarks = [ "pezsp-runtime?/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime?/try-runtime", + "pezsp-staking/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/staking/Cargo.toml b/bizinikiwi/primitives/staking/Cargo.toml index c54980af..84f8fa3c 100644 --- a/bizinikiwi/primitives/staking/Cargo.toml +++ b/bizinikiwi/primitives/staking/Cargo.toml @@ -35,3 +35,13 @@ std = [ "serde/std", ] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [ + "codec/serde", + "dep:serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] diff --git a/bizinikiwi/primitives/state-machine/Cargo.toml b/bizinikiwi/primitives/state-machine/Cargo.toml index 2a30c32e..e279de29 100644 --- a/bizinikiwi/primitives/state-machine/Cargo.toml +++ b/bizinikiwi/primitives/state-machine/Cargo.toml @@ -50,6 +50,7 @@ std = [ "pezsp-core/std", "pezsp-externalities/std", "pezsp-panic-handler", + "pezsp-panic-handler?/std", "pezsp-trie/std", "rand", "thiserror", @@ -57,3 +58,4 @@ std = [ "trie-db/std", ] runtime-benchmarks = ["pezsp-trie/runtime-benchmarks"] +serde = [] diff --git a/bizinikiwi/primitives/statement-store/Cargo.toml b/bizinikiwi/primitives/statement-store/Cargo.toml index 5d3a9658..b3232d35 100644 --- a/bizinikiwi/primitives/statement-store/Cargo.toml +++ b/bizinikiwi/primitives/statement-store/Cargo.toml @@ -65,13 +65,23 @@ std = [ "x25519-dalek", ] serde = [ + "codec/serde", + "curve25519-dalek?/serde", + "ed25519-dalek?/serde", "pezsp-application-crypto/serde", "pezsp-core/serde", "pezsp-runtime/serde", + "rand?/serde", "scale-info/serde", + "x25519-dalek?/serde", ] runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-runtime-interface/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] diff --git a/bizinikiwi/primitives/storage/Cargo.toml b/bizinikiwi/primitives/storage/Cargo.toml index 05517ebb..28febc0e 100644 --- a/bizinikiwi/primitives/storage/Cargo.toml +++ b/bizinikiwi/primitives/storage/Cargo.toml @@ -28,4 +28,8 @@ default = ["std"] std = ["codec/std", "impl-serde/std", "pezsp-debug-derive/std", "serde/std"] # Serde support without relying on std features. -serde = ["dep:serde", "impl-serde"] +serde = [ + "codec/serde", + "dep:serde", + "impl-serde", +] diff --git a/bizinikiwi/primitives/test-primitives/Cargo.toml b/bizinikiwi/primitives/test-primitives/Cargo.toml index 14efbb98..f19cc7a3 100644 --- a/bizinikiwi/primitives/test-primitives/Cargo.toml +++ b/bizinikiwi/primitives/test-primitives/Cargo.toml @@ -37,9 +37,17 @@ std = [ # Serde support without relying on std features. serde = [ + "codec/serde", "dep:serde", "pezsp-application-crypto/serde", "pezsp-core/serde", "pezsp-runtime/serde", + "scale-info/serde", +] +runtime-benchmarks = [ + "pezsp-application-crypto/runtime-benchmarks", + "pezsp-runtime/runtime-benchmarks", +] +try-runtime = [ + "pezsp-runtime/try-runtime", ] -runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] diff --git a/bizinikiwi/primitives/timestamp/Cargo.toml b/bizinikiwi/primitives/timestamp/Cargo.toml index 45614c99..da3ec67c 100644 --- a/bizinikiwi/primitives/timestamp/Cargo.toml +++ b/bizinikiwi/primitives/timestamp/Cargo.toml @@ -36,3 +36,8 @@ runtime-benchmarks = [ "pezsp-inherents/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/tracing/Cargo.toml b/bizinikiwi/primitives/tracing/Cargo.toml index 8b74b26c..bdbbe04b 100644 --- a/bizinikiwi/primitives/tracing/Cargo.toml +++ b/bizinikiwi/primitives/tracing/Cargo.toml @@ -43,3 +43,4 @@ std = [ "tracing/std", "with-tracing", ] +serde = [] diff --git a/bizinikiwi/primitives/transaction-pool/Cargo.toml b/bizinikiwi/primitives/transaction-pool/Cargo.toml index e286c31e..9b523a7c 100644 --- a/bizinikiwi/primitives/transaction-pool/Cargo.toml +++ b/bizinikiwi/primitives/transaction-pool/Cargo.toml @@ -27,3 +27,8 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/transaction-storage-proof/Cargo.toml b/bizinikiwi/primitives/transaction-storage-proof/Cargo.toml index 73bda9ef..af6adea4 100644 --- a/bizinikiwi/primitives/transaction-storage-proof/Cargo.toml +++ b/bizinikiwi/primitives/transaction-storage-proof/Cargo.toml @@ -41,3 +41,8 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-trie?/runtime-benchmarks", ] +try-runtime = [ + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/primitives/trie/Cargo.toml b/bizinikiwi/primitives/trie/Cargo.toml index 806111bf..56ab9cfa 100644 --- a/bizinikiwi/primitives/trie/Cargo.toml +++ b/bizinikiwi/primitives/trie/Cargo.toml @@ -67,3 +67,4 @@ std = [ "trie-root/std", ] runtime-benchmarks = [] +serde = [] diff --git a/bizinikiwi/primitives/version/Cargo.toml b/bizinikiwi/primitives/version/Cargo.toml index 61c80e8d..a3931ed2 100644 --- a/bizinikiwi/primitives/version/Cargo.toml +++ b/bizinikiwi/primitives/version/Cargo.toml @@ -34,16 +34,27 @@ std = [ "codec/std", "impl-serde/std", "parity-wasm", + "pezsp-crypto-hashing-proc-macro/std", "pezsp-runtime/std", "pezsp-std/std", + "pezsp-version-proc-macro/std", "scale-info/std", "serde/std", "thiserror", ] # Serde support without relying on std features. -serde = ["dep:serde", "impl-serde", "pezsp-runtime/serde"] +serde = [ + "codec/serde", + "dep:serde", + "impl-serde", + "pezsp-runtime/serde", + "scale-info/serde", +] runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version-proc-macro/runtime-benchmarks", ] +try-runtime = [ + "pezsp-runtime/try-runtime", +] diff --git a/bizinikiwi/primitives/version/proc-macro/Cargo.toml b/bizinikiwi/primitives/version/proc-macro/Cargo.toml index 87f85073..b3202f9b 100644 --- a/bizinikiwi/primitives/version/proc-macro/Cargo.toml +++ b/bizinikiwi/primitives/version/proc-macro/Cargo.toml @@ -30,3 +30,5 @@ pezsp-version = { workspace = true, default-features = true } [features] runtime-benchmarks = ["pezsp-version/runtime-benchmarks"] +std = [] +serde = [] diff --git a/bizinikiwi/primitives/wasm-interface/Cargo.toml b/bizinikiwi/primitives/wasm-interface/Cargo.toml index 167b24cb..b85c8571 100644 --- a/bizinikiwi/primitives/wasm-interface/Cargo.toml +++ b/bizinikiwi/primitives/wasm-interface/Cargo.toml @@ -27,3 +27,4 @@ wasmtime = { optional = true, workspace = true } default = ["std"] std = ["anyhow?/std", "codec/std", "log/std", "wasmtime?/std"] wasmtime = ["anyhow", "dep:wasmtime"] +serde = [] diff --git a/bizinikiwi/primitives/weights/Cargo.toml b/bizinikiwi/primitives/weights/Cargo.toml index 7d9436c6..229aee11 100644 --- a/bizinikiwi/primitives/weights/Cargo.toml +++ b/bizinikiwi/primitives/weights/Cargo.toml @@ -43,9 +43,11 @@ full-metadata-docs = ["scale-info/docs"] # Serde support without relying on std features. serde = [ "bounded-collections/serde", + "codec/serde", "dep:serde", "pezsp-arithmetic/serde", "scale-info/serde", + "smallvec/serde", ] json-schema = ["dep:schemars"] diff --git a/bizinikiwi/scripts/ci/pez-node-template-release/Cargo.toml b/bizinikiwi/scripts/ci/pez-node-template-release/Cargo.toml index b59745f2..a68f4b0f 100644 --- a/bizinikiwi/scripts/ci/pez-node-template-release/Cargo.toml +++ b/bizinikiwi/scripts/ci/pez-node-template-release/Cargo.toml @@ -25,3 +25,7 @@ itertools = { workspace = true } tar = { workspace = true } tempfile = { workspace = true } toml_edit = { workspace = true } + +[features] +std = [] +serde = [] diff --git a/bizinikiwi/test-utils/cli/Cargo.toml b/bizinikiwi/test-utils/cli/Cargo.toml index d3322313..d61beca5 100644 --- a/bizinikiwi/test-utils/cli/Cargo.toml +++ b/bizinikiwi/test-utils/cli/Cargo.toml @@ -30,7 +30,13 @@ regex = { workspace = true } tokio = { features = ["full"], workspace = true, default-features = true } [features] -try-runtime = ["node-cli/try-runtime"] +try-runtime = [ + "bizinikiwi-rpc-client/try-runtime", + "node-cli/try-runtime", + "pez-node-primitives/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-service/try-runtime", +] runtime-benchmarks = [ "bizinikiwi-rpc-client/runtime-benchmarks", "node-cli/runtime-benchmarks", @@ -38,3 +44,10 @@ runtime-benchmarks = [ "pezsc-cli/runtime-benchmarks", "pezsc-service/runtime-benchmarks", ] +std = [ + "bizinikiwi-rpc-client/std", + "node-cli/std", + "pezsc-cli/std", + "pezsc-service/std", + "pezsp-rpc/std", +] diff --git a/bizinikiwi/test-utils/client/Cargo.toml b/bizinikiwi/test-utils/client/Cargo.toml index fcaef1b4..14936b92 100644 --- a/bizinikiwi/test-utils/client/Cargo.toml +++ b/bizinikiwi/test-utils/client/Cargo.toml @@ -50,3 +50,23 @@ runtime-benchmarks = [ "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-consensus/std", + "pezsc-service/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-client-db/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-service/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/test-utils/runtime/Cargo.toml b/bizinikiwi/test-utils/runtime/Cargo.toml index 8e6d8ee3..fda8c578 100644 --- a/bizinikiwi/test-utils/runtime/Cargo.toml +++ b/bizinikiwi/test-utils/runtime/Cargo.toml @@ -83,7 +83,9 @@ default = ["std"] std = [ "array-bytes", + "bizinikiwi-test-runtime-client/std", "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "log/std", "pezframe-executive/std", @@ -95,14 +97,19 @@ std = [ "pezpallet-balances/std", "pezpallet-timestamp/std", "pezpallet-utility/std", + "pezsc-block-builder/std", + "pezsc-chain-spec/std", + "pezsc-executor-common/std", "pezsc-executor/std", "pezsc-service", + "pezsc-service?/std", "pezsp-api/std", "pezsp-application-crypto/std", "pezsp-block-builder/std", "pezsp-consensus-aura/std", "pezsp-consensus-babe/std", "pezsp-consensus-grandpa/std", + "pezsp-consensus/std", "pezsp-core/std", "pezsp-crypto-hashing/std", "pezsp-debug-derive/std", @@ -150,6 +157,7 @@ runtime-benchmarks = [ "pezsc-executor/runtime-benchmarks", "pezsc-service?/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-consensus-aura/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", @@ -167,3 +175,36 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-babe/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-utility/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-service?/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/test-utils/runtime/client/Cargo.toml b/bizinikiwi/test-utils/runtime/client/Cargo.toml index b2d9822e..53a2de8a 100644 --- a/bizinikiwi/test-utils/runtime/client/Cargo.toml +++ b/bizinikiwi/test-utils/runtime/client/Cargo.toml @@ -45,3 +45,24 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-client/std", + "pezsc-block-builder/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-test-client/try-runtime", + "bizinikiwi-test-runtime/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/test-utils/runtime/transaction-pool/Cargo.toml b/bizinikiwi/test-utils/runtime/transaction-pool/Cargo.toml index 73bc958d..23b08b45 100644 --- a/bizinikiwi/test-utils/runtime/transaction-pool/Cargo.toml +++ b/bizinikiwi/test-utils/runtime/transaction-pool/Cargo.toml @@ -37,3 +37,18 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-runtime-client/std", + "log/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "bizinikiwi-test-runtime-client/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/utils/binary-merkle-tree/Cargo.toml b/bizinikiwi/utils/binary-merkle-tree/Cargo.toml index 177193b4..f0a8a7cf 100644 --- a/bizinikiwi/utils/binary-merkle-tree/Cargo.toml +++ b/bizinikiwi/utils/binary-merkle-tree/Cargo.toml @@ -27,3 +27,4 @@ debug = ["array-bytes", "log"] default = ["debug", "std"] std = ["codec/std", "hash-db/std", "log/std"] runtime-benchmarks = [] +serde = [] diff --git a/bizinikiwi/utils/bizinikiwi-bip39/Cargo.toml b/bizinikiwi/utils/bizinikiwi-bip39/Cargo.toml index 01f2f581..1bc9bb4a 100644 --- a/bizinikiwi/utils/bizinikiwi-bip39/Cargo.toml +++ b/bizinikiwi/utils/bizinikiwi-bip39/Cargo.toml @@ -30,3 +30,4 @@ std = [ "zeroize/alloc", "zeroize/std", ] +serde = [] diff --git a/bizinikiwi/utils/pez-fork-tree/Cargo.toml b/bizinikiwi/utils/pez-fork-tree/Cargo.toml index 7c02071d..0b0c3cfb 100644 --- a/bizinikiwi/utils/pez-fork-tree/Cargo.toml +++ b/bizinikiwi/utils/pez-fork-tree/Cargo.toml @@ -18,3 +18,7 @@ targets = ["x86_64-unknown-linux-gnu"] [dependencies] codec = { features = ["derive"], workspace = true, default-features = true } + +[features] +std = [] +serde = [] diff --git a/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml b/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml index b5899741..2d3a18c1 100644 --- a/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml +++ b/bizinikiwi/utils/pezframe/benchmarking-cli/Cargo.toml @@ -101,6 +101,8 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezkuwi-subxt/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", "pezsc-block-builder/runtime-benchmarks", "pezsc-chain-spec/runtime-benchmarks", @@ -128,3 +130,49 @@ runtime-benchmarks = [ # "zagros-runtime/runtime-benchmarks", # Not a dependency of this crate ] rocksdb = ["pezsc-cli/rocksdb", "pezsc-client-db/rocksdb"] +std = [ + "log/std", + "pezcumulus-client-teyrchain-inherent/std", + "pezkuwi-subxt/std", + "pezsc-block-builder/std", + "pezsc-chain-spec/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-executor-common/std", + "pezsc-executor-wasmtime/std", + "pezsc-runtime-utilities/std", + "pezsc-service/std", + "pezsc-sysinfo/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezcumulus-client-teyrchain-inherent/try-runtime", + "pezframe-benchmarking/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-subxt/try-runtime", + "pezkuwi-teyrchain-primitives/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-executor/try-runtime", + "pezsc-service/try-runtime", + "pezsc-sysinfo/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/bizinikiwi/utils/pezframe/omni-bencher/Cargo.toml b/bizinikiwi/utils/pezframe/omni-bencher/Cargo.toml index 88d62576..2e13606d 100644 --- a/bizinikiwi/utils/pezframe/omni-bencher/Cargo.toml +++ b/bizinikiwi/utils/pezframe/omni-bencher/Cargo.toml @@ -40,3 +40,18 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-statement-store/runtime-benchmarks", ] +std = [ + "pezframe-benchmarking-cli/std", + "pezsc-chain-spec/std", + "pezsc-cli/std", +] +try-runtime = [ + "pezcumulus-test-runtime/try-runtime", + "pezframe-benchmarking-cli/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-cli/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-statement-store/try-runtime", +] +serde = [] diff --git a/bizinikiwi/utils/pezframe/pez-generate-bags/Cargo.toml b/bizinikiwi/utils/pezframe/pez-generate-bags/Cargo.toml index 10f55bd5..bb34ff5c 100644 --- a/bizinikiwi/utils/pezframe/pez-generate-bags/Cargo.toml +++ b/bizinikiwi/utils/pezframe/pez-generate-bags/Cargo.toml @@ -32,3 +32,14 @@ runtime-benchmarks = [ "pezpallet-staking/runtime-benchmarks", "pezsp-staking/runtime-benchmarks", ] +std = [] +try-runtime = [ + "pezframe-election-provider-support/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-staking/try-runtime", + "pezsp-staking/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/utils/pezframe/pez-generate-bags/node-runtime/Cargo.toml b/bizinikiwi/utils/pezframe/pez-generate-bags/node-runtime/Cargo.toml index 210bfe46..a71de36c 100644 --- a/bizinikiwi/utils/pezframe/pez-generate-bags/node-runtime/Cargo.toml +++ b/bizinikiwi/utils/pezframe/pez-generate-bags/node-runtime/Cargo.toml @@ -25,3 +25,12 @@ runtime-benchmarks = [ "pez-generate-bags/runtime-benchmarks", "pez-kitchensink-runtime/runtime-benchmarks", ] +std = [ + "pez-generate-bags/std", +] +try-runtime = [ + "pez-generate-bags/try-runtime", + "pez-kitchensink-runtime/try-runtime", +] +experimental = [] +with-tracing = [] diff --git a/bizinikiwi/utils/pezframe/remote-externalities/Cargo.toml b/bizinikiwi/utils/pezframe/remote-externalities/Cargo.toml index 76cf560c..c0a191cd 100644 --- a/bizinikiwi/utils/pezframe/remote-externalities/Cargo.toml +++ b/bizinikiwi/utils/pezframe/remote-externalities/Cargo.toml @@ -46,3 +46,13 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "bizinikiwi-rpc-client/std", + "log/std", +] +try-runtime = [ + "bizinikiwi-rpc-client/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/utils/pezframe/rpc/client/Cargo.toml b/bizinikiwi/utils/pezframe/rpc/client/Cargo.toml index 29f08e82..33b9ea96 100644 --- a/bizinikiwi/utils/pezframe/rpc/client/Cargo.toml +++ b/bizinikiwi/utils/pezframe/rpc/client/Cargo.toml @@ -36,3 +36,12 @@ runtime-benchmarks = [ "pezsc-rpc-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-rpc-api/std", +] +try-runtime = [ + "pezsc-rpc-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/utils/pezframe/rpc/state-trie-migration-rpc/Cargo.toml b/bizinikiwi/utils/pezframe/rpc/state-trie-migration-rpc/Cargo.toml index 2b18b627..731fc1b8 100644 --- a/bizinikiwi/utils/pezframe/rpc/state-trie-migration-rpc/Cargo.toml +++ b/bizinikiwi/utils/pezframe/rpc/state-trie-migration-rpc/Cargo.toml @@ -44,3 +44,14 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +std = [ + "codec/std", + "pezsc-client-api/std", + "pezsc-rpc-api/std", +] +try-runtime = [ + "pezsc-client-api/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/utils/pezframe/rpc/support/Cargo.toml b/bizinikiwi/utils/pezframe/rpc/support/Cargo.toml index b17ab3ec..0839defb 100644 --- a/bizinikiwi/utils/pezframe/rpc/support/Cargo.toml +++ b/bizinikiwi/utils/pezframe/rpc/support/Cargo.toml @@ -38,3 +38,15 @@ runtime-benchmarks = [ "pezsc-rpc-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezsc-rpc-api/std", +] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml b/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml index f9d025b4..d4688782 100644 --- a/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml +++ b/bizinikiwi/utils/pezframe/rpc/system/Cargo.toml @@ -54,3 +54,21 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezsc-rpc-api/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsc-rpc-api/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/bizinikiwi/utils/pezframe/storage-access-test-runtime/Cargo.toml b/bizinikiwi/utils/pezframe/storage-access-test-runtime/Cargo.toml index 8f607592..d5f51aa8 100644 --- a/bizinikiwi/utils/pezframe/storage-access-test-runtime/Cargo.toml +++ b/bizinikiwi/utils/pezframe/storage-access-test-runtime/Cargo.toml @@ -40,3 +40,7 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/bizinikiwi/utils/prometheus/Cargo.toml b/bizinikiwi/utils/prometheus/Cargo.toml index b2234b8b..b1b593f1 100644 --- a/bizinikiwi/utils/prometheus/Cargo.toml +++ b/bizinikiwi/utils/prometheus/Cargo.toml @@ -41,3 +41,9 @@ tokio = { features = [ "macros", "rt-multi-thread", ], workspace = true, default-features = true } + +[features] +std = [ + "log/std", +] +serde = [] diff --git a/bizinikiwi/utils/txtesttool/Cargo.toml b/bizinikiwi/utils/txtesttool/Cargo.toml index 3a4c834c..355cf938 100644 --- a/bizinikiwi/utils/txtesttool/Cargo.toml +++ b/bizinikiwi/utils/txtesttool/Cargo.toml @@ -61,3 +61,20 @@ tracing-subscriber = { workspace = true, features = [ "fmt", "time", ] } + +[features] +std = [ + "average/std", + "codec/std", + "futures-util/std", + "pezkuwi-subxt-rpcs/std", + "pezkuwi-subxt/std", + "serde_json/std", +] +serde = [] +runtime-benchmarks = [ + "pezkuwi-subxt-core/runtime-benchmarks", + "pezkuwi-subxt-rpcs/runtime-benchmarks", + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezkuwi-subxt/runtime-benchmarks", +] diff --git a/bizinikiwi/utils/wasm-builder/Cargo.toml b/bizinikiwi/utils/wasm-builder/Cargo.toml index 36047fdd..c3705fcc 100644 --- a/bizinikiwi/utils/wasm-builder/Cargo.toml +++ b/bizinikiwi/utils/wasm-builder/Cargo.toml @@ -69,3 +69,6 @@ runtime-benchmarks = [ "pezsp-io?/runtime-benchmarks", "pezsp-version?/runtime-benchmarks", ] +std = [] +serde = [] +with-tracing = [] diff --git a/docs/sdk/Cargo.toml b/docs/sdk/Cargo.toml index 40e027eb..1f3de9de 100644 --- a/docs/sdk/Cargo.toml +++ b/docs/sdk/Cargo.toml @@ -212,3 +212,111 @@ runtime-benchmarks = [ "xcm-pez-simulator/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "bizinikiwi-wasm-builder/std", + "chain-spec-builder/std", + "codec/std", + "log/std", + "node-cli/std", + "pez-subkey/std", + "pezcumulus-client-service/std", + "pezframe-benchmarking/std", + "pezframe-executive/std", + "pezframe-support/std", + "pezframe-system/std", + "pezkuwi-omni-node-lib/std", + "pezpallet-contracts/std", + "pezpallet-xcm/std", + "pezsc-chain-spec/std", + "pezsc-cli/std", + "pezsc-client-db/std", + "pezsc-consensus-aura/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-beefy/std", + "pezsc-consensus-grandpa/std", + "pezsc-consensus-manual-seal/std", + "pezsc-consensus-pow/std", + "pezsc-network/std", + "pezsc-rpc-api/std", + "pezsc-rpc/std", + "pezsc-service/std", + "scale-info/std", + "serde_json/std", + "xcm-builder/std", + "xcm-executor/std", + "xcm-pez-docs/std", + "xcm-pez-simulator/std", +] +try-runtime = [ + "first-runtime/try-runtime", + "node-cli/try-runtime", + "pez-chain-spec-guide-runtime/try-runtime", + "pez-kitchensink-runtime/try-runtime", + "pez-minimal-template-runtime/try-runtime", + "pez-solochain-template-runtime/try-runtime", + "pezcumulus-client-service/try-runtime", + "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-weight-reclaim/try-runtime", + "pezframe-benchmarking/try-runtime", + "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", + "pezkuwi-omni-node-lib/try-runtime", + "pezkuwi-sdk/try-runtime", + "pezpallet-asset-conversion-tx-payment/try-runtime", + "pezpallet-asset-tx-payment/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-aura/try-runtime", + "pezpallet-babe/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-collective/try-runtime", + "pezpallet-contracts/try-runtime", + "pezpallet-default-config-example/try-runtime", + "pezpallet-democracy/try-runtime", + "pezpallet-example-authorization-tx-extension/try-runtime", + "pezpallet-example-offchain-worker/try-runtime", + "pezpallet-example-single-block-migrations/try-runtime", + "pezpallet-examples/try-runtime", + "pezpallet-grandpa/try-runtime", + "pezpallet-nfts/try-runtime", + "pezpallet-preimage/try-runtime", + "pezpallet-scheduler/try-runtime", + "pezpallet-skip-feeless-payment/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezpallet-uniques/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-client-db/try-runtime", + "pezsc-consensus-aura/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsc-consensus-beefy/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsc-consensus-manual-seal/try-runtime", + "pezsc-consensus-pow/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-network/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsc-rpc/try-runtime", + "pezsc-service/try-runtime", + "pezsp-api/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", + "teyrchain-info/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-docs/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/docs/sdk/packages/guides/first-pezpallet/Cargo.toml b/docs/sdk/packages/guides/first-pezpallet/Cargo.toml index 498cd9e7..8d1bcea3 100644 --- a/docs/sdk/packages/guides/first-pezpallet/Cargo.toml +++ b/docs/sdk/packages/guides/first-pezpallet/Cargo.toml @@ -38,3 +38,11 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezframe/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/docs/sdk/packages/guides/first-runtime/Cargo.toml b/docs/sdk/packages/guides/first-runtime/Cargo.toml index 538d228f..aabe5e79 100644 --- a/docs/sdk/packages/guides/first-runtime/Cargo.toml +++ b/docs/sdk/packages/guides/first-runtime/Cargo.toml @@ -54,6 +54,7 @@ bizinikiwi-wasm-builder = { workspace = true, optional = true } default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "first-pezpallet/std", "pezframe-support/std", @@ -98,3 +99,25 @@ runtime-benchmarks = [ "pezsp-session/runtime-benchmarks", "pezsp-transaction-pool/runtime-benchmarks", ] +try-runtime = [ + "first-pezpallet/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-sudo/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/docs/sdk/src/reference_docs/chain_spec_runtime/Cargo.toml b/docs/sdk/src/reference_docs/chain_spec_runtime/Cargo.toml index a68c4fef..17bde977 100644 --- a/docs/sdk/src/reference_docs/chain_spec_runtime/Cargo.toml +++ b/docs/sdk/src/reference_docs/chain_spec_runtime/Cargo.toml @@ -41,10 +41,12 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezframe-support/std", "pezframe-system/std", "pezframe/std", + "pezsc-chain-spec/std", "pezsp-api/std", "pezsp-application-crypto/std", "pezsp-core/std", @@ -62,7 +64,21 @@ runtime-benchmarks = [ "pezframe/runtime-benchmarks", "pezsc-chain-spec/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-genesis-builder/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsp-api/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/bin/runtime-common/Cargo.toml b/pezbridges/bin/runtime-common/Cargo.toml index 2618c55a..88bb1200 100644 --- a/pezbridges/bin/runtime-common/Cargo.toml +++ b/pezbridges/bin/runtime-common/Cargo.toml @@ -110,3 +110,27 @@ runtime-benchmarks = [ ] integrity-test = ["static_assertions"] test-helpers = ["pezbp-runtime/test-helpers", "pezsp-trie"] +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", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-bridge-grandpa/try-runtime", + "pezpallet-bridge-messages/try-runtime", + "pezpallet-bridge-relayers/try-runtime", + "pezpallet-bridge-teyrchains/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezpallet-utility/try-runtime", + "pezsp-runtime/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/chains/chain-pezcumulus/Cargo.toml b/pezbridges/chains/chain-pezcumulus/Cargo.toml index c72e89ac..c0b971a1 100644 --- a/pezbridges/chains/chain-pezcumulus/Cargo.toml +++ b/pezbridges/chains/chain-pezcumulus/Cargo.toml @@ -54,3 +54,16 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "teyrchains-common/runtime-benchmarks", ] +try-runtime = [ + "pezbp-messages/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsp-api/try-runtime", + "teyrchains-common/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/chains/chain-pezkuwi-bulletin/Cargo.toml b/pezbridges/chains/chain-pezkuwi-bulletin/Cargo.toml index b88ba7c0..2321e767 100644 --- a/pezbridges/chains/chain-pezkuwi-bulletin/Cargo.toml +++ b/pezbridges/chains/chain-pezkuwi-bulletin/Cargo.toml @@ -57,3 +57,16 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/modules/beefy/Cargo.toml b/pezbridges/modules/beefy/Cargo.toml index 9729cb27..17f28ebe 100644 --- a/pezbridges/modules/beefy/Cargo.toml +++ b/pezbridges/modules/beefy/Cargo.toml @@ -55,10 +55,14 @@ std = [ "tracing/std", ] try-runtime = [ + "pezbp-beefy/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-test-utils/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-beefy-mmr/try-runtime", "pezpallet-mmr/try-runtime", + "pezsp-consensus-beefy/try-runtime", "pezsp-runtime/try-runtime", ] runtime-benchmarks = [ @@ -73,3 +77,15 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [ + "codec/serde", + "dep:serde", + "pezsp-consensus-beefy/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "rand/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/modules/grandpa/Cargo.toml b/pezbridges/modules/grandpa/Cargo.toml index 3241dbcc..3d221820 100644 --- a/pezbridges/modules/grandpa/Cargo.toml +++ b/pezbridges/modules/grandpa/Cargo.toml @@ -68,7 +68,16 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-test-utils?/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsp-consensus-grandpa/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/modules/messages/Cargo.toml b/pezbridges/modules/messages/Cargo.toml index 67ff2b40..069c6bc9 100644 --- a/pezbridges/modules/messages/Cargo.toml +++ b/pezbridges/modules/messages/Cargo.toml @@ -75,6 +75,11 @@ runtime-benchmarks = [ "pezsp-trie?/runtime-benchmarks", ] try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-test-utils/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -82,3 +87,7 @@ try-runtime = [ "pezsp-runtime/try-runtime", ] test-helpers = ["pezbp-runtime/test-helpers", "pezsp-trie"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/modules/relayers/Cargo.toml b/pezbridges/modules/relayers/Cargo.toml index cbd5e26a..b643df0f 100644 --- a/pezbridges/modules/relayers/Cargo.toml +++ b/pezbridges/modules/relayers/Cargo.toml @@ -90,6 +90,14 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] 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", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -101,3 +109,7 @@ try-runtime = [ "pezsp-runtime/try-runtime", ] integrity-test = [] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/modules/teyrchains/Cargo.toml b/pezbridges/modules/teyrchains/Cargo.toml index 9f85dd24..6e23e81f 100644 --- a/pezbridges/modules/teyrchains/Cargo.toml +++ b/pezbridges/modules/teyrchains/Cargo.toml @@ -68,8 +68,18 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-test-utils/try-runtime", + "pezbp-teyrchains/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-bridge-grandpa/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/modules/xcm-bridge-hub-router/Cargo.toml b/pezbridges/modules/xcm-bridge-hub-router/Cargo.toml index 03ab07a8..4b225d28 100644 --- a/pezbridges/modules/xcm-bridge-hub-router/Cargo.toml +++ b/pezbridges/modules/xcm-bridge-hub-router/Cargo.toml @@ -65,8 +65,16 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezbp-xcm-bridge-hub-router/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/modules/xcm-bridge-hub/Cargo.toml b/pezbridges/modules/xcm-bridge-hub/Cargo.toml index 7cd07d84..ab96804e 100644 --- a/pezbridges/modules/xcm-bridge-hub/Cargo.toml +++ b/pezbridges/modules/xcm-bridge-hub/Cargo.toml @@ -87,10 +87,23 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-xcm-bridge-hub-router/try-runtime", + "pezbp-xcm-bridge-hub/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-bridge-messages/try-runtime", "pezpallet-xcm-bridge-hub-router/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/ethereum-client/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/ethereum-client/Cargo.toml index 69a41a4e..72302f37 100644 --- a/pezbridges/pezsnowbridge/pezpallets/ethereum-client/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/ethereum-client/Cargo.toml @@ -94,8 +94,27 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-timestamp?/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-ethereum/try-runtime", + "pezsnowbridge-verification-primitives/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsnowbridge-beacon-primitives/serde", + "pezsnowbridge-core/serde", + "pezsnowbridge-ethereum/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/ethereum-client/fixtures/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/ethereum-client/fixtures/Cargo.toml index c99d05c7..3689a9b7 100644 --- a/pezbridges/pezsnowbridge/pezpallets/ethereum-client/fixtures/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/ethereum-client/fixtures/Cargo.toml @@ -39,3 +39,4 @@ runtime-benchmarks = [ "pezsnowbridge-beacon-primitives/runtime-benchmarks", "pezsnowbridge-verification-primitives/runtime-benchmarks", ] +serde = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/Cargo.toml index 7711c7f1..b40843ac 100644 --- a/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/Cargo.toml @@ -66,6 +66,7 @@ std = [ "pezsnowbridge-core/std", "pezsnowbridge-inbound-queue-primitives/std", "pezsnowbridge-pezpallet-inbound-queue-v2-fixtures?/std", + "pezsnowbridge-test-utils/std", "pezsp-core/std", "pezsp-io/std", "pezsp-runtime/std", @@ -97,9 +98,32 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezbp-relayers/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", "pezsnowbridge-inbound-queue-primitives/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-v2-fixtures?/try-runtime", + "pezsnowbridge-test-utils/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [ + "alloy-core/serde", + "codec/serde", + "dep:serde", + "pezsnowbridge-beacon-primitives/serde", + "pezsnowbridge-core/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/fixtures/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/fixtures/Cargo.toml index 4f18627a..b0a9221c 100644 --- a/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/fixtures/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/inbound-queue-v2/fixtures/Cargo.toml @@ -42,3 +42,9 @@ runtime-benchmarks = [ "pezsnowbridge-core/runtime-benchmarks", "pezsnowbridge-inbound-queue-primitives/runtime-benchmarks", ] +try-runtime = [ + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-inbound-queue-primitives/try-runtime", +] +serde = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/inbound-queue/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/inbound-queue/Cargo.toml index 76b89455..c2ce6250 100644 --- a/pezbridges/pezsnowbridge/pezpallets/inbound-queue/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/inbound-queue/Cargo.toml @@ -90,10 +90,30 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", "pezsnowbridge-inbound-queue-primitives/try-runtime", "pezsnowbridge-pezpallet-ethereum-client/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-fixtures?/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [ + "alloy-core/serde", + "codec/serde", + "dep:serde", + "pezsnowbridge-beacon-primitives/serde", + "pezsnowbridge-core/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/inbound-queue/fixtures/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/inbound-queue/fixtures/Cargo.toml index 18f7deeb..de8e6962 100644 --- a/pezbridges/pezsnowbridge/pezpallets/inbound-queue/fixtures/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/inbound-queue/fixtures/Cargo.toml @@ -42,3 +42,9 @@ runtime-benchmarks = [ "pezsnowbridge-core/runtime-benchmarks", "pezsnowbridge-inbound-queue-primitives/runtime-benchmarks", ] +try-runtime = [ + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-inbound-queue-primitives/try-runtime", +] +serde = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/Cargo.toml index 5b43983f..9d70c049 100644 --- a/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/Cargo.toml @@ -67,6 +67,7 @@ std = [ "pezsnowbridge-core/std", "pezsnowbridge-merkle-tree/std", "pezsnowbridge-outbound-queue-primitives/std", + "pezsnowbridge-test-utils/std", "pezsnowbridge-verification-primitives/std", "pezsp-arithmetic/std", "pezsp-core/std", @@ -99,8 +100,23 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezbp-relayers/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-message-queue/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-merkle-tree/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", + "pezsnowbridge-test-utils/try-runtime", + "pezsnowbridge-verification-primitives/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/runtime-api/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/runtime-api/Cargo.toml index d570f499..fa0a6e2e 100644 --- a/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/runtime-api/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/outbound-queue-v2/runtime-api/Cargo.toml @@ -42,3 +42,11 @@ runtime-benchmarks = [ "pezsnowbridge-merkle-tree/runtime-benchmarks", "pezsp-api/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezsnowbridge-merkle-tree/try-runtime", + "pezsp-api/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/outbound-queue/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/outbound-queue/Cargo.toml index 9de68d1f..94c3e818 100644 --- a/pezbridges/pezsnowbridge/pezpallets/outbound-queue/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/outbound-queue/Cargo.toml @@ -78,8 +78,17 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezbridge-hub-common/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-message-queue/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-merkle-tree/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/outbound-queue/runtime-api/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/outbound-queue/runtime-api/Cargo.toml index 81550c48..1585e1cc 100644 --- a/pezbridges/pezsnowbridge/pezpallets/outbound-queue/runtime-api/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/outbound-queue/runtime-api/Cargo.toml @@ -46,3 +46,13 @@ runtime-benchmarks = [ "pezsnowbridge-outbound-queue-primitives/runtime-benchmarks", "pezsp-api/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-merkle-tree/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", + "pezsp-api/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/system-frontend/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/system-frontend/Cargo.toml index 09e0dd89..143a1fdd 100644 --- a/pezbridges/pezsnowbridge/pezpallets/system-frontend/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/system-frontend/Cargo.toml @@ -49,6 +49,7 @@ std = [ "pezframe-system/std", "pezpallet-asset-conversion/std", "pezsnowbridge-core/std", + "pezsnowbridge-test-utils/std", "pezsp-core/std", "pezsp-io/std", "pezsp-keyring/std", @@ -74,9 +75,19 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-asset-conversion/try-runtime", "pezpallet-balances/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-test-utils/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/system-v2/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/system-v2/Cargo.toml index ca36601d..c1fd1753 100644 --- a/pezbridges/pezsnowbridge/pezpallets/system-v2/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/system-v2/Cargo.toml @@ -56,6 +56,7 @@ std = [ "pezsnowbridge-core/std", "pezsnowbridge-outbound-queue-primitives/std", "pezsnowbridge-pezpallet-system/std", + "pezsnowbridge-test-utils/std", "pezsp-core/std", "pezsp-io/std", "pezsp-runtime/std", @@ -81,9 +82,20 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", "pezsnowbridge-pezpallet-system/try-runtime", + "pezsnowbridge-test-utils/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/system-v2/runtime-api/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/system-v2/runtime-api/Cargo.toml index 9f22b024..ee90cc00 100644 --- a/pezbridges/pezsnowbridge/pezpallets/system-v2/runtime-api/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/system-v2/runtime-api/Cargo.toml @@ -40,3 +40,4 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "xcm/runtime-benchmarks", ] +serde = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/system/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/system/Cargo.toml index c368c990..77260456 100644 --- a/pezbridges/pezsnowbridge/pezpallets/system/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/system/Cargo.toml @@ -80,10 +80,20 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-message-queue/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", "pezsnowbridge-pezpallet-outbound-queue/try-runtime", "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/pezpallets/system/runtime-api/Cargo.toml b/pezbridges/pezsnowbridge/pezpallets/system/runtime-api/Cargo.toml index 5ce336a1..c2b333b5 100644 --- a/pezbridges/pezsnowbridge/pezpallets/system/runtime-api/Cargo.toml +++ b/pezbridges/pezsnowbridge/pezpallets/system/runtime-api/Cargo.toml @@ -40,3 +40,4 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "xcm/runtime-benchmarks", ] +serde = [] diff --git a/pezbridges/pezsnowbridge/primitives/beacon/Cargo.toml b/pezbridges/pezsnowbridge/primitives/beacon/Cargo.toml index c7cf5b50..3dcae9b7 100644 --- a/pezbridges/pezsnowbridge/primitives/beacon/Cargo.toml +++ b/pezbridges/pezsnowbridge/primitives/beacon/Cargo.toml @@ -65,3 +65,21 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezsnowbridge-ethereum/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [ + "codec/serde", + "dep:serde", + "hex/serde", + "pezsnowbridge-ethereum/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", + "ssz_rs/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/primitives/core/Cargo.toml b/pezbridges/pezsnowbridge/primitives/core/Cargo.toml index 0b5ec7a4..25097f1a 100644 --- a/pezbridges/pezsnowbridge/primitives/core/Cargo.toml +++ b/pezbridges/pezsnowbridge/primitives/core/Cargo.toml @@ -58,7 +58,14 @@ std = [ "xcm-executor/std", "xcm/std", ] -serde = ["dep:serde", "scale-info/serde"] +serde = [ + "codec/serde", + "dep:serde", + "pezsp-arithmetic/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] runtime-benchmarks = [ "pezbp-relayers/runtime-benchmarks", "pezframe-support/runtime-benchmarks", @@ -70,3 +77,16 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezbp-relayers/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/primitives/ethereum/Cargo.toml b/pezbridges/pezsnowbridge/primitives/ethereum/Cargo.toml index 47ea8756..56c8555b 100644 --- a/pezbridges/pezsnowbridge/primitives/ethereum/Cargo.toml +++ b/pezbridges/pezsnowbridge/primitives/ethereum/Cargo.toml @@ -67,3 +67,16 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [ + "alloy-consensus/serde", + "alloy-core/serde", + "alloy-primitives/serde", + "codec/serde", + "dep:serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +with-tracing = [] diff --git a/pezbridges/pezsnowbridge/primitives/inbound-queue/Cargo.toml b/pezbridges/pezsnowbridge/primitives/inbound-queue/Cargo.toml index 03b9ef2c..0540adf5 100644 --- a/pezbridges/pezsnowbridge/primitives/inbound-queue/Cargo.toml +++ b/pezbridges/pezsnowbridge/primitives/inbound-queue/Cargo.toml @@ -54,6 +54,7 @@ std = [ "pezframe-system/std", "pezsnowbridge-beacon-primitives/std", "pezsnowbridge-core/std", + "pezsnowbridge-test-utils/std", "pezsnowbridge-verification-primitives/std", "pezsp-core/std", "pezsp-io/std", @@ -83,5 +84,16 @@ try-runtime = [ "pez-assets-common/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-test-utils/try-runtime", + "pezsnowbridge-verification-primitives/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/primitives/merkle-tree/Cargo.toml b/pezbridges/pezsnowbridge/primitives/merkle-tree/Cargo.toml index 4ee29fe4..09db3c05 100644 --- a/pezbridges/pezsnowbridge/primitives/merkle-tree/Cargo.toml +++ b/pezbridges/pezsnowbridge/primitives/merkle-tree/Cargo.toml @@ -33,3 +33,8 @@ pezsp-tracing = { workspace = true, default-features = true } default = ["std"] std = ["codec/std", "pezsp-core/std", "pezsp-runtime/std", "scale-info/std"] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezbridges/pezsnowbridge/primitives/outbound-queue/Cargo.toml b/pezbridges/pezsnowbridge/primitives/outbound-queue/Cargo.toml index 71f961b7..54379460 100644 --- a/pezbridges/pezsnowbridge/primitives/outbound-queue/Cargo.toml +++ b/pezbridges/pezsnowbridge/primitives/outbound-queue/Cargo.toml @@ -75,3 +75,18 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-verification-primitives/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/primitives/verification/Cargo.toml b/pezbridges/pezsnowbridge/primitives/verification/Cargo.toml index 648625a8..4c9977ec 100644 --- a/pezbridges/pezsnowbridge/primitives/verification/Cargo.toml +++ b/pezbridges/pezsnowbridge/primitives/verification/Cargo.toml @@ -38,3 +38,10 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezsnowbridge-beacon-primitives/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/runtime/runtime-common/Cargo.toml b/pezbridges/pezsnowbridge/runtime/runtime-common/Cargo.toml index 1ed8cd89..d571a732 100644 --- a/pezbridges/pezsnowbridge/runtime/runtime-common/Cargo.toml +++ b/pezbridges/pezsnowbridge/runtime/runtime-common/Cargo.toml @@ -56,4 +56,10 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-xcm/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/runtime/test-common/Cargo.toml b/pezbridges/pezsnowbridge/runtime/test-common/Cargo.toml index 9b0a3919..9a01a474 100644 --- a/pezbridges/pezsnowbridge/runtime/test-common/Cargo.toml +++ b/pezbridges/pezsnowbridge/runtime/test-common/Cargo.toml @@ -104,3 +104,29 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] fast-runtime = [] +try-runtime = [ + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-collator-selection/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-session/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-utility/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-pezpallet-ethereum-client/try-runtime", + "pezsnowbridge-pezpallet-outbound-queue/try-runtime", + "pezsnowbridge-pezpallet-system/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchain-info/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/pezsnowbridge/test-utils/Cargo.toml b/pezbridges/pezsnowbridge/test-utils/Cargo.toml index 4f5c11a3..8db07e99 100644 --- a/pezbridges/pezsnowbridge/test-utils/Cargo.toml +++ b/pezbridges/pezsnowbridge/test-utils/Cargo.toml @@ -46,3 +46,19 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [] +try-runtime = [ + "pezbp-relayers/try-runtime", + "pezframe-benchmarking?/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/primitives/beefy/Cargo.toml b/pezbridges/primitives/beefy/Cargo.toml index ba8f39c1..b06aaebf 100644 --- a/pezbridges/primitives/beefy/Cargo.toml +++ b/pezbridges/primitives/beefy/Cargo.toml @@ -54,3 +54,14 @@ runtime-benchmarks = [ "pezsp-consensus-beefy/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezpallet-beefy-mmr/try-runtime", + "pezpallet-mmr/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/primitives/header-chain/Cargo.toml b/pezbridges/primitives/header-chain/Cargo.toml index 4df39572..fed4d7ca 100644 --- a/pezbridges/primitives/header-chain/Cargo.toml +++ b/pezbridges/primitives/header-chain/Cargo.toml @@ -54,3 +54,12 @@ runtime-benchmarks = [ "pezsp-consensus-grandpa/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/primitives/messages/Cargo.toml b/pezbridges/primitives/messages/Cargo.toml index ed8f66ae..f0b546e7 100644 --- a/pezbridges/primitives/messages/Cargo.toml +++ b/pezbridges/primitives/messages/Cargo.toml @@ -50,3 +50,12 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezsp-io/runtime-benchmarks", ] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/primitives/pezkuwi-core/Cargo.toml b/pezbridges/primitives/pezkuwi-core/Cargo.toml index fadbb5be..5f87ac5f 100644 --- a/pezbridges/primitives/pezkuwi-core/Cargo.toml +++ b/pezbridges/primitives/pezkuwi-core/Cargo.toml @@ -54,3 +54,20 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [ + "codec/serde", + "dep:serde", + "hex/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/primitives/relayers/Cargo.toml b/pezbridges/primitives/relayers/Cargo.toml index 069f1d75..aaba25e0 100644 --- a/pezbridges/primitives/relayers/Cargo.toml +++ b/pezbridges/primitives/relayers/Cargo.toml @@ -57,3 +57,16 @@ runtime-benchmarks = [ "pezpallet-utility/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-teyrchains/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-utility/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/primitives/runtime/Cargo.toml b/pezbridges/primitives/runtime/Cargo.toml index d8640187..ce394f5e 100644 --- a/pezbridges/primitives/runtime/Cargo.toml +++ b/pezbridges/primitives/runtime/Cargo.toml @@ -63,3 +63,12 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/primitives/test-utils/Cargo.toml b/pezbridges/primitives/test-utils/Cargo.toml index 5675a585..23e6690b 100644 --- a/pezbridges/primitives/test-utils/Cargo.toml +++ b/pezbridges/primitives/test-utils/Cargo.toml @@ -49,7 +49,17 @@ runtime-benchmarks = [ "pezbp-pezkuwi-core/runtime-benchmarks", "pezbp-runtime/runtime-benchmarks", "pezbp-teyrchains/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-grandpa/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-teyrchains/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezbridges/primitives/teyrchains/Cargo.toml b/pezbridges/primitives/teyrchains/Cargo.toml index f5f486ea..7d5b8954 100644 --- a/pezbridges/primitives/teyrchains/Cargo.toml +++ b/pezbridges/primitives/teyrchains/Cargo.toml @@ -48,3 +48,13 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/primitives/xcm-bridge-hub-router/Cargo.toml b/pezbridges/primitives/xcm-bridge-hub-router/Cargo.toml index 0e7a072a..80ff43c1 100644 --- a/pezbridges/primitives/xcm-bridge-hub-router/Cargo.toml +++ b/pezbridges/primitives/xcm-bridge-hub-router/Cargo.toml @@ -36,3 +36,8 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezsp-runtime/try-runtime", + "xcm/try-runtime", +] +serde = [] diff --git a/pezbridges/primitives/xcm-bridge-hub/Cargo.toml b/pezbridges/primitives/xcm-bridge-hub/Cargo.toml index 42e21ce8..57412193 100644 --- a/pezbridges/primitives/xcm-bridge-hub/Cargo.toml +++ b/pezbridges/primitives/xcm-bridge-hub/Cargo.toml @@ -51,3 +51,13 @@ runtime-benchmarks = [ "pezsp-io/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezbridges/relays/client-bizinikiwi/Cargo.toml b/pezbridges/relays/client-bizinikiwi/Cargo.toml index 9c37b2bf..c3cb66ab 100644 --- a/pezbridges/relays/client-bizinikiwi/Cargo.toml +++ b/pezbridges/relays/client-bizinikiwi/Cargo.toml @@ -82,3 +82,34 @@ runtime-benchmarks = [ "relay-utils/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "pez-finality-relay/std", + "pezsc-chain-spec/std", + "pezsc-rpc-api/std", + "pezsc-transaction-pool-api/std", + "pezsp-rpc/std", + "relay-utils/std", + "serde_json/std", + "tracing/std", +] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezpallet-utility/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", + "relay-utils/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/relays/equivocation/Cargo.toml b/pezbridges/relays/equivocation/Cargo.toml index 2b445241..7c7579cb 100644 --- a/pezbridges/relays/equivocation/Cargo.toml +++ b/pezbridges/relays/equivocation/Cargo.toml @@ -29,3 +29,8 @@ runtime-benchmarks = [ "pezbp-header-pez-chain/runtime-benchmarks", "relay-utils/runtime-benchmarks", ] +std = [ + "pez-finality-relay/std", + "relay-utils/std", + "tracing/std", +] diff --git a/pezbridges/relays/finality/Cargo.toml b/pezbridges/relays/finality/Cargo.toml index b609ca1a..1283e698 100644 --- a/pezbridges/relays/finality/Cargo.toml +++ b/pezbridges/relays/finality/Cargo.toml @@ -31,3 +31,8 @@ runtime-benchmarks = [ "pezbp-header-pez-chain/runtime-benchmarks", "relay-utils/runtime-benchmarks", ] +std = [ + "relay-utils/std", + "tracing/std", +] +serde = [] diff --git a/pezbridges/relays/lib-bizinikiwi-relay/Cargo.toml b/pezbridges/relays/lib-bizinikiwi-relay/Cargo.toml index 0915b996..45843ce7 100644 --- a/pezbridges/relays/lib-bizinikiwi-relay/Cargo.toml +++ b/pezbridges/relays/lib-bizinikiwi-relay/Cargo.toml @@ -86,3 +86,37 @@ runtime-benchmarks = [ "relay-utils/runtime-benchmarks", "teyrchains-relay/runtime-benchmarks", ] +std = [ + "anyhow/std", + "pez-equivocation-detector/std", + "pez-finality-relay/std", + "pez-messages-relay/std", + "pezsp-trie/std", + "relay-bizinikiwi-client/std", + "relay-utils/std", + "scale-info/std", + "teyrchains-relay/std", + "tracing/std", +] +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-teyrchains/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-bridge-grandpa/try-runtime", + "pezpallet-bridge-messages/try-runtime", + "pezpallet-bridge-teyrchains/try-runtime", + "pezpallet-grandpa/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-runtime/try-runtime", + "relay-bizinikiwi-client/try-runtime", + "relay-utils/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezbridges/relays/messages/Cargo.toml b/pezbridges/relays/messages/Cargo.toml index d685e564..0cfb7681 100644 --- a/pezbridges/relays/messages/Cargo.toml +++ b/pezbridges/relays/messages/Cargo.toml @@ -38,3 +38,10 @@ runtime-benchmarks = [ "pezbp-messages/runtime-benchmarks", "relay-utils/runtime-benchmarks", ] +std = [ + "pez-finality-relay/std", + "pezsp-core/std", + "relay-utils/std", + "tracing/std", +] +serde = [] diff --git a/pezbridges/relays/teyrchains/Cargo.toml b/pezbridges/relays/teyrchains/Cargo.toml index 97113da8..f6746d73 100644 --- a/pezbridges/relays/teyrchains/Cargo.toml +++ b/pezbridges/relays/teyrchains/Cargo.toml @@ -34,3 +34,9 @@ runtime-benchmarks = [ "relay-bizinikiwi-client/runtime-benchmarks", "relay-utils/runtime-benchmarks", ] +std = [ + "relay-bizinikiwi-client/std", + "relay-utils/std", + "tracing/std", +] +serde = [] diff --git a/pezbridges/relays/utils/Cargo.toml b/pezbridges/relays/utils/Cargo.toml index ba47fd5c..6f27d7a8 100644 --- a/pezbridges/relays/utils/Cargo.toml +++ b/pezbridges/relays/utils/Cargo.toml @@ -43,3 +43,13 @@ runtime-benchmarks = [ "pezbp-runtime/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "prometheus-endpoint/std", + "tracing/std", +] +try-runtime = [ + "pezbp-runtime/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezcumulus/bin/pov-validator/Cargo.toml b/pezcumulus/bin/pov-validator/Cargo.toml index 06b3dc41..9a0de0b9 100644 --- a/pezcumulus/bin/pov-validator/Cargo.toml +++ b/pezcumulus/bin/pov-validator/Cargo.toml @@ -34,3 +34,16 @@ runtime-benchmarks = [ "pezsc-executor/runtime-benchmarks", "pezsp-io/runtime-benchmarks", ] +std = [ + "anyhow/std", + "codec/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-primitives/std", + "pezkuwi-teyrchain-primitives/std", + "pezsc-executor/std", + "pezsp-core/std", + "pezsp-io/std", + "tracing/std", +] +serde = [] +with-tracing = [] diff --git a/pezcumulus/client/bootnodes/Cargo.toml b/pezcumulus/client/bootnodes/Cargo.toml index d98e50e5..91a57ab0 100644 --- a/pezcumulus/client/bootnodes/Cargo.toml +++ b/pezcumulus/client/bootnodes/Cargo.toml @@ -47,3 +47,17 @@ runtime-benchmarks = [ "pezsp-consensus-babe/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezcumulus-relay-chain-interface/std", + "pezsc-network/std", + "pezsc-service/std", +] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/cli/Cargo.toml b/pezcumulus/client/cli/Cargo.toml index 70674a6d..58598b91 100644 --- a/pezcumulus/client/cli/Cargo.toml +++ b/pezcumulus/client/cli/Cargo.toml @@ -35,3 +35,19 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezsc-chain-spec/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-service/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "pezsc-chain-spec/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-service/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/collator/Cargo.toml b/pezcumulus/client/collator/Cargo.toml index 7f3dca1c..8f3f0912 100644 --- a/pezcumulus/client/collator/Cargo.toml +++ b/pezcumulus/client/collator/Cargo.toml @@ -71,3 +71,24 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "pezcumulus-client-consensus-common/std", + "pezcumulus-client-network/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-client-api/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezcumulus-client-consensus-common/try-runtime", + "pezcumulus-client-network/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-client-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezcumulus/client/consensus/aura/Cargo.toml b/pezcumulus/client/consensus/aura/Cargo.toml index 4b8da9d9..c411d218 100644 --- a/pezcumulus/client/consensus/aura/Cargo.toml +++ b/pezcumulus/client/consensus/aura/Cargo.toml @@ -91,6 +91,7 @@ runtime-benchmarks = [ "pezsc-consensus-slots/runtime-benchmarks", "pezsc-consensus/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-aura/runtime-benchmarks", @@ -103,3 +104,53 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "pezcumulus-client-collator/std", + "pezcumulus-client-consensus-common/std", + "pezcumulus-client-consensus-proposer/std", + "pezcumulus-client-teyrchain-inherent/std", + "pezcumulus-relay-chain-interface/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-client-api/std", + "pezsc-consensus-aura/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-slots/std", + "pezsc-consensus/std", + "pezsc-network-types/std", + "pezsc-telemetry/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "pezsp-keyring/std", + "pezsp-tracing/std", + "pezsp-version/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezcumulus-client-collator/try-runtime", + "pezcumulus-client-consensus-common/try-runtime", + "pezcumulus-client-consensus-proposer/try-runtime", + "pezcumulus-client-teyrchain-inherent/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-aura/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsc-consensus-slots/try-runtime", + "pezsc-consensus/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezcumulus/client/consensus/common/Cargo.toml b/pezcumulus/client/consensus/common/Cargo.toml index e84d1f71..fb4b742c 100644 --- a/pezcumulus/client/consensus/common/Cargo.toml +++ b/pezcumulus/client/consensus/common/Cargo.toml @@ -77,3 +77,35 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "log/std", + "pezcumulus-client-pov-recovery/std", + "pezcumulus-relay-chain-interface/std", + "pezcumulus-relay-chain-streams/std", + "pezcumulus-test-client/std", + "pezsc-client-api/std", + "pezsc-consensus-babe/std", + "pezsc-consensus/std", + "pezsc-network/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezcumulus-client-pov-recovery/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-client/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezcumulus/client/consensus/proposer/Cargo.toml b/pezcumulus/client/consensus/proposer/Cargo.toml index 62ca4f84..609950fe 100644 --- a/pezcumulus/client/consensus/proposer/Cargo.toml +++ b/pezcumulus/client/consensus/proposer/Cargo.toml @@ -44,3 +44,21 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "pezsc-basic-authorship/std", + "pezsc-block-builder/std", + "pezsc-transaction-pool-api/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezsc-basic-authorship/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/consensus/relay-chain/Cargo.toml b/pezcumulus/client/consensus/relay-chain/Cargo.toml index 55352c7c..d87f9ec6 100644 --- a/pezcumulus/client/consensus/relay-chain/Cargo.toml +++ b/pezcumulus/client/consensus/relay-chain/Cargo.toml @@ -47,3 +47,23 @@ runtime-benchmarks = [ "pezsp-inherents/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezcumulus-client-consensus-common/std", + "pezcumulus-relay-chain-interface/std", + "pezsc-consensus/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezcumulus-client-consensus-common/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezsc-consensus/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/network/Cargo.toml b/pezcumulus/client/network/Cargo.toml index 152e0bca..53e08c41 100644 --- a/pezcumulus/client/network/Cargo.toml +++ b/pezcumulus/client/network/Cargo.toml @@ -79,3 +79,26 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "pezcumulus-relay-chain-interface/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-client-api/std", + "pezsc-network/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-network/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/pov-recovery/Cargo.toml b/pezcumulus/client/pov-recovery/Cargo.toml index 99cb27ba..c82fc8b4 100644 --- a/pezcumulus/client/pov-recovery/Cargo.toml +++ b/pezcumulus/client/pov-recovery/Cargo.toml @@ -71,3 +71,32 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "pezcumulus-relay-chain-interface/std", + "pezcumulus-relay-chain-streams/std", + "pezcumulus-test-client/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsc-network/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-client/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml b/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml index ce0c5b44..29e79857 100644 --- a/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml +++ b/pezcumulus/client/relay-chain-inprocess-interface/Cargo.toml @@ -69,3 +69,33 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "pezcumulus-client-bootnodes/std", + "pezcumulus-relay-chain-interface/std", + "pezkuwi-cli/std", + "pezkuwi-service/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-network/std", + "pezsc-sysinfo/std", + "pezsc-telemetry/std", + "pezsc-tracing/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezcumulus-client-bootnodes/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezkuwi-cli/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-service/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-network/try-runtime", + "pezsc-sysinfo/try-runtime", + "pezsc-tracing/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/relay-chain-interface/Cargo.toml b/pezcumulus/client/relay-chain-interface/Cargo.toml index 06e69bff..54d5f52e 100644 --- a/pezcumulus/client/relay-chain-interface/Cargo.toml +++ b/pezcumulus/client/relay-chain-interface/Cargo.toml @@ -41,3 +41,11 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "pezkuwi-overseer/std", + "pezsc-client-api/std", + "pezsc-network/std", + "pezsp-blockchain/std", + "pezsp-version/std", +] +serde = [] diff --git a/pezcumulus/client/relay-chain-minimal-node/Cargo.toml b/pezcumulus/client/relay-chain-minimal-node/Cargo.toml index e06f8ed7..722af4eb 100644 --- a/pezcumulus/client/relay-chain-minimal-node/Cargo.toml +++ b/pezcumulus/client/relay-chain-minimal-node/Cargo.toml @@ -75,3 +75,44 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezcumulus-client-bootnodes/std", + "pezcumulus-relay-chain-interface/std", + "pezcumulus-relay-chain-rpc-interface/std", + "pezkuwi-network-bridge/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-overseer/std", + "pezkuwi-service/std", + "pezsc-authority-discovery/std", + "pezsc-client-api/std", + "pezsc-network-common/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsc-tracing/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezcumulus-client-bootnodes/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-relay-chain-rpc-interface/try-runtime", + "pezkuwi-core-primitives/try-runtime", + "pezkuwi-node-network-protocol/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-service/try-runtime", + "pezsc-authority-discovery/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-network-common/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsc-tracing/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/relay-chain-rpc-interface/Cargo.toml b/pezcumulus/client/relay-chain-rpc-interface/Cargo.toml index 1c77742e..3c3b4d6a 100644 --- a/pezcumulus/client/relay-chain-rpc-interface/Cargo.toml +++ b/pezcumulus/client/relay-chain-rpc-interface/Cargo.toml @@ -61,3 +61,22 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +std = [ + "pezcumulus-relay-chain-interface/std", + "pezkuwi-overseer/std", + "pezsc-client-api/std", + "pezsc-rpc-api/std", + "pezsc-service/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-rpc-api/try-runtime", + "pezsc-service/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", +] +serde = [] diff --git a/pezcumulus/client/relay-chain-streams/Cargo.toml b/pezcumulus/client/relay-chain-streams/Cargo.toml index 913ab2bf..86ea9b74 100644 --- a/pezcumulus/client/relay-chain-streams/Cargo.toml +++ b/pezcumulus/client/relay-chain-streams/Cargo.toml @@ -35,3 +35,8 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-consensus/runtime-benchmarks", ] +std = [ + "pezcumulus-relay-chain-interface/std", + "pezkuwi-node-subsystem/std", + "pezsp-consensus/std", +] diff --git a/pezcumulus/client/service/Cargo.toml b/pezcumulus/client/service/Cargo.toml index 9391402d..ce7580c3 100644 --- a/pezcumulus/client/service/Cargo.toml +++ b/pezcumulus/client/service/Cargo.toml @@ -90,3 +90,57 @@ runtime-benchmarks = [ "pezsp-transaction-pool/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +std = [ + "pezcumulus-client-cli/std", + "pezcumulus-client-collator/std", + "pezcumulus-client-consensus-common/std", + "pezcumulus-client-network/std", + "pezcumulus-client-pov-recovery/std", + "pezcumulus-relay-chain-inprocess-interface/std", + "pezcumulus-relay-chain-interface/std", + "pezcumulus-relay-chain-minimal-node/std", + "pezcumulus-relay-chain-streams/std", + "pezkuwi-overseer/std", + "pezsc-client-api/std", + "pezsc-consensus/std", + "pezsc-network-sync/std", + "pezsc-network-transactions/std", + "pezsc-network/std", + "pezsc-rpc/std", + "pezsc-service/std", + "pezsc-sysinfo/std", + "pezsc-telemetry/std", + "pezsc-tracing/std", + "pezsc-transaction-pool/std", + "pezsc-utils/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "pezcumulus-client-cli/try-runtime", + "pezcumulus-client-collator/try-runtime", + "pezcumulus-client-consensus-common/try-runtime", + "pezcumulus-client-network/try-runtime", + "pezcumulus-client-pov-recovery/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-relay-chain-inprocess-interface/try-runtime", + "pezcumulus-relay-chain-minimal-node/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network-transactions/try-runtime", + "pezsc-network/try-runtime", + "pezsc-rpc/try-runtime", + "pezsc-service/try-runtime", + "pezsc-sysinfo/try-runtime", + "pezsc-tracing/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-transaction-pool/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezcumulus/client/teyrchain-inherent/Cargo.toml b/pezcumulus/client/teyrchain-inherent/Cargo.toml index 68e50d10..0dbd5dd9 100644 --- a/pezcumulus/client/teyrchain-inherent/Cargo.toml +++ b/pezcumulus/client/teyrchain-inherent/Cargo.toml @@ -44,3 +44,18 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-state-machine/runtime-benchmarks", ] +std = [ + "pezcumulus-relay-chain-interface/std", + "pezsc-client-api/std", + "pezsc-consensus-babe/std", + "pezsc-network-types/std", +] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-relay-sproof-builder?/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/pezkuwi-omni-node/Cargo.toml b/pezcumulus/pezkuwi-omni-node/Cargo.toml index 28a29940..8746ae34 100644 --- a/pezcumulus/pezkuwi-omni-node/Cargo.toml +++ b/pezcumulus/pezkuwi-omni-node/Cargo.toml @@ -32,3 +32,6 @@ bizinikiwi-build-script-utils = { workspace = true, default-features = true } default = [] runtime-benchmarks = ["pezkuwi-omni-node-lib/runtime-benchmarks"] try-runtime = ["pezkuwi-omni-node-lib/try-runtime"] +std = [ + "pezkuwi-omni-node-lib/std", +] diff --git a/pezcumulus/pezkuwi-omni-node/lib/Cargo.toml b/pezcumulus/pezkuwi-omni-node/lib/Cargo.toml index 86db8465..c785dead 100644 --- a/pezcumulus/pezkuwi-omni-node/lib/Cargo.toml +++ b/pezcumulus/pezkuwi-omni-node/lib/Cargo.toml @@ -155,6 +155,7 @@ runtime-benchmarks = [ "pezsc-consensus-manual-seal/runtime-benchmarks", "pezsc-consensus/runtime-benchmarks", "pezsc-executor/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network-statement/runtime-benchmarks", "pezsc-network-sync/runtime-benchmarks", "pezsc-network/runtime-benchmarks", @@ -183,10 +184,110 @@ runtime-benchmarks = [ "teyrchains-common/runtime-benchmarks", ] try-runtime = [ + "bizinikiwi-frame-rpc-system/try-runtime", + "bizinikiwi-state-trie-migration-rpc/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-service/try-runtime", + "pezcumulus-client-teyrchain-inherent/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-runtime/try-runtime", + "pezframe-benchmarking-cli/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-cli/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", + "pezpallet-transaction-payment-rpc/try-runtime", "pezpallet-transaction-payment/try-runtime", + "pezsc-basic-authorship/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-manual-seal/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-network-statement/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsc-offchain/try-runtime", + "pezsc-rpc/try-runtime", + "pezsc-service/try-runtime", + "pezsc-statement-store/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-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-statement-store/try-runtime", + "pezsp-timestamp/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", "teyrchains-common/try-runtime", ] +std = [ + "bizinikiwi-frame-rpc-system/std", + "bizinikiwi-state-trie-migration-rpc/std", + "chain-spec-builder/std", + "log/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-service/std", + "pezcumulus-client-teyrchain-inherent/std", + "pezcumulus-relay-chain-interface/std", + "pezframe-benchmarking-cli/std", + "pezkuwi-cli/std", + "pezpallet-transaction-payment-rpc/std", + "pezsc-basic-authorship/std", + "pezsc-chain-spec/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-client-db/std", + "pezsc-consensus-aura/std", + "pezsc-consensus-manual-seal/std", + "pezsc-consensus/std", + "pezsc-keystore/std", + "pezsc-network-statement/std", + "pezsc-network-sync/std", + "pezsc-network/std", + "pezsc-offchain/std", + "pezsc-rpc/std", + "pezsc-runtime-utilities/std", + "pezsc-service/std", + "pezsc-statement-store/std", + "pezsc-storage-monitor/std", + "pezsc-sysinfo/std", + "pezsc-telemetry/std", + "pezsc-tracing/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-consensus/std", + "pezsp-genesis-builder/std", + "pezsp-runtime/std", + "prometheus-endpoint/std", + "scale-info/std", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/pezkuwi-teyrchain/Cargo.toml b/pezcumulus/pezkuwi-teyrchain/Cargo.toml index a75c2663..c8a5908b 100644 --- a/pezcumulus/pezkuwi-teyrchain/Cargo.toml +++ b/pezcumulus/pezkuwi-teyrchain/Cargo.toml @@ -104,8 +104,18 @@ try-runtime = [ "pez-penpal-runtime/try-runtime", "pezbridge-hub-pezkuwichain-runtime/try-runtime", "pezbridge-hub-zagros-runtime/try-runtime", + "pezcumulus-client-consensus-aura/try-runtime", + "pezcumulus-primitives-core/try-runtime", "pezkuwi-omni-node-lib/try-runtime", + "pezkuwichain-teyrchain-runtime/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-service/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-keyring/try-runtime", "teyrchains-common/try-runtime", + "xcm/try-runtime", + "yet-another-teyrchain-runtime/try-runtime", ] fast-runtime = [ "coretime-pezkuwichain-runtime/fast-runtime", @@ -113,3 +123,12 @@ fast-runtime = [ "pezbridge-hub-pezkuwichain-runtime/fast-runtime", "pezbridge-hub-zagros-runtime/fast-runtime", ] +std = [ + "log/std", + "pezcumulus-client-consensus-aura/std", + "pezkuwi-omni-node-lib/std", + "pezsc-chain-spec/std", + "pezsc-cli/std", + "pezsc-service/std", +] +serde = [] diff --git a/pezcumulus/pezpallets/ah-ops/Cargo.toml b/pezcumulus/pezpallets/ah-ops/Cargo.toml index 476892a7..b19f8624 100644 --- a/pezcumulus/pezpallets/ah-ops/Cargo.toml +++ b/pezcumulus/pezpallets/ah-ops/Cargo.toml @@ -53,10 +53,12 @@ runtime-benchmarks = [ "pezpallet-balances/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", "pezpallet-utility/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -64,3 +66,7 @@ try-runtime = [ "pezpallet-utility/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/aura-ext/Cargo.toml b/pezcumulus/pezpallets/aura-ext/Cargo.toml index 5a843de5..ddc7b409 100644 --- a/pezcumulus/pezpallets/aura-ext/Cargo.toml +++ b/pezcumulus/pezpallets/aura-ext/Cargo.toml @@ -61,11 +61,16 @@ std = [ ] try-runtime = [ "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", ] runtime-benchmarks = [ "pezcumulus-pezpallet-teyrchain-system/runtime-benchmarks", @@ -76,6 +81,7 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezpallet-aura/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-aura/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", @@ -84,3 +90,7 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "pezsp-version/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/collator-selection/Cargo.toml b/pezcumulus/pezpallets/collator-selection/Cargo.toml index b94d9e9f..3fec9cb5 100644 --- a/pezcumulus/pezpallets/collator-selection/Cargo.toml +++ b/pezcumulus/pezpallets/collator-selection/Cargo.toml @@ -72,6 +72,7 @@ std = [ ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-aura/try-runtime", @@ -79,5 +80,11 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-session/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-consensus-aura/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/dmp-queue/Cargo.toml b/pezcumulus/pezpallets/dmp-queue/Cargo.toml index c7968bfb..e8111349 100644 --- a/pezcumulus/pezpallets/dmp-queue/Cargo.toml +++ b/pezcumulus/pezpallets/dmp-queue/Cargo.toml @@ -60,7 +60,14 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/session-benchmarking/Cargo.toml b/pezcumulus/pezpallets/session-benchmarking/Cargo.toml index 5da2f64f..38cf29b9 100644 --- a/pezcumulus/pezpallets/session-benchmarking/Cargo.toml +++ b/pezcumulus/pezpallets/session-benchmarking/Cargo.toml @@ -41,3 +41,13 @@ std = [ "pezpallet-session/std", "pezsp-runtime/std", ] +try-runtime = [ + "pezframe-benchmarking?/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-session/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/solo-to-para/Cargo.toml b/pezcumulus/pezpallets/solo-to-para/Cargo.toml index 5591b389..93c181b2 100644 --- a/pezcumulus/pezpallets/solo-to-para/Cargo.toml +++ b/pezcumulus/pezpallets/solo-to-para/Cargo.toml @@ -44,6 +44,7 @@ try-runtime = [ "pezcumulus-pezpallet-teyrchain-system/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-sudo/try-runtime", "pezsp-runtime/try-runtime", ] @@ -55,3 +56,6 @@ runtime-benchmarks = [ "pezpallet-sudo/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/teyrchain-system/Cargo.toml b/pezcumulus/pezpallets/teyrchain-system/Cargo.toml index bdb7cd66..24fc20e2 100644 --- a/pezcumulus/pezpallets/teyrchain-system/Cargo.toml +++ b/pezcumulus/pezpallets/teyrchain-system/Cargo.toml @@ -83,12 +83,14 @@ std = [ "pezcumulus-primitives-core/std", "pezcumulus-primitives-proof-size-hostfunction/std", "pezcumulus-primitives-teyrchain-inherent/std", + "pezcumulus-test-client/std", "pezframe-benchmarking/std", "pezframe-support/std", "pezframe-system/std", "pezkuwi-runtime-teyrchains/std", "pezkuwi-teyrchain-primitives/std", "pezpallet-message-queue/std", + "pezsc-consensus/std", "pezsp-consensus-babe/std", "pezsp-core/std", "pezsp-externalities/std", @@ -133,9 +135,26 @@ runtime-benchmarks = [ ] try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-client/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-message-queue/try-runtime", + "pezsc-consensus/try-runtime", + "pezsp-api/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-version/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/weight-reclaim/Cargo.toml b/pezcumulus/pezpallets/weight-reclaim/Cargo.toml index 58f03220..3ae76b50 100644 --- a/pezcumulus/pezpallets/weight-reclaim/Cargo.toml +++ b/pezcumulus/pezpallets/weight-reclaim/Cargo.toml @@ -62,7 +62,13 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", ] try-runtime = [ + "pezcumulus-primitives-storage-weight-reclaim/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/xcm/Cargo.toml b/pezcumulus/pezpallets/xcm/Cargo.toml index cd268ff5..0e04e112 100644 --- a/pezcumulus/pezpallets/xcm/Cargo.toml +++ b/pezcumulus/pezpallets/xcm/Cargo.toml @@ -38,9 +38,11 @@ std = [ "xcm/std", ] try-runtime = [ + "pezcumulus-primitives-core/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", + "xcm/try-runtime", ] runtime-benchmarks = [ "pezcumulus-primitives-core/runtime-benchmarks", @@ -50,3 +52,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "xcm/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/pezpallets/xcmp-queue/Cargo.toml b/pezcumulus/pezpallets/xcmp-queue/Cargo.toml index 6ee1ef52..b42449b2 100644 --- a/pezcumulus/pezpallets/xcmp-queue/Cargo.toml +++ b/pezcumulus/pezpallets/xcmp-queue/Cargo.toml @@ -96,7 +96,10 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezbp-xcm-bridge-hub-router?/try-runtime", "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezkuwi-runtime-common/try-runtime", @@ -104,5 +107,12 @@ try-runtime = [ "pezpallet-balances/try-runtime", "pezpallet-message-queue/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] bridging = ["pezbp-xcm-bridge-hub-router"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/primitives/aura/Cargo.toml b/pezcumulus/primitives/aura/Cargo.toml index 54614655..eee27da8 100644 --- a/pezcumulus/primitives/aura/Cargo.toml +++ b/pezcumulus/primitives/aura/Cargo.toml @@ -24,3 +24,4 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-consensus-aura/runtime-benchmarks", ] +serde = [] diff --git a/pezcumulus/primitives/core/Cargo.toml b/pezcumulus/primitives/core/Cargo.toml index a7b3a723..8a111c15 100644 --- a/pezcumulus/primitives/core/Cargo.toml +++ b/pezcumulus/primitives/core/Cargo.toml @@ -51,3 +51,12 @@ runtime-benchmarks = [ "pezsp-trie/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezkuwi-core-primitives/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", + "xcm/try-runtime", +] +serde = [] diff --git a/pezcumulus/primitives/proof-size-hostfunction/Cargo.toml b/pezcumulus/primitives/proof-size-hostfunction/Cargo.toml index 32cd51bc..f7c12605 100644 --- a/pezcumulus/primitives/proof-size-hostfunction/Cargo.toml +++ b/pezcumulus/primitives/proof-size-hostfunction/Cargo.toml @@ -35,3 +35,5 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +serde = [] +with-tracing = [] diff --git a/pezcumulus/primitives/storage-weight-reclaim/Cargo.toml b/pezcumulus/primitives/storage-weight-reclaim/Cargo.toml index 6c830570..f3c82a08 100644 --- a/pezcumulus/primitives/storage-weight-reclaim/Cargo.toml +++ b/pezcumulus/primitives/storage-weight-reclaim/Cargo.toml @@ -58,3 +58,15 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-runtime/try-runtime", + "pezframe-benchmarking?/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/primitives/teyrchain-inherent/Cargo.toml b/pezcumulus/primitives/teyrchain-inherent/Cargo.toml index 93399657..00452d6a 100644 --- a/pezcumulus/primitives/teyrchain-inherent/Cargo.toml +++ b/pezcumulus/primitives/teyrchain-inherent/Cargo.toml @@ -41,3 +41,4 @@ runtime-benchmarks = [ "pezsp-inherents/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +serde = [] diff --git a/pezcumulus/primitives/utility/Cargo.toml b/pezcumulus/primitives/utility/Cargo.toml index 5c235692..8ac408e3 100644 --- a/pezcumulus/primitives/utility/Cargo.toml +++ b/pezcumulus/primitives/utility/Cargo.toml @@ -54,3 +54,16 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/test/client/Cargo.toml b/pezcumulus/test/client/Cargo.toml index 9a64d7be..56067710 100644 --- a/pezcumulus/test/client/Cargo.toml +++ b/pezcumulus/test/client/Cargo.toml @@ -73,6 +73,7 @@ runtime-benchmarks = [ "pezsc-executor/runtime-benchmarks", "pezsc-service/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-aura/runtime-benchmarks", "pezsp-inherents/runtime-benchmarks", @@ -81,3 +82,42 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-client/std", + "codec/std", + "pezcumulus-test-service/std", + "pezsc-block-builder/std", + "pezsc-consensus-aura/std", + "pezsc-consensus/std", + "pezsc-executor-common/std", + "pezsc-service/std", + "pezsp-blockchain/std", +] +try-runtime = [ + "bizinikiwi-test-client/try-runtime", + "pezcumulus-pezpallet-weight-reclaim/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", + "pezcumulus-test-runtime/try-runtime", + "pezcumulus-test-service/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-consensus-aura/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-service/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] diff --git a/pezcumulus/test/relay-sproof-builder/Cargo.toml b/pezcumulus/test/relay-sproof-builder/Cargo.toml index 9ee6add9..4337f054 100644 --- a/pezcumulus/test/relay-sproof-builder/Cargo.toml +++ b/pezcumulus/test/relay-sproof-builder/Cargo.toml @@ -44,3 +44,9 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/test/runtime/Cargo.toml b/pezcumulus/test/runtime/Cargo.toml index e4163054..b1e6efa8 100644 --- a/pezcumulus/test/runtime/Cargo.toml +++ b/pezcumulus/test/runtime/Cargo.toml @@ -61,6 +61,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezcumulus-pezpallet-aura-ext/std", "pezcumulus-pezpallet-teyrchain-system/std", @@ -146,3 +147,37 @@ runtime-benchmarks = [ "pezsp-version/runtime-benchmarks", "teyrchain-info/runtime-benchmarks", ] +try-runtime = [ + "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-weight-reclaim/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-executive/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-aura/try-runtime", + "pezpallet-authorship/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-glutton/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-session/try-runtime", + "pezpallet-sudo/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "teyrchain-info/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/test/service/Cargo.toml b/pezcumulus/test/service/Cargo.toml index c5bbfcca..02c7c15f 100644 --- a/pezcumulus/test/service/Cargo.toml +++ b/pezcumulus/test/service/Cargo.toml @@ -154,6 +154,95 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-client/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-pov-recovery/std", + "pezcumulus-client-service/std", + "pezcumulus-client-teyrchain-inherent/std", + "pezcumulus-pezpallet-teyrchain-system/std", + "pezcumulus-relay-chain-inprocess-interface/std", + "pezcumulus-relay-chain-interface/std", + "pezcumulus-relay-chain-minimal-node/std", + "pezcumulus-test-client/std", + "pezkuwi-cli/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-service/std", + "pezkuwi-test-service/std", + "pezsc-basic-authorship/std", + "pezsc-block-builder/std", + "pezsc-chain-spec/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-consensus-aura/std", + "pezsc-consensus/std", + "pezsc-executor-common/std", + "pezsc-executor-wasmtime/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsc-telemetry/std", + "pezsc-tracing/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "pezsp-runtime/std", +] +try-runtime = [ + "bizinikiwi-test-client/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-pov-recovery/try-runtime", + "pezcumulus-client-service/try-runtime", + "pezcumulus-client-teyrchain-inherent/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-weight-reclaim/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-relay-chain-inprocess-interface/try-runtime", + "pezcumulus-relay-chain-minimal-node/try-runtime", + "pezcumulus-test-client/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", + "pezcumulus-test-runtime/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-cli/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-service/try-runtime", + "pezkuwi-test-service/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment/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-consensus-aura/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsc-tracing/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] [[bench]] name = "transaction_throughput" diff --git a/pezcumulus/teyrchains/common/Cargo.toml b/pezcumulus/teyrchains/common/Cargo.toml index 484dbcc3..1be7d4f0 100644 --- a/pezcumulus/teyrchains/common/Cargo.toml +++ b/pezcumulus/teyrchains/common/Cargo.toml @@ -99,8 +99,11 @@ runtime-benchmarks = [ ] try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezkuwi-runtime-common/try-runtime", "pezpallet-asset-tx-payment/try-runtime", "pezpallet-assets/try-runtime", @@ -110,6 +113,13 @@ try-runtime = [ "pezpallet-message-queue/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-consensus-aura/try-runtime", "pezsp-runtime/try-runtime", "teyrchain-info/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/pezkuwichain/Cargo.toml index 3ebf434c..d7064544 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/pezkuwichain/Cargo.toml @@ -44,3 +44,26 @@ runtime-benchmarks = [ "pezsp-keyring/runtime-benchmarks", "teyrchains-common/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezkuwi-primitives/std", + "pezkuwichain-runtime-constants/std", + "pezsc-consensus-grandpa/std", + "pezsp-authority-discovery/std", + "pezsp-consensus-babe/std", + "pezsp-core/std", + "pezsp-keyring/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", + "pezkuwichain-runtime/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-keyring/try-runtime", + "teyrchains-common/try-runtime", +] +serde = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/zagros/Cargo.toml index 62785b56..2519e4d8 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/relays/zagros/Cargo.toml @@ -46,3 +46,28 @@ runtime-benchmarks = [ "zagros-runtime-constants/runtime-benchmarks", "zagros-runtime/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezkuwi-primitives/std", + "pezpallet-staking/std", + "pezsc-consensus-grandpa/std", + "pezsp-authority-discovery/std", + "pezsp-consensus-babe/std", + "pezsp-core/std", + "pezsp-runtime/std", + "zagros-runtime-constants/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezpallet-staking/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "zagros-runtime-constants/try-runtime", + "zagros-runtime/try-runtime", +] +serde = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-pezkuwichain/Cargo.toml index fd3adb40..6800f642 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-pezkuwichain/Cargo.toml @@ -50,3 +50,29 @@ runtime-benchmarks = [ "xcm-builder/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezbp-bridge-hub-pezkuwichain/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezkuwichain-emulated-chain/std", + "pezsp-core/std", + "pezsp-keyring/std", + "xcm/std", +] +try-runtime = [ + "asset-hub-pezkuwichain-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezbp-bridge-hub-pezkuwichain/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "pezkuwichain-emulated-chain/try-runtime", + "pezsp-keyring/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-zagros/Cargo.toml index 622a4d38..1e494c85 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/assets/asset-hub-zagros/Cargo.toml @@ -50,3 +50,29 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", "zagros-emulated-chain/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezbp-bridge-hub-zagros/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezsp-core/std", + "pezsp-keyring/std", + "xcm/std", + "zagros-emulated-chain/std", +] +try-runtime = [ + "asset-hub-zagros-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezbp-bridge-hub-zagros/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "pezsp-keyring/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", + "zagros-emulated-chain/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/collectives/collectives-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/collectives/collectives-zagros/Cargo.toml index 9aef072a..4ea67094 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/collectives/collectives-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/collectives/collectives-zagros/Cargo.toml @@ -36,3 +36,20 @@ runtime-benchmarks = [ "testnet-teyrchains-constants/runtime-benchmarks", "teyrchains-common/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezsp-core/std", +] +try-runtime = [ + "collectives-zagros-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-pezkuwichain/Cargo.toml index b9c0f719..a9c838d1 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-pezkuwichain/Cargo.toml @@ -36,3 +36,20 @@ runtime-benchmarks = [ "testnet-teyrchains-constants/runtime-benchmarks", "teyrchains-common/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezsp-core/std", +] +try-runtime = [ + "coretime-pezkuwichain-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-zagros/Cargo.toml index 622f2958..f854192b 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/coretime/coretime-zagros/Cargo.toml @@ -36,3 +36,20 @@ runtime-benchmarks = [ "testnet-teyrchains-constants/runtime-benchmarks", "teyrchains-common/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezsp-core/std", +] +try-runtime = [ + "coretime-zagros-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-pezkuwichain/Cargo.toml index 25d5f718..8008b962 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-pezkuwichain/Cargo.toml @@ -36,3 +36,20 @@ runtime-benchmarks = [ "testnet-teyrchains-constants/runtime-benchmarks", "teyrchains-common/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezsp-core/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "people-pezkuwichain-runtime/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-zagros/Cargo.toml index 39522ac9..5aee7676 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/people/people-zagros/Cargo.toml @@ -36,3 +36,20 @@ runtime-benchmarks = [ "testnet-teyrchains-constants/runtime-benchmarks", "teyrchains-common/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezsp-core/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "people-zagros-runtime/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-pezkuwichain/Cargo.toml index 9ca47b2b..fedf5a41 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-pezkuwichain/Cargo.toml @@ -46,3 +46,26 @@ runtime-benchmarks = [ "teyrchains-common/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezbp-messages/std", + "pezbridge-hub-common/std", + "pezframe-support/std", + "pezsp-core/std", + "pezsp-keyring/std", + "xcm/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pezbp-messages/try-runtime", + "pezbridge-hub-common/try-runtime", + "pezbridge-hub-pezkuwichain-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezsp-keyring/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-zagros/Cargo.toml index ec0e3e6c..01e414be 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/pezbridges/bridge-hub-zagros/Cargo.toml @@ -46,3 +46,26 @@ runtime-benchmarks = [ "teyrchains-common/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezbp-messages/std", + "pezbridge-hub-common/std", + "pezframe-support/std", + "pezsp-core/std", + "pezsp-keyring/std", + "xcm/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pezbp-messages/try-runtime", + "pezbridge-hub-common/try-runtime", + "pezbridge-hub-zagros-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezsp-keyring/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/testing/penpal/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/testing/penpal/Cargo.toml index 4f461018..61c3092e 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/testing/penpal/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/chains/teyrchains/testing/penpal/Cargo.toml @@ -38,3 +38,23 @@ runtime-benchmarks = [ "teyrchains-common/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezcumulus-primitives-core/std", + "pezframe-support/std", + "pezsp-core/std", + "pezsp-keyring/std", + "xcm/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pez-penpal-runtime/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "pezsp-keyring/try-runtime", + "teyrchains-common/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/common/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/common/Cargo.toml index 26e8f7a1..4afd0e24 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/common/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/common/Cargo.toml @@ -96,3 +96,46 @@ runtime-benchmarks = [ "xcm-runtime-pezapis/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "codec/std", + "pezsc-consensus-grandpa/std", + "xcm-pez-emulator/std", + "xcm-pez-simulator/std", +] +try-runtime = [ + "asset-test-pezutils/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-xcm-bridge-hub/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-bridge-messages/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-whitelist/try-runtime", + "pezpallet-xcm-bridge-hub/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-emulator/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-system/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-system/Cargo.toml index 1a2575d5..78f9c268 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-system/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-system/Cargo.toml @@ -33,3 +33,12 @@ runtime-benchmarks = [ "pezbridge-hub-pezkuwichain-emulated-chain/runtime-benchmarks", "pezkuwichain-emulated-chain/runtime-benchmarks", ] +std = [ + "asset-hub-pezkuwichain-emulated-chain/std", + "coretime-pezkuwichain-emulated-chain/std", + "emulated-integration-tests-common/std", + "people-pezkuwichain-emulated-chain/std", + "pez-penpal-emulated-chain/std", + "pezbridge-hub-pezkuwichain-emulated-chain/std", + "pezkuwichain-emulated-chain/std", +] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-zagros-system/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-zagros-system/Cargo.toml index fcd67c29..cc68c71c 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-zagros-system/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/networks/pezkuwichain-zagros-system/Cargo.toml @@ -35,3 +35,13 @@ runtime-benchmarks = [ "pezkuwichain-emulated-chain/runtime-benchmarks", "zagros-emulated-chain/runtime-benchmarks", ] +std = [ + "asset-hub-pezkuwichain-emulated-chain/std", + "asset-hub-zagros-emulated-chain/std", + "emulated-integration-tests-common/std", + "pez-penpal-emulated-chain/std", + "pezbridge-hub-pezkuwichain-emulated-chain/std", + "pezbridge-hub-zagros-emulated-chain/std", + "pezkuwichain-emulated-chain/std", + "zagros-emulated-chain/std", +] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/networks/zagros-system/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/networks/zagros-system/Cargo.toml index 481a921d..e612b86c 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/networks/zagros-system/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/networks/zagros-system/Cargo.toml @@ -35,3 +35,13 @@ runtime-benchmarks = [ "pezbridge-hub-zagros-emulated-chain/runtime-benchmarks", "zagros-emulated-chain/runtime-benchmarks", ] +std = [ + "asset-hub-zagros-emulated-chain/std", + "collectives-zagros-emulated-chain/std", + "coretime-zagros-emulated-chain/std", + "emulated-integration-tests-common/std", + "people-zagros-emulated-chain/std", + "pez-penpal-emulated-chain/std", + "pezbridge-hub-zagros-emulated-chain/std", + "zagros-emulated-chain/std", +] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-pezkuwichain/Cargo.toml index 1c761485..1f1bb0db 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-pezkuwichain/Cargo.toml @@ -69,3 +69,48 @@ runtime-benchmarks = [ "xcm-runtime-pezapis/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "codec/std", + "emulated-integration-tests-common/std", + "pezcumulus-pezpallet-teyrchain-system/std", + "pezframe-support/std", + "pezframe-system/std", + "pezkuwichain-system-emulated-network/std", + "pezpallet-asset-conversion/std", + "pezpallet-asset-rewards/std", + "pezpallet-assets/std", + "pezpallet-balances/std", + "pezpallet-message-queue/std", + "pezpallet-treasury/std", + "pezpallet-utility/std", + "pezpallet-xcm/std", + "pezsp-core/std", + "pezsp-runtime/std", + "xcm-executor/std", + "xcm/std", +] +try-runtime = [ + "asset-test-pezutils/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezpallet-asset-rewards/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-treasury/try-runtime", + "pezpallet-utility/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-zagros/Cargo.toml index f87e0c6f..5a597deb 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/assets/asset-hub-zagros/Cargo.toml @@ -72,3 +72,51 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", "zagros-system-emulated-network/runtime-benchmarks", ] +std = [ + "codec/std", + "emulated-integration-tests-common/std", + "pezcumulus-pezpallet-teyrchain-system/std", + "pezcumulus-pezpallet-xcmp-queue/std", + "pezframe-support/std", + "pezframe-system/std", + "pezpallet-asset-conversion/std", + "pezpallet-asset-rewards/std", + "pezpallet-assets/std", + "pezpallet-balances/std", + "pezpallet-message-queue/std", + "pezpallet-treasury/std", + "pezpallet-xcm/std", + "pezsp-core/std", + "pezsp-runtime/std", + "xcm-builder/std", + "xcm-executor/std", + "xcm-runtime-pezapis/std", + "xcm/std", + "zagros-system-emulated-network/std", +] +try-runtime = [ + "asset-test-pezutils/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezpallet-asset-rewards/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-treasury/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/collectives/collectives-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/collectives/collectives-zagros/Cargo.toml index 14d0c3da..06f80097 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/collectives/collectives-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/collectives/collectives-zagros/Cargo.toml @@ -61,3 +61,43 @@ runtime-benchmarks = [ "zagros-runtime-constants/runtime-benchmarks", "zagros-system-emulated-network/runtime-benchmarks", ] +std = [ + "codec/std", + "emulated-integration-tests-common/std", + "pezcumulus-pezpallet-teyrchain-system/std", + "pezcumulus-pezpallet-xcmp-queue/std", + "pezframe-support/std", + "pezpallet-assets/std", + "pezpallet-balances/std", + "pezpallet-message-queue/std", + "pezpallet-treasury/std", + "pezpallet-utility/std", + "pezpallet-whitelist/std", + "pezpallet-xcm/std", + "pezsp-runtime/std", + "xcm-executor/std", + "xcm/std", + "zagros-system-emulated-network/std", +] +try-runtime = [ + "collectives-zagros-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezframe-support/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-treasury/try-runtime", + "pezpallet-utility/try-runtime", + "pezpallet-whitelist/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-pezkuwichain/Cargo.toml index 61435808..c20042d8 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-pezkuwichain/Cargo.toml @@ -43,3 +43,25 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezframe-support/std", + "pezkuwichain-system-emulated-network/std", + "pezpallet-message-queue/std", + "pezsp-runtime/std", + "xcm/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezframe-support/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", + "pezpallet-broker/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezsp-runtime/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-zagros/Cargo.toml index f7439b02..27d89f5e 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/coretime/coretime-zagros/Cargo.toml @@ -45,3 +45,27 @@ runtime-benchmarks = [ "zagros-runtime-constants/runtime-benchmarks", "zagros-system-emulated-network/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezframe-support/std", + "pezpallet-message-queue/std", + "pezsp-runtime/std", + "xcm-executor/std", + "xcm/std", + "zagros-system-emulated-network/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezframe-support/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezpallet-broker/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/governance/zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/governance/zagros/Cargo.toml index d50a574a..b7588415 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/governance/zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/governance/zagros/Cargo.toml @@ -50,3 +50,24 @@ runtime-benchmarks = [ "zagros-runtime/runtime-benchmarks", "zagros-system-emulated-network/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "zagros-runtime/std", + "zagros-system-emulated-network/std", +] +try-runtime = [ + "asset-hub-zagros-runtime/try-runtime", + "collectives-zagros-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-utility/try-runtime", + "pezpallet-whitelist/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "xcm/try-runtime", + "zagros-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-pezkuwichain/Cargo.toml index 02ac4064..8bc0e645 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-pezkuwichain/Cargo.toml @@ -41,3 +41,25 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "emulated-integration-tests-common/std", + "pezframe-support/std", + "pezkuwichain-system-emulated-network/std", + "pezpallet-balances/std", + "pezsp-runtime/std", + "xcm-executor/std", + "xcm/std", +] +try-runtime = [ + "asset-test-pezutils/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezframe-support/try-runtime", + "pezpallet-balances/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-zagros/Cargo.toml index c8630354..5263a568 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/people/people-zagros/Cargo.toml @@ -49,3 +49,33 @@ runtime-benchmarks = [ "zagros-runtime/runtime-benchmarks", "zagros-system-emulated-network/runtime-benchmarks", ] +std = [ + "codec/std", + "emulated-integration-tests-common/std", + "pezframe-support/std", + "pezpallet-balances/std", + "pezpallet-identity/std", + "pezpallet-message-queue/std", + "pezpallet-xcm/std", + "pezsp-runtime/std", + "xcm-executor/std", + "xcm/std", + "zagros-runtime/std", + "zagros-system-emulated-network/std", +] +try-runtime = [ + "emulated-integration-tests-common/try-runtime", + "pezframe-support/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-identity/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", + "zagros-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-pezkuwichain/Cargo.toml index 88007c2f..b558e473 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-pezkuwichain/Cargo.toml @@ -83,3 +83,55 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "asset-hub-pezkuwichain-runtime/std", + "codec/std", + "emulated-integration-tests-common/std", + "pezbp-asset-hub-pezkuwichain/std", + "pezcumulus-pezpallet-xcmp-queue/std", + "pezframe-support/std", + "pezkuwichain-system-emulated-network/std", + "pezkuwichain-zagros-system-emulated-network/std", + "pezpallet-asset-conversion/std", + "pezpallet-assets/std", + "pezpallet-balances/std", + "pezpallet-bridge-messages/std", + "pezpallet-xcm/std", + "pezsnowbridge-inbound-queue-primitives/std", + "pezsnowbridge-outbound-queue-primitives/std", + "pezsnowbridge-pezpallet-outbound-queue/std", + "pezsnowbridge-pezpallet-system/std", + "pezsp-core/std", + "pezsp-runtime/std", + "scale-info/std", + "xcm-builder/std", + "xcm-executor/std", + "xcm/std", +] +try-runtime = [ + "asset-hub-pezkuwichain-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezbp-asset-hub-pezkuwichain/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezframe-support/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-bridge-messages/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsnowbridge-inbound-queue-primitives/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-fixtures/try-runtime", + "pezsnowbridge-pezpallet-outbound-queue/try-runtime", + "pezsnowbridge-pezpallet-system/try-runtime", + "pezsp-runtime/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-zagros/Cargo.toml b/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-zagros/Cargo.toml index 277378dd..15e70782 100644 --- a/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/integration-tests/emulated/tests/pezbridges/bridge-hub-zagros/Cargo.toml @@ -101,3 +101,73 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "codec/std", + "emulated-integration-tests-common/std", + "pezbp-asset-hub-zagros/std", + "pezbridge-hub-common/std", + "pezcumulus-pezpallet-teyrchain-system/std", + "pezcumulus-pezpallet-xcmp-queue/std", + "pezframe-support/std", + "pezkuwichain-zagros-system-emulated-network/std", + "pezpallet-asset-conversion/std", + "pezpallet-assets/std", + "pezpallet-balances/std", + "pezpallet-bridge-messages/std", + "pezpallet-bridge-relayers/std", + "pezpallet-xcm/std", + "pezsnowbridge-core/std", + "pezsnowbridge-inbound-queue-primitives/std", + "pezsnowbridge-outbound-queue-primitives/std", + "pezsnowbridge-pezpallet-inbound-queue-fixtures/std", + "pezsnowbridge-pezpallet-inbound-queue-v2/std", + "pezsnowbridge-pezpallet-inbound-queue/std", + "pezsnowbridge-pezpallet-outbound-queue-v2/std", + "pezsnowbridge-pezpallet-outbound-queue/std", + "pezsnowbridge-pezpallet-system-v2/std", + "pezsnowbridge-pezpallet-system/std", + "pezsp-core/std", + "pezsp-io/std", + "pezsp-runtime/std", + "scale-info/std", + "xcm-builder/std", + "xcm-executor/std", + "xcm/std", +] +try-runtime = [ + "asset-hub-zagros-runtime/try-runtime", + "emulated-integration-tests-common/try-runtime", + "pezbp-asset-hub-zagros/try-runtime", + "pezbridge-hub-common/try-runtime", + "pezbridge-hub-zagros-runtime/try-runtime", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezframe-support/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-bridge-messages/try-runtime", + "pezpallet-bridge-relayers/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsnowbridge-inbound-queue-primitives/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-fixtures/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-v2/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue/try-runtime", + "pezsnowbridge-pezpallet-outbound-queue-v2/try-runtime", + "pezsnowbridge-pezpallet-outbound-queue/try-runtime", + "pezsnowbridge-pezpallet-system-v2/try-runtime", + "pezsnowbridge-pezpallet-system/try-runtime", + "pezsp-runtime/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/collective-content/Cargo.toml b/pezcumulus/teyrchains/pezpallets/collective-content/Cargo.toml index 0eb713a0..ff399d33 100644 --- a/pezcumulus/teyrchains/pezpallets/collective-content/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/collective-content/Cargo.toml @@ -39,6 +39,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", @@ -53,3 +54,7 @@ std = [ "pezsp-runtime/std", "scale-info/std", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/identity-kyc/Cargo.toml b/pezcumulus/teyrchains/pezpallets/identity-kyc/Cargo.toml index 1b9daa2b..73265dc9 100644 --- a/pezcumulus/teyrchains/pezpallets/identity-kyc/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/identity-kyc/Cargo.toml @@ -60,8 +60,14 @@ runtime-benchmarks = [ ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml b/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml index 7792a6f2..5d8e21da 100644 --- a/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/perwerde/Cargo.toml @@ -75,9 +75,23 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-balances?/try-runtime", "pezpallet-collective?/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-core?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/pez-rewards/Cargo.toml b/pezcumulus/teyrchains/pezpallets/pez-rewards/Cargo.toml index b34b9bfd..6c28627a 100644 --- a/pezcumulus/teyrchains/pezpallets/pez-rewards/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/pez-rewards/Cargo.toml @@ -107,8 +107,10 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-identity-kyc/try-runtime", @@ -118,3 +120,17 @@ try-runtime = [ "pezpallet-trust/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezpallet-pez-treasury/serde", + "pezpallet-trust/serde", + "pezsp-core?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/pez-treasury/Cargo.toml b/pezcumulus/teyrchains/pezpallets/pez-treasury/Cargo.toml index b72b1c4f..afe1e5f9 100644 --- a/pezcumulus/teyrchains/pezpallets/pez-treasury/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/pez-treasury/Cargo.toml @@ -83,10 +83,24 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-scheduler/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezsp-core?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/ping/Cargo.toml b/pezcumulus/teyrchains/pezpallets/ping/Cargo.toml index f382034d..87bc146d 100644 --- a/pezcumulus/teyrchains/pezpallets/ping/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/ping/Cargo.toml @@ -39,9 +39,11 @@ std = [ ] try-runtime = [ "pezcumulus-pezpallet-xcm/try-runtime", + "pezcumulus-primitives-core/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", + "xcm/try-runtime", ] runtime-benchmarks = [ "pezcumulus-pezpallet-xcm/runtime-benchmarks", @@ -51,3 +53,6 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "xcm/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/presale/Cargo.toml b/pezcumulus/teyrchains/pezpallets/presale/Cargo.toml index cb58b2f3..a188fcdf 100644 --- a/pezcumulus/teyrchains/pezpallets/presale/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/presale/Cargo.toml @@ -66,9 +66,14 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances?/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/referral/Cargo.toml b/pezcumulus/teyrchains/pezpallets/referral/Cargo.toml index 2c819eee..03fc9266 100644 --- a/pezcumulus/teyrchains/pezpallets/referral/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/referral/Cargo.toml @@ -66,10 +66,16 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-identity-kyc/try-runtime", "pezpallet-nfts/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/staking-score/Cargo.toml b/pezcumulus/teyrchains/pezpallets/staking-score/Cargo.toml index 084c092e..fbfb85aa 100644 --- a/pezcumulus/teyrchains/pezpallets/staking-score/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/staking-score/Cargo.toml @@ -87,13 +87,30 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-bags-list/try-runtime", "pezpallet-balances?/try-runtime", "pezpallet-session/try-runtime", "pezpallet-staking?/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-npos-elections/serde", + "pezsp-runtime/serde", + "pezsp-staking/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/teyrchain-info/Cargo.toml b/pezcumulus/teyrchains/pezpallets/teyrchain-info/Cargo.toml index b08e16a6..27b9fb7e 100644 --- a/pezcumulus/teyrchains/pezpallets/teyrchain-info/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/teyrchain-info/Cargo.toml @@ -34,6 +34,7 @@ std = [ "scale-info/std", ] try-runtime = [ + "pezcumulus-primitives-core/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", @@ -44,3 +45,6 @@ runtime-benchmarks = [ "pezframe-system/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/tiki/Cargo.toml b/pezcumulus/teyrchains/pezpallets/tiki/Cargo.toml index 0b4c4a1a..742cc0e4 100644 --- a/pezcumulus/teyrchains/pezpallets/tiki/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/tiki/Cargo.toml @@ -67,6 +67,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -75,3 +76,7 @@ try-runtime = [ "pezpallet-nfts/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/token-wrapper/Cargo.toml b/pezcumulus/teyrchains/pezpallets/token-wrapper/Cargo.toml index a0bc5364..3d179006 100644 --- a/pezcumulus/teyrchains/pezpallets/token-wrapper/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/token-wrapper/Cargo.toml @@ -68,9 +68,21 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsp-core?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/trust/Cargo.toml b/pezcumulus/teyrchains/pezpallets/trust/Cargo.toml index cd889a28..d635ae95 100644 --- a/pezcumulus/teyrchains/pezpallets/trust/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/trust/Cargo.toml @@ -98,6 +98,8 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", # Diğer paletlerin try-runtime özellikleri + "pezframe-benchmarking?/try-runtime", + "pezkuwi-primitives/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-identity-kyc/try-runtime", "pezpallet-perwerde/try-runtime", @@ -106,3 +108,17 @@ try-runtime = [ "pezpallet-tiki/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezpallet-perwerde/serde", + "pezpallet-staking-score/serde", + "pezsp-core?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/pezpallets/welati/Cargo.toml b/pezcumulus/teyrchains/pezpallets/welati/Cargo.toml index e213c7a5..67b563e3 100644 --- a/pezcumulus/teyrchains/pezpallets/welati/Cargo.toml +++ b/pezcumulus/teyrchains/pezpallets/welati/Cargo.toml @@ -107,6 +107,7 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", @@ -124,3 +125,18 @@ try-runtime = [ "pezpallet-trust/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [ + "codec/serde", + "dep:serde", + "log/serde", + "pezframe-benchmarking?/serde", + "pezpallet-democracy/serde", + "pezpallet-staking-score/serde", + "pezpallet-trust/serde", + "pezsp-core?/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/Cargo.toml index 9217b1a9..fb2905a9 100644 --- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/Cargo.toml @@ -231,17 +231,29 @@ runtime-benchmarks = [ try-runtime = [ "asset-test-pezutils/try-runtime", "pez-assets-common/try-runtime", + "pezbp-asset-hub-pezkuwichain/try-runtime", + "pezbp-asset-hub-zagros/try-runtime", + "pezbp-bridge-hub-pezkuwichain/try-runtime", + "pezbp-bridge-hub-zagros/try-runtime", "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", "pezpallet-asset-conversion-ops/try-runtime", "pezpallet-asset-conversion-tx-payment/try-runtime", "pezpallet-asset-conversion/try-runtime", @@ -263,6 +275,7 @@ try-runtime = [ "pezpallet-nft-fractionalization/try-runtime", "pezpallet-nfts/try-runtime", "pezpallet-nis/try-runtime", + "pezpallet-nomination-pools-runtime-api/try-runtime", "pezpallet-nomination-pools/try-runtime", "pezpallet-pez-treasury/try-runtime", "pezpallet-presale/try-runtime", @@ -273,18 +286,39 @@ try-runtime = [ "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", "pezpallet-token-wrapper/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-uniques/try-runtime", "pezpallet-utility/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm-bridge-hub-router/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-npos-elections/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "log/std", "pez-assets-common/std", @@ -390,3 +424,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/bridge-primitives/Cargo.toml b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/bridge-primitives/Cargo.toml index 3669b0fe..41edb29d 100644 --- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/bridge-primitives/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-pezkuwichain/bridge-primitives/Cargo.toml @@ -59,3 +59,16 @@ runtime-benchmarks = [ "testnet-teyrchains-constants/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezbp-bridge-hub-pezcumulus/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-xcm-bridge-hub-router/try-runtime", + "pezframe-support/try-runtime", + "pezsp-api/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/Cargo.toml b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/Cargo.toml index cab48bb7..4cec48f7 100644 --- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/Cargo.toml @@ -210,6 +210,7 @@ runtime-benchmarks = [ "pezpallet-preimage/runtime-benchmarks", "pezpallet-proxy/runtime-benchmarks", "pezpallet-referenda/runtime-benchmarks", + "pezpallet-revive-fixtures/runtime-benchmarks", "pezpallet-revive/runtime-benchmarks", "pezpallet-scheduler/runtime-benchmarks", "pezpallet-session/runtime-benchmarks", @@ -261,17 +262,28 @@ runtime-benchmarks = [ try-runtime = [ "asset-test-pezutils/try-runtime", "pez-assets-common/try-runtime", + "pezbp-asset-hub-pezkuwichain/try-runtime", + "pezbp-asset-hub-zagros/try-runtime", + "pezbp-bridge-hub-pezkuwichain/try-runtime", + "pezbp-bridge-hub-zagros/try-runtime", "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-ah-ops/try-runtime", "pezpallet-asset-conversion-ops/try-runtime", "pezpallet-asset-conversion-tx-payment/try-runtime", @@ -296,6 +308,7 @@ try-runtime = [ "pezpallet-multisig/try-runtime", "pezpallet-nft-fractionalization/try-runtime", "pezpallet-nfts/try-runtime", + "pezpallet-nomination-pools-runtime-api/try-runtime", "pezpallet-nomination-pools/try-runtime", "pezpallet-preimage/try-runtime", "pezpallet-proxy/try-runtime", @@ -309,24 +322,47 @@ try-runtime = [ "pezpallet-state-trie-migration/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-uniques/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-vesting/try-runtime", "pezpallet-whitelist/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm-bridge-hub-router/try-runtime", "pezpallet-xcm-precompiles/try-runtime", "pezpallet-xcm/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", "pezsnowbridge-pezpallet-system-frontend/try-runtime", "pezsnowbridge-runtime-common/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-npos-elections/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", ] std = [ "alloy-core/std", "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "log/std", "pez-assets-common/std", @@ -449,3 +485,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/bridge-primitives/Cargo.toml b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/bridge-primitives/Cargo.toml index 6508eff5..15e18001 100644 --- a/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/bridge-primitives/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/assets/asset-hub-zagros/bridge-primitives/Cargo.toml @@ -59,3 +59,16 @@ runtime-benchmarks = [ "testnet-teyrchains-constants/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezbp-bridge-hub-pezcumulus/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-xcm-bridge-hub-router/try-runtime", + "pezframe-support/try-runtime", + "pezsp-api/try-runtime", + "testnet-teyrchains-constants/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/assets/common/Cargo.toml b/pezcumulus/teyrchains/runtimes/assets/common/Cargo.toml index 44bf4881..7ae87e8a 100644 --- a/pezcumulus/teyrchains/runtimes/assets/common/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/assets/common/Cargo.toml @@ -45,11 +45,13 @@ teyrchains-common = { workspace = true } default = ["std"] std = [ "codec/std", + "pez-ethereum-standards/std", "pezcumulus-primitives-core/std", "pezframe-support/std", "pezframe-system/std", "pezpallet-asset-conversion/std", "pezpallet-assets/std", + "pezpallet-revive-uapi/std", "pezpallet-revive/std", "pezpallet-xcm/std", "pezsp-api/std", @@ -79,12 +81,20 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezcumulus-primitives-core/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-asset-conversion/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-revive/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", "pezsp-runtime/try-runtime", "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/assets/test-utils/Cargo.toml b/pezcumulus/teyrchains/runtimes/assets/test-utils/Cargo.toml index 5577efc1..40bab2cc 100644 --- a/pezcumulus/teyrchains/runtimes/assets/test-utils/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/assets/test-utils/Cargo.toml @@ -78,6 +78,7 @@ try-runtime = [ "pez-assets-common/try-runtime", "pezcumulus-pezpallet-teyrchain-system/try-runtime", "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezcumulus-primitives-core/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-asset-conversion/try-runtime", @@ -91,6 +92,11 @@ try-runtime = [ "pezsp-runtime/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] runtime-benchmarks = [ "pez-assets-common/runtime-benchmarks", @@ -117,3 +123,7 @@ runtime-benchmarks = [ "xcm-runtime-pezapis/runtime-benchmarks", "xcm/runtime-benchmarks", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/Cargo.toml index 77061f74..d8e72149 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/Cargo.toml @@ -136,6 +136,7 @@ teyrchains-runtimes-test-utils = { workspace = true, default-features = true } default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezbp-asset-hub-pezkuwichain/std", "pezbp-asset-hub-zagros/std", @@ -320,16 +321,40 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezbp-asset-hub-pezkuwichain/try-runtime", + "pezbp-asset-hub-zagros/try-runtime", + "pezbp-bridge-hub-pezkuwichain/try-runtime", + "pezbp-bridge-hub-zagros/try-runtime", + "pezbp-header-pez-chain/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-pezkuwi-bulletin/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-relayers/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-teyrchains/try-runtime", + "pezbp-xcm-bridge-hub-router/try-runtime", + "pezbp-zagros/try-runtime", + "pezbridge-hub-common/try-runtime", + "pezbridge-hub-test-utils/try-runtime", + "pezbridge-runtime-common/try-runtime", "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-balances/try-runtime", @@ -342,18 +367,43 @@ try-runtime = [ "pezpallet-multisig/try-runtime", "pezpallet-session/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-utility/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm-bridge-hub/try-runtime", "pezpallet-xcm/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", "pezsnowbridge-inbound-queue-primitives/try-runtime", + "pezsnowbridge-merkle-tree/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", + "pezsnowbridge-outbound-queue-runtime-api/try-runtime", "pezsnowbridge-pezpallet-ethereum-client/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-fixtures/try-runtime", "pezsnowbridge-pezpallet-inbound-queue/try-runtime", "pezsnowbridge-pezpallet-outbound-queue/try-runtime", "pezsnowbridge-pezpallet-system/try-runtime", + "pezsnowbridge-runtime-test-common/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] fast-runtime = [] @@ -361,3 +411,25 @@ fast-runtime = [] # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = [] +serde = [ + "codec/serde", + "dep:serde", + "pezbp-pezkuwi-core/serde", + "pezframe-benchmarking?/serde", + "pezpallet-message-queue/serde", + "pezpallet-transaction-payment/serde", + "pezpallet-xcm/serde", + "pezsnowbridge-beacon-primitives/serde", + "pezsnowbridge-core/serde", + "pezsnowbridge-pezpallet-ethereum-client/serde", + "pezsnowbridge-pezpallet-inbound-queue/serde", + "pezsp-consensus-aura/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-storage/serde", + "pezsp-version/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/bridge-primitives/Cargo.toml b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/bridge-primitives/Cargo.toml index c0a0f49a..b583c7e5 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/bridge-primitives/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-pezkuwichain/bridge-primitives/Cargo.toml @@ -52,3 +52,15 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-bridge-hub-pezcumulus/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-xcm-bridge-hub/try-runtime", + "pezframe-support/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/Cargo.toml b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/Cargo.toml index 98d0d6a4..41f9f2de 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/Cargo.toml @@ -140,6 +140,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features [features] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezbp-asset-hub-pezkuwichain/std", "pezbp-asset-hub-zagros/std", @@ -337,16 +338,38 @@ runtime-benchmarks = [ ] try-runtime = [ + "pezbp-asset-hub-pezkuwichain/try-runtime", + "pezbp-asset-hub-zagros/try-runtime", + "pezbp-bridge-hub-pezkuwichain/try-runtime", + "pezbp-bridge-hub-zagros/try-runtime", + "pezbp-header-pez-chain/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-pezkuwichain/try-runtime", + "pezbp-relayers/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-teyrchains/try-runtime", + "pezbp-xcm-bridge-hub-router/try-runtime", + "pezbridge-hub-common/try-runtime", + "pezbridge-hub-test-utils/try-runtime", + "pezbridge-runtime-common/try-runtime", "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-balances/try-runtime", @@ -359,21 +382,49 @@ try-runtime = [ "pezpallet-multisig/try-runtime", "pezpallet-session/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-utility/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm-bridge-hub/try-runtime", "pezpallet-xcm/try-runtime", + "pezsnowbridge-beacon-primitives/try-runtime", + "pezsnowbridge-core/try-runtime", "pezsnowbridge-inbound-queue-primitives/try-runtime", + "pezsnowbridge-merkle-tree/try-runtime", + "pezsnowbridge-outbound-queue-primitives/try-runtime", + "pezsnowbridge-outbound-queue-runtime-api/try-runtime", + "pezsnowbridge-outbound-queue-v2-runtime-api/try-runtime", "pezsnowbridge-pezpallet-ethereum-client/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-fixtures/try-runtime", + "pezsnowbridge-pezpallet-inbound-queue-v2-fixtures/try-runtime", "pezsnowbridge-pezpallet-inbound-queue-v2/try-runtime", "pezsnowbridge-pezpallet-inbound-queue/try-runtime", "pezsnowbridge-pezpallet-outbound-queue-v2/try-runtime", "pezsnowbridge-pezpallet-outbound-queue/try-runtime", "pezsnowbridge-pezpallet-system-v2/try-runtime", "pezsnowbridge-pezpallet-system/try-runtime", + "pezsnowbridge-runtime-test-common/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", ] # Enable the metadata hash generation in the wasm builder. @@ -385,3 +436,26 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] on-chain-release-build = ["metadata-hash"] fast-runtime = [] +serde = [ + "codec/serde", + "dep:serde", + "pezbp-pezkuwi-core/serde", + "pezframe-benchmarking?/serde", + "pezpallet-message-queue/serde", + "pezpallet-transaction-payment/serde", + "pezpallet-xcm/serde", + "pezsnowbridge-beacon-primitives/serde", + "pezsnowbridge-core/serde", + "pezsnowbridge-pezpallet-ethereum-client/serde", + "pezsnowbridge-pezpallet-inbound-queue-v2/serde", + "pezsnowbridge-pezpallet-inbound-queue/serde", + "pezsp-consensus-aura/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-storage/serde", + "pezsp-version/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/bridge-primitives/Cargo.toml b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/bridge-primitives/Cargo.toml index 6ecbec7d..ddb0b106 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/bridge-primitives/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/bridge-hub-zagros/bridge-primitives/Cargo.toml @@ -52,3 +52,15 @@ runtime-benchmarks = [ "pezsp-api/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezbp-bridge-hub-pezcumulus/try-runtime", + "pezbp-messages/try-runtime", + "pezbp-runtime/try-runtime", + "pezbp-xcm-bridge-hub/try-runtime", + "pezframe-support/try-runtime", + "pezsp-api/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/common/Cargo.toml b/pezcumulus/teyrchains/runtimes/bridge-hubs/common/Cargo.toml index 11bc86ed..f130f9d8 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/common/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/common/Cargo.toml @@ -52,3 +52,16 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezsnowbridge-core/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/bridge-hubs/test-utils/Cargo.toml b/pezcumulus/teyrchains/runtimes/bridge-hubs/test-utils/Cargo.toml index 040ceb17..eef95259 100644 --- a/pezcumulus/teyrchains/runtimes/bridge-hubs/test-utils/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/bridge-hubs/test-utils/Cargo.toml @@ -124,3 +124,37 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "asset-test-pezutils/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", + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-bridge-grandpa/try-runtime", + "pezpallet-bridge-messages/try-runtime", + "pezpallet-bridge-relayers/try-runtime", + "pezpallet-bridge-teyrchains/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-utility/try-runtime", + "pezpallet-xcm-bridge-hub/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/collectives/collectives-zagros/Cargo.toml b/pezcumulus/teyrchains/runtimes/collectives/collectives-zagros/Cargo.toml index 879fc794..a2fbac14 100644 --- a/pezcumulus/teyrchains/runtimes/collectives/collectives-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/collectives/collectives-zagros/Cargo.toml @@ -174,15 +174,22 @@ runtime-benchmarks = [ ] try-runtime = [ "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-alliance/try-runtime", "pezpallet-asset-rate/try-runtime", "pezpallet-aura/try-runtime", @@ -203,16 +210,36 @@ try-runtime = [ "pezpallet-session/try-runtime", "pezpallet-state-trie-migration/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-utility/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", ] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezcumulus-pezpallet-aura-ext/std", "pezcumulus-pezpallet-session-benchmarking/std", @@ -294,3 +321,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/constants/Cargo.toml b/pezcumulus/teyrchains/runtimes/constants/Cargo.toml index 12773211..c71b21f1 100644 --- a/pezcumulus/teyrchains/runtimes/constants/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/constants/Cargo.toml @@ -55,3 +55,15 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", "zagros-runtime-constants?/runtime-benchmarks", ] +try-runtime = [ + "pezcumulus-primitives-core/try-runtime", + "pezframe-support/try-runtime", + "pezkuwi-core-primitives/try-runtime", + "pezkuwichain-runtime-constants?/try-runtime", + "pezsp-runtime/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants?/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/coretime/coretime-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/runtimes/coretime/coretime-pezkuwichain/Cargo.toml index 029aa0f2..a6318efb 100644 --- a/pezcumulus/teyrchains/runtimes/coretime/coretime-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/coretime/coretime-pezkuwichain/Cargo.toml @@ -93,6 +93,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezcumulus-pezpallet-aura-ext/std", "pezcumulus-pezpallet-session-benchmarking/std", @@ -216,15 +217,23 @@ runtime-benchmarks = [ ] try-runtime = [ "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-balances/try-runtime", @@ -236,12 +245,30 @@ try-runtime = [ "pezpallet-session/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-utility/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] fast-runtime = ["pezkuwichain-runtime-constants/fast-runtime"] @@ -252,3 +279,20 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezpallet-message-queue/serde", + "pezpallet-transaction-payment/serde", + "pezpallet-xcm/serde", + "pezsp-consensus-aura/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-storage/serde", + "pezsp-version/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/coretime/coretime-zagros/Cargo.toml b/pezcumulus/teyrchains/runtimes/coretime/coretime-zagros/Cargo.toml index 00f69adb..8b56c24b 100644 --- a/pezcumulus/teyrchains/runtimes/coretime/coretime-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/coretime/coretime-zagros/Cargo.toml @@ -94,6 +94,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezcumulus-pezpallet-aura-ext/std", "pezcumulus-pezpallet-session-benchmarking/std", @@ -216,15 +217,22 @@ runtime-benchmarks = [ ] try-runtime = [ "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-balances/try-runtime", @@ -236,12 +244,31 @@ try-runtime = [ "pezpallet-session/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-utility/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", ] fast-runtime = ["zagros-runtime-constants/fast-runtime"] @@ -252,3 +279,20 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [ + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezpallet-message-queue/serde", + "pezpallet-transaction-payment/serde", + "pezpallet-xcm/serde", + "pezsp-consensus-aura/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-storage/serde", + "pezsp-version/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/glutton/glutton-zagros/Cargo.toml b/pezcumulus/teyrchains/runtimes/glutton/glutton-zagros/Cargo.toml index fe2c08b5..40a729e8 100644 --- a/pezcumulus/teyrchains/runtimes/glutton/glutton-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/glutton/glutton-zagros/Cargo.toml @@ -102,6 +102,7 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] std = [ + "bizinikiwi-wasm-builder/std", "codec/std", "pezcumulus-pezpallet-aura-ext/std", "pezcumulus-pezpallet-teyrchain-system/std", @@ -146,8 +147,11 @@ try-runtime = [ "pezcumulus-pezpallet-aura-ext/try-runtime", "pezcumulus-pezpallet-teyrchain-system/try-runtime", "pezcumulus-pezpallet-xcm/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezpallet-aura/try-runtime", @@ -155,12 +159,30 @@ try-runtime = [ "pezpallet-message-queue/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] # A feature that should be enabled when the runtime should be built for on-chain # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = [] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/people/people-pezkuwichain/Cargo.toml b/pezcumulus/teyrchains/runtimes/people/people-pezkuwichain/Cargo.toml index eb2f6aad..292481cd 100644 --- a/pezcumulus/teyrchains/runtimes/people/people-pezkuwichain/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/people/people-pezkuwichain/Cargo.toml @@ -115,6 +115,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "enumflags2/std", "pezcumulus-pezpallet-aura-ext/std", @@ -276,15 +277,23 @@ runtime-benchmarks = [ ] try-runtime = [ "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", + "pezkuwi-primitives/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-authorship/try-runtime", @@ -311,18 +320,62 @@ try-runtime = [ "pezpallet-staking-score/try-runtime", "pezpallet-tiki/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-trust/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-vesting/try-runtime", "pezpallet-welati/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] # A feature that should be enabled when the runtime should be built for on-chain # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = [] +serde = [ + "codec/serde", + "dep:serde", + "enumflags2/serde", + "pezframe-benchmarking?/serde", + "pezpallet-democracy/serde", + "pezpallet-message-queue/serde", + "pezpallet-perwerde/serde", + "pezpallet-pez-rewards/serde", + "pezpallet-staking-score/serde", + "pezpallet-transaction-payment/serde", + "pezpallet-trust/serde", + "pezpallet-welati/serde", + "pezpallet-xcm/serde", + "pezsp-consensus-aura/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-staking/serde", + "pezsp-storage/serde", + "pezsp-version/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/people/people-zagros/Cargo.toml b/pezcumulus/teyrchains/runtimes/people/people-zagros/Cargo.toml index 71eb6b4a..11e916ff 100644 --- a/pezcumulus/teyrchains/runtimes/people/people-zagros/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/people/people-zagros/Cargo.toml @@ -94,6 +94,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "enumflags2/std", "pezcumulus-pezpallet-aura-ext/std", @@ -217,15 +218,21 @@ runtime-benchmarks = [ ] try-runtime = [ "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/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-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-aura/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-balances/try-runtime", @@ -237,15 +244,54 @@ try-runtime = [ "pezpallet-proxy/try-runtime", "pezpallet-session/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-utility/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-statement-store/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "teyrchains-runtimes-test-utils/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", ] # A feature that should be enabled when the runtime should be built for on-chain # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = [] +serde = [ + "codec/serde", + "dep:serde", + "enumflags2/serde", + "pezframe-benchmarking?/serde", + "pezpallet-message-queue/serde", + "pezpallet-transaction-payment/serde", + "pezpallet-xcm/serde", + "pezsp-consensus-aura/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "pezsp-statement-store/serde", + "pezsp-storage/serde", + "pezsp-version/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/test-utils/Cargo.toml b/pezcumulus/teyrchains/runtimes/test-utils/Cargo.toml index 6e997fca..a4412d2c 100644 --- a/pezcumulus/teyrchains/runtimes/test-utils/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/test-utils/Cargo.toml @@ -94,3 +94,28 @@ runtime-benchmarks = [ "xcm-runtime-pezapis/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-collator-selection/try-runtime", + "pezpallet-session/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchain-info/try-runtime", + "teyrchains-common/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/testing/penpal/Cargo.toml b/pezcumulus/teyrchains/runtimes/testing/penpal/Cargo.toml index 2d980ce4..a52a81b2 100644 --- a/pezcumulus/teyrchains/runtimes/testing/penpal/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/testing/penpal/Cargo.toml @@ -99,6 +99,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pez-assets-common/std", "pezcumulus-pezpallet-aura-ext/std", @@ -224,14 +225,22 @@ runtime-benchmarks = [ try-runtime = [ "pez-assets-common/try-runtime", "pezcumulus-pezpallet-aura-ext/try-runtime", + "pezcumulus-pezpallet-session-benchmarking/try-runtime", "pezcumulus-pezpallet-teyrchain-system/try-runtime", "pezcumulus-pezpallet-xcm/try-runtime", "pezcumulus-pezpallet-xcmp-queue/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-primitives-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", + "pezkuwi-primitives/try-runtime", "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-asset-conversion/try-runtime", "pezpallet-asset-tx-payment/try-runtime", "pezpallet-assets/try-runtime", @@ -244,10 +253,30 @@ try-runtime = [ "pezpallet-session/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "testnet-teyrchains-constants/try-runtime", "teyrchain-info/try-runtime", "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/testing/pezkuwichain-teyrchain/Cargo.toml b/pezcumulus/teyrchains/runtimes/testing/pezkuwichain-teyrchain/Cargo.toml index c40a4909..b83b034a 100644 --- a/pezcumulus/teyrchains/runtimes/testing/pezkuwichain-teyrchain/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/testing/pezkuwichain-teyrchain/Cargo.toml @@ -72,6 +72,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezcumulus-pezpallet-aura-ext/std", "pezcumulus-pezpallet-teyrchain-system/std", @@ -167,3 +168,48 @@ runtime-benchmarks = [ # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = [] +try-runtime = [ + "pezcumulus-pezpallet-aura-ext/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-utility/try-runtime", + "pezframe-benchmarking?/try-runtime", + "pezframe-executive/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-aura/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-sudo/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "teyrchain-info/try-runtime", + "teyrchains-common/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/Cargo.toml b/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/Cargo.toml index 57e95e99..a6096928 100644 --- a/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/Cargo.toml +++ b/pezcumulus/teyrchains/runtimes/testing/yet-another-teyrchain/Cargo.toml @@ -82,6 +82,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezcumulus-pezpallet-teyrchain-system/std", "pezkuwi-sdk/std", @@ -102,3 +103,12 @@ runtime-benchmarks = [ on-chain-release-build = [] fast-runtime = [] +try-runtime = [ + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezkuwi-sdk/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/xcm/xcm-pez-emulator/Cargo.toml b/pezcumulus/xcm/xcm-pez-emulator/Cargo.toml index 73e63267..58a015dd 100644 --- a/pezcumulus/xcm/xcm-pez-emulator/Cargo.toml +++ b/pezcumulus/xcm/xcm-pez-emulator/Cargo.toml @@ -72,3 +72,30 @@ runtime-benchmarks = [ "xcm-pez-simulator/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "xcm-pez-simulator/std", +] +try-runtime = [ + "pezcumulus-pezpallet-teyrchain-system/try-runtime", + "pezcumulus-primitives-core/try-runtime", + "pezcumulus-test-relay-sproof-builder/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-aura/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-runtime/try-runtime", + "teyrchains-common/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezcumulus/zombienet/zombienet-sdk-helpers/Cargo.toml b/pezcumulus/zombienet/zombienet-sdk-helpers/Cargo.toml index 873aaae2..7d7bfc96 100644 --- a/pezcumulus/zombienet/zombienet-sdk-helpers/Cargo.toml +++ b/pezcumulus/zombienet/zombienet-sdk-helpers/Cargo.toml @@ -25,4 +25,12 @@ pezkuwi-zombienet-configuration = { workspace = true } runtime-benchmarks = [ "pezcumulus-primitives-core/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezkuwi-zombienet-sdk/runtime-benchmarks" ] +std = [ + "log/std", + "codec/std", + "pezkuwi-zombienet-configuration/std", + "pezkuwi-zombienet-sdk/std" +] +serde = [] diff --git a/pezcumulus/zombienet/zombienet-sdk/Cargo.toml b/pezcumulus/zombienet/zombienet-sdk/Cargo.toml index 659bb982..011af3ef 100644 --- a/pezcumulus/zombienet/zombienet-sdk/Cargo.toml +++ b/pezcumulus/zombienet/zombienet-sdk/Cargo.toml @@ -38,4 +38,19 @@ runtime-benchmarks = [ "pezsc-statement-store/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-statement-store/runtime-benchmarks", + "pezkuwi-zombienet-orchestrator/runtime-benchmarks", + "pezkuwi-zombienet-sdk/runtime-benchmarks" ] +std = [ + "anyhow/std", + "log/std", + "codec/std", + "pezcumulus-zombienet-sdk-helpers/std", + "pezkuwi-zombienet-configuration/std", + "pezkuwi-zombienet-orchestrator/std", + "pezkuwi-zombienet-sdk/std", + "pezsc-statement-store/std", + "serde/std", + "serde_json/std" +] +serde = [] diff --git a/pezkuwi/Cargo.toml b/pezkuwi/Cargo.toml index a60b1e9d..da9395c6 100644 --- a/pezkuwi/Cargo.toml +++ b/pezkuwi/Cargo.toml @@ -112,7 +112,11 @@ runtime-benchmarks = [ "pezkuwi-node-core-pvf/runtime-benchmarks", "pezkuwi-overseer/runtime-benchmarks", ] -try-runtime = ["pezkuwi-cli/try-runtime"] +try-runtime = [ + "bizinikiwi-rpc-client/try-runtime", + "pezkuwi-cli/try-runtime", + "pezkuwi-core-primitives/try-runtime", +] fast-runtime = ["pezkuwi-cli/fast-runtime"] runtime-metrics = ["pezkuwi-cli/runtime-metrics"] pyroscope = ["pezkuwi-cli/pyroscope"] @@ -130,3 +134,12 @@ metadata-hash = ["pezkuwi-cli/metadata-hash"] # Enables timeout-based tests supposed to be run only in CI environment as they may be flaky # when run locally depending on system load ci-only-tests = ["pezkuwi-node-core-pvf/ci-only-tests"] +std = [ + "bizinikiwi-rpc-client/std", + "pezkuwi-cli/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-overseer/std", +] diff --git a/pezkuwi/cli/Cargo.toml b/pezkuwi/cli/Cargo.toml index 708c9a59..f77c0aec 100644 --- a/pezkuwi/cli/Cargo.toml +++ b/pezkuwi/cli/Cargo.toml @@ -72,7 +72,16 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] full-node = ["pezkuwi-service/full-node"] -try-runtime = ["pezkuwi-service?/try-runtime", "pezsp-runtime/try-runtime"] +try-runtime = [ + "pezframe-benchmarking-cli?/try-runtime", + "pezkuwi-service?/try-runtime", + "pezsc-cli?/try-runtime", + "pezsc-service?/try-runtime", + "pezsc-sysinfo/try-runtime", + "pezsc-tracing?/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] fast-runtime = ["pezkuwi-service/fast-runtime"] pyroscope = ["dep:pyroscope", "pyroscope_pprofrs"] @@ -85,3 +94,17 @@ runtime-metrics = [ "pezkuwi-node-metrics/runtime-metrics", "pezkuwi-service/runtime-metrics", ] +std = [ + "log/std", + "pezframe-benchmarking-cli?/std", + "pezkuwi-node-metrics/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-service?/std", + "pezsc-cli?/std", + "pezsc-network-types/std", + "pezsc-service?/std", + "pezsc-storage-monitor/std", + "pezsc-sysinfo/std", + "pezsc-tracing?/std", +] +serde = [] diff --git a/pezkuwi/core-primitives/Cargo.toml b/pezkuwi/core-primitives/Cargo.toml index f67a2748..b99674ca 100644 --- a/pezkuwi/core-primitives/Cargo.toml +++ b/pezkuwi/core-primitives/Cargo.toml @@ -22,3 +22,7 @@ scale-info = { features = ["derive"], workspace = true } default = ["std"] std = ["codec/std", "pezsp-core/std", "pezsp-runtime/std", "scale-info/std"] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/erasure-coding/Cargo.toml b/pezkuwi/erasure-coding/Cargo.toml index 338e357c..87a74856 100644 --- a/pezkuwi/erasure-coding/Cargo.toml +++ b/pezkuwi/erasure-coding/Cargo.toml @@ -35,3 +35,8 @@ runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", "pezsp-trie/runtime-benchmarks", ] +std = [ + "codec/std", + "pezkuwi-pez-node-primitives/std", +] +serde = [] diff --git a/pezkuwi/erasure-coding/fuzzer/Cargo.toml b/pezkuwi/erasure-coding/fuzzer/Cargo.toml index 094ca059..3835acc0 100644 --- a/pezkuwi/erasure-coding/fuzzer/Cargo.toml +++ b/pezkuwi/erasure-coding/fuzzer/Cargo.toml @@ -33,3 +33,7 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", ] +std = [ + "pezkuwi-erasure-coding/std", + "pezkuwi-pez-node-primitives/std", +] diff --git a/pezkuwi/node/collation-generation/Cargo.toml b/pezkuwi/node/collation-generation/Cargo.toml index 354cd1e6..6d1aa127 100644 --- a/pezkuwi/node/collation-generation/Cargo.toml +++ b/pezkuwi/node/collation-generation/Cargo.toml @@ -45,3 +45,12 @@ runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", +] +serde = [] diff --git a/pezkuwi/node/core/approval-voting-parallel/Cargo.toml b/pezkuwi/node/core/approval-voting-parallel/Cargo.toml index 8a047bcf..e98dc483 100644 --- a/pezkuwi/node/core/approval-voting-parallel/Cargo.toml +++ b/pezkuwi/node/core/approval-voting-parallel/Cargo.toml @@ -57,7 +57,26 @@ runtime-benchmarks = [ "pezkuwi-overseer/runtime-benchmarks", "pezkuwi-pez-node-primitives/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-consensus/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-approval-distribution/std", + "pezkuwi-node-core-approval-voting/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-keystore/std", + "pezsp-consensus/std", + "pezsp-tracing/std", + "rand/std", + "rand_core/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/core/approval-voting/Cargo.toml b/pezkuwi/node/core/approval-voting/Cargo.toml index 88d9497e..cd979719 100644 --- a/pezkuwi/node/core/approval-voting/Cargo.toml +++ b/pezkuwi/node/core/approval-voting/Cargo.toml @@ -75,9 +75,36 @@ runtime-benchmarks = [ # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", # "pezkuwi-subsystem-bench/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-consensus-slots/runtime-benchmarks", "pezsp-consensus/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bitvec/std", + "codec/std", + "gum/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-keystore/std", + "pezsp-application-crypto/std", + "pezsp-consensus-slots/std", + "pezsp-consensus/std", + "pezsp-runtime/std", + "pezsp-tracing/std", + "rand_core/std", +] +try-runtime = [ + "pezkuwi-primitives/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/core/av-store/Cargo.toml b/pezkuwi/node/core/av-store/Cargo.toml index 1f3b25aa..92c8c100 100644 --- a/pezkuwi/node/core/av-store/Cargo.toml +++ b/pezkuwi/node/core/av-store/Cargo.toml @@ -51,3 +51,14 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsp-consensus/std", + "pezsp-tracing/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/core/backing/Cargo.toml b/pezkuwi/node/core/backing/Cargo.toml index 0e191f61..20b5fc85 100644 --- a/pezkuwi/node/core/backing/Cargo.toml +++ b/pezkuwi/node/core/backing/Cargo.toml @@ -52,5 +52,19 @@ runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", "pezkuwi-statement-table/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "bitvec/std", + "gum/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-statement-table/std", + "pezsc-keystore/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/core/bitfield-signing/Cargo.toml b/pezkuwi/node/core/bitfield-signing/Cargo.toml index 63dfb192..9fb09f56 100644 --- a/pezkuwi/node/core/bitfield-signing/Cargo.toml +++ b/pezkuwi/node/core/bitfield-signing/Cargo.toml @@ -35,3 +35,8 @@ runtime-benchmarks = [ # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", +] diff --git a/pezkuwi/node/core/candidate-validation/Cargo.toml b/pezkuwi/node/core/candidate-validation/Cargo.toml index 597af4bf..48b1088e 100644 --- a/pezkuwi/node/core/candidate-validation/Cargo.toml +++ b/pezkuwi/node/core/candidate-validation/Cargo.toml @@ -57,5 +57,19 @@ runtime-benchmarks = [ # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-node-core-pvf/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezsp-application-crypto/std", + "pezsp-keystore/std", +] +serde = [] diff --git a/pezkuwi/node/core/chain-api/Cargo.toml b/pezkuwi/node/core/chain-api/Cargo.toml index 5571592b..fb6dfe9c 100644 --- a/pezkuwi/node/core/chain-api/Cargo.toml +++ b/pezkuwi/node/core/chain-api/Cargo.toml @@ -44,3 +44,14 @@ runtime-benchmarks = [ "pezsc-consensus-babe/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-subsystem-types/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-client-api/std", + "pezsc-consensus-babe/std", + "pezsp-blockchain/std", +] +serde = [] diff --git a/pezkuwi/node/core/chain-selection/Cargo.toml b/pezkuwi/node/core/chain-selection/Cargo.toml index 0825fcb9..c8f9f607 100644 --- a/pezkuwi/node/core/chain-selection/Cargo.toml +++ b/pezkuwi/node/core/chain-selection/Cargo.toml @@ -39,3 +39,10 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", +] +serde = [] diff --git a/pezkuwi/node/core/dispute-coordinator/Cargo.toml b/pezkuwi/node/core/dispute-coordinator/Cargo.toml index 7e48e044..8408db70 100644 --- a/pezkuwi/node/core/dispute-coordinator/Cargo.toml +++ b/pezkuwi/node/core/dispute-coordinator/Cargo.toml @@ -61,5 +61,16 @@ runtime-benchmarks = [ # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", # "pezkuwi-subsystem-bench/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-keystore/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/core/prospective-teyrchains/Cargo.toml b/pezkuwi/node/core/prospective-teyrchains/Cargo.toml index d309dd3c..bdf4a863 100644 --- a/pezkuwi/node/core/prospective-teyrchains/Cargo.toml +++ b/pezkuwi/node/core/prospective-teyrchains/Cargo.toml @@ -41,3 +41,12 @@ runtime-benchmarks = [ # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezsp-tracing/std", + "rand/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/core/provisioner/Cargo.toml b/pezkuwi/node/core/provisioner/Cargo.toml index e92ab9cd..3d3307a2 100644 --- a/pezkuwi/node/core/provisioner/Cargo.toml +++ b/pezkuwi/node/core/provisioner/Cargo.toml @@ -43,4 +43,14 @@ runtime-benchmarks = [ # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", "pezsc-consensus-slots/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", ] +std = [ + "bitvec/std", + "gum/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-consensus-slots/std", +] +serde = [] diff --git a/pezkuwi/node/core/pvf-checker/Cargo.toml b/pezkuwi/node/core/pvf-checker/Cargo.toml index 2c9d5117..5acbc45b 100644 --- a/pezkuwi/node/core/pvf-checker/Cargo.toml +++ b/pezkuwi/node/core/pvf-checker/Cargo.toml @@ -40,6 +40,20 @@ runtime-benchmarks = [ "pezkuwi-node-subsystem/runtime-benchmarks", # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezsc-keystore/std", +] +try-runtime = [ + "pezkuwi-primitives/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/node/core/pvf/Cargo.toml b/pezkuwi/node/core/pvf/Cargo.toml index 1d24acbc..23198a27 100644 --- a/pezkuwi/node/core/pvf/Cargo.toml +++ b/pezkuwi/node/core/pvf/Cargo.toml @@ -102,3 +102,16 @@ runtime-benchmarks = [ "pezsc-tracing/runtime-benchmarks", # "test-teyrchain-adder/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-node-core-pvf-common/std", + "pezkuwi-node-core-pvf-execute-worker?/std", + "pezkuwi-node-core-pvf-prepare-worker?/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-sysinfo/std", + "pezsc-tracing/std", +] +serde = [] diff --git a/pezkuwi/node/core/pvf/common/Cargo.toml b/pezkuwi/node/core/pvf/common/Cargo.toml index 1751c066..ef17196d 100644 --- a/pezkuwi/node/core/pvf/common/Cargo.toml +++ b/pezkuwi/node/core/pvf/common/Cargo.toml @@ -62,3 +62,12 @@ runtime-benchmarks = [ "pezsc-executor/runtime-benchmarks", "pezsp-io/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-executor-common/std", + "pezsc-executor-wasmtime/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/core/pvf/execute-worker/Cargo.toml b/pezkuwi/node/core/pvf/execute-worker/Cargo.toml index 6dd7387e..4e336826 100644 --- a/pezkuwi/node/core/pvf/execute-worker/Cargo.toml +++ b/pezkuwi/node/core/pvf/execute-worker/Cargo.toml @@ -37,3 +37,10 @@ runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-node-core-pvf-common/std", + "pezkuwi-pez-node-primitives/std", +] +serde = [] diff --git a/pezkuwi/node/core/pvf/prepare-worker/Cargo.toml b/pezkuwi/node/core/pvf/prepare-worker/Cargo.toml index 79f06664..480e3b0e 100644 --- a/pezkuwi/node/core/pvf/prepare-worker/Cargo.toml +++ b/pezkuwi/node/core/pvf/prepare-worker/Cargo.toml @@ -53,3 +53,9 @@ runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", # "pezkuwichain-runtime/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-node-core-pvf-common/std", +] +serde = [] diff --git a/pezkuwi/node/core/runtime-api/Cargo.toml b/pezkuwi/node/core/runtime-api/Cargo.toml index c0f893ed..b2177498 100644 --- a/pezkuwi/node/core/runtime-api/Cargo.toml +++ b/pezkuwi/node/core/runtime-api/Cargo.toml @@ -48,3 +48,11 @@ runtime-benchmarks = [ "pezsp-consensus-babe/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-subsystem-types/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", +] +serde = [] diff --git a/pezkuwi/node/core/teyrchains-inherent/Cargo.toml b/pezkuwi/node/core/teyrchains-inherent/Cargo.toml index 3bf74ad4..0b31e001 100644 --- a/pezkuwi/node/core/teyrchains-inherent/Cargo.toml +++ b/pezkuwi/node/core/teyrchains-inherent/Cargo.toml @@ -33,3 +33,9 @@ runtime-benchmarks = [ "pezsp-blockchain/runtime-benchmarks", "pezsp-inherents/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezsp-blockchain/std", +] diff --git a/pezkuwi/node/gum/Cargo.toml b/pezkuwi/node/gum/Cargo.toml index 8b9e4f07..cc0f20b9 100644 --- a/pezkuwi/node/gum/Cargo.toml +++ b/pezkuwi/node/gum/Cargo.toml @@ -22,3 +22,4 @@ tracing = { workspace = true, default-features = true } [features] runtime-benchmarks = ["pezkuwi-primitives/runtime-benchmarks"] +std = [] diff --git a/pezkuwi/node/malus/Cargo.toml b/pezkuwi/node/malus/Cargo.toml index 31dd0718..b534334e 100644 --- a/pezkuwi/node/malus/Cargo.toml +++ b/pezkuwi/node/malus/Cargo.toml @@ -83,3 +83,24 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-cli/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-core-pvf-common/std", + "pezkuwi-node-core-pvf-execute-worker/std", + "pezkuwi-node-core-pvf-prepare-worker/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-node-subsystem-types/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", +] +try-runtime = [ + "pezkuwi-cli/try-runtime", + "pezkuwi-node-network-protocol/try-runtime", + "pezkuwi-node-subsystem-types/try-runtime", + "pezkuwi-primitives/try-runtime", +] +serde = [] diff --git a/pezkuwi/node/metrics/Cargo.toml b/pezkuwi/node/metrics/Cargo.toml index 8ab508e5..4ee2c8da 100644 --- a/pezkuwi/node/metrics/Cargo.toml +++ b/pezkuwi/node/metrics/Cargo.toml @@ -47,3 +47,11 @@ runtime-benchmarks = [ "pezsc-tracing/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "pezkuwi-test-service/std", + "pezsc-cli/std", + "pezsc-service/std", + "pezsc-tracing/std", + "prometheus-endpoint/std", +] +serde = [] diff --git a/pezkuwi/node/network/approval-distribution/Cargo.toml b/pezkuwi/node/network/approval-distribution/Cargo.toml index 9b20255d..545754f1 100644 --- a/pezkuwi/node/network/approval-distribution/Cargo.toml +++ b/pezkuwi/node/network/approval-distribution/Cargo.toml @@ -53,5 +53,21 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-keystore/std", + "pezsp-tracing/std", + "rand_core/std", + "schnorrkel/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/network/availability-distribution/Cargo.toml b/pezkuwi/node/network/availability-distribution/Cargo.toml index d8213630..81ac959c 100644 --- a/pezkuwi/node/network/availability-distribution/Cargo.toml +++ b/pezkuwi/node/network/availability-distribution/Cargo.toml @@ -62,3 +62,14 @@ runtime-benchmarks = [ "pezsc-network/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-network/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/network/availability-recovery/Cargo.toml b/pezkuwi/node/network/availability-recovery/Cargo.toml index 48eb58b7..8197e80b 100644 --- a/pezkuwi/node/network/availability-recovery/Cargo.toml +++ b/pezkuwi/node/network/availability-recovery/Cargo.toml @@ -66,3 +66,15 @@ runtime-benchmarks = [ "pezsc-network/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-network/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/network/bitfield-distribution/Cargo.toml b/pezkuwi/node/network/bitfield-distribution/Cargo.toml index 3b7f4a03..8cf0c133 100644 --- a/pezkuwi/node/network/bitfield-distribution/Cargo.toml +++ b/pezkuwi/node/network/bitfield-distribution/Cargo.toml @@ -43,6 +43,17 @@ runtime-benchmarks = [ "pezkuwi-node-subsystem-util/runtime-benchmarks", "pezkuwi-node-subsystem/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "bitvec/std", + "gum/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezsp-tracing/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/network/bridge/Cargo.toml b/pezkuwi/node/network/bridge/Cargo.toml index 86179f35..45e25e82 100644 --- a/pezkuwi/node/network/bridge/Cargo.toml +++ b/pezkuwi/node/network/bridge/Cargo.toml @@ -54,3 +54,15 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezsc-network/std", + "pezsp-consensus/std", +] +serde = [] diff --git a/pezkuwi/node/network/collator-protocol/Cargo.toml b/pezkuwi/node/network/collator-protocol/Cargo.toml index 5e71bb86..a07c2668 100644 --- a/pezkuwi/node/network/collator-protocol/Cargo.toml +++ b/pezkuwi/node/network/collator-protocol/Cargo.toml @@ -66,7 +66,28 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bitvec/std", + "gum/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-keystore/std", + "pezsc-network/std", + "pezsp-tracing/std", +] +try-runtime = [ + "pezkuwi-node-network-protocol/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-network/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/network/dispute-distribution/Cargo.toml b/pezkuwi/node/network/dispute-distribution/Cargo.toml index 18090d27..ba6e7d9d 100644 --- a/pezkuwi/node/network/dispute-distribution/Cargo.toml +++ b/pezkuwi/node/network/dispute-distribution/Cargo.toml @@ -49,6 +49,19 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-keystore/std", + "pezsc-network/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/network/gossip-support/Cargo.toml b/pezkuwi/node/network/gossip-support/Cargo.toml index eb064b3a..5132b4b9 100644 --- a/pezkuwi/node/network/gossip-support/Cargo.toml +++ b/pezkuwi/node/network/gossip-support/Cargo.toml @@ -52,7 +52,19 @@ runtime-benchmarks = [ "pezkuwi-node-subsystem/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", "pezsc-network/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezsc-network/std", + "rand/std", + "rand_chacha/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/network/protocol/Cargo.toml b/pezkuwi/node/network/protocol/Cargo.toml index e55ee2df..b49b63fc 100644 --- a/pezkuwi/node/network/protocol/Cargo.toml +++ b/pezkuwi/node/network/protocol/Cargo.toml @@ -44,3 +44,18 @@ runtime-benchmarks = [ "pezsc-network/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-authority-discovery/std", + "pezsc-network-types/std", + "pezsc-network/std", +] +try-runtime = [ + "pezkuwi-primitives/try-runtime", + "pezsc-authority-discovery/try-runtime", + "pezsc-network/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/node/network/statement-distribution/Cargo.toml b/pezkuwi/node/network/statement-distribution/Cargo.toml index 13e87fc9..b2bf17e0 100644 --- a/pezkuwi/node/network/statement-distribution/Cargo.toml +++ b/pezkuwi/node/network/statement-distribution/Cargo.toml @@ -62,7 +62,21 @@ runtime-benchmarks = [ # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", # "pezkuwi-subsystem-bench/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-keystore/std", + "pezsc-network/std", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/overseer/Cargo.toml b/pezkuwi/node/overseer/Cargo.toml index 73a746ea..c2b5e252 100644 --- a/pezkuwi/node/overseer/Cargo.toml +++ b/pezkuwi/node/overseer/Cargo.toml @@ -54,3 +54,14 @@ runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", "pezsc-client-api/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-node-subsystem-types/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-primitives-test-helpers/std", + "pezsc-client-api/std", +] +serde = [] diff --git a/pezkuwi/node/primitives/Cargo.toml b/pezkuwi/node/primitives/Cargo.toml index c902aa72..9a3a34e0 100644 --- a/pezkuwi/node/primitives/Cargo.toml +++ b/pezkuwi/node/primitives/Cargo.toml @@ -37,6 +37,17 @@ zstd = { workspace = true, default-features = false } runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-consensus-slots/runtime-benchmarks", ] +std = [ + "bitvec/std", + "codec/std", + "pezkuwi-teyrchain-primitives/std", + "pezsc-keystore/std", + "pezsp-consensus-slots/std", +] +serde = [] +experimental = [] diff --git a/pezkuwi/node/service/Cargo.toml b/pezkuwi/node/service/Cargo.toml index 5aab656c..74c3c7da 100644 --- a/pezkuwi/node/service/Cargo.toml +++ b/pezkuwi/node/service/Cargo.toml @@ -256,6 +256,7 @@ runtime-benchmarks = [ "pezsc-consensus-slots/runtime-benchmarks", "pezsc-consensus/runtime-benchmarks", "pezsc-executor/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network-sync/runtime-benchmarks", "pezsc-network/runtime-benchmarks", "pezsc-offchain/runtime-benchmarks", @@ -289,11 +290,63 @@ runtime-benchmarks = [ "zagros-runtime?/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking-cli/try-runtime", + "pezframe-benchmarking/try-runtime", + "pezframe-metadata-hash-extension?/try-runtime", "pezframe-system/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-primitives/try-runtime", + "pezkuwi-rpc/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwichain-runtime-constants?/try-runtime", "pezkuwichain-runtime?/try-runtime", + "pezmmr-gadget/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", + "pezsc-authority-discovery/try-runtime", + "pezsc-basic-authorship/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-babe/try-runtime", + "pezsc-consensus-beefy/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsc-consensus-slots/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-network-sync/try-runtime", + "pezsc-network/try-runtime", + "pezsc-offchain/try-runtime", + "pezsc-service/try-runtime", + "pezsc-sync-state-rpc/try-runtime", + "pezsc-sysinfo/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-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus-grandpa/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-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-timestamp/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants?/try-runtime", "zagros-runtime?/try-runtime", ] fast-runtime = [ @@ -307,3 +360,67 @@ runtime-metrics = [ "pezkuwichain-runtime?/runtime-metrics", "zagros-runtime?/runtime-metrics", ] +std = [ + "gum/std", + "log/std", + "pezframe-benchmarking-cli/std", + "pezkuwi-approval-distribution?/std", + "pezkuwi-availability-bitfield-distribution?/std", + "pezkuwi-availability-distribution?/std", + "pezkuwi-availability-recovery?/std", + "pezkuwi-collator-protocol?/std", + "pezkuwi-dispute-distribution?/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?/std", + "pezkuwi-node-core-runtime-api?/std", + "pezkuwi-node-core-teyrchains-inherent/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-types/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-rpc/std", + "pezkuwi-statement-distribution?/std", + "pezmmr-gadget/std", + "pezsc-authority-discovery/std", + "pezsc-basic-authorship/std", + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-beefy/std", + "pezsc-consensus-grandpa/std", + "pezsc-consensus-slots/std", + "pezsc-consensus/std", + "pezsc-keystore/std", + "pezsc-network-sync/std", + "pezsc-network/std", + "pezsc-offchain/std", + "pezsc-service/std", + "pezsc-sync-state-rpc/std", + "pezsc-sysinfo/std", + "pezsc-telemetry/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", + "pezsp-tracing/std", + "prometheus-endpoint/std", +] +serde = [] +experimental = [] +with-tracing = [] diff --git a/pezkuwi/node/subsystem-bench/Cargo.toml b/pezkuwi/node/subsystem-bench/Cargo.toml index e6cfd072..94cfd57f 100644 --- a/pezkuwi/node/subsystem-bench/Cargo.toml +++ b/pezkuwi/node/subsystem-bench/Cargo.toml @@ -125,11 +125,61 @@ runtime-benchmarks = [ "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", "pezkuwi-statement-distribution/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsc-network/runtime-benchmarks", "pezsc-service/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", "pezsp-consensus/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "gum/std", + "pezkuwi-approval-distribution/std", + "pezkuwi-availability-bitfield-distribution/std", + "pezkuwi-availability-distribution/std", + "pezkuwi-availability-recovery/std", + "pezkuwi-dispute-distribution/std", + "pezkuwi-node-core-approval-voting-parallel/std", + "pezkuwi-node-core-approval-voting/std", + "pezkuwi-node-core-av-store/std", + "pezkuwi-node-core-dispute-coordinator/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-test-helpers/std", + "pezkuwi-node-subsystem-types/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-primitives-test-helpers/std", + "pezkuwi-primitives/std", + "pezkuwi-statement-distribution/std", + "pezsc-keystore/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsp-consensus/std", + "pezsp-runtime/std", + "pezsp-tracing/std", + "prometheus-endpoint/std", + "serde_json/std", +] +try-runtime = [ + "pezkuwi-node-core-approval-voting/try-runtime", + "pezkuwi-node-network-protocol/try-runtime", + "pezkuwi-node-subsystem-types/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/subsystem-test-helpers/Cargo.toml b/pezkuwi/node/subsystem-test-helpers/Cargo.toml index b847f6ad..2d9d1961 100644 --- a/pezkuwi/node/subsystem-test-helpers/Cargo.toml +++ b/pezkuwi/node/subsystem-test-helpers/Cargo.toml @@ -39,5 +39,17 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", "pezsc-client-api/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", ] +std = [ + "pezkuwi-erasure-coding/std", + "pezkuwi-node-subsystem-util/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezsc-client-api/std", + "pezsc-keystore/std", + "pezsc-utils/std", +] +serde = [] diff --git a/pezkuwi/node/subsystem-types/Cargo.toml b/pezkuwi/node/subsystem-types/Cargo.toml index 1ed2365d..590b5b71 100644 --- a/pezkuwi/node/subsystem-types/Cargo.toml +++ b/pezkuwi/node/subsystem-types/Cargo.toml @@ -50,3 +50,27 @@ runtime-benchmarks = [ "pezsp-consensus-babe/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "pezkuwi-node-network-protocol/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-statement-table/std", + "pezsc-client-api/std", + "pezsc-network-types/std", + "pezsc-network/std", + "pezsc-transaction-pool-api/std", + "pezsp-blockchain/std", + "prometheus-endpoint/std", +] +try-runtime = [ + "pezkuwi-node-network-protocol/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-network/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/node/subsystem-util/Cargo.toml b/pezkuwi/node/subsystem-util/Cargo.toml index 676e113b..bf8cbe09 100644 --- a/pezkuwi/node/subsystem-util/Cargo.toml +++ b/pezkuwi/node/subsystem-util/Cargo.toml @@ -61,4 +61,17 @@ runtime-benchmarks = [ "pezkuwi-pez-node-primitives/runtime-benchmarks", # "pezkuwi-primitives-test-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-metrics/std", + "pezkuwi-node-network-protocol/std", + "pezkuwi-node-subsystem-types/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", +] +serde = [] diff --git a/pezkuwi/node/subsystem/Cargo.toml b/pezkuwi/node/subsystem/Cargo.toml index b828b01d..9330c684 100644 --- a/pezkuwi/node/subsystem/Cargo.toml +++ b/pezkuwi/node/subsystem/Cargo.toml @@ -21,3 +21,7 @@ runtime-benchmarks = [ "pezkuwi-node-subsystem-types/runtime-benchmarks", "pezkuwi-overseer/runtime-benchmarks", ] +std = [ + "pezkuwi-node-subsystem-types/std", + "pezkuwi-overseer/std", +] diff --git a/pezkuwi/node/test/client/Cargo.toml b/pezkuwi/node/test/client/Cargo.toml index 1572a069..57c6a0ef 100644 --- a/pezkuwi/node/test/client/Cargo.toml +++ b/pezkuwi/node/test/client/Cargo.toml @@ -62,3 +62,33 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "pezsp-timestamp/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-client/std", + "codec/std", + "pezkuwi-test-service/std", + "pezsc-block-builder/std", + "pezsc-consensus/std", + "pezsc-service/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-test-client/try-runtime", + "pezframe-benchmarking/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-test-runtime/try-runtime", + "pezkuwi-test-service/try-runtime", + "pezsc-block-builder/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-service/try-runtime", + "pezsp-api/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/node/test/service/Cargo.toml b/pezkuwi/node/test/service/Cargo.toml index cf44dcd4..29b615dd 100644 --- a/pezkuwi/node/test/service/Cargo.toml +++ b/pezkuwi/node/test/service/Cargo.toml @@ -93,3 +93,50 @@ runtime-benchmarks = [ "pezsp-state-machine/runtime-benchmarks", "peztest-runtime-constants/runtime-benchmarks", ] +std = [ + "bizinikiwi-test-client/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-overseer/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-service/std", + "pezsc-chain-spec/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-consensus-grandpa/std", + "pezsc-consensus/std", + "pezsc-network/std", + "pezsc-service/std", + "pezsc-tracing/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-test-client/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-service/try-runtime", + "pezkuwi-test-runtime/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-staking/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-network/try-runtime", + "pezsc-service/try-runtime", + "pezsc-tracing/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "peztest-runtime-constants/try-runtime", +] +serde = [] +experimental = [] diff --git a/pezkuwi/node/zombienet-backchannel/Cargo.toml b/pezkuwi/node/zombienet-backchannel/Cargo.toml index a8b79292..66ef2eb4 100644 --- a/pezkuwi/node/zombienet-backchannel/Cargo.toml +++ b/pezkuwi/node/zombienet-backchannel/Cargo.toml @@ -31,3 +31,7 @@ tokio-tungstenite = { workspace = true } [features] runtime-benchmarks = ["gum/runtime-benchmarks"] +std = [ + "gum/std", +] +serde = [] diff --git a/pezkuwi/pezpallets/validator-pool/Cargo.toml b/pezkuwi/pezpallets/validator-pool/Cargo.toml index 8a7e77e1..b6375582 100644 --- a/pezkuwi/pezpallets/validator-pool/Cargo.toml +++ b/pezkuwi/pezpallets/validator-pool/Cargo.toml @@ -75,10 +75,16 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-session/try-runtime", "pezpallet-timestamp/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/primitives/Cargo.toml b/pezkuwi/primitives/Cargo.toml index 2234688d..c9c1ddf9 100644 --- a/pezkuwi/primitives/Cargo.toml +++ b/pezkuwi/primitives/Cargo.toml @@ -68,6 +68,7 @@ runtime-benchmarks = [ "pezkuwi-core-primitives/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", "pezsp-consensus-slots/runtime-benchmarks", "pezsp-inherents/runtime-benchmarks", @@ -76,3 +77,14 @@ runtime-benchmarks = [ "pezsp-staking/runtime-benchmarks", ] test = [] +try-runtime = [ + "pezkuwi-core-primitives/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsp-api/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-staking/try-runtime", +] +serde = [] +with-tracing = [] diff --git a/pezkuwi/primitives/test-helpers/Cargo.toml b/pezkuwi/primitives/test-helpers/Cargo.toml index f7ffef1a..5a115a48 100644 --- a/pezkuwi/primitives/test-helpers/Cargo.toml +++ b/pezkuwi/primitives/test-helpers/Cargo.toml @@ -30,6 +30,19 @@ bitvec = { features = ["alloc", "serde"], workspace = true } [features] runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bitvec/std", + "codec/std", + "pezsp-application-crypto/std", + "scale-info/std", +] +try-runtime = [ + "pezkuwi-primitives/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/rpc/Cargo.toml b/pezkuwi/rpc/Cargo.toml index de6b3fba..6e68766b 100644 --- a/pezkuwi/rpc/Cargo.toml +++ b/pezkuwi/rpc/Cargo.toml @@ -59,6 +59,7 @@ runtime-benchmarks = [ "pezsc-sync-state-rpc/runtime-benchmarks", "pezsc-transaction-pool-api/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-blockchain/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", @@ -66,3 +67,48 @@ runtime-benchmarks = [ "pezsp-consensus/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "bizinikiwi-frame-rpc-system/std", + "bizinikiwi-state-trie-migration-rpc/std", + "pezmmr-rpc/std", + "pezpallet-transaction-payment-rpc/std", + "pezsc-chain-spec/std", + "pezsc-client-api/std", + "pezsc-consensus-babe-rpc/std", + "pezsc-consensus-babe/std", + "pezsc-consensus-beefy-rpc/std", + "pezsc-consensus-beefy/std", + "pezsc-consensus-grandpa-rpc/std", + "pezsc-consensus-grandpa/std", + "pezsc-rpc/std", + "pezsc-sync-state-rpc/std", + "pezsc-transaction-pool-api/std", + "pezsp-blockchain/std", + "pezsp-consensus/std", +] +try-runtime = [ + "bizinikiwi-frame-rpc-system/try-runtime", + "bizinikiwi-state-trie-migration-rpc/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezmmr-rpc/try-runtime", + "pezpallet-transaction-payment-rpc/try-runtime", + "pezsc-chain-spec/try-runtime", + "pezsc-client-api/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-grandpa-rpc/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsc-rpc/try-runtime", + "pezsc-sync-state-rpc/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/runtime/common/Cargo.toml b/pezkuwi/runtime/common/Cargo.toml index 34258de4..9cc6cb96 100644 --- a/pezkuwi/runtime/common/Cargo.toml +++ b/pezkuwi/runtime/common/Cargo.toml @@ -86,6 +86,7 @@ std = [ "pezframe-election-provider-support/std", "pezframe-support/std", "pezframe-system/std", + "pezkuwi-primitives-test-helpers/std", "pezkuwi-primitives/std", "pezkuwi-runtime-teyrchains/std", "pezpallet-asset-rate?/std", @@ -157,10 +158,14 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pez-slot-range-helper/try-runtime", + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-support-test/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime", + "pezkuwi-primitives/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", "pezpallet-asset-rate/try-runtime", "pezpallet-authorship/try-runtime", @@ -176,5 +181,18 @@ try-runtime = [ "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-vesting/try-runtime", + "pezsp-api/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-npos-elections/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor?/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/common/pez-slot-range-helper/Cargo.toml b/pezkuwi/runtime/common/pez-slot-range-helper/Cargo.toml index 4c0edbbc..07622862 100644 --- a/pezkuwi/runtime/common/pez-slot-range-helper/Cargo.toml +++ b/pezkuwi/runtime/common/pez-slot-range-helper/Cargo.toml @@ -22,3 +22,7 @@ pezsp-runtime = { workspace = true } default = ["std"] std = ["codec/std", "pezsp-runtime/std"] runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"] +try-runtime = [ + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/runtime/metrics/Cargo.toml b/pezkuwi/runtime/metrics/Cargo.toml index 73906878..82fcd9fe 100644 --- a/pezkuwi/runtime/metrics/Cargo.toml +++ b/pezkuwi/runtime/metrics/Cargo.toml @@ -34,3 +34,5 @@ runtime-benchmarks = [ "pezframe-benchmarking?/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", ] +serde = [] +with-tracing = [] diff --git a/pezkuwi/runtime/pezkuwichain/Cargo.toml b/pezkuwi/runtime/pezkuwichain/Cargo.toml index 01500d99..98987bba 100644 --- a/pezkuwi/runtime/pezkuwichain/Cargo.toml +++ b/pezkuwi/runtime/pezkuwichain/Cargo.toml @@ -134,6 +134,7 @@ no_std = [] std = [ "bitvec/std", "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "log/std", "pez-binary-merkle-tree/std", @@ -216,6 +217,7 @@ std = [ "pezsp-tracing/std", "pezsp-transaction-pool/std", "pezsp-version/std", + "remote-externalities/std", "scale-info/std", "serde/std", "serde_derive", @@ -311,14 +313,20 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime", "pezframe-try-runtime/try-runtime", + "pezkuwi-primitives/try-runtime", "pezkuwi-runtime-common/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezkuwichain-runtime-constants/try-runtime", "pezpallet-authority-discovery/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-babe/try-runtime", @@ -328,6 +336,7 @@ try-runtime = [ "pezpallet-beefy/try-runtime", "pezpallet-collective/try-runtime", "pezpallet-conviction-voting/try-runtime", + "pezpallet-election-provider-support-benchmarking?/try-runtime", "pezpallet-fast-unstake/try-runtime", "pezpallet-grandpa/try-runtime", "pezpallet-indices/try-runtime", @@ -335,7 +344,10 @@ try-runtime = [ "pezpallet-migrations/try-runtime", "pezpallet-mmr/try-runtime", "pezpallet-multisig/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-parameters/try-runtime", "pezpallet-preimage/try-runtime", @@ -343,19 +355,43 @@ try-runtime = [ "pezpallet-referenda/try-runtime", "pezpallet-root-testing/try-runtime", "pezpallet-scheduler/try-runtime", + "pezpallet-session-benchmarking?/try-runtime", "pezpallet-session/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-state-trie-migration/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/try-runtime", "pezpallet-utility/try-runtime", "pezpallet-validator-pool/try-runtime", "pezpallet-vesting/try-runtime", "pezpallet-whitelist/try-runtime", + "pezpallet-xcm-benchmarks?/try-runtime", "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus-grandpa/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-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "remote-externalities/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] # Enable the metadata hash generation in the wasm builder. @@ -373,3 +409,7 @@ runtime-metrics = [ # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/pezkuwichain/bridge-primitives/Cargo.toml b/pezkuwi/runtime/pezkuwichain/bridge-primitives/Cargo.toml index c9329a35..cd60b88a 100644 --- a/pezkuwi/runtime/pezkuwichain/bridge-primitives/Cargo.toml +++ b/pezkuwi/runtime/pezkuwichain/bridge-primitives/Cargo.toml @@ -43,3 +43,13 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezsp-api/runtime-benchmarks", ] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezsp-api/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/pezkuwichain/constants/Cargo.toml b/pezkuwi/runtime/pezkuwichain/constants/Cargo.toml index 11a90974..a8009177 100644 --- a/pezkuwi/runtime/pezkuwichain/constants/Cargo.toml +++ b/pezkuwi/runtime/pezkuwichain/constants/Cargo.toml @@ -51,3 +51,14 @@ runtime-benchmarks = [ "xcm-builder/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/test-runtime/Cargo.toml b/pezkuwi/runtime/test-runtime/Cargo.toml index a4787f0e..d464b40b 100644 --- a/pezkuwi/runtime/test-runtime/Cargo.toml +++ b/pezkuwi/runtime/test-runtime/Cargo.toml @@ -79,6 +79,7 @@ runtime-metrics = [ "pezsp-io/with-tracing", ] std = [ + "bizinikiwi-wasm-builder/std", "codec/std", "log/std", "pezframe-election-provider-support/std", @@ -97,6 +98,7 @@ std = [ "pezpallet-indices/std", "pezpallet-offences/std", "pezpallet-session/std", + "pezpallet-staking-reward-curve/std", "pezpallet-staking/std", "pezpallet-sudo/std", "pezpallet-timestamp/std", @@ -173,3 +175,50 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-election-provider-support/try-runtime", + "pezframe-executive/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezpallet-authority-discovery/try-runtime", + "pezpallet-authorship/try-runtime", + "pezpallet-babe/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-grandpa/try-runtime", + "pezpallet-indices/try-runtime", + "pezpallet-offences/try-runtime", + "pezpallet-session/try-runtime", + "pezpallet-staking-reward-curve/try-runtime", + "pezpallet-staking/try-runtime", + "pezpallet-sudo/try-runtime", + "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezpallet-vesting/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-api/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-mmr-primitives/try-runtime", + "pezsp-offchain/try-runtime", + "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "peztest-runtime-constants/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/test-runtime/constants/Cargo.toml b/pezkuwi/runtime/test-runtime/constants/Cargo.toml index 82685b61..235c3290 100644 --- a/pezkuwi/runtime/test-runtime/constants/Cargo.toml +++ b/pezkuwi/runtime/test-runtime/constants/Cargo.toml @@ -28,3 +28,11 @@ runtime-benchmarks = [ "pezkuwi-primitives/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/teyrchains/Cargo.toml b/pezkuwi/runtime/teyrchains/Cargo.toml index c8f448ac..4cebfd45 100644 --- a/pezkuwi/runtime/teyrchains/Cargo.toml +++ b/pezkuwi/runtime/teyrchains/Cargo.toml @@ -89,6 +89,7 @@ std = [ "pezframe-support/std", "pezframe-system/std", "pezkuwi-core-primitives/std", + "pezkuwi-primitives-test-helpers/std", "pezkuwi-primitives/std", "pezkuwi-runtime-metrics/std", "pezkuwi-teyrchain-primitives/std", @@ -102,6 +103,7 @@ std = [ "pezpallet-session/std", "pezpallet-staking/std", "pezpallet-timestamp/std", + "pezsc-keystore/std", "pezsp-api/std", "pezsp-application-crypto?/std", "pezsp-arithmetic/std", @@ -142,8 +144,10 @@ runtime-benchmarks = [ "pezpallet-session/runtime-benchmarks", "pezpallet-staking/runtime-benchmarks", "pezpallet-timestamp/runtime-benchmarks", + "pezsc-keystore/runtime-benchmarks", "pezsp-api/runtime-benchmarks", "pezsp-application-crypto", + "pezsp-application-crypto?/runtime-benchmarks", "pezsp-inherents/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-keyring/runtime-benchmarks", @@ -156,10 +160,15 @@ runtime-benchmarks = [ "xcm/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support?/try-runtime", "pezframe-support-test/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-core-primitives/try-runtime", + "pezkuwi-primitives-test-helpers/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-authority-discovery/try-runtime", "pezpallet-authorship/try-runtime", "pezpallet-babe/try-runtime", @@ -170,9 +179,20 @@ try-runtime = [ "pezpallet-session/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-timestamp/try-runtime", + "pezsp-api/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", ] runtime-metrics = [ "pezkuwi-runtime-metrics/runtime-metrics", "pezsp-tracing/with-tracing", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/zagros/Cargo.toml b/pezkuwi/runtime/zagros/Cargo.toml index 3063beff..a6c3941b 100644 --- a/pezkuwi/runtime/zagros/Cargo.toml +++ b/pezkuwi/runtime/zagros/Cargo.toml @@ -139,6 +139,7 @@ default = ["std"] no_std = [] std = [ "bitvec/std", + "bizinikiwi-wasm-builder/std", "codec/std", "log/std", "pez-binary-merkle-tree/std", @@ -228,6 +229,7 @@ std = [ "pezsp-tracing/std", "pezsp-transaction-pool/std", "pezsp-version/std", + "remote-externalities/std", "scale-info/std", "serde/std", "serde_derive", @@ -306,6 +308,7 @@ runtime-benchmarks = [ "pezpallet-xcm-benchmarks/runtime-benchmarks", "pezpallet-xcm/runtime-benchmarks", "pezsp-api/runtime-benchmarks", + "pezsp-application-crypto/runtime-benchmarks", "pezsp-authority-discovery/runtime-benchmarks", "pezsp-block-builder/runtime-benchmarks", "pezsp-consensus-babe/runtime-benchmarks", @@ -331,14 +334,19 @@ runtime-benchmarks = [ "zagros-runtime-constants/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-election-provider-support/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime", "pezframe-try-runtime/try-runtime", + "pezkuwi-primitives/try-runtime", "pezkuwi-runtime-common/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-asset-rate/try-runtime", "pezpallet-authority-discovery/try-runtime", "pezpallet-authorship/try-runtime", @@ -350,6 +358,7 @@ try-runtime = [ "pezpallet-conviction-voting/try-runtime", "pezpallet-delegated-staking/try-runtime", "pezpallet-election-provider-multi-phase/try-runtime", + "pezpallet-election-provider-support-benchmarking?/try-runtime", "pezpallet-fast-unstake/try-runtime", "pezpallet-grandpa/try-runtime", "pezpallet-identity/try-runtime", @@ -359,7 +368,10 @@ try-runtime = [ "pezpallet-migrations/try-runtime", "pezpallet-mmr/try-runtime", "pezpallet-multisig/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-parameters/try-runtime", "pezpallet-preimage/try-runtime", @@ -369,20 +381,45 @@ try-runtime = [ "pezpallet-root-offences/try-runtime", "pezpallet-root-testing/try-runtime", "pezpallet-scheduler/try-runtime", + "pezpallet-session-benchmarking?/try-runtime", "pezpallet-session/try-runtime", "pezpallet-staking-async-ah-client/try-runtime", "pezpallet-staking-async-rc-client/try-runtime", "pezpallet-staking/try-runtime", "pezpallet-sudo/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", "pezpallet-treasury/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/try-runtime", + "pezsp-api/try-runtime", + "pezsp-authority-discovery/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-babe/try-runtime", + "pezsp-consensus-beefy/try-runtime", + "pezsp-consensus-grandpa/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-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-staking/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", + "remote-externalities/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", + "zagros-runtime-constants/try-runtime", ] # Enable the metadata hash generation in the wasm builder. @@ -400,3 +437,7 @@ runtime-metrics = [ # deployment. This will disable stuff that shouldn't be part of the on-chain wasm # to make it smaller, like logging for example. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/zagros/bridge-primitives/Cargo.toml b/pezkuwi/runtime/zagros/bridge-primitives/Cargo.toml index 808cc044..1f38b18f 100644 --- a/pezkuwi/runtime/zagros/bridge-primitives/Cargo.toml +++ b/pezkuwi/runtime/zagros/bridge-primitives/Cargo.toml @@ -43,3 +43,13 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezsp-api/runtime-benchmarks", ] +try-runtime = [ + "pezbp-header-pez-chain/try-runtime", + "pezbp-pezkuwi-core/try-runtime", + "pezbp-runtime/try-runtime", + "pezframe-support/try-runtime", + "pezsp-api/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezkuwi/runtime/zagros/constants/Cargo.toml b/pezkuwi/runtime/zagros/constants/Cargo.toml index 88499cf3..980ec56d 100644 --- a/pezkuwi/runtime/zagros/constants/Cargo.toml +++ b/pezkuwi/runtime/zagros/constants/Cargo.toml @@ -50,3 +50,14 @@ runtime-benchmarks = [ ] # Set timing constants (e.g. session period) to faster versions to speed up testing. fast-runtime = [] +try-runtime = [ + "pezframe-support/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-common/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/pezkuwi/statement-table/Cargo.toml b/pezkuwi/statement-table/Cargo.toml index 36ee0b05..496f7f81 100644 --- a/pezkuwi/statement-table/Cargo.toml +++ b/pezkuwi/statement-table/Cargo.toml @@ -22,3 +22,8 @@ runtime-benchmarks = [ "gum/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", ] +std = [ + "codec/std", + "gum/std", +] +serde = [] diff --git a/pezkuwi/teyrchain/Cargo.toml b/pezkuwi/teyrchain/Cargo.toml index a4c38294..83fc778d 100644 --- a/pezkuwi/teyrchain/Cargo.toml +++ b/pezkuwi/teyrchain/Cargo.toml @@ -46,3 +46,8 @@ runtime-benchmarks = [ "pezkuwi-core-primitives/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pezkuwi-core-primitives/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] diff --git a/pezkuwi/teyrchain/test-teyrchains/adder/Cargo.toml b/pezkuwi/teyrchain/test-teyrchains/adder/Cargo.toml index f8532987..d27e533d 100644 --- a/pezkuwi/teyrchain/test-teyrchains/adder/Cargo.toml +++ b/pezkuwi/teyrchain/test-teyrchains/adder/Cargo.toml @@ -28,9 +28,16 @@ bizinikiwi-wasm-builder = { workspace = true, default-features = true } [features] default = ["std"] -std = ["codec/std", "pezkuwi-teyrchain-primitives/std", "pezsp-io/std"] +std = [ + "bizinikiwi-wasm-builder/std", + "codec/std", + "pezkuwi-teyrchain-primitives/std", + "pezsp-io/std", +] runtime-benchmarks = [ "bizinikiwi-wasm-builder/runtime-benchmarks", "pezkuwi-teyrchain-primitives/runtime-benchmarks", "pezsp-io/runtime-benchmarks", ] +serde = [] +with-tracing = [] diff --git a/pezkuwi/teyrchain/test-teyrchains/adder/collator/Cargo.toml b/pezkuwi/teyrchain/test-teyrchains/adder/collator/Cargo.toml index f341425e..ccb102c3 100644 --- a/pezkuwi/teyrchain/test-teyrchains/adder/collator/Cargo.toml +++ b/pezkuwi/teyrchain/test-teyrchains/adder/collator/Cargo.toml @@ -63,3 +63,26 @@ runtime-benchmarks = [ "pezsp-keyring/runtime-benchmarks", "test-teyrchain-adder/runtime-benchmarks", ] +std = [ + "codec/std", + "log/std", + "pezkuwi-cli/std", + "pezkuwi-node-core-pvf/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-service/std", + "pezkuwi-test-service/std", + "pezsc-cli/std", + "pezsc-service/std", +] +try-runtime = [ + "pezkuwi-cli/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-service/try-runtime", + "pezkuwi-test-service/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-service/try-runtime", + "pezsp-keyring/try-runtime", +] +serde = [] diff --git a/pezkuwi/teyrchain/test-teyrchains/halt/Cargo.toml b/pezkuwi/teyrchain/test-teyrchains/halt/Cargo.toml index 55f91ba3..d2727552 100644 --- a/pezkuwi/teyrchain/test-teyrchains/halt/Cargo.toml +++ b/pezkuwi/teyrchain/test-teyrchains/halt/Cargo.toml @@ -20,4 +20,9 @@ rustversion = { workspace = true } [features] default = ["std"] -std = [] +std = [ + "bizinikiwi-wasm-builder/std", +] +runtime-benchmarks = [ + "bizinikiwi-wasm-builder/runtime-benchmarks", +] diff --git a/pezkuwi/teyrchain/test-teyrchains/undying/Cargo.toml b/pezkuwi/teyrchain/test-teyrchains/undying/Cargo.toml index e3d74612..50cf38e7 100644 --- a/pezkuwi/teyrchain/test-teyrchains/undying/Cargo.toml +++ b/pezkuwi/teyrchain/test-teyrchains/undying/Cargo.toml @@ -31,6 +31,7 @@ bizinikiwi-wasm-builder = { workspace = true, default-features = true } [features] default = ["std"] std = [ + "bizinikiwi-wasm-builder/std", "codec/std", "log/std", "pezkuwi-primitives/std", @@ -43,3 +44,5 @@ runtime-benchmarks = [ "pezkuwi-teyrchain-primitives/runtime-benchmarks", "pezsp-io/runtime-benchmarks", ] +serde = [] +with-tracing = [] diff --git a/pezkuwi/teyrchain/test-teyrchains/undying/collator/Cargo.toml b/pezkuwi/teyrchain/test-teyrchains/undying/collator/Cargo.toml index d8fd3340..cc5cd764 100644 --- a/pezkuwi/teyrchain/test-teyrchains/undying/collator/Cargo.toml +++ b/pezkuwi/teyrchain/test-teyrchains/undying/collator/Cargo.toml @@ -67,3 +67,29 @@ runtime-benchmarks = [ "pezsp-keyring/runtime-benchmarks", "test-teyrchain-undying/runtime-benchmarks", ] +std = [ + "codec/std", + "log/std", + "pezkuwi-cli/std", + "pezkuwi-erasure-coding/std", + "pezkuwi-node-core-pvf/std", + "pezkuwi-node-subsystem/std", + "pezkuwi-pez-node-primitives/std", + "pezkuwi-service/std", + "pezkuwi-test-service/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-service/std", +] +try-runtime = [ + "pezkuwi-cli/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-service/try-runtime", + "pezkuwi-test-service/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-service/try-runtime", + "pezsp-keyring/try-runtime", +] +serde = [] diff --git a/pezkuwi/utils/pez-generate-bags/Cargo.toml b/pezkuwi/utils/pez-generate-bags/Cargo.toml index c2816ffe..303e0c2e 100644 --- a/pezkuwi/utils/pez-generate-bags/Cargo.toml +++ b/pezkuwi/utils/pez-generate-bags/Cargo.toml @@ -24,3 +24,10 @@ runtime-benchmarks = [ "pez-generate-bags/runtime-benchmarks", "zagros-runtime/runtime-benchmarks", ] +std = [ + "pez-generate-bags/std", +] +try-runtime = [ + "pez-generate-bags/try-runtime", + "zagros-runtime/try-runtime", +] diff --git a/pezkuwi/utils/remote-ext-tests/bags-list/Cargo.toml b/pezkuwi/utils/remote-ext-tests/bags-list/Cargo.toml index 2e86b810..03b43b7b 100644 --- a/pezkuwi/utils/remote-ext-tests/bags-list/Cargo.toml +++ b/pezkuwi/utils/remote-ext-tests/bags-list/Cargo.toml @@ -33,3 +33,16 @@ runtime-benchmarks = [ "zagros-runtime-constants/runtime-benchmarks", "zagros-runtime/runtime-benchmarks", ] +std = [ + "log/std", + "pezpallet-bags-list-remote-tests/std", +] +try-runtime = [ + "pezframe-system/try-runtime", + "pezpallet-bags-list-remote-tests/try-runtime", + "zagros-runtime-constants/try-runtime", + "zagros-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] diff --git a/pezkuwi/xcm/Cargo.toml b/pezkuwi/xcm/Cargo.toml index 2ea95947..1c16f6dd 100644 --- a/pezkuwi/xcm/Cargo.toml +++ b/pezkuwi/xcm/Cargo.toml @@ -45,6 +45,7 @@ std = [ "scale-info/std", "serde/std", "tracing/std", + "xcm-pez-procedural/std", ] json-schema = [ "bounded-collections/json-schema", @@ -57,3 +58,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", "xcm-pez-procedural/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-pez-procedural/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/docs/Cargo.toml b/pezkuwi/xcm/docs/Cargo.toml index 836808e0..bde77c06 100644 --- a/pezkuwi/xcm/docs/Cargo.toml +++ b/pezkuwi/xcm/docs/Cargo.toml @@ -55,3 +55,25 @@ runtime-benchmarks = [ "xcm-pez-simulator/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "scale-info/std", + "xcm-pez-simulator/std", +] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezframe/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/pezpallet-xcm-benchmarks/Cargo.toml b/pezkuwi/xcm/pezpallet-xcm-benchmarks/Cargo.toml index dd47981d..a52d697a 100644 --- a/pezkuwi/xcm/pezpallet-xcm-benchmarks/Cargo.toml +++ b/pezkuwi/xcm/pezpallet-xcm-benchmarks/Cargo.toml @@ -56,3 +56,17 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-benchmarking/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-balances/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/pezpallet-xcm/Cargo.toml b/pezkuwi/xcm/pezpallet-xcm/Cargo.toml index 199cb76f..de64def7 100644 --- a/pezkuwi/xcm/pezpallet-xcm/Cargo.toml +++ b/pezkuwi/xcm/pezpallet-xcm/Cargo.toml @@ -82,10 +82,28 @@ runtime-benchmarks = [ ] test-utils = ["std"] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-runtime-pezapis/try-runtime", + "xcm/try-runtime", ] +serde = [ + "bounded-collections/serde", + "codec/serde", + "dep:serde", + "pezframe-benchmarking?/serde", + "pezsp-core/serde", + "pezsp-runtime/serde", + "scale-info/serde", +] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/pezpallet-xcm/precompiles/Cargo.toml b/pezkuwi/xcm/pezpallet-xcm/precompiles/Cargo.toml index efdc1628..6cce6199 100644 --- a/pezkuwi/xcm/pezpallet-xcm/precompiles/Cargo.toml +++ b/pezkuwi/xcm/pezpallet-xcm/precompiles/Cargo.toml @@ -56,6 +56,7 @@ std = [ "tracing/std", "xcm-builder/std", "xcm-executor/std", + "xcm-pez-simulator/std", "xcm/std", ] runtime-benchmarks = [ @@ -77,10 +78,19 @@ runtime-benchmarks = [ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-assets/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-revive/try-runtime", "pezpallet-timestamp/try-runtime", "pezpallet-xcm/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/procedural/Cargo.toml b/pezkuwi/xcm/procedural/Cargo.toml index e01c0393..a26afbee 100644 --- a/pezkuwi/xcm/procedural/Cargo.toml +++ b/pezkuwi/xcm/procedural/Cargo.toml @@ -34,3 +34,12 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "pezframe-support/std", +] +try-runtime = [ + "pezframe-support/try-runtime", + "xcm/try-runtime", +] +experimental = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/xcm-builder/Cargo.toml b/pezkuwi/xcm/xcm-builder/Cargo.toml index e275dacb..6f065952 100644 --- a/pezkuwi/xcm/xcm-builder/Cargo.toml +++ b/pezkuwi/xcm/xcm-builder/Cargo.toml @@ -87,5 +87,28 @@ std = [ "scale-info/std", "tracing/std", "xcm-executor/std", + "xcm-pez-simulator/std", "xcm/std", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-test-runtime/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-asset-conversion/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-salary/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/xcm-executor/Cargo.toml b/pezkuwi/xcm/xcm-executor/Cargo.toml index 22066811..fb69a4b6 100644 --- a/pezkuwi/xcm/xcm-executor/Cargo.toml +++ b/pezkuwi/xcm/xcm-executor/Cargo.toml @@ -50,3 +50,13 @@ std = [ "tracing/std", "xcm/std", ] +try-runtime = [ + "pezframe-benchmarking?/try-runtime", + "pezframe-support/try-runtime", + "pezsp-runtime/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/xcm-executor/integration-tests/Cargo.toml b/pezkuwi/xcm/xcm-executor/integration-tests/Cargo.toml index 857c22e5..b9d4bd35 100644 --- a/pezkuwi/xcm/xcm-executor/integration-tests/Cargo.toml +++ b/pezkuwi/xcm/xcm-executor/integration-tests/Cargo.toml @@ -39,7 +39,10 @@ std = [ "pezframe-support/std", "pezframe-system/std", "pezkuwi-runtime-teyrchains/std", + "pezkuwi-test-client/std", + "pezkuwi-test-service/std", "pezpallet-sudo/std", + "pezsp-consensus/std", "pezsp-runtime/std", "xcm/std", ] @@ -60,3 +63,23 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-test-client/try-runtime", + "pezkuwi-test-runtime/try-runtime", + "pezkuwi-test-service/try-runtime", + "pezpallet-sudo/try-runtime", + "pezpallet-transaction-payment/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-consensus/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/xcm-pez-simulator/Cargo.toml b/pezkuwi/xcm/xcm-pez-simulator/Cargo.toml index 4404263d..2ae7bbdd 100644 --- a/pezkuwi/xcm/xcm-pez-simulator/Cargo.toml +++ b/pezkuwi/xcm/xcm-pez-simulator/Cargo.toml @@ -44,3 +44,22 @@ runtime-benchmarks = [ "xcm-executor/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "scale-info/std", +] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-core-primitives/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/xcm-pez-simulator/example/Cargo.toml b/pezkuwi/xcm/xcm-pez-simulator/example/Cargo.toml index 6b9cee66..1a939d75 100644 --- a/pezkuwi/xcm/xcm-pez-simulator/example/Cargo.toml +++ b/pezkuwi/xcm/xcm-pez-simulator/example/Cargo.toml @@ -59,3 +59,26 @@ runtime-benchmarks = [ "xcm-pez-simulator/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "tracing/std", + "xcm-pez-simulator/std", +] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", + "pezpallet-balances/try-runtime", + "pezpallet-message-queue/try-runtime", + "pezpallet-uniques/try-runtime", + "pezpallet-xcm/try-runtime", + "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/xcm-pez-simulator/fuzzer/Cargo.toml b/pezkuwi/xcm/xcm-pez-simulator/fuzzer/Cargo.toml index 5d97e038..fc4f9418 100644 --- a/pezkuwi/xcm/xcm-pez-simulator/fuzzer/Cargo.toml +++ b/pezkuwi/xcm/xcm-pez-simulator/fuzzer/Cargo.toml @@ -50,11 +50,17 @@ try-runtime = [ "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", + "pezkuwi-core-primitives/try-runtime", "pezkuwi-runtime-teyrchains/try-runtime", + "pezkuwi-teyrchain-primitives/try-runtime", "pezpallet-balances/try-runtime", "pezpallet-message-queue/try-runtime", "pezpallet-xcm/try-runtime", "pezsp-runtime/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm-pez-simulator/try-runtime", + "xcm/try-runtime", ] runtime-benchmarks = [ "pezframe-executive/runtime-benchmarks", @@ -74,3 +80,10 @@ runtime-benchmarks = [ "xcm-pez-simulator/runtime-benchmarks", "xcm/runtime-benchmarks", ] +std = [ + "xcm-pez-simulator/std", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml b/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml index 34570a08..d31e425a 100644 --- a/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml +++ b/pezkuwi/xcm/xcm-runtime-pezapis/Cargo.toml @@ -65,3 +65,17 @@ runtime-benchmarks = [ # "xcm-pez-simulator/runtime-benchmarks", "xcm/runtime-benchmarks", ] +try-runtime = [ + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", + "pezpallet-assets/try-runtime", + "pezpallet-balances/try-runtime", + "pezsp-api/try-runtime", + "xcm-builder/try-runtime", + "xcm-executor/try-runtime", + "xcm/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/pezkuwi/zombienet-sdk-tests/Cargo.toml b/pezkuwi/zombienet-sdk-tests/Cargo.toml index 8e9e7950..02329588 100644 --- a/pezkuwi/zombienet-sdk-tests/Cargo.toml +++ b/pezkuwi/zombienet-sdk-tests/Cargo.toml @@ -41,12 +41,43 @@ runtime-benchmarks = [ "asset-hub-zagros-runtime/runtime-benchmarks", "pezcumulus-zombienet-sdk-helpers/runtime-benchmarks", "pezkuwi-primitives/runtime-benchmarks", + "pezkuwi-subxt/runtime-benchmarks", + "pezkuwi-zombienet-orchestrator/runtime-benchmarks", + "pezkuwi-zombienet-sdk/runtime-benchmarks", "pezpallet-revive/runtime-benchmarks", "pezsc-executor/runtime-benchmarks", "pezsc-runtime-utilities/runtime-benchmarks", "pezsp-io/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +std = [ + "anyhow/std", + "codec/std", + "ethabi/std", + "log/std", + "pezcumulus-zombienet-sdk-helpers/std", + "pezkuwi-subxt/std", + "pezkuwi-zombienet-orchestrator/std", + "pezkuwi-zombienet-sdk/std", + "pezpallet-revive/std", + "pezsc-runtime-utilities/std", + "pezsp-core/std", + "pezsp-io/std", + "pezsp-runtime/std", + "rand/std", + "serde/std", + "serde_json/std", +] +try-runtime = [ + "asset-hub-zagros-runtime/try-runtime", + "pezkuwi-primitives/try-runtime", + "pezkuwi-subxt/try-runtime", + "pezpallet-revive/try-runtime", + "pezsc-executor/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +with-tracing = [] [build-dependencies] bizinikiwi-build-script-utils = { workspace = true, default-features = true } diff --git a/templates/minimal/node/Cargo.toml b/templates/minimal/node/Cargo.toml index 2f1b1b73..75de17f8 100644 --- a/templates/minimal/node/Cargo.toml +++ b/templates/minimal/node/Cargo.toml @@ -53,3 +53,12 @@ runtime-benchmarks = [ "pezkuwi-sdk/runtime-benchmarks", "pezsp-runtime/runtime-benchmarks", ] +try-runtime = [ + "pez-minimal-template-runtime/try-runtime", + "pezkuwi-sdk/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/templates/minimal/pezpallets/template/Cargo.toml b/templates/minimal/pezpallets/template/Cargo.toml index 2ca02925..a2e9767d 100644 --- a/templates/minimal/pezpallets/template/Cargo.toml +++ b/templates/minimal/pezpallets/template/Cargo.toml @@ -39,3 +39,11 @@ runtime-benchmarks = [ "pezframe-support/runtime-benchmarks", "pezframe-system/runtime-benchmarks", ] +try-runtime = [ + "pezframe-benchmarking?/try-runtime", + "pezframe-support/try-runtime", + "pezframe-system/try-runtime", +] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/templates/minimal/runtime/Cargo.toml b/templates/minimal/runtime/Cargo.toml index 209e6988..5f2caf0c 100644 --- a/templates/minimal/runtime/Cargo.toml +++ b/templates/minimal/runtime/Cargo.toml @@ -51,3 +51,11 @@ runtime-benchmarks = [ "pezkuwi-sdk/runtime-benchmarks", "pezpallet-minimal-template/runtime-benchmarks", ] +try-runtime = [ + "pezkuwi-sdk/try-runtime", + "pezpallet-minimal-template/try-runtime", +] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/templates/solochain/node/Cargo.toml b/templates/solochain/node/Cargo.toml index fb69e9c3..936480cd 100644 --- a/templates/solochain/node/Cargo.toml +++ b/templates/solochain/node/Cargo.toml @@ -69,7 +69,25 @@ bizinikiwi-build-script-utils = { workspace = true, default-features = true } [features] default = ["std"] -std = ["pez-solochain-template-runtime/std"] +std = [ + "bizinikiwi-frame-rpc-system/std", + "pez-solochain-template-runtime/std", + "pezframe-benchmarking-cli/std", + "pezpallet-transaction-payment-rpc/std", + "pezsc-basic-authorship/std", + "pezsc-cli/std", + "pezsc-client-api/std", + "pezsc-consensus-aura/std", + "pezsc-consensus-grandpa/std", + "pezsc-consensus/std", + "pezsc-network/std", + "pezsc-offchain/std", + "pezsc-service/std", + "pezsc-telemetry/std", + "pezsc-transaction-pool-api/std", + "pezsc-transaction-pool/std", + "pezsp-blockchain/std", +] # Storage benchmarking support (optional) storage-benchmark = ["pezframe-benchmarking-cli/storage-benchmark"] # Dependencies that are only required if runtime benchmarking should be build. @@ -107,8 +125,35 @@ runtime-benchmarks = [ # Enable features that allow the runtime to be tried and debugged. Name might be subject to change # in the near future. try-runtime = [ + "bizinikiwi-frame-rpc-system/try-runtime", "pez-solochain-template-runtime/try-runtime", + "pezframe-benchmarking-cli/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-system/try-runtime", + "pezpallet-transaction-payment-rpc/try-runtime", "pezpallet-transaction-payment/try-runtime", + "pezsc-basic-authorship/try-runtime", + "pezsc-cli/try-runtime", + "pezsc-client-api/try-runtime", + "pezsc-consensus-aura/try-runtime", + "pezsc-consensus-grandpa/try-runtime", + "pezsc-consensus/try-runtime", + "pezsc-executor/try-runtime", + "pezsc-network/try-runtime", + "pezsc-offchain/try-runtime", + "pezsc-service/try-runtime", + "pezsc-transaction-pool-api/try-runtime", + "pezsc-transaction-pool/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-blockchain/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-timestamp/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] diff --git a/templates/solochain/pezpallets/template/Cargo.toml b/templates/solochain/pezpallets/template/Cargo.toml index 3a1778d7..b6ca15f1 100644 --- a/templates/solochain/pezpallets/template/Cargo.toml +++ b/templates/solochain/pezpallets/template/Cargo.toml @@ -50,7 +50,12 @@ runtime-benchmarks = [ "pezsp-runtime/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-support/try-runtime", "pezframe-system/try-runtime", "pezsp-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/templates/solochain/runtime/Cargo.toml b/templates/solochain/runtime/Cargo.toml index bef04c46..e455c0ad 100644 --- a/templates/solochain/runtime/Cargo.toml +++ b/templates/solochain/runtime/Cargo.toml @@ -72,6 +72,7 @@ bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "pezframe-benchmarking?/std", "pezframe-executive/std", @@ -138,8 +139,11 @@ runtime-benchmarks = [ "pezsp-version/runtime-benchmarks", ] try-runtime = [ + "pezframe-benchmarking?/try-runtime", "pezframe-executive/try-runtime", + "pezframe-metadata-hash-extension/try-runtime", "pezframe-support/try-runtime", + "pezframe-system-benchmarking?/try-runtime", "pezframe-system/try-runtime", "pezframe-try-runtime/try-runtime", "pezpallet-aura/try-runtime", @@ -148,8 +152,20 @@ try-runtime = [ "pezpallet-sudo/try-runtime", "pezpallet-template/try-runtime", "pezpallet-timestamp/try-runtime", + "pezpallet-transaction-payment-rpc-runtime-api/try-runtime", "pezpallet-transaction-payment/try-runtime", + "pezsp-api/try-runtime", + "pezsp-block-builder/try-runtime", + "pezsp-consensus-aura/try-runtime", + "pezsp-consensus-grandpa/try-runtime", + "pezsp-genesis-builder/try-runtime", + "pezsp-inherents/try-runtime", + "pezsp-keyring/try-runtime", + "pezsp-offchain/try-runtime", "pezsp-runtime/try-runtime", + "pezsp-session/try-runtime", + "pezsp-transaction-pool/try-runtime", + "pezsp-version/try-runtime", ] # Enable the metadata hash generation. @@ -164,3 +180,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # A convenience feature for enabling things when doing a build # for an on-chain release. on-chain-release-build = ["metadata-hash", "pezsp-api/disable-logging"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/templates/teyrchain/node/Cargo.toml b/templates/teyrchain/node/Cargo.toml index 2913889f..3c628917 100644 --- a/templates/teyrchain/node/Cargo.toml +++ b/templates/teyrchain/node/Cargo.toml @@ -44,8 +44,10 @@ pezkuwi-sdk = { workspace = true, features = ["bizinikiwi-build-script-utils"] } default = ["std"] std = [ "log/std", + "pezframe-benchmarking-cli?/std", "pezkuwi-sdk/std", "pezsp-runtime/std", + "prometheus-endpoint/std", "teyrchain-template-runtime/std", ] runtime-benchmarks = [ @@ -56,7 +58,12 @@ runtime-benchmarks = [ ] storage-benchmark = ["pezframe-benchmarking-cli/storage-benchmark"] try-runtime = [ + "pezframe-benchmarking-cli?/try-runtime", "pezkuwi-sdk/try-runtime", "pezsp-runtime/try-runtime", "teyrchain-template-runtime/try-runtime", ] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/templates/teyrchain/pezpallets/template/Cargo.toml b/templates/teyrchain/pezpallets/template/Cargo.toml index a5ff4481..3301dca7 100644 --- a/templates/teyrchain/pezpallets/template/Cargo.toml +++ b/templates/teyrchain/pezpallets/template/Cargo.toml @@ -46,3 +46,6 @@ try-runtime = [ "pezframe-system/try-runtime", "pezframe/try-runtime", ] +serde = [] +experimental = [] +tuples-96 = [] diff --git a/templates/teyrchain/runtime/Cargo.toml b/templates/teyrchain/runtime/Cargo.toml index 63a5c50c..1783f356 100644 --- a/templates/teyrchain/runtime/Cargo.toml +++ b/templates/teyrchain/runtime/Cargo.toml @@ -96,6 +96,7 @@ docify = { workspace = true } default = ["std"] std = [ "bizinikiwi-wasm-builder", + "bizinikiwi-wasm-builder?/std", "codec/std", "log/std", "pezcumulus-pezpallet-teyrchain-system/std", @@ -136,3 +137,7 @@ metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"] # A convenience feature for enabling things when doing a build # for an on-chain release. on-chain-release-build = ["metadata-hash"] +serde = [] +experimental = [] +with-tracing = [] +tuples-96 = [] diff --git a/templates/zombienet/Cargo.toml b/templates/zombienet/Cargo.toml index 9f9da3d2..245792ee 100644 --- a/templates/zombienet/Cargo.toml +++ b/templates/zombienet/Cargo.toml @@ -18,3 +18,10 @@ tokio = { workspace = true, features = ["rt-multi-thread"] } [features] zombienet = [] +std = [ + "anyhow/std", + "pezkuwi-zombienet-sdk/std", +] +runtime-benchmarks = [ + "pezkuwi-zombienet-sdk/runtime-benchmarks", +] 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 diff --git a/vendor/pezkuwi-subxt/codegen/Cargo.toml b/vendor/pezkuwi-subxt/codegen/Cargo.toml index 28b40e7b..698407bc 100644 --- a/vendor/pezkuwi-subxt/codegen/Cargo.toml +++ b/vendor/pezkuwi-subxt/codegen/Cargo.toml @@ -14,6 +14,14 @@ description = "Generate an API for interacting with a Pezkuwi/Bizinikiwi node fr [features] default = [] web = ["getrandom/js"] +std = [ + "codec/std", + "frame-metadata?/std", + "getrandom?/std", + "pezkuwi-subxt-metadata/std", + "scale-info/std", +] +serde = [] [dependencies] codec = { package = "parity-scale-codec", workspace = true, features = ["derive"] } diff --git a/vendor/pezkuwi-subxt/core/Cargo.toml b/vendor/pezkuwi-subxt/core/Cargo.toml index 1a833db5..04c516f3 100644 --- a/vendor/pezkuwi-subxt/core/Cargo.toml +++ b/vendor/pezkuwi-subxt/core/Cargo.toml @@ -25,6 +25,7 @@ std = [ "hex/std", "impl-serde/std", "keccak-hash/std", + "pezkuwi-subxt-macro/std", "pezkuwi-subxt-metadata/std", "pezkuwi-subxt-signer/std", "pezsp-core/std", @@ -36,6 +37,12 @@ std = [ "serde_json/std", "tracing/std", ] +serde = [] +runtime-benchmarks = [ + "pezkuwi-subxt-macro/runtime-benchmarks", + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezsp-keyring/runtime-benchmarks", +] [dependencies] codec = { package = "parity-scale-codec", workspace = true, default-features = false, features = ["derive"] } diff --git a/vendor/pezkuwi-subxt/lightclient/Cargo.toml b/vendor/pezkuwi-subxt/lightclient/Cargo.toml index 37a769de..00e33917 100644 --- a/vendor/pezkuwi-subxt/lightclient/Cargo.toml +++ b/vendor/pezkuwi-subxt/lightclient/Cargo.toml @@ -40,6 +40,16 @@ web = [ "web-sys", "web-time", ] +std = [ + "futures-util/std", + "getrandom?/std", + "serde/std", + "serde_json/std", + "smoldot-light/std", + "smoldot?/std", + "tracing/std", +] +serde = [] [dependencies] futures = { workspace = true, features = ["async-await"] } diff --git a/vendor/pezkuwi-subxt/macro/Cargo.toml b/vendor/pezkuwi-subxt/macro/Cargo.toml index 133434e6..e70e4b47 100644 --- a/vendor/pezkuwi-subxt/macro/Cargo.toml +++ b/vendor/pezkuwi-subxt/macro/Cargo.toml @@ -23,6 +23,23 @@ runtime-wasm-path = [ "pezsp-state-machine", ] runtime-metadata-insecure-url = ["pezkuwi-subxt-utils-fetchmetadata/url"] +std = [ + "codec/std", + "pezkuwi-subxt-codegen/std", + "pezkuwi-subxt-metadata/std", + "pezkuwi-subxt-utils-fetchmetadata/std", + "pezsc-executor-common?/std", + "pezsc-executor?/std", + "pezsp-io?/std", + "pezsp-state-machine?/std", +] +serde = [] +with-tracing = [] +runtime-benchmarks = [ + "pezsc-executor?/runtime-benchmarks", + "pezsp-io?/runtime-benchmarks", + "pezsp-state-machine?/runtime-benchmarks", +] [lib] proc-macro = true diff --git a/vendor/pezkuwi-subxt/metadata/Cargo.toml b/vendor/pezkuwi-subxt/metadata/Cargo.toml index 65b7f780..41814b2b 100644 --- a/vendor/pezkuwi-subxt/metadata/Cargo.toml +++ b/vendor/pezkuwi-subxt/metadata/Cargo.toml @@ -20,6 +20,8 @@ std = [ "codec/std", "frame-decode/std", "frame-metadata/std", + "pezkuwi-subxt-codegen/std", + "pezkuwi-subxt-utils-stripmetadata/std", "pezsp-crypto-hashing/std", "scale-info/std", ] @@ -33,6 +35,7 @@ legacy = [ "frame-metadata/legacy", "std", ] +serde = [] [dependencies] codec = { package = "parity-scale-codec", workspace = true, default-features = false, features = ["derive"] } diff --git a/vendor/pezkuwi-subxt/rpcs/Cargo.toml b/vendor/pezkuwi-subxt/rpcs/Cargo.toml index 964907f4..deebf558 100644 --- a/vendor/pezkuwi-subxt/rpcs/Cargo.toml +++ b/vendor/pezkuwi-subxt/rpcs/Cargo.toml @@ -51,6 +51,22 @@ web = [ "jsonrpsee?/wasm-client", "pezkuwi-subxt-lightclient?/web", ] +std = [ + "codec/std", + "frame-metadata/std", + "getrandom?/std", + "hex/std", + "impl-serde/std", + "pezkuwi-subxt-lightclient?/std", + "primitive-types/std", + "serde/std", + "serde_json/std", + "tracing/std", +] +serde = [] +runtime-benchmarks = [ + "pezkuwi-subxt-core?/runtime-benchmarks", +] [dependencies] codec = { workspace = true } diff --git a/vendor/pezkuwi-subxt/signer/Cargo.toml b/vendor/pezkuwi-subxt/signer/Cargo.toml index 922d3d9f..ba874fbb 100644 --- a/vendor/pezkuwi-subxt/signer/Cargo.toml +++ b/vendor/pezkuwi-subxt/signer/Cargo.toml @@ -68,6 +68,20 @@ subxt = ["dep:pezkuwi-subxt-core"] # The getrandom package is used via schnorrkel. We need to enable the JS # feature on it if compiling for the web. web = ["getrandom/js"] +serde = [ + "bip39/serde", + "codec/serde", + "hex/serde", + "pezsp-core/serde", + "schnorrkel?/serde", + "secp256k1?/serde", + "secrecy/serde", + "zeroize/serde", +] +runtime-benchmarks = [ + "pezkuwi-subxt-core?/runtime-benchmarks", + "pezsp-keyring/runtime-benchmarks", +] [dependencies] bip32 = { workspace = true, features = ["alloc", "secp256k1"], optional = true } diff --git a/vendor/pezkuwi-subxt/subxt/Cargo.toml b/vendor/pezkuwi-subxt/subxt/Cargo.toml index 5fc9b0a4..d98c7630 100644 --- a/vendor/pezkuwi-subxt/subxt/Cargo.toml +++ b/vendor/pezkuwi-subxt/subxt/Cargo.toml @@ -71,6 +71,39 @@ unstable-light-client = [ # Activate this to expose the ability to generate metadata from Wasm runtime files. runtime-wasm-path = ["pezkuwi-subxt-macro/runtime-wasm-path"] +std = [ + "bitvec/std", + "codec/std", + "either/std", + "frame-metadata/std", + "hex/std", + "pezkuwi-subxt-lightclient?/std", + "pezkuwi-subxt-macro/std", + "pezkuwi-subxt-metadata/std", + "pezkuwi-subxt-rpcs/std", + "pezsp-core/std", + "pezsp-crypto-hashing/std", + "pezsp-keyring/std", + "pezsp-runtime/std", + "primitive-types/std", + "scale-info/std", + "serde/std", + "serde_json/std", + "tracing/std", +] +try-runtime = [ + "pezsp-keyring/try-runtime", + "pezsp-runtime/try-runtime", +] +serde = [] +runtime-benchmarks = [ + "pezkuwi-subxt-core/runtime-benchmarks", + "pezkuwi-subxt-macro/runtime-benchmarks", + "pezkuwi-subxt-rpcs/runtime-benchmarks", + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezsp-keyring/runtime-benchmarks", + "pezsp-runtime/runtime-benchmarks", +] [dependencies] async-trait = { workspace = true } diff --git a/vendor/pezkuwi-subxt/utils/fetch-metadata/Cargo.toml b/vendor/pezkuwi-subxt/utils/fetch-metadata/Cargo.toml index 5e9ebb0d..c45980a5 100644 --- a/vendor/pezkuwi-subxt/utils/fetch-metadata/Cargo.toml +++ b/vendor/pezkuwi-subxt/utils/fetch-metadata/Cargo.toml @@ -15,6 +15,12 @@ description = "subxt utility to fetch metadata" [features] url = ["dep:jsonrpsee", "dep:tokio", "dep:url", "frame-metadata"] +std = [ + "codec/std", + "frame-metadata?/std", + "hex/std", +] +serde = [] [dependencies] codec = { package = "parity-scale-codec", workspace = true, features = ["derive", "std"] } diff --git a/vendor/pezkuwi-subxt/utils/strip-metadata/Cargo.toml b/vendor/pezkuwi-subxt/utils/strip-metadata/Cargo.toml index d7ef6ba9..510f4ef4 100644 --- a/vendor/pezkuwi-subxt/utils/strip-metadata/Cargo.toml +++ b/vendor/pezkuwi-subxt/utils/strip-metadata/Cargo.toml @@ -28,3 +28,12 @@ default-features = true [lints] workspace = true + +[features] +std = [ + "codec/std", + "either/std", + "frame-metadata/std", + "scale-info/std", +] +serde = [] diff --git a/vendor/pezkuwi-zombienet-sdk/crates/configuration/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/configuration/Cargo.toml index cd7d9fc3..9746e987 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/configuration/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/configuration/Cargo.toml @@ -26,3 +26,12 @@ url = { workspace = true, features = ["serde"] } # zombienet deps support = { workspace = true } + +[features] +std = [ + "anyhow/std", + "serde/std", + "support/std", + "tracing/std", +] +serde = [] diff --git a/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml index 3772aaa7..fe501490 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/orchestrator/Cargo.toml @@ -47,3 +47,27 @@ support = { workspace = true } [dev-dependencies] lazy_static = { workspace = true } toml = { workspace = true } + +[features] +std = [ + "anyhow/std", + "configuration/std", + "hex/std", + "libsecp256k1/std", + "pezkuwi-subxt/std", + "pezsc-chain-spec/std", + "pezsp-core/std", + "prom-metrics-parser/std", + "provider/std", + "rand/std", + "serde/std", + "sha2/std", + "support/std", + "tracing/std", +] +serde = [] +runtime-benchmarks = [ + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezkuwi-subxt/runtime-benchmarks", + "pezsc-chain-spec/runtime-benchmarks", +] diff --git a/vendor/pezkuwi-zombienet-sdk/crates/prom-metrics-parser/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/prom-metrics-parser/Cargo.toml index ad0e051f..a2f63985 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/prom-metrics-parser/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/prom-metrics-parser/Cargo.toml @@ -16,3 +16,6 @@ keywords = ["metrics", "pezkuwi", "prometheus", "zombienet"] pest = { workspace = true } pest_derive = { workspace = true } thiserror = { workspace = true } + +[features] +std = [] diff --git a/vendor/pezkuwi-zombienet-sdk/crates/provider/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/provider/Cargo.toml index 89157789..e4c219c2 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/provider/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/provider/Cargo.toml @@ -45,3 +45,15 @@ uuid = { workspace = true, features = ["v4"] } # Zomebienet deps configuration = { workspace = true } support = { workspace = true } + +[features] +std = [ + "anyhow/std", + "configuration/std", + "hex/std", + "serde/std", + "sha2/std", + "support/std", + "tracing/std", +] +serde = [] diff --git a/vendor/pezkuwi-zombienet-sdk/crates/sdk/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/sdk/Cargo.toml index fee9d406..9b6afa6c 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/sdk/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/sdk/Cargo.toml @@ -31,3 +31,18 @@ k8s-openapi = { workspace = true, features = ["v1_28"] } kube = { workspace = true, features = ["runtime", "ws"] } serde_json = { workspace = true, default-features = true } tracing-subscriber = { workspace = true } + +[features] +std = [ + "configuration/std", + "orchestrator/std", + "pezkuwi-subxt/std", + "provider/std", + "support/std", +] +serde = [] +runtime-benchmarks = [ + "orchestrator/runtime-benchmarks", + "pezkuwi-subxt-signer/runtime-benchmarks", + "pezkuwi-subxt/runtime-benchmarks", +] diff --git a/vendor/pezkuwi-zombienet-sdk/crates/support/Cargo.toml b/vendor/pezkuwi-zombienet-sdk/crates/support/Cargo.toml index ace1ad47..bd2518cc 100644 --- a/vendor/pezkuwi-zombienet-sdk/crates/support/Cargo.toml +++ b/vendor/pezkuwi-zombienet-sdk/crates/support/Cargo.toml @@ -26,3 +26,11 @@ thiserror = { workspace = true } tokio = { workspace = true, features = ["full"] } tracing = { workspace = true } uuid = { workspace = true, features = ["v4"] } + +[features] +std = [ + "anyhow/std", + "rand/std", + "tracing/std", +] +serde = [] diff --git a/vendor/ss58-registry/Cargo.toml b/vendor/ss58-registry/Cargo.toml index 3f9a63e6..9a87add7 100644 --- a/vendor/ss58-registry/Cargo.toml +++ b/vendor/ss58-registry/Cargo.toml @@ -14,6 +14,7 @@ bench = false [features] default = ["std"] std = ["num-format", "serde/std", "serde_json/std"] +serde = [] [dependencies] num-format = { version = "0.4.3", optional = true }