From 3b25fa4f0dc06f5625fc539af2115be8813ef428 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ant=C3=B4nio=20Cardoso?= Date: Tue, 22 Oct 2024 10:04:49 -0300 Subject: [PATCH] src: lib: cli: implement Debug for Args --- src/lib/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/cli.rs b/src/lib/cli.rs index 290ccb0f..8b4904eb 100644 --- a/src/lib/cli.rs +++ b/src/lib/cli.rs @@ -6,7 +6,7 @@ use tracing::*; use crate::drivers; -#[derive(Parser)] +#[derive(Debug, Parser)] #[command( version = env!("CARGO_PKG_VERSION"), author = env!("CARGO_PKG_AUTHORS"),