cinefractal 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 (61) hide show
  1. cinefractal-0.1.0/Cargo.lock +1619 -0
  2. cinefractal-0.1.0/Cargo.toml +12 -0
  3. cinefractal-0.1.0/PKG-INFO +228 -0
  4. cinefractal-0.1.0/README.md +210 -0
  5. cinefractal-0.1.0/cinefractal/.gitignore +73 -0
  6. cinefractal-0.1.0/cinefractal/Cargo.toml +27 -0
  7. cinefractal-0.1.0/cinefractal/README.md +210 -0
  8. cinefractal-0.1.0/cinefractal/cinefractal.pyi +421 -0
  9. cinefractal-0.1.0/cinefractal/docs/Flow.pptx +0 -0
  10. cinefractal-0.1.0/cinefractal/docs/Makefile +20 -0
  11. cinefractal-0.1.0/cinefractal/docs/conf.py +31 -0
  12. cinefractal-0.1.0/cinefractal/docs/getting_started.md +26 -0
  13. cinefractal-0.1.0/cinefractal/docs/images/Flow.png +0 -0
  14. cinefractal-0.1.0/cinefractal/docs/images/burning_ship.png +0 -0
  15. cinefractal-0.1.0/cinefractal/docs/images/celtic.png +0 -0
  16. cinefractal-0.1.0/cinefractal/docs/images/cool.png +0 -0
  17. cinefractal-0.1.0/cinefractal/docs/images/cyclical.png +0 -0
  18. cinefractal-0.1.0/cinefractal/docs/images/inferno.png +0 -0
  19. cinefractal-0.1.0/cinefractal/docs/images/magma.png +0 -0
  20. cinefractal-0.1.0/cinefractal/docs/images/mandelbrot_continuous.png +0 -0
  21. cinefractal-0.1.0/cinefractal/docs/images/mandelbrot_discrete.png +0 -0
  22. cinefractal-0.1.0/cinefractal/docs/images/mandelbrot_high_strength.png +0 -0
  23. cinefractal-0.1.0/cinefractal/docs/images/mandelbrot_inferno.png +0 -0
  24. cinefractal-0.1.0/cinefractal/docs/images/mandelbrot_no_strength.png +0 -0
  25. cinefractal-0.1.0/cinefractal/docs/images/plasma.png +0 -0
  26. cinefractal-0.1.0/cinefractal/docs/images/tricorn.png +0 -0
  27. cinefractal-0.1.0/cinefractal/docs/images/viridis.png +0 -0
  28. cinefractal-0.1.0/cinefractal/docs/index.md +21 -0
  29. cinefractal-0.1.0/cinefractal/docs/make.bat +35 -0
  30. cinefractal-0.1.0/cinefractal/docs/overview.md +397 -0
  31. cinefractal-0.1.0/cinefractal/python/.gitignore +2 -0
  32. cinefractal-0.1.0/cinefractal/python/iterationfield.py +25 -0
  33. cinefractal-0.1.0/cinefractal/python/julia_autofocus_movie.py +130 -0
  34. cinefractal-0.1.0/cinefractal/python/julia_zoom_movie.py +76 -0
  35. cinefractal-0.1.0/cinefractal/python/mandelbrot.py +30 -0
  36. cinefractal-0.1.0/cinefractal/src/bin/stub_gen.rs +18 -0
  37. cinefractal-0.1.0/cinefractal/src/lib.rs +67 -0
  38. cinefractal-0.1.0/cinefractal/src/py_animation_system.rs +168 -0
  39. cinefractal-0.1.0/cinefractal/src/py_color_system.rs +105 -0
  40. cinefractal-0.1.0/cinefractal/src/py_focal_system.rs +259 -0
  41. cinefractal-0.1.0/cinefractal/src/py_fractal_type.rs +87 -0
  42. cinefractal-0.1.0/cinefractal/src/py_iteration_field_interface.rs +145 -0
  43. cinefractal-0.1.0/fractal_core/Cargo.toml +15 -0
  44. cinefractal-0.1.0/fractal_core/src/animation/animation_system.rs +201 -0
  45. cinefractal-0.1.0/fractal_core/src/animation/interpol_value.rs +91 -0
  46. cinefractal-0.1.0/fractal_core/src/animation/key_frame_system.rs +163 -0
  47. cinefractal-0.1.0/fractal_core/src/animation/key_time.rs +63 -0
  48. cinefractal-0.1.0/fractal_core/src/animation/mod.rs +8 -0
  49. cinefractal-0.1.0/fractal_core/src/focal_system/focal_point.rs +112 -0
  50. cinefractal-0.1.0/fractal_core/src/focal_system/focal_system_interface.rs +194 -0
  51. cinefractal-0.1.0/fractal_core/src/focal_system/mod.rs +7 -0
  52. cinefractal-0.1.0/fractal_core/src/focal_system/quality_evaluator.rs +109 -0
  53. cinefractal-0.1.0/fractal_core/src/iteration_and_color/colorization_system.rs +110 -0
  54. cinefractal-0.1.0/fractal_core/src/iteration_and_color/complex_number.rs +93 -0
  55. cinefractal-0.1.0/fractal_core/src/iteration_and_color/fractal_collection.rs +250 -0
  56. cinefractal-0.1.0/fractal_core/src/iteration_and_color/iteration_field_interface.rs +216 -0
  57. cinefractal-0.1.0/fractal_core/src/iteration_and_color/iteration_system.rs +150 -0
  58. cinefractal-0.1.0/fractal_core/src/iteration_and_color/mod.rs +7 -0
  59. cinefractal-0.1.0/fractal_core/src/lib.rs +4 -0
  60. cinefractal-0.1.0/fractal_core/src/prelude.rs +3 -0
  61. cinefractal-0.1.0/pyproject.toml +28 -0
