edgefirst-tflite 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. edgefirst_tflite-0.1.0/Cargo.lock +2392 -0
  2. edgefirst_tflite-0.1.0/Cargo.toml +37 -0
  3. edgefirst_tflite-0.1.0/PKG-INFO +15 -0
  4. edgefirst_tflite-0.1.0/crates/python/Cargo.toml +25 -0
  5. edgefirst_tflite-0.1.0/crates/python/edgefirst_tflite.pyi +556 -0
  6. edgefirst_tflite-0.1.0/crates/python/src/camera_adaptor.rs +131 -0
  7. edgefirst_tflite-0.1.0/crates/python/src/delegate.rs +183 -0
  8. edgefirst_tflite-0.1.0/crates/python/src/dmabuf.rs +206 -0
  9. edgefirst_tflite-0.1.0/crates/python/src/error.rs +43 -0
  10. edgefirst_tflite-0.1.0/crates/python/src/interpreter.rs +480 -0
  11. edgefirst_tflite-0.1.0/crates/python/src/lib.rs +42 -0
  12. edgefirst_tflite-0.1.0/crates/python/src/metadata.rs +56 -0
  13. edgefirst_tflite-0.1.0/crates/python/src/tensor_utils.rs +199 -0
  14. edgefirst_tflite-0.1.0/crates/tflite/Cargo.toml +37 -0
  15. edgefirst_tflite-0.1.0/crates/tflite/README.md +57 -0
  16. edgefirst_tflite-0.1.0/crates/tflite/src/camera_adaptor.rs +213 -0
  17. edgefirst_tflite-0.1.0/crates/tflite/src/delegate.rs +325 -0
  18. edgefirst_tflite-0.1.0/crates/tflite/src/dmabuf.rs +512 -0
  19. edgefirst_tflite-0.1.0/crates/tflite/src/error.rs +410 -0
  20. edgefirst_tflite-0.1.0/crates/tflite/src/interpreter.rs +378 -0
  21. edgefirst_tflite-0.1.0/crates/tflite/src/lib.rs +60 -0
  22. edgefirst_tflite-0.1.0/crates/tflite/src/library.rs +74 -0
  23. edgefirst_tflite-0.1.0/crates/tflite/src/metadata.rs +219 -0
  24. edgefirst_tflite-0.1.0/crates/tflite/src/metadata_schema_generated.rs +4890 -0
  25. edgefirst_tflite-0.1.0/crates/tflite/src/model.rs +87 -0
  26. edgefirst_tflite-0.1.0/crates/tflite/src/schema_generated.rs +30845 -0
  27. edgefirst_tflite-0.1.0/crates/tflite/src/tensor.rs +791 -0
  28. edgefirst_tflite-0.1.0/crates/tflite/tests/common/mod.rs +58 -0
  29. edgefirst_tflite-0.1.0/crates/tflite/tests/integration.rs +284 -0
  30. edgefirst_tflite-0.1.0/crates/tflite/tests/on_device.rs +1123 -0
  31. edgefirst_tflite-0.1.0/crates/tflite-sys/Cargo.toml +24 -0
  32. edgefirst_tflite-0.1.0/crates/tflite-sys/README.md +21 -0
  33. edgefirst_tflite-0.1.0/crates/tflite-sys/metadata_schema.fbs +739 -0
  34. edgefirst_tflite-0.1.0/crates/tflite-sys/src/discovery.rs +66 -0
  35. edgefirst_tflite-0.1.0/crates/tflite-sys/src/ffi.rs +5011 -0
  36. edgefirst_tflite-0.1.0/crates/tflite-sys/src/lib.rs +48 -0
  37. edgefirst_tflite-0.1.0/crates/tflite-sys/src/vx_ffi.rs +260 -0
  38. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/LICENSE +251 -0
  39. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/compiler/mlir/lite/core/c/tflite_types.h +90 -0
  40. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/compiler/mlir/lite/core/model_builder_base.h +686 -0
  41. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/compiler/mlir/lite/schema/schema.fbs +1684 -0
  42. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/builtin_ops.h +245 -0
  43. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/async/c/types.h +43 -0
  44. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/c/builtin_op_data.h +26 -0
  45. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/c/c_api.h +655 -0
  46. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/c/c_api_experimental.h +414 -0
  47. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/c/c_api_opaque.h +847 -0
  48. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/c/c_api_types.h +165 -0
  49. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/c/common.h +1602 -0
  50. edgefirst_tflite-0.1.0/crates/tflite-sys/tensorflow/lite/core/c/operator.h +258 -0
  51. edgefirst_tflite-0.1.0/crates/tflite-sys/update.sh +23 -0
  52. edgefirst_tflite-0.1.0/crates/tflite-sys/vx_delegate_dmabuf.h +436 -0
  53. edgefirst_tflite-0.1.0/crates/tflite-sys/wrapper.h +3 -0
  54. edgefirst_tflite-0.1.0/pyproject.toml +31 -0
