From 304fe01cc1ccbc49f8db9b78c774743d315d6b17 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 19 May 2023 18:39:31 +0000 Subject: [PATCH] fix(deps): update rust crate clap_complete to v4 --- Cargo.lock | 42 +++++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 38 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b26f415..e885c1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,6 +26,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "anstyle" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d" + [[package]] name = "async-attributes" version = "1.1.2" @@ -303,20 +309,40 @@ checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83" dependencies = [ "atty", "bitflags", - "clap_lex", + "clap_lex 0.2.4", "indexmap", "strsim", "termcolor", "textwrap", ] +[[package]] +name = "clap" +version = "4.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93aae7a4192245f70fe75dd9157fc7b4a5bf53e88d30bd4396f7d8f9284d5acc" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4f423e341edefb78c9caba2d9c7f7687d0e72e89df3ce3394554754393ac3990" +dependencies = [ + "anstyle", + "bitflags", + "clap_lex 0.5.0", +] + [[package]] name = "clap_complete" -version = "3.2.5" +version = "4.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8" +checksum = "a04ddfaacc3bc9e6ea67d024575fafc2a813027cf374b8f24f7bc233c6b6be12" dependencies = [ - "clap", + "clap 4.3.0", ] [[package]] @@ -328,6 +354,12 @@ dependencies = [ "os_str_bytes", ] +[[package]] +name = "clap_lex" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2da6da31387c7e4ef160ffab6d5e7f00c42626fe39aea70a7b0f1773f7dd6c1b" + [[package]] name = "concurrent-queue" version = "1.2.2" @@ -480,7 +512,7 @@ dependencies = [ "async-std", "bluetooth-serial-port-async", "blurz", - "clap", + "clap 3.2.8", "clap_complete", "galaxy_buds_rs", "human-panic", diff --git a/Cargo.toml b/Cargo.toml index 7bfef54..dd7b07f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,7 +15,7 @@ galaxy_buds_rs = { git = "https://github.com/JojiiOfficial/GalaxyBuds-rs" } #galaxy_buds_rs = "0.2.10" #galaxy_buds_rs = { path = "../GalaxyBuds-rs" } clap = { version = "3.2.8", features = ["std"] } -clap_complete = "3.2.5" +clap_complete = "4.3.0" async-std = { version = "1.12.0", features = ["attributes"] } bluetooth-serial-port-async = "0.6.3" blurz = "0.4.0"