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