fix: Add workspace dependencies for vendored pezkuwi-subxt and zombienet-sdk

- Add all missing workspace dependencies required by vendor crates
- Include external crates: scale-*, sp-core, sc-chain-spec, kube, etc.
- Include subxt dependencies: smoldot, web-time, wasm-bindgen, etc.
- Regenerate umbrella crate with updated dependencies
- Apply zepter std feature propagation fixes to vendor crates
- Apply rustfmt formatting to vendor and pezframe files
This commit is contained in:
2025-12-23 00:18:55 +03:00
parent 70ddb6516f
commit 49485a882c
133 changed files with 1070 additions and 697 deletions
+5 -5
View File
@@ -7,8 +7,8 @@
//! methods exposed here.
use crate::{
client::{rpc_params, RpcClient, RpcSubscription},
Error, Hash, RpcConfig,
client::{RpcClient, RpcSubscription, rpc_params},
};
use derive_where::derive_where;
use futures::{Stream, StreamExt};
@@ -891,10 +891,10 @@ impl<H: Hash> Stream for TransactionSubscription<H> {
if let Poll::Ready(Some(Ok(res))) = &res {
if matches!(
res,
TransactionStatus::Dropped { .. } |
TransactionStatus::Error { .. } |
TransactionStatus::Invalid { .. } |
TransactionStatus::Finalized { .. }
TransactionStatus::Dropped { .. }
| TransactionStatus::Error { .. }
| TransactionStatus::Invalid { .. }
| TransactionStatus::Finalized { .. }
) {
// No more events will occur after these ones.
self.done = true
+1 -1
View File
@@ -5,8 +5,8 @@
//! An interface to call the raw legacy RPC methods.
use crate::{
client::{rpc_params, RpcClient, RpcSubscription},
Error, RpcConfig,
client::{RpcClient, RpcSubscription, rpc_params},
};
use codec::Decode;
use derive_where::derive_where;