Skip to content

Commit

Permalink
Allow Sealed trait to be unused
Browse files Browse the repository at this point in the history
  • Loading branch information
AlyoshaVasilieva committed May 25, 2024
1 parent bb0d1b2 commit 8a4fea3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tower-http/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,6 @@ pub enum LatencyUnit {
pub type BoxError = Box<dyn std::error::Error + Send + Sync>;

mod sealed {
#[allow(unreachable_pub)]
#[allow(unreachable_pub, unused)]
pub trait Sealed<T> {}
}

0 comments on commit 8a4fea3

Please sign in to comment.