From af7a83bc9f8e04216aba11bbcf063e2ee27519b7 Mon Sep 17 00:00:00 2001 From: JESS IZEN Date: Tue, 10 Dec 2024 19:20:42 +0000 Subject: [PATCH] run rustfmt --- tower/src/util/boxed/mod.rs | 3 ++- tower/src/util/mod.rs | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tower/src/util/boxed/mod.rs b/tower/src/util/boxed/mod.rs index 4fd87d568..7da5d63cb 100644 --- a/tower/src/util/boxed/mod.rs +++ b/tower/src/util/boxed/mod.rs @@ -6,5 +6,6 @@ mod unsync; #[allow(unreachable_pub)] // https://github.com/rust-lang/rust/issues/57411 pub use self::{ - layer::BoxLayer, layer_clone::BoxCloneServiceLayer, layer_clone_sync::BoxCloneSyncServiceLayer, sync::BoxService, unsync::UnsyncBoxService, + layer::BoxLayer, layer_clone::BoxCloneServiceLayer, layer_clone_sync::BoxCloneSyncServiceLayer, + sync::BoxService, unsync::UnsyncBoxService, }; diff --git a/tower/src/util/mod.rs b/tower/src/util/mod.rs index 4021f22a4..4c56de813 100644 --- a/tower/src/util/mod.rs +++ b/tower/src/util/mod.rs @@ -24,7 +24,9 @@ pub mod rng; pub use self::{ and_then::{AndThen, AndThenLayer}, - boxed::{BoxCloneServiceLayer, BoxCloneSyncServiceLayer, BoxLayer, BoxService, UnsyncBoxService}, + boxed::{ + BoxCloneServiceLayer, BoxCloneSyncServiceLayer, BoxLayer, BoxService, UnsyncBoxService, + }, boxed_clone::BoxCloneService, boxed_clone_sync::BoxCloneSyncService, either::Either,