colordom 0.2.0 → 0.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1036 @@
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 = "adler32"
13
+ version = "1.2.0"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
16
+
17
+ [[package]]
18
+ name = "aho-corasick"
19
+ version = "0.7.18"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
22
+ dependencies = [
23
+ "memchr",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "ansi_term"
28
+ version = "0.12.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
31
+ dependencies = [
32
+ "winapi",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "approx"
37
+ version = "0.5.1"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
40
+ dependencies = [
41
+ "num-traits",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "atty"
46
+ version = "0.2.14"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
49
+ dependencies = [
50
+ "hermit-abi",
51
+ "libc",
52
+ "winapi",
53
+ ]
54
+
55
+ [[package]]
56
+ name = "autocfg"
57
+ version = "1.1.0"
58
+ source = "registry+https://github.com/rust-lang/crates.io-index"
59
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
60
+
61
+ [[package]]
62
+ name = "bindgen"
63
+ version = "0.59.2"
64
+ source = "registry+https://github.com/rust-lang/crates.io-index"
65
+ checksum = "2bd2a9a458e8f4304c52c43ebb0cfbd520289f8379a52e329a38afda99bf8eb8"
66
+ dependencies = [
67
+ "bitflags",
68
+ "cexpr",
69
+ "clang-sys",
70
+ "clap",
71
+ "env_logger",
72
+ "lazy_static",
73
+ "lazycell",
74
+ "log",
75
+ "peeking_take_while",
76
+ "proc-macro2",
77
+ "quote",
78
+ "regex",
79
+ "rustc-hash",
80
+ "shlex",
81
+ "which",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "bit_field"
86
+ version = "0.10.1"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4"
89
+
90
+ [[package]]
91
+ name = "bitflags"
92
+ version = "1.3.2"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
95
+
96
+ [[package]]
97
+ name = "bumpalo"
98
+ version = "3.11.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "c1ad822118d20d2c234f427000d5acc36eabe1e29a348c89b63dd60b13f28e5d"
101
+
102
+ [[package]]
103
+ name = "bytemuck"
104
+ version = "1.12.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "2f5715e491b5a1598fc2bef5a606847b5dc1d48ea625bd3c02c00de8285591da"
107
+
108
+ [[package]]
109
+ name = "byteorder"
110
+ version = "1.4.3"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
113
+
114
+ [[package]]
115
+ name = "cexpr"
116
+ version = "0.6.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
119
+ dependencies = [
120
+ "nom",
121
+ ]
122
+
123
+ [[package]]
124
+ name = "cfg-if"
125
+ version = "1.0.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
128
+
129
+ [[package]]
130
+ name = "clang-sys"
131
+ version = "1.3.3"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "5a050e2153c5be08febd6734e29298e844fdb0fa21aeddd63b4eb7baa106c69b"
134
+ dependencies = [
135
+ "glob",
136
+ "libc",
137
+ "libloading",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "clap"
142
+ version = "2.34.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
145
+ dependencies = [
146
+ "ansi_term",
147
+ "atty",
148
+ "bitflags",
149
+ "strsim 0.8.0",
150
+ "textwrap",
151
+ "unicode-width",
152
+ "vec_map",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "color_quant"
157
+ version = "1.1.0"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
160
+
161
+ [[package]]
162
+ name = "colordom"
163
+ version = "0.1.0"
164
+ dependencies = [
165
+ "dominant_color",
166
+ "image",
167
+ "kmeans_colors",
168
+ "magnus",
169
+ "palette",
170
+ "palette_extract",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "crc32fast"
175
+ version = "1.3.2"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
178
+ dependencies = [
179
+ "cfg-if",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "crossbeam-channel"
184
+ version = "0.5.6"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
187
+ dependencies = [
188
+ "cfg-if",
189
+ "crossbeam-utils",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "crossbeam-deque"
194
+ version = "0.8.2"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
197
+ dependencies = [
198
+ "cfg-if",
199
+ "crossbeam-epoch",
200
+ "crossbeam-utils",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "crossbeam-epoch"
205
+ version = "0.9.10"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "045ebe27666471bb549370b4b0b3e51b07f56325befa4284db65fc89c02511b1"
208
+ dependencies = [
209
+ "autocfg",
210
+ "cfg-if",
211
+ "crossbeam-utils",
212
+ "memoffset",
213
+ "once_cell",
214
+ "scopeguard",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "crossbeam-utils"
219
+ version = "0.8.11"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "51887d4adc7b564537b15adcfb307936f8075dfcd5f00dde9a9f1d29383682bc"
222
+ dependencies = [
223
+ "cfg-if",
224
+ "once_cell",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "darling"
229
+ version = "0.13.4"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "a01d95850c592940db9b8194bc39f4bc0e89dee5c4265e4b1807c34a9aba453c"
232
+ dependencies = [
233
+ "darling_core",
234
+ "darling_macro",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "darling_core"
239
+ version = "0.13.4"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
242
+ dependencies = [
243
+ "fnv",
244
+ "ident_case",
245
+ "proc-macro2",
246
+ "quote",
247
+ "strsim 0.10.0",
248
+ "syn",
249
+ ]
250
+
251
+ [[package]]
252
+ name = "darling_macro"
253
+ version = "0.13.4"
254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
255
+ checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
256
+ dependencies = [
257
+ "darling_core",
258
+ "quote",
259
+ "syn",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "deflate"
264
+ version = "1.0.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
267
+ dependencies = [
268
+ "adler32",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "dominant_color"
273
+ version = "0.3.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "2494b5d589b485e8b75ef5e81b4dc271fb0d5814132c308d5d11f0de9b300d96"
276
+
277
+ [[package]]
278
+ name = "either"
279
+ version = "1.8.0"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
282
+
283
+ [[package]]
284
+ name = "env_logger"
285
+ version = "0.9.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "0b2cf0344971ee6c64c31be0d530793fba457d322dfec2810c453d0ef228f9c3"
288
+ dependencies = [
289
+ "atty",
290
+ "humantime",
291
+ "log",
292
+ "regex",
293
+ "termcolor",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "exr"
298
+ version = "1.5.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "78c26a90d9dd411a3d119d6f55752fb4c134ca243250c32fb9cab7b2561638d2"
301
+ dependencies = [
302
+ "bit_field",
303
+ "flume",
304
+ "half",
305
+ "lebe",
306
+ "miniz_oxide",
307
+ "smallvec",
308
+ "threadpool",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "find-crate"
313
+ version = "0.6.3"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "59a98bbaacea1c0eb6a0876280051b892eb73594fd90cf3b20e9c817029c57d2"
316
+ dependencies = [
317
+ "toml",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "flate2"
322
+ version = "1.0.24"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "f82b0f4c27ad9f8bfd1f3208d882da2b09c301bc1c828fd3a00d0216d2fbbff6"
325
+ dependencies = [
326
+ "crc32fast",
327
+ "miniz_oxide",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "flume"
332
+ version = "0.10.14"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
335
+ dependencies = [
336
+ "futures-core",
337
+ "futures-sink",
338
+ "nanorand",
339
+ "pin-project",
340
+ "spin",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "fnv"
345
+ version = "1.0.7"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
348
+
349
+ [[package]]
350
+ name = "futures-core"
351
+ version = "0.3.24"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "4e5aa3de05362c3fb88de6531e6296e85cde7739cccad4b9dfeeb7f6ebce56bf"
354
+
355
+ [[package]]
356
+ name = "futures-sink"
357
+ version = "0.3.24"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "21b20ba5a92e727ba30e72834706623d94ac93a725410b6a6b6fbc1b07f7ba56"
360
+
361
+ [[package]]
362
+ name = "getrandom"
363
+ version = "0.2.7"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
366
+ dependencies = [
367
+ "cfg-if",
368
+ "js-sys",
369
+ "libc",
370
+ "wasi",
371
+ "wasm-bindgen",
372
+ ]
373
+
374
+ [[package]]
375
+ name = "gif"
376
+ version = "0.11.4"
377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
378
+ checksum = "3edd93c6756b4dfaf2709eafcc345ba2636565295c198a9cfbf75fa5e3e00b06"
379
+ dependencies = [
380
+ "color_quant",
381
+ "weezl",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "glob"
386
+ version = "0.3.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
389
+
390
+ [[package]]
391
+ name = "half"
392
+ version = "1.8.2"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
395
+
396
+ [[package]]
397
+ name = "hermit-abi"
398
+ version = "0.1.19"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
401
+ dependencies = [
402
+ "libc",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "humantime"
407
+ version = "2.1.0"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
410
+
411
+ [[package]]
412
+ name = "ident_case"
413
+ version = "1.0.1"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
416
+
417
+ [[package]]
418
+ name = "image"
419
+ version = "0.24.3"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "7e30ca2ecf7666107ff827a8e481de6a132a9b687ed3bb20bb1c144a36c00964"
422
+ dependencies = [
423
+ "bytemuck",
424
+ "byteorder",
425
+ "color_quant",
426
+ "exr",
427
+ "gif",
428
+ "jpeg-decoder",
429
+ "num-rational",
430
+ "num-traits",
431
+ "png",
432
+ "scoped_threadpool",
433
+ "tiff",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "jpeg-decoder"
438
+ version = "0.2.6"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "9478aa10f73e7528198d75109c8be5cd7d15fb530238040148d5f9a22d4c5b3b"
441
+ dependencies = [
442
+ "rayon",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "js-sys"
447
+ version = "0.3.59"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "258451ab10b34f8af53416d1fdab72c22e805f0c92a1136d59470ec0b11138b2"
450
+ dependencies = [
451
+ "wasm-bindgen",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "kmeans_colors"
456
+ version = "0.5.0"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "1d9f1da1000eb32cea537203e5ea121eb06e66c5e5f3420a1e9f11a57676f55b"
459
+ dependencies = [
460
+ "palette",
461
+ "rand",
462
+ "rand_chacha",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "lazy_static"
467
+ version = "1.4.0"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
470
+
471
+ [[package]]
472
+ name = "lazycell"
473
+ version = "1.3.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
476
+
477
+ [[package]]
478
+ name = "lebe"
479
+ version = "0.5.2"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
482
+
483
+ [[package]]
484
+ name = "libc"
485
+ version = "0.2.132"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "8371e4e5341c3a96db127eb2465ac681ced4c433e01dd0e938adbef26ba93ba5"
488
+
489
+ [[package]]
490
+ name = "libloading"
491
+ version = "0.7.3"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "efbc0f03f9a775e9f6aed295c6a1ba2253c5757a9e03d55c6caa46a681abcddd"
494
+ dependencies = [
495
+ "cfg-if",
496
+ "winapi",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "lock_api"
501
+ version = "0.4.8"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "9f80bf5aacaf25cbfc8210d1cfb718f2bf3b11c4c54e5afe36c236853a8ec390"
504
+ dependencies = [
505
+ "autocfg",
506
+ "scopeguard",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "log"
511
+ version = "0.4.17"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
514
+ dependencies = [
515
+ "cfg-if",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "magnus"
520
+ version = "0.3.2"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "983e15338a2e9644f804de8b5e52fb930bcd53b6859de4f4feb85753532b69d3"
523
+ dependencies = [
524
+ "bindgen",
525
+ "magnus-macros",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "magnus-macros"
530
+ version = "0.1.0"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "27968fcabe2ef7e35b8331d71a62882282996f6222c133c0255cf7f33b8d9b48"
533
+ dependencies = [
534
+ "darling",
535
+ "proc-macro2",
536
+ "quote",
537
+ "syn",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "memchr"
542
+ version = "2.5.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
545
+
546
+ [[package]]
547
+ name = "memoffset"
548
+ version = "0.6.5"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
551
+ dependencies = [
552
+ "autocfg",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "minimal-lexical"
557
+ version = "0.2.1"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
560
+
561
+ [[package]]
562
+ name = "miniz_oxide"
563
+ version = "0.5.3"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "6f5c75688da582b8ffc1f1799e9db273f32133c49e048f614d22ec3256773ccc"
566
+ dependencies = [
567
+ "adler",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "nanorand"
572
+ version = "0.7.0"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
575
+ dependencies = [
576
+ "getrandom",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "nom"
581
+ version = "7.1.1"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
584
+ dependencies = [
585
+ "memchr",
586
+ "minimal-lexical",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "num-integer"
591
+ version = "0.1.45"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
594
+ dependencies = [
595
+ "autocfg",
596
+ "num-traits",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "num-rational"
601
+ version = "0.4.1"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
604
+ dependencies = [
605
+ "autocfg",
606
+ "num-integer",
607
+ "num-traits",
608
+ ]
609
+
610
+ [[package]]
611
+ name = "num-traits"
612
+ version = "0.2.15"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
615
+ dependencies = [
616
+ "autocfg",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "num_cpus"
621
+ version = "1.13.1"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
624
+ dependencies = [
625
+ "hermit-abi",
626
+ "libc",
627
+ ]
628
+
629
+ [[package]]
630
+ name = "once_cell"
631
+ version = "1.13.1"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "074864da206b4973b84eb91683020dbefd6a8c3f0f38e054d93954e891935e4e"
634
+
635
+ [[package]]
636
+ name = "palette"
637
+ version = "0.6.1"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "8f9cd68f7112581033f157e56c77ac4a5538ec5836a2e39284e65bd7d7275e49"
640
+ dependencies = [
641
+ "approx",
642
+ "num-traits",
643
+ "palette_derive",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "palette_derive"
648
+ version = "0.6.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "05eedf46a8e7c27f74af0c9cfcdb004ceca158cb1b918c6f68f8d7a549b3e427"
651
+ dependencies = [
652
+ "find-crate",
653
+ "proc-macro2",
654
+ "quote",
655
+ "syn",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "palette_extract"
660
+ version = "0.1.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "37152de66c36e76d4637af2a51310ede2c0e42b80357fa517bf1b595b56489a4"
663
+
664
+ [[package]]
665
+ name = "peeking_take_while"
666
+ version = "0.1.2"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
669
+
670
+ [[package]]
671
+ name = "pin-project"
672
+ version = "1.0.12"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
675
+ dependencies = [
676
+ "pin-project-internal",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "pin-project-internal"
681
+ version = "1.0.12"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
684
+ dependencies = [
685
+ "proc-macro2",
686
+ "quote",
687
+ "syn",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "png"
692
+ version = "0.17.5"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "dc38c0ad57efb786dd57b9864e5b18bae478c00c824dc55a38bbc9da95dde3ba"
695
+ dependencies = [
696
+ "bitflags",
697
+ "crc32fast",
698
+ "deflate",
699
+ "miniz_oxide",
700
+ ]
701
+
702
+ [[package]]
703
+ name = "ppv-lite86"
704
+ version = "0.2.16"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
707
+
708
+ [[package]]
709
+ name = "proc-macro2"
710
+ version = "1.0.43"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "0a2ca2c61bc9f3d74d2886294ab7b9853abd9c1ad903a3ac7815c58989bb7bab"
713
+ dependencies = [
714
+ "unicode-ident",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "quote"
719
+ version = "1.0.21"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "bbe448f377a7d6961e30f5955f9b8d106c3f5e449d493ee1b125c1d43c2b5179"
722
+ dependencies = [
723
+ "proc-macro2",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "rand"
728
+ version = "0.8.5"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
731
+ dependencies = [
732
+ "libc",
733
+ "rand_chacha",
734
+ "rand_core",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "rand_chacha"
739
+ version = "0.3.1"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
742
+ dependencies = [
743
+ "ppv-lite86",
744
+ "rand_core",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "rand_core"
749
+ version = "0.6.3"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
752
+ dependencies = [
753
+ "getrandom",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "rayon"
758
+ version = "1.5.3"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
761
+ dependencies = [
762
+ "autocfg",
763
+ "crossbeam-deque",
764
+ "either",
765
+ "rayon-core",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "rayon-core"
770
+ version = "1.9.3"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
773
+ dependencies = [
774
+ "crossbeam-channel",
775
+ "crossbeam-deque",
776
+ "crossbeam-utils",
777
+ "num_cpus",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "regex"
782
+ version = "1.6.0"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
785
+ dependencies = [
786
+ "aho-corasick",
787
+ "memchr",
788
+ "regex-syntax",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "regex-syntax"
793
+ version = "0.6.27"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
796
+
797
+ [[package]]
798
+ name = "rustc-hash"
799
+ version = "1.1.0"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
802
+
803
+ [[package]]
804
+ name = "scoped_threadpool"
805
+ version = "0.1.9"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "1d51f5df5af43ab3f1360b429fa5e0152ac5ce8c0bd6485cae490332e96846a8"
808
+
809
+ [[package]]
810
+ name = "scopeguard"
811
+ version = "1.1.0"
812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
813
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
814
+
815
+ [[package]]
816
+ name = "serde"
817
+ version = "1.0.144"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "0f747710de3dcd43b88c9168773254e809d8ddbdf9653b84e2554ab219f17860"
820
+
821
+ [[package]]
822
+ name = "shlex"
823
+ version = "1.1.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
826
+
827
+ [[package]]
828
+ name = "smallvec"
829
+ version = "1.9.0"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
832
+
833
+ [[package]]
834
+ name = "spin"
835
+ version = "0.9.4"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
838
+ dependencies = [
839
+ "lock_api",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "strsim"
844
+ version = "0.8.0"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
847
+
848
+ [[package]]
849
+ name = "strsim"
850
+ version = "0.10.0"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
853
+
854
+ [[package]]
855
+ name = "syn"
856
+ version = "1.0.99"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "58dbef6ec655055e20b86b15a8cc6d439cca19b667537ac6a1369572d151ab13"
859
+ dependencies = [
860
+ "proc-macro2",
861
+ "quote",
862
+ "unicode-ident",
863
+ ]
864
+
865
+ [[package]]
866
+ name = "termcolor"
867
+ version = "1.1.3"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
870
+ dependencies = [
871
+ "winapi-util",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "textwrap"
876
+ version = "0.11.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
879
+ dependencies = [
880
+ "unicode-width",
881
+ ]
882
+
883
+ [[package]]
884
+ name = "threadpool"
885
+ version = "1.8.1"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
888
+ dependencies = [
889
+ "num_cpus",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "tiff"
894
+ version = "0.7.3"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "7259662e32d1e219321eb309d5f9d898b779769d81b76e762c07c8e5d38fcb65"
897
+ dependencies = [
898
+ "flate2",
899
+ "jpeg-decoder",
900
+ "weezl",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "toml"
905
+ version = "0.5.9"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "8d82e1a7758622a465f8cee077614c73484dac5b836c02ff6a40d5d1010324d7"
908
+ dependencies = [
909
+ "serde",
910
+ ]
911
+
912
+ [[package]]
913
+ name = "unicode-ident"
914
+ version = "1.0.3"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "c4f5b37a154999a8f3f98cc23a628d850e154479cd94decf3414696e12e31aaf"
917
+
918
+ [[package]]
919
+ name = "unicode-width"
920
+ version = "0.1.9"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
923
+
924
+ [[package]]
925
+ name = "vec_map"
926
+ version = "0.8.2"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
929
+
930
+ [[package]]
931
+ name = "wasi"
932
+ version = "0.11.0+wasi-snapshot-preview1"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
935
+
936
+ [[package]]
937
+ name = "wasm-bindgen"
938
+ version = "0.2.82"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "fc7652e3f6c4706c8d9cd54832c4a4ccb9b5336e2c3bd154d5cccfbf1c1f5f7d"
941
+ dependencies = [
942
+ "cfg-if",
943
+ "wasm-bindgen-macro",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "wasm-bindgen-backend"
948
+ version = "0.2.82"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "662cd44805586bd52971b9586b1df85cdbbd9112e4ef4d8f41559c334dc6ac3f"
951
+ dependencies = [
952
+ "bumpalo",
953
+ "log",
954
+ "once_cell",
955
+ "proc-macro2",
956
+ "quote",
957
+ "syn",
958
+ "wasm-bindgen-shared",
959
+ ]
960
+
961
+ [[package]]
962
+ name = "wasm-bindgen-macro"
963
+ version = "0.2.82"
964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
965
+ checksum = "b260f13d3012071dfb1512849c033b1925038373aea48ced3012c09df952c602"
966
+ dependencies = [
967
+ "quote",
968
+ "wasm-bindgen-macro-support",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "wasm-bindgen-macro-support"
973
+ version = "0.2.82"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "5be8e654bdd9b79216c2929ab90721aa82faf65c48cdf08bdc4e7f51357b80da"
976
+ dependencies = [
977
+ "proc-macro2",
978
+ "quote",
979
+ "syn",
980
+ "wasm-bindgen-backend",
981
+ "wasm-bindgen-shared",
982
+ ]
983
+
984
+ [[package]]
985
+ name = "wasm-bindgen-shared"
986
+ version = "0.2.82"
987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
988
+ checksum = "6598dd0bd3c7d51095ff6531a5b23e02acdc81804e30d8f07afb77b7215a140a"
989
+
990
+ [[package]]
991
+ name = "weezl"
992
+ version = "0.1.7"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "9193164d4de03a926d909d3bc7c30543cecb35400c02114792c2cae20d5e2dbb"
995
+
996
+ [[package]]
997
+ name = "which"
998
+ version = "4.2.5"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "5c4fb54e6113b6a8772ee41c3404fb0301ac79604489467e0a9ce1f3e97c24ae"
1001
+ dependencies = [
1002
+ "either",
1003
+ "lazy_static",
1004
+ "libc",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "winapi"
1009
+ version = "0.3.9"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1012
+ dependencies = [
1013
+ "winapi-i686-pc-windows-gnu",
1014
+ "winapi-x86_64-pc-windows-gnu",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "winapi-i686-pc-windows-gnu"
1019
+ version = "0.4.0"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1022
+
1023
+ [[package]]
1024
+ name = "winapi-util"
1025
+ version = "0.1.5"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
1028
+ dependencies = [
1029
+ "winapi",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "winapi-x86_64-pc-windows-gnu"
1034
+ version = "0.4.0"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"