Remove rust toolchain from shell.nix

For some reason rust-analyzer does not show clippy diagnostics when
installed this way.
This commit is contained in:
Max Dexheimer
2025-12-05 11:59:02 +01:00
parent 7b9e1462da
commit d5d62c81a3
-3
View File
@@ -5,10 +5,7 @@ pkgs.mkShell {
nativeBuildInputs = [ pkgs.pkg-config ]; nativeBuildInputs = [ pkgs.pkg-config ];
buildInputs = [ buildInputs = [
pkgs.cargo
pkgs.rustc
pkgs.rustPlatform.bindgenHook pkgs.rustPlatform.bindgenHook
pkgs.cairo pkgs.cairo
pkgs.rust-analyzer
]; ];
} }