From 3d008b827d24f22042821b8680221528e936e519 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Wed, 18 Dec 2024 08:52:06 +0000 Subject: [PATCH] chore(rust): only install components not included with rust itself --- zsh/rust.zsh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/zsh/rust.zsh b/zsh/rust.zsh index e2211bc..2a942dd 100644 --- a/zsh/rust.zsh +++ b/zsh/rust.zsh @@ -49,9 +49,7 @@ install_rust_global_packages() { fi rustup component add \ - clippy \ rust-analyzer \ - rust-src \ - rustfmt + rust-src ) }