diff --git a/Cargo.lock b/Cargo.lock index 9240946..9326c4d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -303,20 +303,39 @@ checksum = "190814073e85d238f31ff738fcb0bf6910cedeb73376c87cd69291028966fd83" dependencies = [ "atty", "bitflags", - "clap_lex", + "clap_lex 0.2.4", "indexmap", "strsim", "termcolor", "textwrap", ] +[[package]] +name = "clap" +version = "4.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "046ae530c528f252094e4a77886ee1374437744b2bff1497aa898bbddbbb29b3" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "223163f58c9a40c3b0a43e1c4b50a9ce09f007ea2cb1ec258a687945b4b7929f" +dependencies = [ + "bitflags", + "clap_lex 0.4.1", +] + [[package]] name = "clap_complete" -version = "3.2.3" +version = "4.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ead064480dfc4880a10764488415a97fdd36a4cf1bb022d372f02e8faf8386e1" +checksum = "01c22dcfb410883764b29953103d9ef7bb8fe21b3fa1158bc99986c2067294bd" dependencies = [ - "clap", + "clap 4.2.1", ] [[package]] @@ -328,6 +347,12 @@ dependencies = [ "os_str_bytes", ] +[[package]] +name = "clap_lex" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a2dd5a6fe8c6e3502f568a6353e5273bbb15193ad9a89e457b9970798efbea1" + [[package]] name = "concurrent-queue" version = "1.2.2" @@ -480,7 +505,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 f4c1213..1910506 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.3" +clap_complete = "4.2.0" async-std = { version = "1.12.0", features = ["attributes"] } bluetooth-serial-port-async = "0.6.3" blurz = "0.4.0"