aboutsummaryrefslogtreecommitdiffstats
path: root/mumd
diff options
context:
space:
mode:
authorEskil Queseth <eskilq@kth.se>2021-06-13 20:56:18 +0200
committerEskil Queseth <eskilq@kth.se>2021-06-13 20:56:18 +0200
commite21cbbb8bb35644461aad351458bfbfd3d047954 (patch)
treedec70947077365fb2119081abe85ae832b5ca244 /mumd
parent492efc8b0dd5087991b580787ad75f0d3b57e7e7 (diff)
downloadmum-e21cbbb8bb35644461aad351458bfbfd3d047954.tar.gz
add unused_crate_dependencies lint
Diffstat (limited to 'mumd')
-rw-r--r--mumd/Cargo.toml5
-rw-r--r--mumd/src/main.rs1
2 files changed, 1 insertions, 5 deletions
diff --git a/mumd/Cargo.toml b/mumd/Cargo.toml
index 1e8e63f..f6474b7 100644
--- a/mumd/Cargo.toml
+++ b/mumd/Cargo.toml
@@ -23,22 +23,17 @@ cpal = "0.13"
bytes = "1.0"
dasp_interpolate = { version = "0.11", features = ["linear"] }
dasp_signal = "0.11"
-dasp_frame = "0.11"
-dasp_sample = "0.11"
-dasp_ring_buffer = "0.11"
futures-util = { version = "0.3", features = ["sink"]}
futures-channel = "0.3"
hound = "3.4"
log = "0.4"
mumble-protocol = "0.4.1"
native-tls = "0.2"
-openssl = { version = "0.10" }
opus = "0.2"
serde = { version = "1.0", features = ["derive"] }
strum = "0.20"
strum_macros = "0.20"
tokio = { version = "1.0", features = ["macros", "rt", "rt-multi-thread", "sync", "net", "time", "fs"] }
-tokio-stream = "0.1.0"
tokio-native-tls = "0.3"
tokio-util = { version = "0.6", features = ["codec", "net"] }
bincode = "1.3.2"
diff --git a/mumd/src/main.rs b/mumd/src/main.rs
index 0db6d35..6dc0cf0 100644
--- a/mumd/src/main.rs
+++ b/mumd/src/main.rs
@@ -3,6 +3,7 @@
#![warn(missing_debug_implementations)]
#![warn(single_use_lifetimes)]
#![warn(unreachable_pub)]
+#![warn(unused_crate_dependencies)]
#![deny(keyword_idents)]
#![deny(macro_use_extern_crate)]
#![deny(missing_abi)]