From 22e526fd2a960fed497626efd91077e1a8f1a6cd Mon Sep 17 00:00:00 2001 From: asonix Date: Thu, 1 Jun 2023 17:33:43 -0500 Subject: [PATCH] Allow type underscore (probably in instrument) --- src/process.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/process.rs b/src/process.rs index 4fbf452..d2798e3 100644 --- a/src/process.rs +++ b/src/process.rs @@ -99,6 +99,8 @@ impl Process { }) } + #[allow(unknown_lints)] + #[allow(clippy::let_with_type_underscore)] #[tracing::instrument(level = "trace", skip_all)] fn spawn_fn(mut self, f: F) -> impl AsyncRead + Unpin where