1
Fork 0
gravatar-rs/shell.nix

17 lines
255 B
Nix
Raw 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 = [
cargo-edit
cargo-insta
cargo-make
cargo-tarpaulin
rustup-toolchain
];
}