From 1e5ec9364134ec53b94dedcbc7d41e8e44e96183 Mon Sep 17 00:00:00 2001 From: Arend van Beelen jr Date: Fri, 30 Jun 2023 10:22:28 +0200 Subject: [PATCH] Install correct binstall crate --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 2b20a953ed3..eb0e6554ec1 100644 --- a/justfile +++ b/justfile @@ -8,12 +8,12 @@ alias r := ready # Installs the tools needed to develop with Rome install-tools: - cargo install binstall + cargo install cargo-binstall cargo binstall cargo-insta cargo-nextest taplo-cli wasm-pack # Upgrades the tools needed to develop with Rome upgrade-tools: - cargo install binstall --force + cargo install cargo-binstall --force cargo binstall cargo-insta cargo-nextest taplo-cli wasm-pack --force # Generate all files across crates and tools. You rarely want to use it locally.