edgefirst-hal 0.5.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 (50) hide show
  1. edgefirst_hal-0.5.0/Cargo.lock +2960 -0
  2. edgefirst_hal-0.5.0/Cargo.toml +87 -0
  3. edgefirst_hal-0.5.0/PKG-INFO +33 -0
  4. edgefirst_hal-0.5.0/crates/decoder/Cargo.toml +42 -0
  5. edgefirst_hal-0.5.0/crates/decoder/README.md +93 -0
  6. edgefirst_hal-0.5.0/crates/decoder/benches/decoder_benchmark.rs +427 -0
  7. edgefirst_hal-0.5.0/crates/decoder/src/byte.rs +290 -0
  8. edgefirst_hal-0.5.0/crates/decoder/src/decoder.rs +5447 -0
  9. edgefirst_hal-0.5.0/crates/decoder/src/error.rs +63 -0
  10. edgefirst_hal-0.5.0/crates/decoder/src/float.rs +279 -0
  11. edgefirst_hal-0.5.0/crates/decoder/src/lib.rs +2493 -0
  12. edgefirst_hal-0.5.0/crates/decoder/src/modelpack.rs +607 -0
  13. edgefirst_hal-0.5.0/crates/decoder/src/yolo.rs +1474 -0
  14. edgefirst_hal-0.5.0/crates/g2d-sys/Cargo.toml +19 -0
  15. edgefirst_hal-0.5.0/crates/g2d-sys/README.md +67 -0
  16. edgefirst_hal-0.5.0/crates/g2d-sys/g2d.h +253 -0
  17. edgefirst_hal-0.5.0/crates/g2d-sys/src/ffi.rs +581 -0
  18. edgefirst_hal-0.5.0/crates/g2d-sys/src/lib.rs +488 -0
  19. edgefirst_hal-0.5.0/crates/g2d-sys/update.sh +3 -0
  20. edgefirst_hal-0.5.0/crates/hal/Cargo.toml +23 -0
  21. edgefirst_hal-0.5.0/crates/hal/README.md +59 -0
  22. edgefirst_hal-0.5.0/crates/hal/src/lib.rs +6 -0
  23. edgefirst_hal-0.5.0/crates/image/Cargo.toml +67 -0
  24. edgefirst_hal-0.5.0/crates/image/README.md +80 -0
  25. edgefirst_hal-0.5.0/crates/image/benches/common.rs +226 -0
  26. edgefirst_hal-0.5.0/crates/image/benches/image_benchmark.rs +1820 -0
  27. edgefirst_hal-0.5.0/crates/image/benches/pipeline_benchmark.rs +943 -0
  28. edgefirst_hal-0.5.0/crates/image/src/cpu.rs +3114 -0
  29. edgefirst_hal-0.5.0/crates/image/src/error.rs +161 -0
  30. edgefirst_hal-0.5.0/crates/image/src/g2d.rs +774 -0
  31. edgefirst_hal-0.5.0/crates/image/src/lib.rs +3826 -0
  32. edgefirst_hal-0.5.0/crates/image/src/opengl_headless.rs +3255 -0
  33. edgefirst_hal-0.5.0/crates/python/Cargo.toml +37 -0
  34. edgefirst_hal-0.5.0/crates/python/README.md +754 -0
  35. edgefirst_hal-0.5.0/crates/python/build.rs +18 -0
  36. edgefirst_hal-0.5.0/crates/python/edgefirst_hal.pyi +660 -0
  37. edgefirst_hal-0.5.0/crates/python/src/decoder.rs +805 -0
  38. edgefirst_hal-0.5.0/crates/python/src/image.rs +1071 -0
  39. edgefirst_hal-0.5.0/crates/python/src/lib.rs +77 -0
  40. edgefirst_hal-0.5.0/crates/python/src/tensor.rs +693 -0
  41. edgefirst_hal-0.5.0/crates/tensor/Cargo.toml +42 -0
  42. edgefirst_hal-0.5.0/crates/tensor/README.md +66 -0
  43. edgefirst_hal-0.5.0/crates/tensor/benches/tensor_benchmark.rs +73 -0
  44. edgefirst_hal-0.5.0/crates/tensor/src/dma.rs +282 -0
  45. edgefirst_hal-0.5.0/crates/tensor/src/dmabuf.rs +77 -0
  46. edgefirst_hal-0.5.0/crates/tensor/src/error.rs +46 -0
  47. edgefirst_hal-0.5.0/crates/tensor/src/lib.rs +1037 -0
  48. edgefirst_hal-0.5.0/crates/tensor/src/mem.rs +181 -0
  49. edgefirst_hal-0.5.0/crates/tensor/src/shm.rs +235 -0
  50. edgefirst_hal-0.5.0/pyproject.toml +61 -0
