2 Commits

Author SHA1 Message Date
Colin Woodbury
99f36f8f47 release: 1.7.1 2024-03-18 09:41:21 +09:00
Colin Woodbury
94bd36af28 fix: absorb any extra free arguments
Perhaps new versions of cargo are passing the name of the cargo
subtool (`aur` in this case) to the tool itself? Either way, `gumdrop`
suddenly started barfing on this.
2024-03-18 09:39:36 +09:00
3 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
# `cargo-aur` Changelog
## 1.7.1 (2024-03-18)
#### Fixed
- The crypt startup error `unexpected free argument aur`.
## 1.7.0 (2024-03-07)
#### Added

View File

@@ -1,6 +1,6 @@
[package]
name = "cargo-aur"
version = "1.7.0"
version = "1.7.1"
authors = ["Colin Woodbury <colin@fosskers.ca>"]
edition = "2021"
description = "Prepare Rust projects to be released on the Arch Linux User Repository."

View File

@@ -45,6 +45,9 @@ struct Args {
musl: bool,
/// Don't actually build anything.
dryrun: bool,
/// Absorbs any extra junk arguments.
#[options(free)]
free: Vec<String>,
}
#[derive(Deserialize, Debug)]