]> code.octet-stream.net Git - hashgood/blob - Cargo.lock
Show errors per hash byte rather than per nybble
[hashgood] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 4
4
5 [[package]]
6 name = "ansi_term"
7 version = "0.12.1"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
10 dependencies = [
11 "winapi",
12 ]
13
14 [[package]]
15 name = "atty"
16 version = "0.2.14"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
19 dependencies = [
20 "hermit-abi",
21 "libc",
22 "winapi",
23 ]
24
25 [[package]]
26 name = "bitflags"
27 version = "1.3.2"
28 source = "registry+https://github.com/rust-lang/crates.io-index"
29 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
30
31 [[package]]
32 name = "block-buffer"
33 version = "0.10.4"
34 source = "registry+https://github.com/rust-lang/crates.io-index"
35 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
36 dependencies = [
37 "generic-array",
38 ]
39
40 [[package]]
41 name = "cfg-if"
42 version = "1.0.0"
43 source = "registry+https://github.com/rust-lang/crates.io-index"
44 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
45
46 [[package]]
47 name = "clap"
48 version = "2.34.0"
49 source = "registry+https://github.com/rust-lang/crates.io-index"
50 checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
51 dependencies = [
52 "ansi_term",
53 "atty",
54 "bitflags",
55 "strsim",
56 "textwrap",
57 "unicode-width",
58 "vec_map",
59 ]
60
61 [[package]]
62 name = "cpufeatures"
63 version = "0.2.16"
64 source = "registry+https://github.com/rust-lang/crates.io-index"
65 checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
66 dependencies = [
67 "libc",
68 ]
69
70 [[package]]
71 name = "crypto-common"
72 version = "0.1.6"
73 source = "registry+https://github.com/rust-lang/crates.io-index"
74 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
75 dependencies = [
76 "generic-array",
77 "typenum",
78 ]
79
80 [[package]]
81 name = "digest"
82 version = "0.10.7"
83 source = "registry+https://github.com/rust-lang/crates.io-index"
84 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
85 dependencies = [
86 "block-buffer",
87 "crypto-common",
88 ]
89
90 [[package]]
91 name = "generic-array"
92 version = "0.14.7"
93 source = "registry+https://github.com/rust-lang/crates.io-index"
94 checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
95 dependencies = [
96 "typenum",
97 "version_check",
98 ]
99
100 [[package]]
101 name = "hashgood"
102 version = "0.4.0"
103 dependencies = [
104 "hex",
105 "md-5",
106 "sha1",
107 "sha2",
108 "structopt",
109 "termcolor",
110 ]
111
112 [[package]]
113 name = "heck"
114 version = "0.3.3"
115 source = "registry+https://github.com/rust-lang/crates.io-index"
116 checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
117 dependencies = [
118 "unicode-segmentation",
119 ]
120
121 [[package]]
122 name = "hermit-abi"
123 version = "0.1.19"
124 source = "registry+https://github.com/rust-lang/crates.io-index"
125 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
126 dependencies = [
127 "libc",
128 ]
129
130 [[package]]
131 name = "hex"
132 version = "0.4.3"
133 source = "registry+https://github.com/rust-lang/crates.io-index"
134 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
135
136 [[package]]
137 name = "lazy_static"
138 version = "1.5.0"
139 source = "registry+https://github.com/rust-lang/crates.io-index"
140 checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
141
142 [[package]]
143 name = "libc"
144 version = "0.2.167"
145 source = "registry+https://github.com/rust-lang/crates.io-index"
146 checksum = "09d6582e104315a817dff97f75133544b2e094ee22447d2acf4a74e189ba06fc"
147
148 [[package]]
149 name = "md-5"
150 version = "0.10.6"
151 source = "registry+https://github.com/rust-lang/crates.io-index"
152 checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
153 dependencies = [
154 "cfg-if",
155 "digest",
156 ]
157
158 [[package]]
159 name = "proc-macro-error"
160 version = "1.0.4"
161 source = "registry+https://github.com/rust-lang/crates.io-index"
162 checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
163 dependencies = [
164 "proc-macro-error-attr",
165 "proc-macro2",
166 "quote",
167 "syn",
168 "version_check",
169 ]
170
171 [[package]]
172 name = "proc-macro-error-attr"
173 version = "1.0.4"
174 source = "registry+https://github.com/rust-lang/crates.io-index"
175 checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
176 dependencies = [
177 "proc-macro2",
178 "quote",
179 "version_check",
180 ]
181
182 [[package]]
183 name = "proc-macro2"
184 version = "1.0.92"
185 source = "registry+https://github.com/rust-lang/crates.io-index"
186 checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
187 dependencies = [
188 "unicode-ident",
189 ]
190
191 [[package]]
192 name = "quote"
193 version = "1.0.37"
194 source = "registry+https://github.com/rust-lang/crates.io-index"
195 checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
196 dependencies = [
197 "proc-macro2",
198 ]
199
200 [[package]]
201 name = "sha1"
202 version = "0.10.6"
203 source = "registry+https://github.com/rust-lang/crates.io-index"
204 checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
205 dependencies = [
206 "cfg-if",
207 "cpufeatures",
208 "digest",
209 ]
210
211 [[package]]
212 name = "sha2"
213 version = "0.10.8"
214 source = "registry+https://github.com/rust-lang/crates.io-index"
215 checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
216 dependencies = [
217 "cfg-if",
218 "cpufeatures",
219 "digest",
220 ]
221
222 [[package]]
223 name = "strsim"
224 version = "0.8.0"
225 source = "registry+https://github.com/rust-lang/crates.io-index"
226 checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
227
228 [[package]]
229 name = "structopt"
230 version = "0.3.26"
231 source = "registry+https://github.com/rust-lang/crates.io-index"
232 checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
233 dependencies = [
234 "clap",
235 "lazy_static",
236 "structopt-derive",
237 ]
238
239 [[package]]
240 name = "structopt-derive"
241 version = "0.4.18"
242 source = "registry+https://github.com/rust-lang/crates.io-index"
243 checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
244 dependencies = [
245 "heck",
246 "proc-macro-error",
247 "proc-macro2",
248 "quote",
249 "syn",
250 ]
251
252 [[package]]
253 name = "syn"
254 version = "1.0.109"
255 source = "registry+https://github.com/rust-lang/crates.io-index"
256 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
257 dependencies = [
258 "proc-macro2",
259 "quote",
260 "unicode-ident",
261 ]
262
263 [[package]]
264 name = "termcolor"
265 version = "1.4.1"
266 source = "registry+https://github.com/rust-lang/crates.io-index"
267 checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
268 dependencies = [
269 "winapi-util",
270 ]
271
272 [[package]]
273 name = "textwrap"
274 version = "0.11.0"
275 source = "registry+https://github.com/rust-lang/crates.io-index"
276 checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
277 dependencies = [
278 "unicode-width",
279 ]
280
281 [[package]]
282 name = "typenum"
283 version = "1.17.0"
284 source = "registry+https://github.com/rust-lang/crates.io-index"
285 checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
286
287 [[package]]
288 name = "unicode-ident"
289 version = "1.0.14"
290 source = "registry+https://github.com/rust-lang/crates.io-index"
291 checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
292
293 [[package]]
294 name = "unicode-segmentation"
295 version = "1.12.0"
296 source = "registry+https://github.com/rust-lang/crates.io-index"
297 checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
298
299 [[package]]
300 name = "unicode-width"
301 version = "0.1.14"
302 source = "registry+https://github.com/rust-lang/crates.io-index"
303 checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
304
305 [[package]]
306 name = "vec_map"
307 version = "0.8.2"
308 source = "registry+https://github.com/rust-lang/crates.io-index"
309 checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
310
311 [[package]]
312 name = "version_check"
313 version = "0.9.5"
314 source = "registry+https://github.com/rust-lang/crates.io-index"
315 checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
316
317 [[package]]
318 name = "winapi"
319 version = "0.3.9"
320 source = "registry+https://github.com/rust-lang/crates.io-index"
321 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
322 dependencies = [
323 "winapi-i686-pc-windows-gnu",
324 "winapi-x86_64-pc-windows-gnu",
325 ]
326
327 [[package]]
328 name = "winapi-i686-pc-windows-gnu"
329 version = "0.4.0"
330 source = "registry+https://github.com/rust-lang/crates.io-index"
331 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
332
333 [[package]]
334 name = "winapi-util"
335 version = "0.1.9"
336 source = "registry+https://github.com/rust-lang/crates.io-index"
337 checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
338 dependencies = [
339 "windows-sys",
340 ]
341
342 [[package]]
343 name = "winapi-x86_64-pc-windows-gnu"
344 version = "0.4.0"
345 source = "registry+https://github.com/rust-lang/crates.io-index"
346 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
347
348 [[package]]
349 name = "windows-sys"
350 version = "0.59.0"
351 source = "registry+https://github.com/rust-lang/crates.io-index"
352 checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
353 dependencies = [
354 "windows-targets",
355 ]
356
357 [[package]]
358 name = "windows-targets"
359 version = "0.52.6"
360 source = "registry+https://github.com/rust-lang/crates.io-index"
361 checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
362 dependencies = [
363 "windows_aarch64_gnullvm",
364 "windows_aarch64_msvc",
365 "windows_i686_gnu",
366 "windows_i686_gnullvm",
367 "windows_i686_msvc",
368 "windows_x86_64_gnu",
369 "windows_x86_64_gnullvm",
370 "windows_x86_64_msvc",
371 ]
372
373 [[package]]
374 name = "windows_aarch64_gnullvm"
375 version = "0.52.6"
376 source = "registry+https://github.com/rust-lang/crates.io-index"
377 checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
378
379 [[package]]
380 name = "windows_aarch64_msvc"
381 version = "0.52.6"
382 source = "registry+https://github.com/rust-lang/crates.io-index"
383 checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
384
385 [[package]]
386 name = "windows_i686_gnu"
387 version = "0.52.6"
388 source = "registry+https://github.com/rust-lang/crates.io-index"
389 checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
390
391 [[package]]
392 name = "windows_i686_gnullvm"
393 version = "0.52.6"
394 source = "registry+https://github.com/rust-lang/crates.io-index"
395 checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
396
397 [[package]]
398 name = "windows_i686_msvc"
399 version = "0.52.6"
400 source = "registry+https://github.com/rust-lang/crates.io-index"
401 checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
402
403 [[package]]
404 name = "windows_x86_64_gnu"
405 version = "0.52.6"
406 source = "registry+https://github.com/rust-lang/crates.io-index"
407 checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
408
409 [[package]]
410 name = "windows_x86_64_gnullvm"
411 version = "0.52.6"
412 source = "registry+https://github.com/rust-lang/crates.io-index"
413 checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
414
415 [[package]]
416 name = "windows_x86_64_msvc"
417 version = "0.52.6"
418 source = "registry+https://github.com/rust-lang/crates.io-index"
419 checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"