From 5c6c719e4d51240083a8bc85175264803cf1c777 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niko=20B=C3=B6ckerman?= Date: Tue, 16 Jun 2026 07:00:57 +0300 Subject: [PATCH] Configure rustfmt hex_literal_case This configuration option is recently stabilized and defaults to "Preserve". Configure it to "Upper" in order to have unified formatting in the repo. --- solvers/rust/rustfmt.toml | 1 + 1 file changed, 1 insertion(+) create mode 100644 solvers/rust/rustfmt.toml diff --git a/solvers/rust/rustfmt.toml b/solvers/rust/rustfmt.toml new file mode 100644 index 0000000..ceea76e --- /dev/null +++ b/solvers/rust/rustfmt.toml @@ -0,0 +1 @@ +hex_literal_case = "Upper"