diff options
| author | Eskil Queseth <eskilq@kth.se> | 2021-02-03 01:37:28 +0100 |
|---|---|---|
| committer | Eskil Queseth <eskilq@kth.se> | 2021-02-03 01:37:28 +0100 |
| commit | 50e01f0c782ba0f52c832cabff0df966d9dcc803 (patch) | |
| tree | 45ce7ced378c20e8df11c2563f048f980e7c5437 /mumd | |
| parent | bca8daad1f5945f2da9529bc53a24e90d99e0608 (diff) | |
| download | mum-50e01f0c782ba0f52c832cabff0df966d9dcc803.tar.gz | |
minor cleanup
Diffstat (limited to 'mumd')
| -rw-r--r-- | mumd/Cargo.toml | 2 | ||||
| -rw-r--r-- | mumd/src/network.rs | 2 |
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 => (), |
