From eb96b559680e42173c0571b65fcb7fb63afbab62 Mon Sep 17 00:00:00 2001 From: Eskil Queseth Date: Wed, 3 Feb 2021 01:26:02 +0100 Subject: clean up depending on futures --- mumd/src/client.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'mumd/src/client.rs') diff --git a/mumd/src/client.rs b/mumd/src/client.rs index 222e2a7..84c1ea1 100644 --- a/mumd/src/client.rs +++ b/mumd/src/client.rs @@ -2,12 +2,11 @@ use crate::command; use crate::network::{tcp, udp, ConnectionInfo}; use crate::state::State; -use futures_util::join; use ipc_channel::ipc::IpcSender; use mumble_protocol::{Serverbound, control::ControlPacket, crypt::ClientCryptState}; use mumlib::command::{Command, CommandResponse}; use std::sync::Arc; -use tokio::sync::{mpsc, watch, Mutex}; +use tokio::{join, sync::{mpsc, watch, Mutex}}; pub async fn handle( command_receiver: mpsc::UnboundedReceiver<( -- cgit v1.2.1