fix(ci): resolve all quick-checks failures

- Remove missing cli crate from workspace members
- Fix TOML array syntax errors in pvf and benchmarking-cli Cargo.toml
- Fix Rust import ordering with cargo fmt
- Fix feature propagation with zepter (try-runtime, runtime-benchmarks, std)
This commit is contained in:
2026-01-04 17:21:57 +03:00
parent 933f08e282
commit 479010094e
574 changed files with 1465 additions and 2447 deletions
@@ -24,7 +24,7 @@ scale-info = { features = ["derive"], workspace = true }
serde = { optional = true, features = ["alloc", "derive"], workspace = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"codec/std",
"full_crypto",
@@ -35,7 +35,7 @@ std = [
]
# Serde support without relying on std features.
serde = ["dep:serde", "pezsp-core/serde", "scale-info/serde"]
serde = [ "dep:serde", "pezsp-core/serde", "scale-info/serde" ]
# This feature enables all crypto primitives for `no_std` builds like microcontrollers
# or Intel SGX.
@@ -51,7 +51,10 @@ full_crypto = [
# This feature adds BLS crypto primitives.
# It should not be used in production since the implementation and interface may still
# be subject to significant changes.
bls-experimental = ["pezsp-core/bls-experimental", "pezsp-io/bls-experimental"]
bls-experimental = [
"pezsp-core/bls-experimental",
"pezsp-io/bls-experimental",
]
# This feature adds Bandersnatch crypto primitives.
# It should not be used in production since the implementation and interface may still
@@ -25,7 +25,7 @@ pezsp-keystore = { workspace = true }
pezsp-tracing = { workspace = true, default-features = true }
[features]
bls-experimental = ["bizinikiwi-test-runtime-client/bls-experimental"]
bls-experimental = [ "bizinikiwi-test-runtime-client/bls-experimental" ]
runtime-benchmarks = [
"bizinikiwi-test-runtime-client/runtime-benchmarks",
"pezsp-api/runtime-benchmarks",