nix flake: Drop --all-features from cargo commands

fuse is now enabled purely through a feature, build.rs
doesn't look at BCACHEFS_FUSE in the environment.

However, fuse libraries aren't installed by nix in the
current context of check commands, so run the checks without fuse.

Signed-off-by: Gabriel de Perthuis <g2p.code@gmail.com>
This commit is contained in:
Gabriel de Perthuis 2025-03-22 23:54:52 +00:00
parent 953402505e
commit b69ca0525f

View File

@ -231,7 +231,7 @@
common.args
// {
inherit (common) cargoArtifacts;
cargoClippyExtraArgs = "--all-targets --all-features -- --deny warnings";
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
}
);
@ -265,7 +265,7 @@
// {
pname = "msrv";
inherit (common) cargoArtifacts;
cargoClippyExtraArgs = "--all-targets --all-features -- --deny warnings";
cargoClippyExtraArgs = "--all-targets -- --deny warnings";
}
);