@@ -0,0 +1,2392 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
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.3"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "ee4508988c62edf04abd8d92897fca0c2995d907ce1dfeaf369dac3716a40685"
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 = "anstream"
40
+ version = "0.6.21"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
43
+ dependencies = [
44
+ "anstyle",
45
+ "anstyle-parse",
46
+ "anstyle-query",
47
+ "anstyle-wincon",
48
+ "colorchoice",
49
+ "is_terminal_polyfill",
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle"
55
+ version = "1.0.13"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
58
+
59
+ [[package]]
60
+ name = "anstyle-parse"
61
+ version = "0.2.7"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
64
+ dependencies = [
65
+ "utf8parse",
66
+ ]
67
+
68
+ [[package]]
69
+ name = "anstyle-query"
70
+ version = "1.1.5"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
73
+ dependencies = [
74
+ "windows-sys",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "anstyle-wincon"
79
+ version = "3.0.11"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
82
+ dependencies = [
83
+ "anstyle",
84
+ "once_cell_polyfill",
85
+ "windows-sys",
86
+ ]
87
+
88
+ [[package]]
89
+ name = "anyhow"
90
+ version = "1.0.102"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
93
+
94
+ [[package]]
95
+ name = "approx"
96
+ version = "0.5.1"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
99
+ dependencies = [
100
+ "num-traits",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "arbitrary"
105
+ version = "1.4.2"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
108
+
109
+ [[package]]
110
+ name = "arg_enum_proc_macro"
111
+ version = "0.3.4"
112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
113
+ checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
114
+ dependencies = [
115
+ "proc-macro2",
116
+ "quote",
117
+ "syn",
118
+ ]
119
+
120
+ [[package]]
121
+ name = "argminmax"
122
+ version = "0.6.3"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "70f13d10a41ac8d2ec79ee34178d61e6f47a29c2edfe7ef1721c7383b0359e65"
125
+ dependencies = [
126
+ "num-traits",
127
+ ]
128
+
129
+ [[package]]
130
+ name = "arrayvec"
131
+ version = "0.7.6"
132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
133
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
134
+
135
+ [[package]]
136
+ name = "as-slice"
137
+ version = "0.2.1"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "516b6b4f0e40d50dcda9365d53964ec74560ad4284da2e7fc97122cd83174516"
140
+ dependencies = [
141
+ "stable_deref_trait",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "autocfg"
146
+ version = "1.5.0"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
149
+
150
+ [[package]]
151
+ name = "av-scenechange"
152
+ version = "0.14.1"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "0f321d77c20e19b92c39e7471cf986812cbb46659d2af674adc4331ef3f18394"
155
+ dependencies = [
156
+ "aligned",
157
+ "anyhow",
158
+ "arg_enum_proc_macro",
159
+ "arrayvec",
160
+ "log",
161
+ "num-rational",
162
+ "num-traits",
163
+ "pastey",
164
+ "rayon",
165
+ "thiserror",
166
+ "v_frame",
167
+ "y4m",
168
+ ]
169
+
170
+ [[package]]
171
+ name = "av1-grain"
172
+ version = "0.2.5"
173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
174
+ checksum = "8cfddb07216410377231960af4fcab838eaa12e013417781b78bd95ee22077f8"
175
+ dependencies = [
176
+ "anyhow",
177
+ "arrayvec",
178
+ "log",
179
+ "nom",
180
+ "num-rational",
181
+ "v_frame",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "avif-serialize"
186
+ version = "0.8.8"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "375082f007bd67184fb9c0374614b29f9aaa604ec301635f72338bb65386a53d"
189
+ dependencies = [
190
+ "arrayvec",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "basic-inference"
195
+ version = "0.1.0"
196
+ dependencies = [
197
+ "edgefirst-tflite",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "bit_field"
202
+ version = "0.10.3"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "1e4b40c7323adcfc0a41c4b88143ed58346ff65a288fc144329c5c45e05d70c6"
205
+
206
+ [[package]]
207
+ name = "bitflags"
208
+ version = "2.10.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
211
+
212
+ [[package]]
213
+ name = "bitstream-io"
214
+ version = "4.9.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "60d4bd9d1db2c6bdf285e223a7fa369d5ce98ec767dec949c6ca62863ce61757"
217
+ dependencies = [
218
+ "core2",
219
+ ]
220
+
221
+ [[package]]
222
+ name = "built"
223
+ version = "0.8.0"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "f4ad8f11f288f48ca24471bbd51ac257aaeaaa07adae295591266b792902ae64"
226
+
227
+ [[package]]
228
+ name = "bumpalo"
229
+ version = "3.20.2"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
232
+
233
+ [[package]]
234
+ name = "bytemuck"
235
+ version = "1.25.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
238
+ dependencies = [
239
+ "bytemuck_derive",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "bytemuck_derive"
244
+ version = "1.10.2"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
247
+ dependencies = [
248
+ "proc-macro2",
249
+ "quote",
250
+ "syn",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "byteorder-lite"
255
+ version = "0.1.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
258
+
259
+ [[package]]
260
+ name = "camera-preprocessing"
261
+ version = "0.1.0"
262
+ dependencies = [
263
+ "edgefirst-tflite",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "cc"
268
+ version = "1.2.56"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
271
+ dependencies = [
272
+ "find-msvc-tools",
273
+ "jobserver",
274
+ "libc",
275
+ "shlex",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "cfg-if"
280
+ version = "1.0.4"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
283
+
284
+ [[package]]
285
+ name = "cfg_aliases"
286
+ version = "0.2.1"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
289
+
290
+ [[package]]
291
+ name = "colorchoice"
292
+ version = "1.0.4"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
295
+
296
+ [[package]]
297
+ name = "core2"
298
+ version = "0.4.0"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
301
+ dependencies = [
302
+ "memchr",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "crossbeam-deque"
307
+ version = "0.8.6"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
310
+ dependencies = [
311
+ "crossbeam-epoch",
312
+ "crossbeam-utils",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "crossbeam-epoch"
317
+ version = "0.9.18"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
320
+ dependencies = [
321
+ "crossbeam-utils",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "crossbeam-utils"
326
+ version = "0.8.21"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
329
+
330
+ [[package]]
331
+ name = "crunchy"
332
+ version = "0.2.4"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
335
+
336
+ [[package]]
337
+ name = "ctor"
338
+ version = "0.4.3"
339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
340
+ checksum = "ec09e802f5081de6157da9a75701d6c713d8dc3ba52571fd4bd25f412644e8a6"
341
+ dependencies = [
342
+ "ctor-proc-macro",
343
+ "dtor",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "ctor-proc-macro"
348
+ version = "0.0.6"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "e2931af7e13dc045d8e9d26afccc6fa115d64e115c9c84b1166288b46f6782c2"
351
+
352
+ [[package]]
353
+ name = "delegate-options"
354
+ version = "0.1.0"
355
+ dependencies = [
356
+ "edgefirst-tflite",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "dma-heap"
361
+ version = "0.4.1"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "f75635036496136320802f8f1756f51bf3e7100f28d71e6d8342aeac48e539f7"
364
+ dependencies = [
365
+ "log",
366
+ "rustix",
367
+ ]
368
+
369
+ [[package]]
370
+ name = "dmabuf-zero-copy"
371
+ version = "0.1.0"
372
+ dependencies = [
373
+ "edgefirst-tflite",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "document-features"
378
+ version = "0.2.12"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
381
+ dependencies = [
382
+ "litrs",
383
+ ]
384
+
385
+ [[package]]
386
+ name = "drm"
387
+ version = "0.14.2"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "c5b71449a23fe79542d6527ca572844b2016abf9573c49e43144d546b1735aec"
390
+ dependencies = [
391
+ "bitflags",
392
+ "bytemuck",
393
+ "bytemuck_derive",
394
+ "drm-ffi",
395
+ "drm-fourcc",
396
+ "libc",
397
+ "rustix",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "drm-ffi"
402
+ version = "0.9.1"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "51a91c9b32ac4e8105dec255e849e0d66e27d7c34d184364fb93e469db08f690"
405
+ dependencies = [
406
+ "drm-sys",
407
+ "rustix",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "drm-fourcc"
412
+ version = "2.2.0"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "0aafbcdb8afc29c1a7ee5fbe53b5d62f4565b35a042a662ca9fecd0b54dae6f4"
415
+
416
+ [[package]]
417
+ name = "drm-sys"
418
+ version = "0.8.1"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "ecc8e1361066d91f5ffccff060a3c3be9c3ecde15be2959c1937595f7a82a9f8"
421
+ dependencies = [
422
+ "libc",
423
+ "linux-raw-sys 0.9.4",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "dtor"
428
+ version = "0.0.6"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "97cbdf2ad6846025e8e25df05171abfb30e3ababa12ee0a0e44b9bbe570633a8"
431
+ dependencies = [
432
+ "dtor-proc-macro",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "dtor-proc-macro"
437
+ version = "0.0.5"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "7454e41ff9012c00d53cf7f475c5e3afa3b91b7c90568495495e8d9bf47a1055"
440
+
441
+ [[package]]
442
+ name = "edgefirst-decoder"
443
+ version = "0.8.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "17061fc256af790602a60c9fa7d5ebabf726a844f49d639e7f62050d7eb3bea2"
446
+ dependencies = [
447
+ "argminmax",
448
+ "env_logger",
449
+ "fast-math",
450
+ "log",
451
+ "ndarray",
452
+ "ndarray-stats",
453
+ "num-traits",
454
+ "rayon",
455
+ "serde",
456
+ "serde_json",
457
+ "serde_yaml",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "edgefirst-gbm"
462
+ version = "0.18.2"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "4dd6165adfc3801870e0671ba026f050030383604afc0c84e3ba25a094584857"
465
+ dependencies = [
466
+ "bitflags",
467
+ "drm",
468
+ "drm-fourcc",
469
+ "edgefirst-gbm-sys",
470
+ "libc",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "edgefirst-gbm-sys"
475
+ version = "0.4.1"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "d3a366fa17f342ee47f2b57e27a28939c009b7a52d5b6312a615c377ebc65c17"
478
+ dependencies = [
479
+ "libc",
480
+ "libloading",
481
+ ]
482
+
483
+ [[package]]
484
+ name = "edgefirst-hal"
485
+ version = "0.8.0"
486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
487
+ checksum = "c96ccf106fca27c0b9ab7c59db190e6065a470722efa15fe1bc209d963ae2e94"
488
+ dependencies = [
489
+ "edgefirst-decoder",
490
+ "edgefirst-image",
491
+ "edgefirst-tensor",
492
+ ]
493
+
494
+ [[package]]
495
+ name = "edgefirst-image"
496
+ version = "0.8.0"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "316a1a0d7c3b1d9ac66bb3db834be8f791459baa754b19001c210ca354faf263"
499
+ dependencies = [
500
+ "ctor",
501
+ "dma-heap",
502
+ "edgefirst-decoder",
503
+ "edgefirst-gbm",
504
+ "edgefirst-tensor",
505
+ "enum_dispatch",
506
+ "env_logger",
507
+ "fast_image_resize",
508
+ "four-char-code",
509
+ "g2d-sys",
510
+ "gls",
511
+ "half",
512
+ "jpeg-encoder",
513
+ "kamadak-exif",
514
+ "khronos-egl",
515
+ "libc",
516
+ "libloading",
517
+ "log",
518
+ "ndarray",
519
+ "ndarray-stats",
520
+ "rayon",
521
+ "tokio",
522
+ "yuv",
523
+ "zune-jpeg",
524
+ "zune-png",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "edgefirst-tensor"
529
+ version = "0.8.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "2d00bcec1ece8d01bfef22af32b5e3f7dd9d18249447838fdb1dbf910a42ceb6"
532
+ dependencies = [
533
+ "ctor",
534
+ "dma-heap",
535
+ "env_logger",
536
+ "libc",
537
+ "log",
538
+ "ndarray",
539
+ "nix 0.30.1",
540
+ "num-traits",
541
+ "uuid",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "edgefirst-tflite"
546
+ version = "0.1.0"
547
+ dependencies = [
548
+ "edgefirst-tflite-sys",
549
+ "flatbuffers",
550
+ "libloading",
551
+ "log",
552
+ "num-derive",
553
+ "num-traits",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "edgefirst-tflite-python"
558
+ version = "0.1.0"
559
+ dependencies = [
560
+ "edgefirst-tflite",
561
+ "half",
562
+ "numpy",
563
+ "pyo3",
564
+ ]
565
+
566
+ [[package]]
567
+ name = "edgefirst-tflite-sys"
568
+ version = "0.1.0"
569
+ dependencies = [
570
+ "libloading",
571
+ "log",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "either"
576
+ version = "1.15.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
579
+
580
+ [[package]]
581
+ name = "enum_dispatch"
582
+ version = "0.3.13"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
585
+ dependencies = [
586
+ "once_cell",
587
+ "proc-macro2",
588
+ "quote",
589
+ "syn",
590
+ ]
591
+
592
+ [[package]]
593
+ name = "env_filter"
594
+ version = "1.0.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
597
+ dependencies = [
598
+ "log",
599
+ "regex",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "env_logger"
604
+ version = "0.11.9"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
607
+ dependencies = [
608
+ "anstream",
609
+ "anstyle",
610
+ "env_filter",
611
+ "jiff",
612
+ "log",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "equator"
617
+ version = "0.4.2"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
620
+ dependencies = [
621
+ "equator-macro",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "equator-macro"
626
+ version = "0.4.2"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
629
+ dependencies = [
630
+ "proc-macro2",
631
+ "quote",
632
+ "syn",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "equivalent"
637
+ version = "1.0.2"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
640
+
641
+ [[package]]
642
+ name = "errno"
643
+ version = "0.3.14"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
646
+ dependencies = [
647
+ "libc",
648
+ "windows-sys",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "error-handling"
653
+ version = "0.1.0"
654
+ dependencies = [
655
+ "edgefirst-tflite",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "exr"
660
+ version = "1.74.0"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "4300e043a56aa2cb633c01af81ca8f699a321879a7854d3896a0ba89056363be"
663
+ dependencies = [
664
+ "bit_field",
665
+ "half",
666
+ "lebe",
667
+ "miniz_oxide",
668
+ "rayon-core",
669
+ "smallvec",
670
+ "zune-inflate",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "fast-math"
675
+ version = "0.1.1"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "2465292146cdfc2011350fe3b1c616ac83cf0faeedb33463ba1c332ed8948d66"
678
+ dependencies = [
679
+ "ieee754",
680
+ ]
681
+
682
+ [[package]]
683
+ name = "fast_image_resize"
684
+ version = "5.5.0"
685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
686
+ checksum = "fbc7fe45cf92b43817ff62a3723e862b85bd1d06288f63007f7645d1d2f7a060"
687
+ dependencies = [
688
+ "bytemuck",
689
+ "cfg-if",
690
+ "document-features",
691
+ "image",
692
+ "num-traits",
693
+ "rayon",
694
+ "thiserror",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "find-msvc-tools"
699
+ version = "0.1.9"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
702
+
703
+ [[package]]
704
+ name = "flatbuffers"
705
+ version = "25.12.19"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
708
+ dependencies = [
709
+ "bitflags",
710
+ "rustc_version",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "foldhash"
715
+ version = "0.1.5"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
718
+
719
+ [[package]]
720
+ name = "four-char-code"
721
+ version = "2.3.0"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "42da99970737c0150e3c5cd1cdc510735a2511739f5c3aa3c6bfc9f31441488d"
724
+
725
+ [[package]]
726
+ name = "g2d-sys"
727
+ version = "1.2.0"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "e36940773868c0e387a2c0f21d24bd7ae940531dc84bc96f34f471583e94e129"
730
+ dependencies = [
731
+ "four-char-code",
732
+ "libloading",
733
+ "log",
734
+ "nix 0.29.0",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "getrandom"
739
+ version = "0.2.17"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
742
+ dependencies = [
743
+ "cfg-if",
744
+ "libc",
745
+ "wasi",
746
+ ]
747
+
748
+ [[package]]
749
+ name = "getrandom"
750
+ version = "0.3.4"
751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
752
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
753
+ dependencies = [
754
+ "cfg-if",
755
+ "libc",
756
+ "r-efi 5.3.0",
757
+ "wasip2",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "getrandom"
762
+ version = "0.4.2"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
765
+ dependencies = [
766
+ "cfg-if",
767
+ "libc",
768
+ "r-efi 6.0.0",
769
+ "wasip2",
770
+ "wasip3",
771
+ ]
772
+
773
+ [[package]]
774
+ name = "gl_generator"
775
+ version = "0.14.0"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
778
+ dependencies = [
779
+ "khronos_api",
780
+ "log",
781
+ "xml-rs",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "glam"
786
+ version = "0.14.0"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
789
+
790
+ [[package]]
791
+ name = "glam"
792
+ version = "0.15.2"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
795
+
796
+ [[package]]
797
+ name = "glam"
798
+ version = "0.16.0"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
801
+
802
+ [[package]]
803
+ name = "glam"
804
+ version = "0.17.3"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
807
+
808
+ [[package]]
809
+ name = "glam"
810
+ version = "0.18.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
813
+
814
+ [[package]]
815
+ name = "glam"
816
+ version = "0.19.0"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
819
+
820
+ [[package]]
821
+ name = "glam"
822
+ version = "0.20.5"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
825
+
826
+ [[package]]
827
+ name = "glam"
828
+ version = "0.21.3"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
831
+
832
+ [[package]]
833
+ name = "glam"
834
+ version = "0.22.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
837
+
838
+ [[package]]
839
+ name = "glam"
840
+ version = "0.23.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
843
+
844
+ [[package]]
845
+ name = "glam"
846
+ version = "0.24.2"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
849
+
850
+ [[package]]
851
+ name = "glam"
852
+ version = "0.25.0"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
855
+
856
+ [[package]]
857
+ name = "glam"
858
+ version = "0.27.0"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
861
+
862
+ [[package]]
863
+ name = "glam"
864
+ version = "0.28.0"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
867
+
868
+ [[package]]
869
+ name = "glam"
870
+ version = "0.29.3"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
873
+
874
+ [[package]]
875
+ name = "glam"
876
+ version = "0.30.10"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
879
+
880
+ [[package]]
881
+ name = "gls"
882
+ version = "0.1.6"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "02e3ad781e06138bd79362ba641edcc6f85470f84a9e07af741ba44e144a66c1"
885
+ dependencies = [
886
+ "gl_generator",
887
+ "libc",
888
+ "nalgebra",
889
+ "serde",
890
+ "winapi",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "half"
895
+ version = "2.7.1"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
898
+ dependencies = [
899
+ "cfg-if",
900
+ "crunchy",
901
+ "zerocopy",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "hashbrown"
906
+ version = "0.15.5"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
909
+ dependencies = [
910
+ "foldhash",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "hashbrown"
915
+ version = "0.16.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
918
+
919
+ [[package]]
920
+ name = "heck"
921
+ version = "0.5.0"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
924
+
925
+ [[package]]
926
+ name = "id-arena"
927
+ version = "2.3.0"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
930
+
931
+ [[package]]
932
+ name = "ieee754"
933
+ version = "0.2.6"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "9007da9cacbd3e6343da136e98b0d2df013f553d35bdec8b518f07bea768e19c"
936
+
937
+ [[package]]
938
+ name = "image"
939
+ version = "0.25.9"
940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
941
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
942
+ dependencies = [
943
+ "bytemuck",
944
+ "byteorder-lite",
945
+ "exr",
946
+ "moxcms",
947
+ "num-traits",
948
+ "ravif",
949
+ "rayon",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "imgref"
954
+ version = "1.12.0"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
957
+
958
+ [[package]]
959
+ name = "indexmap"
960
+ version = "2.13.0"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
963
+ dependencies = [
964
+ "equivalent",
965
+ "hashbrown 0.16.1",
966
+ "serde",
967
+ "serde_core",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "indoc"
972
+ version = "2.0.7"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
975
+ dependencies = [
976
+ "rustversion",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "interpolate_name"
981
+ version = "0.2.4"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
984
+ dependencies = [
985
+ "proc-macro2",
986
+ "quote",
987
+ "syn",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "is_terminal_polyfill"
992
+ version = "1.70.2"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
995
+
996
+ [[package]]
997
+ name = "itertools"
998
+ version = "0.13.0"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1001
+ dependencies = [
1002
+ "either",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "itertools"
1007
+ version = "0.14.0"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1010
+ dependencies = [
1011
+ "either",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "itoa"
1016
+ version = "1.0.17"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1019
+
1020
+ [[package]]
1021
+ name = "jiff"
1022
+ version = "0.2.22"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "819b44bc7c87d9117eb522f14d46e918add69ff12713c475946b0a29363ed1c2"
1025
+ dependencies = [
1026
+ "jiff-static",
1027
+ "log",
1028
+ "portable-atomic",
1029
+ "portable-atomic-util",
1030
+ "serde_core",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "jiff-static"
1035
+ version = "0.2.22"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "470252db18ecc35fd766c0891b1e3ec6cbbcd62507e85276c01bf75d8e94d4a1"
1038
+ dependencies = [
1039
+ "proc-macro2",
1040
+ "quote",
1041
+ "syn",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "jobserver"
1046
+ version = "0.1.34"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1049
+ dependencies = [
1050
+ "getrandom 0.3.4",
1051
+ "libc",
1052
+ ]
1053
+
1054
+ [[package]]
1055
+ name = "jpeg-encoder"
1056
+ version = "0.6.1"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "b454d911ac55068f53495488d8ccd0646eaa540c033a28ee15b07838afafb01f"
1059
+
1060
+ [[package]]
1061
+ name = "js-sys"
1062
+ version = "0.3.91"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1065
+ dependencies = [
1066
+ "once_cell",
1067
+ "wasm-bindgen",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "kamadak-exif"
1072
+ version = "0.6.1"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "1130d80c7374efad55a117d715a3af9368f0fa7a2c54573afc15a188cd984837"
1075
+ dependencies = [
1076
+ "mutate_once",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "khronos-egl"
1081
+ version = "6.0.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
1084
+ dependencies = [
1085
+ "libc",
1086
+ "libloading",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "khronos_api"
1091
+ version = "3.1.0"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
1094
+
1095
+ [[package]]
1096
+ name = "leb128fmt"
1097
+ version = "0.1.0"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1100
+
1101
+ [[package]]
1102
+ name = "lebe"
1103
+ version = "0.5.3"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
1106
+
1107
+ [[package]]
1108
+ name = "libc"
1109
+ version = "0.2.182"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1112
+
1113
+ [[package]]
1114
+ name = "libfuzzer-sys"
1115
+ version = "0.4.12"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "f12a681b7dd8ce12bff52488013ba614b869148d54dd79836ab85aafdd53f08d"
1118
+ dependencies = [
1119
+ "arbitrary",
1120
+ "cc",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "libloading"
1125
+ version = "0.8.9"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1128
+ dependencies = [
1129
+ "cfg-if",
1130
+ "windows-link",
1131
+ ]
1132
+
1133
+ [[package]]
1134
+ name = "linux-raw-sys"
1135
+ version = "0.9.4"
1136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1137
+ checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1138
+
1139
+ [[package]]
1140
+ name = "linux-raw-sys"
1141
+ version = "0.12.1"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1144
+
1145
+ [[package]]
1146
+ name = "litrs"
1147
+ version = "1.0.0"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1150
+
1151
+ [[package]]
1152
+ name = "log"
1153
+ version = "0.4.29"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1156
+
1157
+ [[package]]
1158
+ name = "loop9"
1159
+ version = "0.1.5"
1160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1161
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
1162
+ dependencies = [
1163
+ "imgref",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "matrixmultiply"
1168
+ version = "0.3.10"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
1171
+ dependencies = [
1172
+ "autocfg",
1173
+ "rawpointer",
1174
+ ]
1175
+
1176
+ [[package]]
1177
+ name = "maybe-rayon"
1178
+ version = "0.1.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
1181
+ dependencies = [
1182
+ "cfg-if",
1183
+ "rayon",
1184
+ ]
1185
+
1186
+ [[package]]
1187
+ name = "memchr"
1188
+ version = "2.8.0"
1189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1190
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1191
+
1192
+ [[package]]
1193
+ name = "memoffset"
1194
+ version = "0.9.1"
1195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1196
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1197
+ dependencies = [
1198
+ "autocfg",
1199
+ ]
1200
+
1201
+ [[package]]
1202
+ name = "metadata-extraction"
1203
+ version = "0.1.0"
1204
+ dependencies = [
1205
+ "edgefirst-tflite",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "miniz_oxide"
1210
+ version = "0.8.9"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1213
+ dependencies = [
1214
+ "adler2",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "moxcms"
1219
+ version = "0.7.11"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
1222
+ dependencies = [
1223
+ "num-traits",
1224
+ "pxfm",
1225
+ ]
1226
+
1227
+ [[package]]
1228
+ name = "mutate_once"
1229
+ version = "0.1.2"
1230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
+ checksum = "13d2233c9842d08cfe13f9eac96e207ca6a2ea10b80259ebe8ad0268be27d2af"
1232
+
1233
+ [[package]]
1234
+ name = "nalgebra"
1235
+ version = "0.34.1"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "c4d5b3eff5cd580f93da45e64715e8c20a3996342f1e466599cf7a267a0c2f5f"
1238
+ dependencies = [
1239
+ "approx",
1240
+ "glam 0.14.0",
1241
+ "glam 0.15.2",
1242
+ "glam 0.16.0",
1243
+ "glam 0.17.3",
1244
+ "glam 0.18.0",
1245
+ "glam 0.19.0",
1246
+ "glam 0.20.5",
1247
+ "glam 0.21.3",
1248
+ "glam 0.22.0",
1249
+ "glam 0.23.0",
1250
+ "glam 0.24.2",
1251
+ "glam 0.25.0",
1252
+ "glam 0.27.0",
1253
+ "glam 0.28.0",
1254
+ "glam 0.29.3",
1255
+ "glam 0.30.10",
1256
+ "matrixmultiply",
1257
+ "nalgebra-macros",
1258
+ "num-complex",
1259
+ "num-rational",
1260
+ "num-traits",
1261
+ "serde",
1262
+ "simba",
1263
+ "typenum",
1264
+ ]
1265
+
1266
+ [[package]]
1267
+ name = "nalgebra-macros"
1268
+ version = "0.3.0"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
1271
+ dependencies = [
1272
+ "proc-macro2",
1273
+ "quote",
1274
+ "syn",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "ndarray"
1279
+ version = "0.16.1"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
1282
+ dependencies = [
1283
+ "matrixmultiply",
1284
+ "num-complex",
1285
+ "num-integer",
1286
+ "num-traits",
1287
+ "portable-atomic",
1288
+ "portable-atomic-util",
1289
+ "rawpointer",
1290
+ "rayon",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "ndarray-stats"
1295
+ version = "0.6.0"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "17ebbe97acce52d06aebed4cd4a87c0941f4b2519b59b82b4feb5bd0ce003dfd"
1298
+ dependencies = [
1299
+ "indexmap",
1300
+ "itertools 0.13.0",
1301
+ "ndarray",
1302
+ "noisy_float",
1303
+ "num-integer",
1304
+ "num-traits",
1305
+ "rand 0.8.5",
1306
+ ]
1307
+
1308
+ [[package]]
1309
+ name = "new_debug_unreachable"
1310
+ version = "1.0.6"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1313
+
1314
+ [[package]]
1315
+ name = "nix"
1316
+ version = "0.29.0"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1319
+ dependencies = [
1320
+ "bitflags",
1321
+ "cfg-if",
1322
+ "cfg_aliases",
1323
+ "libc",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "nix"
1328
+ version = "0.30.1"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1331
+ dependencies = [
1332
+ "bitflags",
1333
+ "cfg-if",
1334
+ "cfg_aliases",
1335
+ "libc",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "noisy_float"
1340
+ version = "0.2.1"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "c16843be85dd410c6a12251c4eca0dd1d3ee8c5725f746c4d5e0fdcec0a864b2"
1343
+ dependencies = [
1344
+ "num-traits",
1345
+ ]
1346
+
1347
+ [[package]]
1348
+ name = "nom"
1349
+ version = "8.0.0"
1350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1351
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1352
+ dependencies = [
1353
+ "memchr",
1354
+ ]
1355
+
1356
+ [[package]]
1357
+ name = "noop_proc_macro"
1358
+ version = "0.3.0"
1359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1360
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
1361
+
1362
+ [[package]]
1363
+ name = "num-bigint"
1364
+ version = "0.4.6"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1367
+ dependencies = [
1368
+ "num-integer",
1369
+ "num-traits",
1370
+ ]
1371
+
1372
+ [[package]]
1373
+ name = "num-complex"
1374
+ version = "0.4.6"
1375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1376
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
1377
+ dependencies = [
1378
+ "num-traits",
1379
+ "serde",
1380
+ ]
1381
+
1382
+ [[package]]
1383
+ name = "num-derive"
1384
+ version = "0.4.2"
1385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1386
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
1387
+ dependencies = [
1388
+ "proc-macro2",
1389
+ "quote",
1390
+ "syn",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "num-integer"
1395
+ version = "0.1.46"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1398
+ dependencies = [
1399
+ "num-traits",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "num-rational"
1404
+ version = "0.4.2"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
1407
+ dependencies = [
1408
+ "num-bigint",
1409
+ "num-integer",
1410
+ "num-traits",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "num-traits"
1415
+ version = "0.2.19"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1418
+ dependencies = [
1419
+ "autocfg",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "numpy"
1424
+ version = "0.24.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "a7cfbf3f0feededcaa4d289fe3079b03659e85c5b5a177f4ba6fb01ab4fb3e39"
1427
+ dependencies = [
1428
+ "half",
1429
+ "libc",
1430
+ "ndarray",
1431
+ "num-complex",
1432
+ "num-integer",
1433
+ "num-traits",
1434
+ "pyo3",
1435
+ "pyo3-build-config",
1436
+ "rustc-hash",
1437
+ ]
1438
+
1439
+ [[package]]
1440
+ name = "once_cell"
1441
+ version = "1.21.3"
1442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1443
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1444
+
1445
+ [[package]]
1446
+ name = "once_cell_polyfill"
1447
+ version = "1.70.2"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1450
+
1451
+ [[package]]
1452
+ name = "paste"
1453
+ version = "1.0.15"
1454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1455
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1456
+
1457
+ [[package]]
1458
+ name = "pastey"
1459
+ version = "0.1.1"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
1462
+
1463
+ [[package]]
1464
+ name = "pin-project-lite"
1465
+ version = "0.2.17"
1466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1467
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1468
+
1469
+ [[package]]
1470
+ name = "portable-atomic"
1471
+ version = "1.13.1"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1474
+
1475
+ [[package]]
1476
+ name = "portable-atomic-util"
1477
+ version = "0.2.5"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
1480
+ dependencies = [
1481
+ "portable-atomic",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "ppv-lite86"
1486
+ version = "0.2.21"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1489
+ dependencies = [
1490
+ "zerocopy",
1491
+ ]
1492
+
1493
+ [[package]]
1494
+ name = "prettyplease"
1495
+ version = "0.2.37"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1498
+ dependencies = [
1499
+ "proc-macro2",
1500
+ "syn",
1501
+ ]
1502
+
1503
+ [[package]]
1504
+ name = "proc-macro2"
1505
+ version = "1.0.106"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1508
+ dependencies = [
1509
+ "unicode-ident",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "profiling"
1514
+ version = "1.0.17"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
1517
+ dependencies = [
1518
+ "profiling-procmacros",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "profiling-procmacros"
1523
+ version = "1.0.17"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
1526
+ dependencies = [
1527
+ "quote",
1528
+ "syn",
1529
+ ]
1530
+
1531
+ [[package]]
1532
+ name = "pxfm"
1533
+ version = "0.1.28"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
1536
+
1537
+ [[package]]
1538
+ name = "pyo3"
1539
+ version = "0.24.2"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "e5203598f366b11a02b13aa20cab591229ff0a89fd121a308a5df751d5fc9219"
1542
+ dependencies = [
1543
+ "cfg-if",
1544
+ "indoc",
1545
+ "libc",
1546
+ "memoffset",
1547
+ "once_cell",
1548
+ "portable-atomic",
1549
+ "pyo3-build-config",
1550
+ "pyo3-ffi",
1551
+ "pyo3-macros",
1552
+ "unindent",
1553
+ ]
1554
+
1555
+ [[package]]
1556
+ name = "pyo3-build-config"
1557
+ version = "0.24.2"
1558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1559
+ checksum = "99636d423fa2ca130fa5acde3059308006d46f98caac629418e53f7ebb1e9999"
1560
+ dependencies = [
1561
+ "once_cell",
1562
+ "target-lexicon",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "pyo3-ffi"
1567
+ version = "0.24.2"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "78f9cf92ba9c409279bc3305b5409d90db2d2c22392d443a87df3a1adad59e33"
1570
+ dependencies = [
1571
+ "libc",
1572
+ "pyo3-build-config",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "pyo3-macros"
1577
+ version = "0.24.2"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "0b999cb1a6ce21f9a6b147dcf1be9ffedf02e0043aec74dc390f3007047cecd9"
1580
+ dependencies = [
1581
+ "proc-macro2",
1582
+ "pyo3-macros-backend",
1583
+ "quote",
1584
+ "syn",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "pyo3-macros-backend"
1589
+ version = "0.24.2"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "822ece1c7e1012745607d5cf0bcb2874769f0f7cb34c4cde03b9358eb9ef911a"
1592
+ dependencies = [
1593
+ "heck",
1594
+ "proc-macro2",
1595
+ "pyo3-build-config",
1596
+ "quote",
1597
+ "syn",
1598
+ ]
1599
+
1600
+ [[package]]
1601
+ name = "quantized-inference"
1602
+ version = "0.1.0"
1603
+ dependencies = [
1604
+ "edgefirst-tflite",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "quick-error"
1609
+ version = "2.0.1"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1612
+
1613
+ [[package]]
1614
+ name = "quote"
1615
+ version = "1.0.44"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1618
+ dependencies = [
1619
+ "proc-macro2",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "r-efi"
1624
+ version = "5.3.0"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1627
+
1628
+ [[package]]
1629
+ name = "r-efi"
1630
+ version = "6.0.0"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1633
+
1634
+ [[package]]
1635
+ name = "rand"
1636
+ version = "0.8.5"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1639
+ dependencies = [
1640
+ "libc",
1641
+ "rand_chacha 0.3.1",
1642
+ "rand_core 0.6.4",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "rand"
1647
+ version = "0.9.2"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1650
+ dependencies = [
1651
+ "rand_chacha 0.9.0",
1652
+ "rand_core 0.9.5",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "rand_chacha"
1657
+ version = "0.3.1"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1660
+ dependencies = [
1661
+ "ppv-lite86",
1662
+ "rand_core 0.6.4",
1663
+ ]
1664
+
1665
+ [[package]]
1666
+ name = "rand_chacha"
1667
+ version = "0.9.0"
1668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1669
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1670
+ dependencies = [
1671
+ "ppv-lite86",
1672
+ "rand_core 0.9.5",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "rand_core"
1677
+ version = "0.6.4"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1680
+ dependencies = [
1681
+ "getrandom 0.2.17",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "rand_core"
1686
+ version = "0.9.5"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1689
+ dependencies = [
1690
+ "getrandom 0.3.4",
1691
+ ]
1692
+
1693
+ [[package]]
1694
+ name = "rav1e"
1695
+ version = "0.8.1"
1696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1697
+ checksum = "43b6dd56e85d9483277cde964fd1bdb0428de4fec5ebba7540995639a21cb32b"
1698
+ dependencies = [
1699
+ "aligned-vec",
1700
+ "arbitrary",
1701
+ "arg_enum_proc_macro",
1702
+ "arrayvec",
1703
+ "av-scenechange",
1704
+ "av1-grain",
1705
+ "bitstream-io",
1706
+ "built",
1707
+ "cfg-if",
1708
+ "interpolate_name",
1709
+ "itertools 0.14.0",
1710
+ "libc",
1711
+ "libfuzzer-sys",
1712
+ "log",
1713
+ "maybe-rayon",
1714
+ "new_debug_unreachable",
1715
+ "noop_proc_macro",
1716
+ "num-derive",
1717
+ "num-traits",
1718
+ "paste",
1719
+ "profiling",
1720
+ "rand 0.9.2",
1721
+ "rand_chacha 0.9.0",
1722
+ "simd_helpers",
1723
+ "thiserror",
1724
+ "v_frame",
1725
+ "wasm-bindgen",
1726
+ ]
1727
+
1728
+ [[package]]
1729
+ name = "ravif"
1730
+ version = "0.12.0"
1731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1732
+ checksum = "ef69c1990ceef18a116855938e74793a5f7496ee907562bd0857b6ac734ab285"
1733
+ dependencies = [
1734
+ "avif-serialize",
1735
+ "imgref",
1736
+ "loop9",
1737
+ "quick-error",
1738
+ "rav1e",
1739
+ "rayon",
1740
+ "rgb",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "rawpointer"
1745
+ version = "0.2.1"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1748
+
1749
+ [[package]]
1750
+ name = "rayon"
1751
+ version = "1.11.0"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1754
+ dependencies = [
1755
+ "either",
1756
+ "rayon-core",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "rayon-core"
1761
+ version = "1.13.0"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1764
+ dependencies = [
1765
+ "crossbeam-deque",
1766
+ "crossbeam-utils",
1767
+ ]
1768
+
1769
+ [[package]]
1770
+ name = "regex"
1771
+ version = "1.12.3"
1772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1773
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1774
+ dependencies = [
1775
+ "aho-corasick",
1776
+ "memchr",
1777
+ "regex-automata",
1778
+ "regex-syntax",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "regex-automata"
1783
+ version = "0.4.14"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1786
+ dependencies = [
1787
+ "aho-corasick",
1788
+ "memchr",
1789
+ "regex-syntax",
1790
+ ]
1791
+
1792
+ [[package]]
1793
+ name = "regex-syntax"
1794
+ version = "0.8.10"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1797
+
1798
+ [[package]]
1799
+ name = "rgb"
1800
+ version = "0.8.53"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "47b34b781b31e5d73e9fbc8689c70551fd1ade9a19e3e28cfec8580a79290cc4"
1803
+
1804
+ [[package]]
1805
+ name = "rustc-hash"
1806
+ version = "2.1.1"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1809
+
1810
+ [[package]]
1811
+ name = "rustc_version"
1812
+ version = "0.4.1"
1813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1814
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1815
+ dependencies = [
1816
+ "semver",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "rustix"
1821
+ version = "1.1.4"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1824
+ dependencies = [
1825
+ "bitflags",
1826
+ "errno",
1827
+ "libc",
1828
+ "linux-raw-sys 0.12.1",
1829
+ "windows-sys",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "rustversion"
1834
+ version = "1.0.22"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1837
+
1838
+ [[package]]
1839
+ name = "ryu"
1840
+ version = "1.0.23"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1843
+
1844
+ [[package]]
1845
+ name = "safe_arch"
1846
+ version = "0.7.4"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
1849
+ dependencies = [
1850
+ "bytemuck",
1851
+ ]
1852
+
1853
+ [[package]]
1854
+ name = "semver"
1855
+ version = "1.0.27"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1858
+
1859
+ [[package]]
1860
+ name = "serde"
1861
+ version = "1.0.228"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1864
+ dependencies = [
1865
+ "serde_core",
1866
+ "serde_derive",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "serde_core"
1871
+ version = "1.0.228"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1874
+ dependencies = [
1875
+ "serde_derive",
1876
+ ]
1877
+
1878
+ [[package]]
1879
+ name = "serde_derive"
1880
+ version = "1.0.228"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1883
+ dependencies = [
1884
+ "proc-macro2",
1885
+ "quote",
1886
+ "syn",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "serde_json"
1891
+ version = "1.0.149"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1894
+ dependencies = [
1895
+ "itoa",
1896
+ "memchr",
1897
+ "serde",
1898
+ "serde_core",
1899
+ "zmij",
1900
+ ]
1901
+
1902
+ [[package]]
1903
+ name = "serde_yaml"
1904
+ version = "0.9.34+deprecated"
1905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1906
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1907
+ dependencies = [
1908
+ "indexmap",
1909
+ "itoa",
1910
+ "ryu",
1911
+ "serde",
1912
+ "unsafe-libyaml",
1913
+ ]
1914
+
1915
+ [[package]]
1916
+ name = "shlex"
1917
+ version = "1.3.0"
1918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1919
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1920
+
1921
+ [[package]]
1922
+ name = "simba"
1923
+ version = "0.9.1"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
1926
+ dependencies = [
1927
+ "approx",
1928
+ "num-complex",
1929
+ "num-traits",
1930
+ "paste",
1931
+ "wide",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "simd-adler32"
1936
+ version = "0.3.8"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1939
+
1940
+ [[package]]
1941
+ name = "simd_helpers"
1942
+ version = "0.1.0"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
1945
+ dependencies = [
1946
+ "quote",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "smallvec"
1951
+ version = "1.15.1"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1954
+
1955
+ [[package]]
1956
+ name = "stable_deref_trait"
1957
+ version = "1.2.1"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1960
+
1961
+ [[package]]
1962
+ name = "syn"
1963
+ version = "2.0.115"
1964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1965
+ checksum = "6e614ed320ac28113fa64972c4262d5dbc89deacdfd00c34a3e4cea073243c12"
1966
+ dependencies = [
1967
+ "proc-macro2",
1968
+ "quote",
1969
+ "unicode-ident",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "target-lexicon"
1974
+ version = "0.13.5"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1977
+
1978
+ [[package]]
1979
+ name = "thiserror"
1980
+ version = "2.0.18"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1983
+ dependencies = [
1984
+ "thiserror-impl",
1985
+ ]
1986
+
1987
+ [[package]]
1988
+ name = "thiserror-impl"
1989
+ version = "2.0.18"
1990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1991
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1992
+ dependencies = [
1993
+ "proc-macro2",
1994
+ "quote",
1995
+ "syn",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "tokio"
2000
+ version = "1.50.0"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
2003
+ dependencies = [
2004
+ "pin-project-lite",
2005
+ ]
2006
+
2007
+ [[package]]
2008
+ name = "typenum"
2009
+ version = "1.19.0"
2010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2011
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2012
+
2013
+ [[package]]
2014
+ name = "unicode-ident"
2015
+ version = "1.0.23"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
2018
+
2019
+ [[package]]
2020
+ name = "unicode-xid"
2021
+ version = "0.2.6"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2024
+
2025
+ [[package]]
2026
+ name = "unindent"
2027
+ version = "0.2.4"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2030
+
2031
+ [[package]]
2032
+ name = "unsafe-libyaml"
2033
+ version = "0.2.11"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2036
+
2037
+ [[package]]
2038
+ name = "utf8parse"
2039
+ version = "0.2.2"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2042
+
2043
+ [[package]]
2044
+ name = "uuid"
2045
+ version = "1.21.0"
2046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2047
+ checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
2048
+ dependencies = [
2049
+ "getrandom 0.4.2",
2050
+ "js-sys",
2051
+ "wasm-bindgen",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "v_frame"
2056
+ version = "0.3.9"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
2059
+ dependencies = [
2060
+ "aligned-vec",
2061
+ "num-traits",
2062
+ "wasm-bindgen",
2063
+ ]
2064
+
2065
+ [[package]]
2066
+ name = "wasi"
2067
+ version = "0.11.1+wasi-snapshot-preview1"
2068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2069
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2070
+
2071
+ [[package]]
2072
+ name = "wasip2"
2073
+ version = "1.0.2+wasi-0.2.9"
2074
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2075
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2076
+ dependencies = [
2077
+ "wit-bindgen",
2078
+ ]
2079
+
2080
+ [[package]]
2081
+ name = "wasip3"
2082
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2084
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2085
+ dependencies = [
2086
+ "wit-bindgen",
2087
+ ]
2088
+
2089
+ [[package]]
2090
+ name = "wasm-bindgen"
2091
+ version = "0.2.114"
2092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2093
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
2094
+ dependencies = [
2095
+ "cfg-if",
2096
+ "once_cell",
2097
+ "rustversion",
2098
+ "wasm-bindgen-macro",
2099
+ "wasm-bindgen-shared",
2100
+ ]
2101
+
2102
+ [[package]]
2103
+ name = "wasm-bindgen-macro"
2104
+ version = "0.2.114"
2105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2106
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
2107
+ dependencies = [
2108
+ "quote",
2109
+ "wasm-bindgen-macro-support",
2110
+ ]
2111
+
2112
+ [[package]]
2113
+ name = "wasm-bindgen-macro-support"
2114
+ version = "0.2.114"
2115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2116
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
2117
+ dependencies = [
2118
+ "bumpalo",
2119
+ "proc-macro2",
2120
+ "quote",
2121
+ "syn",
2122
+ "wasm-bindgen-shared",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "wasm-bindgen-shared"
2127
+ version = "0.2.114"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
2130
+ dependencies = [
2131
+ "unicode-ident",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "wasm-encoder"
2136
+ version = "0.244.0"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2139
+ dependencies = [
2140
+ "leb128fmt",
2141
+ "wasmparser",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "wasm-metadata"
2146
+ version = "0.244.0"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2149
+ dependencies = [
2150
+ "anyhow",
2151
+ "indexmap",
2152
+ "wasm-encoder",
2153
+ "wasmparser",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "wasmparser"
2158
+ version = "0.244.0"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2161
+ dependencies = [
2162
+ "bitflags",
2163
+ "hashbrown 0.15.5",
2164
+ "indexmap",
2165
+ "semver",
2166
+ ]
2167
+
2168
+ [[package]]
2169
+ name = "wide"
2170
+ version = "0.7.33"
2171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2172
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
2173
+ dependencies = [
2174
+ "bytemuck",
2175
+ "safe_arch",
2176
+ ]
2177
+
2178
+ [[package]]
2179
+ name = "winapi"
2180
+ version = "0.3.9"
2181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2182
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2183
+ dependencies = [
2184
+ "winapi-i686-pc-windows-gnu",
2185
+ "winapi-x86_64-pc-windows-gnu",
2186
+ ]
2187
+
2188
+ [[package]]
2189
+ name = "winapi-i686-pc-windows-gnu"
2190
+ version = "0.4.0"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2193
+
2194
+ [[package]]
2195
+ name = "winapi-x86_64-pc-windows-gnu"
2196
+ version = "0.4.0"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2199
+
2200
+ [[package]]
2201
+ name = "windows-link"
2202
+ version = "0.2.1"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2205
+
2206
+ [[package]]
2207
+ name = "windows-sys"
2208
+ version = "0.61.2"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2211
+ dependencies = [
2212
+ "windows-link",
2213
+ ]
2214
+
2215
+ [[package]]
2216
+ name = "wit-bindgen"
2217
+ version = "0.51.0"
2218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2219
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2220
+ dependencies = [
2221
+ "wit-bindgen-rust-macro",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "wit-bindgen-core"
2226
+ version = "0.51.0"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2229
+ dependencies = [
2230
+ "anyhow",
2231
+ "heck",
2232
+ "wit-parser",
2233
+ ]
2234
+
2235
+ [[package]]
2236
+ name = "wit-bindgen-rust"
2237
+ version = "0.51.0"
2238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2239
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2240
+ dependencies = [
2241
+ "anyhow",
2242
+ "heck",
2243
+ "indexmap",
2244
+ "prettyplease",
2245
+ "syn",
2246
+ "wasm-metadata",
2247
+ "wit-bindgen-core",
2248
+ "wit-component",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "wit-bindgen-rust-macro"
2253
+ version = "0.51.0"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2256
+ dependencies = [
2257
+ "anyhow",
2258
+ "prettyplease",
2259
+ "proc-macro2",
2260
+ "quote",
2261
+ "syn",
2262
+ "wit-bindgen-core",
2263
+ "wit-bindgen-rust",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "wit-component"
2268
+ version = "0.244.0"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2271
+ dependencies = [
2272
+ "anyhow",
2273
+ "bitflags",
2274
+ "indexmap",
2275
+ "log",
2276
+ "serde",
2277
+ "serde_derive",
2278
+ "serde_json",
2279
+ "wasm-encoder",
2280
+ "wasm-metadata",
2281
+ "wasmparser",
2282
+ "wit-parser",
2283
+ ]
2284
+
2285
+ [[package]]
2286
+ name = "wit-parser"
2287
+ version = "0.244.0"
2288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2289
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2290
+ dependencies = [
2291
+ "anyhow",
2292
+ "id-arena",
2293
+ "indexmap",
2294
+ "log",
2295
+ "semver",
2296
+ "serde",
2297
+ "serde_derive",
2298
+ "serde_json",
2299
+ "unicode-xid",
2300
+ "wasmparser",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "xml-rs"
2305
+ version = "0.8.28"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
2308
+
2309
+ [[package]]
2310
+ name = "y4m"
2311
+ version = "0.8.0"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "7a5a4b21e1a62b67a2970e6831bc091d7b87e119e7f9791aef9702e3bef04448"
2314
+
2315
+ [[package]]
2316
+ name = "yolov8"
2317
+ version = "0.1.0"
2318
+ dependencies = [
2319
+ "edgefirst-hal",
2320
+ "edgefirst-tflite",
2321
+ "libc",
2322
+ "ndarray",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "yuv"
2327
+ version = "0.8.11"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "59a0036e8395a36727d814d90c490872c580e29d69edccf6f00d956d9bca985c"
2330
+ dependencies = [
2331
+ "num-traits",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "zerocopy"
2336
+ version = "0.8.40"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
2339
+ dependencies = [
2340
+ "zerocopy-derive",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "zerocopy-derive"
2345
+ version = "0.8.40"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
2348
+ dependencies = [
2349
+ "proc-macro2",
2350
+ "quote",
2351
+ "syn",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "zmij"
2356
+ version = "1.0.21"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2359
+
2360
+ [[package]]
2361
+ name = "zune-core"
2362
+ version = "0.4.12"
2363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2364
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
2365
+
2366
+ [[package]]
2367
+ name = "zune-inflate"
2368
+ version = "0.2.54"
2369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2370
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
2371
+ dependencies = [
2372
+ "simd-adler32",
2373
+ ]
2374
+
2375
+ [[package]]
2376
+ name = "zune-jpeg"
2377
+ version = "0.4.21"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
2380
+ dependencies = [
2381
+ "zune-core",
2382
+ ]
2383
+
2384
+ [[package]]
2385
+ name = "zune-png"
2386
+ version = "0.4.10"
2387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2388
+ checksum = "7d29c085769c6f29effea890f093120ac019375fdc789d2a496ba8ba96c77509"
2389
+ dependencies = [
2390
+ "zune-core",
2391
+ "zune-inflate",
2392
+ ]