From f61efa29bd280f867f8f9da20a072e23c5db8813 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Sun, 19 Mar 2023 11:12:50 +0000 Subject: [PATCH] Update Rust crate clap to 4.1.11 --- Cargo.lock | 14 ++++++++++---- crates/gitignore_inner/Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 33115c1..23198fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,6 +8,12 @@ version = "1.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" +[[package]] +name = "bitflags" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1" + [[package]] name = "cc" version = "1.0.77" @@ -22,11 +28,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.1.10" +version = "4.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ce38afc168d8665cfc75c7b1dd9672e50716a137f433f070991619744a67342a" +checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098" dependencies = [ - "bitflags", + "bitflags 2.0.2", "clap_lex", "is-terminal", "strsim", @@ -283,7 +289,7 @@ version = "0.36.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588" dependencies = [ - "bitflags", + "bitflags 1.3.2", "errno", "io-lifetimes", "libc", diff --git a/crates/gitignore_inner/Cargo.toml b/crates/gitignore_inner/Cargo.toml index 6763a9e..433ce8b 100644 --- a/crates/gitignore_inner/Cargo.toml +++ b/crates/gitignore_inner/Cargo.toml @@ -16,7 +16,7 @@ categories = ["command-line-interface"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -clap = { version = "4.1.10", features = ["env", "unicode", "string"] } +clap = { version = "4.1.11", features = ["env", "unicode", "string"] } console = "0.15.5" eyre = "0.6.8" tracing = { version = "0.1.37", features = ["log"] }