From d5d62c81a30a80383380de6567e436bd8cf1b731 Mon Sep 17 00:00:00 2001 From: Max Dexheimer Date: Fri, 5 Dec 2025 11:59:02 +0100 Subject: [PATCH] Remove rust toolchain from shell.nix For some reason rust-analyzer does not show clippy diagnostics when installed this way. --- shell.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/shell.nix b/shell.nix index da5f680..3800fa0 100644 --- a/shell.nix +++ b/shell.nix @@ -5,10 +5,7 @@ pkgs.mkShell { nativeBuildInputs = [ pkgs.pkg-config ]; buildInputs = [ - pkgs.cargo - pkgs.rustc pkgs.rustPlatform.bindgenHook pkgs.cairo - pkgs.rust-analyzer ]; }