diff options
| author | Kapten Z∅∅m <55669224+default-username-852@users.noreply.github.com> | 2021-02-13 22:07:19 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-13 22:07:19 +0100 |
| commit | f31577b69d2fa9c8fa32151083447f8e31936d95 (patch) | |
| tree | 5a9c32c89fed4da1b8284bc70ae28b9beccab39c /mumd/src/client.rs | |
| parent | 89ce7ee42e4d57afaf6b21be46de0bcb98105dcb (diff) | |
| parent | 50e01f0c782ba0f52c832cabff0df966d9dcc803 (diff) | |
| download | mum-f31577b69d2fa9c8fa32151083447f8e31936d95.tar.gz | |
Merge pull request #64 from mum-rs/futures-cleanup
Dependency cleanup
Diffstat (limited to 'mumd/src/client.rs')
| -rw-r--r-- | mumd/src/client.rs | 3 |
1 files changed, 1 insertions, 2 deletions
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<( |
