fix: add clippy as part of the toolchain

This commit is contained in:
sbatial 2023-07-30 15:06:27 +02:00
parent 75037c65ff
commit f717a03813
2 changed files with 2 additions and 1 deletions

View file

@ -28,6 +28,7 @@
naersk' = pkgs.callPackage naersk {
cargo = toolchain;
rustc = toolchain;
clippy = toolchain;
};
treefmtEval = treefmt-nix.lib.evalModule pkgs ./treefmt.nix;

View file

@ -1,4 +1,4 @@
[toolchain]
channel = "nightly"
components = [ "rustfmt", "rustc", "rust-src", "rust-analyzer", "cargo" ]
components = [ "rustfmt", "rustc", "rust-src", "rust-analyzer", "cargo", "clippy" ]
profile = "minimal"