Skip to content

Commit

Permalink
bump: update clap and serde dependencies to latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Nov 16, 2024
1 parent 8d5e501 commit 6571293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ homepage = "https://kremilly.com"

[dependencies]
chrono = "0.4.38"
clap = { version = "4.5.20", features = ["cargo", "derive"] }
clap = { version = "4.5.21", features = ["cargo", "derive"] }
clap-cargo = "0.14.1"
colored = "2.1.0"
ctrlc = "3.4.5"
Expand All @@ -22,7 +22,7 @@ mysql = "25.0.1"
rand = "0.8.5"
regex = "1.11.1"
reqwest = { version = "0.12.9", features = ["blocking"] }
serde = { version = "1.0.214", features = ["derive"] }
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"

Expand Down
4 changes: 2 additions & 2 deletions src/args_cli.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
use clap_cargo::style;
use clap::builder::styling;
use clap::builder::styling::Styles;

use clap::{
Parser,
Subcommand,
ColorChoice,
};

pub const CLAP_STYLING: styling::Styles = styling::Styles::styled()
pub const CLAP_STYLING: Styles = Styles::styled()
.header(style::HEADER)
.usage(style::USAGE)
.literal(style::LITERAL)
Expand Down

0 comments on commit 6571293

Please sign in to comment.