flashpdf 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 (27) hide show
  1. flashpdf-0.1.0/Cargo.lock +813 -0
  2. flashpdf-0.1.0/Cargo.toml +8 -0
  3. flashpdf-0.1.0/PKG-INFO +289 -0
  4. flashpdf-0.1.0/README.md +267 -0
  5. flashpdf-0.1.0/crates/flashpdf-core/Cargo.toml +27 -0
  6. flashpdf-0.1.0/crates/flashpdf-core/benches/extraction.rs +112 -0
  7. flashpdf-0.1.0/crates/flashpdf-core/src/document.rs +364 -0
  8. flashpdf-0.1.0/crates/flashpdf-core/src/extract.rs +349 -0
  9. flashpdf-0.1.0/crates/flashpdf-core/src/font.rs +937 -0
  10. flashpdf-0.1.0/crates/flashpdf-core/src/image.rs +308 -0
  11. flashpdf-0.1.0/crates/flashpdf-core/src/layout.rs +625 -0
  12. flashpdf-0.1.0/crates/flashpdf-core/src/lib.rs +31 -0
  13. flashpdf-0.1.0/crates/flashpdf-core/src/links.rs +149 -0
  14. flashpdf-0.1.0/crates/flashpdf-core/src/parser/content_stream.rs +1082 -0
  15. flashpdf-0.1.0/crates/flashpdf-core/src/parser/mod.rs +13 -0
  16. flashpdf-0.1.0/crates/flashpdf-core/src/parser/object.rs +591 -0
  17. flashpdf-0.1.0/crates/flashpdf-core/src/parser/recovery.rs +363 -0
  18. flashpdf-0.1.0/crates/flashpdf-core/src/parser/xref.rs +743 -0
  19. flashpdf-0.1.0/crates/flashpdf-core/src/types.rs +137 -0
  20. flashpdf-0.1.0/crates/flashpdf-core/tests/test_object_parser.rs +435 -0
  21. flashpdf-0.1.0/crates/flashpdf-core/tests/test_real_pdf.rs +154 -0
  22. flashpdf-0.1.0/crates/flashpdf-core/tests/test_xref.rs +261 -0
  23. flashpdf-0.1.0/crates/flashpdf-py/Cargo.toml +12 -0
  24. flashpdf-0.1.0/crates/flashpdf-py/src/lib.rs +168 -0
  25. flashpdf-0.1.0/pyproject.toml +39 -0
  26. flashpdf-0.1.0/python/flashpdf/__init__.py +1 -0
  27. flashpdf-0.1.0/python/flashpdf/py.typed +0 -0
