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:
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -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 = []
|
||||
|
||||
@@ -28,3 +28,8 @@ tokio-test = { workspace = true }
|
||||
[features]
|
||||
default = ["metered"]
|
||||
metered = []
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsp-arithmetic/std",
|
||||
]
|
||||
serde = []
|
||||
|
||||
Reference in New Issue
Block a user