From 9e575ebcb24aea75d35f4be5339444fdc4e22fe4 Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Sat, 6 Jan 2024 11:59:16 +0900 Subject: [PATCH] Apply missing_debug_implementations lint at workspace level --- Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/Cargo.toml b/Cargo.toml index 7b9f6f5d..a7fcf8e7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,6 +7,7 @@ members = ["tools/codegen"] [workspace.lints.rust] improper_ctypes = "warn" improper_ctypes_definitions = "warn" +missing_debug_implementations = "warn" non_ascii_idents = "warn" rust_2018_idioms = "warn" single_use_lifetimes = "warn"