From 552136400d564d644b00d0eb7c250ea5cfe701ee Mon Sep 17 00:00:00 2001 From: Awiteb Date: Thu, 8 May 2025 12:40:01 +0000 Subject: [PATCH] chore: Improve the MSRV check Signed-off-by: Awiteb --- justfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/justfile b/justfile index 4af0ff4..9d1e125 100644 --- a/justfile +++ b/justfile @@ -22,14 +22,13 @@ _default: # Run the CI ci: && msrv cargo build -q - cargo fmt -- --check - cargo clippy -- -D warnings + cargo fmt -q -- --check + cargo clippy -q -- -D warnings # Check that the current MSRV is correct msrv: - rustup toolchain install {{msrv}} echo "Checking MSRV ({{msrv}})" - cargo +{{msrv}} check -q + rustup -q run --install {{msrv}} cargo check -q echo "MSRV is correct" # Update the changelog