From 871fefce04602f03c92e3776de632c37d2e34d94 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 20 Nov 2023 11:07:06 +0000 Subject: [PATCH] chore(deps): move some CLI tools from rtx to cargo install bat, difftastic and exa don't seem to distribute arm64 binaries as part of their releases. Hence we need to install them from source with cargo instead. --- config/rtx/config.toml | 3 --- zsh/rust.zsh | 7 +++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/config/rtx/config.toml b/config/rtx/config.toml index 267b643..dbfec77 100644 --- a/config/rtx/config.toml +++ b/config/rtx/config.toml @@ -4,13 +4,10 @@ experimental = true [tools] actionlint = "latest" -bat = "latest" buf = "latest" ctop = "latest" -difftastic = "latest" direnv = "latest" dust = "latest" -exa = "latest" go = "latest" golangci-lint = "latest" goreleaser = "latest" diff --git a/zsh/rust.zsh b/zsh/rust.zsh index 6687d97..757f76b 100644 --- a/zsh/rust.zsh +++ b/zsh/rust.zsh @@ -79,10 +79,13 @@ install_rust_global_packages() { cargo-info RUSTC_WRAPPER=sccache cargo binstall -y \ - cargo-update \ - cargo-edit \ bacon \ + bat \ + cargo-edit \ + cargo-update \ + difftastic \ dirstat-rs \ + exa \ hexyl ) }