From 89ed92930007f8c298740309945ee968128a735c Mon Sep 17 00:00:00 2001 From: sksizer Date: Tue, 7 Apr 2026 12:16:14 -0500 Subject: [PATCH] feat(justfile): add install-tools recipe for optional cargo tooling Installs cargo-outdated and cargo-audit, which are required by the 'outdated' and 'audit' recipes but not bundled with rustup. --- justfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/justfile b/justfile index fe5a4d5..5b57e1d 100644 --- a/justfile +++ b/justfile @@ -70,6 +70,10 @@ outdated: audit: cargo audit +# Install optional cargo tools used by other recipes (cargo-outdated, cargo-audit) +install-tools: + cargo install --locked cargo-outdated cargo-audit + # ---------------------------------------------------------------------------- # # RELEASE # # ---------------------------------------------------------------------------- #