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.
|
{ 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
|
|
];
|
|
}
|