From e47a5ce2bcda0037402c2f921ffa4266e349575c Mon Sep 17 00:00:00 2001 From: Thomas Mühlbacher Date: Mon, 31 Mar 2025 23:47:43 +0000 Subject: fix(nix): allow msrv test to have warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is otherwise inconvenient or maybe in other cases even impossible to have clippy pass with both the current Rust version as well as the MSRV Rust version. (e.g. `clippy::missing_transmute_annotations` is not yet known to our current MSRV.) Signed-off-by: Thomas Mühlbacher Signed-off-by: Kent Overstreet --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 79ebfb94..2350f270 100644 --- a/flake.nix +++ b/flake.nix @@ -283,7 +283,7 @@ // { pname = "msrv"; inherit (common) cargoArtifacts; - cargoClippyExtraArgs = "--all-targets --all-features -- --deny warnings"; + cargoClippyExtraArgs = "--all-targets --all-features"; } ); }; -- cgit v1.2.3