Skip to content

Commit

Permalink
fix: Change import definitions according to rustfmt +nightly
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Gil <pando855@gmail.com>
  • Loading branch information
pando85 committed Dec 6, 2024
1 parent 38ed567 commit dd650b2
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions kube-runtime/src/events.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
//! Publishes events for objects for kubernetes >= 1.19
use std::hash::{Hash, Hasher};
use std::{collections::HashMap, sync::Arc};
use std::{
collections::HashMap,
hash::{Hash, Hasher},
sync::Arc,
};

use k8s_openapi::{
api::{
Expand All @@ -10,10 +13,9 @@ use k8s_openapi::{
apimachinery::pkg::apis::meta::v1::{MicroTime, ObjectMeta},
chrono::{Duration, Utc},
};
use kube_client::ResourceExt;
use kube_client::{
api::{Api, Patch, PatchParams, PostParams},
Client,
Client, ResourceExt,
};
use tokio::sync::RwLock;

Expand Down

0 comments on commit dd650b2

Please sign in to comment.