From cae72977e62bea836a20bef69abb805dc301c5c9 Mon Sep 17 00:00:00 2001 From: "Christoph J. Scherr" Date: Mon, 4 Mar 2024 17:07:26 +0100 Subject: [PATCH] warn on missing docs and debug impls --- clock-tui/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/clock-tui/src/lib.rs b/clock-tui/src/lib.rs index e1cdb8b..f107f57 100644 --- a/clock-tui/src/lib.rs +++ b/clock-tui/src/lib.rs @@ -1,2 +1,4 @@ +#![warn(missing_docs)] +#![warn(missing_debug_implementations)] pub mod app; pub mod clock_text;