@@ -0,0 +1,813 @@
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 = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anes"
22
+ version = "0.1.6"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
25
+
26
+ [[package]]
27
+ name = "anstyle"
28
+ version = "1.0.14"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
31
+
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.5.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
37
+
38
+ [[package]]
39
+ name = "bumpalo"
40
+ version = "3.20.3"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
43
+
44
+ [[package]]
45
+ name = "cast"
46
+ version = "0.3.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
49
+
50
+ [[package]]
51
+ name = "cfg-if"
52
+ version = "1.0.4"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
55
+
56
+ [[package]]
57
+ name = "ciborium"
58
+ version = "0.2.2"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
61
+ dependencies = [
62
+ "ciborium-io",
63
+ "ciborium-ll",
64
+ "serde",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "ciborium-io"
69
+ version = "0.2.2"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
72
+
73
+ [[package]]
74
+ name = "ciborium-ll"
75
+ version = "0.2.2"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
78
+ dependencies = [
79
+ "ciborium-io",
80
+ "half",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "clap"
85
+ version = "4.6.1"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
88
+ dependencies = [
89
+ "clap_builder",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "clap_builder"
94
+ version = "4.6.0"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
97
+ dependencies = [
98
+ "anstyle",
99
+ "clap_lex",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "clap_lex"
104
+ version = "1.1.0"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
107
+
108
+ [[package]]
109
+ name = "crc32fast"
110
+ version = "1.5.0"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
113
+ dependencies = [
114
+ "cfg-if",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "criterion"
119
+ version = "0.5.1"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
122
+ dependencies = [
123
+ "anes",
124
+ "cast",
125
+ "ciborium",
126
+ "clap",
127
+ "criterion-plot",
128
+ "is-terminal",
129
+ "itertools",
130
+ "num-traits",
131
+ "once_cell",
132
+ "oorandom",
133
+ "plotters",
134
+ "rayon",
135
+ "regex",
136
+ "serde",
137
+ "serde_derive",
138
+ "serde_json",
139
+ "tinytemplate",
140
+ "walkdir",
141
+ ]
142
+
143
+ [[package]]
144
+ name = "criterion-plot"
145
+ version = "0.5.0"
146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
147
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
148
+ dependencies = [
149
+ "cast",
150
+ "itertools",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "crossbeam-deque"
155
+ version = "0.8.6"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
158
+ dependencies = [
159
+ "crossbeam-epoch",
160
+ "crossbeam-utils",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "crossbeam-epoch"
165
+ version = "0.9.18"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
168
+ dependencies = [
169
+ "crossbeam-utils",
170
+ ]
171
+
172
+ [[package]]
173
+ name = "crossbeam-utils"
174
+ version = "0.8.21"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
177
+
178
+ [[package]]
179
+ name = "crunchy"
180
+ version = "0.2.4"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
183
+
184
+ [[package]]
185
+ name = "either"
186
+ version = "1.16.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
189
+
190
+ [[package]]
191
+ name = "fast-float2"
192
+ version = "0.2.3"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "f8eb564c5c7423d25c886fb561d1e4ee69f72354d16918afa32c08811f6b6a55"
195
+
196
+ [[package]]
197
+ name = "flashpdf-core"
198
+ version = "0.1.0"
199
+ dependencies = [
200
+ "crc32fast",
201
+ "criterion",
202
+ "fast-float2",
203
+ "flate2",
204
+ "fnv",
205
+ "memchr",
206
+ "memmap2",
207
+ "rayon",
208
+ "smallvec",
209
+ "zune-png",
210
+ ]
211
+
212
+ [[package]]
213
+ name = "flashpdf-py"
214
+ version = "0.1.0"
215
+ dependencies = [
216
+ "flashpdf-core",
217
+ "pyo3",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "flate2"
222
+ version = "1.1.9"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
225
+ dependencies = [
226
+ "crc32fast",
227
+ "miniz_oxide",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "fnv"
232
+ version = "1.0.7"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
235
+
236
+ [[package]]
237
+ name = "futures-core"
238
+ version = "0.3.32"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
241
+
242
+ [[package]]
243
+ name = "futures-task"
244
+ version = "0.3.32"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
247
+
248
+ [[package]]
249
+ name = "futures-util"
250
+ version = "0.3.32"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
253
+ dependencies = [
254
+ "futures-core",
255
+ "futures-task",
256
+ "pin-project-lite",
257
+ "slab",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "half"
262
+ version = "2.7.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
265
+ dependencies = [
266
+ "cfg-if",
267
+ "crunchy",
268
+ "zerocopy",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "heck"
273
+ version = "0.5.0"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
276
+
277
+ [[package]]
278
+ name = "hermit-abi"
279
+ version = "0.5.2"
280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
281
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
282
+
283
+ [[package]]
284
+ name = "indoc"
285
+ version = "2.0.7"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
288
+ dependencies = [
289
+ "rustversion",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "is-terminal"
294
+ version = "0.4.17"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
297
+ dependencies = [
298
+ "hermit-abi",
299
+ "libc",
300
+ "windows-sys",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "itertools"
305
+ version = "0.10.5"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
308
+ dependencies = [
309
+ "either",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "itoa"
314
+ version = "1.0.18"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
317
+
318
+ [[package]]
319
+ name = "js-sys"
320
+ version = "0.3.102"
321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
322
+ checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
323
+ dependencies = [
324
+ "cfg-if",
325
+ "futures-util",
326
+ "wasm-bindgen",
327
+ ]
328
+
329
+ [[package]]
330
+ name = "libc"
331
+ version = "0.2.186"
332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
333
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
334
+
335
+ [[package]]
336
+ name = "memchr"
337
+ version = "2.8.2"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
340
+
341
+ [[package]]
342
+ name = "memmap2"
343
+ version = "0.9.10"
344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
345
+ checksum = "714098028fe011992e1c3962653c96b2d578c4b4bce9036e15ff220319b1e0e3"
346
+ dependencies = [
347
+ "libc",
348
+ ]
349
+
350
+ [[package]]
351
+ name = "memoffset"
352
+ version = "0.9.1"
353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
354
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
355
+ dependencies = [
356
+ "autocfg",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "miniz_oxide"
361
+ version = "0.8.9"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
364
+ dependencies = [
365
+ "adler2",
366
+ "simd-adler32",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "num-traits"
371
+ version = "0.2.19"
372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
373
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
374
+ dependencies = [
375
+ "autocfg",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "once_cell"
380
+ version = "1.21.4"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
383
+
384
+ [[package]]
385
+ name = "oorandom"
386
+ version = "11.1.5"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
389
+
390
+ [[package]]
391
+ name = "pin-project-lite"
392
+ version = "0.2.17"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
395
+
396
+ [[package]]
397
+ name = "plotters"
398
+ version = "0.3.7"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
401
+ dependencies = [
402
+ "num-traits",
403
+ "plotters-backend",
404
+ "plotters-svg",
405
+ "wasm-bindgen",
406
+ "web-sys",
407
+ ]
408
+
409
+ [[package]]
410
+ name = "plotters-backend"
411
+ version = "0.3.7"
412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
413
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
414
+
415
+ [[package]]
416
+ name = "plotters-svg"
417
+ version = "0.3.7"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
420
+ dependencies = [
421
+ "plotters-backend",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "portable-atomic"
426
+ version = "1.13.1"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
429
+
430
+ [[package]]
431
+ name = "proc-macro2"
432
+ version = "1.0.106"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
435
+ dependencies = [
436
+ "unicode-ident",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "pyo3"
441
+ version = "0.24.2"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
444
+ dependencies = [
445
+ "cfg-if",
446
+ "indoc",
447
+ "libc",
448
+ "memoffset",
449
+ "once_cell",
450
+ "portable-atomic",
451
+ "pyo3-build-config",
452
+ "pyo3-ffi",
453
+ "pyo3-macros",
454
+ "unindent",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "pyo3-build-config"
459
+ version = "0.24.2"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
462
+ dependencies = [
463
+ "once_cell",
464
+ "target-lexicon",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "pyo3-ffi"
469
+ version = "0.24.2"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
472
+ dependencies = [
473
+ "libc",
474
+ "pyo3-build-config",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "pyo3-macros"
479
+ version = "0.24.2"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
482
+ dependencies = [
483
+ "proc-macro2",
484
+ "pyo3-macros-backend",
485
+ "quote",
486
+ "syn",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "pyo3-macros-backend"
491
+ version = "0.24.2"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
494
+ dependencies = [
495
+ "heck",
496
+ "proc-macro2",
497
+ "pyo3-build-config",
498
+ "quote",
499
+ "syn",
500
+ ]
501
+
502
+ [[package]]
503
+ name = "quote"
504
+ version = "1.0.45"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
507
+ dependencies = [
508
+ "proc-macro2",
509
+ ]
510
+
511
+ [[package]]
512
+ name = "rayon"
513
+ version = "1.12.0"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
516
+ dependencies = [
517
+ "either",
518
+ "rayon-core",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "rayon-core"
523
+ version = "1.13.0"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
526
+ dependencies = [
527
+ "crossbeam-deque",
528
+ "crossbeam-utils",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "regex"
533
+ version = "1.12.4"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
536
+ dependencies = [
537
+ "aho-corasick",
538
+ "memchr",
539
+ "regex-automata",
540
+ "regex-syntax",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "regex-automata"
545
+ version = "0.4.14"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
548
+ dependencies = [
549
+ "aho-corasick",
550
+ "memchr",
551
+ "regex-syntax",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "regex-syntax"
556
+ version = "0.8.11"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
559
+
560
+ [[package]]
561
+ name = "rustversion"
562
+ version = "1.0.22"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
565
+
566
+ [[package]]
567
+ name = "same-file"
568
+ version = "1.0.6"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
571
+ dependencies = [
572
+ "winapi-util",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "serde"
577
+ version = "1.0.228"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
580
+ dependencies = [
581
+ "serde_core",
582
+ "serde_derive",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "serde_core"
587
+ version = "1.0.228"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
590
+ dependencies = [
591
+ "serde_derive",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "serde_derive"
596
+ version = "1.0.228"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
599
+ dependencies = [
600
+ "proc-macro2",
601
+ "quote",
602
+ "syn",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "serde_json"
607
+ version = "1.0.150"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
610
+ dependencies = [
611
+ "itoa",
612
+ "memchr",
613
+ "serde",
614
+ "serde_core",
615
+ "zmij",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "simd-adler32"
620
+ version = "0.3.9"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
623
+
624
+ [[package]]
625
+ name = "slab"
626
+ version = "0.4.12"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
629
+
630
+ [[package]]
631
+ name = "smallvec"
632
+ version = "1.15.2"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
635
+
636
+ [[package]]
637
+ name = "syn"
638
+ version = "2.0.118"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
641
+ dependencies = [
642
+ "proc-macro2",
643
+ "quote",
644
+ "unicode-ident",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "target-lexicon"
649
+ version = "0.13.5"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
652
+
653
+ [[package]]
654
+ name = "tinytemplate"
655
+ version = "1.2.1"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
658
+ dependencies = [
659
+ "serde",
660
+ "serde_json",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "unicode-ident"
665
+ version = "1.0.24"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
668
+
669
+ [[package]]
670
+ name = "unindent"
671
+ version = "0.2.4"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
674
+
675
+ [[package]]
676
+ name = "walkdir"
677
+ version = "2.5.0"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
680
+ dependencies = [
681
+ "same-file",
682
+ "winapi-util",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "wasm-bindgen"
687
+ version = "0.2.125"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
690
+ dependencies = [
691
+ "cfg-if",
692
+ "once_cell",
693
+ "rustversion",
694
+ "wasm-bindgen-macro",
695
+ "wasm-bindgen-shared",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "wasm-bindgen-macro"
700
+ version = "0.2.125"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
703
+ dependencies = [
704
+ "quote",
705
+ "wasm-bindgen-macro-support",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "wasm-bindgen-macro-support"
710
+ version = "0.2.125"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
713
+ dependencies = [
714
+ "bumpalo",
715
+ "proc-macro2",
716
+ "quote",
717
+ "syn",
718
+ "wasm-bindgen-shared",
719
+ ]
720
+
721
+ [[package]]
722
+ name = "wasm-bindgen-shared"
723
+ version = "0.2.125"
724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
725
+ checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
726
+ dependencies = [
727
+ "unicode-ident",
728
+ ]
729
+
730
+ [[package]]
731
+ name = "web-sys"
732
+ version = "0.3.102"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
735
+ dependencies = [
736
+ "js-sys",
737
+ "wasm-bindgen",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "winapi-util"
742
+ version = "0.1.11"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
745
+ dependencies = [
746
+ "windows-sys",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "windows-link"
751
+ version = "0.2.1"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
754
+
755
+ [[package]]
756
+ name = "windows-sys"
757
+ version = "0.61.2"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
760
+ dependencies = [
761
+ "windows-link",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "zerocopy"
766
+ version = "0.8.52"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
769
+ dependencies = [
770
+ "zerocopy-derive",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "zerocopy-derive"
775
+ version = "0.8.52"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
778
+ dependencies = [
779
+ "proc-macro2",
780
+ "quote",
781
+ "syn",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "zmij"
786
+ version = "1.0.21"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
789
+
790
+ [[package]]
791
+ name = "zune-core"
792
+ version = "0.4.12"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
795
+
796
+ [[package]]
797
+ name = "zune-inflate"
798
+ version = "0.2.54"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
801
+ dependencies = [
802
+ "simd-adler32",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "zune-png"
807
+ version = "0.4.10"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "7d29c085769c6f29effea890f093120ac019375fdc789d2a496ba8ba96c77509"
810
+ dependencies = [
811
+ "zune-core",
812
+ "zune-inflate",
813
+ ]