1
Fork 0
gravatar-rs/shell.nix

19 lines
290 B
Nix
Raw Permalink Normal View History

2024-01-21 11:24:45 +00:00
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
let
rustup-toolchain = rust-bin.fromRustupToolchainFile ./rustup-toolchain.toml;
in
mkShell rec {
packages = [
2024-01-21 11:38:51 +00:00
cargo-audit
2024-01-21 11:24:45 +00:00
cargo-edit
cargo-insta
cargo-make
2024-01-21 11:38:51 +00:00
cargo-outdated
2024-01-21 11:24:45 +00:00
cargo-tarpaulin
rustup-toolchain
];
}