From 133e6de1572c45bd7814dcfb06626d5817c92cea Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 20:02:39 +0000 Subject: [PATCH] Bump the clap group with 2 updates Bumps the clap group with 2 updates: [clap](https://github.com/clap-rs/clap) and [clap_complete](https://github.com/clap-rs/clap). Updates `clap` from 4.4.4 to 4.4.6 - [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/v4.4.4...v4.4.6) Updates `clap_complete` from 4.4.1 to 4.4.3 - [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.4.1...clap_complete-v4.4.3) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: clap - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: clap ... Signed-off-by: dependabot[bot] --- Cargo.lock | 50 +++++++++++++++++++++++++++++++++++++------------- Cargo.toml | 4 ++-- 2 files changed, 39 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16c2fa3d1..19de78bec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -86,7 +86,21 @@ dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", - "anstyle-wincon", + "anstyle-wincon 2.1.0", + "colorchoice", + "utf8parse", +] + +[[package]] +name = "anstream" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab91ebe16eb252986481c5b62f6098f3b698a45e34b5b98200cf20dd2484a44" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon 3.0.1", "colorchoice", "utf8parse", ] @@ -125,6 +139,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "anstyle-wincon" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0699d10d2f4d628a98ee7b57b289abbc98ff3bad977cb3152709d4bf2330628" +dependencies = [ + "anstyle", + "windows-sys 0.48.0", +] + [[package]] name = "anyhow" version = "1.0.75" @@ -390,9 +414,9 @@ dependencies = [ [[package]] name = "clap" -version = "4.4.4" +version = "4.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1d7b8d5ec32af0fadc644bf1fd509a688c2103b185644bb1e29d164e0703136" +checksum = "d04704f56c2cde07f43e8e2c154b43f216dc5c92fc98ada720177362f953b956" dependencies = [ "clap_builder", "clap_derive", @@ -400,11 +424,11 @@ dependencies = [ [[package]] name = "clap_builder" -version = "4.4.4" +version = "4.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5179bb514e4d7c2051749d8fcefa2ed6d06a9f4e6d69faf3805f5d80b8cf8d56" +checksum = "0e231faeaca65ebd1ea3c737966bf858971cd38c3849107aa3ea7de90a804e45" dependencies = [ - "anstream", + "anstream 0.6.4", "anstyle", "clap_lex", "strsim 0.10.0", @@ -412,11 +436,11 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.4.1" +version = "4.4.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4110a1e6af615a9e6d0a36f805d5c99099f8bab9b8042f5bc1fa220a4a89e36f" +checksum = "e3ae8ba90b9d8b007efe66e55e48fb936272f5ca00349b5b0e89877520d35ea7" dependencies = [ - "clap 4.4.4", + "clap 4.4.6", ] [[package]] @@ -524,7 +548,7 @@ dependencies = [ "anes", "cast", "ciborium", - "clap 4.4.4", + "clap 4.4.6", "criterion-plot", "is-terminal", "itertools", @@ -1981,7 +2005,7 @@ version = "1.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eb2df2fb4e13fa697d21d93061ebcbbd876f5ef643b48ff59cfab57a726ef140" dependencies = [ - "anstream", + "anstream 0.5.0", "anstyle", "backtrace", "os_info", @@ -2493,7 +2517,7 @@ dependencies = [ "askalono", "byte-unit", "bytecount", - "clap 4.4.4", + "clap 4.4.6", "clap_complete", "criterion", "crossbeam-channel", @@ -2542,7 +2566,7 @@ version = "2.18.1" dependencies = [ "anyhow", "base64", - "clap 4.4.4", + "clap 4.4.6", "color_quant", "image", "libc", diff --git a/Cargo.toml b/Cargo.toml index c70f73b03..3c76bb105 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ repository = "https://github.com/o2sh/onefetch" [workspace.dependencies] owo-colors = "3.5.0" anyhow = "1.0" -clap = { version = "4.4.4", features = ["derive"] } +clap = { version = "4.4.6", features = ["derive"] } image = "0.24.7" strum = { version = "0.25.0", features = ["derive"] } @@ -35,7 +35,7 @@ askalono = "0.4.6" byte-unit = "4.0.19" bytecount = "0.6.3" clap.workspace = true -clap_complete = "4.4.1" +clap_complete = "4.4.3" crossbeam-channel = "0.5.8" gix-features-for-configuration-only = { package = "gix-features", version = "0.34.0", features = [ "zlib-ng",