ore-rs 0.7.0-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,741 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aes"
7
+ version = "0.8.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "433cfd6710c9986c576a25ca913c39d66a6474107b406f34f91d4a8923395241"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "cipher 0.4.3",
13
+ "cpufeatures",
14
+ "zeroize",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "0.7.18"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "ansi_term"
28
+ version = "0.12.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
31
+ dependencies = [
32
+ "winapi",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "atty"
37
+ version = "0.2.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
40
+ dependencies = [
41
+ "hermit-abi",
42
+ "libc",
43
+ "winapi",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "autocfg"
48
+ version = "1.1.0"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
51
+
52
+ [[package]]
53
+ name = "bindgen"
54
+ version = "0.59.2"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
57
+ dependencies = [
58
+ "bitflags",
59
+ "cexpr",
60
+ "clang-sys",
61
+ "clap",
62
+ "env_logger",
63
+ "lazy_static 1.4.0",
64
+ "lazycell",
65
+ "log",
66
+ "peeking_take_while",
67
+ "proc-macro2",
68
+ "quote",
69
+ "regex",
70
+ "rustc-hash",
71
+ "shlex",
72
+ "which",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "bitflags"
77
+ version = "1.3.2"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
80
+
81
+ [[package]]
82
+ name = "block-modes"
83
+ version = "0.8.1"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e"
86
+ dependencies = [
87
+ "block-padding",
88
+ "cipher 0.3.0",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "block-padding"
93
+ version = "0.2.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
96
+
97
+ [[package]]
98
+ name = "byteorder"
99
+ version = "1.4.3"
100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
101
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
102
+
103
+ [[package]]
104
+ name = "cexpr"
105
+ version = "0.6.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
108
+ dependencies = [
109
+ "nom",
110
+ ]
111
+
112
+ [[package]]
113
+ name = "cfg-if"
114
+ version = "1.0.0"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
117
+
118
+ [[package]]
119
+ name = "cipher"
120
+ version = "0.3.0"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
123
+ dependencies = [
124
+ "generic-array",
125
+ ]
126
+
127
+ [[package]]
128
+ name = "cipher"
129
+ version = "0.4.3"
130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
131
+ checksum = "d1873270f8f7942c191139cb8a40fd228da6c3fd2fc376d7e92d47aa14aeb59e"
132
+ dependencies = [
133
+ "crypto-common",
134
+ "inout",
135
+ ]
136
+
137
+ [[package]]
138
+ name = "clang-sys"
139
+ version = "1.3.1"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "4cc00842eed744b858222c4c9faf7243aafc6d33f92f96935263ef4d8a41ce21"
142
+ dependencies = [
143
+ "glob",
144
+ "libc",
145
+ "libloading",
146
+ ]
147
+
148
+ [[package]]
149
+ name = "clap"
150
+ version = "2.34.0"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
153
+ dependencies = [
154
+ "ansi_term",
155
+ "atty",
156
+ "bitflags",
157
+ "strsim",
158
+ "textwrap",
159
+ "unicode-width",
160
+ "vec_map",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "cpufeatures"
165
+ version = "0.2.2"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
168
+ dependencies = [
169
+ "libc",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "crypto-common"
174
+ version = "0.1.6"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
177
+ dependencies = [
178
+ "generic-array",
179
+ "typenum",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "either"
184
+ version = "1.6.1"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
187
+
188
+ [[package]]
189
+ name = "env_logger"
190
+ version = "0.9.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
193
+ dependencies = [
194
+ "atty",
195
+ "humantime",
196
+ "log",
197
+ "regex",
198
+ "termcolor",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "generic-array"
203
+ version = "0.14.5"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
206
+ dependencies = [
207
+ "typenum",
208
+ "version_check",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "getrandom"
213
+ version = "0.2.8"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
216
+ dependencies = [
217
+ "cfg-if",
218
+ "libc",
219
+ "wasi",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "glob"
224
+ version = "0.3.0"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
227
+
228
+ [[package]]
229
+ name = "hermit-abi"
230
+ version = "0.1.19"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
233
+ dependencies = [
234
+ "libc",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "hex"
239
+ version = "0.4.3"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
242
+
243
+ [[package]]
244
+ name = "hex-literal"
245
+ version = "0.3.4"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "7ebdb29d2ea9ed0083cd8cece49bbd968021bd99b0849edb4a9a7ee0fdf6a4e0"
248
+
249
+ [[package]]
250
+ name = "humantime"
251
+ version = "2.1.0"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
254
+
255
+ [[package]]
256
+ name = "inout"
257
+ version = "0.1.3"
258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
259
+ checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
260
+ dependencies = [
261
+ "generic-array",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "lazy_static"
266
+ version = "0.2.11"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73"
269
+
270
+ [[package]]
271
+ name = "lazy_static"
272
+ version = "1.4.0"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
275
+
276
+ [[package]]
277
+ name = "lazycell"
278
+ version = "1.3.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
281
+
282
+ [[package]]
283
+ name = "libc"
284
+ version = "0.2.125"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "5916d2ae698f6de9bfb891ad7a8d65c09d232dc58cc4ac433c7da3b2fd84bc2b"
287
+
288
+ [[package]]
289
+ name = "libloading"
290
+ version = "0.7.3"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
293
+ dependencies = [
294
+ "cfg-if",
295
+ "winapi",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "log"
300
+ version = "0.4.16"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "6389c490849ff5bc16be905ae24bc913a9c8892e19b2341dbc175e14c341c2b8"
303
+ dependencies = [
304
+ "cfg-if",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "memchr"
309
+ version = "2.5.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
312
+
313
+ [[package]]
314
+ name = "minimal-lexical"
315
+ version = "0.2.1"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
318
+
319
+ [[package]]
320
+ name = "nom"
321
+ version = "7.1.1"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
324
+ dependencies = [
325
+ "memchr",
326
+ "minimal-lexical",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "num"
331
+ version = "0.4.0"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "43db66d1170d347f9a065114077f7dccb00c1b9478c89384490a3425279a4606"
334
+ dependencies = [
335
+ "num-bigint",
336
+ "num-complex",
337
+ "num-integer",
338
+ "num-iter",
339
+ "num-rational",
340
+ "num-traits",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "num-bigint"
345
+ version = "0.4.3"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
348
+ dependencies = [
349
+ "autocfg",
350
+ "num-integer",
351
+ "num-traits",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "num-complex"
356
+ version = "0.4.1"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "97fbc387afefefd5e9e39493299f3069e14a140dd34dc19b4c1c1a8fddb6a790"
359
+ dependencies = [
360
+ "num-traits",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "num-integer"
365
+ version = "0.1.45"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
368
+ dependencies = [
369
+ "autocfg",
370
+ "num-traits",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "num-iter"
375
+ version = "0.1.43"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
378
+ dependencies = [
379
+ "autocfg",
380
+ "num-integer",
381
+ "num-traits",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "num-rational"
386
+ version = "0.4.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "d41702bd167c2df5520b384281bc111a4b5efcf7fbc4c9c222c815b07e0a6a6a"
389
+ dependencies = [
390
+ "autocfg",
391
+ "num-bigint",
392
+ "num-integer",
393
+ "num-traits",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "num-traits"
398
+ version = "0.2.14"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
401
+ dependencies = [
402
+ "autocfg",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "ore-encoding-rs"
407
+ version = "0.23.3"
408
+ source = "git+https://github.com/cipherstash/ore_encoding.rs#b970db1a6a12323d15d83cf364e205a5f1c0a71f"
409
+ dependencies = [
410
+ "num",
411
+ "siphasher",
412
+ "unicode-normalization",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "ore-rs"
417
+ version = "0.0.0"
418
+ dependencies = [
419
+ "lazy_static 0.2.11",
420
+ "ore-encoding-rs",
421
+ "ore-rs 0.6.0",
422
+ "rb-sys",
423
+ "rutie",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "ore-rs"
428
+ version = "0.6.0"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "61794d627e87705e7a1c19ca5dc0023167db6ca4b9fc887561afa5a21b3dbe9e"
431
+ dependencies = [
432
+ "aes",
433
+ "block-modes",
434
+ "byteorder",
435
+ "hex",
436
+ "hex-literal",
437
+ "lazy_static 1.4.0",
438
+ "num",
439
+ "rand",
440
+ "rand_chacha",
441
+ "subtle-ng",
442
+ "zeroize",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "peeking_take_while"
447
+ version = "0.1.2"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
450
+
451
+ [[package]]
452
+ name = "pkg-config"
453
+ version = "0.3.25"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "1df8c4ec4b0627e53bdf214615ad287367e482558cf84b109250b37464dc03ae"
456
+
457
+ [[package]]
458
+ name = "ppv-lite86"
459
+ version = "0.2.16"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
462
+
463
+ [[package]]
464
+ name = "proc-macro2"
465
+ version = "1.0.37"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "ec757218438d5fda206afc041538b2f6d889286160d649a86a24d37e1235afd1"
468
+ dependencies = [
469
+ "unicode-xid",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "quote"
474
+ version = "1.0.18"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "a1feb54ed693b93a84e14094943b84b7c4eae204c512b7ccb95ab0c66d278ad1"
477
+ dependencies = [
478
+ "proc-macro2",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "rand"
483
+ version = "0.8.5"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
486
+ dependencies = [
487
+ "libc",
488
+ "rand_chacha",
489
+ "rand_core",
490
+ ]
491
+
492
+ [[package]]
493
+ name = "rand_chacha"
494
+ version = "0.3.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
497
+ dependencies = [
498
+ "ppv-lite86",
499
+ "rand_core",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "rand_core"
504
+ version = "0.6.3"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
507
+ dependencies = [
508
+ "getrandom",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "rb-sys"
513
+ version = "0.8.1"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "4db52af35291b64ce86f23f755b4576c20e3063b517269252b2f8cc883ca00e6"
516
+ dependencies = [
517
+ "bindgen",
518
+ "libc",
519
+ "pkg-config",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "regex"
524
+ version = "1.5.5"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
527
+ dependencies = [
528
+ "aho-corasick",
529
+ "memchr",
530
+ "regex-syntax",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "regex-syntax"
535
+ version = "0.6.25"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
538
+
539
+ [[package]]
540
+ name = "rustc-hash"
541
+ version = "1.1.0"
542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
543
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
544
+
545
+ [[package]]
546
+ name = "rutie"
547
+ version = "0.8.4"
548
+ source = "git+https://github.com/mpalmer/rutie?branch=rb_sys#c7b16b35d20c688b32b3f4092ddc6202dd9e2433"
549
+ dependencies = [
550
+ "lazy_static 1.4.0",
551
+ "libc",
552
+ "rb-sys",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "shlex"
557
+ version = "1.1.0"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
560
+
561
+ [[package]]
562
+ name = "siphasher"
563
+ version = "0.3.10"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
566
+
567
+ [[package]]
568
+ name = "strsim"
569
+ version = "0.8.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
572
+
573
+ [[package]]
574
+ name = "subtle-ng"
575
+ version = "2.5.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "734676eb262c623cec13c3155096e08d1f8f29adce39ba17948b18dad1e54142"
578
+
579
+ [[package]]
580
+ name = "syn"
581
+ version = "1.0.94"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "a07e33e919ebcd69113d5be0e4d70c5707004ff45188910106854f38b960df4a"
584
+ dependencies = [
585
+ "proc-macro2",
586
+ "quote",
587
+ "unicode-xid",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "synstructure"
592
+ version = "0.12.6"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
595
+ dependencies = [
596
+ "proc-macro2",
597
+ "quote",
598
+ "syn",
599
+ "unicode-xid",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "termcolor"
604
+ version = "1.1.3"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
607
+ dependencies = [
608
+ "winapi-util",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "textwrap"
613
+ version = "0.11.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
616
+ dependencies = [
617
+ "unicode-width",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "tinyvec"
622
+ version = "1.6.0"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
625
+ dependencies = [
626
+ "tinyvec_macros",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "tinyvec_macros"
631
+ version = "0.1.0"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
634
+
635
+ [[package]]
636
+ name = "typenum"
637
+ version = "1.15.0"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
640
+
641
+ [[package]]
642
+ name = "unicode-normalization"
643
+ version = "0.1.19"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
646
+ dependencies = [
647
+ "tinyvec",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "unicode-width"
652
+ version = "0.1.9"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
655
+
656
+ [[package]]
657
+ name = "unicode-xid"
658
+ version = "0.2.2"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
661
+
662
+ [[package]]
663
+ name = "vec_map"
664
+ version = "0.8.2"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
667
+
668
+ [[package]]
669
+ name = "version_check"
670
+ version = "0.9.4"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
673
+
674
+ [[package]]
675
+ name = "wasi"
676
+ version = "0.11.0+wasi-snapshot-preview1"
677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
678
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
679
+
680
+ [[package]]
681
+ name = "which"
682
+ version = "4.2.5"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
685
+ dependencies = [
686
+ "either",
687
+ "lazy_static 1.4.0",
688
+ "libc",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "winapi"
693
+ version = "0.3.9"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
696
+ dependencies = [
697
+ "winapi-i686-pc-windows-gnu",
698
+ "winapi-x86_64-pc-windows-gnu",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "winapi-i686-pc-windows-gnu"
703
+ version = "0.4.0"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
706
+
707
+ [[package]]
708
+ name = "winapi-util"
709
+ version = "0.1.5"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
712
+ dependencies = [
713
+ "winapi",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "winapi-x86_64-pc-windows-gnu"
718
+ version = "0.4.0"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
721
+
722
+ [[package]]
723
+ name = "zeroize"
724
+ version = "1.5.7"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
727
+ dependencies = [
728
+ "zeroize_derive",
729
+ ]
730
+
731
+ [[package]]
732
+ name = "zeroize_derive"
733
+ version = "1.3.3"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "44bf07cb3e50ea2003396695d58bf46bc9887a1f362260446fad6bc4e79bd36c"
736
+ dependencies = [
737
+ "proc-macro2",
738
+ "quote",
739
+ "syn",
740
+ "synstructure",
741
+ ]