tokenizers 0.2.0-arm64-darwin

Sign up to get free protection for your applications and to get access to all the features.
data/Cargo.lock ADDED
@@ -0,0 +1,1908 @@
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.20"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "autocfg"
22
+ version = "1.1.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
25
+
26
+ [[package]]
27
+ name = "base64"
28
+ version = "0.13.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
31
+
32
+ [[package]]
33
+ name = "bindgen"
34
+ version = "0.60.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
37
+ dependencies = [
38
+ "bitflags",
39
+ "cexpr",
40
+ "clang-sys",
41
+ "lazy_static",
42
+ "lazycell",
43
+ "peeking_take_while",
44
+ "proc-macro2",
45
+ "quote",
46
+ "regex",
47
+ "rustc-hash",
48
+ "shlex",
49
+ ]
50
+
51
+ [[package]]
52
+ name = "bitflags"
53
+ version = "1.3.2"
54
+ source = "registry+https://github.com/rust-lang/crates.io-index"
55
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
56
+
57
+ [[package]]
58
+ name = "block-buffer"
59
+ version = "0.10.3"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
62
+ dependencies = [
63
+ "generic-array",
64
+ ]
65
+
66
+ [[package]]
67
+ name = "bumpalo"
68
+ version = "3.11.1"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
71
+
72
+ [[package]]
73
+ name = "byteorder"
74
+ version = "1.4.3"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
77
+
78
+ [[package]]
79
+ name = "bytes"
80
+ version = "1.3.0"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "dfb24e866b15a1af2a1b663f10c6b6b8f397a84aadb828f12e5b289ec23a3a3c"
83
+
84
+ [[package]]
85
+ name = "bzip2"
86
+ version = "0.4.3"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "6afcd980b5f3a45017c57e57a2fcccbb351cc43a356ce117ef760ef8052b89b0"
89
+ dependencies = [
90
+ "bzip2-sys",
91
+ "libc",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bzip2-sys"
96
+ version = "0.1.11+1.0.8"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
99
+ dependencies = [
100
+ "cc",
101
+ "libc",
102
+ "pkg-config",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "cached-path"
107
+ version = "0.5.3"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "5f1c56d30236522ab3393a08746b138d4e16372001f42d29c88d513aeb8ab7ef"
110
+ dependencies = [
111
+ "flate2",
112
+ "fs2",
113
+ "glob",
114
+ "indicatif 0.16.2",
115
+ "log",
116
+ "rand",
117
+ "reqwest",
118
+ "serde",
119
+ "serde_json",
120
+ "sha2",
121
+ "tar",
122
+ "tempfile",
123
+ "thiserror",
124
+ "zip",
125
+ "zip-extensions",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "cc"
130
+ version = "1.0.77"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "e9f73505338f7d905b19d18738976aae232eb46b8efc15554ffc56deb5d9ebe4"
133
+
134
+ [[package]]
135
+ name = "cexpr"
136
+ version = "0.6.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
139
+ dependencies = [
140
+ "nom",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "cfg-if"
145
+ version = "1.0.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
148
+
149
+ [[package]]
150
+ name = "clang-sys"
151
+ version = "1.4.0"
152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
153
+ checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
154
+ dependencies = [
155
+ "glob",
156
+ "libc",
157
+ "libloading",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "console"
162
+ version = "0.15.2"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "c050367d967ced717c04b65d8c619d863ef9292ce0c5760028655a2fb298718c"
165
+ dependencies = [
166
+ "encode_unicode",
167
+ "lazy_static",
168
+ "libc",
169
+ "terminal_size",
170
+ "unicode-width",
171
+ "winapi",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "core-foundation"
176
+ version = "0.9.3"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
179
+ dependencies = [
180
+ "core-foundation-sys",
181
+ "libc",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "core-foundation-sys"
186
+ version = "0.8.3"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
189
+
190
+ [[package]]
191
+ name = "cpufeatures"
192
+ version = "0.2.5"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
195
+ dependencies = [
196
+ "libc",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "crc32fast"
201
+ version = "1.3.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
204
+ dependencies = [
205
+ "cfg-if",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "crossbeam-channel"
210
+ version = "0.5.6"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
213
+ dependencies = [
214
+ "cfg-if",
215
+ "crossbeam-utils",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "crossbeam-deque"
220
+ version = "0.8.2"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
223
+ dependencies = [
224
+ "cfg-if",
225
+ "crossbeam-epoch",
226
+ "crossbeam-utils",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "crossbeam-epoch"
231
+ version = "0.9.13"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
234
+ dependencies = [
235
+ "autocfg",
236
+ "cfg-if",
237
+ "crossbeam-utils",
238
+ "memoffset",
239
+ "scopeguard",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "crossbeam-utils"
244
+ version = "0.8.14"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
247
+ dependencies = [
248
+ "cfg-if",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "crypto-common"
253
+ version = "0.1.6"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
256
+ dependencies = [
257
+ "generic-array",
258
+ "typenum",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "darling"
263
+ version = "0.10.2"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
266
+ dependencies = [
267
+ "darling_core",
268
+ "darling_macro",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "darling_core"
273
+ version = "0.10.2"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
276
+ dependencies = [
277
+ "fnv",
278
+ "ident_case",
279
+ "proc-macro2",
280
+ "quote",
281
+ "strsim",
282
+ "syn",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "darling_macro"
287
+ version = "0.10.2"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
290
+ dependencies = [
291
+ "darling_core",
292
+ "quote",
293
+ "syn",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "derive_builder"
298
+ version = "0.9.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
301
+ dependencies = [
302
+ "darling",
303
+ "derive_builder_core",
304
+ "proc-macro2",
305
+ "quote",
306
+ "syn",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "derive_builder_core"
311
+ version = "0.9.0"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
314
+ dependencies = [
315
+ "darling",
316
+ "proc-macro2",
317
+ "quote",
318
+ "syn",
319
+ ]
320
+
321
+ [[package]]
322
+ name = "digest"
323
+ version = "0.10.6"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
326
+ dependencies = [
327
+ "block-buffer",
328
+ "crypto-common",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "dirs"
333
+ version = "3.0.2"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "30baa043103c9d0c2a57cf537cc2f35623889dc0d405e6c3cccfadbc81c71309"
336
+ dependencies = [
337
+ "dirs-sys",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "dirs-sys"
342
+ version = "0.3.7"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
345
+ dependencies = [
346
+ "libc",
347
+ "redox_users",
348
+ "winapi",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "either"
353
+ version = "1.8.0"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
356
+
357
+ [[package]]
358
+ name = "encode_unicode"
359
+ version = "0.3.6"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
362
+
363
+ [[package]]
364
+ name = "encoding_rs"
365
+ version = "0.8.31"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
368
+ dependencies = [
369
+ "cfg-if",
370
+ ]
371
+
372
+ [[package]]
373
+ name = "esaxx-rs"
374
+ version = "0.1.8"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "1f748b253ceca9fed5f42f8b5ceb3851e93102199bc25b64b65369f76e5c0a35"
377
+ dependencies = [
378
+ "cc",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "fastrand"
383
+ version = "1.8.0"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
386
+ dependencies = [
387
+ "instant",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "filetime"
392
+ version = "0.2.18"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "4b9663d381d07ae25dc88dbdf27df458faa83a9b25336bcac83d5e452b5fc9d3"
395
+ dependencies = [
396
+ "cfg-if",
397
+ "libc",
398
+ "redox_syscall",
399
+ "windows-sys 0.42.0",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "flate2"
404
+ version = "1.0.25"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
407
+ dependencies = [
408
+ "crc32fast",
409
+ "miniz_oxide",
410
+ ]
411
+
412
+ [[package]]
413
+ name = "fnv"
414
+ version = "1.0.7"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
417
+
418
+ [[package]]
419
+ name = "foreign-types"
420
+ version = "0.3.2"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
423
+ dependencies = [
424
+ "foreign-types-shared",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "foreign-types-shared"
429
+ version = "0.1.1"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
432
+
433
+ [[package]]
434
+ name = "form_urlencoded"
435
+ version = "1.1.0"
436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
437
+ checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
438
+ dependencies = [
439
+ "percent-encoding",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "fs2"
444
+ version = "0.4.3"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
447
+ dependencies = [
448
+ "libc",
449
+ "winapi",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "futures-channel"
454
+ version = "0.3.25"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
457
+ dependencies = [
458
+ "futures-core",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "futures-core"
463
+ version = "0.3.25"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
466
+
467
+ [[package]]
468
+ name = "futures-io"
469
+ version = "0.3.25"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "00f5fb52a06bdcadeb54e8d3671f8888a39697dcb0b81b23b55174030427f4eb"
472
+
473
+ [[package]]
474
+ name = "futures-sink"
475
+ version = "0.3.25"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
478
+
479
+ [[package]]
480
+ name = "futures-task"
481
+ version = "0.3.25"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
484
+
485
+ [[package]]
486
+ name = "futures-util"
487
+ version = "0.3.25"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
490
+ dependencies = [
491
+ "futures-core",
492
+ "futures-io",
493
+ "futures-task",
494
+ "memchr",
495
+ "pin-project-lite",
496
+ "pin-utils",
497
+ "slab",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "generic-array"
502
+ version = "0.14.6"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
505
+ dependencies = [
506
+ "typenum",
507
+ "version_check",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "getrandom"
512
+ version = "0.2.8"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
515
+ dependencies = [
516
+ "cfg-if",
517
+ "libc",
518
+ "wasi 0.11.0+wasi-snapshot-preview1",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "glob"
523
+ version = "0.3.0"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
526
+
527
+ [[package]]
528
+ name = "h2"
529
+ version = "0.3.15"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
532
+ dependencies = [
533
+ "bytes",
534
+ "fnv",
535
+ "futures-core",
536
+ "futures-sink",
537
+ "futures-util",
538
+ "http",
539
+ "indexmap",
540
+ "slab",
541
+ "tokio",
542
+ "tokio-util",
543
+ "tracing",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "hashbrown"
548
+ version = "0.12.3"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
551
+
552
+ [[package]]
553
+ name = "hermit-abi"
554
+ version = "0.1.19"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
557
+ dependencies = [
558
+ "libc",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "http"
563
+ version = "0.2.8"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "75f43d41e26995c17e71ee126451dd3941010b0514a81a9d11f3b341debc2399"
566
+ dependencies = [
567
+ "bytes",
568
+ "fnv",
569
+ "itoa",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "http-body"
574
+ version = "0.4.5"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
577
+ dependencies = [
578
+ "bytes",
579
+ "http",
580
+ "pin-project-lite",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "httparse"
585
+ version = "1.8.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
588
+
589
+ [[package]]
590
+ name = "httpdate"
591
+ version = "1.0.2"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
594
+
595
+ [[package]]
596
+ name = "hyper"
597
+ version = "0.14.23"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
600
+ dependencies = [
601
+ "bytes",
602
+ "futures-channel",
603
+ "futures-core",
604
+ "futures-util",
605
+ "h2",
606
+ "http",
607
+ "http-body",
608
+ "httparse",
609
+ "httpdate",
610
+ "itoa",
611
+ "pin-project-lite",
612
+ "socket2",
613
+ "tokio",
614
+ "tower-service",
615
+ "tracing",
616
+ "want",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "hyper-tls"
621
+ version = "0.5.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
624
+ dependencies = [
625
+ "bytes",
626
+ "hyper",
627
+ "native-tls",
628
+ "tokio",
629
+ "tokio-native-tls",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "ident_case"
634
+ version = "1.0.1"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
637
+
638
+ [[package]]
639
+ name = "idna"
640
+ version = "0.3.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
643
+ dependencies = [
644
+ "unicode-bidi",
645
+ "unicode-normalization",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "indexmap"
650
+ version = "1.9.2"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
653
+ dependencies = [
654
+ "autocfg",
655
+ "hashbrown",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "indicatif"
660
+ version = "0.15.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "7baab56125e25686df467fe470785512329883aab42696d661247aca2a2896e4"
663
+ dependencies = [
664
+ "console",
665
+ "lazy_static",
666
+ "number_prefix 0.3.0",
667
+ "regex",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "indicatif"
672
+ version = "0.16.2"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "2d207dc617c7a380ab07ff572a6e52fa202a2a8f355860ac9c38e23f8196be1b"
675
+ dependencies = [
676
+ "console",
677
+ "lazy_static",
678
+ "number_prefix 0.4.0",
679
+ "regex",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "instant"
684
+ version = "0.1.12"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
687
+ dependencies = [
688
+ "cfg-if",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "ipnet"
693
+ version = "2.5.1"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745"
696
+
697
+ [[package]]
698
+ name = "itertools"
699
+ version = "0.8.2"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "f56a2d0bc861f9165be4eb3442afd3c236d8a98afd426f65d92324ae1091a484"
702
+ dependencies = [
703
+ "either",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "itertools"
708
+ version = "0.9.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "284f18f85651fe11e8a991b2adb42cb078325c996ed026d994719efcfca1d54b"
711
+ dependencies = [
712
+ "either",
713
+ ]
714
+
715
+ [[package]]
716
+ name = "itoa"
717
+ version = "1.0.4"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
720
+
721
+ [[package]]
722
+ name = "js-sys"
723
+ version = "0.3.60"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
726
+ dependencies = [
727
+ "wasm-bindgen",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "lazy_static"
732
+ version = "1.4.0"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
735
+
736
+ [[package]]
737
+ name = "lazycell"
738
+ version = "1.3.0"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
741
+
742
+ [[package]]
743
+ name = "libc"
744
+ version = "0.2.137"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "fc7fcc620a3bff7cdd7a365be3376c97191aeaccc2a603e600951e452615bf89"
747
+
748
+ [[package]]
749
+ name = "libloading"
750
+ version = "0.7.4"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
753
+ dependencies = [
754
+ "cfg-if",
755
+ "winapi",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "log"
760
+ version = "0.4.17"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
763
+ dependencies = [
764
+ "cfg-if",
765
+ ]
766
+
767
+ [[package]]
768
+ name = "macro_rules_attribute"
769
+ version = "0.1.3"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "cf0c9b980bf4f3a37fd7b1c066941dd1b1d0152ce6ee6e8fe8c49b9f6810d862"
772
+ dependencies = [
773
+ "macro_rules_attribute-proc_macro",
774
+ "paste",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "macro_rules_attribute-proc_macro"
779
+ version = "0.1.3"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "58093314a45e00c77d5c508f76e77c3396afbbc0d01506e7fae47b018bac2b1d"
782
+
783
+ [[package]]
784
+ name = "magnus"
785
+ version = "0.4.2"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "a5f7b798b39aaa0781f3c34f5c8d510d0990b43f8ff6fbd20709d1edfbac5201"
788
+ dependencies = [
789
+ "magnus-macros",
790
+ "rb-sys",
791
+ "rb-sys-env",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "magnus-macros"
796
+ version = "0.2.0"
797
+ source = "git+https://github.com/matsadler/magnus#0ccc4cb4b0f3e054ad71356fcae2f1f8ba4aa385"
798
+ dependencies = [
799
+ "proc-macro2",
800
+ "quote",
801
+ "syn",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "memchr"
806
+ version = "2.5.0"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
809
+
810
+ [[package]]
811
+ name = "memoffset"
812
+ version = "0.7.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
815
+ dependencies = [
816
+ "autocfg",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "mime"
821
+ version = "0.3.16"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "2a60c7ce501c71e03a9c9c0d35b861413ae925bd979cc7a4e30d060069aaac8d"
824
+
825
+ [[package]]
826
+ name = "minimal-lexical"
827
+ version = "0.2.1"
828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
829
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
830
+
831
+ [[package]]
832
+ name = "miniz_oxide"
833
+ version = "0.6.2"
834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
835
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
836
+ dependencies = [
837
+ "adler",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "mio"
842
+ version = "0.8.5"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
845
+ dependencies = [
846
+ "libc",
847
+ "log",
848
+ "wasi 0.11.0+wasi-snapshot-preview1",
849
+ "windows-sys 0.42.0",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "native-tls"
854
+ version = "0.2.11"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
857
+ dependencies = [
858
+ "lazy_static",
859
+ "libc",
860
+ "log",
861
+ "openssl",
862
+ "openssl-probe",
863
+ "openssl-sys",
864
+ "schannel",
865
+ "security-framework",
866
+ "security-framework-sys",
867
+ "tempfile",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "nom"
872
+ version = "7.1.1"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
875
+ dependencies = [
876
+ "memchr",
877
+ "minimal-lexical",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "num_cpus"
882
+ version = "1.14.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
885
+ dependencies = [
886
+ "hermit-abi",
887
+ "libc",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "number_prefix"
892
+ version = "0.3.0"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "17b02fc0ff9a9e4b35b3342880f48e896ebf69f2967921fe8646bf5b7125956a"
895
+
896
+ [[package]]
897
+ name = "number_prefix"
898
+ version = "0.4.0"
899
+ source = "git+https://github.com/ankane/rust-number-prefix?branch=license-file#ce5a6a760b04c0f309e6d8fd7f72f5906c89723d"
900
+
901
+ [[package]]
902
+ name = "once_cell"
903
+ version = "1.16.0"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860"
906
+
907
+ [[package]]
908
+ name = "onig"
909
+ version = "6.4.0"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
912
+ dependencies = [
913
+ "bitflags",
914
+ "libc",
915
+ "once_cell",
916
+ "onig_sys",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "onig_sys"
921
+ version = "69.8.1"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
924
+ dependencies = [
925
+ "cc",
926
+ "pkg-config",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "openssl"
931
+ version = "0.10.43"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "020433887e44c27ff16365eaa2d380547a94544ad509aff6eb5b6e3e0b27b376"
934
+ dependencies = [
935
+ "bitflags",
936
+ "cfg-if",
937
+ "foreign-types",
938
+ "libc",
939
+ "once_cell",
940
+ "openssl-macros",
941
+ "openssl-sys",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "openssl-macros"
946
+ version = "0.1.0"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
949
+ dependencies = [
950
+ "proc-macro2",
951
+ "quote",
952
+ "syn",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "openssl-probe"
957
+ version = "0.1.5"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
960
+
961
+ [[package]]
962
+ name = "openssl-sys"
963
+ version = "0.9.78"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "07d5c8cb6e57b3a3612064d7b18b117912b4ce70955c2504d4b741c9e244b132"
966
+ dependencies = [
967
+ "autocfg",
968
+ "cc",
969
+ "libc",
970
+ "pkg-config",
971
+ "vcpkg",
972
+ ]
973
+
974
+ [[package]]
975
+ name = "paste"
976
+ version = "1.0.9"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "b1de2e551fb905ac83f73f7aedf2f0cb4a0da7e35efa24a202a936269f1f18e1"
979
+
980
+ [[package]]
981
+ name = "peeking_take_while"
982
+ version = "0.1.2"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
985
+
986
+ [[package]]
987
+ name = "percent-encoding"
988
+ version = "2.2.0"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
991
+
992
+ [[package]]
993
+ name = "pin-project-lite"
994
+ version = "0.2.9"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
997
+
998
+ [[package]]
999
+ name = "pin-utils"
1000
+ version = "0.1.0"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1003
+
1004
+ [[package]]
1005
+ name = "pkg-config"
1006
+ version = "0.3.26"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
1009
+
1010
+ [[package]]
1011
+ name = "ppv-lite86"
1012
+ version = "0.2.17"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1015
+
1016
+ [[package]]
1017
+ name = "proc-macro2"
1018
+ version = "1.0.47"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "5ea3d908b0e36316caf9e9e2c4625cdde190a7e6f440d794667ed17a1855e725"
1021
+ dependencies = [
1022
+ "unicode-ident",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "quote"
1027
+ version = "1.0.21"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
1030
+ dependencies = [
1031
+ "proc-macro2",
1032
+ ]
1033
+
1034
+ [[package]]
1035
+ name = "rand"
1036
+ version = "0.8.5"
1037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1038
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1039
+ dependencies = [
1040
+ "libc",
1041
+ "rand_chacha",
1042
+ "rand_core",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "rand_chacha"
1047
+ version = "0.3.1"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1050
+ dependencies = [
1051
+ "ppv-lite86",
1052
+ "rand_core",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "rand_core"
1057
+ version = "0.6.4"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1060
+ dependencies = [
1061
+ "getrandom",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "rayon"
1066
+ version = "1.6.0"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "1e060280438193c554f654141c9ea9417886713b7acd75974c85b18a69a88e0b"
1069
+ dependencies = [
1070
+ "crossbeam-deque",
1071
+ "either",
1072
+ "rayon-core",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "rayon-cond"
1077
+ version = "0.1.0"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "fd1259362c9065e5ea39a789ef40b1e3fd934c94beb7b5ab3ac6629d3b5e7cb7"
1080
+ dependencies = [
1081
+ "either",
1082
+ "itertools 0.8.2",
1083
+ "rayon",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "rayon-core"
1088
+ version = "1.10.1"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3"
1091
+ dependencies = [
1092
+ "crossbeam-channel",
1093
+ "crossbeam-deque",
1094
+ "crossbeam-utils",
1095
+ "num_cpus",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "rb-sys"
1100
+ version = "0.9.46"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "b9f1cfd225389bd9333d93d393d0feeeacd191d97f9b1c881528ac1233c67f0f"
1103
+ dependencies = [
1104
+ "rb-sys-build",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "rb-sys-build"
1109
+ version = "0.9.46"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "fad39a523a00dc5d4f6dcec077568d985807aa5bd03204a0ddf7c1f36544289c"
1112
+ dependencies = [
1113
+ "bindgen",
1114
+ "regex",
1115
+ "shell-words",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "rb-sys-env"
1120
+ version = "0.1.1"
1121
+ source = "git+https://github.com/oxidize-rb/rb-sys#f84304720fd4a60df93669e4790c14dd227f1e2e"
1122
+
1123
+ [[package]]
1124
+ name = "redox_syscall"
1125
+ version = "0.2.16"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
1128
+ dependencies = [
1129
+ "bitflags",
1130
+ ]
1131
+
1132
+ [[package]]
1133
+ name = "redox_users"
1134
+ version = "0.4.3"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
1137
+ dependencies = [
1138
+ "getrandom",
1139
+ "redox_syscall",
1140
+ "thiserror",
1141
+ ]
1142
+
1143
+ [[package]]
1144
+ name = "regex"
1145
+ version = "1.7.0"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
1148
+ dependencies = [
1149
+ "aho-corasick",
1150
+ "memchr",
1151
+ "regex-syntax",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "regex-syntax"
1156
+ version = "0.6.28"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
1159
+
1160
+ [[package]]
1161
+ name = "remove_dir_all"
1162
+ version = "0.5.3"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
1165
+ dependencies = [
1166
+ "winapi",
1167
+ ]
1168
+
1169
+ [[package]]
1170
+ name = "reqwest"
1171
+ version = "0.11.13"
1172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1173
+ checksum = "68cc60575865c7831548863cc02356512e3f1dc2f3f82cb837d7fc4cc8f3c97c"
1174
+ dependencies = [
1175
+ "base64",
1176
+ "bytes",
1177
+ "encoding_rs",
1178
+ "futures-core",
1179
+ "futures-util",
1180
+ "h2",
1181
+ "http",
1182
+ "http-body",
1183
+ "hyper",
1184
+ "hyper-tls",
1185
+ "ipnet",
1186
+ "js-sys",
1187
+ "log",
1188
+ "mime",
1189
+ "native-tls",
1190
+ "once_cell",
1191
+ "percent-encoding",
1192
+ "pin-project-lite",
1193
+ "serde",
1194
+ "serde_json",
1195
+ "serde_urlencoded",
1196
+ "tokio",
1197
+ "tokio-native-tls",
1198
+ "tower-service",
1199
+ "url",
1200
+ "wasm-bindgen",
1201
+ "wasm-bindgen-futures",
1202
+ "web-sys",
1203
+ "winreg",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "rustc-hash"
1208
+ version = "1.1.0"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1211
+
1212
+ [[package]]
1213
+ name = "ryu"
1214
+ version = "1.0.11"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
1217
+
1218
+ [[package]]
1219
+ name = "schannel"
1220
+ version = "0.1.20"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
1223
+ dependencies = [
1224
+ "lazy_static",
1225
+ "windows-sys 0.36.1",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "scopeguard"
1230
+ version = "1.1.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
1233
+
1234
+ [[package]]
1235
+ name = "security-framework"
1236
+ version = "2.7.0"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
1239
+ dependencies = [
1240
+ "bitflags",
1241
+ "core-foundation",
1242
+ "core-foundation-sys",
1243
+ "libc",
1244
+ "security-framework-sys",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "security-framework-sys"
1249
+ version = "2.6.1"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
1252
+ dependencies = [
1253
+ "core-foundation-sys",
1254
+ "libc",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "serde"
1259
+ version = "1.0.148"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "e53f64bb4ba0191d6d0676e1b141ca55047d83b74f5607e6d8eb88126c52c2dc"
1262
+ dependencies = [
1263
+ "serde_derive",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "serde_derive"
1268
+ version = "1.0.148"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "a55492425aa53521babf6137309e7d34c20bbfbbfcfe2c7f3a047fd1f6b92c0c"
1271
+ dependencies = [
1272
+ "proc-macro2",
1273
+ "quote",
1274
+ "syn",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "serde_json"
1279
+ version = "1.0.89"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "020ff22c755c2ed3f8cf162dbb41a7268d934702f3ed3631656ea597e08fc3db"
1282
+ dependencies = [
1283
+ "itoa",
1284
+ "ryu",
1285
+ "serde",
1286
+ ]
1287
+
1288
+ [[package]]
1289
+ name = "serde_urlencoded"
1290
+ version = "0.7.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1293
+ dependencies = [
1294
+ "form_urlencoded",
1295
+ "itoa",
1296
+ "ryu",
1297
+ "serde",
1298
+ ]
1299
+
1300
+ [[package]]
1301
+ name = "sha2"
1302
+ version = "0.10.6"
1303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1304
+ checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
1305
+ dependencies = [
1306
+ "cfg-if",
1307
+ "cpufeatures",
1308
+ "digest",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "shell-words"
1313
+ version = "1.1.0"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1316
+
1317
+ [[package]]
1318
+ name = "shlex"
1319
+ version = "1.1.0"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1322
+
1323
+ [[package]]
1324
+ name = "slab"
1325
+ version = "0.4.7"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
1328
+ dependencies = [
1329
+ "autocfg",
1330
+ ]
1331
+
1332
+ [[package]]
1333
+ name = "smallvec"
1334
+ version = "1.10.0"
1335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1336
+ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
1337
+
1338
+ [[package]]
1339
+ name = "socket2"
1340
+ version = "0.4.7"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "02e2d2db9033d13a1567121ddd7a095ee144db4e1ca1b1bda3419bc0da294ebd"
1343
+ dependencies = [
1344
+ "libc",
1345
+ "winapi",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "spm_precompiled"
1350
+ version = "0.1.4"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
1353
+ dependencies = [
1354
+ "base64",
1355
+ "nom",
1356
+ "serde",
1357
+ "unicode-segmentation",
1358
+ ]
1359
+
1360
+ [[package]]
1361
+ name = "strsim"
1362
+ version = "0.9.3"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
1365
+
1366
+ [[package]]
1367
+ name = "syn"
1368
+ version = "1.0.104"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "4ae548ec36cf198c0ef7710d3c230987c2d6d7bd98ad6edc0274462724c585ce"
1371
+ dependencies = [
1372
+ "proc-macro2",
1373
+ "quote",
1374
+ "unicode-ident",
1375
+ ]
1376
+
1377
+ [[package]]
1378
+ name = "tar"
1379
+ version = "0.4.38"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
1382
+ dependencies = [
1383
+ "filetime",
1384
+ "libc",
1385
+ "xattr",
1386
+ ]
1387
+
1388
+ [[package]]
1389
+ name = "tempfile"
1390
+ version = "3.3.0"
1391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1392
+ checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4"
1393
+ dependencies = [
1394
+ "cfg-if",
1395
+ "fastrand",
1396
+ "libc",
1397
+ "redox_syscall",
1398
+ "remove_dir_all",
1399
+ "winapi",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "terminal_size"
1404
+ version = "0.1.17"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "633c1a546cee861a1a6d0dc69ebeca693bf4296661ba7852b9d21d159e0506df"
1407
+ dependencies = [
1408
+ "libc",
1409
+ "winapi",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "thiserror"
1414
+ version = "1.0.37"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "10deb33631e3c9018b9baf9dcbbc4f737320d2b576bac10f6aefa048fa407e3e"
1417
+ dependencies = [
1418
+ "thiserror-impl",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "thiserror-impl"
1423
+ version = "1.0.37"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "982d17546b47146b28f7c22e3d08465f6b8903d0ea13c1660d9d84a6e7adcdbb"
1426
+ dependencies = [
1427
+ "proc-macro2",
1428
+ "quote",
1429
+ "syn",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "time"
1434
+ version = "0.1.45"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
1437
+ dependencies = [
1438
+ "libc",
1439
+ "wasi 0.10.0+wasi-snapshot-preview1",
1440
+ "winapi",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "tinyvec"
1445
+ version = "1.6.0"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
1448
+ dependencies = [
1449
+ "tinyvec_macros",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "tinyvec_macros"
1454
+ version = "0.1.0"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
1457
+
1458
+ [[package]]
1459
+ name = "tokenizers"
1460
+ version = "0.2.0"
1461
+ dependencies = [
1462
+ "magnus",
1463
+ "tokenizers 0.13.2",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "tokenizers"
1468
+ version = "0.13.2"
1469
+ source = "git+https://github.com/huggingface/tokenizers#67080e163add50e278dce1407538e5cd03ef9d6d"
1470
+ dependencies = [
1471
+ "aho-corasick",
1472
+ "cached-path",
1473
+ "derive_builder",
1474
+ "dirs",
1475
+ "esaxx-rs",
1476
+ "getrandom",
1477
+ "indicatif 0.15.0",
1478
+ "itertools 0.9.0",
1479
+ "lazy_static",
1480
+ "log",
1481
+ "macro_rules_attribute",
1482
+ "onig",
1483
+ "paste",
1484
+ "rand",
1485
+ "rayon",
1486
+ "rayon-cond",
1487
+ "regex",
1488
+ "regex-syntax",
1489
+ "reqwest",
1490
+ "serde",
1491
+ "serde_json",
1492
+ "spm_precompiled",
1493
+ "thiserror",
1494
+ "unicode-normalization-alignments",
1495
+ "unicode-segmentation",
1496
+ "unicode_categories",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "tokio"
1501
+ version = "1.22.0"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "d76ce4a75fb488c605c54bf610f221cea8b0dafb53333c1a67e8ee199dcd2ae3"
1504
+ dependencies = [
1505
+ "autocfg",
1506
+ "bytes",
1507
+ "libc",
1508
+ "memchr",
1509
+ "mio",
1510
+ "num_cpus",
1511
+ "pin-project-lite",
1512
+ "socket2",
1513
+ "winapi",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "tokio-native-tls"
1518
+ version = "0.3.0"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
1521
+ dependencies = [
1522
+ "native-tls",
1523
+ "tokio",
1524
+ ]
1525
+
1526
+ [[package]]
1527
+ name = "tokio-util"
1528
+ version = "0.7.4"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "0bb2e075f03b3d66d8d8785356224ba688d2906a371015e225beeb65ca92c740"
1531
+ dependencies = [
1532
+ "bytes",
1533
+ "futures-core",
1534
+ "futures-sink",
1535
+ "pin-project-lite",
1536
+ "tokio",
1537
+ "tracing",
1538
+ ]
1539
+
1540
+ [[package]]
1541
+ name = "tower-service"
1542
+ version = "0.3.2"
1543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1544
+ checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
1545
+
1546
+ [[package]]
1547
+ name = "tracing"
1548
+ version = "0.1.37"
1549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1550
+ checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
1551
+ dependencies = [
1552
+ "cfg-if",
1553
+ "pin-project-lite",
1554
+ "tracing-core",
1555
+ ]
1556
+
1557
+ [[package]]
1558
+ name = "tracing-core"
1559
+ version = "0.1.30"
1560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1561
+ checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
1562
+ dependencies = [
1563
+ "once_cell",
1564
+ ]
1565
+
1566
+ [[package]]
1567
+ name = "try-lock"
1568
+ version = "0.2.3"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
1571
+
1572
+ [[package]]
1573
+ name = "typenum"
1574
+ version = "1.15.0"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
1577
+
1578
+ [[package]]
1579
+ name = "unicode-bidi"
1580
+ version = "0.3.8"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
1583
+
1584
+ [[package]]
1585
+ name = "unicode-ident"
1586
+ version = "1.0.5"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
1589
+
1590
+ [[package]]
1591
+ name = "unicode-normalization"
1592
+ version = "0.1.22"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
1595
+ dependencies = [
1596
+ "tinyvec",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "unicode-normalization-alignments"
1601
+ version = "0.1.12"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
1604
+ dependencies = [
1605
+ "smallvec",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "unicode-segmentation"
1610
+ version = "1.10.0"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "0fdbf052a0783de01e944a6ce7a8cb939e295b1e7be835a1112c3b9a7f047a5a"
1613
+
1614
+ [[package]]
1615
+ name = "unicode-width"
1616
+ version = "0.1.10"
1617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1618
+ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
1619
+
1620
+ [[package]]
1621
+ name = "unicode_categories"
1622
+ version = "0.1.1"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
1625
+
1626
+ [[package]]
1627
+ name = "url"
1628
+ version = "2.3.1"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
1631
+ dependencies = [
1632
+ "form_urlencoded",
1633
+ "idna",
1634
+ "percent-encoding",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "vcpkg"
1639
+ version = "0.2.15"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1642
+
1643
+ [[package]]
1644
+ name = "version_check"
1645
+ version = "0.9.4"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1648
+
1649
+ [[package]]
1650
+ name = "want"
1651
+ version = "0.3.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
1654
+ dependencies = [
1655
+ "log",
1656
+ "try-lock",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "wasi"
1661
+ version = "0.10.0+wasi-snapshot-preview1"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
1664
+
1665
+ [[package]]
1666
+ name = "wasi"
1667
+ version = "0.11.0+wasi-snapshot-preview1"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1670
+
1671
+ [[package]]
1672
+ name = "wasm-bindgen"
1673
+ version = "0.2.83"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
1676
+ dependencies = [
1677
+ "cfg-if",
1678
+ "wasm-bindgen-macro",
1679
+ ]
1680
+
1681
+ [[package]]
1682
+ name = "wasm-bindgen-backend"
1683
+ version = "0.2.83"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
1686
+ dependencies = [
1687
+ "bumpalo",
1688
+ "log",
1689
+ "once_cell",
1690
+ "proc-macro2",
1691
+ "quote",
1692
+ "syn",
1693
+ "wasm-bindgen-shared",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "wasm-bindgen-futures"
1698
+ version = "0.4.33"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "23639446165ca5a5de86ae1d8896b737ae80319560fbaa4c2887b7da6e7ebd7d"
1701
+ dependencies = [
1702
+ "cfg-if",
1703
+ "js-sys",
1704
+ "wasm-bindgen",
1705
+ "web-sys",
1706
+ ]
1707
+
1708
+ [[package]]
1709
+ name = "wasm-bindgen-macro"
1710
+ version = "0.2.83"
1711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1712
+ checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
1713
+ dependencies = [
1714
+ "quote",
1715
+ "wasm-bindgen-macro-support",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "wasm-bindgen-macro-support"
1720
+ version = "0.2.83"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
1723
+ dependencies = [
1724
+ "proc-macro2",
1725
+ "quote",
1726
+ "syn",
1727
+ "wasm-bindgen-backend",
1728
+ "wasm-bindgen-shared",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "wasm-bindgen-shared"
1733
+ version = "0.2.83"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
1736
+
1737
+ [[package]]
1738
+ name = "web-sys"
1739
+ version = "0.3.60"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f"
1742
+ dependencies = [
1743
+ "js-sys",
1744
+ "wasm-bindgen",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "winapi"
1749
+ version = "0.3.9"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1752
+ dependencies = [
1753
+ "winapi-i686-pc-windows-gnu",
1754
+ "winapi-x86_64-pc-windows-gnu",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "winapi-i686-pc-windows-gnu"
1759
+ version = "0.4.0"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1762
+
1763
+ [[package]]
1764
+ name = "winapi-x86_64-pc-windows-gnu"
1765
+ version = "0.4.0"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1768
+
1769
+ [[package]]
1770
+ name = "windows-sys"
1771
+ version = "0.36.1"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
1774
+ dependencies = [
1775
+ "windows_aarch64_msvc 0.36.1",
1776
+ "windows_i686_gnu 0.36.1",
1777
+ "windows_i686_msvc 0.36.1",
1778
+ "windows_x86_64_gnu 0.36.1",
1779
+ "windows_x86_64_msvc 0.36.1",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "windows-sys"
1784
+ version = "0.42.0"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
1787
+ dependencies = [
1788
+ "windows_aarch64_gnullvm",
1789
+ "windows_aarch64_msvc 0.42.0",
1790
+ "windows_i686_gnu 0.42.0",
1791
+ "windows_i686_msvc 0.42.0",
1792
+ "windows_x86_64_gnu 0.42.0",
1793
+ "windows_x86_64_gnullvm",
1794
+ "windows_x86_64_msvc 0.42.0",
1795
+ ]
1796
+
1797
+ [[package]]
1798
+ name = "windows_aarch64_gnullvm"
1799
+ version = "0.42.0"
1800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1801
+ checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
1802
+
1803
+ [[package]]
1804
+ name = "windows_aarch64_msvc"
1805
+ version = "0.36.1"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
1808
+
1809
+ [[package]]
1810
+ name = "windows_aarch64_msvc"
1811
+ version = "0.42.0"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
1814
+
1815
+ [[package]]
1816
+ name = "windows_i686_gnu"
1817
+ version = "0.36.1"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
1820
+
1821
+ [[package]]
1822
+ name = "windows_i686_gnu"
1823
+ version = "0.42.0"
1824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1825
+ checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
1826
+
1827
+ [[package]]
1828
+ name = "windows_i686_msvc"
1829
+ version = "0.36.1"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
1832
+
1833
+ [[package]]
1834
+ name = "windows_i686_msvc"
1835
+ version = "0.42.0"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
1838
+
1839
+ [[package]]
1840
+ name = "windows_x86_64_gnu"
1841
+ version = "0.36.1"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
1844
+
1845
+ [[package]]
1846
+ name = "windows_x86_64_gnu"
1847
+ version = "0.42.0"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
1850
+
1851
+ [[package]]
1852
+ name = "windows_x86_64_gnullvm"
1853
+ version = "0.42.0"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
1856
+
1857
+ [[package]]
1858
+ name = "windows_x86_64_msvc"
1859
+ version = "0.36.1"
1860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1861
+ checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
1862
+
1863
+ [[package]]
1864
+ name = "windows_x86_64_msvc"
1865
+ version = "0.42.0"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
1868
+
1869
+ [[package]]
1870
+ name = "winreg"
1871
+ version = "0.10.1"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
1874
+ dependencies = [
1875
+ "winapi",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "xattr"
1880
+ version = "0.2.3"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
1883
+ dependencies = [
1884
+ "libc",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "zip"
1889
+ version = "0.5.13"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "93ab48844d61251bb3835145c521d88aa4031d7139e8485990f60ca911fa0815"
1892
+ dependencies = [
1893
+ "byteorder",
1894
+ "bzip2",
1895
+ "crc32fast",
1896
+ "flate2",
1897
+ "thiserror",
1898
+ "time",
1899
+ ]
1900
+
1901
+ [[package]]
1902
+ name = "zip-extensions"
1903
+ version = "0.6.1"
1904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1905
+ checksum = "a64c3c977bc3434ce2d4bcea8ad3c644672de0f2c402b72b9171ca80a8885d14"
1906
+ dependencies = [
1907
+ "zip",
1908
+ ]