From 02e83385c0f7daab75868f504a6be5527e9a0a9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 17 Feb 2025 05:53:20 +0000 Subject: [PATCH] build(deps): bump the backend-dependencies group with 2 updates Bumps the backend-dependencies group with 2 updates: [clap](https://github.com/clap-rs/clap) and [config](https://github.com/rust-cli/config-rs). Updates `clap` from 4.5.28 to 4.5.29 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.28...clap_complete-v4.5.29) Updates `config` from 0.15.7 to 0.15.8 - [Changelog](https://github.com/rust-cli/config-rs/blob/main/CHANGELOG.md) - [Commits](https://github.com/rust-cli/config-rs/compare/v0.15.7...v0.15.8) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: backend-dependencies - dependency-name: config dependency-type: direct:production update-type: version-update:semver-patch dependency-group: backend-dependencies ... Signed-off-by: dependabot[bot] --- Cargo.lock | 12 ++++++------ Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0319b4a..f394d62 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -429,9 +429,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.5.28" +version = "4.5.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3e77c3243bd94243c03672cb5154667347c457ca271254724f9f393aee1c05ff" +checksum = "8acebd8ad879283633b343856142139f2da2317c96b05b4dd6181c61e2480184" dependencies = [ "clap_builder", "clap_derive", @@ -439,9 +439,9 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.5.27" +version = "4.5.29" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7" +checksum = "f6ba32cbda51c7e1dfd49acc1457ba1a7dec5b64fe360e828acb13ca8dc9c2f9" dependencies = [ "anstream", "anstyle", @@ -475,9 +475,9 @@ checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0" [[package]] name = "config" -version = "0.15.7" +version = "0.15.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e26695492a475c4a091cfda61446d5ba01aac2e1dfbcd27a12fdd11aa2e32596" +checksum = "8cf9dc8d4ef88e27a8cb23e85cb116403dedd57f7971964dc4b18ccead548901" dependencies = [ "async-trait", "convert_case", diff --git a/Cargo.toml b/Cargo.toml index 81e8d19..7539eda 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,8 +15,8 @@ anyhow = "1" async-trait = "0.1.86" axum = "0.8.1" # web framework axum-macros = "0.5.0" -clap = { version = "4.5.28", features = ["derive"] } # command-line parser -config = "0.15.7" # Layered configuration with strong support for 12-factor applications +clap = { version = "4.5.29", features = ["derive"] } # command-line parser +config = "0.15.8" # Layered configuration with strong support for 12-factor applications chrono = { version = "0.4.39", features = ["serde"] } dirs = "5.0.1" # provides platform-specific locations for storing user configuration http-body-util = "0.1.0"