diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-02-03 01:26:02 +0100 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-02-03 01:26:02 +0100 |
| commit | eb96b559680e42173c0571b65fcb7fb63afbab62 (patch) | |
| tree | 59ed522612fbd16a2aa6541e9cd785f78d691925 /mumd/src/main.rs | |
| parent | 154a2930b3bbe5ede06648c3a10b8fa4904277f4 (diff) | |
| download | mum-eb96b559680e42173c0571b65fcb7fb63afbab62.tar.gz | |
clean up depending on futures
Diffstat (limited to 'mumd/src/main.rs')
| -rw-r--r-- | mumd/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/mumd/src/main.rs b/mumd/src/main.rs index 67481f9..0526930 100644 --- a/mumd/src/main.rs +++ b/mumd/src/main.rs @@ -5,13 +5,12 @@ mod network; mod notify; mod state; -use futures::join; use ipc_channel::ipc::{self, IpcOneShotServer, IpcSender}; use log::*; use mumlib::command::{Command, CommandResponse}; use mumlib::setup_logger; use std::fs; -use tokio::sync::mpsc; +use tokio::{join, sync::mpsc}; use tokio::task::spawn_blocking; #[tokio::main] |
