Compare commits

...

2 Commits

Author SHA1 Message Date
Anna fae0970d44
chore: bump version to 1.0.0 2023-08-31 02:32:02 -04:00
Anna fae036fda7
fix: include author and version in clap 2023-08-31 02:30:49 -04:00
3 changed files with 4 additions and 2 deletions

2
Cargo.lock generated
View File

@ -1240,7 +1240,7 @@ dependencies = [
[[package]]
name = "git-vain"
version = "0.1.0"
version = "1.0.0"
dependencies = [
"anyhow",
"chrono",

View File

@ -1,6 +1,7 @@
[package]
name = "git-vain"
version = "0.1.0"
version = "1.0.0"
authors = ["Anna <git-vain@anna.lgbt>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

View File

@ -41,6 +41,7 @@ use sha1::{Digest, Sha1};
/// Providing a key file is orders of magnitude faster than providing a key ID,
/// since using a key ID goes through gpg-agent, which is very slow.
#[derive(Parser)]
#[command(author, version)]
struct Cli {
/// The commit to replace with a vanity hash.
#[arg(short, long, default_value_t = String::from("HEAD"))]