@@ -0,0 +1,2960 @@
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 = "aligned"
22
+ version = "0.4.2"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "377e4c0ba83e4431b10df45c1d4666f178ea9c552cac93e60c3a88bf32785923"
25
+ dependencies = [
26
+ "as-slice",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "aligned-vec"
31
+ version = "0.6.4"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
34
+ dependencies = [
35
+ "equator",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "android_system_properties"
40
+ version = "0.1.5"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
43
+ dependencies = [
44
+ "libc",
45
+ ]
46
+
47
+ [[package]]
48
+ name = "anes"
49
+ version = "0.1.6"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
52
+
53
+ [[package]]
54
+ name = "anstream"
55
+ version = "0.6.21"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
58
+ dependencies = [
59
+ "anstyle",
60
+ "anstyle-parse",
61
+ "anstyle-query",
62
+ "anstyle-wincon",
63
+ "colorchoice",
64
+ "is_terminal_polyfill",
65
+ "utf8parse",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle"
70
+ version = "1.0.13"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
73
+
74
+ [[package]]
75
+ name = "anstyle-parse"
76
+ version = "0.2.7"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
79
+ dependencies = [
80
+ "utf8parse",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle-query"
85
+ version = "1.1.5"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
88
+ dependencies = [
89
+ "windows-sys 0.61.2",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "anstyle-wincon"
94
+ version = "3.0.11"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
97
+ dependencies = [
98
+ "anstyle",
99
+ "once_cell_polyfill",
100
+ "windows-sys 0.61.2",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "anyhow"
105
+ version = "1.0.100"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
108
+
109
+ [[package]]
110
+ name = "approx"
111
+ version = "0.5.1"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
114
+ dependencies = [
115
+ "num-traits",
116
+ ]
117
+
118
+ [[package]]
119
+ name = "arbitrary"
120
+ version = "1.4.2"
121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
122
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
123
+
124
+ [[package]]
125
+ name = "arg_enum_proc_macro"
126
+ version = "0.3.4"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
129
+ dependencies = [
130
+ "proc-macro2",
131
+ "quote",
132
+ "syn",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "argminmax"
137
+ version = "0.6.3"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
140
+ dependencies = [
141
+ "num-traits",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "arrayvec"
146
+ version = "0.7.6"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
149
+
150
+ [[package]]
151
+ name = "as-slice"
152
+ version = "0.2.1"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
155
+ dependencies = [
156
+ "stable_deref_trait",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "autocfg"
161
+ version = "1.5.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
164
+
165
+ [[package]]
166
+ name = "av-scenechange"
167
+ version = "0.14.1"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
170
+ dependencies = [
171
+ "aligned",
172
+ "anyhow",
173
+ "arg_enum_proc_macro",
174
+ "arrayvec",
175
+ "log",
176
+ "num-rational",
177
+ "num-traits",
178
+ "pastey",
179
+ "rayon",
180
+ "thiserror",
181
+ "v_frame",
182
+ "y4m",
183
+ ]
184
+
185
+ [[package]]
186
+ name = "av1-grain"
187
+ version = "0.2.5"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
190
+ dependencies = [
191
+ "anyhow",
192
+ "arrayvec",
193
+ "log",
194
+ "nom",
195
+ "num-rational",
196
+ "v_frame",
197
+ ]
198
+
199
+ [[package]]
200
+ name = "avif-serialize"
201
+ version = "0.8.6"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "47c8fbc0f831f4519fe8b810b6a7a91410ec83031b8233f730a0480029f6a23f"
204
+ dependencies = [
205
+ "arrayvec",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "bit_field"
210
+ version = "0.10.3"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
213
+
214
+ [[package]]
215
+ name = "bitflags"
216
+ version = "2.10.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
219
+
220
+ [[package]]
221
+ name = "bitstream-io"
222
+ version = "4.9.0"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
225
+ dependencies = [
226
+ "core2",
227
+ ]
228
+
229
+ [[package]]
230
+ name = "built"
231
+ version = "0.8.0"
232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
233
+ checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
234
+
235
+ [[package]]
236
+ name = "bumpalo"
237
+ version = "3.19.0"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
240
+
241
+ [[package]]
242
+ name = "bytemuck"
243
+ version = "1.24.0"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
246
+ dependencies = [
247
+ "bytemuck_derive",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "bytemuck_derive"
252
+ version = "1.10.2"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
255
+ dependencies = [
256
+ "proc-macro2",
257
+ "quote",
258
+ "syn",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "byteorder-lite"
263
+ version = "0.1.0"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
266
+
267
+ [[package]]
268
+ name = "cast"
269
+ version = "0.3.0"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
272
+
273
+ [[package]]
274
+ name = "cc"
275
+ version = "1.2.48"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "c481bdbf0ed3b892f6f806287d72acd515b352a4ec27a208489b8c1bc839633a"
278
+ dependencies = [
279
+ "find-msvc-tools",
280
+ "jobserver",
281
+ "libc",
282
+ "shlex",
283
+ ]
284
+
285
+ [[package]]
286
+ name = "cfg-if"
287
+ version = "1.0.4"
288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
289
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
290
+
291
+ [[package]]
292
+ name = "cfg_aliases"
293
+ version = "0.2.1"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
296
+
297
+ [[package]]
298
+ name = "chrono"
299
+ version = "0.4.43"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
302
+ dependencies = [
303
+ "iana-time-zone",
304
+ "num-traits",
305
+ "windows-link 0.2.1",
306
+ ]
307
+
308
+ [[package]]
309
+ name = "ciborium"
310
+ version = "0.2.2"
311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
312
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
313
+ dependencies = [
314
+ "ciborium-io",
315
+ "ciborium-ll",
316
+ "serde",
317
+ ]
318
+
319
+ [[package]]
320
+ name = "ciborium-io"
321
+ version = "0.2.2"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
324
+
325
+ [[package]]
326
+ name = "ciborium-ll"
327
+ version = "0.2.2"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
330
+ dependencies = [
331
+ "ciborium-io",
332
+ "half",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "clang"
337
+ version = "2.0.0"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "84c044c781163c001b913cd018fc95a628c50d0d2dfea8bca77dad71edb16e37"
340
+ dependencies = [
341
+ "clang-sys",
342
+ "libc",
343
+ ]
344
+
345
+ [[package]]
346
+ name = "clang-sys"
347
+ version = "1.8.1"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
350
+ dependencies = [
351
+ "glob",
352
+ "libc",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "clap"
357
+ version = "4.5.53"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
360
+ dependencies = [
361
+ "clap_builder",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "clap_builder"
366
+ version = "4.5.53"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
369
+ dependencies = [
370
+ "anstyle",
371
+ "clap_lex",
372
+ "terminal_size",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "clap_lex"
377
+ version = "0.7.6"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
380
+
381
+ [[package]]
382
+ name = "colorchoice"
383
+ version = "1.0.4"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
386
+
387
+ [[package]]
388
+ name = "condtype"
389
+ version = "1.3.0"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
392
+
393
+ [[package]]
394
+ name = "core-foundation-sys"
395
+ version = "0.8.7"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
398
+
399
+ [[package]]
400
+ name = "core2"
401
+ version = "0.4.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
404
+ dependencies = [
405
+ "memchr",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "crc32fast"
410
+ version = "1.5.0"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
413
+ dependencies = [
414
+ "cfg-if",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "criterion"
419
+ version = "0.5.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
422
+ dependencies = [
423
+ "anes",
424
+ "cast",
425
+ "ciborium",
426
+ "clap",
427
+ "criterion-plot",
428
+ "is-terminal",
429
+ "itertools 0.10.5",
430
+ "num-traits",
431
+ "once_cell",
432
+ "oorandom",
433
+ "plotters",
434
+ "regex",
435
+ "serde",
436
+ "serde_derive",
437
+ "serde_json",
438
+ "tinytemplate",
439
+ "walkdir",
440
+ ]
441
+
442
+ [[package]]
443
+ name = "criterion-plot"
444
+ version = "0.5.0"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
447
+ dependencies = [
448
+ "cast",
449
+ "itertools 0.10.5",
450
+ ]
451
+
452
+ [[package]]
453
+ name = "crossbeam-deque"
454
+ version = "0.8.6"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
457
+ dependencies = [
458
+ "crossbeam-epoch",
459
+ "crossbeam-utils",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "crossbeam-epoch"
464
+ version = "0.9.18"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
467
+ dependencies = [
468
+ "crossbeam-utils",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "crossbeam-utils"
473
+ version = "0.8.21"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
476
+
477
+ [[package]]
478
+ name = "crunchy"
479
+ version = "0.2.4"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
482
+
483
+ [[package]]
484
+ name = "ctor"
485
+ version = "0.4.3"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "ec09e802f5081de6157da9a75701d6c713d8dc3ba52571fd4bd25f412644e8a6"
488
+ dependencies = [
489
+ "ctor-proc-macro",
490
+ "dtor",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "ctor-proc-macro"
495
+ version = "0.0.6"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2"
498
+
499
+ [[package]]
500
+ name = "divan"
501
+ version = "0.1.21"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "a405457ec78b8fe08b0e32b4a3570ab5dff6dd16eb9e76a5ee0a9d9cbd898933"
504
+ dependencies = [
505
+ "cfg-if",
506
+ "clap",
507
+ "condtype",
508
+ "divan-macros",
509
+ "libc",
510
+ "regex-lite",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "divan-macros"
515
+ version = "0.1.21"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "9556bc800956545d6420a640173e5ba7dfa82f38d3ea5a167eb555bc69ac3323"
518
+ dependencies = [
519
+ "proc-macro2",
520
+ "quote",
521
+ "syn",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "dma-heap"
526
+ version = "0.4.1"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "f75635036496136320802f8f1756f51bf3e7100f28d71e6d8342aeac48e539f7"
529
+ dependencies = [
530
+ "log",
531
+ "rustix 1.1.2",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "document-features"
536
+ version = "0.2.12"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
539
+ dependencies = [
540
+ "litrs",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "drm"
545
+ version = "0.14.1"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "80bc8c5c6c2941f70a55c15f8d9f00f9710ebda3ffda98075f996a0e6c92756f"
548
+ dependencies = [
549
+ "bitflags",
550
+ "bytemuck",
551
+ "drm-ffi",
552
+ "drm-fourcc",
553
+ "libc",
554
+ "rustix 0.38.44",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "drm-ffi"
559
+ version = "0.9.0"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "d8e41459d99a9b529845f6d2c909eb9adf3b6d2f82635ae40be8de0601726e8b"
562
+ dependencies = [
563
+ "drm-sys",
564
+ "rustix 0.38.44",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "drm-fourcc"
569
+ version = "2.2.0"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4"
572
+
573
+ [[package]]
574
+ name = "drm-sys"
575
+ version = "0.8.0"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "bafb66c8dbc944d69e15cfcc661df7e703beffbaec8bd63151368b06c5f9858c"
578
+ dependencies = [
579
+ "libc",
580
+ "linux-raw-sys 0.6.5",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "dtor"
585
+ version = "0.0.6"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "97cbdf2ad6846025e8e25df05171abfb30e3ababa12ee0a0e44b9bbe570633a8"
588
+ dependencies = [
589
+ "dtor-proc-macro",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "dtor-proc-macro"
594
+ version = "0.0.5"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "7454e41ff9012c00d53cf7f475c5e3afa3b91b7c90568495495e8d9bf47a1055"
597
+
598
+ [[package]]
599
+ name = "dunce"
600
+ version = "1.0.5"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
603
+
604
+ [[package]]
605
+ name = "edgefirst-decoder"
606
+ version = "0.5.0"
607
+ dependencies = [
608
+ "argminmax",
609
+ "divan",
610
+ "env_logger",
611
+ "fast-math",
612
+ "image",
613
+ "log",
614
+ "ndarray 0.16.1",
615
+ "ndarray-stats",
616
+ "num-traits",
617
+ "rayon",
618
+ "serde",
619
+ "serde_json",
620
+ "serde_yaml",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "edgefirst-gbm"
625
+ version = "0.18.1"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "0f0b69de3318098ed618db4873804c38fdacf664e708cb7ab8ab0e163c9afaeb"
628
+ dependencies = [
629
+ "bitflags",
630
+ "drm",
631
+ "drm-fourcc",
632
+ "edgefirst-gbm-sys",
633
+ "libc",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "edgefirst-gbm-sys"
638
+ version = "0.4.1"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "d3a366fa17f342ee47f2b57e27a28939c009b7a52d5b6312a615c377ebc65c17"
641
+ dependencies = [
642
+ "libc",
643
+ "libloading",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "edgefirst-hal"
648
+ version = "0.5.0"
649
+ dependencies = [
650
+ "edgefirst-decoder",
651
+ "edgefirst-image",
652
+ "edgefirst-tensor",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "edgefirst-image"
657
+ version = "0.5.0"
658
+ dependencies = [
659
+ "criterion",
660
+ "ctor",
661
+ "divan",
662
+ "dma-heap",
663
+ "edgefirst-decoder",
664
+ "edgefirst-gbm",
665
+ "edgefirst-tensor",
666
+ "enum_dispatch",
667
+ "env_logger",
668
+ "fast_image_resize",
669
+ "four-char-code",
670
+ "g2d-sys",
671
+ "gls",
672
+ "image",
673
+ "image-compare",
674
+ "jpeg-encoder",
675
+ "kamadak-exif",
676
+ "khronos-egl",
677
+ "libc",
678
+ "libloading",
679
+ "log",
680
+ "ndarray 0.16.1",
681
+ "ndarray-stats",
682
+ "opencv",
683
+ "rayon",
684
+ "tokio",
685
+ "yuv",
686
+ "zune-jpeg",
687
+ "zune-png",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "edgefirst-tensor"
692
+ version = "0.5.0"
693
+ dependencies = [
694
+ "ctor",
695
+ "divan",
696
+ "dma-heap",
697
+ "env_logger",
698
+ "log",
699
+ "ndarray 0.16.1",
700
+ "nix",
701
+ "num-traits",
702
+ "procfs",
703
+ "rand 0.9.2",
704
+ "uuid",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "edgefirst-tracker"
709
+ version = "0.5.0"
710
+ dependencies = [
711
+ "enum_dispatch",
712
+ "lapjv",
713
+ "log",
714
+ "nalgebra 0.32.6",
715
+ "ndarray 0.16.1",
716
+ "num-traits",
717
+ "uuid",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "edgefirst_hal"
722
+ version = "0.5.0"
723
+ dependencies = [
724
+ "approx",
725
+ "edgefirst-hal",
726
+ "env_logger",
727
+ "four-char-code",
728
+ "half",
729
+ "log",
730
+ "ndarray 0.16.1",
731
+ "numpy",
732
+ "pyo3",
733
+ "pyo3-build-config",
734
+ "pythonize",
735
+ "rustc_version",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "either"
740
+ version = "1.15.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
743
+
744
+ [[package]]
745
+ name = "enum_dispatch"
746
+ version = "0.3.13"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
749
+ dependencies = [
750
+ "once_cell",
751
+ "proc-macro2",
752
+ "quote",
753
+ "syn",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "env_filter"
758
+ version = "0.1.4"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
761
+ dependencies = [
762
+ "log",
763
+ "regex",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "env_logger"
768
+ version = "0.11.8"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
771
+ dependencies = [
772
+ "anstream",
773
+ "anstyle",
774
+ "env_filter",
775
+ "jiff",
776
+ "log",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "equator"
781
+ version = "0.4.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
784
+ dependencies = [
785
+ "equator-macro",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "equator-macro"
790
+ version = "0.4.2"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
793
+ dependencies = [
794
+ "proc-macro2",
795
+ "quote",
796
+ "syn",
797
+ ]
798
+
799
+ [[package]]
800
+ name = "equivalent"
801
+ version = "1.0.2"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
804
+
805
+ [[package]]
806
+ name = "errno"
807
+ version = "0.3.14"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
810
+ dependencies = [
811
+ "libc",
812
+ "windows-sys 0.61.2",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "exr"
817
+ version = "1.74.0"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
820
+ dependencies = [
821
+ "bit_field",
822
+ "half",
823
+ "lebe",
824
+ "miniz_oxide",
825
+ "rayon-core",
826
+ "smallvec",
827
+ "zune-inflate",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "fast-math"
832
+ version = "0.1.1"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "2465292146cdfc2011350fe3b1c616ac83cf0faeedb33463ba1c332ed8948d66"
835
+ dependencies = [
836
+ "ieee754",
837
+ ]
838
+
839
+ [[package]]
840
+ name = "fast_image_resize"
841
+ version = "5.4.0"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "049915d74c5dfae375a3f5bf54f47ed593ba27b29f792617a9a987521d56d674"
844
+ dependencies = [
845
+ "bytemuck",
846
+ "cfg-if",
847
+ "document-features",
848
+ "image",
849
+ "num-traits",
850
+ "rayon",
851
+ "thiserror",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "fdeflate"
856
+ version = "0.3.7"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
859
+ dependencies = [
860
+ "simd-adler32",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "find-msvc-tools"
865
+ version = "0.1.5"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
868
+
869
+ [[package]]
870
+ name = "flate2"
871
+ version = "1.1.5"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
874
+ dependencies = [
875
+ "crc32fast",
876
+ "miniz_oxide",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "four-char-code"
881
+ version = "2.3.0"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "42da99970737c0150e3c5cd1cdc510735a2511739f5c3aa3c6bfc9f31441488d"
884
+
885
+ [[package]]
886
+ name = "g2d-sys"
887
+ version = "1.0.1"
888
+ dependencies = [
889
+ "four-char-code",
890
+ "libloading",
891
+ "log",
892
+ "nix",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "getrandom"
897
+ version = "0.2.16"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
900
+ dependencies = [
901
+ "cfg-if",
902
+ "libc",
903
+ "wasi",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "getrandom"
908
+ version = "0.3.4"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
911
+ dependencies = [
912
+ "cfg-if",
913
+ "libc",
914
+ "r-efi",
915
+ "wasip2",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "gl_generator"
920
+ version = "0.14.0"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
923
+ dependencies = [
924
+ "khronos_api",
925
+ "log",
926
+ "xml-rs",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "glam"
931
+ version = "0.14.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
934
+
935
+ [[package]]
936
+ name = "glam"
937
+ version = "0.15.2"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
940
+
941
+ [[package]]
942
+ name = "glam"
943
+ version = "0.16.0"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
946
+
947
+ [[package]]
948
+ name = "glam"
949
+ version = "0.17.3"
950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
951
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
952
+
953
+ [[package]]
954
+ name = "glam"
955
+ version = "0.18.0"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
958
+
959
+ [[package]]
960
+ name = "glam"
961
+ version = "0.19.0"
962
+ source = "registry+https://github.com/rust-lang/crates.io-index"
963
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
964
+
965
+ [[package]]
966
+ name = "glam"
967
+ version = "0.20.5"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
970
+
971
+ [[package]]
972
+ name = "glam"
973
+ version = "0.21.3"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
976
+
977
+ [[package]]
978
+ name = "glam"
979
+ version = "0.22.0"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
982
+
983
+ [[package]]
984
+ name = "glam"
985
+ version = "0.23.0"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
988
+
989
+ [[package]]
990
+ name = "glam"
991
+ version = "0.24.2"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
994
+
995
+ [[package]]
996
+ name = "glam"
997
+ version = "0.25.0"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
1000
+
1001
+ [[package]]
1002
+ name = "glam"
1003
+ version = "0.27.0"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
1006
+
1007
+ [[package]]
1008
+ name = "glam"
1009
+ version = "0.28.0"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
1012
+
1013
+ [[package]]
1014
+ name = "glam"
1015
+ version = "0.29.3"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
1018
+
1019
+ [[package]]
1020
+ name = "glam"
1021
+ version = "0.30.9"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "bd47b05dddf0005d850e5644cae7f2b14ac3df487979dbfff3b56f20b1a6ae46"
1024
+
1025
+ [[package]]
1026
+ name = "glob"
1027
+ version = "0.3.3"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1030
+
1031
+ [[package]]
1032
+ name = "gls"
1033
+ version = "0.1.6"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "02e3ad781e06138bd79362ba641edcc6f85470f84a9e07af741ba44e144a66c1"
1036
+ dependencies = [
1037
+ "gl_generator",
1038
+ "libc",
1039
+ "nalgebra 0.34.1",
1040
+ "serde",
1041
+ "winapi",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "half"
1046
+ version = "2.7.1"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1049
+ dependencies = [
1050
+ "cfg-if",
1051
+ "crunchy",
1052
+ "zerocopy",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "hashbrown"
1057
+ version = "0.16.1"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1060
+
1061
+ [[package]]
1062
+ name = "heck"
1063
+ version = "0.5.0"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1066
+
1067
+ [[package]]
1068
+ name = "hermit-abi"
1069
+ version = "0.5.2"
1070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1071
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1072
+
1073
+ [[package]]
1074
+ name = "hex"
1075
+ version = "0.4.3"
1076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1077
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1078
+
1079
+ [[package]]
1080
+ name = "iana-time-zone"
1081
+ version = "0.1.64"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1084
+ dependencies = [
1085
+ "android_system_properties",
1086
+ "core-foundation-sys",
1087
+ "iana-time-zone-haiku",
1088
+ "js-sys",
1089
+ "log",
1090
+ "wasm-bindgen",
1091
+ "windows-core 0.62.2",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "iana-time-zone-haiku"
1096
+ version = "0.1.2"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1099
+ dependencies = [
1100
+ "cc",
1101
+ ]
1102
+
1103
+ [[package]]
1104
+ name = "ieee754"
1105
+ version = "0.2.6"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
1108
+
1109
+ [[package]]
1110
+ name = "image"
1111
+ version = "0.25.9"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
1114
+ dependencies = [
1115
+ "bytemuck",
1116
+ "byteorder-lite",
1117
+ "exr",
1118
+ "moxcms",
1119
+ "num-traits",
1120
+ "png",
1121
+ "ravif",
1122
+ "rayon",
1123
+ ]
1124
+
1125
+ [[package]]
1126
+ name = "image-compare"
1127
+ version = "0.4.2"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "6bf712e96694f43e33b8394265e4d4bc06998c3648718148e4584d80dc3b3165"
1130
+ dependencies = [
1131
+ "image",
1132
+ "itertools 0.14.0",
1133
+ "rayon",
1134
+ "thiserror",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "imgref"
1139
+ version = "1.12.0"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
1142
+
1143
+ [[package]]
1144
+ name = "indexmap"
1145
+ version = "2.12.1"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1148
+ dependencies = [
1149
+ "equivalent",
1150
+ "hashbrown",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "indoc"
1155
+ version = "2.0.7"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1158
+ dependencies = [
1159
+ "rustversion",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "interpolate_name"
1164
+ version = "0.2.4"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
1167
+ dependencies = [
1168
+ "proc-macro2",
1169
+ "quote",
1170
+ "syn",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "is-terminal"
1175
+ version = "0.4.17"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
1178
+ dependencies = [
1179
+ "hermit-abi",
1180
+ "libc",
1181
+ "windows-sys 0.61.2",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "is_terminal_polyfill"
1186
+ version = "1.70.2"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1189
+
1190
+ [[package]]
1191
+ name = "itertools"
1192
+ version = "0.10.5"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
1195
+ dependencies = [
1196
+ "either",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "itertools"
1201
+ version = "0.13.0"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1204
+ dependencies = [
1205
+ "either",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "itertools"
1210
+ version = "0.14.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1213
+ dependencies = [
1214
+ "either",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "itoa"
1219
+ version = "1.0.15"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1222
+
1223
+ [[package]]
1224
+ name = "jiff"
1225
+ version = "0.2.16"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "49cce2b81f2098e7e3efc35bc2e0a6b7abec9d34128283d7a26fa8f32a6dbb35"
1228
+ dependencies = [
1229
+ "jiff-static",
1230
+ "log",
1231
+ "portable-atomic",
1232
+ "portable-atomic-util",
1233
+ "serde_core",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "jiff-static"
1238
+ version = "0.2.16"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "980af8b43c3ad5d8d349ace167ec8170839f753a42d233ba19e08afe1850fa69"
1241
+ dependencies = [
1242
+ "proc-macro2",
1243
+ "quote",
1244
+ "syn",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "jobserver"
1249
+ version = "0.1.34"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1252
+ dependencies = [
1253
+ "getrandom 0.3.4",
1254
+ "libc",
1255
+ ]
1256
+
1257
+ [[package]]
1258
+ name = "jpeg-encoder"
1259
+ version = "0.6.1"
1260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1261
+ checksum = "b454d911ac55068f53495488d8ccd0646eaa540c033a28ee15b07838afafb01f"
1262
+
1263
+ [[package]]
1264
+ name = "js-sys"
1265
+ version = "0.3.83"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1268
+ dependencies = [
1269
+ "once_cell",
1270
+ "wasm-bindgen",
1271
+ ]
1272
+
1273
+ [[package]]
1274
+ name = "kamadak-exif"
1275
+ version = "0.6.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "1130d80c7374efad55a117d715a3af9368f0fa7a2c54573afc15a188cd984837"
1278
+ dependencies = [
1279
+ "mutate_once",
1280
+ ]
1281
+
1282
+ [[package]]
1283
+ name = "khronos-egl"
1284
+ version = "6.0.0"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
1287
+ dependencies = [
1288
+ "libc",
1289
+ "libloading",
1290
+ ]
1291
+
1292
+ [[package]]
1293
+ name = "khronos_api"
1294
+ version = "3.1.0"
1295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1296
+ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
1297
+
1298
+ [[package]]
1299
+ name = "lapjv"
1300
+ version = "0.2.1"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "d7093f0ea0bab1f9b0cd14e68ed428d1bf8efa4fab86597e9490ccc98d9eec83"
1303
+ dependencies = [
1304
+ "log",
1305
+ "ndarray 0.13.1",
1306
+ "num-traits",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "lebe"
1311
+ version = "0.5.3"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
1314
+
1315
+ [[package]]
1316
+ name = "libc"
1317
+ version = "0.2.177"
1318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1319
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1320
+
1321
+ [[package]]
1322
+ name = "libfuzzer-sys"
1323
+ version = "0.4.10"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404"
1326
+ dependencies = [
1327
+ "arbitrary",
1328
+ "cc",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "libloading"
1333
+ version = "0.8.9"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1336
+ dependencies = [
1337
+ "cfg-if",
1338
+ "windows-link 0.2.1",
1339
+ ]
1340
+
1341
+ [[package]]
1342
+ name = "linux-raw-sys"
1343
+ version = "0.4.15"
1344
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1345
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1346
+
1347
+ [[package]]
1348
+ name = "linux-raw-sys"
1349
+ version = "0.6.5"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "2a385b1be4e5c3e362ad2ffa73c392e53f031eaa5b7d648e64cd87f27f6063d7"
1352
+
1353
+ [[package]]
1354
+ name = "linux-raw-sys"
1355
+ version = "0.11.0"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1358
+
1359
+ [[package]]
1360
+ name = "litrs"
1361
+ version = "1.0.0"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1364
+
1365
+ [[package]]
1366
+ name = "log"
1367
+ version = "0.4.28"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1370
+
1371
+ [[package]]
1372
+ name = "loop9"
1373
+ version = "0.1.5"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
1376
+ dependencies = [
1377
+ "imgref",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "matrixmultiply"
1382
+ version = "0.2.4"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "916806ba0031cd542105d916a97c8572e1fa6dd79c9c51e7eb43a09ec2dd84c1"
1385
+ dependencies = [
1386
+ "rawpointer",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "matrixmultiply"
1391
+ version = "0.3.10"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1394
+ dependencies = [
1395
+ "autocfg",
1396
+ "rawpointer",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "maybe-rayon"
1401
+ version = "0.1.1"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
1404
+ dependencies = [
1405
+ "cfg-if",
1406
+ "rayon",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "memchr"
1411
+ version = "2.7.6"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1414
+
1415
+ [[package]]
1416
+ name = "memoffset"
1417
+ version = "0.9.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1420
+ dependencies = [
1421
+ "autocfg",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "miniz_oxide"
1426
+ version = "0.8.9"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1429
+ dependencies = [
1430
+ "adler2",
1431
+ "simd-adler32",
1432
+ ]
1433
+
1434
+ [[package]]
1435
+ name = "moxcms"
1436
+ version = "0.7.10"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "80986bbbcf925ebd3be54c26613d861255284584501595cf418320c078945608"
1439
+ dependencies = [
1440
+ "num-traits",
1441
+ "pxfm",
1442
+ ]
1443
+
1444
+ [[package]]
1445
+ name = "mutate_once"
1446
+ version = "0.1.2"
1447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1448
+ checksum = "13d2233c9842d08cfe13f9eac96e207ca6a2ea10b80259ebe8ad0268be27d2af"
1449
+
1450
+ [[package]]
1451
+ name = "nalgebra"
1452
+ version = "0.32.6"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4"
1455
+ dependencies = [
1456
+ "approx",
1457
+ "matrixmultiply 0.3.10",
1458
+ "nalgebra-macros 0.2.2",
1459
+ "num-complex 0.4.6",
1460
+ "num-rational",
1461
+ "num-traits",
1462
+ "simba 0.8.1",
1463
+ "typenum",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "nalgebra"
1468
+ version = "0.34.1"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "c4d5b3eff5cd580f93da45e64715e8c20a3996342f1e466599cf7a267a0c2f5f"
1471
+ dependencies = [
1472
+ "approx",
1473
+ "glam 0.14.0",
1474
+ "glam 0.15.2",
1475
+ "glam 0.16.0",
1476
+ "glam 0.17.3",
1477
+ "glam 0.18.0",
1478
+ "glam 0.19.0",
1479
+ "glam 0.20.5",
1480
+ "glam 0.21.3",
1481
+ "glam 0.22.0",
1482
+ "glam 0.23.0",
1483
+ "glam 0.24.2",
1484
+ "glam 0.25.0",
1485
+ "glam 0.27.0",
1486
+ "glam 0.28.0",
1487
+ "glam 0.29.3",
1488
+ "glam 0.30.9",
1489
+ "matrixmultiply 0.3.10",
1490
+ "nalgebra-macros 0.3.0",
1491
+ "num-complex 0.4.6",
1492
+ "num-rational",
1493
+ "num-traits",
1494
+ "serde",
1495
+ "simba 0.9.1",
1496
+ "typenum",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "nalgebra-macros"
1501
+ version = "0.2.2"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
1504
+ dependencies = [
1505
+ "proc-macro2",
1506
+ "quote",
1507
+ "syn",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "nalgebra-macros"
1512
+ version = "0.3.0"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
1515
+ dependencies = [
1516
+ "proc-macro2",
1517
+ "quote",
1518
+ "syn",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "ndarray"
1523
+ version = "0.13.1"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "ac06db03ec2f46ee0ecdca1a1c34a99c0d188a0d83439b84bf0cb4b386e4ab09"
1526
+ dependencies = [
1527
+ "matrixmultiply 0.2.4",
1528
+ "num-complex 0.2.4",
1529
+ "num-integer",
1530
+ "num-traits",
1531
+ "rawpointer",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "ndarray"
1536
+ version = "0.16.1"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1539
+ dependencies = [
1540
+ "matrixmultiply 0.3.10",
1541
+ "num-complex 0.4.6",
1542
+ "num-integer",
1543
+ "num-traits",
1544
+ "portable-atomic",
1545
+ "portable-atomic-util",
1546
+ "rawpointer",
1547
+ "rayon",
1548
+ ]
1549
+
1550
+ [[package]]
1551
+ name = "ndarray-stats"
1552
+ version = "0.6.0"
1553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1554
+ checksum = "17ebbe97acce52d06aebed4cd4a87c0941f4b2519b59b82b4feb5bd0ce003dfd"
1555
+ dependencies = [
1556
+ "indexmap",
1557
+ "itertools 0.13.0",
1558
+ "ndarray 0.16.1",
1559
+ "noisy_float",
1560
+ "num-integer",
1561
+ "num-traits",
1562
+ "rand 0.8.5",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "new_debug_unreachable"
1567
+ version = "1.0.6"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1570
+
1571
+ [[package]]
1572
+ name = "nix"
1573
+ version = "0.30.1"
1574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1575
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1576
+ dependencies = [
1577
+ "bitflags",
1578
+ "cfg-if",
1579
+ "cfg_aliases",
1580
+ "libc",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "noisy_float"
1585
+ version = "0.2.0"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "978fe6e6ebc0bf53de533cd456ca2d9de13de13856eda1518a285d7705a213af"
1588
+ dependencies = [
1589
+ "num-traits",
1590
+ ]
1591
+
1592
+ [[package]]
1593
+ name = "nom"
1594
+ version = "8.0.0"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1597
+ dependencies = [
1598
+ "memchr",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "noop_proc_macro"
1603
+ version = "0.3.0"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
1606
+
1607
+ [[package]]
1608
+ name = "num-bigint"
1609
+ version = "0.4.6"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1612
+ dependencies = [
1613
+ "num-integer",
1614
+ "num-traits",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "num-complex"
1619
+ version = "0.2.4"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
1622
+ dependencies = [
1623
+ "autocfg",
1624
+ "num-traits",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "num-complex"
1629
+ version = "0.4.6"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1632
+ dependencies = [
1633
+ "num-traits",
1634
+ "serde",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "num-derive"
1639
+ version = "0.4.2"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1642
+ dependencies = [
1643
+ "proc-macro2",
1644
+ "quote",
1645
+ "syn",
1646
+ ]
1647
+
1648
+ [[package]]
1649
+ name = "num-integer"
1650
+ version = "0.1.46"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1653
+ dependencies = [
1654
+ "num-traits",
1655
+ ]
1656
+
1657
+ [[package]]
1658
+ name = "num-rational"
1659
+ version = "0.4.2"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1662
+ dependencies = [
1663
+ "num-bigint",
1664
+ "num-integer",
1665
+ "num-traits",
1666
+ ]
1667
+
1668
+ [[package]]
1669
+ name = "num-traits"
1670
+ version = "0.2.19"
1671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1672
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1673
+ dependencies = [
1674
+ "autocfg",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "numpy"
1679
+ version = "0.26.0"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "9b2dba356160b54f5371b550575b78130a54718b4c6e46b3f33a6da74a27e78b"
1682
+ dependencies = [
1683
+ "half",
1684
+ "libc",
1685
+ "ndarray 0.16.1",
1686
+ "num-complex 0.4.6",
1687
+ "num-integer",
1688
+ "num-traits",
1689
+ "pyo3",
1690
+ "pyo3-build-config",
1691
+ "rustc-hash",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "once_cell"
1696
+ version = "1.21.3"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1699
+
1700
+ [[package]]
1701
+ name = "once_cell_polyfill"
1702
+ version = "1.70.2"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1705
+
1706
+ [[package]]
1707
+ name = "oorandom"
1708
+ version = "11.1.5"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1711
+
1712
+ [[package]]
1713
+ name = "opencv"
1714
+ version = "0.95.1"
1715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1716
+ checksum = "0c73b6fccd78797a87cdb885c997351a1a290b0ebde778e996b694dec2a4c04a"
1717
+ dependencies = [
1718
+ "cc",
1719
+ "dunce",
1720
+ "jobserver",
1721
+ "libc",
1722
+ "num-traits",
1723
+ "once_cell",
1724
+ "opencv-binding-generator",
1725
+ "pkg-config",
1726
+ "semver",
1727
+ "shlex",
1728
+ "vcpkg",
1729
+ "windows",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "opencv-binding-generator"
1734
+ version = "0.97.0"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "010a78e4cc47ff85cf58fb1cbbbab9dcdb8e5e6718917eac26623f077872d012"
1737
+ dependencies = [
1738
+ "clang",
1739
+ "clang-sys",
1740
+ "dunce",
1741
+ "once_cell",
1742
+ "percent-encoding",
1743
+ "regex",
1744
+ "shlex",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "paste"
1749
+ version = "1.0.15"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1752
+
1753
+ [[package]]
1754
+ name = "pastey"
1755
+ version = "0.1.1"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
1758
+
1759
+ [[package]]
1760
+ name = "percent-encoding"
1761
+ version = "2.3.2"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1764
+
1765
+ [[package]]
1766
+ name = "pin-project-lite"
1767
+ version = "0.2.16"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1770
+
1771
+ [[package]]
1772
+ name = "pkg-config"
1773
+ version = "0.3.32"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1776
+
1777
+ [[package]]
1778
+ name = "plotters"
1779
+ version = "0.3.7"
1780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1781
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1782
+ dependencies = [
1783
+ "num-traits",
1784
+ "plotters-backend",
1785
+ "plotters-svg",
1786
+ "wasm-bindgen",
1787
+ "web-sys",
1788
+ ]
1789
+
1790
+ [[package]]
1791
+ name = "plotters-backend"
1792
+ version = "0.3.7"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1795
+
1796
+ [[package]]
1797
+ name = "plotters-svg"
1798
+ version = "0.3.7"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1801
+ dependencies = [
1802
+ "plotters-backend",
1803
+ ]
1804
+
1805
+ [[package]]
1806
+ name = "png"
1807
+ version = "0.18.0"
1808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1809
+ checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
1810
+ dependencies = [
1811
+ "bitflags",
1812
+ "crc32fast",
1813
+ "fdeflate",
1814
+ "flate2",
1815
+ "miniz_oxide",
1816
+ ]
1817
+
1818
+ [[package]]
1819
+ name = "portable-atomic"
1820
+ version = "1.11.1"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1823
+
1824
+ [[package]]
1825
+ name = "portable-atomic-util"
1826
+ version = "0.2.4"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1829
+ dependencies = [
1830
+ "portable-atomic",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "ppv-lite86"
1835
+ version = "0.2.21"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1838
+ dependencies = [
1839
+ "zerocopy",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "proc-macro2"
1844
+ version = "1.0.103"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1847
+ dependencies = [
1848
+ "unicode-ident",
1849
+ ]
1850
+
1851
+ [[package]]
1852
+ name = "procfs"
1853
+ version = "0.18.0"
1854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1855
+ checksum = "25485360a54d6861439d60facef26de713b1e126bf015ec8f98239467a2b82f7"
1856
+ dependencies = [
1857
+ "bitflags",
1858
+ "chrono",
1859
+ "flate2",
1860
+ "procfs-core",
1861
+ "rustix 1.1.2",
1862
+ ]
1863
+
1864
+ [[package]]
1865
+ name = "procfs-core"
1866
+ version = "0.18.0"
1867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1868
+ checksum = "e6401bf7b6af22f78b563665d15a22e9aef27775b79b149a66ca022468a4e405"
1869
+ dependencies = [
1870
+ "bitflags",
1871
+ "chrono",
1872
+ "hex",
1873
+ ]
1874
+
1875
+ [[package]]
1876
+ name = "profiling"
1877
+ version = "1.0.17"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
1880
+ dependencies = [
1881
+ "profiling-procmacros",
1882
+ ]
1883
+
1884
+ [[package]]
1885
+ name = "profiling-procmacros"
1886
+ version = "1.0.17"
1887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1888
+ checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
1889
+ dependencies = [
1890
+ "quote",
1891
+ "syn",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "pxfm"
1896
+ version = "0.1.26"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "b3502d6155304a4173a5f2c34b52b7ed0dd085890326cb50fd625fdf39e86b3b"
1899
+ dependencies = [
1900
+ "num-traits",
1901
+ ]
1902
+
1903
+ [[package]]
1904
+ name = "pyo3"
1905
+ version = "0.26.0"
1906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1907
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1908
+ dependencies = [
1909
+ "indoc",
1910
+ "libc",
1911
+ "memoffset",
1912
+ "once_cell",
1913
+ "portable-atomic",
1914
+ "pyo3-build-config",
1915
+ "pyo3-ffi",
1916
+ "pyo3-macros",
1917
+ "unindent",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "pyo3-build-config"
1922
+ version = "0.26.0"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1925
+ dependencies = [
1926
+ "target-lexicon",
1927
+ ]
1928
+
1929
+ [[package]]
1930
+ name = "pyo3-ffi"
1931
+ version = "0.26.0"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1934
+ dependencies = [
1935
+ "libc",
1936
+ "pyo3-build-config",
1937
+ ]
1938
+
1939
+ [[package]]
1940
+ name = "pyo3-macros"
1941
+ version = "0.26.0"
1942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1943
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1944
+ dependencies = [
1945
+ "proc-macro2",
1946
+ "pyo3-macros-backend",
1947
+ "quote",
1948
+ "syn",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "pyo3-macros-backend"
1953
+ version = "0.26.0"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1956
+ dependencies = [
1957
+ "heck",
1958
+ "proc-macro2",
1959
+ "pyo3-build-config",
1960
+ "quote",
1961
+ "syn",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "pythonize"
1966
+ version = "0.26.0"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "11e06e4cff9be2bbf2bddf28a486ae619172ea57e79787f856572878c62dcfe2"
1969
+ dependencies = [
1970
+ "pyo3",
1971
+ "serde",
1972
+ ]
1973
+
1974
+ [[package]]
1975
+ name = "quick-error"
1976
+ version = "2.0.1"
1977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1978
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1979
+
1980
+ [[package]]
1981
+ name = "quote"
1982
+ version = "1.0.42"
1983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1984
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
1985
+ dependencies = [
1986
+ "proc-macro2",
1987
+ ]
1988
+
1989
+ [[package]]
1990
+ name = "r-efi"
1991
+ version = "5.3.0"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1994
+
1995
+ [[package]]
1996
+ name = "rand"
1997
+ version = "0.8.5"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2000
+ dependencies = [
2001
+ "libc",
2002
+ "rand_chacha 0.3.1",
2003
+ "rand_core 0.6.4",
2004
+ ]
2005
+
2006
+ [[package]]
2007
+ name = "rand"
2008
+ version = "0.9.2"
2009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2010
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2011
+ dependencies = [
2012
+ "rand_chacha 0.9.0",
2013
+ "rand_core 0.9.3",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "rand_chacha"
2018
+ version = "0.3.1"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021
+ dependencies = [
2022
+ "ppv-lite86",
2023
+ "rand_core 0.6.4",
2024
+ ]
2025
+
2026
+ [[package]]
2027
+ name = "rand_chacha"
2028
+ version = "0.9.0"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2031
+ dependencies = [
2032
+ "ppv-lite86",
2033
+ "rand_core 0.9.3",
2034
+ ]
2035
+
2036
+ [[package]]
2037
+ name = "rand_core"
2038
+ version = "0.6.4"
2039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2040
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2041
+ dependencies = [
2042
+ "getrandom 0.2.16",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "rand_core"
2047
+ version = "0.9.3"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2050
+ dependencies = [
2051
+ "getrandom 0.3.4",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "rav1e"
2056
+ version = "0.8.1"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
2059
+ dependencies = [
2060
+ "aligned-vec",
2061
+ "arbitrary",
2062
+ "arg_enum_proc_macro",
2063
+ "arrayvec",
2064
+ "av-scenechange",
2065
+ "av1-grain",
2066
+ "bitstream-io",
2067
+ "built",
2068
+ "cfg-if",
2069
+ "interpolate_name",
2070
+ "itertools 0.14.0",
2071
+ "libc",
2072
+ "libfuzzer-sys",
2073
+ "log",
2074
+ "maybe-rayon",
2075
+ "new_debug_unreachable",
2076
+ "noop_proc_macro",
2077
+ "num-derive",
2078
+ "num-traits",
2079
+ "paste",
2080
+ "profiling",
2081
+ "rand 0.9.2",
2082
+ "rand_chacha 0.9.0",
2083
+ "simd_helpers",
2084
+ "thiserror",
2085
+ "v_frame",
2086
+ "wasm-bindgen",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "ravif"
2091
+ version = "0.12.0"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "ef69c1990ceef18a116855938e74793a5f7496ee907562bd0857b6ac734ab285"
2094
+ dependencies = [
2095
+ "avif-serialize",
2096
+ "imgref",
2097
+ "loop9",
2098
+ "quick-error",
2099
+ "rav1e",
2100
+ "rayon",
2101
+ "rgb",
2102
+ ]
2103
+
2104
+ [[package]]
2105
+ name = "rawpointer"
2106
+ version = "0.2.1"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
2109
+
2110
+ [[package]]
2111
+ name = "rayon"
2112
+ version = "1.11.0"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2115
+ dependencies = [
2116
+ "either",
2117
+ "rayon-core",
2118
+ ]
2119
+
2120
+ [[package]]
2121
+ name = "rayon-core"
2122
+ version = "1.13.0"
2123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2124
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2125
+ dependencies = [
2126
+ "crossbeam-deque",
2127
+ "crossbeam-utils",
2128
+ ]
2129
+
2130
+ [[package]]
2131
+ name = "regex"
2132
+ version = "1.12.2"
2133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2134
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2135
+ dependencies = [
2136
+ "aho-corasick",
2137
+ "memchr",
2138
+ "regex-automata",
2139
+ "regex-syntax",
2140
+ ]
2141
+
2142
+ [[package]]
2143
+ name = "regex-automata"
2144
+ version = "0.4.13"
2145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2146
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2147
+ dependencies = [
2148
+ "aho-corasick",
2149
+ "memchr",
2150
+ "regex-syntax",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "regex-lite"
2155
+ version = "0.1.8"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
2158
+
2159
+ [[package]]
2160
+ name = "regex-syntax"
2161
+ version = "0.8.8"
2162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2163
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2164
+
2165
+ [[package]]
2166
+ name = "rgb"
2167
+ version = "0.8.52"
2168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2169
+ checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
2170
+
2171
+ [[package]]
2172
+ name = "rustc-hash"
2173
+ version = "2.1.1"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2176
+
2177
+ [[package]]
2178
+ name = "rustc_version"
2179
+ version = "0.4.1"
2180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2181
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2182
+ dependencies = [
2183
+ "semver",
2184
+ ]
2185
+
2186
+ [[package]]
2187
+ name = "rustix"
2188
+ version = "0.38.44"
2189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2190
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2191
+ dependencies = [
2192
+ "bitflags",
2193
+ "errno",
2194
+ "libc",
2195
+ "linux-raw-sys 0.4.15",
2196
+ "windows-sys 0.59.0",
2197
+ ]
2198
+
2199
+ [[package]]
2200
+ name = "rustix"
2201
+ version = "1.1.2"
2202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2203
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2204
+ dependencies = [
2205
+ "bitflags",
2206
+ "errno",
2207
+ "libc",
2208
+ "linux-raw-sys 0.11.0",
2209
+ "windows-sys 0.61.2",
2210
+ ]
2211
+
2212
+ [[package]]
2213
+ name = "rustversion"
2214
+ version = "1.0.22"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2217
+
2218
+ [[package]]
2219
+ name = "ryu"
2220
+ version = "1.0.20"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2223
+
2224
+ [[package]]
2225
+ name = "safe_arch"
2226
+ version = "0.7.4"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
2229
+ dependencies = [
2230
+ "bytemuck",
2231
+ ]
2232
+
2233
+ [[package]]
2234
+ name = "same-file"
2235
+ version = "1.0.6"
2236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2237
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2238
+ dependencies = [
2239
+ "winapi-util",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "semver"
2244
+ version = "1.0.27"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2247
+
2248
+ [[package]]
2249
+ name = "serde"
2250
+ version = "1.0.228"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2253
+ dependencies = [
2254
+ "serde_core",
2255
+ "serde_derive",
2256
+ ]
2257
+
2258
+ [[package]]
2259
+ name = "serde_core"
2260
+ version = "1.0.228"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2263
+ dependencies = [
2264
+ "serde_derive",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "serde_derive"
2269
+ version = "1.0.228"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2272
+ dependencies = [
2273
+ "proc-macro2",
2274
+ "quote",
2275
+ "syn",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "serde_json"
2280
+ version = "1.0.145"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2283
+ dependencies = [
2284
+ "itoa",
2285
+ "memchr",
2286
+ "ryu",
2287
+ "serde",
2288
+ "serde_core",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "serde_yaml"
2293
+ version = "0.9.34+deprecated"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2296
+ dependencies = [
2297
+ "indexmap",
2298
+ "itoa",
2299
+ "ryu",
2300
+ "serde",
2301
+ "unsafe-libyaml",
2302
+ ]
2303
+
2304
+ [[package]]
2305
+ name = "shlex"
2306
+ version = "1.3.0"
2307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2308
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2309
+
2310
+ [[package]]
2311
+ name = "simba"
2312
+ version = "0.8.1"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
2315
+ dependencies = [
2316
+ "approx",
2317
+ "num-complex 0.4.6",
2318
+ "num-traits",
2319
+ "paste",
2320
+ "wide",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "simba"
2325
+ version = "0.9.1"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
2328
+ dependencies = [
2329
+ "approx",
2330
+ "num-complex 0.4.6",
2331
+ "num-traits",
2332
+ "paste",
2333
+ "wide",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "simd-adler32"
2338
+ version = "0.3.7"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2341
+
2342
+ [[package]]
2343
+ name = "simd_helpers"
2344
+ version = "0.1.0"
2345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2346
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
2347
+ dependencies = [
2348
+ "quote",
2349
+ ]
2350
+
2351
+ [[package]]
2352
+ name = "smallvec"
2353
+ version = "1.15.1"
2354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2355
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2356
+
2357
+ [[package]]
2358
+ name = "stable_deref_trait"
2359
+ version = "1.2.1"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2362
+
2363
+ [[package]]
2364
+ name = "syn"
2365
+ version = "2.0.111"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2368
+ dependencies = [
2369
+ "proc-macro2",
2370
+ "quote",
2371
+ "unicode-ident",
2372
+ ]
2373
+
2374
+ [[package]]
2375
+ name = "target-lexicon"
2376
+ version = "0.13.3"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
2379
+
2380
+ [[package]]
2381
+ name = "terminal_size"
2382
+ version = "0.4.3"
2383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2384
+ checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
2385
+ dependencies = [
2386
+ "rustix 1.1.2",
2387
+ "windows-sys 0.60.2",
2388
+ ]
2389
+
2390
+ [[package]]
2391
+ name = "thiserror"
2392
+ version = "2.0.17"
2393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2394
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2395
+ dependencies = [
2396
+ "thiserror-impl",
2397
+ ]
2398
+
2399
+ [[package]]
2400
+ name = "thiserror-impl"
2401
+ version = "2.0.17"
2402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2403
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2404
+ dependencies = [
2405
+ "proc-macro2",
2406
+ "quote",
2407
+ "syn",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "tinytemplate"
2412
+ version = "1.2.1"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2415
+ dependencies = [
2416
+ "serde",
2417
+ "serde_json",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "tokio"
2422
+ version = "1.48.0"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
2425
+ dependencies = [
2426
+ "pin-project-lite",
2427
+ ]
2428
+
2429
+ [[package]]
2430
+ name = "typenum"
2431
+ version = "1.19.0"
2432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2433
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2434
+
2435
+ [[package]]
2436
+ name = "unicode-ident"
2437
+ version = "1.0.22"
2438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2439
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2440
+
2441
+ [[package]]
2442
+ name = "unindent"
2443
+ version = "0.2.4"
2444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2445
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2446
+
2447
+ [[package]]
2448
+ name = "unsafe-libyaml"
2449
+ version = "0.2.11"
2450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2451
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2452
+
2453
+ [[package]]
2454
+ name = "utf8parse"
2455
+ version = "0.2.2"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2458
+
2459
+ [[package]]
2460
+ name = "uuid"
2461
+ version = "1.18.1"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
2464
+ dependencies = [
2465
+ "getrandom 0.3.4",
2466
+ "js-sys",
2467
+ "wasm-bindgen",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "v_frame"
2472
+ version = "0.3.9"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
2475
+ dependencies = [
2476
+ "aligned-vec",
2477
+ "num-traits",
2478
+ "wasm-bindgen",
2479
+ ]
2480
+
2481
+ [[package]]
2482
+ name = "vcpkg"
2483
+ version = "0.2.15"
2484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2485
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2486
+
2487
+ [[package]]
2488
+ name = "walkdir"
2489
+ version = "2.5.0"
2490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2491
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2492
+ dependencies = [
2493
+ "same-file",
2494
+ "winapi-util",
2495
+ ]
2496
+
2497
+ [[package]]
2498
+ name = "wasi"
2499
+ version = "0.11.1+wasi-snapshot-preview1"
2500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2501
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2502
+
2503
+ [[package]]
2504
+ name = "wasip2"
2505
+ version = "1.0.1+wasi-0.2.4"
2506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2507
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2508
+ dependencies = [
2509
+ "wit-bindgen",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "wasm-bindgen"
2514
+ version = "0.2.106"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
2517
+ dependencies = [
2518
+ "cfg-if",
2519
+ "once_cell",
2520
+ "rustversion",
2521
+ "wasm-bindgen-macro",
2522
+ "wasm-bindgen-shared",
2523
+ ]
2524
+
2525
+ [[package]]
2526
+ name = "wasm-bindgen-macro"
2527
+ version = "0.2.106"
2528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2529
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
2530
+ dependencies = [
2531
+ "quote",
2532
+ "wasm-bindgen-macro-support",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "wasm-bindgen-macro-support"
2537
+ version = "0.2.106"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
2540
+ dependencies = [
2541
+ "bumpalo",
2542
+ "proc-macro2",
2543
+ "quote",
2544
+ "syn",
2545
+ "wasm-bindgen-shared",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "wasm-bindgen-shared"
2550
+ version = "0.2.106"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
2553
+ dependencies = [
2554
+ "unicode-ident",
2555
+ ]
2556
+
2557
+ [[package]]
2558
+ name = "web-sys"
2559
+ version = "0.3.83"
2560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2561
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2562
+ dependencies = [
2563
+ "js-sys",
2564
+ "wasm-bindgen",
2565
+ ]
2566
+
2567
+ [[package]]
2568
+ name = "wide"
2569
+ version = "0.7.33"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
2572
+ dependencies = [
2573
+ "bytemuck",
2574
+ "safe_arch",
2575
+ ]
2576
+
2577
+ [[package]]
2578
+ name = "winapi"
2579
+ version = "0.3.9"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2582
+ dependencies = [
2583
+ "winapi-i686-pc-windows-gnu",
2584
+ "winapi-x86_64-pc-windows-gnu",
2585
+ ]
2586
+
2587
+ [[package]]
2588
+ name = "winapi-i686-pc-windows-gnu"
2589
+ version = "0.4.0"
2590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2591
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2592
+
2593
+ [[package]]
2594
+ name = "winapi-util"
2595
+ version = "0.1.11"
2596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2597
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2598
+ dependencies = [
2599
+ "windows-sys 0.61.2",
2600
+ ]
2601
+
2602
+ [[package]]
2603
+ name = "winapi-x86_64-pc-windows-gnu"
2604
+ version = "0.4.0"
2605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2606
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2607
+
2608
+ [[package]]
2609
+ name = "windows"
2610
+ version = "0.59.0"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "7f919aee0a93304be7f62e8e5027811bbba96bcb1de84d6618be56e43f8a32a1"
2613
+ dependencies = [
2614
+ "windows-core 0.59.0",
2615
+ "windows-targets 0.53.5",
2616
+ ]
2617
+
2618
+ [[package]]
2619
+ name = "windows-core"
2620
+ version = "0.59.0"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "810ce18ed2112484b0d4e15d022e5f598113e220c53e373fb31e67e21670c1ce"
2623
+ dependencies = [
2624
+ "windows-implement 0.59.0",
2625
+ "windows-interface",
2626
+ "windows-result 0.3.4",
2627
+ "windows-strings 0.3.1",
2628
+ "windows-targets 0.53.5",
2629
+ ]
2630
+
2631
+ [[package]]
2632
+ name = "windows-core"
2633
+ version = "0.62.2"
2634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2635
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2636
+ dependencies = [
2637
+ "windows-implement 0.60.2",
2638
+ "windows-interface",
2639
+ "windows-link 0.2.1",
2640
+ "windows-result 0.4.1",
2641
+ "windows-strings 0.5.1",
2642
+ ]
2643
+
2644
+ [[package]]
2645
+ name = "windows-implement"
2646
+ version = "0.59.0"
2647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2648
+ checksum = "83577b051e2f49a058c308f17f273b570a6a758386fc291b5f6a934dd84e48c1"
2649
+ dependencies = [
2650
+ "proc-macro2",
2651
+ "quote",
2652
+ "syn",
2653
+ ]
2654
+
2655
+ [[package]]
2656
+ name = "windows-implement"
2657
+ version = "0.60.2"
2658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2659
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2660
+ dependencies = [
2661
+ "proc-macro2",
2662
+ "quote",
2663
+ "syn",
2664
+ ]
2665
+
2666
+ [[package]]
2667
+ name = "windows-interface"
2668
+ version = "0.59.3"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2671
+ dependencies = [
2672
+ "proc-macro2",
2673
+ "quote",
2674
+ "syn",
2675
+ ]
2676
+
2677
+ [[package]]
2678
+ name = "windows-link"
2679
+ version = "0.1.3"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2682
+
2683
+ [[package]]
2684
+ name = "windows-link"
2685
+ version = "0.2.1"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2688
+
2689
+ [[package]]
2690
+ name = "windows-result"
2691
+ version = "0.3.4"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2694
+ dependencies = [
2695
+ "windows-link 0.1.3",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "windows-result"
2700
+ version = "0.4.1"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2703
+ dependencies = [
2704
+ "windows-link 0.2.1",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "windows-strings"
2709
+ version = "0.3.1"
2710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2711
+ checksum = "87fa48cc5d406560701792be122a10132491cff9d0aeb23583cc2dcafc847319"
2712
+ dependencies = [
2713
+ "windows-link 0.1.3",
2714
+ ]
2715
+
2716
+ [[package]]
2717
+ name = "windows-strings"
2718
+ version = "0.5.1"
2719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2720
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2721
+ dependencies = [
2722
+ "windows-link 0.2.1",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "windows-sys"
2727
+ version = "0.59.0"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2730
+ dependencies = [
2731
+ "windows-targets 0.52.6",
2732
+ ]
2733
+
2734
+ [[package]]
2735
+ name = "windows-sys"
2736
+ version = "0.60.2"
2737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2738
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2739
+ dependencies = [
2740
+ "windows-targets 0.53.5",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "windows-sys"
2745
+ version = "0.61.2"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2748
+ dependencies = [
2749
+ "windows-link 0.2.1",
2750
+ ]
2751
+
2752
+ [[package]]
2753
+ name = "windows-targets"
2754
+ version = "0.52.6"
2755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2756
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2757
+ dependencies = [
2758
+ "windows_aarch64_gnullvm 0.52.6",
2759
+ "windows_aarch64_msvc 0.52.6",
2760
+ "windows_i686_gnu 0.52.6",
2761
+ "windows_i686_gnullvm 0.52.6",
2762
+ "windows_i686_msvc 0.52.6",
2763
+ "windows_x86_64_gnu 0.52.6",
2764
+ "windows_x86_64_gnullvm 0.52.6",
2765
+ "windows_x86_64_msvc 0.52.6",
2766
+ ]
2767
+
2768
+ [[package]]
2769
+ name = "windows-targets"
2770
+ version = "0.53.5"
2771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2772
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2773
+ dependencies = [
2774
+ "windows-link 0.2.1",
2775
+ "windows_aarch64_gnullvm 0.53.1",
2776
+ "windows_aarch64_msvc 0.53.1",
2777
+ "windows_i686_gnu 0.53.1",
2778
+ "windows_i686_gnullvm 0.53.1",
2779
+ "windows_i686_msvc 0.53.1",
2780
+ "windows_x86_64_gnu 0.53.1",
2781
+ "windows_x86_64_gnullvm 0.53.1",
2782
+ "windows_x86_64_msvc 0.53.1",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "windows_aarch64_gnullvm"
2787
+ version = "0.52.6"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2790
+
2791
+ [[package]]
2792
+ name = "windows_aarch64_gnullvm"
2793
+ version = "0.53.1"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2796
+
2797
+ [[package]]
2798
+ name = "windows_aarch64_msvc"
2799
+ version = "0.52.6"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2802
+
2803
+ [[package]]
2804
+ name = "windows_aarch64_msvc"
2805
+ version = "0.53.1"
2806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2807
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2808
+
2809
+ [[package]]
2810
+ name = "windows_i686_gnu"
2811
+ version = "0.52.6"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2814
+
2815
+ [[package]]
2816
+ name = "windows_i686_gnu"
2817
+ version = "0.53.1"
2818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2819
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2820
+
2821
+ [[package]]
2822
+ name = "windows_i686_gnullvm"
2823
+ version = "0.52.6"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2826
+
2827
+ [[package]]
2828
+ name = "windows_i686_gnullvm"
2829
+ version = "0.53.1"
2830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2831
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2832
+
2833
+ [[package]]
2834
+ name = "windows_i686_msvc"
2835
+ version = "0.52.6"
2836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2837
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2838
+
2839
+ [[package]]
2840
+ name = "windows_i686_msvc"
2841
+ version = "0.53.1"
2842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2843
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2844
+
2845
+ [[package]]
2846
+ name = "windows_x86_64_gnu"
2847
+ version = "0.52.6"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2850
+
2851
+ [[package]]
2852
+ name = "windows_x86_64_gnu"
2853
+ version = "0.53.1"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2856
+
2857
+ [[package]]
2858
+ name = "windows_x86_64_gnullvm"
2859
+ version = "0.52.6"
2860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2861
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2862
+
2863
+ [[package]]
2864
+ name = "windows_x86_64_gnullvm"
2865
+ version = "0.53.1"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2868
+
2869
+ [[package]]
2870
+ name = "windows_x86_64_msvc"
2871
+ version = "0.52.6"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2874
+
2875
+ [[package]]
2876
+ name = "windows_x86_64_msvc"
2877
+ version = "0.53.1"
2878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2879
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2880
+
2881
+ [[package]]
2882
+ name = "wit-bindgen"
2883
+ version = "0.46.0"
2884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2885
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2886
+
2887
+ [[package]]
2888
+ name = "xml-rs"
2889
+ version = "0.8.28"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
2892
+
2893
+ [[package]]
2894
+ name = "y4m"
2895
+ version = "0.8.0"
2896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2897
+ checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
2898
+
2899
+ [[package]]
2900
+ name = "yuv"
2901
+ version = "0.8.9"
2902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2903
+ checksum = "28f1bad143caadcfcaec93039dc9c40a30fc86f23d9e7cc03764a39fe51d9d43"
2904
+ dependencies = [
2905
+ "num-traits",
2906
+ ]
2907
+
2908
+ [[package]]
2909
+ name = "zerocopy"
2910
+ version = "0.8.31"
2911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2912
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
2913
+ dependencies = [
2914
+ "zerocopy-derive",
2915
+ ]
2916
+
2917
+ [[package]]
2918
+ name = "zerocopy-derive"
2919
+ version = "0.8.31"
2920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2921
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
2922
+ dependencies = [
2923
+ "proc-macro2",
2924
+ "quote",
2925
+ "syn",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "zune-core"
2930
+ version = "0.4.12"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
2933
+
2934
+ [[package]]
2935
+ name = "zune-inflate"
2936
+ version = "0.2.54"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
2939
+ dependencies = [
2940
+ "simd-adler32",
2941
+ ]
2942
+
2943
+ [[package]]
2944
+ name = "zune-jpeg"
2945
+ version = "0.4.21"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
2948
+ dependencies = [
2949
+ "zune-core",
2950
+ ]
2951
+
2952
+ [[package]]
2953
+ name = "zune-png"
2954
+ version = "0.4.10"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "7d29c085769c6f29effea890f093120ac019375fdc789d2a496ba8ba96c77509"
2957
+ dependencies = [
2958
+ "zune-core",
2959
+ "zune-inflate",
2960
+ ]