diff --git a/Cargo.lock b/Cargo.lock index b26f415..a647220 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -26,6 +26,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "anstyle" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc" + [[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.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c918d541ef2913577a0f9566e9ce27cb35b6df072075769e0b26cb5a554520da" +dependencies = [ + "clap_builder", +] + +[[package]] +name = "clap_builder" +version = "4.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f3e7391dad68afb0c2ede1bf619f579a3dc9c2ec67f089baa397123a2f3d1eb" +dependencies = [ + "anstyle", + "clap_lex 0.7.0", +] + [[package]] name = "clap_complete" -version = "3.2.5" +version = "4.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3f7a2e0a962c45ce25afce14220bc24f9dade0a1787f185cecf96bfba7847cd8" +checksum = "885e4d7d5af40bfb99ae6f9433e292feac98d452dcb3ec3d25dfe7552b77da8c" dependencies = [ - "clap", + "clap 4.5.1", ] [[package]] @@ -328,6 +353,12 @@ dependencies = [ "os_str_bytes", ] +[[package]] +name = "clap_lex" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce" + [[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..3c1dd17 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.5.1" async-std = { version = "1.12.0", features = ["attributes"] } bluetooth-serial-port-async = "0.6.3" blurz = "0.4.0"