From 8bdd1d51353d0866fa83ba8dac616d9461b8bde9 Mon Sep 17 00:00:00 2001 From: limbooverlambda Date: Thu, 8 Aug 2024 16:52:51 -0700 Subject: [PATCH] added clippy fix for the formatting issues with the latest stable Signed-off-by: limbooverlambda --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index aef0ad45..2a52fab3 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ generate: check: generate cargo check --all --all-targets --features "${ALL_FEATURES}" cargo fmt -- --check - cargo clippy --all-targets --features "${ALL_FEATURES}" -- -D clippy::all + cargo clippy --fix --allow-dirty --all-targets --features "${ALL_FEATURES}" -- -D clippy::all unit-test: generate cargo nextest run --all --no-default-features