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
@@ -90,7 +90,7 @@ teyrchains-runtimes-test-utils = { workspace = true }
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"bizinikiwi-wasm-builder",
"codec/std",
@@ -243,12 +243,12 @@ try-runtime = [
"teyrchain-info/try-runtime",
"teyrchains-common/try-runtime",
]
fast-runtime = ["pezkuwichain-runtime-constants/fast-runtime"]
fast-runtime = [ "pezkuwichain-runtime-constants/fast-runtime" ]
# Enable the metadata hash generation in the wasm builder.
metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"]
metadata-hash = [ "bizinikiwi-wasm-builder/metadata-hash" ]
# A feature that should be enabled when the runtime should be built for on-chain
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
# to make it smaller, like logging for example.
on-chain-release-build = ["metadata-hash"]
on-chain-release-build = [ "metadata-hash" ]
@@ -91,7 +91,7 @@ teyrchains-runtimes-test-utils = { workspace = true, default-features = true }
bizinikiwi-wasm-builder = { optional = true, workspace = true, default-features = true }
[features]
default = ["std"]
default = [ "std" ]
std = [
"bizinikiwi-wasm-builder",
"codec/std",
@@ -243,12 +243,12 @@ try-runtime = [
"teyrchain-info/try-runtime",
"teyrchains-common/try-runtime",
]
fast-runtime = ["zagros-runtime-constants/fast-runtime"]
fast-runtime = [ "zagros-runtime-constants/fast-runtime" ]
# Enable the metadata hash generation in the wasm builder.
metadata-hash = ["bizinikiwi-wasm-builder/metadata-hash"]
metadata-hash = [ "bizinikiwi-wasm-builder/metadata-hash" ]
# A feature that should be enabled when the runtime should be built for on-chain
# deployment. This will disable stuff that shouldn't be part of the on-chain wasm
# to make it smaller, like logging for example.
on-chain-release-build = ["metadata-hash"]
on-chain-release-build = [ "metadata-hash" ]