From 774f909c9b899d7463a2f0d9d2a869a82028e309 Mon Sep 17 00:00:00 2001 From: SajjadPourali Date: Wed, 27 Mar 2024 23:08:35 -0400 Subject: [PATCH] Fix lint error --- src/stream/tcp.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/stream/tcp.rs b/src/stream/tcp.rs index e5fa5d0..8c396ad 100644 --- a/src/stream/tcp.rs +++ b/src/stream/tcp.rs @@ -19,10 +19,8 @@ use std::{ time::Duration, }; use tokio::{ - io::{AsyncRead, AsyncWrite, AsyncWriteExt}, - runtime::Handle, + io::{AsyncRead, AsyncWrite}, sync::mpsc::{self, UnboundedReceiver, UnboundedSender}, - task, }; use log::{trace, warn};