From e21cbbb8bb35644461aad351458bfbfd3d047954 Mon Sep 17 00:00:00 2001 From: Eskil Queseth Date: Sun, 13 Jun 2021 20:56:18 +0200 Subject: add unused_crate_dependencies lint --- mumd/Cargo.toml | 5 ----- mumd/src/main.rs | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) (limited to 'mumd') 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)] -- cgit v1.2.1