diff --git a/zebrad/src/components/inbound.rs b/zebrad/src/components/inbound.rs index 4d4e1f2d..a31dec90 100644 --- a/zebrad/src/components/inbound.rs +++ b/zebrad/src/components/inbound.rs @@ -1,6 +1,5 @@ use std::{ future::Future, - mem, pin::Pin, sync::{Arc, Mutex}, task::{Context, Poll}, @@ -10,7 +9,6 @@ use futures::{ future::{FutureExt, TryFutureExt}, stream::Stream, }; -use mem::swap; use oneshot::error::TryRecvError; use tokio::sync::oneshot; use tower::{buffer::Buffer, timeout::Timeout, util::BoxService, Service, ServiceExt};