From 2d618d0e347bd75a60e731e3a345049ee0cab35f Mon Sep 17 00:00:00 2001 From: Vinnie Magro Date: Tue, 28 Jan 2025 19:35:38 -0500 Subject: [PATCH] [release] 0.0.1 release --- Cargo.lock | 2 +- Cargo.toml | 4 ++-- src/main.rs | 2 ++ 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a7d2106..66b9838 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -725,7 +725,7 @@ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a" [[package]] name = "limelightctl" -version = "0.0.0" +version = "0.0.1" dependencies = [ "anyhow", "cap-std", diff --git a/Cargo.toml b/Cargo.toml index 33bb4b6..afa1cd2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "limelightctl" -version = "0.0.0" +version = "0.0.1" edition = "2021" [dependencies] anyhow = "1.0" cap-std = "3.4.2" -clap = { version = "4.5", features = ["derive"] } +clap = { version = "4.5", features = ["cargo", "derive"] } reqwest = { version = "0.12", features = ["json"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/src/main.rs b/src/main.rs index 28776be..5b98328 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,6 +7,8 @@ mod status; mod upload; #[derive(Debug, Clone, Parser)] +#[clap(version)] +/// CLI to enable tracking of Limelight configurations in source control struct Args { #[clap(long, default_value = "http://limelight.local:5807")] limelight: Url,