flake.nix: add cargo-outdated, cargo-audit

This commit is contained in:
Jez Cope 2021-07-26 12:29:28 +01:00
parent 8b3f8a0b23
commit 4575f350d6
1 changed files with 8 additions and 1 deletions

View File

@ -8,7 +8,14 @@
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell = pkgs.mkShell {
buildInputs = with pkgs; [ rustup rustracer pkgconfig openssl.dev ];
buildInputs = with pkgs; [
rustup
rustracer
cargo-outdated
cargo-audit
pkgconfig
openssl.dev
];
};
});
}