diff --git a/Cargo.lock b/Cargo.lock index 0179e2c..78d8902 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.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", +] + [[package]] name = "anstyle" version = "1.0.1" @@ -51,6 +65,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.72" @@ -98,31 +122,30 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.3.19" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5fd304a20bff958a57f04c4e96a2e7594cc4490a0e809cbd48bb6437edaa452d" +checksum = "ac495e00dcec98c83465d5ad66c5c4fabd652fd6686e7c6269b117e729a6f17b" dependencies = [ "clap_builder", ] [[package]] name = "clap_builder" -version = "4.3.19" +version = "4.4.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "01c6a3f08f1fe5662a35cfe393aec09c4df95f60ee93b7556505260f75eee9e1" +checksum = "c77ed9a32a62e6ca27175d00d29d05ca32e396ea1eb5fb01d8256b669cec7663" dependencies = [ - "anstream", + "anstream 0.6.4", "anstyle", "clap_lex", - "once_cell", "strsim", ] [[package]] name = "clap_lex" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" [[package]] name = "clap_mangen" @@ -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 8ee32fc..1af39ac 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.7", 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.7", features = ["default", "cargo"]} clap_mangen = "0.2.12" [features]