From 62300da7b8a70e2ade196e515d918b029a2fb239 Mon Sep 17 00:00:00 2001 From: Lakshya Singh Date: Mon, 8 Sep 2025 08:21:31 +0530 Subject: [PATCH] chore: remove rustfmt check in configure MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rustfmt isn’t needed for production builds and cargo is sufficient [ Also, rustfmt --version exits with status 1 due to deprecation --RR ] Changelog-None --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index eb135239d..f0cc855b9 100755 --- a/configure +++ b/configure @@ -152,7 +152,7 @@ default_valgrind_setting() default_rust_setting() { - if cargo --version > /dev/null 2>&1 && rustfmt --version >/dev/null 2>&1; then + if cargo --version > /dev/null 2>&1; then echo 1 else echo 0