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:
+5
-5
@@ -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
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user