From bd15a13761021652da8a3cd978a96cbb4333362f Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 10 Jan 2026 19:35:27 +0900 Subject: [PATCH] rustfmt: Set hex_literal_case = "Upper" --- .rustfmt.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.rustfmt.toml b/.rustfmt.toml index efd9f8e7..19f32a00 100644 --- a/.rustfmt.toml +++ b/.rustfmt.toml @@ -14,6 +14,8 @@ overflow_delimited_expr = true imports_granularity = "Crate" # This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/5083). group_imports = "StdExternalCrate" +# This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/5081). +hex_literal_case = "Upper" # Apply rustfmt to more places. # This is unstable (tracking issue: https://github.com/rust-lang/rustfmt/issues/3348).