From 4db3c1cd6d9d5b0cc6f5945974e0aa2ab2ff8148 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 28 Dec 2023 19:40:53 +0000 Subject: [PATCH] Update Rust crate clap to 4.4.12 --- Cargo.lock | 8 ++++---- ccc-server/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 76174e91..e8cb11b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -296,9 +296,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.4.8" +version = "4.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2275f18819641850fa26c89acc84d465c1bf91ce57bc2748b28c420473352f64" +checksum = "dcfab8ba68f3668e89f6ff60f5b205cea56aa7b769451a59f34b8682f51c056d" dependencies = [ "clap_builder", "clap_derive", @@ -306,9 +306,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.8" +version = "4.4.12" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "07cdf1b148b25c1e1f7a42225e30a0d99a615cd4637eae7365548dd4529b95bc" +checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9" dependencies = [ "anstream", "anstyle", diff --git a/ccc-server/Cargo.toml b/ccc-server/Cargo.toml index 167debad..4c958f5d 100644 --- a/ccc-server/Cargo.toml +++ b/ccc-server/Cargo.toml @@ -6,7 +6,7 @@ publish = false [dependencies] axum = { version = "0.6.20", features = ["headers", "tracing"] } -clap = { version = "4.4.8", features = ["derive"] } +clap = { version = "4.4.12", features = ["derive"] } ccc-types = { path = "../ccc-types" } ccc-routes = { path = "../ccc-routes" } reqwest = { version = "0.11.22", features = ["json"] }