From 51d2c920674915809189ec1513bcfd1a47cf1a32 Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Wed, 6 May 2026 10:16:50 +0200 Subject: [PATCH] rust: Remove non_ascii_idents lint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This lint also covers dependencies that generate code i.e. derives. Those dependencies might introduce non-ascii chars deliberately as e.g. zerocopy 0.8.32+ does. Remove it to avoid any confusing warnings regarding non-ascii chars. Link: https://github.com/rust-lang/rust/issues/151025 [hoeppner@linux.ibm.com: Add link to reported issue] Signed-off-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/Cargo.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 1c6b2cde..4d4e36f9 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -22,7 +22,6 @@ rust-version = "1.75.0" [workspace.lints.rust] missing_docs = { level = "deny", priority = 1 } missing_debug_implementations = "warn" -non_ascii_idents = "warn" nonstandard-style = "warn" trivial_numeric_casts = "warn" unstable_features = "warn"