pakdo 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. pakdo-0.1.0/Cargo.lock +1523 -0
  2. pakdo-0.1.0/Cargo.toml +3 -0
  3. pakdo-0.1.0/PKG-INFO +13 -0
  4. pakdo-0.1.0/bindings/python/Cargo.toml +12 -0
  5. pakdo-0.1.0/bindings/python/src/lib.rs +119 -0
  6. pakdo-0.1.0/bindings/python/tests/fixtures/image.jpg +0 -0
  7. pakdo-0.1.0/bindings/python/tests/fixtures/image.png +0 -0
  8. pakdo-0.1.0/bindings/python/tests/test_convert.py +52 -0
  9. pakdo-0.1.0/core/Cargo.toml +13 -0
  10. pakdo-0.1.0/core/src/config.rs +15 -0
  11. pakdo-0.1.0/core/src/errors.rs +17 -0
  12. pakdo-0.1.0/core/src/lib.rs +109 -0
  13. pakdo-0.1.0/core/src/modules/CAD/.gitkeep +0 -0
  14. pakdo-0.1.0/core/src/modules/archive/.gitkeep +0 -0
  15. pakdo-0.1.0/core/src/modules/audio/.gitkeep +0 -0
  16. pakdo-0.1.0/core/src/modules/converter.rs +6 -0
  17. pakdo-0.1.0/core/src/modules/document/.gitkeep +0 -0
  18. pakdo-0.1.0/core/src/modules/ebook/.gitkeep +0 -0
  19. pakdo-0.1.0/core/src/modules/font/.gitkeep +0 -0
  20. pakdo-0.1.0/core/src/modules/image/.gitkeep +0 -0
  21. pakdo-0.1.0/core/src/modules/image/image_lib.rs +12 -0
  22. pakdo-0.1.0/core/src/modules/image/mod.rs +2 -0
  23. pakdo-0.1.0/core/src/modules/mod.rs +2 -0
  24. pakdo-0.1.0/core/src/modules/presentation/.gitkeep +0 -0
  25. pakdo-0.1.0/core/src/modules/vector/.gitkeep +0 -0
  26. pakdo-0.1.0/core/src/modules/video/.gitkeep +0 -0
  27. pakdo-0.1.0/core/src/utils.rs +18 -0
  28. pakdo-0.1.0/core/tests/common/mod.rs +16 -0
  29. pakdo-0.1.0/core/tests/convert_tests.rs +85 -0
  30. pakdo-0.1.0/core/tests/fixtures/image.jpg +0 -0
  31. pakdo-0.1.0/core/tests/fixtures/image.png +0 -0
  32. pakdo-0.1.0/core/tests/image_tests.rs +29 -0
  33. pakdo-0.1.0/core/tests/utils_tests.rs +42 -0
  34. pakdo-0.1.0/pyproject.toml +36 -0
  35. pakdo-0.1.0/python/pakdo/__init__.py +24 -0
  36. pakdo-0.1.0/python/pakdo/py.typed +0 -0
