From d7aaeea93e70beb5b27a206a267c713ead4d8db3 Mon Sep 17 00:00:00 2001 From: reubenmiller Date: Mon, 26 Jan 2026 11:42:56 +0100 Subject: [PATCH] dev: use --locked when install cargo tools Signed-off-by: reubenmiller --- justfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index ca77cff0a23..7f96a328550 100644 --- a/justfile +++ b/justfile @@ -53,8 +53,9 @@ install-tools: rustup component add rust-analyzer rust-analysis rust-src rustfmt clippy rustup toolchain install nightly rustup component add rustfmt --toolchain nightly - cargo +stable install taplo-cli cargo-nextest - cargo +stable install cargo-deny + cargo +stable install --locked taplo-cli + cargo +stable install --locked cargo-nextest + cargo +stable install --locked cargo-deny # Check if necessary tools are installed [private]