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
@@ -31,7 +31,7 @@ ark-scale = { features = ["hazmat"], optional = true, workspace = true }
pezsp-runtime-interface = { optional = true, workspace = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"ark-bls12-377-ext?/std",
"ark-bls12-377?/std",
@@ -48,11 +48,11 @@ std = [
"ark-scale?/std",
"pezsp-runtime-interface?/std",
]
common = ["ark-ec", "ark-scale", "pezsp-runtime-interface"]
bls12-377 = ["ark-bls12-377", "ark-bls12-377-ext", "common"]
bls12-381 = ["ark-bls12-381", "ark-bls12-381-ext", "common"]
bw6-761 = ["ark-bw6-761", "ark-bw6-761-ext", "common"]
ed-on-bls12-377 = ["ark-ed-on-bls12-377", "ark-ed-on-bls12-377-ext", "common"]
common = [ "ark-ec", "ark-scale", "pezsp-runtime-interface" ]
bls12-377 = [ "ark-bls12-377", "ark-bls12-377-ext", "common" ]
bls12-381 = [ "ark-bls12-381", "ark-bls12-381-ext", "common" ]
bw6-761 = [ "ark-bw6-761", "ark-bw6-761-ext", "common" ]
ed-on-bls12-377 = [ "ark-ed-on-bls12-377", "ark-ed-on-bls12-377-ext", "common" ]
ed-on-bls12-381-bandersnatch = [
"ark-ed-on-bls12-381-bandersnatch",
"ark-ed-on-bls12-381-bandersnatch-ext",
@@ -36,7 +36,7 @@ criterion = { workspace = true, default-features = true }
# The proc-macro tests are in its own crate
[features]
default = ["std"]
default = [ "std" ]
std = [
"blake2b_simd/std",
"byteorder/std",