From ccbb59aafb10f9246fb3d9f0f78d68c80aea5b85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jalil=20David=20Salam=C3=A9=20Messina?= Date: Tue, 1 Jul 2025 18:26:46 +0200 Subject: [PATCH] feat!(config): remove unused cargo plugins I don't use `cargo-udeps` or `cargo-watch` anymore, remove them. --- modules/hm/options.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/hm/options.nix b/modules/hm/options.nix index e274f52..811384a 100644 --- a/modules/hm/options.nix +++ b/modules/hm/options.nix @@ -209,8 +209,6 @@ in options.extraPackages = mkExtraPackagesOption "Rust" [ [ "cargo-insta" ] # snapshot testing [ "cargo-nextest" ] # better testing harness - [ "cargo-udeps" ] # check for unused dependencies (requires nightly) - [ "cargo-watch" ] # watch for file changes and run commands ]; }; };