From 8a4fea3ba0e0b8afd0e764aa10b6bd214bdd2454 Mon Sep 17 00:00:00 2001 From: Malloc Voidstar <1284317+AlyoshaVasilieva@users.noreply.github.com> Date: Sat, 25 May 2024 15:36:54 -0700 Subject: [PATCH] Allow Sealed trait to be unused --- tower-http/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tower-http/src/lib.rs b/tower-http/src/lib.rs index edffc511..8d254e1d 100644 --- a/tower-http/src/lib.rs +++ b/tower-http/src/lib.rs @@ -372,6 +372,6 @@ pub enum LatencyUnit { pub type BoxError = Box; mod sealed { - #[allow(unreachable_pub)] + #[allow(unreachable_pub, unused)] pub trait Sealed {} }