From ced9741ea8c551b2b3d979cee55d3885a68d0cf8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Apr 2023 18:00:54 +0000 Subject: [PATCH] Bump clap from 4.1.6 to 4.1.14 Bumps [clap](https://github.com/clap-rs/clap) from 4.1.6 to 4.1.14. - [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.1.6...v4.1.14) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 61 +++++++++++++------------------------------- gnb-cu-cp/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 44 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f30b712..bbc2d26 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -363,40 +363,45 @@ dependencies = [ [[package]] name = "clap" -version = "4.1.6" +version = "4.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ec0b0588d44d4d63a87dbd75c136c166bbfd9a86a31cb89e09906521c7d3f5e3" +checksum = "906f7fe1da4185b7a282b2bc90172a496f9def1aca4545fe7526810741591e14" dependencies = [ - "bitflags", + "clap_builder", "clap_derive", + "once_cell", +] + +[[package]] +name = "clap_builder" +version = "4.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "351f9ad9688141ed83dfd8f5fb998a06225ef444b48ff4dc43de6d409b7fd10b" +dependencies = [ + "bitflags", "clap_lex", "is-terminal", - "once_cell", "strsim", "termcolor", ] [[package]] name = "clap_derive" -version = "4.1.0" +version = "4.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "684a277d672e91966334af371f1a7b5833f9aa00b07c84e92fbce95e00208ce8" +checksum = "81d7dc0031c3a59a04fc2ba395c8e2dd463cba1859275f065d225f6122221b45" dependencies = [ "heck", - "proc-macro-error", "proc-macro2 1.0.56", "quote 1.0.26", - "syn 1.0.107", + "syn 2.0.13", ] [[package]] name = "clap_lex" -version = "0.3.1" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "783fe232adfca04f90f56201b26d79682d4cd2625e0bc7290b95123afe558ade" -dependencies = [ - "os_str_bytes", -] +checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" [[package]] name = "codespan-reporting" @@ -1743,12 +1748,6 @@ dependencies = [ "winapi", ] -[[package]] -name = "os_str_bytes" -version = "6.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee" - [[package]] name = "parking" version = "2.0.0" @@ -1851,30 +1850,6 @@ dependencies = [ "toml_edit", ] -[[package]] -name = "proc-macro-error" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" -dependencies = [ - "proc-macro-error-attr", - "proc-macro2 1.0.56", - "quote 1.0.26", - "syn 1.0.107", - "version_check", -] - -[[package]] -name = "proc-macro-error-attr" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" -dependencies = [ - "proc-macro2 1.0.56", - "quote 1.0.26", - "version_check", -] - [[package]] name = "proc-macro-hack" version = "0.5.20+deprecated" diff --git a/gnb-cu-cp/Cargo.toml b/gnb-cu-cp/Cargo.toml index 7b0fb17..0648c02 100644 --- a/gnb-cu-cp/Cargo.toml +++ b/gnb-cu-cp/Cargo.toml @@ -33,5 +33,5 @@ hyper = {version = "0.14", features = ["full"]} serde_ignored = {version = "0.1.1"} url = {version = "2.1"} uuid = {version = "1.3", features = ["serde", "v4"]} -clap = { version = "4.1.6", features = ["derive"] } +clap = { version = "4.1.14", features = ["derive"] }