tokenizers 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/Cargo.lock ADDED
@@ -0,0 +1,1891 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "0.7.15"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "7404febffaa47dac81aa44dba71523c9d069b1bdc50a77db41195149e17f68e5"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "ansi_term"
22
+ version = "0.12.1"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
25
+ dependencies = [
26
+ "winapi",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "arrayvec"
31
+ version = "0.5.2"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
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 = "base64"
54
+ version = "0.12.3"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "3441f0f7b02788e948e47f457ca01f1d7e6d92c693bc132c22b087d3141c03ff"
57
+
58
+ [[package]]
59
+ name = "base64"
60
+ version = "0.13.0"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
63
+
64
+ [[package]]
65
+ name = "bitflags"
66
+ version = "1.3.2"
67
+ source = "registry+https://github.com/rust-lang/crates.io-index"
68
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
69
+
70
+ [[package]]
71
+ name = "bitvec"
72
+ version = "0.19.6"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "55f93d0ef3363c364d5976646a38f04cf67cfe1d4c8d160cdea02cab2c116b33"
75
+ dependencies = [
76
+ "funty",
77
+ "radium",
78
+ "tap",
79
+ "wyz",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "block-buffer"
84
+ version = "0.10.2"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
87
+ dependencies = [
88
+ "generic-array",
89
+ ]
90
+
91
+ [[package]]
92
+ name = "bumpalo"
93
+ version = "3.9.1"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "a4a45a46ab1f2412e53d3a0ade76ffad2025804294569aae387231a0cd6e0899"
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 = "bytes"
105
+ version = "1.1.0"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
108
+
109
+ [[package]]
110
+ name = "bzip2"
111
+ version = "0.4.3"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
114
+ dependencies = [
115
+ "bzip2-sys",
116
+ "libc",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "bzip2-sys"
121
+ version = "0.1.11+1.0.8"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
124
+ dependencies = [
125
+ "cc",
126
+ "libc",
127
+ "pkg-config",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "cached-path"
132
+ version = "0.5.3"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "5f1c56d30236522ab3393a08746b138d4e16372001f42d29c88d513aeb8ab7ef"
135
+ dependencies = [
136
+ "flate2",
137
+ "fs2",
138
+ "glob",
139
+ "indicatif 0.16.2",
140
+ "log",
141
+ "rand 0.8.5",
142
+ "reqwest",
143
+ "serde",
144
+ "serde_json",
145
+ "sha2",
146
+ "tar",
147
+ "tempfile",
148
+ "thiserror",
149
+ "zip",
150
+ "zip-extensions",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "cc"
155
+ version = "1.0.73"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
158
+
159
+ [[package]]
160
+ name = "cfg-if"
161
+ version = "1.0.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
164
+
165
+ [[package]]
166
+ name = "clap"
167
+ version = "2.34.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
170
+ dependencies = [
171
+ "ansi_term",
172
+ "atty",
173
+ "bitflags",
174
+ "strsim 0.8.0",
175
+ "textwrap",
176
+ "unicode-width",
177
+ "vec_map",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "console"
182
+ version = "0.15.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "a28b32d32ca44b70c3e4acd7db1babf555fa026e385fb95f18028f88848b3c31"
185
+ dependencies = [
186
+ "encode_unicode",
187
+ "libc",
188
+ "once_cell",
189
+ "regex",
190
+ "terminal_size",
191
+ "unicode-width",
192
+ "winapi",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "core-foundation"
197
+ version = "0.9.3"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
200
+ dependencies = [
201
+ "core-foundation-sys",
202
+ "libc",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "core-foundation-sys"
207
+ version = "0.8.3"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
210
+
211
+ [[package]]
212
+ name = "cpufeatures"
213
+ version = "0.2.2"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
216
+ dependencies = [
217
+ "libc",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "crc32fast"
222
+ version = "1.3.2"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
225
+ dependencies = [
226
+ "cfg-if",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "crossbeam-channel"
231
+ version = "0.5.4"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "5aaa7bd5fb665c6864b5f963dd9097905c54125909c7aa94c9e18507cdbe6c53"
234
+ dependencies = [
235
+ "cfg-if",
236
+ "crossbeam-utils",
237
+ ]
238
+
239
+ [[package]]
240
+ name = "crossbeam-deque"
241
+ version = "0.8.1"
242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
243
+ checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
244
+ dependencies = [
245
+ "cfg-if",
246
+ "crossbeam-epoch",
247
+ "crossbeam-utils",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "crossbeam-epoch"
252
+ version = "0.9.8"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "1145cf131a2c6ba0615079ab6a638f7e1973ac9c2634fcbeaaad6114246efe8c"
255
+ dependencies = [
256
+ "autocfg",
257
+ "cfg-if",
258
+ "crossbeam-utils",
259
+ "lazy_static",
260
+ "memoffset",
261
+ "scopeguard",
262
+ ]
263
+
264
+ [[package]]
265
+ name = "crossbeam-utils"
266
+ version = "0.8.8"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "0bf124c720b7686e3c2663cf54062ab0f68a88af2fb6a030e87e30bf721fcb38"
269
+ dependencies = [
270
+ "cfg-if",
271
+ "lazy_static",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "crypto-common"
276
+ version = "0.1.3"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "57952ca27b5e3606ff4dd79b0020231aaf9d6aa76dc05fd30137538c50bd3ce8"
279
+ dependencies = [
280
+ "generic-array",
281
+ "typenum",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "darling"
286
+ version = "0.10.2"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
289
+ dependencies = [
290
+ "darling_core",
291
+ "darling_macro",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "darling_core"
296
+ version = "0.10.2"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
299
+ dependencies = [
300
+ "fnv",
301
+ "ident_case",
302
+ "proc-macro2",
303
+ "quote",
304
+ "strsim 0.9.3",
305
+ "syn",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "darling_macro"
310
+ version = "0.10.2"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
313
+ dependencies = [
314
+ "darling_core",
315
+ "quote",
316
+ "syn",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "derive_builder"
321
+ version = "0.9.0"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
324
+ dependencies = [
325
+ "darling",
326
+ "derive_builder_core",
327
+ "proc-macro2",
328
+ "quote",
329
+ "syn",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "derive_builder_core"
334
+ version = "0.9.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
337
+ dependencies = [
338
+ "darling",
339
+ "proc-macro2",
340
+ "quote",
341
+ "syn",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "digest"
346
+ version = "0.10.3"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
349
+ dependencies = [
350
+ "block-buffer",
351
+ "crypto-common",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "dirs"
356
+ version = "3.0.2"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309"
359
+ dependencies = [
360
+ "dirs-sys",
361
+ ]
362
+
363
+ [[package]]
364
+ name = "dirs-sys"
365
+ version = "0.3.7"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
368
+ dependencies = [
369
+ "libc",
370
+ "redox_users",
371
+ "winapi",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "either"
376
+ version = "1.6.1"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
379
+
380
+ [[package]]
381
+ name = "encode_unicode"
382
+ version = "0.3.6"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
385
+
386
+ [[package]]
387
+ name = "encoding_rs"
388
+ version = "0.8.30"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "7896dc8abb250ffdda33912550faa54c88ec8b998dec0b2c55ab224921ce11df"
391
+ dependencies = [
392
+ "cfg-if",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "esaxx-rs"
397
+ version = "0.1.7"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "6f4617b351b734e97a3dd32022a721471349aa3038d4132beee8568cdfa7e716"
400
+ dependencies = [
401
+ "cc",
402
+ ]
403
+
404
+ [[package]]
405
+ name = "fastrand"
406
+ version = "1.7.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "c3fcf0cee53519c866c09b5de1f6c56ff9d647101f81c1964fa632e148896cdf"
409
+ dependencies = [
410
+ "instant",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "filetime"
415
+ version = "0.2.15"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "975ccf83d8d9d0d84682850a38c8169027be83368805971cc4f238c2b245bc98"
418
+ dependencies = [
419
+ "cfg-if",
420
+ "libc",
421
+ "redox_syscall",
422
+ "winapi",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "flate2"
427
+ version = "1.0.22"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "1e6988e897c1c9c485f43b47a529cef42fde0547f9d8d41a7062518f1d8fc53f"
430
+ dependencies = [
431
+ "cfg-if",
432
+ "crc32fast",
433
+ "libc",
434
+ "miniz_oxide",
435
+ ]
436
+
437
+ [[package]]
438
+ name = "fnv"
439
+ version = "1.0.7"
440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
441
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
442
+
443
+ [[package]]
444
+ name = "foreign-types"
445
+ version = "0.3.2"
446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
447
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
448
+ dependencies = [
449
+ "foreign-types-shared",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "foreign-types-shared"
454
+ version = "0.1.1"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
457
+
458
+ [[package]]
459
+ name = "form_urlencoded"
460
+ version = "1.0.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
463
+ dependencies = [
464
+ "matches",
465
+ "percent-encoding",
466
+ ]
467
+
468
+ [[package]]
469
+ name = "fs2"
470
+ version = "0.4.3"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
473
+ dependencies = [
474
+ "libc",
475
+ "winapi",
476
+ ]
477
+
478
+ [[package]]
479
+ name = "funty"
480
+ version = "1.1.0"
481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
482
+ checksum = "fed34cd105917e91daa4da6b3728c47b068749d6a62c59811f06ed2ac71d9da7"
483
+
484
+ [[package]]
485
+ name = "futures-channel"
486
+ version = "0.3.21"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
489
+ dependencies = [
490
+ "futures-core",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "futures-core"
495
+ version = "0.3.21"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
498
+
499
+ [[package]]
500
+ name = "futures-io"
501
+ version = "0.3.21"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
504
+
505
+ [[package]]
506
+ name = "futures-sink"
507
+ version = "0.3.21"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
510
+
511
+ [[package]]
512
+ name = "futures-task"
513
+ version = "0.3.21"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
516
+
517
+ [[package]]
518
+ name = "futures-util"
519
+ version = "0.3.21"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
522
+ dependencies = [
523
+ "futures-core",
524
+ "futures-io",
525
+ "futures-task",
526
+ "memchr",
527
+ "pin-project-lite",
528
+ "pin-utils",
529
+ "slab",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "generic-array"
534
+ version = "0.14.5"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
537
+ dependencies = [
538
+ "typenum",
539
+ "version_check",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "getrandom"
544
+ version = "0.1.16"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
547
+ dependencies = [
548
+ "cfg-if",
549
+ "libc",
550
+ "wasi 0.9.0+wasi-snapshot-preview1",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "getrandom"
555
+ version = "0.2.5"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "d39cd93900197114fa1fcb7ae84ca742095eed9442088988ae74fa744e930e77"
558
+ dependencies = [
559
+ "cfg-if",
560
+ "libc",
561
+ "wasi 0.10.2+wasi-snapshot-preview1",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "glob"
566
+ version = "0.3.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
569
+
570
+ [[package]]
571
+ name = "h2"
572
+ version = "0.3.12"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "62eeb471aa3e3c9197aa4bfeabfe02982f6dc96f750486c0bb0009ac58b26d2b"
575
+ dependencies = [
576
+ "bytes",
577
+ "fnv",
578
+ "futures-core",
579
+ "futures-sink",
580
+ "futures-util",
581
+ "http",
582
+ "indexmap",
583
+ "slab",
584
+ "tokio",
585
+ "tokio-util",
586
+ "tracing",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "hashbrown"
591
+ version = "0.11.2"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
594
+
595
+ [[package]]
596
+ name = "hermit-abi"
597
+ version = "0.1.19"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
600
+ dependencies = [
601
+ "libc",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "http"
606
+ version = "0.2.6"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "31f4c6746584866f0feabcc69893c5b51beef3831656a968ed7ae254cdc4fd03"
609
+ dependencies = [
610
+ "bytes",
611
+ "fnv",
612
+ "itoa",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "http-body"
617
+ version = "0.4.4"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
620
+ dependencies = [
621
+ "bytes",
622
+ "http",
623
+ "pin-project-lite",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "httparse"
628
+ version = "1.6.0"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "9100414882e15fb7feccb4897e5f0ff0ff1ca7d1a86a23208ada4d7a18e6c6c4"
631
+
632
+ [[package]]
633
+ name = "httpdate"
634
+ version = "1.0.2"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
637
+
638
+ [[package]]
639
+ name = "hyper"
640
+ version = "0.14.17"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "043f0e083e9901b6cc658a77d1eb86f4fc650bbb977a4337dd63192826aa85dd"
643
+ dependencies = [
644
+ "bytes",
645
+ "futures-channel",
646
+ "futures-core",
647
+ "futures-util",
648
+ "h2",
649
+ "http",
650
+ "http-body",
651
+ "httparse",
652
+ "httpdate",
653
+ "itoa",
654
+ "pin-project-lite",
655
+ "socket2",
656
+ "tokio",
657
+ "tower-service",
658
+ "tracing",
659
+ "want",
660
+ ]
661
+
662
+ [[package]]
663
+ name = "hyper-tls"
664
+ version = "0.5.0"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
667
+ dependencies = [
668
+ "bytes",
669
+ "hyper",
670
+ "native-tls",
671
+ "tokio",
672
+ "tokio-native-tls",
673
+ ]
674
+
675
+ [[package]]
676
+ name = "ident_case"
677
+ version = "1.0.1"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
680
+
681
+ [[package]]
682
+ name = "idna"
683
+ version = "0.2.3"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
686
+ dependencies = [
687
+ "matches",
688
+ "unicode-bidi",
689
+ "unicode-normalization",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "indexmap"
694
+ version = "1.8.0"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "282a6247722caba404c065016bbfa522806e51714c34f5dfc3e4a3a46fcb4223"
697
+ dependencies = [
698
+ "autocfg",
699
+ "hashbrown",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "indicatif"
704
+ version = "0.15.0"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4"
707
+ dependencies = [
708
+ "console",
709
+ "lazy_static",
710
+ "number_prefix 0.3.0",
711
+ "regex",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "indicatif"
716
+ version = "0.16.2"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
719
+ dependencies = [
720
+ "console",
721
+ "lazy_static",
722
+ "number_prefix 0.4.0",
723
+ "regex",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "instant"
728
+ version = "0.1.12"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
731
+ dependencies = [
732
+ "cfg-if",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "ipnet"
737
+ version = "2.4.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "35e70ee094dc02fd9c13fdad4940090f22dbd6ac7c9e7094a46cf0232a50bc7c"
740
+
741
+ [[package]]
742
+ name = "itertools"
743
+ version = "0.8.2"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
746
+ dependencies = [
747
+ "either",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "itertools"
752
+ version = "0.9.0"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
755
+ dependencies = [
756
+ "either",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "itoa"
761
+ version = "1.0.1"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "1aab8fc367588b89dcee83ab0fd66b72b50b72fa1904d7095045ace2b0c81c35"
764
+
765
+ [[package]]
766
+ name = "js-sys"
767
+ version = "0.3.56"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "a38fc24e30fd564ce974c02bf1d337caddff65be6cc4735a1f7eab22a7440f04"
770
+ dependencies = [
771
+ "wasm-bindgen",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "lazy_static"
776
+ version = "1.4.0"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
779
+
780
+ [[package]]
781
+ name = "lexical-core"
782
+ version = "0.7.6"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "6607c62aa161d23d17a9072cc5da0be67cdfc89d3afb1e8d9c842bebc2525ffe"
785
+ dependencies = [
786
+ "arrayvec",
787
+ "bitflags",
788
+ "cfg-if",
789
+ "ryu",
790
+ "static_assertions",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "libc"
795
+ version = "0.2.121"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "efaa7b300f3b5fe8eb6bf21ce3895e1751d9665086af2d64b42f19701015ff4f"
798
+
799
+ [[package]]
800
+ name = "log"
801
+ version = "0.4.14"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
804
+ dependencies = [
805
+ "cfg-if",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "macro_rules_attribute"
810
+ version = "0.0.2"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "641c64af6cd80b81cf9c2f2f6ee382b1050c71ce63e20800499971a4a4195005"
813
+ dependencies = [
814
+ "macro_rules_attribute-proc_macro",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "macro_rules_attribute-proc_macro"
819
+ version = "0.0.2"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "eb246ada5a8c47b8b6e90c9f9a0f84f294939cdf558f1bc8d17fbb30f9706598"
822
+
823
+ [[package]]
824
+ name = "matches"
825
+ version = "0.1.9"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
828
+
829
+ [[package]]
830
+ name = "memchr"
831
+ version = "2.3.4"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
834
+
835
+ [[package]]
836
+ name = "memoffset"
837
+ version = "0.6.5"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
840
+ dependencies = [
841
+ "autocfg",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "mime"
846
+ version = "0.3.16"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
849
+
850
+ [[package]]
851
+ name = "miniz_oxide"
852
+ version = "0.4.4"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b"
855
+ dependencies = [
856
+ "adler",
857
+ "autocfg",
858
+ ]
859
+
860
+ [[package]]
861
+ name = "mio"
862
+ version = "0.8.2"
863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
864
+ checksum = "52da4364ffb0e4fe33a9841a98a3f3014fb964045ce4f7a45a398243c8d6b0c9"
865
+ dependencies = [
866
+ "libc",
867
+ "log",
868
+ "miow",
869
+ "ntapi",
870
+ "wasi 0.11.0+wasi-snapshot-preview1",
871
+ "winapi",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "miow"
876
+ version = "0.3.7"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
879
+ dependencies = [
880
+ "winapi",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "native-tls"
885
+ version = "0.2.8"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "48ba9f7719b5a0f42f338907614285fb5fd70e53858141f69898a1fb7203b24d"
888
+ dependencies = [
889
+ "lazy_static",
890
+ "libc",
891
+ "log",
892
+ "openssl",
893
+ "openssl-probe",
894
+ "openssl-sys",
895
+ "schannel",
896
+ "security-framework",
897
+ "security-framework-sys",
898
+ "tempfile",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "nom"
903
+ version = "6.2.1"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "9c5c51b9083a3c620fa67a2a635d1ce7d95b897e957d6b28ff9a5da960a103a6"
906
+ dependencies = [
907
+ "bitvec",
908
+ "funty",
909
+ "lexical-core",
910
+ "memchr",
911
+ "version_check",
912
+ ]
913
+
914
+ [[package]]
915
+ name = "ntapi"
916
+ version = "0.3.7"
917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
918
+ checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
919
+ dependencies = [
920
+ "winapi",
921
+ ]
922
+
923
+ [[package]]
924
+ name = "num_cpus"
925
+ version = "1.13.1"
926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
927
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
928
+ dependencies = [
929
+ "hermit-abi",
930
+ "libc",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "number_prefix"
935
+ version = "0.3.0"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
938
+
939
+ [[package]]
940
+ name = "number_prefix"
941
+ version = "0.4.0"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
944
+
945
+ [[package]]
946
+ name = "once_cell"
947
+ version = "1.10.0"
948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
949
+ checksum = "87f3e037eac156d1775da914196f0f37741a274155e34a0b7e427c35d2a2ecb9"
950
+
951
+ [[package]]
952
+ name = "onig"
953
+ version = "6.3.1"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "67ddfe2c93bb389eea6e6d713306880c7f6dcc99a75b659ce145d962c861b225"
956
+ dependencies = [
957
+ "bitflags",
958
+ "lazy_static",
959
+ "libc",
960
+ "onig_sys",
961
+ ]
962
+
963
+ [[package]]
964
+ name = "onig_sys"
965
+ version = "69.7.1"
966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
967
+ checksum = "5dd3eee045c84695b53b20255bb7317063df090b68e18bfac0abb6c39cf7f33e"
968
+ dependencies = [
969
+ "cc",
970
+ "pkg-config",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "openssl"
975
+ version = "0.10.38"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "0c7ae222234c30df141154f159066c5093ff73b63204dcda7121eb082fc56a95"
978
+ dependencies = [
979
+ "bitflags",
980
+ "cfg-if",
981
+ "foreign-types",
982
+ "libc",
983
+ "once_cell",
984
+ "openssl-sys",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "openssl-probe"
989
+ version = "0.1.5"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
992
+
993
+ [[package]]
994
+ name = "openssl-sys"
995
+ version = "0.9.72"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "7e46109c383602735fa0a2e48dd2b7c892b048e1bf69e5c3b1d804b7d9c203cb"
998
+ dependencies = [
999
+ "autocfg",
1000
+ "cc",
1001
+ "libc",
1002
+ "pkg-config",
1003
+ "vcpkg",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "paste"
1008
+ version = "1.0.6"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "0744126afe1a6dd7f394cb50a716dbe086cb06e255e53d8d0185d82828358fb5"
1011
+
1012
+ [[package]]
1013
+ name = "percent-encoding"
1014
+ version = "2.1.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
1017
+
1018
+ [[package]]
1019
+ name = "pin-project-lite"
1020
+ version = "0.2.8"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
1023
+
1024
+ [[package]]
1025
+ name = "pin-utils"
1026
+ version = "0.1.0"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1029
+
1030
+ [[package]]
1031
+ name = "pkg-config"
1032
+ version = "0.3.24"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "58893f751c9b0412871a09abd62ecd2a00298c6c83befa223ef98c52aef40cbe"
1035
+
1036
+ [[package]]
1037
+ name = "ppv-lite86"
1038
+ version = "0.2.16"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
1041
+
1042
+ [[package]]
1043
+ name = "proc-macro2"
1044
+ version = "1.0.36"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
1047
+ dependencies = [
1048
+ "unicode-xid",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "quote"
1053
+ version = "1.0.16"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "b4af2ec4714533fcdf07e886f17025ace8b997b9ce51204ee69b6da831c3da57"
1056
+ dependencies = [
1057
+ "proc-macro2",
1058
+ ]
1059
+
1060
+ [[package]]
1061
+ name = "radium"
1062
+ version = "0.5.3"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "941ba9d78d8e2f7ce474c015eea4d9c6d25b6a3327f9832ee29a4de27f91bbb8"
1065
+
1066
+ [[package]]
1067
+ name = "rand"
1068
+ version = "0.7.3"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
1071
+ dependencies = [
1072
+ "getrandom 0.1.16",
1073
+ "libc",
1074
+ "rand_chacha 0.2.2",
1075
+ "rand_core 0.5.1",
1076
+ "rand_hc",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "rand"
1081
+ version = "0.8.5"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1084
+ dependencies = [
1085
+ "libc",
1086
+ "rand_chacha 0.3.1",
1087
+ "rand_core 0.6.3",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "rand_chacha"
1092
+ version = "0.2.2"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
1095
+ dependencies = [
1096
+ "ppv-lite86",
1097
+ "rand_core 0.5.1",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "rand_chacha"
1102
+ version = "0.3.1"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1105
+ dependencies = [
1106
+ "ppv-lite86",
1107
+ "rand_core 0.6.3",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "rand_core"
1112
+ version = "0.5.1"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
1115
+ dependencies = [
1116
+ "getrandom 0.1.16",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "rand_core"
1121
+ version = "0.6.3"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
1124
+ dependencies = [
1125
+ "getrandom 0.2.5",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "rand_hc"
1130
+ version = "0.2.0"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
1133
+ dependencies = [
1134
+ "rand_core 0.5.1",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "rayon"
1139
+ version = "1.5.1"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
1142
+ dependencies = [
1143
+ "autocfg",
1144
+ "crossbeam-deque",
1145
+ "either",
1146
+ "rayon-core",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "rayon-cond"
1151
+ version = "0.1.0"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "fd1259362c9065e5ea39a789ef40b1e3fd934c94beb7b5ab3ac6629d3b5e7cb7"
1154
+ dependencies = [
1155
+ "either",
1156
+ "itertools 0.8.2",
1157
+ "rayon",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "rayon-core"
1162
+ version = "1.9.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
1165
+ dependencies = [
1166
+ "crossbeam-channel",
1167
+ "crossbeam-deque",
1168
+ "crossbeam-utils",
1169
+ "lazy_static",
1170
+ "num_cpus",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "redox_syscall"
1175
+ version = "0.2.11"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c"
1178
+ dependencies = [
1179
+ "bitflags",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "redox_users"
1184
+ version = "0.4.2"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "7776223e2696f1aa4c6b0170e83212f47296a00424305117d013dfe86fb0fe55"
1187
+ dependencies = [
1188
+ "getrandom 0.2.5",
1189
+ "redox_syscall",
1190
+ "thiserror",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "regex"
1195
+ version = "1.4.6"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "2a26af418b574bd56588335b3a3659a65725d4e636eb1016c2f9e3b38c7cc759"
1198
+ dependencies = [
1199
+ "aho-corasick",
1200
+ "memchr",
1201
+ "regex-syntax",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "regex-syntax"
1206
+ version = "0.6.25"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
1209
+
1210
+ [[package]]
1211
+ name = "remove_dir_all"
1212
+ version = "0.5.3"
1213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1214
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1215
+ dependencies = [
1216
+ "winapi",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "reqwest"
1221
+ version = "0.11.10"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "46a1f7aa4f35e5e8b4160449f51afc758f0ce6454315a9fa7d0d113e958c41eb"
1224
+ dependencies = [
1225
+ "base64 0.13.0",
1226
+ "bytes",
1227
+ "encoding_rs",
1228
+ "futures-core",
1229
+ "futures-util",
1230
+ "h2",
1231
+ "http",
1232
+ "http-body",
1233
+ "hyper",
1234
+ "hyper-tls",
1235
+ "ipnet",
1236
+ "js-sys",
1237
+ "lazy_static",
1238
+ "log",
1239
+ "mime",
1240
+ "native-tls",
1241
+ "percent-encoding",
1242
+ "pin-project-lite",
1243
+ "serde",
1244
+ "serde_json",
1245
+ "serde_urlencoded",
1246
+ "tokio",
1247
+ "tokio-native-tls",
1248
+ "url",
1249
+ "wasm-bindgen",
1250
+ "wasm-bindgen-futures",
1251
+ "web-sys",
1252
+ "winreg",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "rutie"
1257
+ version = "0.8.3"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "0d81d2a2dec78b6202e8058dea842a39a65135ce8915e66e40d3935f12e52346"
1260
+ dependencies = [
1261
+ "lazy_static",
1262
+ "libc",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "ryu"
1267
+ version = "1.0.9"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "73b4b750c782965c211b42f022f59af1fbceabdd026623714f104152f1ec149f"
1270
+
1271
+ [[package]]
1272
+ name = "schannel"
1273
+ version = "0.1.19"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "8f05ba609c234e60bee0d547fe94a4c7e9da733d1c962cf6e59efa4cd9c8bc75"
1276
+ dependencies = [
1277
+ "lazy_static",
1278
+ "winapi",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "scopeguard"
1283
+ version = "1.1.0"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1286
+
1287
+ [[package]]
1288
+ name = "security-framework"
1289
+ version = "2.6.1"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "2dc14f172faf8a0194a3aded622712b0de276821addc574fa54fc0a1167e10dc"
1292
+ dependencies = [
1293
+ "bitflags",
1294
+ "core-foundation",
1295
+ "core-foundation-sys",
1296
+ "libc",
1297
+ "security-framework-sys",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "security-framework-sys"
1302
+ version = "2.6.1"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
1305
+ dependencies = [
1306
+ "core-foundation-sys",
1307
+ "libc",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "serde"
1312
+ version = "1.0.136"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "ce31e24b01e1e524df96f1c2fdd054405f8d7376249a5110886fb4b658484789"
1315
+ dependencies = [
1316
+ "serde_derive",
1317
+ ]
1318
+
1319
+ [[package]]
1320
+ name = "serde_derive"
1321
+ version = "1.0.136"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "08597e7152fcd306f41838ed3e37be9eaeed2b61c42e2117266a554fab4662f9"
1324
+ dependencies = [
1325
+ "proc-macro2",
1326
+ "quote",
1327
+ "syn",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "serde_json"
1332
+ version = "1.0.79"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "8e8d9fa5c3b304765ce1fd9c4c8a3de2c8db365a5b91be52f186efc675681d95"
1335
+ dependencies = [
1336
+ "itoa",
1337
+ "ryu",
1338
+ "serde",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "serde_urlencoded"
1343
+ version = "0.7.1"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1346
+ dependencies = [
1347
+ "form_urlencoded",
1348
+ "itoa",
1349
+ "ryu",
1350
+ "serde",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "sha2"
1355
+ version = "0.10.2"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
1358
+ dependencies = [
1359
+ "cfg-if",
1360
+ "cpufeatures",
1361
+ "digest",
1362
+ ]
1363
+
1364
+ [[package]]
1365
+ name = "slab"
1366
+ version = "0.4.5"
1367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1368
+ checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
1369
+
1370
+ [[package]]
1371
+ name = "smallvec"
1372
+ version = "1.8.0"
1373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1374
+ checksum = "f2dd574626839106c320a323308629dcb1acfc96e32a8cba364ddc61ac23ee83"
1375
+
1376
+ [[package]]
1377
+ name = "socket2"
1378
+ version = "0.4.4"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
1381
+ dependencies = [
1382
+ "libc",
1383
+ "winapi",
1384
+ ]
1385
+
1386
+ [[package]]
1387
+ name = "spm_precompiled"
1388
+ version = "0.1.3"
1389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1390
+ checksum = "df16a402fd4b8ceab715f48a27f1e1457b1e228c737c3aa65e5d6f0a6d0fd95f"
1391
+ dependencies = [
1392
+ "base64 0.12.3",
1393
+ "nom",
1394
+ "serde",
1395
+ "unicode-segmentation",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "static_assertions"
1400
+ version = "1.1.0"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1403
+
1404
+ [[package]]
1405
+ name = "strsim"
1406
+ version = "0.8.0"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
1409
+
1410
+ [[package]]
1411
+ name = "strsim"
1412
+ version = "0.9.3"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
1415
+
1416
+ [[package]]
1417
+ name = "syn"
1418
+ version = "1.0.89"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "ea297be220d52398dcc07ce15a209fce436d361735ac1db700cab3b6cdfb9f54"
1421
+ dependencies = [
1422
+ "proc-macro2",
1423
+ "quote",
1424
+ "unicode-xid",
1425
+ ]
1426
+
1427
+ [[package]]
1428
+ name = "tap"
1429
+ version = "1.0.1"
1430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1431
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
1432
+
1433
+ [[package]]
1434
+ name = "tar"
1435
+ version = "0.4.38"
1436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1437
+ checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
1438
+ dependencies = [
1439
+ "filetime",
1440
+ "libc",
1441
+ "xattr",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "tempfile"
1446
+ version = "3.3.0"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
1449
+ dependencies = [
1450
+ "cfg-if",
1451
+ "fastrand",
1452
+ "libc",
1453
+ "redox_syscall",
1454
+ "remove_dir_all",
1455
+ "winapi",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "terminal_size"
1460
+ version = "0.1.17"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
1463
+ dependencies = [
1464
+ "libc",
1465
+ "winapi",
1466
+ ]
1467
+
1468
+ [[package]]
1469
+ name = "textwrap"
1470
+ version = "0.11.0"
1471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1472
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
1473
+ dependencies = [
1474
+ "unicode-width",
1475
+ ]
1476
+
1477
+ [[package]]
1478
+ name = "thiserror"
1479
+ version = "1.0.30"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
1482
+ dependencies = [
1483
+ "thiserror-impl",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "thiserror-impl"
1488
+ version = "1.0.30"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
1491
+ dependencies = [
1492
+ "proc-macro2",
1493
+ "quote",
1494
+ "syn",
1495
+ ]
1496
+
1497
+ [[package]]
1498
+ name = "time"
1499
+ version = "0.1.43"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
1502
+ dependencies = [
1503
+ "libc",
1504
+ "winapi",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "tinyvec"
1509
+ version = "1.5.1"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
1512
+ dependencies = [
1513
+ "tinyvec_macros",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "tinyvec_macros"
1518
+ version = "0.1.0"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1521
+
1522
+ [[package]]
1523
+ name = "tokenizers"
1524
+ version = "0.11.3"
1525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1526
+ checksum = "60c79b46b9e4a7c8a4926531d1b81521a976cab19f1651627385504aa68799f2"
1527
+ dependencies = [
1528
+ "aho-corasick",
1529
+ "cached-path",
1530
+ "clap",
1531
+ "derive_builder",
1532
+ "dirs",
1533
+ "esaxx-rs",
1534
+ "indicatif 0.15.0",
1535
+ "itertools 0.9.0",
1536
+ "lazy_static",
1537
+ "log",
1538
+ "macro_rules_attribute",
1539
+ "onig",
1540
+ "paste",
1541
+ "rand 0.7.3",
1542
+ "rayon",
1543
+ "rayon-cond",
1544
+ "regex",
1545
+ "regex-syntax",
1546
+ "reqwest",
1547
+ "serde",
1548
+ "serde_json",
1549
+ "spm_precompiled",
1550
+ "unicode-normalization-alignments",
1551
+ "unicode-segmentation",
1552
+ "unicode_categories",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "tokenizers-ruby"
1557
+ version = "0.1.0"
1558
+ dependencies = [
1559
+ "lazy_static",
1560
+ "rutie",
1561
+ "tokenizers",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "tokio"
1566
+ version = "1.17.0"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "2af73ac49756f3f7c01172e34a23e5d0216f6c32333757c2c61feb2bbff5a5ee"
1569
+ dependencies = [
1570
+ "bytes",
1571
+ "libc",
1572
+ "memchr",
1573
+ "mio",
1574
+ "num_cpus",
1575
+ "pin-project-lite",
1576
+ "socket2",
1577
+ "winapi",
1578
+ ]
1579
+
1580
+ [[package]]
1581
+ name = "tokio-native-tls"
1582
+ version = "0.3.0"
1583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1584
+ checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
1585
+ dependencies = [
1586
+ "native-tls",
1587
+ "tokio",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "tokio-util"
1592
+ version = "0.6.9"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "9e99e1983e5d376cd8eb4b66604d2e99e79f5bd988c3055891dcd8c9e2604cc0"
1595
+ dependencies = [
1596
+ "bytes",
1597
+ "futures-core",
1598
+ "futures-sink",
1599
+ "log",
1600
+ "pin-project-lite",
1601
+ "tokio",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "tower-service"
1606
+ version = "0.3.1"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
1609
+
1610
+ [[package]]
1611
+ name = "tracing"
1612
+ version = "0.1.32"
1613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1614
+ checksum = "4a1bdf54a7c28a2bbf701e1d2233f6c77f473486b94bee4f9678da5a148dca7f"
1615
+ dependencies = [
1616
+ "cfg-if",
1617
+ "pin-project-lite",
1618
+ "tracing-core",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "tracing-core"
1623
+ version = "0.1.23"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "aa31669fa42c09c34d94d8165dd2012e8ff3c66aca50f3bb226b68f216f2706c"
1626
+ dependencies = [
1627
+ "lazy_static",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "try-lock"
1632
+ version = "0.2.3"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1635
+
1636
+ [[package]]
1637
+ name = "typenum"
1638
+ version = "1.15.0"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
1641
+
1642
+ [[package]]
1643
+ name = "unicode-bidi"
1644
+ version = "0.3.7"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "1a01404663e3db436ed2746d9fefef640d868edae3cceb81c3b8d5732fda678f"
1647
+
1648
+ [[package]]
1649
+ name = "unicode-normalization"
1650
+ version = "0.1.19"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
1653
+ dependencies = [
1654
+ "tinyvec",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "unicode-normalization-alignments"
1659
+ version = "0.1.12"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
1662
+ dependencies = [
1663
+ "smallvec",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "unicode-segmentation"
1668
+ version = "1.9.0"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
1671
+
1672
+ [[package]]
1673
+ name = "unicode-width"
1674
+ version = "0.1.9"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
1677
+
1678
+ [[package]]
1679
+ name = "unicode-xid"
1680
+ version = "0.2.2"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
1683
+
1684
+ [[package]]
1685
+ name = "unicode_categories"
1686
+ version = "0.1.1"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
1689
+
1690
+ [[package]]
1691
+ name = "url"
1692
+ version = "2.2.2"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
1695
+ dependencies = [
1696
+ "form_urlencoded",
1697
+ "idna",
1698
+ "matches",
1699
+ "percent-encoding",
1700
+ ]
1701
+
1702
+ [[package]]
1703
+ name = "vcpkg"
1704
+ version = "0.2.15"
1705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1706
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1707
+
1708
+ [[package]]
1709
+ name = "vec_map"
1710
+ version = "0.8.2"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
1713
+
1714
+ [[package]]
1715
+ name = "version_check"
1716
+ version = "0.9.4"
1717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1718
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1719
+
1720
+ [[package]]
1721
+ name = "want"
1722
+ version = "0.3.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
1725
+ dependencies = [
1726
+ "log",
1727
+ "try-lock",
1728
+ ]
1729
+
1730
+ [[package]]
1731
+ name = "wasi"
1732
+ version = "0.9.0+wasi-snapshot-preview1"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
1735
+
1736
+ [[package]]
1737
+ name = "wasi"
1738
+ version = "0.10.2+wasi-snapshot-preview1"
1739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1740
+ checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
1741
+
1742
+ [[package]]
1743
+ name = "wasi"
1744
+ version = "0.11.0+wasi-snapshot-preview1"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1747
+
1748
+ [[package]]
1749
+ name = "wasm-bindgen"
1750
+ version = "0.2.79"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "25f1af7423d8588a3d840681122e72e6a24ddbcb3f0ec385cac0d12d24256c06"
1753
+ dependencies = [
1754
+ "cfg-if",
1755
+ "wasm-bindgen-macro",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "wasm-bindgen-backend"
1760
+ version = "0.2.79"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "8b21c0df030f5a177f3cba22e9bc4322695ec43e7257d865302900290bcdedca"
1763
+ dependencies = [
1764
+ "bumpalo",
1765
+ "lazy_static",
1766
+ "log",
1767
+ "proc-macro2",
1768
+ "quote",
1769
+ "syn",
1770
+ "wasm-bindgen-shared",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "wasm-bindgen-futures"
1775
+ version = "0.4.29"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395"
1778
+ dependencies = [
1779
+ "cfg-if",
1780
+ "js-sys",
1781
+ "wasm-bindgen",
1782
+ "web-sys",
1783
+ ]
1784
+
1785
+ [[package]]
1786
+ name = "wasm-bindgen-macro"
1787
+ version = "0.2.79"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "2f4203d69e40a52ee523b2529a773d5ffc1dc0071801c87b3d270b471b80ed01"
1790
+ dependencies = [
1791
+ "quote",
1792
+ "wasm-bindgen-macro-support",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "wasm-bindgen-macro-support"
1797
+ version = "0.2.79"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "bfa8a30d46208db204854cadbb5d4baf5fcf8071ba5bf48190c3e59937962ebc"
1800
+ dependencies = [
1801
+ "proc-macro2",
1802
+ "quote",
1803
+ "syn",
1804
+ "wasm-bindgen-backend",
1805
+ "wasm-bindgen-shared",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "wasm-bindgen-shared"
1810
+ version = "0.2.79"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "3d958d035c4438e28c70e4321a2911302f10135ce78a9c7834c0cab4123d06a2"
1813
+
1814
+ [[package]]
1815
+ name = "web-sys"
1816
+ version = "0.3.56"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "c060b319f29dd25724f09a2ba1418f142f539b2be99fbf4d2d5a8f7330afb8eb"
1819
+ dependencies = [
1820
+ "js-sys",
1821
+ "wasm-bindgen",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "winapi"
1826
+ version = "0.3.9"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1829
+ dependencies = [
1830
+ "winapi-i686-pc-windows-gnu",
1831
+ "winapi-x86_64-pc-windows-gnu",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "winapi-i686-pc-windows-gnu"
1836
+ version = "0.4.0"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1839
+
1840
+ [[package]]
1841
+ name = "winapi-x86_64-pc-windows-gnu"
1842
+ version = "0.4.0"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1845
+
1846
+ [[package]]
1847
+ name = "winreg"
1848
+ version = "0.10.1"
1849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1850
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
1851
+ dependencies = [
1852
+ "winapi",
1853
+ ]
1854
+
1855
+ [[package]]
1856
+ name = "wyz"
1857
+ version = "0.2.0"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "85e60b0d1b5f99db2556934e21937020776a5d31520bf169e851ac44e6420214"
1860
+
1861
+ [[package]]
1862
+ name = "xattr"
1863
+ version = "0.2.2"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
1866
+ dependencies = [
1867
+ "libc",
1868
+ ]
1869
+
1870
+ [[package]]
1871
+ name = "zip"
1872
+ version = "0.5.13"
1873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1874
+ checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
1875
+ dependencies = [
1876
+ "byteorder",
1877
+ "bzip2",
1878
+ "crc32fast",
1879
+ "flate2",
1880
+ "thiserror",
1881
+ "time",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "zip-extensions"
1886
+ version = "0.6.1"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "a64c3c977bc3434ce2d4bcea8ad3c644672de0f2c402b72b9171ca80a8885d14"
1889
+ dependencies = [
1890
+ "zip",
1891
+ ]