diff options
author | Thomas Mühlbacher <tmuehlbacher@posteo.net> | 2025-03-31 23:47:43 +0000 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2025-03-31 20:29:39 -0400 |
commit | e47a5ce2bcda0037402c2f921ffa4266e349575c (patch) | |
tree | cef2ba2b107b3247cca5ca2b25c62e793dd82677 | |
parent | 3aa2a4c47ce57ff3965b75df9dde1a7b40ed6ae1 (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.nix | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -283,7 +283,7 @@ // { pname = "msrv"; inherit (common) cargoArtifacts; - cargoClippyExtraArgs = "--all-targets --all-features -- --deny warnings"; + cargoClippyExtraArgs = "--all-targets --all-features"; } ); }; |