@@ -0,0 +1,1619 @@
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 = "allocator-api2"
13
+ version = "0.2.21"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
16
+
17
+ [[package]]
18
+ name = "android_system_properties"
19
+ version = "0.1.5"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
22
+ dependencies = [
23
+ "libc",
24
+ ]
25
+
26
+ [[package]]
27
+ name = "anyhow"
28
+ version = "1.0.102"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
31
+
32
+ [[package]]
33
+ name = "autocfg"
34
+ version = "1.5.1"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
37
+
38
+ [[package]]
39
+ name = "bitflags"
40
+ version = "1.3.2"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
43
+
44
+ [[package]]
45
+ name = "bitflags"
46
+ version = "2.11.1"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
49
+
50
+ [[package]]
51
+ name = "bumpalo"
52
+ version = "3.20.3"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
55
+
56
+ [[package]]
57
+ name = "bytemuck"
58
+ version = "1.25.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
61
+
62
+ [[package]]
63
+ name = "byteorder"
64
+ version = "1.5.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
67
+
68
+ [[package]]
69
+ name = "cc"
70
+ version = "1.2.63"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
73
+ dependencies = [
74
+ "find-msvc-tools",
75
+ "shlex",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "cfg-if"
80
+ version = "1.0.4"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
83
+
84
+ [[package]]
85
+ name = "chacha20"
86
+ version = "0.10.0"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
89
+ dependencies = [
90
+ "cfg-if",
91
+ "cpufeatures",
92
+ "rand_core 0.10.1",
93
+ ]
94
+
95
+ [[package]]
96
+ name = "chrono"
97
+ version = "0.4.45"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
100
+ dependencies = [
101
+ "iana-time-zone",
102
+ "js-sys",
103
+ "num-traits",
104
+ "wasm-bindgen",
105
+ "windows-link",
106
+ ]
107
+
108
+ [[package]]
109
+ name = "cinefractal"
110
+ version = "0.1.0"
111
+ dependencies = [
112
+ "fractal_core",
113
+ "ndarray",
114
+ "numpy",
115
+ "pyo3",
116
+ "pyo3-stub-gen",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "color_quant"
121
+ version = "1.1.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
124
+
125
+ [[package]]
126
+ name = "colorous"
127
+ version = "1.0.16"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "e4e18bf7a165bf7028fde98609a0f1e8f7498d762a212598e6c891f6893556ec"
130
+
131
+ [[package]]
132
+ name = "core-foundation-sys"
133
+ version = "0.8.7"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
136
+
137
+ [[package]]
138
+ name = "cpufeatures"
139
+ version = "0.3.0"
140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
141
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
142
+ dependencies = [
143
+ "libc",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "crc32fast"
148
+ version = "1.5.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
151
+ dependencies = [
152
+ "cfg-if",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "crossbeam-deque"
157
+ version = "0.8.6"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
160
+ dependencies = [
161
+ "crossbeam-epoch",
162
+ "crossbeam-utils",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "crossbeam-epoch"
167
+ version = "0.9.18"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
170
+ dependencies = [
171
+ "crossbeam-utils",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "crossbeam-utils"
176
+ version = "0.8.21"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
179
+
180
+ [[package]]
181
+ name = "crunchy"
182
+ version = "0.2.4"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
185
+
186
+ [[package]]
187
+ name = "deranged"
188
+ version = "0.5.8"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
191
+ dependencies = [
192
+ "powerfmt",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "either"
197
+ version = "1.16.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
200
+
201
+ [[package]]
202
+ name = "equivalent"
203
+ version = "1.0.2"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
206
+
207
+ [[package]]
208
+ name = "fdeflate"
209
+ version = "0.3.7"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
212
+ dependencies = [
213
+ "simd-adler32",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "find-msvc-tools"
218
+ version = "0.1.9"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
221
+
222
+ [[package]]
223
+ name = "flate2"
224
+ version = "1.1.9"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
227
+ dependencies = [
228
+ "crc32fast",
229
+ "miniz_oxide",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "foldhash"
234
+ version = "0.1.5"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
237
+
238
+ [[package]]
239
+ name = "fontdue"
240
+ version = "0.9.3"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "2e57e16b3fe8ff4364c0661fdaac543fb38b29ea9bc9c2f45612d90adf931d2b"
243
+ dependencies = [
244
+ "hashbrown 0.15.5",
245
+ "ttf-parser",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "fractal_core"
250
+ version = "0.1.0"
251
+ dependencies = [
252
+ "colorous",
253
+ "itertools 0.14.0",
254
+ "ndarray",
255
+ "rand 0.10.1",
256
+ "rayon",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "fractal_viz"
261
+ version = "0.1.0"
262
+ dependencies = [
263
+ "fractal_core",
264
+ "macroquad",
265
+ "ndarray",
266
+ ]
267
+
268
+ [[package]]
269
+ name = "futures-core"
270
+ version = "0.3.32"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
273
+
274
+ [[package]]
275
+ name = "futures-task"
276
+ version = "0.3.32"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
279
+
280
+ [[package]]
281
+ name = "futures-util"
282
+ version = "0.3.32"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
285
+ dependencies = [
286
+ "futures-core",
287
+ "futures-task",
288
+ "pin-project-lite",
289
+ "slab",
290
+ ]
291
+
292
+ [[package]]
293
+ name = "getopts"
294
+ version = "0.2.24"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
297
+ dependencies = [
298
+ "unicode-width",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "getrandom"
303
+ version = "0.2.17"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
306
+ dependencies = [
307
+ "cfg-if",
308
+ "libc",
309
+ "wasi",
310
+ ]
311
+
312
+ [[package]]
313
+ name = "getrandom"
314
+ version = "0.4.2"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
317
+ dependencies = [
318
+ "cfg-if",
319
+ "libc",
320
+ "r-efi",
321
+ "rand_core 0.10.1",
322
+ "wasip2",
323
+ "wasip3",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "glam"
328
+ version = "0.27.0"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
331
+
332
+ [[package]]
333
+ name = "hashbrown"
334
+ version = "0.15.5"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
337
+ dependencies = [
338
+ "allocator-api2",
339
+ "equivalent",
340
+ "foldhash",
341
+ ]
342
+
343
+ [[package]]
344
+ name = "hashbrown"
345
+ version = "0.17.1"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
348
+
349
+ [[package]]
350
+ name = "heck"
351
+ version = "0.5.0"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
354
+
355
+ [[package]]
356
+ name = "iana-time-zone"
357
+ version = "0.1.65"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
360
+ dependencies = [
361
+ "android_system_properties",
362
+ "core-foundation-sys",
363
+ "iana-time-zone-haiku",
364
+ "js-sys",
365
+ "log",
366
+ "wasm-bindgen",
367
+ "windows-core",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "iana-time-zone-haiku"
372
+ version = "0.1.2"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
375
+ dependencies = [
376
+ "cc",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "id-arena"
381
+ version = "2.3.0"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
384
+
385
+ [[package]]
386
+ name = "image"
387
+ version = "0.24.9"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "5690139d2f55868e080017335e4b94cb7414274c74f1669c84fb5feba2c9f69d"
390
+ dependencies = [
391
+ "bytemuck",
392
+ "byteorder",
393
+ "color_quant",
394
+ "num-traits",
395
+ "png",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "indexmap"
400
+ version = "2.14.0"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
403
+ dependencies = [
404
+ "equivalent",
405
+ "hashbrown 0.17.1",
406
+ "serde",
407
+ "serde_core",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "inventory"
412
+ version = "0.3.24"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
415
+ dependencies = [
416
+ "rustversion",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "is-macro"
421
+ version = "0.3.7"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
424
+ dependencies = [
425
+ "heck",
426
+ "proc-macro2",
427
+ "quote",
428
+ "syn",
429
+ ]
430
+
431
+ [[package]]
432
+ name = "itertools"
433
+ version = "0.11.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
436
+ dependencies = [
437
+ "either",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "itertools"
442
+ version = "0.14.0"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
445
+ dependencies = [
446
+ "either",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "itoa"
451
+ version = "1.0.18"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
454
+
455
+ [[package]]
456
+ name = "js-sys"
457
+ version = "0.3.99"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
460
+ dependencies = [
461
+ "cfg-if",
462
+ "futures-util",
463
+ "once_cell",
464
+ "wasm-bindgen",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "lalrpop-util"
469
+ version = "0.20.2"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "507460a910eb7b32ee961886ff48539633b788a36b65692b95f225b844c82553"
472
+
473
+ [[package]]
474
+ name = "leb128fmt"
475
+ version = "0.1.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
478
+
479
+ [[package]]
480
+ name = "libc"
481
+ version = "0.2.186"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
484
+
485
+ [[package]]
486
+ name = "log"
487
+ version = "0.4.30"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
490
+
491
+ [[package]]
492
+ name = "macroquad"
493
+ version = "0.4.15"
494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
495
+ checksum = "41f7d60318b52b19e909db1f01c522977da28a5e515127a73ecd8b7488498edb"
496
+ dependencies = [
497
+ "fontdue",
498
+ "glam",
499
+ "image",
500
+ "macroquad_macro",
501
+ "miniquad",
502
+ "quad-rand",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "macroquad_macro"
507
+ version = "0.1.8"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "64b1d96218903768c1ce078b657c0d5965465c95a60d2682fd97443c9d2483dd"
510
+
511
+ [[package]]
512
+ name = "malloc_buf"
513
+ version = "0.0.6"
514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
515
+ checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
516
+ dependencies = [
517
+ "libc",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "maplit"
522
+ version = "1.0.2"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
525
+
526
+ [[package]]
527
+ name = "matrixmultiply"
528
+ version = "0.3.10"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
531
+ dependencies = [
532
+ "autocfg",
533
+ "rawpointer",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "memchr"
538
+ version = "2.8.1"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
541
+
542
+ [[package]]
543
+ name = "miniquad"
544
+ version = "0.4.10"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "2f64fd94ff70fdc425766c78a3fa9f263d02cb25725a49f255f6a66d8a186c3f"
547
+ dependencies = [
548
+ "libc",
549
+ "ndk-sys",
550
+ "objc-rs",
551
+ "winapi",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "miniz_oxide"
556
+ version = "0.8.9"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
559
+ dependencies = [
560
+ "adler2",
561
+ "simd-adler32",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "ndarray"
566
+ version = "0.17.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
569
+ dependencies = [
570
+ "matrixmultiply",
571
+ "num-complex",
572
+ "num-integer",
573
+ "num-traits",
574
+ "portable-atomic",
575
+ "portable-atomic-util",
576
+ "rawpointer",
577
+ ]
578
+
579
+ [[package]]
580
+ name = "ndk-sys"
581
+ version = "0.2.2"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "e1bcdd74c20ad5d95aacd60ef9ba40fdf77f767051040541df557b7a9b2a2121"
584
+
585
+ [[package]]
586
+ name = "num-bigint"
587
+ version = "0.4.6"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
590
+ dependencies = [
591
+ "num-integer",
592
+ "num-traits",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "num-complex"
597
+ version = "0.4.6"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
600
+ dependencies = [
601
+ "num-traits",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "num-conv"
606
+ version = "0.2.2"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
609
+
610
+ [[package]]
611
+ name = "num-integer"
612
+ version = "0.1.46"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
615
+ dependencies = [
616
+ "num-traits",
617
+ ]
618
+
619
+ [[package]]
620
+ name = "num-traits"
621
+ version = "0.2.19"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
624
+ dependencies = [
625
+ "autocfg",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "numpy"
630
+ version = "0.28.0"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
633
+ dependencies = [
634
+ "libc",
635
+ "ndarray",
636
+ "num-complex",
637
+ "num-integer",
638
+ "num-traits",
639
+ "pyo3",
640
+ "pyo3-build-config",
641
+ "rustc-hash 2.1.2",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "objc-rs"
646
+ version = "0.2.8"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "64a1e7069a2525126bf12a9f1f7916835fafade384fb27cabf698e745e2a1eb8"
649
+ dependencies = [
650
+ "malloc_buf",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "once_cell"
655
+ version = "1.21.4"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
658
+
659
+ [[package]]
660
+ name = "ordered-float"
661
+ version = "5.3.0"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
664
+ dependencies = [
665
+ "num-traits",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "phf"
670
+ version = "0.11.3"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
673
+ dependencies = [
674
+ "phf_shared",
675
+ ]
676
+
677
+ [[package]]
678
+ name = "phf_codegen"
679
+ version = "0.11.3"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
682
+ dependencies = [
683
+ "phf_generator",
684
+ "phf_shared",
685
+ ]
686
+
687
+ [[package]]
688
+ name = "phf_generator"
689
+ version = "0.11.3"
690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
691
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
692
+ dependencies = [
693
+ "phf_shared",
694
+ "rand 0.8.6",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "phf_shared"
699
+ version = "0.11.3"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
702
+ dependencies = [
703
+ "siphasher",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "pin-project-lite"
708
+ version = "0.2.17"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
711
+
712
+ [[package]]
713
+ name = "png"
714
+ version = "0.17.16"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526"
717
+ dependencies = [
718
+ "bitflags 1.3.2",
719
+ "crc32fast",
720
+ "fdeflate",
721
+ "flate2",
722
+ "miniz_oxide",
723
+ ]
724
+
725
+ [[package]]
726
+ name = "portable-atomic"
727
+ version = "1.13.1"
728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
729
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
730
+
731
+ [[package]]
732
+ name = "portable-atomic-util"
733
+ version = "0.2.7"
734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
735
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
736
+ dependencies = [
737
+ "portable-atomic",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "powerfmt"
742
+ version = "0.2.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
745
+
746
+ [[package]]
747
+ name = "ppv-lite86"
748
+ version = "0.2.21"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
751
+ dependencies = [
752
+ "zerocopy",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "prettyplease"
757
+ version = "0.2.37"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
760
+ dependencies = [
761
+ "proc-macro2",
762
+ "syn",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "proc-macro2"
767
+ version = "1.0.106"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
770
+ dependencies = [
771
+ "unicode-ident",
772
+ ]
773
+
774
+ [[package]]
775
+ name = "pyo3"
776
+ version = "0.28.3"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
779
+ dependencies = [
780
+ "libc",
781
+ "once_cell",
782
+ "portable-atomic",
783
+ "pyo3-build-config",
784
+ "pyo3-ffi",
785
+ "pyo3-macros",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "pyo3-build-config"
790
+ version = "0.28.3"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
793
+ dependencies = [
794
+ "target-lexicon",
795
+ ]
796
+
797
+ [[package]]
798
+ name = "pyo3-ffi"
799
+ version = "0.28.3"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
802
+ dependencies = [
803
+ "libc",
804
+ "pyo3-build-config",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "pyo3-macros"
809
+ version = "0.28.3"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
812
+ dependencies = [
813
+ "proc-macro2",
814
+ "pyo3-macros-backend",
815
+ "quote",
816
+ "syn",
817
+ ]
818
+
819
+ [[package]]
820
+ name = "pyo3-macros-backend"
821
+ version = "0.28.3"
822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
823
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
824
+ dependencies = [
825
+ "heck",
826
+ "proc-macro2",
827
+ "pyo3-build-config",
828
+ "quote",
829
+ "syn",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "pyo3-stub-gen"
834
+ version = "0.22.3"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "1242a6080f45edcfaf3be3b9968914dd47a408c5590aea22770b978f7c36ffa7"
837
+ dependencies = [
838
+ "anyhow",
839
+ "chrono",
840
+ "either",
841
+ "indexmap",
842
+ "inventory",
843
+ "itertools 0.14.0",
844
+ "log",
845
+ "maplit",
846
+ "num-complex",
847
+ "numpy",
848
+ "ordered-float",
849
+ "pyo3",
850
+ "pyo3-stub-gen-derive",
851
+ "rustpython-parser",
852
+ "serde",
853
+ "serde_json",
854
+ "time",
855
+ "toml",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "pyo3-stub-gen-derive"
860
+ version = "0.22.3"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "fd9a73abe6f57890e657c265b86805637138f83203e1a56bc156078abf215e36"
863
+ dependencies = [
864
+ "heck",
865
+ "indexmap",
866
+ "proc-macro2",
867
+ "quote",
868
+ "rustpython-parser",
869
+ "syn",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "quad-rand"
874
+ version = "0.2.3"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "5a651516ddc9168ebd67b24afd085a718be02f8858fe406591b013d101ce2f40"
877
+
878
+ [[package]]
879
+ name = "quote"
880
+ version = "1.0.45"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
883
+ dependencies = [
884
+ "proc-macro2",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "r-efi"
889
+ version = "6.0.0"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
892
+
893
+ [[package]]
894
+ name = "rand"
895
+ version = "0.8.6"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
898
+ dependencies = [
899
+ "libc",
900
+ "rand_chacha",
901
+ "rand_core 0.6.4",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "rand"
906
+ version = "0.10.1"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
909
+ dependencies = [
910
+ "chacha20",
911
+ "getrandom 0.4.2",
912
+ "rand_core 0.10.1",
913
+ ]
914
+
915
+ [[package]]
916
+ name = "rand_chacha"
917
+ version = "0.3.1"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
920
+ dependencies = [
921
+ "ppv-lite86",
922
+ "rand_core 0.6.4",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "rand_core"
927
+ version = "0.6.4"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
930
+ dependencies = [
931
+ "getrandom 0.2.17",
932
+ ]
933
+
934
+ [[package]]
935
+ name = "rand_core"
936
+ version = "0.10.1"
937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
938
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
939
+
940
+ [[package]]
941
+ name = "rawpointer"
942
+ version = "0.2.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
945
+
946
+ [[package]]
947
+ name = "rayon"
948
+ version = "1.12.0"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
951
+ dependencies = [
952
+ "either",
953
+ "rayon-core",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "rayon-core"
958
+ version = "1.13.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
961
+ dependencies = [
962
+ "crossbeam-deque",
963
+ "crossbeam-utils",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "rustc-hash"
968
+ version = "1.1.0"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
971
+
972
+ [[package]]
973
+ name = "rustc-hash"
974
+ version = "2.1.2"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
977
+
978
+ [[package]]
979
+ name = "rustpython-ast"
980
+ version = "0.4.0"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "4cdaf8ee5c1473b993b398c174641d3aa9da847af36e8d5eb8291930b72f31a5"
983
+ dependencies = [
984
+ "is-macro",
985
+ "num-bigint",
986
+ "rustpython-parser-core",
987
+ "static_assertions",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "rustpython-parser"
992
+ version = "0.4.0"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "868f724daac0caf9bd36d38caf45819905193a901e8f1c983345a68e18fb2abb"
995
+ dependencies = [
996
+ "anyhow",
997
+ "is-macro",
998
+ "itertools 0.11.0",
999
+ "lalrpop-util",
1000
+ "log",
1001
+ "num-bigint",
1002
+ "num-traits",
1003
+ "phf",
1004
+ "phf_codegen",
1005
+ "rustc-hash 1.1.0",
1006
+ "rustpython-ast",
1007
+ "rustpython-parser-core",
1008
+ "tiny-keccak",
1009
+ "unic-emoji-char",
1010
+ "unic-ucd-ident",
1011
+ "unicode_names2",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "rustpython-parser-core"
1016
+ version = "0.4.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "b4b6c12fa273825edc7bccd9a734f0ad5ba4b8a2f4da5ff7efe946f066d0f4ad"
1019
+ dependencies = [
1020
+ "is-macro",
1021
+ "memchr",
1022
+ "rustpython-parser-vendored",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "rustpython-parser-vendored"
1027
+ version = "0.4.0"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "04fcea49a4630a3a5d940f4d514dc4f575ed63c14c3e3ed07146634aed7f67a6"
1030
+ dependencies = [
1031
+ "memchr",
1032
+ "once_cell",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "rustversion"
1037
+ version = "1.0.22"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1040
+
1041
+ [[package]]
1042
+ name = "semver"
1043
+ version = "1.0.28"
1044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1045
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1046
+
1047
+ [[package]]
1048
+ name = "serde"
1049
+ version = "1.0.228"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1052
+ dependencies = [
1053
+ "serde_core",
1054
+ "serde_derive",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "serde_core"
1059
+ version = "1.0.228"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1062
+ dependencies = [
1063
+ "serde_derive",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "serde_derive"
1068
+ version = "1.0.228"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1071
+ dependencies = [
1072
+ "proc-macro2",
1073
+ "quote",
1074
+ "syn",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "serde_json"
1079
+ version = "1.0.150"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1082
+ dependencies = [
1083
+ "itoa",
1084
+ "memchr",
1085
+ "serde",
1086
+ "serde_core",
1087
+ "zmij",
1088
+ ]
1089
+
1090
+ [[package]]
1091
+ name = "serde_spanned"
1092
+ version = "1.1.1"
1093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1094
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1095
+ dependencies = [
1096
+ "serde_core",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "shlex"
1101
+ version = "2.0.1"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1104
+
1105
+ [[package]]
1106
+ name = "simd-adler32"
1107
+ version = "0.3.9"
1108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1109
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1110
+
1111
+ [[package]]
1112
+ name = "siphasher"
1113
+ version = "1.0.3"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
1116
+
1117
+ [[package]]
1118
+ name = "slab"
1119
+ version = "0.4.12"
1120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1121
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1122
+
1123
+ [[package]]
1124
+ name = "static_assertions"
1125
+ version = "1.1.0"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1128
+
1129
+ [[package]]
1130
+ name = "syn"
1131
+ version = "2.0.117"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1134
+ dependencies = [
1135
+ "proc-macro2",
1136
+ "quote",
1137
+ "unicode-ident",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "target-lexicon"
1142
+ version = "0.13.5"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1145
+
1146
+ [[package]]
1147
+ name = "time"
1148
+ version = "0.3.47"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1151
+ dependencies = [
1152
+ "deranged",
1153
+ "num-conv",
1154
+ "powerfmt",
1155
+ "serde_core",
1156
+ "time-core",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "time-core"
1161
+ version = "0.1.8"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1164
+
1165
+ [[package]]
1166
+ name = "tiny-keccak"
1167
+ version = "2.0.2"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
1170
+ dependencies = [
1171
+ "crunchy",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "toml"
1176
+ version = "1.1.2+spec-1.1.0"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "81f3d15e84cbcd896376e6730314d59fb5a87f31e4b038454184435cd57defee"
1179
+ dependencies = [
1180
+ "indexmap",
1181
+ "serde_core",
1182
+ "serde_spanned",
1183
+ "toml_datetime",
1184
+ "toml_parser",
1185
+ "toml_writer",
1186
+ "winnow",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "toml_datetime"
1191
+ version = "1.1.1+spec-1.1.0"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
1194
+ dependencies = [
1195
+ "serde_core",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "toml_parser"
1200
+ version = "1.1.2+spec-1.1.0"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1203
+ dependencies = [
1204
+ "winnow",
1205
+ ]
1206
+
1207
+ [[package]]
1208
+ name = "toml_writer"
1209
+ version = "1.1.1+spec-1.1.0"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1212
+
1213
+ [[package]]
1214
+ name = "ttf-parser"
1215
+ version = "0.21.1"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
1218
+
1219
+ [[package]]
1220
+ name = "unic-char-property"
1221
+ version = "0.9.0"
1222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1223
+ checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221"
1224
+ dependencies = [
1225
+ "unic-char-range",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "unic-char-range"
1230
+ version = "0.9.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc"
1233
+
1234
+ [[package]]
1235
+ name = "unic-common"
1236
+ version = "0.9.0"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc"
1239
+
1240
+ [[package]]
1241
+ name = "unic-emoji-char"
1242
+ version = "0.9.0"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "0b07221e68897210270a38bde4babb655869637af0f69407f96053a34f76494d"
1245
+ dependencies = [
1246
+ "unic-char-property",
1247
+ "unic-char-range",
1248
+ "unic-ucd-version",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "unic-ucd-ident"
1253
+ version = "0.9.0"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987"
1256
+ dependencies = [
1257
+ "unic-char-property",
1258
+ "unic-char-range",
1259
+ "unic-ucd-version",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "unic-ucd-version"
1264
+ version = "0.9.0"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4"
1267
+ dependencies = [
1268
+ "unic-common",
1269
+ ]
1270
+
1271
+ [[package]]
1272
+ name = "unicode-ident"
1273
+ version = "1.0.24"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1276
+
1277
+ [[package]]
1278
+ name = "unicode-width"
1279
+ version = "0.2.2"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1282
+
1283
+ [[package]]
1284
+ name = "unicode-xid"
1285
+ version = "0.2.6"
1286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1287
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1288
+
1289
+ [[package]]
1290
+ name = "unicode_names2"
1291
+ version = "1.3.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "d1673eca9782c84de5f81b82e4109dcfb3611c8ba0d52930ec4a9478f547b2dd"
1294
+ dependencies = [
1295
+ "phf",
1296
+ "unicode_names2_generator",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "unicode_names2_generator"
1301
+ version = "1.3.0"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "b91e5b84611016120197efd7dc93ef76774f4e084cd73c9fb3ea4a86c570c56e"
1304
+ dependencies = [
1305
+ "getopts",
1306
+ "log",
1307
+ "phf_codegen",
1308
+ "rand 0.8.6",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "wasi"
1313
+ version = "0.11.1+wasi-snapshot-preview1"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1316
+
1317
+ [[package]]
1318
+ name = "wasip2"
1319
+ version = "1.0.3+wasi-0.2.9"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1322
+ dependencies = [
1323
+ "wit-bindgen 0.57.1",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "wasip3"
1328
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1331
+ dependencies = [
1332
+ "wit-bindgen 0.51.0",
1333
+ ]
1334
+
1335
+ [[package]]
1336
+ name = "wasm-bindgen"
1337
+ version = "0.2.122"
1338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1339
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1340
+ dependencies = [
1341
+ "cfg-if",
1342
+ "once_cell",
1343
+ "rustversion",
1344
+ "wasm-bindgen-macro",
1345
+ "wasm-bindgen-shared",
1346
+ ]
1347
+
1348
+ [[package]]
1349
+ name = "wasm-bindgen-macro"
1350
+ version = "0.2.122"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1353
+ dependencies = [
1354
+ "quote",
1355
+ "wasm-bindgen-macro-support",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "wasm-bindgen-macro-support"
1360
+ version = "0.2.122"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1363
+ dependencies = [
1364
+ "bumpalo",
1365
+ "proc-macro2",
1366
+ "quote",
1367
+ "syn",
1368
+ "wasm-bindgen-shared",
1369
+ ]
1370
+
1371
+ [[package]]
1372
+ name = "wasm-bindgen-shared"
1373
+ version = "0.2.122"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1376
+ dependencies = [
1377
+ "unicode-ident",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "wasm-encoder"
1382
+ version = "0.244.0"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1385
+ dependencies = [
1386
+ "leb128fmt",
1387
+ "wasmparser",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "wasm-metadata"
1392
+ version = "0.244.0"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1395
+ dependencies = [
1396
+ "anyhow",
1397
+ "indexmap",
1398
+ "wasm-encoder",
1399
+ "wasmparser",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "wasmparser"
1404
+ version = "0.244.0"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1407
+ dependencies = [
1408
+ "bitflags 2.11.1",
1409
+ "hashbrown 0.15.5",
1410
+ "indexmap",
1411
+ "semver",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "winapi"
1416
+ version = "0.3.9"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1419
+ dependencies = [
1420
+ "winapi-i686-pc-windows-gnu",
1421
+ "winapi-x86_64-pc-windows-gnu",
1422
+ ]
1423
+
1424
+ [[package]]
1425
+ name = "winapi-i686-pc-windows-gnu"
1426
+ version = "0.4.0"
1427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1428
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1429
+
1430
+ [[package]]
1431
+ name = "winapi-x86_64-pc-windows-gnu"
1432
+ version = "0.4.0"
1433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1434
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1435
+
1436
+ [[package]]
1437
+ name = "windows-core"
1438
+ version = "0.62.2"
1439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1440
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1441
+ dependencies = [
1442
+ "windows-implement",
1443
+ "windows-interface",
1444
+ "windows-link",
1445
+ "windows-result",
1446
+ "windows-strings",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "windows-implement"
1451
+ version = "0.60.2"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1454
+ dependencies = [
1455
+ "proc-macro2",
1456
+ "quote",
1457
+ "syn",
1458
+ ]
1459
+
1460
+ [[package]]
1461
+ name = "windows-interface"
1462
+ version = "0.59.3"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1465
+ dependencies = [
1466
+ "proc-macro2",
1467
+ "quote",
1468
+ "syn",
1469
+ ]
1470
+
1471
+ [[package]]
1472
+ name = "windows-link"
1473
+ version = "0.2.1"
1474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1475
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1476
+
1477
+ [[package]]
1478
+ name = "windows-result"
1479
+ version = "0.4.1"
1480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1481
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1482
+ dependencies = [
1483
+ "windows-link",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "windows-strings"
1488
+ version = "0.5.1"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1491
+ dependencies = [
1492
+ "windows-link",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "winnow"
1497
+ version = "1.0.3"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
1500
+
1501
+ [[package]]
1502
+ name = "wit-bindgen"
1503
+ version = "0.51.0"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1506
+ dependencies = [
1507
+ "wit-bindgen-rust-macro",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "wit-bindgen"
1512
+ version = "0.57.1"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1515
+
1516
+ [[package]]
1517
+ name = "wit-bindgen-core"
1518
+ version = "0.51.0"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1521
+ dependencies = [
1522
+ "anyhow",
1523
+ "heck",
1524
+ "wit-parser",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "wit-bindgen-rust"
1529
+ version = "0.51.0"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1532
+ dependencies = [
1533
+ "anyhow",
1534
+ "heck",
1535
+ "indexmap",
1536
+ "prettyplease",
1537
+ "syn",
1538
+ "wasm-metadata",
1539
+ "wit-bindgen-core",
1540
+ "wit-component",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "wit-bindgen-rust-macro"
1545
+ version = "0.51.0"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1548
+ dependencies = [
1549
+ "anyhow",
1550
+ "prettyplease",
1551
+ "proc-macro2",
1552
+ "quote",
1553
+ "syn",
1554
+ "wit-bindgen-core",
1555
+ "wit-bindgen-rust",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "wit-component"
1560
+ version = "0.244.0"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1563
+ dependencies = [
1564
+ "anyhow",
1565
+ "bitflags 2.11.1",
1566
+ "indexmap",
1567
+ "log",
1568
+ "serde",
1569
+ "serde_derive",
1570
+ "serde_json",
1571
+ "wasm-encoder",
1572
+ "wasm-metadata",
1573
+ "wasmparser",
1574
+ "wit-parser",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "wit-parser"
1579
+ version = "0.244.0"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1582
+ dependencies = [
1583
+ "anyhow",
1584
+ "id-arena",
1585
+ "indexmap",
1586
+ "log",
1587
+ "semver",
1588
+ "serde",
1589
+ "serde_derive",
1590
+ "serde_json",
1591
+ "unicode-xid",
1592
+ "wasmparser",
1593
+ ]
1594
+
1595
+ [[package]]
1596
+ name = "zerocopy"
1597
+ version = "0.8.50"
1598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1599
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
1600
+ dependencies = [
1601
+ "zerocopy-derive",
1602
+ ]
1603
+
1604
+ [[package]]
1605
+ name = "zerocopy-derive"
1606
+ version = "0.8.50"
1607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1608
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
1609
+ dependencies = [
1610
+ "proc-macro2",
1611
+ "quote",
1612
+ "syn",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "zmij"
1617
+ version = "1.0.21"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"