From 6f55c2ab8128b3b5596fb60fa55e1e5d5d1085a4 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Wed, 6 Sep 2023 14:21:49 +0000 Subject: [PATCH] Make --compress not conflict --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index aac6b31..93b4365 100644 --- a/src/main.rs +++ b/src/main.rs @@ -113,7 +113,7 @@ struct ItemArgs { #[arg(help("Set metadata for the item using the format KEY=[VALUE], the metadata will be removed if VALUE is not provided"))] meta: Option>, - #[arg(help_heading("Item Options"), short('C'), long, conflicts_with("get"), conflicts_with("list"), env("KEEP_COMPRESSION"), )] + #[arg(help_heading("Item Options"), short('C'), long, env("KEEP_COMPRESSION"), )] #[arg(help("Compression algorithm to use when saving items"))] compression: Option, }