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:
@@ -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 = []
|
||||
|
||||
Reference in New Issue
Block a user