fix: quick-checks CI failures - taplo format, zepter, umbrella
1. TOML format (taplo): 123 files reformatted using correct config - Command: taplo format --config .config/taplo.toml 2. Zepter feature propagation fix: - pezframe-support: added pezsp-timestamp/try-runtime to try-runtime feature 3. generate-umbrella.py bug fix: - Script crashed when Cargo.toml/src didn't exist in umbrella dir - Added existence checks before deletion
This commit is contained in:
@@ -134,10 +134,7 @@ try-runtime = [
|
||||
"pezsp-transaction-pool?/try-runtime",
|
||||
"pezsp-version?/try-runtime",
|
||||
]
|
||||
experimental = [
|
||||
"pezframe-support/experimental",
|
||||
"pezframe-system/experimental",
|
||||
]
|
||||
experimental = ["pezframe-support/experimental", "pezframe-system/experimental"]
|
||||
runtime = [
|
||||
"pezframe-executive",
|
||||
"pezframe-system-rpc-runtime-api",
|
||||
|
||||
@@ -46,10 +46,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"remote-externalities/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"remote-externalities/std",
|
||||
]
|
||||
std = ["log/std", "remote-externalities/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -32,9 +32,6 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = []
|
||||
try-runtime = [
|
||||
"pezframe-system/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezframe-system/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
experimental = []
|
||||
|
||||
@@ -27,8 +27,5 @@ scale-info = { features = ["derive"], optional = true, workspace = true }
|
||||
[features]
|
||||
default = ["scale"]
|
||||
scale = ["dep:codec", "scale-info"]
|
||||
std = [
|
||||
"codec?/std",
|
||||
"scale-info?/std",
|
||||
]
|
||||
std = ["codec?/std", "scale-info?/std"]
|
||||
serde = []
|
||||
|
||||
@@ -78,10 +78,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-staking/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezsp-npos-elections/std",
|
||||
]
|
||||
std = ["log/std", "pezsp-npos-elections/std"]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -38,10 +38,7 @@ runtime-benchmarks = [
|
||||
"pezframe-support/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"codec/std",
|
||||
"pezframe-election-provider-solution-type/std",
|
||||
]
|
||||
std = ["codec/std", "pezframe-election-provider-solution-type/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -56,10 +56,7 @@ try-runtime = [
|
||||
"pezframe-system/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
experimental = [
|
||||
"pezframe-support/experimental",
|
||||
"pezframe-system/experimental",
|
||||
]
|
||||
experimental = ["pezframe-support/experimental", "pezframe-system/experimental"]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
tuples-96 = []
|
||||
|
||||
@@ -41,10 +41,7 @@ pezsp-version = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
default = ["std"]
|
||||
with-tracing = [
|
||||
"pezsp-io/with-tracing",
|
||||
"pezsp-tracing/with-tracing",
|
||||
]
|
||||
with-tracing = ["pezsp-io/with-tracing", "pezsp-tracing/with-tracing"]
|
||||
std = [
|
||||
"bizinikiwi-test-runtime-client/std",
|
||||
"codec/std",
|
||||
|
||||
@@ -45,9 +45,7 @@ runtime-benchmarks = [
|
||||
"pezsp-io/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
]
|
||||
std = ["log/std"]
|
||||
try-runtime = [
|
||||
"pezframe-support/try-runtime",
|
||||
"pezframe-system/try-runtime",
|
||||
|
||||
@@ -60,10 +60,7 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-staking/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezpallet-staking-reward-curve/std",
|
||||
]
|
||||
std = ["log/std", "pezpallet-staking-reward-curve/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -43,11 +43,7 @@ serde_full = ["codec/serde", "scale-info/serde", "serde", "serde/alloc"]
|
||||
decode = ["scale-info/decode"]
|
||||
|
||||
std = ["codec/std", "decode", "scale-info/std", "serde/std", "serde_full"]
|
||||
serde = [
|
||||
"codec/serde",
|
||||
"dep:serde",
|
||||
"scale-info?/serde",
|
||||
]
|
||||
serde = ["codec/serde", "dep:serde", "scale-info?/serde"]
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
|
||||
@@ -53,10 +53,7 @@ runtime-benchmarks = [
|
||||
"pezkuwi-sdk/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
try-runtime = [
|
||||
"pezkuwi-sdk/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezkuwi-sdk/try-runtime", "pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
experimental = []
|
||||
with-tracing = []
|
||||
|
||||
@@ -48,6 +48,4 @@ std = [
|
||||
]
|
||||
serde = []
|
||||
with-tracing = []
|
||||
runtime-benchmarks = [
|
||||
"pezsp-io?/runtime-benchmarks",
|
||||
]
|
||||
runtime-benchmarks = ["pezsp-io?/runtime-benchmarks"]
|
||||
|
||||
@@ -36,9 +36,5 @@ default = ["scale"]
|
||||
scale = ["dep:codec", "scale-info"]
|
||||
precompiles-sol-interfaces = ["alloy-core"]
|
||||
unstable-hostfn = []
|
||||
std = [
|
||||
"alloy-core?/std",
|
||||
"codec?/std",
|
||||
"scale-info?/std",
|
||||
]
|
||||
std = ["alloy-core?/std", "codec?/std", "scale-info?/std"]
|
||||
serde = []
|
||||
|
||||
@@ -50,10 +50,7 @@ pezpallet-root-offences = { workspace = true, default-features = true }
|
||||
pezpallet-staking = { workspace = true, default-features = true }
|
||||
|
||||
[features]
|
||||
std = [
|
||||
"log/std",
|
||||
"pezframe-system/std",
|
||||
]
|
||||
std = ["log/std", "pezframe-system/std"]
|
||||
try-runtime = [
|
||||
"pezframe-election-provider-support/try-runtime",
|
||||
"pezframe-support/try-runtime",
|
||||
|
||||
@@ -30,7 +30,5 @@ pezsp-runtime = { workspace = true, default-features = true }
|
||||
[features]
|
||||
runtime-benchmarks = ["pezsp-runtime/runtime-benchmarks"]
|
||||
std = []
|
||||
try-runtime = [
|
||||
"pezsp-runtime/try-runtime",
|
||||
]
|
||||
try-runtime = ["pezsp-runtime/try-runtime"]
|
||||
serde = []
|
||||
|
||||
@@ -101,8 +101,8 @@ runtime-benchmarks = [
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsp-staking/runtime-benchmarks",
|
||||
"pezsp-state-machine?/runtime-benchmarks",
|
||||
"pezsp-timestamp/runtime-benchmarks",
|
||||
"pezsp-trie/runtime-benchmarks",
|
||||
"pezsp-timestamp/runtime-benchmarks"
|
||||
]
|
||||
try-runtime = [
|
||||
"pezframe-system/try-runtime",
|
||||
@@ -112,6 +112,7 @@ try-runtime = [
|
||||
"pezsp-inherents/try-runtime",
|
||||
"pezsp-runtime/try-runtime",
|
||||
"pezsp-staking/try-runtime",
|
||||
"pezsp-timestamp/try-runtime",
|
||||
]
|
||||
experimental = ["pezframe-support-procedural/experimental"]
|
||||
# By default some types have documentation, `no-metadata-docs` allows to reduce the documentation
|
||||
|
||||
@@ -61,10 +61,7 @@ std = [
|
||||
"serde/std",
|
||||
"test-pezpallet/std",
|
||||
]
|
||||
experimental = [
|
||||
"pezframe-support/experimental",
|
||||
"pezframe-system/experimental",
|
||||
]
|
||||
experimental = ["pezframe-support/experimental", "pezframe-system/experimental"]
|
||||
runtime-benchmarks = [
|
||||
"pezframe-benchmarking/runtime-benchmarks",
|
||||
"pezframe-executive/runtime-benchmarks",
|
||||
|
||||
@@ -38,10 +38,7 @@ runtime-benchmarks = [
|
||||
"pezsp-blockchain/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
std = [
|
||||
"pezsp-blockchain/std",
|
||||
"pezsp-rpc/std",
|
||||
]
|
||||
std = ["pezsp-blockchain/std", "pezsp-rpc/std"]
|
||||
try-runtime = [
|
||||
"pezpallet-transaction-payment-rpc-runtime-api/try-runtime",
|
||||
"pezsp-api/try-runtime",
|
||||
|
||||
Reference in New Issue
Block a user