From ad6b00a2bf061a90c72737d0ecc4a58bb0a89550 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 11 Mar 2024 23:48:00 -0400 Subject: chore: enable clippy unused_async rule (#22834) --- ext/node/ops/ipc.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/node') diff --git a/ext/node/ops/ipc.rs b/ext/node/ops/ipc.rs index 3cdb569ab..dc0c086c1 100644 --- a/ext/node/ops/ipc.rs +++ b/ext/node/ops/ipc.rs @@ -408,6 +408,7 @@ mod impl_ { use deno_core::RcRef; use std::rc::Rc; + #[allow(clippy::unused_async)] #[cfg(unix)] pub async fn pair() -> (Rc, tokio::net::UnixStream) { let (a, b) = tokio::net::UnixStream::pair().unwrap(); -- cgit v1.2.3