fix: comprehensive feature propagation and dep:serde fixes

- Fix serde optional dependency issues by adding dep:serde to serde features (24 crates)
- Run zepter to propagate runtime-benchmarks, std, try-runtime, serde, experimental, with-tracing, tuples-96 features
- Regenerate umbrella crate with proper feature propagation
- Format all TOML files with taplo

This resolves check-umbrella and check-zepter CI failures.
This commit is contained in:
2026-01-04 20:37:14 +03:00
parent a45e5ae5ec
commit bd2d665c4e
588 changed files with 10228 additions and 28 deletions
Generated
+19
View File
@@ -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",
]
+26
View File
@@ -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 = []
+215
View File
@@ -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 = []
+16
View File
@@ -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 = []
@@ -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 = []
+49
View File
@@ -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 = []
+8 -1
View File
@@ -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 = []
+42
View File
@@ -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 = []
@@ -50,3 +50,7 @@ runtime-benchmarks = [
# "bizinikiwi-test-runtime/runtime-benchmarks",
"pezsc-chain-spec/runtime-benchmarks",
]
std = [
"pezsc-chain-spec/std",
]
with-tracing = []
@@ -26,3 +26,6 @@ pezsc-cli = { workspace = true, default-features = true }
[features]
runtime-benchmarks = ["pezsc-cli/runtime-benchmarks"]
std = [
"pezsc-cli/std",
]
+6
View File
@@ -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 = []
+21
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
+24
View File
@@ -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 = []
+31
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
+18
View File
@@ -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 = []
+15
View File
@@ -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 = []
@@ -26,3 +26,7 @@ wasm-instrument = { workspace = true, default-features = true }
[features]
default = []
std = [
"pezsc-allocator/std",
"polkavm/std",
]
@@ -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 = []
@@ -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 = []
@@ -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 = []
+15
View File
@@ -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 = []
+5
View File
@@ -45,3 +45,8 @@ bandersnatch-experimental = [
"pezsp-core/bandersnatch-experimental",
"pezsp-keystore/bandersnatch-experimental",
]
std = []
serde = []
runtime-benchmarks = [
"pezsp-application-crypto/runtime-benchmarks",
]
@@ -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 = []
@@ -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 = []
+18
View File
@@ -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 = []
@@ -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 = []
+26
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
+30
View File
@@ -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 = []
+33
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
+28
View File
@@ -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 = []
@@ -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 = []
+15
View File
@@ -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 = []
+7
View File
@@ -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 = []
+36
View File
@@ -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 = []
+38
View File
@@ -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 = []
@@ -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 = []
+59
View File
@@ -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 = []
+33
View File
@@ -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 = []
+6
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
+9
View File
@@ -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 = []
+7
View File
@@ -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 = []
+14
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
+5
View File
@@ -28,3 +28,8 @@ tokio-test = { workspace = true }
[features]
default = ["metered"]
metered = []
std = [
"log/std",
"pezsp-arithmetic/std",
]
serde = []
@@ -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",
]
+20 -1
View File
@@ -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 = []
+5
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -53,3 +53,6 @@ try-runtime = [
"pezpallet-assets/try-runtime",
"pezpallet-balances/try-runtime",
]
serde = []
experimental = []
tuples-96 = []
@@ -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 = []
+5
View File
@@ -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 = []
@@ -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 = []
@@ -48,3 +48,6 @@ runtime-benchmarks = [
"pezframe/runtime-benchmarks",
"pezpallet-balances/runtime-benchmarks",
]
serde = []
experimental = []
tuples-96 = []
+6
View File
@@ -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 = []
@@ -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 = []
@@ -50,3 +50,7 @@ runtime-benchmarks = [
"pezsp-io/runtime-benchmarks",
"pezsp-runtime/runtime-benchmarks",
]
serde = []
experimental = []
with-tracing = []
tuples-96 = []
+11
View File
@@ -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 = []
+5
View File
@@ -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 = []
@@ -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",
]
@@ -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 = []
+5
View File
@@ -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 = []
+20
View File
@@ -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 = []
+18
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
+5
View File
@@ -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 = []
+6
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
+21
View File
@@ -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 = []
@@ -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 = []
@@ -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 = []
@@ -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 = []

Some files were not shown because too many files have changed in this diff Show More