diff --git a/Cargo.lock b/Cargo.lock index 733be8f..839a63c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,9 +28,9 @@ dependencies = [ [[package]] name = "anstream" -version = "0.6.5" +version = "0.6.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6" +checksum = "4cd2405b3ac1faab2990b74d728624cd9fd115651fcecc7c2d8daf01376275ba" dependencies = [ "anstyle", "anstyle-parse", @@ -169,18 +169,18 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.14" +version = "4.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "33e92c5c1a78c62968ec57dbc2440366a2d6e5a23faf829970ff1585dc6b18e2" +checksum = "58e54881c004cec7895b0068a0a954cd5d62da01aef83fa35b1e594497bf5445" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.4.14" +version = "4.4.16" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f4323769dc8a61e2c39ad7dc26f6f2800524691a44d74fe3d1071a5c24db6370" +checksum = "59cb82d7f531603d2fd1f507441cdd35184fa81beff7bd489570de7f773460bb" dependencies = [ "anstream", "anstyle", @@ -223,12 +223,12 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hcal" -version = "0.4.0" +version = "0.4.1" dependencies = [ "bdays", "cbb", "chrono", - "clap 4.4.14", + "clap 4.4.16", "regex", ] diff --git a/Cargo.toml b/Cargo.toml index 4ff4538..4ee25c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hcal" -version = "0.4.0" +version = "0.4.1" description = "Hexadecimal calendar for terminal" license = "MIT" authors = ["0xflotus"] @@ -18,7 +18,7 @@ readme = "README.md" bdays = "0.1.3" cbb = "0.2.1" chrono = "0.4.31" -clap = { version = "4.4.13", features = ["cargo"] } +clap = { version = "4.4.16", features = ["cargo"] } regex = "1.10.2" [[bin]] diff --git a/src/main.rs b/src/main.rs index 3807c12..0862325 100644 --- a/src/main.rs +++ b/src/main.rs @@ -16,7 +16,7 @@ use helpers::{cal, fmt, hex}; use clap::{Arg, ArgAction, Command}; fn main() { - let matches = Command::new("hcal").version("0.4.0").about("A hexadecimal calendar for terminal") + let matches = Command::new("hcal").version("0.4.1").about("A hexadecimal calendar for terminal") .arg(Arg::new("year").help("Sets the year")) .arg(Arg::new("month").help("Sets the month")) .arg(Arg::new("day").help("Sets the day"))