diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-03-11 23:48:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 23:48:00 -0400 |
commit | ad6b00a2bf061a90c72737d0ecc4a58bb0a89550 (patch) | |
tree | daf342fa1d0dcde202a116ac010f310ba4321fa9 /ext/node/ops/ipc.rs | |
parent | c38c14f51f2edc8d25f349de52fc1268b97b59b2 (diff) |
chore: enable clippy unused_async rule (#22834)
Diffstat (limited to 'ext/node/ops/ipc.rs')
-rw-r--r-- | ext/node/ops/ipc.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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<IpcJsonStreamResource>, tokio::net::UnixStream) { let (a, b) = tokio::net::UnixStream::pair().unwrap(); |