From f53081291e513bf7df73f0a3a6eca64a6c38295e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=CE=A3rebe=20-=20Romain=20GERARD?= Date: Sat, 25 May 2024 13:52:33 +0200 Subject: [PATCH] lint --- src/stdio.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/stdio.rs b/src/stdio.rs index b597bcc..add7f49 100644 --- a/src/stdio.rs +++ b/src/stdio.rs @@ -33,11 +33,11 @@ pub mod server { pub mod server { use bytes::BytesMut; use log::error; + use parking_lot::Mutex; use scopeguard::guard; use std::io::{Read, Write}; - use std::sync::{Arc, mpsc}; + use std::sync::{mpsc, Arc}; use std::{io, process, thread}; - use parking_lot::Mutex; use tokio::io::{AsyncRead, AsyncReadExt, AsyncWrite}; use tokio::sync::oneshot; use tokio::task::LocalSet;