From 8686537e0b34379610e3fe6f702e947e1764cf17 Mon Sep 17 00:00:00 2001 From: "Andrew Phillips (aider)" Date: Thu, 22 May 2025 12:51:39 -0300 Subject: [PATCH] feat: add meta_plugins to ItemArgs --- src/main.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main.rs b/src/main.rs index 99c0556..0156319 100644 --- a/src/main.rs +++ b/src/main.rs @@ -124,6 +124,10 @@ struct ItemArgs { #[arg(help_heading("Item Options"), short, long, env("KEEP_COMPRESSION"))] #[arg(help("Compression algorithm to use when saving items"))] compression: Option, + + #[arg(help_heading("Item Options"), short, long, env("KEEP_META_PLUGINS"))] + #[arg(help("Meta plugins to use when saving items"))] + meta_plugins: Vec, } /**