pakdo-0.1.0/Cargo.lock ADDED
@@ -0,0 +1,1523 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aligned"
13
+ version = "0.4.3"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
16
+ dependencies = [
17
+ "as-slice",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "aligned-vec"
22
+ version = "0.6.4"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
25
+ dependencies = [
26
+ "equator",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anstream"
31
+ version = "1.0.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
34
+ dependencies = [
35
+ "anstyle",
36
+ "anstyle-parse",
37
+ "anstyle-query",
38
+ "anstyle-wincon",
39
+ "colorchoice",
40
+ "is_terminal_polyfill",
41
+ "utf8parse",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstyle"
46
+ version = "1.0.14"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
49
+
50
+ [[package]]
51
+ name = "anstyle-parse"
52
+ version = "1.0.0"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
55
+ dependencies = [
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-query"
61
+ version = "1.1.5"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
64
+ dependencies = [
65
+ "windows-sys",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-wincon"
70
+ version = "3.0.11"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
73
+ dependencies = [
74
+ "anstyle",
75
+ "once_cell_polyfill",
76
+ "windows-sys",
77
+ ]
78
+
79
+ [[package]]
80
+ name = "anyhow"
81
+ version = "1.0.104"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "330a5ed07fa54e4702c9d6c4174f74427fc0ef6e214bbd677ae50a5099946470"
84
+
85
+ [[package]]
86
+ name = "arbitrary"
87
+ version = "1.4.2"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
90
+
91
+ [[package]]
92
+ name = "arg_enum_proc_macro"
93
+ version = "0.3.4"
94
+ source = "registry+https://github.com/rust-lang/crates.io-index"
95
+ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
96
+ dependencies = [
97
+ "proc-macro2",
98
+ "quote",
99
+ "syn 2.0.119",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "arrayvec"
104
+ version = "0.7.8"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
107
+
108
+ [[package]]
109
+ name = "as-slice"
110
+ version = "0.2.1"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
113
+ dependencies = [
114
+ "stable_deref_trait",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "autocfg"
119
+ version = "1.5.1"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
122
+
123
+ [[package]]
124
+ name = "av-scenechange"
125
+ version = "0.14.1"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
128
+ dependencies = [
129
+ "aligned",
130
+ "anyhow",
131
+ "arg_enum_proc_macro",
132
+ "arrayvec",
133
+ "log",
134
+ "num-rational",
135
+ "num-traits",
136
+ "pastey",
137
+ "rayon",
138
+ "thiserror",
139
+ "v_frame",
140
+ "y4m",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "av1-grain"
145
+ version = "0.2.5"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
148
+ dependencies = [
149
+ "anyhow",
150
+ "arrayvec",
151
+ "log",
152
+ "nom",
153
+ "num-rational",
154
+ "v_frame",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "avif-serialize"
159
+ version = "0.8.9"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "e7178fe5f7d460b13895ebb9dcb28a3a6216d2df2574a0806cb51b555d297f38"
162
+ dependencies = [
163
+ "arrayvec",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "bit_field"
168
+ version = "0.10.3"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
171
+
172
+ [[package]]
173
+ name = "bitflags"
174
+ version = "2.13.1"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
177
+
178
+ [[package]]
179
+ name = "bitstream-io"
180
+ version = "4.10.0"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "7eff00be299a18769011411c9def0d827e8f2d7bf0c3dbf53633147a8867fd1f"
183
+ dependencies = [
184
+ "no_std_io2",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "built"
189
+ version = "0.8.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "5c0e531d93d39c34eef561e929e8a7f86d77a5af08aac4f6d6e39976c51858e9"
192
+
193
+ [[package]]
194
+ name = "bumpalo"
195
+ version = "3.20.3"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
198
+
199
+ [[package]]
200
+ name = "bytemuck"
201
+ version = "1.25.2"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
204
+
205
+ [[package]]
206
+ name = "byteorder-lite"
207
+ version = "0.1.0"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
210
+
211
+ [[package]]
212
+ name = "cc"
213
+ version = "1.4.0"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
216
+ dependencies = [
217
+ "find-msvc-tools",
218
+ "jobserver",
219
+ "libc",
220
+ "shlex",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "cfb"
225
+ version = "0.14.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "a347dcabdae9c31b0825fd6a8bed285ec9c2acb89c47827126d52fa4f59cece3"
228
+ dependencies = [
229
+ "fnv",
230
+ "uuid",
231
+ "web-time",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "cfg-if"
236
+ version = "1.0.4"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
239
+
240
+ [[package]]
241
+ name = "clap"
242
+ version = "4.6.6"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
245
+ dependencies = [
246
+ "clap_builder",
247
+ "clap_derive",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "clap_builder"
252
+ version = "4.6.6"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
255
+ dependencies = [
256
+ "anstream",
257
+ "anstyle",
258
+ "clap_lex",
259
+ "strsim",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "clap_derive"
264
+ version = "4.6.4"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "d012d2b9d65aca7f18f4d9878a045bc17899bba951561ba5ec3c2ba1eed9a061"
267
+ dependencies = [
268
+ "heck",
269
+ "proc-macro2",
270
+ "quote",
271
+ "syn 3.0.3",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "clap_lex"
276
+ version = "1.1.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
279
+
280
+ [[package]]
281
+ name = "color_quant"
282
+ version = "1.1.0"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
285
+
286
+ [[package]]
287
+ name = "colorchoice"
288
+ version = "1.0.5"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
291
+
292
+ [[package]]
293
+ name = "crc32fast"
294
+ version = "1.5.0"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
297
+ dependencies = [
298
+ "cfg-if",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "crossbeam-deque"
303
+ version = "0.8.7"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
306
+ dependencies = [
307
+ "crossbeam-epoch",
308
+ "crossbeam-utils",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "crossbeam-epoch"
313
+ version = "0.9.20"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
316
+ dependencies = [
317
+ "crossbeam-utils",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "crossbeam-utils"
322
+ version = "0.8.22"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
325
+
326
+ [[package]]
327
+ name = "crunchy"
328
+ version = "0.2.4"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
331
+
332
+ [[package]]
333
+ name = "either"
334
+ version = "1.17.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
337
+
338
+ [[package]]
339
+ name = "equator"
340
+ version = "0.4.2"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
343
+ dependencies = [
344
+ "equator-macro",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "equator-macro"
349
+ version = "0.4.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
352
+ dependencies = [
353
+ "proc-macro2",
354
+ "quote",
355
+ "syn 2.0.119",
356
+ ]
357
+
358
+ [[package]]
359
+ name = "errno"
360
+ version = "0.3.14"
361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
362
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
363
+ dependencies = [
364
+ "libc",
365
+ "windows-sys",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "exr"
370
+ version = "1.74.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "711fe42c9964295e01ee3fba3f9fe0e1d24b98886950d68efe81b1c76e21adf3"
373
+ dependencies = [
374
+ "bit_field",
375
+ "half",
376
+ "lebe",
377
+ "miniz_oxide",
378
+ "num-complex",
379
+ "pulp",
380
+ "rayon-core",
381
+ "smallvec",
382
+ "zune-inflate",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "fastrand"
387
+ version = "2.5.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
390
+
391
+ [[package]]
392
+ name = "fax"
393
+ version = "0.2.7"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "caf1079563223d5d59d83c85886a56e586cfd5c1a26292e971a0fa266531ac5a"
396
+
397
+ [[package]]
398
+ name = "fdeflate"
399
+ version = "0.3.7"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
402
+ dependencies = [
403
+ "simd-adler32",
404
+ ]
405
+
406
+ [[package]]
407
+ name = "find-msvc-tools"
408
+ version = "0.1.9"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
411
+
412
+ [[package]]
413
+ name = "flate2"
414
+ version = "1.1.9"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
417
+ dependencies = [
418
+ "crc32fast",
419
+ "miniz_oxide",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "fnv"
424
+ version = "1.0.7"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
427
+
428
+ [[package]]
429
+ name = "futures-core"
430
+ version = "0.3.33"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "2cd50c473c80f6d7c3670a752354b8e569b1a7cbfdc0419ec88e5edad85e0dc7"
433
+
434
+ [[package]]
435
+ name = "futures-task"
436
+ version = "0.3.33"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "b231ed28831efb4a61a08580c4bc233ec56bc009f4cd8f52da2c3cb97df0c109"
439
+
440
+ [[package]]
441
+ name = "futures-util"
442
+ version = "0.3.33"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "a77a90a256fce34da66415271e30f94ee91c57b04b8a2c042d9cf3220179deaa"
445
+ dependencies = [
446
+ "futures-core",
447
+ "futures-task",
448
+ "pin-project-lite",
449
+ "slab",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "getrandom"
454
+ version = "0.3.4"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
457
+ dependencies = [
458
+ "cfg-if",
459
+ "libc",
460
+ "r-efi 5.3.0",
461
+ "wasip2",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "getrandom"
466
+ version = "0.4.3"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
469
+ dependencies = [
470
+ "cfg-if",
471
+ "libc",
472
+ "r-efi 6.0.0",
473
+ ]
474
+
475
+ [[package]]
476
+ name = "gif"
477
+ version = "0.14.2"
478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
479
+ checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
480
+ dependencies = [
481
+ "color_quant",
482
+ "weezl",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "half"
487
+ version = "2.7.1"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
490
+ dependencies = [
491
+ "cfg-if",
492
+ "crunchy",
493
+ "zerocopy",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "heck"
498
+ version = "0.5.0"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
501
+
502
+ [[package]]
503
+ name = "image"
504
+ version = "0.25.10"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
507
+ dependencies = [
508
+ "bytemuck",
509
+ "byteorder-lite",
510
+ "color_quant",
511
+ "exr",
512
+ "gif",
513
+ "image-webp",
514
+ "moxcms",
515
+ "num-traits",
516
+ "png",
517
+ "qoi",
518
+ "ravif",
519
+ "rayon",
520
+ "rgb",
521
+ "tiff",
522
+ "zune-core",
523
+ "zune-jpeg",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "image-webp"
528
+ version = "0.2.4"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
531
+ dependencies = [
532
+ "byteorder-lite",
533
+ "quick-error",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "imgref"
538
+ version = "1.12.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "89194689a993ab15268672e99e7b0e19da2da3268ac682e8f02d29d4d1434cd7"
541
+
542
+ [[package]]
543
+ name = "infer"
544
+ version = "0.22.0"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "f4200d433cbd5178df7797c9c2e75b348b728e39631cf14520d1e2fc424201f4"
547
+ dependencies = [
548
+ "cfb",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "interpolate_name"
553
+ version = "0.2.4"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
556
+ dependencies = [
557
+ "proc-macro2",
558
+ "quote",
559
+ "syn 2.0.119",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "is_terminal_polyfill"
564
+ version = "1.70.2"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
567
+
568
+ [[package]]
569
+ name = "itertools"
570
+ version = "0.14.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
573
+ dependencies = [
574
+ "either",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "jobserver"
579
+ version = "0.1.35"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "1c00acbd29eabad4a2392fa0e921c874934dbbf4194312ad20f04a0ed67a3cb3"
582
+ dependencies = [
583
+ "getrandom 0.4.3",
584
+ "libc",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "js-sys"
589
+ version = "0.3.103"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
592
+ dependencies = [
593
+ "cfg-if",
594
+ "futures-util",
595
+ "wasm-bindgen",
596
+ ]
597
+
598
+ [[package]]
599
+ name = "lebe"
600
+ version = "0.5.3"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
603
+
604
+ [[package]]
605
+ name = "libc"
606
+ version = "0.2.189"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
609
+
610
+ [[package]]
611
+ name = "libfuzzer-sys"
612
+ version = "0.4.13"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "a9fd2f41a1cba099f79a0b6b6c35656cf7c03351a7bae8ff0f28f25270f929d2"
615
+ dependencies = [
616
+ "arbitrary",
617
+ "cc",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "libm"
622
+ version = "0.2.16"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
625
+
626
+ [[package]]
627
+ name = "linux-raw-sys"
628
+ version = "0.12.1"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
631
+
632
+ [[package]]
633
+ name = "log"
634
+ version = "0.4.33"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
637
+
638
+ [[package]]
639
+ name = "loop9"
640
+ version = "0.1.5"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
643
+ dependencies = [
644
+ "imgref",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "maybe-rayon"
649
+ version = "0.1.1"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
652
+ dependencies = [
653
+ "cfg-if",
654
+ "rayon",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "memchr"
659
+ version = "2.8.3"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
662
+
663
+ [[package]]
664
+ name = "miniz_oxide"
665
+ version = "0.8.9"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
668
+ dependencies = [
669
+ "adler2",
670
+ "simd-adler32",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "moxcms"
675
+ version = "0.8.1"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
678
+ dependencies = [
679
+ "num-traits",
680
+ "pxfm",
681
+ ]
682
+
683
+ [[package]]
684
+ name = "new_debug_unreachable"
685
+ version = "1.0.6"
686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
687
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
688
+
689
+ [[package]]
690
+ name = "no_std_io2"
691
+ version = "0.9.4"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "418abd1b6d34fbf6cae440dc874771b0525a604428704c76e48b29a5e67b8003"
694
+ dependencies = [
695
+ "memchr",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "nom"
700
+ version = "8.0.0"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
703
+ dependencies = [
704
+ "memchr",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "noop_proc_macro"
709
+ version = "0.3.0"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
712
+
713
+ [[package]]
714
+ name = "num-bigint"
715
+ version = "0.4.8"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
718
+ dependencies = [
719
+ "num-integer",
720
+ "num-traits",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "num-complex"
725
+ version = "0.4.6"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
728
+ dependencies = [
729
+ "bytemuck",
730
+ "num-traits",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "num-derive"
735
+ version = "0.4.2"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
738
+ dependencies = [
739
+ "proc-macro2",
740
+ "quote",
741
+ "syn 2.0.119",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "num-integer"
746
+ version = "0.1.46"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
749
+ dependencies = [
750
+ "num-traits",
751
+ ]
752
+
753
+ [[package]]
754
+ name = "num-rational"
755
+ version = "0.4.2"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
758
+ dependencies = [
759
+ "num-bigint",
760
+ "num-integer",
761
+ "num-traits",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "num-traits"
766
+ version = "0.2.19"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
769
+ dependencies = [
770
+ "autocfg",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "once_cell"
775
+ version = "1.21.4"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
778
+
779
+ [[package]]
780
+ name = "once_cell_polyfill"
781
+ version = "1.70.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
784
+
785
+ [[package]]
786
+ name = "pakdo-cli"
787
+ version = "0.1.0"
788
+ dependencies = [
789
+ "clap",
790
+ "pakdo-core",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "pakdo-core"
795
+ version = "0.1.0"
796
+ dependencies = [
797
+ "image",
798
+ "infer",
799
+ "phf",
800
+ "tempfile",
801
+ "thiserror",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "pakdo-python"
806
+ version = "0.1.0"
807
+ dependencies = [
808
+ "pakdo-core",
809
+ "pyo3",
810
+ ]
811
+
812
+ [[package]]
813
+ name = "paste"
814
+ version = "1.0.15"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
817
+
818
+ [[package]]
819
+ name = "pastey"
820
+ version = "0.1.1"
821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
822
+ checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
823
+
824
+ [[package]]
825
+ name = "phf"
826
+ version = "0.14.0"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "010378780309880b08997fae13be7834dba947d36393bd372f2b1556deb2a2f6"
829
+ dependencies = [
830
+ "phf_macros",
831
+ "phf_shared",
832
+ "serde",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "phf_generator"
837
+ version = "0.14.0"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "aeb62e0959d5a1bebc965f4d15d9e2b7cea002b6b0f5ba8cde6cc26738467100"
840
+ dependencies = [
841
+ "fastrand",
842
+ "phf_shared",
843
+ ]
844
+
845
+ [[package]]
846
+ name = "phf_macros"
847
+ version = "0.14.0"
848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
849
+ checksum = "5fa8d0ca26d424d27630da600c6624696e7dec8bf7b3b492b383c5dc49e5e085"
850
+ dependencies = [
851
+ "phf_generator",
852
+ "phf_shared",
853
+ "proc-macro2",
854
+ "quote",
855
+ "syn 2.0.119",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "phf_shared"
860
+ version = "0.14.0"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89"
863
+ dependencies = [
864
+ "siphasher",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "pin-project-lite"
869
+ version = "0.2.17"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
872
+
873
+ [[package]]
874
+ name = "png"
875
+ version = "0.18.1"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
878
+ dependencies = [
879
+ "bitflags",
880
+ "crc32fast",
881
+ "fdeflate",
882
+ "flate2",
883
+ "miniz_oxide",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "portable-atomic"
888
+ version = "1.15.0"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
891
+
892
+ [[package]]
893
+ name = "ppv-lite86"
894
+ version = "0.2.21"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
897
+ dependencies = [
898
+ "zerocopy",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "proc-macro2"
903
+ version = "1.0.107"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
906
+ dependencies = [
907
+ "unicode-ident",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "profiling"
912
+ version = "1.0.18"
913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
914
+ checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
915
+ dependencies = [
916
+ "profiling-procmacros",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "profiling-procmacros"
921
+ version = "1.0.18"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "4488a4a36b9a4ba6b9334a32a39971f77c1436ec82c38707bce707699cc3bbcb"
924
+ dependencies = [
925
+ "quote",
926
+ "syn 2.0.119",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "pulp"
931
+ version = "0.22.3"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "046aa45b989642ec2e4717c8e72d677b13edd831a4d3b6cf37d9a3e54912496a"
934
+ dependencies = [
935
+ "bytemuck",
936
+ "cfg-if",
937
+ "libm",
938
+ "num-complex",
939
+ "paste",
940
+ "pulp-wasm-simd-flag",
941
+ "raw-cpuid",
942
+ "reborrow",
943
+ "version_check",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "pulp-wasm-simd-flag"
948
+ version = "0.1.1"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "1d8f70e07b9c3962945a74e59ca1c511bba65b6419468acc217c457d93f3c740"
951
+
952
+ [[package]]
953
+ name = "pxfm"
954
+ version = "0.1.30"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "d55d956fa96f5ec02be2e13af0e20391a5aa83d6a074e3ad368959d0fab299ea"
957
+
958
+ [[package]]
959
+ name = "pyo3"
960
+ version = "0.29.2"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "4688ddedf473e32662b9b067670129a8afb8c18e351482c70d62ba4a88171e8b"
963
+ dependencies = [
964
+ "libc",
965
+ "once_cell",
966
+ "portable-atomic",
967
+ "pyo3-build-config",
968
+ "pyo3-ffi",
969
+ "pyo3-macros",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "pyo3-build-config"
974
+ version = "0.29.2"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "f41027e41b4bd03f6e60f9f417fe24a6341a6bb744edd62b6f709f2a52ea30e9"
977
+ dependencies = [
978
+ "target-lexicon",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "pyo3-ffi"
983
+ version = "0.29.2"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "e591a95526fead067432c3b3a33fc74770b87b1e04e73671090d9c2055a2b327"
986
+ dependencies = [
987
+ "libc",
988
+ "pyo3-build-config",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "pyo3-macros"
993
+ version = "0.29.2"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "73225868fc1cd84eef2c3c230ddb91273bf1de46aeb8a4248da76d32a0924a1c"
996
+ dependencies = [
997
+ "proc-macro2",
998
+ "pyo3-macros-backend",
999
+ "quote",
1000
+ "syn 2.0.119",
1001
+ ]
1002
+
1003
+ [[package]]
1004
+ name = "pyo3-macros-backend"
1005
+ version = "0.29.2"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "571575aa3749fa6216757dd47d2a3e7ef360f329a40f0666a9fbd14889024952"
1008
+ dependencies = [
1009
+ "heck",
1010
+ "proc-macro2",
1011
+ "quote",
1012
+ "syn 2.0.119",
1013
+ ]
1014
+
1015
+ [[package]]
1016
+ name = "qoi"
1017
+ version = "0.4.1"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
1020
+ dependencies = [
1021
+ "bytemuck",
1022
+ ]
1023
+
1024
+ [[package]]
1025
+ name = "quick-error"
1026
+ version = "2.0.1"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1029
+
1030
+ [[package]]
1031
+ name = "quote"
1032
+ version = "1.0.47"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
1035
+ dependencies = [
1036
+ "proc-macro2",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "r-efi"
1041
+ version = "5.3.0"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1044
+
1045
+ [[package]]
1046
+ name = "r-efi"
1047
+ version = "6.0.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1050
+
1051
+ [[package]]
1052
+ name = "rand"
1053
+ version = "0.9.5"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
1056
+ dependencies = [
1057
+ "rand_chacha",
1058
+ "rand_core",
1059
+ ]
1060
+
1061
+ [[package]]
1062
+ name = "rand_chacha"
1063
+ version = "0.9.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1066
+ dependencies = [
1067
+ "ppv-lite86",
1068
+ "rand_core",
1069
+ ]
1070
+
1071
+ [[package]]
1072
+ name = "rand_core"
1073
+ version = "0.9.5"
1074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1075
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1076
+ dependencies = [
1077
+ "getrandom 0.3.4",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "rav1e"
1082
+ version = "0.8.1"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
1085
+ dependencies = [
1086
+ "aligned-vec",
1087
+ "arbitrary",
1088
+ "arg_enum_proc_macro",
1089
+ "arrayvec",
1090
+ "av-scenechange",
1091
+ "av1-grain",
1092
+ "bitstream-io",
1093
+ "built",
1094
+ "cfg-if",
1095
+ "interpolate_name",
1096
+ "itertools",
1097
+ "libc",
1098
+ "libfuzzer-sys",
1099
+ "log",
1100
+ "maybe-rayon",
1101
+ "new_debug_unreachable",
1102
+ "noop_proc_macro",
1103
+ "num-derive",
1104
+ "num-traits",
1105
+ "paste",
1106
+ "profiling",
1107
+ "rand",
1108
+ "rand_chacha",
1109
+ "simd_helpers",
1110
+ "thiserror",
1111
+ "v_frame",
1112
+ "wasm-bindgen",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "ravif"
1117
+ version = "0.13.0"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "e52310197d971b0f5be7fe6b57530dcd27beb35c1b013f29d66c1ad73fbbcc45"
1120
+ dependencies = [
1121
+ "avif-serialize",
1122
+ "imgref",
1123
+ "loop9",
1124
+ "quick-error",
1125
+ "rav1e",
1126
+ "rayon",
1127
+ "rgb",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "raw-cpuid"
1132
+ version = "11.6.0"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
1135
+ dependencies = [
1136
+ "bitflags",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "rayon"
1141
+ version = "1.12.0"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1144
+ dependencies = [
1145
+ "either",
1146
+ "rayon-core",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "rayon-core"
1151
+ version = "1.13.0"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1154
+ dependencies = [
1155
+ "crossbeam-deque",
1156
+ "crossbeam-utils",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "reborrow"
1161
+ version = "0.5.5"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
1164
+
1165
+ [[package]]
1166
+ name = "rgb"
1167
+ version = "0.8.53"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
1170
+
1171
+ [[package]]
1172
+ name = "rustix"
1173
+ version = "1.1.4"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1176
+ dependencies = [
1177
+ "bitflags",
1178
+ "errno",
1179
+ "libc",
1180
+ "linux-raw-sys",
1181
+ "windows-sys",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "rustversion"
1186
+ version = "1.0.23"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1189
+
1190
+ [[package]]
1191
+ name = "serde"
1192
+ version = "1.0.229"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
1195
+ dependencies = [
1196
+ "serde_core",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "serde_core"
1201
+ version = "1.0.229"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
1204
+ dependencies = [
1205
+ "serde_derive",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "serde_derive"
1210
+ version = "1.0.229"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
1213
+ dependencies = [
1214
+ "proc-macro2",
1215
+ "quote",
1216
+ "syn 3.0.3",
1217
+ ]
1218
+
1219
+ [[package]]
1220
+ name = "shlex"
1221
+ version = "2.0.1"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1224
+
1225
+ [[package]]
1226
+ name = "simd-adler32"
1227
+ version = "0.3.10"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "3a219298ac11a56ea9a6d2120044824d6f01aeb034955e7af7bc16858527deea"
1230
+
1231
+ [[package]]
1232
+ name = "simd_helpers"
1233
+ version = "0.1.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
1236
+ dependencies = [
1237
+ "quote",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "siphasher"
1242
+ version = "1.0.3"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1245
+
1246
+ [[package]]
1247
+ name = "slab"
1248
+ version = "0.4.12"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1251
+
1252
+ [[package]]
1253
+ name = "smallvec"
1254
+ version = "1.15.2"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1257
+
1258
+ [[package]]
1259
+ name = "stable_deref_trait"
1260
+ version = "1.2.1"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1263
+
1264
+ [[package]]
1265
+ name = "strsim"
1266
+ version = "0.11.1"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1269
+
1270
+ [[package]]
1271
+ name = "syn"
1272
+ version = "2.0.119"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
1275
+ dependencies = [
1276
+ "proc-macro2",
1277
+ "quote",
1278
+ "unicode-ident",
1279
+ ]
1280
+
1281
+ [[package]]
1282
+ name = "syn"
1283
+ version = "3.0.3"
1284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1285
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
1286
+ dependencies = [
1287
+ "proc-macro2",
1288
+ "quote",
1289
+ "unicode-ident",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "target-lexicon"
1294
+ version = "0.13.5"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1297
+
1298
+ [[package]]
1299
+ name = "tempfile"
1300
+ version = "3.27.0"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1303
+ dependencies = [
1304
+ "fastrand",
1305
+ "getrandom 0.4.3",
1306
+ "once_cell",
1307
+ "rustix",
1308
+ "windows-sys",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "thiserror"
1313
+ version = "2.0.19"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "09a43598840e33d5b0331f38c5e30d13bb11c11210a4b58f0d9b18a5a5eefcd9"
1316
+ dependencies = [
1317
+ "thiserror-impl",
1318
+ ]
1319
+
1320
+ [[package]]
1321
+ name = "thiserror-impl"
1322
+ version = "2.0.19"
1323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1324
+ checksum = "43cbfe0cf76104d42a574802844187e84a305e531ed54455f11fbde0f10541cd"
1325
+ dependencies = [
1326
+ "proc-macro2",
1327
+ "quote",
1328
+ "syn 3.0.3",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "tiff"
1333
+ version = "0.11.3"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "b63feaf3343d35b6ca4d50483f94843803b0f51634937cc2ec519fc32232bc52"
1336
+ dependencies = [
1337
+ "fax",
1338
+ "flate2",
1339
+ "half",
1340
+ "quick-error",
1341
+ "weezl",
1342
+ "zune-jpeg",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "unicode-ident"
1347
+ version = "1.0.24"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1350
+
1351
+ [[package]]
1352
+ name = "utf8parse"
1353
+ version = "0.2.2"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1356
+
1357
+ [[package]]
1358
+ name = "uuid"
1359
+ version = "1.24.0"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "bf3923a6f5c4c6382e0b653c4117f48d631ea17f38ed86e2a828e6f7412f5239"
1362
+ dependencies = [
1363
+ "js-sys",
1364
+ "wasm-bindgen",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "v_frame"
1369
+ version = "0.3.9"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
1372
+ dependencies = [
1373
+ "aligned-vec",
1374
+ "num-traits",
1375
+ "wasm-bindgen",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "version_check"
1380
+ version = "0.9.5"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1383
+
1384
+ [[package]]
1385
+ name = "wasip2"
1386
+ version = "1.0.4+wasi-0.2.12"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
1389
+ dependencies = [
1390
+ "wit-bindgen",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "wasm-bindgen"
1395
+ version = "0.2.126"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1398
+ dependencies = [
1399
+ "cfg-if",
1400
+ "once_cell",
1401
+ "rustversion",
1402
+ "wasm-bindgen-macro",
1403
+ "wasm-bindgen-shared",
1404
+ ]
1405
+
1406
+ [[package]]
1407
+ name = "wasm-bindgen-macro"
1408
+ version = "0.2.126"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1411
+ dependencies = [
1412
+ "quote",
1413
+ "wasm-bindgen-macro-support",
1414
+ ]
1415
+
1416
+ [[package]]
1417
+ name = "wasm-bindgen-macro-support"
1418
+ version = "0.2.126"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1421
+ dependencies = [
1422
+ "bumpalo",
1423
+ "proc-macro2",
1424
+ "quote",
1425
+ "syn 2.0.119",
1426
+ "wasm-bindgen-shared",
1427
+ ]
1428
+
1429
+ [[package]]
1430
+ name = "wasm-bindgen-shared"
1431
+ version = "0.2.126"
1432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1433
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1434
+ dependencies = [
1435
+ "unicode-ident",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "web-time"
1440
+ version = "1.1.0"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1443
+ dependencies = [
1444
+ "js-sys",
1445
+ "wasm-bindgen",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "weezl"
1450
+ version = "0.1.12"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
1453
+
1454
+ [[package]]
1455
+ name = "windows-link"
1456
+ version = "0.2.1"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1459
+
1460
+ [[package]]
1461
+ name = "windows-sys"
1462
+ version = "0.61.2"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1465
+ dependencies = [
1466
+ "windows-link",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "wit-bindgen"
1471
+ version = "0.57.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1474
+
1475
+ [[package]]
1476
+ name = "y4m"
1477
+ version = "0.8.0"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
1480
+
1481
+ [[package]]
1482
+ name = "zerocopy"
1483
+ version = "0.8.56"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
1486
+ dependencies = [
1487
+ "zerocopy-derive",
1488
+ ]
1489
+
1490
+ [[package]]
1491
+ name = "zerocopy-derive"
1492
+ version = "0.8.56"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
1495
+ dependencies = [
1496
+ "proc-macro2",
1497
+ "quote",
1498
+ "syn 2.0.119",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "zune-core"
1503
+ version = "0.5.1"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
1506
+
1507
+ [[package]]
1508
+ name = "zune-inflate"
1509
+ version = "0.2.54"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
1512
+ dependencies = [
1513
+ "simd-adler32",
1514
+ ]
1515
+
1516
+ [[package]]
1517
+ name = "zune-jpeg"
1518
+ version = "0.5.15"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
1521
+ dependencies = [
1522
+ "zune-core",
1523
+ ]