summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorfxqnlr <[email protected]>2023-04-18 17:26:50 +0200
committerfxqnlr <[email protected]>2023-04-18 17:26:50 +0200
commit3047c83714b28432fb8b4b60261f761526eb1f2e (patch)
treef36c9c1e461b3e0d8fabbe21750d85e3783f022c /Cargo.lock
parent217b1bfaba0011aabf85c63912b53bcb8e5288cf (diff)
downloadmodlist-3047c83714b28432fb8b4b60261f761526eb1f2e.tar
modlist-3047c83714b28432fb8b4b60261f761526eb1f2e.tar.gz
modlist-3047c83714b28432fb8b4b60261f761526eb1f2e.zip
add shell completion
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock73
1 files changed, 46 insertions, 27 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5638eb6..f99cd87 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -39,42 +39,51 @@ dependencies = [
39 39
40[[package]] 40[[package]]
41name = "anstream" 41name = "anstream"
42version = "0.2.6" 42version = "0.3.0"
43source = "registry+https://github.com/rust-lang/crates.io-index" 43source = "registry+https://github.com/rust-lang/crates.io-index"
44checksum = "342258dd14006105c2b75ab1bd7543a03bdf0cfc94383303ac212a04939dff6f" 44checksum = "9e579a7752471abc2a8268df8b20005e3eadd975f585398f17efcfd8d4927371"
45dependencies = [ 45dependencies = [
46 "anstyle", 46 "anstyle",
47 "anstyle-parse", 47 "anstyle-parse",
48 "anstyle-query",
48 "anstyle-wincon", 49 "anstyle-wincon",
49 "concolor-override", 50 "colorchoice",
50 "concolor-query",
51 "is-terminal", 51 "is-terminal",
52 "utf8parse", 52 "utf8parse",
53] 53]
54 54
55[[package]] 55[[package]]
56name = "anstyle" 56name = "anstyle"
57version = "0.3.5" 57version = "1.0.0"
58source = "registry+https://github.com/rust-lang/crates.io-index" 58source = "registry+https://github.com/rust-lang/crates.io-index"
59checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2" 59checksum = "41ed9a86bf92ae6580e0a31281f65a1b1d867c0cc68d5346e2ae128dddfa6a7d"
60 60
61[[package]] 61[[package]]
62name = "anstyle-parse" 62name = "anstyle-parse"
63version = "0.1.1" 63version = "0.2.0"
64source = "registry+https://github.com/rust-lang/crates.io-index" 64source = "registry+https://github.com/rust-lang/crates.io-index"
65checksum = "a7d1bb534e9efed14f3e5f44e7dd1a4f709384023a4165199a4241e18dff0116" 65checksum = "e765fd216e48e067936442276d1d57399e37bce53c264d6fefbe298080cb57ee"
66dependencies = [ 66dependencies = [
67 "utf8parse", 67 "utf8parse",
68] 68]
69 69
70[[package]] 70[[package]]
71name = "anstyle-query"
72version = "1.0.0"
73source = "registry+https://github.com/rust-lang/crates.io-index"
74checksum = "5ca11d4be1bab0c8bc8734a9aa7bf4ee8316d462a08c6ac5052f888fef5b494b"
75dependencies = [
76 "windows-sys 0.48.0",
77]
78
79[[package]]
71name = "anstyle-wincon" 80name = "anstyle-wincon"
72version = "0.2.0" 81version = "1.0.0"
73source = "registry+https://github.com/rust-lang/crates.io-index" 82source = "registry+https://github.com/rust-lang/crates.io-index"
74checksum = "c3127af6145b149f3287bb9a0d10ad9c5692dba8c53ad48285e5bec4063834fa" 83checksum = "4bcd8291a340dd8ac70e18878bc4501dd7b4ff970cfa21c207d36ece51ea88fd"
75dependencies = [ 84dependencies = [
76 "anstyle", 85 "anstyle",
77 "windows-sys 0.45.0", 86 "windows-sys 0.48.0",
78] 87]
79 88
80[[package]] 89[[package]]
@@ -157,9 +166,9 @@ dependencies = [
157 166
158[[package]] 167[[package]]
159name = "clap" 168name = "clap"
160version = "4.2.1" 169version = "4.2.2"
161source = "registry+https://github.com/rust-lang/crates.io-index" 170source = "registry+https://github.com/rust-lang/crates.io-index"
162checksum = "046ae530c528f252094e4a77886ee1374437744b2bff1497aa898bbddbbb29b3" 171checksum = "9b802d85aaf3a1cdb02b224ba472ebdea62014fccfcb269b95a4d76443b5ee5a"
163dependencies = [ 172dependencies = [
164 "clap_builder", 173 "clap_builder",
165 "clap_derive", 174 "clap_derive",
@@ -168,9 +177,9 @@ dependencies = [
168 177
169[[package]] 178[[package]]
170name = "clap_builder" 179name = "clap_builder"
171version = "4.2.1" 180version = "4.2.2"
172source = "registry+https://github.com/rust-lang/crates.io-index" 181source = "registry+https://github.com/rust-lang/crates.io-index"
173checksum = "223163f58c9a40c3b0a43e1c4b50a9ce09f007ea2cb1ec258a687945b4b7929f" 182checksum = "14a1a858f532119338887a4b8e1af9c60de8249cd7bafd68036a489e261e37b6"
174dependencies = [ 183dependencies = [
175 "anstream", 184 "anstream",
176 "anstyle", 185 "anstyle",
@@ -180,6 +189,15 @@ dependencies = [
180] 189]
181 190
182[[package]] 191[[package]]
192name = "clap_complete"
193version = "4.2.0"
194source = "registry+https://github.com/rust-lang/crates.io-index"
195checksum = "01c22dcfb410883764b29953103d9ef7bb8fe21b3fa1158bc99986c2067294bd"
196dependencies = [
197 "clap",
198]
199
200[[package]]
183name = "clap_derive" 201name = "clap_derive"
184version = "4.2.0" 202version = "4.2.0"
185source = "registry+https://github.com/rust-lang/crates.io-index" 203source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -208,19 +226,10 @@ dependencies = [
208] 226]
209 227
210[[package]] 228[[package]]
211name = "concolor-override" 229name = "colorchoice"
212version = "1.0.0" 230version = "1.0.0"
213source = "registry+https://github.com/rust-lang/crates.io-index" 231source = "registry+https://github.com/rust-lang/crates.io-index"
214checksum = "a855d4a1978dc52fb0536a04d384c2c0c1aa273597f08b77c8c4d3b2eec6037f" 232checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
215
216[[package]]
217name = "concolor-query"
218version = "0.3.3"
219source = "registry+https://github.com/rust-lang/crates.io-index"
220checksum = "88d11d52c3d7ca2e6d0040212be9e4dbbcd78b6447f535b6b561f449427944cf"
221dependencies = [
222 "windows-sys 0.45.0",
223]
224 233
225[[package]] 234[[package]]
226name = "core-foundation" 235name = "core-foundation"
@@ -789,10 +798,11 @@ dependencies = [
789 798
790[[package]] 799[[package]]
791name = "modlist" 800name = "modlist"
792version = "0.11.1" 801version = "0.12.0"
793dependencies = [ 802dependencies = [
794 "chrono", 803 "chrono",
795 "clap", 804 "clap",
805 "clap_complete",
796 "dirs", 806 "dirs",
797 "error-chain", 807 "error-chain",
798 "futures-util", 808 "futures-util",
@@ -1661,6 +1671,15 @@ dependencies = [
1661] 1671]
1662 1672
1663[[package]] 1673[[package]]
1674name = "windows-sys"
1675version = "0.48.0"
1676source = "registry+https://github.com/rust-lang/crates.io-index"
1677checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
1678dependencies = [
1679 "windows-targets 0.48.0",
1680]
1681
1682[[package]]
1664name = "windows-targets" 1683name = "windows-targets"
1665version = "0.42.2" 1684version = "0.42.2"
1666source = "registry+https://github.com/rust-lang/crates.io-index" 1685source = "registry+https://github.com/rust-lang/crates.io-index"