mefikit 0.1.2__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 (84) hide show
  1. mefikit-0.1.2/Cargo.lock +1883 -0
  2. mefikit-0.1.2/Cargo.toml +51 -0
  3. mefikit-0.1.2/LICENSE-APACHE +202 -0
  4. mefikit-0.1.2/LICENSE-MIT +19 -0
  5. mefikit-0.1.2/PKG-INFO +318 -0
  6. mefikit-0.1.2/README.md +289 -0
  7. mefikit-0.1.2/crates/mefikit/Cargo.toml +82 -0
  8. mefikit-0.1.2/crates/mefikit/README.md +289 -0
  9. mefikit-0.1.2/crates/mefikit/benches/crack.rs +30 -0
  10. mefikit-0.1.2/crates/mefikit/benches/measure.rs +28 -0
  11. mefikit-0.1.2/crates/mefikit/benches/merge_nodes.rs +29 -0
  12. mefikit-0.1.2/crates/mefikit/benches/neighbours.rs +72 -0
  13. mefikit-0.1.2/crates/mefikit/benches/select.rs +24 -0
  14. mefikit-0.1.2/crates/mefikit/benches/snap.rs +32 -0
  15. mefikit-0.1.2/crates/mefikit/benches/snap_order.rs +28 -0
  16. mefikit-0.1.2/crates/mefikit/benches/submesh_analytics.rs +33 -0
  17. mefikit-0.1.2/crates/mefikit/examples/bubbles.rs +65 -0
  18. mefikit-0.1.2/crates/mefikit/examples/compute_submesh.rs +23 -0
  19. mefikit-0.1.2/crates/mefikit/examples/crack.rs +36 -0
  20. mefikit-0.1.2/crates/mefikit/examples/debug.rs +13 -0
  21. mefikit-0.1.2/crates/mefikit/examples/measure.rs +22 -0
  22. mefikit-0.1.2/crates/mefikit/examples/merge_nodes.rs +28 -0
  23. mefikit-0.1.2/crates/mefikit/examples/selection.rs +23 -0
  24. mefikit-0.1.2/crates/mefikit/examples/snap.rs +28 -0
  25. mefikit-0.1.2/crates/mefikit/examples/write_mesh.rs +108 -0
  26. mefikit-0.1.2/crates/mefikit/proptest-regressions/element_traits/seg_intersect.txt +9 -0
  27. mefikit-0.1.2/crates/mefikit/proptest-regressions/element_traits/seg_intersect2.txt +8 -0
  28. mefikit-0.1.2/crates/mefikit/src/element_traits/element_geo.rs +120 -0
  29. mefikit-0.1.2/crates/mefikit/src/element_traits/element_topo.rs +206 -0
  30. mefikit-0.1.2/crates/mefikit/src/element_traits/is_in.rs +719 -0
  31. mefikit-0.1.2/crates/mefikit/src/element_traits/measures.rs +97 -0
  32. mefikit-0.1.2/crates/mefikit/src/element_traits/mod.rs +12 -0
  33. mefikit-0.1.2/crates/mefikit/src/element_traits/seg_intersect.rs +374 -0
  34. mefikit-0.1.2/crates/mefikit/src/element_traits/symmetry.rs +59 -0
  35. mefikit-0.1.2/crates/mefikit/src/element_traits/utils.rs +35 -0
  36. mefikit-0.1.2/crates/mefikit/src/io/mod.rs +37 -0
  37. mefikit-0.1.2/crates/mefikit/src/io/serde_io.rs +27 -0
  38. mefikit-0.1.2/crates/mefikit/src/io/vtk_io.rs +178 -0
  39. mefikit-0.1.2/crates/mefikit/src/lib.rs +242 -0
  40. mefikit-0.1.2/crates/mefikit/src/mesh/README.md +231 -0
  41. mefikit-0.1.2/crates/mefikit/src/mesh/connectivity.rs +218 -0
  42. mefikit-0.1.2/crates/mefikit/src/mesh/dimension.rs +82 -0
  43. mefikit-0.1.2/crates/mefikit/src/mesh/element.rs +518 -0
  44. mefikit-0.1.2/crates/mefikit/src/mesh/element_block.rs +352 -0
  45. mefikit-0.1.2/crates/mefikit/src/mesh/element_ids.rs +131 -0
  46. mefikit-0.1.2/crates/mefikit/src/mesh/element_ids_set.rs +187 -0
  47. mefikit-0.1.2/crates/mefikit/src/mesh/fields.rs +351 -0
  48. mefikit-0.1.2/crates/mefikit/src/mesh/indirect_index.rs +326 -0
  49. mefikit-0.1.2/crates/mefikit/src/mesh/mod.rs +24 -0
  50. mefikit-0.1.2/crates/mefikit/src/mesh/umesh.rs +715 -0
  51. mefikit-0.1.2/crates/mefikit/src/mesh_examples.rs +66 -0
  52. mefikit-0.1.2/crates/mefikit/src/tools/README.md +129 -0
  53. mefikit-0.1.2/crates/mefikit/src/tools/connected_components.rs +48 -0
  54. mefikit-0.1.2/crates/mefikit/src/tools/crack.rs +125 -0
  55. mefikit-0.1.2/crates/mefikit/src/tools/delaunay.rs +2 -0
  56. mefikit-0.1.2/crates/mefikit/src/tools/extrude.rs +391 -0
  57. mefikit-0.1.2/crates/mefikit/src/tools/fieldexpr.rs +301 -0
  58. mefikit-0.1.2/crates/mefikit/src/tools/grid.rs +239 -0
  59. mefikit-0.1.2/crates/mefikit/src/tools/intersect.rs +136 -0
  60. mefikit-0.1.2/crates/mefikit/src/tools/measure.rs +72 -0
  61. mefikit-0.1.2/crates/mefikit/src/tools/mod.rs +73 -0
  62. mefikit-0.1.2/crates/mefikit/src/tools/neighbours.rs +418 -0
  63. mefikit-0.1.2/crates/mefikit/src/tools/polyze.rs +3 -0
  64. mefikit-0.1.2/crates/mefikit/src/tools/selector/centroid.rs +93 -0
  65. mefikit-0.1.2/crates/mefikit/src/tools/selector/element.rs +40 -0
  66. mefikit-0.1.2/crates/mefikit/src/tools/selector/field.rs +42 -0
  67. mefikit-0.1.2/crates/mefikit/src/tools/selector/group.rs +32 -0
  68. mefikit-0.1.2/crates/mefikit/src/tools/selector/mod.rs +9 -0
  69. mefikit-0.1.2/crates/mefikit/src/tools/selector/node.rs +200 -0
  70. mefikit-0.1.2/crates/mefikit/src/tools/selector/selection.rs +475 -0
  71. mefikit-0.1.2/crates/mefikit/src/tools/simplexize.rs +1 -0
  72. mefikit-0.1.2/crates/mefikit/src/tools/slice.rs +2 -0
  73. mefikit-0.1.2/crates/mefikit/src/tools/snap.rs +156 -0
  74. mefikit-0.1.2/crates/mefikit-py/Cargo.toml +21 -0
  75. mefikit-0.1.2/crates/mefikit-py/src/element.rs +46 -0
  76. mefikit-0.1.2/crates/mefikit-py/src/element_ids.rs +53 -0
  77. mefikit-0.1.2/crates/mefikit-py/src/lib.rs +42 -0
  78. mefikit-0.1.2/crates/mefikit-py/src/pyfield.rs +147 -0
  79. mefikit-0.1.2/crates/mefikit-py/src/pyumesh.rs +287 -0
  80. mefikit-0.1.2/crates/mefikit-py/src/select.rs +131 -0
  81. mefikit-0.1.2/pyproject.toml +50 -0
  82. mefikit-0.1.2/src/mefikit/__init__.py +16 -0
  83. mefikit-0.1.2/src/mefikit/data.py +32 -0
  84. mefikit-0.1.2/src/mefikit/io.py +214 -0
