aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mumd/Cargo.toml2
-rw-r--r--mumd/src/network.rs2
2 files changed, 1 insertions, 3 deletions
diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml
index 0a102c4..57fefed 100644
--- a/mumd/Cargo.toml
+++ b/mumd/Cargo.toml
@@ -26,7 +26,7 @@ dasp_frame = "0.11"
dasp_sample = "0.11"
dasp_ring_buffer = "0.11"
futures-util = { version = "0.3", features = ["sink"]}
-futures-channel = "0.3.12"
+futures-channel = "0.3"
hound = "3.4"
ipc-channel = "0.14"
log = "0.4"
diff --git a/mumd/src/network.rs b/mumd/src/network.rs
index 7950dc7..38a97ce 100644
--- a/mumd/src/network.rs
+++ b/mumd/src/network.rs
@@ -53,9 +53,7 @@ async fn run_until<F>(
let main_block = async {
let rx = rx.fuse();
- //pin_mut!(rx);
let fut = fut.fuse();
- //pin_mut!(fut);
select! {
_ = fut => (),
_ = rx => (),