From 37654eb9116841f703bad1979b11af0943e4e911 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Sun, 10 Aug 2025 23:02:51 -0300 Subject: [PATCH] fix: add Clone derive to Args struct to fix compilation error Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7c727bd..9258f53 100644 --- a/src/main.rs +++ b/src/main.rs @@ -29,7 +29,7 @@ extern crate serde; /** * Main struct for command-line arguments. */ -#[derive(Parser, Debug)] +#[derive(Parser, Debug, Clone)] #[command(author, version, about, long_about = None)] pub struct Args { #[command(flatten)]