summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Mühlbacher <tmuehlbacher@posteo.net>2025-03-31 23:47:43 +0000
committerKent Overstreet <kent.overstreet@linux.dev>2025-03-31 20:29:39 -0400
commite47a5ce2bcda0037402c2f921ffa4266e349575c (patch)
treecef2ba2b107b3247cca5ca2b25c62e793dd82677
parent3aa2a4c47ce57ff3965b75df9dde1a7b40ed6ae1 (diff)
fix(nix): allow msrv test to have warnings
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 <tmuehlbacher@posteo.net> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
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";
}
);
};