@@ -0,0 +1,1883 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloca"
22
+ version = "0.4.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
25
+ dependencies = [
26
+ "cc",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "anes"
31
+ version = "0.1.6"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anyhow"
43
+ version = "1.0.102"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
46
+
47
+ [[package]]
48
+ name = "approx"
49
+ version = "0.5.1"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
52
+ dependencies = [
53
+ "num-traits",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "arrayvec"
58
+ version = "0.7.6"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
61
+
62
+ [[package]]
63
+ name = "autocfg"
64
+ version = "1.5.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
67
+
68
+ [[package]]
69
+ name = "base64"
70
+ version = "0.22.1"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
73
+
74
+ [[package]]
75
+ name = "bincode"
76
+ version = "1.3.3"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
79
+ dependencies = [
80
+ "serde",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "bit-set"
85
+ version = "0.8.0"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
88
+ dependencies = [
89
+ "bit-vec",
90
+ ]
91
+
92
+ [[package]]
93
+ name = "bit-vec"
94
+ version = "0.8.0"
95
+ source = "registry+https://github.com/rust-lang/crates.io-index"
96
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
97
+
98
+ [[package]]
99
+ name = "bitflags"
100
+ version = "2.11.1"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
103
+
104
+ [[package]]
105
+ name = "bumpalo"
106
+ version = "3.20.2"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
109
+
110
+ [[package]]
111
+ name = "bytemuck"
112
+ version = "1.25.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
115
+
116
+ [[package]]
117
+ name = "byteorder"
118
+ version = "1.5.0"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
121
+
122
+ [[package]]
123
+ name = "cast"
124
+ version = "0.3.0"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
127
+
128
+ [[package]]
129
+ name = "cc"
130
+ version = "1.2.60"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "43c5703da9466b66a946814e1adf53ea2c90f10063b86290cc9eb67ce3478a20"
133
+ dependencies = [
134
+ "find-msvc-tools",
135
+ "shlex",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "cfg-if"
140
+ version = "1.0.4"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
143
+
144
+ [[package]]
145
+ name = "ciborium"
146
+ version = "0.2.2"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
149
+ dependencies = [
150
+ "ciborium-io",
151
+ "ciborium-ll",
152
+ "serde",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "ciborium-io"
157
+ version = "0.2.2"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
160
+
161
+ [[package]]
162
+ name = "ciborium-ll"
163
+ version = "0.2.2"
164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
165
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
166
+ dependencies = [
167
+ "ciborium-io",
168
+ "half",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "clap"
173
+ version = "4.6.1"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
176
+ dependencies = [
177
+ "clap_builder",
178
+ ]
179
+
180
+ [[package]]
181
+ name = "clap_builder"
182
+ version = "4.6.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
185
+ dependencies = [
186
+ "anstyle",
187
+ "clap_lex",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "clap_lex"
192
+ version = "1.1.0"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
195
+
196
+ [[package]]
197
+ name = "crc32fast"
198
+ version = "1.5.0"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
201
+ dependencies = [
202
+ "cfg-if",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "criterion"
207
+ version = "0.8.2"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
210
+ dependencies = [
211
+ "alloca",
212
+ "anes",
213
+ "cast",
214
+ "ciborium",
215
+ "clap",
216
+ "criterion-plot",
217
+ "itertools 0.13.0",
218
+ "num-traits",
219
+ "oorandom",
220
+ "page_size",
221
+ "plotters",
222
+ "rayon",
223
+ "regex",
224
+ "serde",
225
+ "serde_json",
226
+ "tinytemplate",
227
+ "walkdir",
228
+ ]
229
+
230
+ [[package]]
231
+ name = "criterion-plot"
232
+ version = "0.8.2"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
235
+ dependencies = [
236
+ "cast",
237
+ "itertools 0.13.0",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "crossbeam-deque"
242
+ version = "0.8.6"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
245
+ dependencies = [
246
+ "crossbeam-epoch",
247
+ "crossbeam-utils",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "crossbeam-epoch"
252
+ version = "0.9.18"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
255
+ dependencies = [
256
+ "crossbeam-utils",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "crossbeam-utils"
261
+ version = "0.8.21"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
264
+
265
+ [[package]]
266
+ name = "crunchy"
267
+ version = "0.2.4"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
270
+
271
+ [[package]]
272
+ name = "derive-where"
273
+ version = "1.6.1"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "d08b3a0bcc0d079199cd476b2cae8435016ec11d1c0986c6901c5ac223041534"
276
+ dependencies = [
277
+ "proc-macro2",
278
+ "quote",
279
+ "syn",
280
+ ]
281
+
282
+ [[package]]
283
+ name = "derive_more"
284
+ version = "2.1.1"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
287
+ dependencies = [
288
+ "derive_more-impl",
289
+ ]
290
+
291
+ [[package]]
292
+ name = "derive_more-impl"
293
+ version = "2.1.1"
294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
295
+ checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
296
+ dependencies = [
297
+ "proc-macro2",
298
+ "quote",
299
+ "rustc_version",
300
+ "syn",
301
+ ]
302
+
303
+ [[package]]
304
+ name = "either"
305
+ version = "1.15.0"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
308
+
309
+ [[package]]
310
+ name = "equivalent"
311
+ version = "1.0.2"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
314
+
315
+ [[package]]
316
+ name = "errno"
317
+ version = "0.3.14"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
320
+ dependencies = [
321
+ "libc",
322
+ "windows-sys",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "fastrand"
327
+ version = "2.4.1"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
330
+
331
+ [[package]]
332
+ name = "find-msvc-tools"
333
+ version = "0.1.9"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
336
+
337
+ [[package]]
338
+ name = "fixedbitset"
339
+ version = "0.5.7"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
342
+
343
+ [[package]]
344
+ name = "flate2"
345
+ version = "1.1.9"
346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
347
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
348
+ dependencies = [
349
+ "crc32fast",
350
+ "miniz_oxide",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "fnv"
355
+ version = "1.0.7"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
358
+
359
+ [[package]]
360
+ name = "foldhash"
361
+ version = "0.1.5"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
364
+
365
+ [[package]]
366
+ name = "getrandom"
367
+ version = "0.3.4"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
370
+ dependencies = [
371
+ "cfg-if",
372
+ "libc",
373
+ "r-efi 5.3.0",
374
+ "wasip2",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "getrandom"
379
+ version = "0.4.2"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
382
+ dependencies = [
383
+ "cfg-if",
384
+ "libc",
385
+ "r-efi 6.0.0",
386
+ "wasip2",
387
+ "wasip3",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "glam"
392
+ version = "0.14.0"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "333928d5eb103c5d4050533cec0384302db6be8ef7d3cebd30ec6a35350353da"
395
+
396
+ [[package]]
397
+ name = "glam"
398
+ version = "0.15.2"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "3abb554f8ee44336b72d522e0a7fe86a29e09f839a36022fa869a7dfe941a54b"
401
+
402
+ [[package]]
403
+ name = "glam"
404
+ version = "0.16.0"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "4126c0479ccf7e8664c36a2d719f5f2c140fbb4f9090008098d2c291fa5b3f16"
407
+
408
+ [[package]]
409
+ name = "glam"
410
+ version = "0.17.3"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "e01732b97afd8508eee3333a541b9f7610f454bb818669e66e90f5f57c93a776"
413
+
414
+ [[package]]
415
+ name = "glam"
416
+ version = "0.18.0"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "525a3e490ba77b8e326fb67d4b44b4bd2f920f44d4cc73ccec50adc68e3bee34"
419
+
420
+ [[package]]
421
+ name = "glam"
422
+ version = "0.19.0"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "2b8509e6791516e81c1a630d0bd7fbac36d2fa8712a9da8662e716b52d5051ca"
425
+
426
+ [[package]]
427
+ name = "glam"
428
+ version = "0.20.5"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "f43e957e744be03f5801a55472f593d43fabdebf25a4585db250f04d86b1675f"
431
+
432
+ [[package]]
433
+ name = "glam"
434
+ version = "0.21.3"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "518faa5064866338b013ff9b2350dc318e14cc4fcd6cb8206d7e7c9886c98815"
437
+
438
+ [[package]]
439
+ name = "glam"
440
+ version = "0.22.0"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "12f597d56c1bd55a811a1be189459e8fad2bbc272616375602443bdfb37fa774"
443
+
444
+ [[package]]
445
+ name = "glam"
446
+ version = "0.23.0"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "8e4afd9ad95555081e109fe1d21f2a30c691b5f0919c67dfa690a2e1eb6bd51c"
449
+
450
+ [[package]]
451
+ name = "glam"
452
+ version = "0.24.2"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "b5418c17512bdf42730f9032c74e1ae39afc408745ebb2acf72fbc4691c17945"
455
+
456
+ [[package]]
457
+ name = "glam"
458
+ version = "0.25.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "151665d9be52f9bb40fc7966565d39666f2d1e69233571b71b87791c7e0528b3"
461
+
462
+ [[package]]
463
+ name = "glam"
464
+ version = "0.27.0"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "9e05e7e6723e3455f4818c7b26e855439f7546cf617ef669d1adedb8669e5cb9"
467
+
468
+ [[package]]
469
+ name = "glam"
470
+ version = "0.28.0"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "779ae4bf7e8421cf91c0b3b64e7e8b40b862fba4d393f59150042de7c4965a94"
473
+
474
+ [[package]]
475
+ name = "glam"
476
+ version = "0.29.3"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
479
+
480
+ [[package]]
481
+ name = "glam"
482
+ version = "0.30.10"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
485
+
486
+ [[package]]
487
+ name = "glam"
488
+ version = "0.31.1"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "556f6b2ea90b8d15a74e0e7bb41671c9bdf38cd9f78c284d750b9ce58a2b5be7"
491
+
492
+ [[package]]
493
+ name = "glam"
494
+ version = "0.32.1"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
497
+
498
+ [[package]]
499
+ name = "gungraun"
500
+ version = "0.18.1"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "2e2e7d17b75a18300d495a5e79970067b92d74e4858c28326e125f2d55b1b566"
503
+ dependencies = [
504
+ "bincode",
505
+ "derive_more",
506
+ "gungraun-macros",
507
+ "gungraun-runner",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "gungraun-macros"
512
+ version = "0.8.0"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "e35c7fb6133421db1cf752b7a2838d9277a26810ccaeeca7aa449f96ad7c2b01"
515
+ dependencies = [
516
+ "derive_more",
517
+ "proc-macro-error2",
518
+ "proc-macro2",
519
+ "quote",
520
+ "rustc_version",
521
+ "serde",
522
+ "serde_json",
523
+ "syn",
524
+ ]
525
+
526
+ [[package]]
527
+ name = "gungraun-runner"
528
+ version = "0.18.1"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "c19bb4c552085f983300b11694022d7584810dca3500c220962ab2353327fb45"
531
+ dependencies = [
532
+ "serde",
533
+ ]
534
+
535
+ [[package]]
536
+ name = "half"
537
+ version = "2.7.1"
538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
539
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
540
+ dependencies = [
541
+ "cfg-if",
542
+ "crunchy",
543
+ "zerocopy",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "hash32"
548
+ version = "0.3.1"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
551
+ dependencies = [
552
+ "byteorder",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "hashbrown"
557
+ version = "0.15.5"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
560
+ dependencies = [
561
+ "foldhash",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "hashbrown"
566
+ version = "0.17.0"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
569
+
570
+ [[package]]
571
+ name = "heapless"
572
+ version = "0.8.0"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
575
+ dependencies = [
576
+ "hash32",
577
+ "stable_deref_trait",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "heck"
582
+ version = "0.5.0"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
585
+
586
+ [[package]]
587
+ name = "id-arena"
588
+ version = "2.3.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
591
+
592
+ [[package]]
593
+ name = "indexmap"
594
+ version = "2.14.0"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
597
+ dependencies = [
598
+ "equivalent",
599
+ "hashbrown 0.17.0",
600
+ "serde",
601
+ "serde_core",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "indoc"
606
+ version = "2.0.7"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
609
+ dependencies = [
610
+ "rustversion",
611
+ ]
612
+
613
+ [[package]]
614
+ name = "itertools"
615
+ version = "0.13.0"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
618
+ dependencies = [
619
+ "either",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "itertools"
624
+ version = "0.14.0"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
627
+ dependencies = [
628
+ "either",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "itoa"
633
+ version = "1.0.18"
634
+ source = "registry+https://github.com/rust-lang/crates.io-index"
635
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
636
+
637
+ [[package]]
638
+ name = "js-sys"
639
+ version = "0.3.95"
640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
641
+ checksum = "2964e92d1d9dc3364cae4d718d93f227e3abb088e747d92e0395bfdedf1c12ca"
642
+ dependencies = [
643
+ "once_cell",
644
+ "wasm-bindgen",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "leb128fmt"
649
+ version = "0.1.0"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
652
+
653
+ [[package]]
654
+ name = "libc"
655
+ version = "0.2.185"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
658
+
659
+ [[package]]
660
+ name = "libm"
661
+ version = "0.2.16"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
664
+
665
+ [[package]]
666
+ name = "linux-raw-sys"
667
+ version = "0.12.1"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
670
+
671
+ [[package]]
672
+ name = "log"
673
+ version = "0.4.29"
674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
675
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
676
+
677
+ [[package]]
678
+ name = "lz4_flex"
679
+ version = "0.11.6"
680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
681
+ checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
682
+ dependencies = [
683
+ "twox-hash",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "lzma-sys"
688
+ version = "0.1.20"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "5fda04ab3764e6cde78b9974eec4f779acaba7c4e84b36eca3cf77c581b85d27"
691
+ dependencies = [
692
+ "cc",
693
+ "libc",
694
+ "pkg-config",
695
+ ]
696
+
697
+ [[package]]
698
+ name = "matrixmultiply"
699
+ version = "0.3.10"
700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
701
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
702
+ dependencies = [
703
+ "autocfg",
704
+ "rawpointer",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "mefikit"
709
+ version = "0.1.0"
710
+ dependencies = [
711
+ "approx",
712
+ "arrayvec",
713
+ "criterion",
714
+ "derive-where",
715
+ "gungraun",
716
+ "itertools 0.14.0",
717
+ "nalgebra",
718
+ "ndarray",
719
+ "once_cell",
720
+ "petgraph",
721
+ "proptest",
722
+ "rayon",
723
+ "robust",
724
+ "rstar",
725
+ "rustc-hash",
726
+ "scaling",
727
+ "serde",
728
+ "serde_json",
729
+ "serde_yaml",
730
+ "smallvec",
731
+ "todo",
732
+ "vtkio",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "mefipy"
737
+ version = "0.1.2"
738
+ dependencies = [
739
+ "mefikit",
740
+ "ndarray",
741
+ "numpy",
742
+ "pyo3",
743
+ "serde_json",
744
+ "serde_yaml",
745
+ ]
746
+
747
+ [[package]]
748
+ name = "memchr"
749
+ version = "2.8.0"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
752
+
753
+ [[package]]
754
+ name = "memoffset"
755
+ version = "0.9.1"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
758
+ dependencies = [
759
+ "autocfg",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "miniz_oxide"
764
+ version = "0.8.9"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
767
+ dependencies = [
768
+ "adler2",
769
+ "simd-adler32",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "nalgebra"
774
+ version = "0.34.2"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "df76ea0ff5c7e6b88689085804d6132ded0ddb9de5ca5b8aeb9eeadc0508a70a"
777
+ dependencies = [
778
+ "approx",
779
+ "glam 0.14.0",
780
+ "glam 0.15.2",
781
+ "glam 0.16.0",
782
+ "glam 0.17.3",
783
+ "glam 0.18.0",
784
+ "glam 0.19.0",
785
+ "glam 0.20.5",
786
+ "glam 0.21.3",
787
+ "glam 0.22.0",
788
+ "glam 0.23.0",
789
+ "glam 0.24.2",
790
+ "glam 0.25.0",
791
+ "glam 0.27.0",
792
+ "glam 0.28.0",
793
+ "glam 0.29.3",
794
+ "glam 0.30.10",
795
+ "glam 0.31.1",
796
+ "glam 0.32.1",
797
+ "matrixmultiply",
798
+ "nalgebra-macros",
799
+ "num-complex",
800
+ "num-rational",
801
+ "num-traits",
802
+ "simba",
803
+ "typenum",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "nalgebra-macros"
808
+ version = "0.3.0"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
811
+ dependencies = [
812
+ "proc-macro2",
813
+ "quote",
814
+ "syn",
815
+ ]
816
+
817
+ [[package]]
818
+ name = "ndarray"
819
+ version = "0.17.2"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
822
+ dependencies = [
823
+ "matrixmultiply",
824
+ "num-complex",
825
+ "num-integer",
826
+ "num-traits",
827
+ "portable-atomic",
828
+ "portable-atomic-util",
829
+ "rawpointer",
830
+ "serde",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "nom"
835
+ version = "8.0.0"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
838
+ dependencies = [
839
+ "memchr",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "num-bigint"
844
+ version = "0.4.6"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
847
+ dependencies = [
848
+ "num-integer",
849
+ "num-traits",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "num-complex"
854
+ version = "0.4.6"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
857
+ dependencies = [
858
+ "num-traits",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "num-derive"
863
+ version = "0.4.2"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
866
+ dependencies = [
867
+ "proc-macro2",
868
+ "quote",
869
+ "syn",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "num-integer"
874
+ version = "0.1.46"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
877
+ dependencies = [
878
+ "num-traits",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "num-rational"
883
+ version = "0.4.2"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
886
+ dependencies = [
887
+ "num-bigint",
888
+ "num-integer",
889
+ "num-traits",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "num-traits"
894
+ version = "0.2.19"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
897
+ dependencies = [
898
+ "autocfg",
899
+ "libm",
900
+ ]
901
+
902
+ [[package]]
903
+ name = "numpy"
904
+ version = "0.27.1"
905
+ source = "registry+https://github.com/rust-lang/crates.io-index"
906
+ checksum = "7aac2e6a6e4468ffa092ad43c39b81c79196c2bb773b8db4085f695efe3bba17"
907
+ dependencies = [
908
+ "libc",
909
+ "ndarray",
910
+ "num-complex",
911
+ "num-integer",
912
+ "num-traits",
913
+ "pyo3",
914
+ "pyo3-build-config",
915
+ "rustc-hash",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "once_cell"
920
+ version = "1.21.4"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
923
+
924
+ [[package]]
925
+ name = "oorandom"
926
+ version = "11.1.5"
927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
928
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
929
+
930
+ [[package]]
931
+ name = "page_size"
932
+ version = "0.6.0"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
935
+ dependencies = [
936
+ "libc",
937
+ "winapi",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "paste"
942
+ version = "1.0.15"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
945
+
946
+ [[package]]
947
+ name = "petgraph"
948
+ version = "0.8.3"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "8701b58ea97060d5e5b155d383a69952a60943f0e6dfe30b04c287beb0b27455"
951
+ dependencies = [
952
+ "fixedbitset",
953
+ "hashbrown 0.15.5",
954
+ "indexmap",
955
+ "serde",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "pkg-config"
960
+ version = "0.3.33"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
963
+
964
+ [[package]]
965
+ name = "plotters"
966
+ version = "0.3.7"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
969
+ dependencies = [
970
+ "num-traits",
971
+ "plotters-backend",
972
+ "plotters-svg",
973
+ "wasm-bindgen",
974
+ "web-sys",
975
+ ]
976
+
977
+ [[package]]
978
+ name = "plotters-backend"
979
+ version = "0.3.7"
980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
981
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
982
+
983
+ [[package]]
984
+ name = "plotters-svg"
985
+ version = "0.3.7"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
988
+ dependencies = [
989
+ "plotters-backend",
990
+ ]
991
+
992
+ [[package]]
993
+ name = "portable-atomic"
994
+ version = "1.13.1"
995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
996
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
997
+
998
+ [[package]]
999
+ name = "portable-atomic-util"
1000
+ version = "0.2.7"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1003
+ dependencies = [
1004
+ "portable-atomic",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "ppv-lite86"
1009
+ version = "0.2.21"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1012
+ dependencies = [
1013
+ "zerocopy",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "prettyplease"
1018
+ version = "0.2.37"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1021
+ dependencies = [
1022
+ "proc-macro2",
1023
+ "syn",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "proc-macro-error-attr2"
1028
+ version = "2.0.0"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1031
+ dependencies = [
1032
+ "proc-macro2",
1033
+ "quote",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "proc-macro-error2"
1038
+ version = "2.0.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1041
+ dependencies = [
1042
+ "proc-macro-error-attr2",
1043
+ "proc-macro2",
1044
+ "quote",
1045
+ "syn",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "proc-macro2"
1050
+ version = "1.0.106"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1053
+ dependencies = [
1054
+ "unicode-ident",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "proptest"
1059
+ version = "1.11.0"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1062
+ dependencies = [
1063
+ "bit-set",
1064
+ "bit-vec",
1065
+ "bitflags",
1066
+ "num-traits",
1067
+ "rand",
1068
+ "rand_chacha",
1069
+ "rand_xorshift",
1070
+ "regex-syntax",
1071
+ "rusty-fork",
1072
+ "tempfile",
1073
+ "unarray",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "pyo3"
1078
+ version = "0.27.2"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
1081
+ dependencies = [
1082
+ "indoc",
1083
+ "libc",
1084
+ "memoffset",
1085
+ "once_cell",
1086
+ "portable-atomic",
1087
+ "pyo3-build-config",
1088
+ "pyo3-ffi",
1089
+ "pyo3-macros",
1090
+ "unindent",
1091
+ ]
1092
+
1093
+ [[package]]
1094
+ name = "pyo3-build-config"
1095
+ version = "0.27.2"
1096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1097
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
1098
+ dependencies = [
1099
+ "target-lexicon",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "pyo3-ffi"
1104
+ version = "0.27.2"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
1107
+ dependencies = [
1108
+ "libc",
1109
+ "pyo3-build-config",
1110
+ ]
1111
+
1112
+ [[package]]
1113
+ name = "pyo3-macros"
1114
+ version = "0.27.2"
1115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1116
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
1117
+ dependencies = [
1118
+ "proc-macro2",
1119
+ "pyo3-macros-backend",
1120
+ "quote",
1121
+ "syn",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "pyo3-macros-backend"
1126
+ version = "0.27.2"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
1129
+ dependencies = [
1130
+ "heck",
1131
+ "proc-macro2",
1132
+ "pyo3-build-config",
1133
+ "quote",
1134
+ "syn",
1135
+ ]
1136
+
1137
+ [[package]]
1138
+ name = "quick-error"
1139
+ version = "1.2.3"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1142
+
1143
+ [[package]]
1144
+ name = "quick-xml"
1145
+ version = "0.36.2"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
1148
+ dependencies = [
1149
+ "memchr",
1150
+ "serde",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "quote"
1155
+ version = "1.0.45"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1158
+ dependencies = [
1159
+ "proc-macro2",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "r-efi"
1164
+ version = "5.3.0"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1167
+
1168
+ [[package]]
1169
+ name = "r-efi"
1170
+ version = "6.0.0"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1173
+
1174
+ [[package]]
1175
+ name = "rand"
1176
+ version = "0.9.4"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1179
+ dependencies = [
1180
+ "rand_chacha",
1181
+ "rand_core",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "rand_chacha"
1186
+ version = "0.9.0"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1189
+ dependencies = [
1190
+ "ppv-lite86",
1191
+ "rand_core",
1192
+ ]
1193
+
1194
+ [[package]]
1195
+ name = "rand_core"
1196
+ version = "0.9.5"
1197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1198
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1199
+ dependencies = [
1200
+ "getrandom 0.3.4",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "rand_xorshift"
1205
+ version = "0.4.0"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1208
+ dependencies = [
1209
+ "rand_core",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "rawpointer"
1214
+ version = "0.2.1"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1217
+
1218
+ [[package]]
1219
+ name = "rayon"
1220
+ version = "1.12.0"
1221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1222
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1223
+ dependencies = [
1224
+ "either",
1225
+ "rayon-core",
1226
+ ]
1227
+
1228
+ [[package]]
1229
+ name = "rayon-core"
1230
+ version = "1.13.0"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1233
+ dependencies = [
1234
+ "crossbeam-deque",
1235
+ "crossbeam-utils",
1236
+ ]
1237
+
1238
+ [[package]]
1239
+ name = "regex"
1240
+ version = "1.12.3"
1241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1242
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1243
+ dependencies = [
1244
+ "aho-corasick",
1245
+ "memchr",
1246
+ "regex-automata",
1247
+ "regex-syntax",
1248
+ ]
1249
+
1250
+ [[package]]
1251
+ name = "regex-automata"
1252
+ version = "0.4.14"
1253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1254
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1255
+ dependencies = [
1256
+ "aho-corasick",
1257
+ "memchr",
1258
+ "regex-syntax",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "regex-syntax"
1263
+ version = "0.8.10"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1266
+
1267
+ [[package]]
1268
+ name = "robust"
1269
+ version = "1.2.0"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "4e27ee8bb91ca0adcf0ecb116293afa12d393f9c2b9b9cd54d33e8078fe19839"
1272
+
1273
+ [[package]]
1274
+ name = "rstar"
1275
+ version = "0.12.2"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
1278
+ dependencies = [
1279
+ "heapless",
1280
+ "num-traits",
1281
+ "smallvec",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "rustc-hash"
1286
+ version = "2.1.2"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1289
+
1290
+ [[package]]
1291
+ name = "rustc_version"
1292
+ version = "0.4.1"
1293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1294
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1295
+ dependencies = [
1296
+ "semver",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "rustix"
1301
+ version = "1.1.4"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1304
+ dependencies = [
1305
+ "bitflags",
1306
+ "errno",
1307
+ "libc",
1308
+ "linux-raw-sys",
1309
+ "windows-sys",
1310
+ ]
1311
+
1312
+ [[package]]
1313
+ name = "rustversion"
1314
+ version = "1.0.22"
1315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1316
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1317
+
1318
+ [[package]]
1319
+ name = "rusty-fork"
1320
+ version = "0.3.1"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1323
+ dependencies = [
1324
+ "fnv",
1325
+ "quick-error",
1326
+ "tempfile",
1327
+ "wait-timeout",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "ryu"
1332
+ version = "1.0.23"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1335
+
1336
+ [[package]]
1337
+ name = "safe_arch"
1338
+ version = "0.7.4"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
1341
+ dependencies = [
1342
+ "bytemuck",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "same-file"
1347
+ version = "1.0.6"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1350
+ dependencies = [
1351
+ "winapi-util",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "scaling"
1356
+ version = "0.1.3"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "bdae3600851ce884c21967661b682951ff63475e891c819e5609c5643cc1be2f"
1359
+
1360
+ [[package]]
1361
+ name = "semver"
1362
+ version = "1.0.28"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1365
+
1366
+ [[package]]
1367
+ name = "serde"
1368
+ version = "1.0.228"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1371
+ dependencies = [
1372
+ "serde_core",
1373
+ "serde_derive",
1374
+ ]
1375
+
1376
+ [[package]]
1377
+ name = "serde_core"
1378
+ version = "1.0.228"
1379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1380
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1381
+ dependencies = [
1382
+ "serde_derive",
1383
+ ]
1384
+
1385
+ [[package]]
1386
+ name = "serde_derive"
1387
+ version = "1.0.228"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1390
+ dependencies = [
1391
+ "proc-macro2",
1392
+ "quote",
1393
+ "syn",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "serde_json"
1398
+ version = "1.0.149"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1401
+ dependencies = [
1402
+ "itoa",
1403
+ "memchr",
1404
+ "serde",
1405
+ "serde_core",
1406
+ "zmij",
1407
+ ]
1408
+
1409
+ [[package]]
1410
+ name = "serde_yaml"
1411
+ version = "0.9.34+deprecated"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
1414
+ dependencies = [
1415
+ "indexmap",
1416
+ "itoa",
1417
+ "ryu",
1418
+ "serde",
1419
+ "unsafe-libyaml",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "shlex"
1424
+ version = "1.3.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1427
+
1428
+ [[package]]
1429
+ name = "simba"
1430
+ version = "0.9.1"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
1433
+ dependencies = [
1434
+ "approx",
1435
+ "num-complex",
1436
+ "num-traits",
1437
+ "paste",
1438
+ "wide",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "simd-adler32"
1443
+ version = "0.3.9"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1446
+
1447
+ [[package]]
1448
+ name = "smallvec"
1449
+ version = "1.15.1"
1450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1451
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1452
+
1453
+ [[package]]
1454
+ name = "stable_deref_trait"
1455
+ version = "1.2.1"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1458
+
1459
+ [[package]]
1460
+ name = "syn"
1461
+ version = "2.0.117"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1464
+ dependencies = [
1465
+ "proc-macro2",
1466
+ "quote",
1467
+ "unicode-ident",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "target-lexicon"
1472
+ version = "0.13.5"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1475
+
1476
+ [[package]]
1477
+ name = "tempfile"
1478
+ version = "3.27.0"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1481
+ dependencies = [
1482
+ "fastrand",
1483
+ "getrandom 0.4.2",
1484
+ "once_cell",
1485
+ "rustix",
1486
+ "windows-sys",
1487
+ ]
1488
+
1489
+ [[package]]
1490
+ name = "tinytemplate"
1491
+ version = "1.2.1"
1492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1493
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1494
+ dependencies = [
1495
+ "serde",
1496
+ "serde_json",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "todo"
1501
+ version = "0.3.0"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "728445e4f419151230da8206285868aab4f4ef1842a024227d6636e5d9394ce3"
1504
+
1505
+ [[package]]
1506
+ name = "trim-in-place"
1507
+ version = "0.1.7"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "343e926fc669bc8cde4fa3129ab681c63671bae288b1f1081ceee6d9d37904fc"
1510
+
1511
+ [[package]]
1512
+ name = "twox-hash"
1513
+ version = "2.1.2"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
1516
+
1517
+ [[package]]
1518
+ name = "typenum"
1519
+ version = "1.19.0"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1522
+
1523
+ [[package]]
1524
+ name = "unarray"
1525
+ version = "0.1.4"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1528
+
1529
+ [[package]]
1530
+ name = "unicode-ident"
1531
+ version = "1.0.24"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1534
+
1535
+ [[package]]
1536
+ name = "unicode-xid"
1537
+ version = "0.2.6"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1540
+
1541
+ [[package]]
1542
+ name = "unindent"
1543
+ version = "0.2.4"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1546
+
1547
+ [[package]]
1548
+ name = "unsafe-libyaml"
1549
+ version = "0.2.11"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
1552
+
1553
+ [[package]]
1554
+ name = "vtkio"
1555
+ version = "0.7.0-rc2"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "9d7cba514932ebb50de553d2abf395d0702333ea28ba900fec629d88cd4e79a9"
1558
+ dependencies = [
1559
+ "base64",
1560
+ "bytemuck",
1561
+ "byteorder",
1562
+ "flate2",
1563
+ "log",
1564
+ "lz4_flex",
1565
+ "nom",
1566
+ "num-derive",
1567
+ "num-traits",
1568
+ "quick-xml",
1569
+ "serde",
1570
+ "trim-in-place",
1571
+ "xz2",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "wait-timeout"
1576
+ version = "0.2.1"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1579
+ dependencies = [
1580
+ "libc",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "walkdir"
1585
+ version = "2.5.0"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1588
+ dependencies = [
1589
+ "same-file",
1590
+ "winapi-util",
1591
+ ]
1592
+
1593
+ [[package]]
1594
+ name = "wasip2"
1595
+ version = "1.0.3+wasi-0.2.9"
1596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1597
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1598
+ dependencies = [
1599
+ "wit-bindgen 0.57.1",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "wasip3"
1604
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1607
+ dependencies = [
1608
+ "wit-bindgen 0.51.0",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "wasm-bindgen"
1613
+ version = "0.2.118"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "0bf938a0bacb0469e83c1e148908bd7d5a6010354cf4fb73279b7447422e3a89"
1616
+ dependencies = [
1617
+ "cfg-if",
1618
+ "once_cell",
1619
+ "rustversion",
1620
+ "wasm-bindgen-macro",
1621
+ "wasm-bindgen-shared",
1622
+ ]
1623
+
1624
+ [[package]]
1625
+ name = "wasm-bindgen-macro"
1626
+ version = "0.2.118"
1627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1628
+ checksum = "eeff24f84126c0ec2db7a449f0c2ec963c6a49efe0698c4242929da037ca28ed"
1629
+ dependencies = [
1630
+ "quote",
1631
+ "wasm-bindgen-macro-support",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "wasm-bindgen-macro-support"
1636
+ version = "0.2.118"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "9d08065faf983b2b80a79fd87d8254c409281cf7de75fc4b773019824196c904"
1639
+ dependencies = [
1640
+ "bumpalo",
1641
+ "proc-macro2",
1642
+ "quote",
1643
+ "syn",
1644
+ "wasm-bindgen-shared",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "wasm-bindgen-shared"
1649
+ version = "0.2.118"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "5fd04d9e306f1907bd13c6361b5c6bfc7b3b3c095ed3f8a9246390f8dbdee129"
1652
+ dependencies = [
1653
+ "unicode-ident",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "wasm-encoder"
1658
+ version = "0.244.0"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1661
+ dependencies = [
1662
+ "leb128fmt",
1663
+ "wasmparser",
1664
+ ]
1665
+
1666
+ [[package]]
1667
+ name = "wasm-metadata"
1668
+ version = "0.244.0"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1671
+ dependencies = [
1672
+ "anyhow",
1673
+ "indexmap",
1674
+ "wasm-encoder",
1675
+ "wasmparser",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "wasmparser"
1680
+ version = "0.244.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1683
+ dependencies = [
1684
+ "bitflags",
1685
+ "hashbrown 0.15.5",
1686
+ "indexmap",
1687
+ "semver",
1688
+ ]
1689
+
1690
+ [[package]]
1691
+ name = "web-sys"
1692
+ version = "0.3.95"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "4f2dfbb17949fa2088e5d39408c48368947b86f7834484e87b73de55bc14d97d"
1695
+ dependencies = [
1696
+ "js-sys",
1697
+ "wasm-bindgen",
1698
+ ]
1699
+
1700
+ [[package]]
1701
+ name = "wide"
1702
+ version = "0.7.33"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
1705
+ dependencies = [
1706
+ "bytemuck",
1707
+ "safe_arch",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "winapi"
1712
+ version = "0.3.9"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1715
+ dependencies = [
1716
+ "winapi-i686-pc-windows-gnu",
1717
+ "winapi-x86_64-pc-windows-gnu",
1718
+ ]
1719
+
1720
+ [[package]]
1721
+ name = "winapi-i686-pc-windows-gnu"
1722
+ version = "0.4.0"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1725
+
1726
+ [[package]]
1727
+ name = "winapi-util"
1728
+ version = "0.1.11"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1731
+ dependencies = [
1732
+ "windows-sys",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "winapi-x86_64-pc-windows-gnu"
1737
+ version = "0.4.0"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1740
+
1741
+ [[package]]
1742
+ name = "windows-link"
1743
+ version = "0.2.1"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1746
+
1747
+ [[package]]
1748
+ name = "windows-sys"
1749
+ version = "0.61.2"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1752
+ dependencies = [
1753
+ "windows-link",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "wit-bindgen"
1758
+ version = "0.51.0"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1761
+ dependencies = [
1762
+ "wit-bindgen-rust-macro",
1763
+ ]
1764
+
1765
+ [[package]]
1766
+ name = "wit-bindgen"
1767
+ version = "0.57.1"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1770
+
1771
+ [[package]]
1772
+ name = "wit-bindgen-core"
1773
+ version = "0.51.0"
1774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1775
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1776
+ dependencies = [
1777
+ "anyhow",
1778
+ "heck",
1779
+ "wit-parser",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "wit-bindgen-rust"
1784
+ version = "0.51.0"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1787
+ dependencies = [
1788
+ "anyhow",
1789
+ "heck",
1790
+ "indexmap",
1791
+ "prettyplease",
1792
+ "syn",
1793
+ "wasm-metadata",
1794
+ "wit-bindgen-core",
1795
+ "wit-component",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "wit-bindgen-rust-macro"
1800
+ version = "0.51.0"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1803
+ dependencies = [
1804
+ "anyhow",
1805
+ "prettyplease",
1806
+ "proc-macro2",
1807
+ "quote",
1808
+ "syn",
1809
+ "wit-bindgen-core",
1810
+ "wit-bindgen-rust",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "wit-component"
1815
+ version = "0.244.0"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1818
+ dependencies = [
1819
+ "anyhow",
1820
+ "bitflags",
1821
+ "indexmap",
1822
+ "log",
1823
+ "serde",
1824
+ "serde_derive",
1825
+ "serde_json",
1826
+ "wasm-encoder",
1827
+ "wasm-metadata",
1828
+ "wasmparser",
1829
+ "wit-parser",
1830
+ ]
1831
+
1832
+ [[package]]
1833
+ name = "wit-parser"
1834
+ version = "0.244.0"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1837
+ dependencies = [
1838
+ "anyhow",
1839
+ "id-arena",
1840
+ "indexmap",
1841
+ "log",
1842
+ "semver",
1843
+ "serde",
1844
+ "serde_derive",
1845
+ "serde_json",
1846
+ "unicode-xid",
1847
+ "wasmparser",
1848
+ ]
1849
+
1850
+ [[package]]
1851
+ name = "xz2"
1852
+ version = "0.1.7"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "388c44dc09d76f1536602ead6d325eb532f5c122f17782bd57fb47baeeb767e2"
1855
+ dependencies = [
1856
+ "lzma-sys",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "zerocopy"
1861
+ version = "0.8.48"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1864
+ dependencies = [
1865
+ "zerocopy-derive",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "zerocopy-derive"
1870
+ version = "0.8.48"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1873
+ dependencies = [
1874
+ "proc-macro2",
1875
+ "quote",
1876
+ "syn",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "zmij"
1881
+ version = "1.0.21"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"