use version from cargo

This commit is contained in:
Bryson Steck 2025-03-09 12:26:48 -06:00
parent a85a1ab887
commit fc80ebc936
Signed by: brysonsteck
SSH key fingerprint: SHA256:XpKABw/nP4z8UVaH+weLaBnEOD86+cVwif+QjuYLGT4
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -540,7 +540,7 @@ dependencies = [
[[package]] [[package]]
name = "refractr" name = "refractr"
version = "0.1.0" version = "0.2.0"
dependencies = [ dependencies = [
"clap", "clap",
"ctrlc", "ctrlc",

View file

@ -1,6 +1,6 @@
[package] [package]
name = "refractr" name = "refractr"
version = "0.1.0" version = "0.2.0"
edition = "2021" edition = "2021"
[dependencies] [dependencies]

View file

@ -10,7 +10,7 @@ use crate::refractr::Refractr;
#[derive(Parser)] #[derive(Parser)]
#[command(name = "refractr")] #[command(name = "refractr")]
#[command(version = "0.2.0")] #[command(version = option_env!("CARGO_PKG_VERSION"))]
#[command(about = "An automated pull/push utility for mirroring Git repositories")] #[command(about = "An automated pull/push utility for mirroring Git repositories")]
#[command(long_about = None)] #[command(long_about = None)]
struct Args { struct Args {