From a4c40c10cc38b14ad35a30d1c58fac52e641c020 Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Fri, 24 Mar 2023 22:15:42 +0000 Subject: [PATCH] Update Rust crate clap to 4.1.13 --- Cargo.lock | 14 ++++---------- crates/gitignore_inner/Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2373a02..9eb975f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8,12 +8,6 @@ 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" @@ -28,11 +22,11 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" [[package]] name = "clap" -version = "4.1.12" +version = "4.1.13" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "76e21918af71fb4bcd813230cf549e33d14f73d0326b932b630ce2930332b131" +checksum = "3c911b090850d79fc64fe9ea01e28e465f65e821e08813ced95bced72f7a8a9b" dependencies = [ - "bitflags 2.0.2", + "bitflags", "clap_lex", "is-terminal", "strsim", @@ -289,7 +283,7 @@ version = "0.36.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a3807b5d10909833d3e9acd1eb5fb988f79376ff10fce42937de71a449c4c588" dependencies = [ - "bitflags 1.3.2", + "bitflags", "errno", "io-lifetimes", "libc", diff --git a/crates/gitignore_inner/Cargo.toml b/crates/gitignore_inner/Cargo.toml index f62f0bc..eff2a87 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.12", features = ["env", "unicode", "string"] } +clap = { version = "4.1.13", features = ["env", "unicode", "string"] } console = "0.15.5" eyre = "0.6.8" tracing = { version = "0.1.37", features = ["log"] }