From 401cc6be32ec0addef0738a5f2569d59d956d317 Mon Sep 17 00:00:00 2001 From: dignifiedquire Date: Thu, 26 Oct 2023 18:55:58 +0200 Subject: [PATCH] clippy: warn on unsused async fn Details: https://rust-lang.github.io/rust-clippy/master/index.html#/unused_async --- .cargo/config.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.cargo/config.toml b/.cargo/config.toml index 018fa32046..421e48d61a 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,2 @@ [build] -rustflags = ["-Wmissing_debug_implementations"] +rustflags = ["-Wmissing_debug_implementations", "-Wclippy::unused-async"]