FAZ 1 Complete: Workspace compile fixes, warning cleanup, version bumps

- Fixed is_using_frame_crate() macro to check for pezframe/pezkuwi_sdk
- Removed disable_pezframe_system_supertrait_check temporary bypasses
- Feature-gated storage-benchmark and teyrchain-benchmarks code
- Fixed dead_code warnings with underscore prefix (_Header)
- Removed unused imports and shadowing use statements
- Version bumps: procedural-tools 10.0.1, benchmarking-cli 32.0.1,
  docs 0.0.2, minimal-runtime 0.0.1, yet-another-teyrchain 0.6.1, umbrella 0.1.2
- Updated MAINNET_ROADMAP.md with FAZ 1 completion status
This commit is contained in:
2026-01-02 11:41:09 +03:00
parent 76ba7dbf2f
commit cf463fe8ee
520 changed files with 4113 additions and 4524 deletions
@@ -17,9 +17,9 @@ log = { workspace = true }
pezkuwi-primitives = { workspace = true, default-features = true }
pezcumulus-primitives-core = { workspace = true, default-features = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "time"] }
zombienet-sdk = { workspace = true }
pezkuwi-zombienet-sdk = { workspace = true }
futures = { workspace = true }
zombienet-configuration = { workspace = true }
pezkuwi-zombienet-configuration = { workspace = true }
[features]
runtime-benchmarks = [
@@ -16,7 +16,7 @@ use tokio::{
join,
time::{sleep, Duration},
};
use zombienet_sdk::subxt::{
use pezkuwi_zombienet_sdk::subxt::{
self,
blocks::Block,
config::{bizinikiwi::DigestItem, pezkuwi::PezkuwiExtrinsicParamsBuilder},
@@ -27,12 +27,12 @@ use zombienet_sdk::subxt::{
OnlineClient, PezkuwiConfig,
};
use zombienet_sdk::{
use pezkuwi_zombienet_sdk::{
tx_helper::{ChainUpgrade, RuntimeUpgradeOptions},
LocalFileSystem, Network, NetworkNode,
};
use zombienet_configuration::types::AssetLocation;
use pezkuwi_zombienet_configuration::types::AssetLocation;
// Maximum number of blocks to wait for a session change.
// If it does not arrive for whatever reason, we should not wait forever.
@@ -47,7 +47,7 @@ pub fn create_assign_core_call(core_and_para: &[(u32, u32)]) -> DynamicPayload {
});
}
zombienet_sdk::subxt::tx::dynamic(
pezkuwi_zombienet_sdk::subxt::tx::dynamic(
"Sudo",
"sudo",
vec![value! {
@@ -158,7 +158,7 @@ pub async fn assert_para_throughput(
///
/// The session change is detected by inspecting the events in the block.
pub async fn wait_for_first_session_change(
blocks_sub: &mut zombienet_sdk::subxt::backend::StreamOfResults<
blocks_sub: &mut pezkuwi_zombienet_sdk::subxt::backend::StreamOfResults<
Block<PezkuwiConfig, OnlineClient<PezkuwiConfig>>,
>,
) -> Result<(), anyhow::Error> {
@@ -169,7 +169,7 @@ pub async fn wait_for_first_session_change(
///
/// The session change is detected by inspecting the events in the block.
pub async fn wait_for_nth_session_change(
blocks_sub: &mut zombienet_sdk::subxt::backend::StreamOfResults<
blocks_sub: &mut pezkuwi_zombienet_sdk::subxt::backend::StreamOfResults<
Block<PezkuwiConfig, OnlineClient<PezkuwiConfig>>,
>,
mut sessions_to_wait: u32,
@@ -476,7 +476,7 @@ pub async fn assign_cores(
let res = submit_extrinsic_and_wait_for_finalization_success_with_timeout(
&client,
&assign_cores_call,
&zombienet_sdk::subxt_signer::sr25519::dev::alice(),
&pezkuwi_zombienet_sdk::subxt_signer::sr25519::dev::alice(),
60u64,
)
.await;