diff options
author | Christian Duerr <contact@christianduerr.com> | 2022-06-16 17:01:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-16 18:01:13 +0300 |
commit | 9f02fb95685f46c390148eeab760e3a0dcfa49a9 (patch) | |
tree | 50a05564188eaded4a3133560c5caeb7e8b1ddb1 /Cargo.lock | |
parent | ff7f74fd29945ec7913c7b99fd743298164c7888 (diff) | |
download | alacritty-9f02fb95685f46c390148eeab760e3a0dcfa49a9.tar.gz alacritty-9f02fb95685f46c390148eeab760e3a0dcfa49a9.zip |
Add value hints for clap file paths
This ensures that the generated completions properly suggest file paths
for arguments which accept them.
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 32 |
1 files changed, 19 insertions, 13 deletions
@@ -168,16 +168,16 @@ dependencies = [ [[package]] name = "clap" -version = "3.0.3" +version = "3.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "17a98d95cbe8abdf3bfe1a2bd4aa7215700403b79a0eb03cbddb017a5824e186" +checksum = "d53da17d37dba964b9b3ecb5c5a1f193a2762c700e6829201e645b9381c99dc7" dependencies = [ "atty", "bitflags", "clap_derive", + "clap_lex", "indexmap", - "lazy_static", - "os_str_bytes", + "once_cell", "strsim", "termcolor", "textwrap", @@ -185,18 +185,18 @@ dependencies = [ [[package]] name = "clap_complete" -version = "3.0.2" +version = "3.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a394f7ec0715b42a4e52b294984c27c9a61f77c8d82f7774c5198350be143f19" +checksum = "0f6ebaab5f25e4f0312dfa07cb30a755204b96e6531457c2cfdecfdf5f2adf40" dependencies = [ "clap", ] [[package]] name = "clap_derive" -version = "3.0.2" +version = "3.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "448c8b00367288ad41804ac7a9e0fe58f2324a36901cb5d6b6db58be86d1db8f" +checksum = "c11d40217d16aee8508cc8e5fde8b4ff24639758608e5374e731b53f85749fb9" dependencies = [ "heck", "proc-macro-error", @@ -206,6 +206,15 @@ dependencies = [ ] [[package]] +name = "clap_lex" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5538cd660450ebeb4234cfecf8f2284b844ffc4c50531e66d584ad5b91293613" +dependencies = [ + "os_str_bytes", +] + +[[package]] name = "clipboard-win" version = "3.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1201,9 +1210,6 @@ name = "os_str_bytes" version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8e22443d1643a904602595ba1cd8f7d896afe56d26712531c5ff73a15b2fbf64" -dependencies = [ - "memchr", -] [[package]] name = "osmesa-sys" @@ -1573,9 +1579,9 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.14.2" +version = "0.15.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" +checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb" [[package]] name = "thiserror" |