From b999b67ed8cd560a35f179b08495dbc54eed58aa Mon Sep 17 00:00:00 2001 From: Shea Frembling Date: Sun, 22 Mar 2026 18:36:37 -0500 Subject: [PATCH] fix --args flag not working as intended --- Cargo.lock | 2 +- Cargo.toml | 2 +- src/app.rs | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e04e55..9f5ae13 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -155,7 +155,7 @@ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" [[package]] name = "pallet" -version = "1.0.0" +version = "1.0.1" dependencies = [ "clap", "colored", diff --git a/Cargo.toml b/Cargo.toml index 7fbee31..fd97c2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pallet" -version = "1.0.0" +version = "1.0.1" edition = "2024" [dependencies] diff --git a/src/app.rs b/src/app.rs index 0fefe24..48ccd1b 100644 --- a/src/app.rs +++ b/src/app.rs @@ -31,6 +31,7 @@ enum Subcommand { /// The build mode to use mode: Option, /// Arguments to pass to the project binary + #[arg(long, short)] args: Option>, }, /// Build the local project