1
Fork 0
mirror of https://github.com/RGBCube/superfreq synced 2025-07-30 18:37:46 +00:00

xtask: add completion generation

This commit is contained in:
RGBCube 2025-06-14 23:19:54 +03:00
parent a341d08c45
commit 0e07241280
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
6 changed files with 147 additions and 17 deletions

29
Cargo.lock generated
View file

@ -117,6 +117,25 @@ dependencies = [
"strsim",
]
[[package]]
name = "clap_complete"
version = "4.5.54"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aad5b1b4de04fead402672b48897030eec1f3bfe1550776322f59f6d6e6a5677"
dependencies = [
"clap",
]
[[package]]
name = "clap_complete_nushell"
version = "4.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb8335b398d197fb3176efe9400c6c053a41733c26794316c73423d212b2f3d"
dependencies = [
"clap",
"clap_complete",
]
[[package]]
name = "clap_derive"
version = "4.5.32"
@ -625,6 +644,16 @@ dependencies = [
"memchr",
]
[[package]]
name = "xtask"
version = "0.4.0"
dependencies = [
"clap",
"clap_complete",
"clap_complete_nushell",
"watt",
]
[[package]]
name = "yansi"
version = "1.0.1"