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 <[email protected]> --- 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"; } ); }; -- 2.48.1
