From ea9c76a469aa3d45f4189c669f708b3ac471ee52 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 Changelog-None --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index ebfe22afc08a..2cb97123b18e 100755 --- a/configure +++ b/configure @@ -134,10 +134,10 @@ default_valgrind_setting() default_rust_setting() { - if cargo --version > /dev/null 2>&1 && rustfmt --version >/dev/null 2>&1; then - echo 1 + if cargo --version > /dev/null 2>&1; then + echo 1 else - echo 0 + echo 0 fi }