From 5467db8c5447c559c9223755ed7d2bd7ff1de1b5 Mon Sep 17 00:00:00 2001 From: Tushar Khatri Date: Wed, 17 Jun 2026 16:05:02 +0000 Subject: [PATCH] tracer: reevaluate #[allow] attributes Convert the still-needed #[allow] to #[expect] so it warns if the lint stops firing. Part of #8326. Signed-off-by: Tushar Khatri --- tracer/src/tracer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tracer/src/tracer.rs b/tracer/src/tracer.rs index 47218f6a4..92d8b94d1 100644 --- a/tracer/src/tracer.rs +++ b/tracer/src/tracer.rs @@ -3,7 +3,7 @@ // SPDX-License-Identifier: Apache-2.0 // -#![allow(static_mut_refs)] +#![expect(static_mut_refs)] use std::cell::OnceCell; use std::collections::HashMap;