This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
tildes-parser/shell.nix

20 lines
300 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
let
rustup-toolchain = rust-bin.fromRustupToolchainFile ./rustup-toolchain.toml;
in
mkShell rec {
packages = [
cargo-audit
cargo-edit
cargo-insta
cargo-make
cargo-outdated
cargo-tarpaulin
rustup-toolchain
typos
];
}