fix: CI quick-checks - fmt, taplo, umbrella version

This commit is contained in:
2026-01-07 17:19:27 +03:00
parent 5a48ce4498
commit f68c21c77a
38 changed files with 120 additions and 2984 deletions
@@ -24,8 +24,8 @@ clap = { features = ["derive"], workspace = true }
codec = { workspace = true, default-features = true }
comfy-table = { workspace = true }
env_filter = { workspace = true }
# frame-storage-access-test-runtime moved to integration tests to break circular dependency
gethostname = { workspace = true }
pezframe-storage-access-test-runtime = { workspace = true, optional = true }
handlebars = { workspace = true }
itertools = { workspace = true }
linked-hash-map = { workspace = true }
@@ -81,22 +81,21 @@ thiserror = { workspace = true }
thousands = { workspace = true }
[dev-dependencies]
# bizinikiwi-test-runtime = { workspace = true, default-features = true }
# pezcumulus-test-runtime = { workspace = true, default-features = true }
# zagros-runtime = { workspace = true, default-features = true }
bizinikiwi-test-runtime = { workspace = true, default-features = true }
pezcumulus-test-runtime = { workspace = true, default-features = true }
zagros-runtime = { workspace = true, default-features = true }
[features]
default = []
# Enable storage benchmark command (requires frame-storage-access-test-runtime)
storage-benchmark = []
# Enable storage benchmark command
storage-benchmark = ["pezframe-storage-access-test-runtime"]
# Enable teyrchain/parachain benchmark inherent data
# Note: requires pezcumulus-client-teyrchain-inherent with mock feature (needs pezcumulus-test-relay-sproof-builder)
teyrchain-benchmarks = []
teyrchain-benchmarks = ["pezcumulus-client-teyrchain-inherent/mock"]
runtime-benchmarks = [
# "bizinikiwi-test-runtime/runtime-benchmarks",
"bizinikiwi-test-runtime/runtime-benchmarks",
"pezcumulus-client-teyrchain-inherent/runtime-benchmarks",
"pezcumulus-primitives-proof-size-hostfunction/runtime-benchmarks",
# "pezcumulus-test-runtime/runtime-benchmarks",
"pezcumulus-test-runtime/runtime-benchmarks",
"pezframe-benchmarking/runtime-benchmarks",
"pezframe-support/runtime-benchmarks",
"pezframe-system/runtime-benchmarks",
@@ -127,7 +126,7 @@ runtime-benchmarks = [
"pezsp-transaction-pool/runtime-benchmarks",
"pezsp-trie/runtime-benchmarks",
"pezsp-version/runtime-benchmarks",
# "zagros-runtime/runtime-benchmarks", # Not a dependency of this crate
"zagros-runtime/runtime-benchmarks",
]
rocksdb = ["pezsc-cli/rocksdb", "pezsc-client-db/rocksdb"]
std = [
@@ -28,7 +28,7 @@ pub(crate) const MAX_BATCH_SIZE_FOR_BLOCK_VALIDATION: usize = 10_000;
pub(crate) fn get_wasm_module() -> Box<dyn pezsc_executor_common::wasm_runtime::WasmModule> {
let blob = pezsc_executor_common::runtime_blob::RuntimeBlob::uncompress_if_needed(
frame_storage_access_test_runtime::WASM_BINARY
pezframe_storage_access_test_runtime::WASM_BINARY
.expect("You need to build the WASM binaries to run the benchmark!"),
)
.expect("Failed to create runtime blob");
@@ -16,8 +16,8 @@
// limitations under the License.
use codec::Encode;
use frame_storage_access_test_runtime::StorageAccessParams;
use log::{debug, info};
use pezframe_storage_access_test_runtime::StorageAccessParams;
use pezsc_cli::{Error, Result};
use pezsc_client_api::{Backend as ClientBackend, StorageProvider, UsageProvider};
use pezsp_api::CallApiAt;
@@ -16,8 +16,8 @@
// limitations under the License.
use codec::Encode;
use frame_storage_access_test_runtime::StorageAccessParams;
use log::{debug, info, trace, warn};
use pezframe_storage_access_test_runtime::StorageAccessParams;
use pezsc_cli::Result;
use pezsc_client_api::{Backend as ClientBackend, StorageProvider, UsageProvider};
use pezsc_client_db::{DbHash, DbState, DbStateBuilder};
@@ -1,5 +1,5 @@
[package]
name = "frame-storage-access-test-runtime"
name = "pezframe-storage-access-test-runtime"
description = "A runtime for testing storage access on block validation"
version = "0.1.0"
authors.workspace = true