From 908462183aa4b4a7120fc4df781df0c66718810d Mon Sep 17 00:00:00 2001 From: Rasmus Rendal Date: Thu, 25 Jun 2026 16:43:32 +0200 Subject: [PATCH] feat(famedly-rust-toolchain): Include llvm-tools In many Famedly projects, we enjoy computing the code coverage. To do this, we normally use llvm-tools. Arguably, this could be optional. But until someone comes up with a project that doesn't want llvm-tools, I don't want to introduce the extra complexity. --- nix/rust/toolchain.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nix/rust/toolchain.nix b/nix/rust/toolchain.nix index d265b3a..8c5b83d 100644 --- a/nix/rust/toolchain.nix +++ b/nix/rust/toolchain.nix @@ -47,6 +47,7 @@ extensions = [ "rust-src" "rust-analyzer" + "llvm-tools" ]; }) ];