From 468dd52e0f8c63f1b5c5f94aad8b14e1b7428adf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 01:03:52 +0000 Subject: [PATCH] Bump clap from 4.3.19 to 4.4.4 Bumps [clap](https://github.com/clap-rs/clap) from 4.3.19 to 4.4.4. - [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.3.19...v4.4.4) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 47 ++++++++++++++++++++++++++++++++--------------- Cargo.toml | 4 ++-- 2 files changed, 34 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0179e2c2..c140d8e7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -11,12 +11,26 @@ dependencies = [ "anstyle", "anstyle-parse", "anstyle-query", - "anstyle-wincon", + "anstyle-wincon 1.0.1", "colorchoice", "is-terminal", "utf8parse", ] +[[package]] +name = "anstream" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1f58811cfac344940f1a400b6e6231ce35171f614f26439e80f8c1465c5cc0c" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon 2.1.0", + "colorchoice", + "utf8parse", +] + [[package]] name = "anstyle" version = "1.0.1" @@ -51,6 +65,16 @@ dependencies = [ "windows-sys 0.48.0", ] +[[package]] +name = "anstyle-wincon" +version = "2.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58f54d10c6dfa51283a066ceab3ec1ab78d13fae00aa49243a45e4571fb79dfd" +dependencies = [ + "anstyle", + "windows-sys 0.48.0", +] + [[package]] name = "anyhow" version = "1.0.72" @@ -98,23 +122,22 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.3.19" +version = "4.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d" +checksum = "b1d7b8d5ec32af0fadc644bf1fd509a688c2103b185644bb1e29d164e0703136" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.3.19" +version = "4.4.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1" +checksum = "5179bb514e4d7c2051749d8fcefa2ed6d06a9f4e6d69faf3805f5d80b8cf8d56" dependencies = [ - "anstream", + "anstream 0.5.0", "anstyle", "clap_lex", - "once_cell", "strsim", ] @@ -358,12 +381,6 @@ dependencies = [ "libc", ] -[[package]] -name = "once_cell" -version = "1.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" - [[package]] name = "os_pipe" version = "1.1.4" @@ -504,7 +521,7 @@ version = "0.4.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6bccd62078347f89a914e3004d94582e13824d4e3d8a816317862884c423835" dependencies = [ - "anstream", + "anstream 0.3.2", "anstyle", "content_inspector", "dunce", @@ -526,7 +543,7 @@ version = "0.3.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eaaf09df9f0eeae82be96290918520214530e738a7fe5a351b0f24cf77c0ca31" dependencies = [ - "anstream", + "anstream 0.3.2", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8ee32fc3..04f800b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,13 +10,13 @@ version = "1.8.0" edition = "2021" [dependencies] -clap = {version = "4.3.19", features = ["default", "cargo"]} +clap = {version = "4.4.4", features = ["default", "cargo"]} trycmd = {version = "0.14.16", features = ["default"]} # add "debug" feature if you're having trouble strip-ansi-escapes = "0.1.1" anyhow = "1.0.72" [build-dependencies] -clap = {version = "4.3.19", features = ["default", "cargo"]} +clap = {version = "4.4.4", features = ["default", "cargo"]} clap_mangen = "0.2.12" [features]