File tree Expand file tree Collapse file tree 3 files changed +0
-6
lines changed
Expand file tree Collapse file tree 3 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ anyhow = "1.0.71"
3636assert-json-diff = " 2.0.2"
3737async-broadcast = " 0.7.0"
3838async-stream = " 0.3.5"
39- async-trait = " 0.1.64"
4039backon = " 1.3"
4140base64 = " 0.22.1"
4241bytes = " 1.1.0"
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ json-patch.workspace = true
4343serde_json.workspace = true
4444thiserror.workspace = true
4545backon.workspace = true
46- async-trait.workspace = true
4746hashbrown.workspace = true
4847k8s-openapi.workspace = true
4948async-broadcast.workspace = true
Original file line number Diff line number Diff line change 44
55use crate :: utils:: { Backoff , ResetTimerBackoff } ;
66
7- use async_trait:: async_trait;
87use backon:: BackoffBuilder ;
98use educe:: Educe ;
109use futures:: { stream:: BoxStream , Stream , StreamExt } ;
@@ -164,7 +163,6 @@ enum State<K> {
164163
165164/// Used to control whether the watcher receives the full object, or only the
166165/// metadata
167- #[ async_trait]
168166trait ApiMode {
169167 type Value : Clone ;
170168
@@ -436,7 +434,6 @@ impl Config {
436434 }
437435}
438436
439- #[ async_trait]
440437impl < K > ApiMode for FullObject < ' _ , K >
441438where
442439 K : Clone + Debug + DeserializeOwned + Send + ' static ,
@@ -462,7 +459,6 @@ struct MetaOnly<'a, K> {
462459 api : & ' a Api < K > ,
463460}
464461
465- #[ async_trait]
466462impl < K > ApiMode for MetaOnly < ' _ , K >
467463where
468464 K : Clone + Debug + DeserializeOwned + Send + ' static ,
You can’t perform that action at this time.
0 commit comments