From 635d8da0f83798a063c2c24b8c438cd5af76544a Mon Sep 17 00:00:00 2001 From: Andrea Corbellini Date: Sun, 6 Aug 2023 23:29:57 -0700 Subject: [PATCH] Remove the lint `unused_crate_dependencies` as it is giving false positives `unused_crate_dependencies` is complaining about the `rand` dev-dependency, which is used by integ tests. This is a known problem with this lint: https://github.com/rust-lang/rust/issues/57274 --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index e6a2581..4f78d80 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -163,7 +163,6 @@ #![warn(missing_docs)] #![warn(pointer_structural_match)] #![warn(unreachable_pub)] -#![warn(unused_crate_dependencies)] #![warn(unused_qualifications)] mod iter;