From 9410f5356b25d2eecc2cee1aed0804ecca4cf3f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lureau?= Date: Tue, 23 Jul 2024 23:26:54 +0400 Subject: [PATCH] chore: disable unused_crate_dependencies warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e75ac976..be1d30c8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -90,7 +90,8 @@ noop_method_call = "warn" # TODO: NOTE(@CBenoit): we probably want to ensure this in core tier crates only # missing_docs = "warn" # Compile-time / optimization -unused_crate_dependencies = "warn" +# Note: buggy with dev-dependencies or multiple targets +# unused_crate_dependencies = "warn" unused_macro_rules = "warn" [workspace.lints.clippy]