From 5d10e6d163eb904ec8cf85c4656180a487c73a68 Mon Sep 17 00:00:00 2001 From: Christian Meusel Date: Thu, 5 Sep 2024 07:36:47 +0200 Subject: [PATCH] Deny use of dbg macro in library and test code Using this macro should be a temporary measure and not generate output from production code or tests. It cold be allowed for individual examples, if needed. --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 25242d1b..15e0457e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -17,6 +17,7 @@ //! platform-specific port object which allows access to platform-specific functionality. #![deny( + clippy::dbg_macro, missing_docs, missing_debug_implementations, missing_copy_implementations