diff --git a/Cargo.lock b/Cargo.lock index b26f415..cc3245b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,6 +26,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "anstyle" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87" + [[package]] name = "async-attributes" version = "1.1.2" @@ -303,20 +309,39 @@ checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83" dependencies = [ "atty", "bitflags", - "clap_lex", + "clap_lex 0.2.4", "indexmap", "strsim", "termcolor", "textwrap", ] +[[package]] +name = "clap" +version = "4.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfaff671f6b22ca62406885ece523383b9b64022e341e53e009a62ebc47a45f2" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.4.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a216b506622bb1d316cd51328dce24e07bdff4a6128a47c7e7fad11878d5adbb" +dependencies = [ + "anstyle", + "clap_lex 0.6.0", +] + [[package]] name = "clap_complete" -version = "3.2.5" +version = "4.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8" +checksum = "a51919c5608a32e34ea1d6be321ad070065e17613e168c5b6977024290f2630b" dependencies = [ - "clap", + "clap 4.4.11", ] [[package]] @@ -328,6 +353,12 @@ dependencies = [ "os_str_bytes", ] +[[package]] +name = "clap_lex" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1" + [[package]] name = "concurrent-queue" version = "1.2.2" @@ -480,7 +511,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..092d28b 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.4.5" async-std = { version = "1.12.0", features = ["attributes"] } bluetooth-serial-port-async = "0.6.3" blurz = "0.4.0"