thermite-ml 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. thermite_ml-1.0.0/Cargo.lock +1538 -0
  2. thermite_ml-1.0.0/Cargo.toml +12 -0
  3. thermite_ml-1.0.0/PKG-INFO +159 -0
  4. thermite_ml-1.0.0/README.md +118 -0
  5. thermite_ml-1.0.0/crates/thermite-binding/Cargo.toml +18 -0
  6. thermite_ml-1.0.0/crates/thermite-binding/src/cluster_bind.rs +159 -0
  7. thermite_ml-1.0.0/crates/thermite-binding/src/decomposition_bind.rs +75 -0
  8. thermite_ml-1.0.0/crates/thermite-binding/src/ensemble_bind.rs +221 -0
  9. thermite_ml-1.0.0/crates/thermite-binding/src/lib.rs +439 -0
  10. thermite_ml-1.0.0/crates/thermite-binding/src/linear_model_bind.rs +363 -0
  11. thermite_ml-1.0.0/crates/thermite-binding/src/metrics_bind.rs +59 -0
  12. thermite_ml-1.0.0/crates/thermite-binding/src/naive_bayes_bind.rs +56 -0
  13. thermite_ml-1.0.0/crates/thermite-binding/src/neighbors_bind.rs +40 -0
  14. thermite_ml-1.0.0/crates/thermite-binding/src/tree_bind.rs +120 -0
  15. thermite_ml-1.0.0/crates/thermite-core/Cargo.toml +12 -0
  16. thermite_ml-1.0.0/crates/thermite-core/src/cluster.rs +741 -0
  17. thermite_ml-1.0.0/crates/thermite-core/src/decomposition.rs +361 -0
  18. thermite_ml-1.0.0/crates/thermite-core/src/ensemble.rs +457 -0
  19. thermite_ml-1.0.0/crates/thermite-core/src/lib.rs +26 -0
  20. thermite_ml-1.0.0/crates/thermite-core/src/linear_model.rs +1851 -0
  21. thermite_ml-1.0.0/crates/thermite-core/src/metrics.rs +470 -0
  22. thermite_ml-1.0.0/crates/thermite-core/src/model_selection.rs +260 -0
  23. thermite_ml-1.0.0/crates/thermite-core/src/naive_bayes.rs +226 -0
  24. thermite_ml-1.0.0/crates/thermite-core/src/neighbors.rs +412 -0
  25. thermite_ml-1.0.0/crates/thermite-core/src/preprocessing.rs +687 -0
  26. thermite_ml-1.0.0/crates/thermite-core/src/sparse.rs +21 -0
  27. thermite_ml-1.0.0/crates/thermite-core/src/tree.rs +995 -0
  28. thermite_ml-1.0.0/crates/thermite-gpu/Cargo.toml +16 -0
  29. thermite_ml-1.0.0/crates/thermite-gpu/src/lib.rs +379 -0
  30. thermite_ml-1.0.0/pyproject.toml +64 -0
  31. thermite_ml-1.0.0/thermite/__init__.py +52 -0
  32. thermite_ml-1.0.0/thermite/cluster.py +125 -0
  33. thermite_ml-1.0.0/thermite/decomposition.py +72 -0
  34. thermite_ml-1.0.0/thermite/device.py +54 -0
  35. thermite_ml-1.0.0/thermite/ensemble.py +191 -0
  36. thermite_ml-1.0.0/thermite/linear_model.py +284 -0
  37. thermite_ml-1.0.0/thermite/metrics.py +57 -0
  38. thermite_ml-1.0.0/thermite/model_selection.py +185 -0
  39. thermite_ml-1.0.0/thermite/naive_bayes.py +78 -0
  40. thermite_ml-1.0.0/thermite/neighbors.py +54 -0
  41. thermite_ml-1.0.0/thermite/pipeline.py +161 -0
  42. thermite_ml-1.0.0/thermite/polars_compat.py +185 -0
  43. thermite_ml-1.0.0/thermite/preprocessing.py +226 -0
  44. thermite_ml-1.0.0/thermite/tree.py +95 -0
@@ -0,0 +1,1538 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.8.12"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10
+ dependencies = [
11
+ "cfg-if",
12
+ "once_cell",
13
+ "version_check",
14
+ "zerocopy",
15
+ ]
16
+
17
+ [[package]]
18
+ name = "alga"
19
+ version = "0.9.3"
20
+ source = "registry+https://github.com/rust-lang/crates.io-index"
21
+ checksum = "4f823d037a7ec6ea2197046bafd4ae150e6bc36f9ca347404f46a46823fa84f2"
22
+ dependencies = [
23
+ "approx",
24
+ "num-complex 0.2.4",
25
+ "num-traits",
26
+ ]
27
+
28
+ [[package]]
29
+ name = "allocator-api2"
30
+ version = "0.2.21"
31
+ source = "registry+https://github.com/rust-lang/crates.io-index"
32
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
33
+
34
+ [[package]]
35
+ name = "android_system_properties"
36
+ version = "0.1.5"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
39
+ dependencies = [
40
+ "libc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "approx"
45
+ version = "0.3.2"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "f0e60b75072ecd4168020818c0107f2857bb6c4e64252d8d3983f6263b40a5c3"
48
+ dependencies = [
49
+ "num-traits",
50
+ ]
51
+
52
+ [[package]]
53
+ name = "arrayvec"
54
+ version = "0.7.8"
55
+ source = "registry+https://github.com/rust-lang/crates.io-index"
56
+ checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
57
+
58
+ [[package]]
59
+ name = "ash"
60
+ version = "0.37.3+1.3.251"
61
+ source = "registry+https://github.com/rust-lang/crates.io-index"
62
+ checksum = "39e9c3835d686b0a6084ab4234fcd1b07dbf6e4767dce60874b12356a25ecd4a"
63
+ dependencies = [
64
+ "libloading 0.7.4",
65
+ ]
66
+
67
+ [[package]]
68
+ name = "autocfg"
69
+ version = "1.5.1"
70
+ source = "registry+https://github.com/rust-lang/crates.io-index"
71
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
72
+
73
+ [[package]]
74
+ name = "bit-set"
75
+ version = "0.5.3"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
78
+ dependencies = [
79
+ "bit-vec",
80
+ ]
81
+
82
+ [[package]]
83
+ name = "bit-vec"
84
+ version = "0.6.3"
85
+ source = "registry+https://github.com/rust-lang/crates.io-index"
86
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
87
+
88
+ [[package]]
89
+ name = "bitflags"
90
+ version = "1.3.2"
91
+ source = "registry+https://github.com/rust-lang/crates.io-index"
92
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
93
+
94
+ [[package]]
95
+ name = "bitflags"
96
+ version = "2.13.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
99
+
100
+ [[package]]
101
+ name = "block"
102
+ version = "0.1.6"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
105
+
106
+ [[package]]
107
+ name = "bumpalo"
108
+ version = "3.20.3"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
111
+
112
+ [[package]]
113
+ name = "bytemuck"
114
+ version = "1.25.1"
115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
116
+ checksum = "d6aedf8ae72766347502cf3cb4f41cf5e9cc37d28bee90f1fdaaae15f9cf9424"
117
+ dependencies = [
118
+ "bytemuck_derive",
119
+ ]
120
+
121
+ [[package]]
122
+ name = "bytemuck_derive"
123
+ version = "1.11.0"
124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
125
+ checksum = "f65693059b6b9c588b9f62fed1cedbf0a8b805631457ea162d68f0de186f3de5"
126
+ dependencies = [
127
+ "proc-macro2",
128
+ "quote",
129
+ "syn 2.0.118",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "cc"
134
+ version = "1.2.67"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "e17dd265a7d0f31ef544e1b20e03add05d3b45b491b633b10d67145d2acc1a38"
137
+ dependencies = [
138
+ "find-msvc-tools",
139
+ "shlex",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "cfg-if"
144
+ version = "1.0.4"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
147
+
148
+ [[package]]
149
+ name = "cfg_aliases"
150
+ version = "0.1.1"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
153
+
154
+ [[package]]
155
+ name = "codespan-reporting"
156
+ version = "0.11.1"
157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
158
+ checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
159
+ dependencies = [
160
+ "termcolor",
161
+ "unicode-width",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "com"
166
+ version = "0.6.0"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "7e17887fd17353b65b1b2ef1c526c83e26cd72e74f598a8dc1bee13a48f3d9f6"
169
+ dependencies = [
170
+ "com_macros",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "com_macros"
175
+ version = "0.6.0"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "d375883580a668c7481ea6631fc1a8863e33cc335bf56bfad8d7e6d4b04b13a5"
178
+ dependencies = [
179
+ "com_macros_support",
180
+ "proc-macro2",
181
+ "syn 1.0.109",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "com_macros_support"
186
+ version = "0.6.0"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "ad899a1087a9296d5644792d7cb72b8e34c1bec8e7d4fbc002230169a6e8710c"
189
+ dependencies = [
190
+ "proc-macro2",
191
+ "quote",
192
+ "syn 1.0.109",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "core-foundation"
197
+ version = "0.9.4"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
200
+ dependencies = [
201
+ "core-foundation-sys",
202
+ "libc",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "core-foundation-sys"
207
+ version = "0.8.7"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
210
+
211
+ [[package]]
212
+ name = "core-graphics-types"
213
+ version = "0.1.3"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
216
+ dependencies = [
217
+ "bitflags 1.3.2",
218
+ "core-foundation",
219
+ "libc",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "crossbeam-deque"
224
+ version = "0.8.7"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
227
+ dependencies = [
228
+ "crossbeam-epoch",
229
+ "crossbeam-utils",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "crossbeam-epoch"
234
+ version = "0.9.20"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
237
+ dependencies = [
238
+ "crossbeam-utils",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "crossbeam-utils"
243
+ version = "0.8.22"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
246
+
247
+ [[package]]
248
+ name = "d3d12"
249
+ version = "0.19.0"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "3e3d747f100290a1ca24b752186f61f6637e1deffe3bf6320de6fcb29510a307"
252
+ dependencies = [
253
+ "bitflags 2.13.0",
254
+ "libloading 0.8.9",
255
+ "winapi",
256
+ ]
257
+
258
+ [[package]]
259
+ name = "either"
260
+ version = "1.16.0"
261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
262
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
263
+
264
+ [[package]]
265
+ name = "equivalent"
266
+ version = "1.0.2"
267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
268
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
269
+
270
+ [[package]]
271
+ name = "find-msvc-tools"
272
+ version = "0.1.9"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
275
+
276
+ [[package]]
277
+ name = "foreign-types"
278
+ version = "0.5.0"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
281
+ dependencies = [
282
+ "foreign-types-macros",
283
+ "foreign-types-shared",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "foreign-types-macros"
288
+ version = "0.2.3"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
291
+ dependencies = [
292
+ "proc-macro2",
293
+ "quote",
294
+ "syn 2.0.118",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "foreign-types-shared"
299
+ version = "0.3.1"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
302
+
303
+ [[package]]
304
+ name = "futures-core"
305
+ version = "0.3.32"
306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
307
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
308
+
309
+ [[package]]
310
+ name = "futures-task"
311
+ version = "0.3.32"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
314
+
315
+ [[package]]
316
+ name = "futures-util"
317
+ version = "0.3.32"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
320
+ dependencies = [
321
+ "futures-core",
322
+ "futures-task",
323
+ "pin-project-lite",
324
+ "slab",
325
+ ]
326
+
327
+ [[package]]
328
+ name = "getrandom"
329
+ version = "0.2.17"
330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
331
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
332
+ dependencies = [
333
+ "cfg-if",
334
+ "libc",
335
+ "wasi",
336
+ ]
337
+
338
+ [[package]]
339
+ name = "gl_generator"
340
+ version = "0.14.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
343
+ dependencies = [
344
+ "khronos_api",
345
+ "log",
346
+ "xml-rs",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "glow"
351
+ version = "0.13.1"
352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
353
+ checksum = "bd348e04c43b32574f2de31c8bb397d96c9fcfa1371bd4ca6d8bdc464ab121b1"
354
+ dependencies = [
355
+ "js-sys",
356
+ "slotmap",
357
+ "wasm-bindgen",
358
+ "web-sys",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "glutin_wgl_sys"
363
+ version = "0.5.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "6c8098adac955faa2d31079b65dc48841251f69efd3ac25477903fc424362ead"
366
+ dependencies = [
367
+ "gl_generator",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "gpu-alloc"
372
+ version = "0.6.2"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "45cf04b2726f02df5508c6de726acdc90cdf97ac771a9a0ffd8ba10a6e696bf9"
375
+ dependencies = [
376
+ "bitflags 2.13.0",
377
+ "gpu-alloc-types",
378
+ ]
379
+
380
+ [[package]]
381
+ name = "gpu-alloc-types"
382
+ version = "0.3.1"
383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
384
+ checksum = "b2bbed164dd10ed526c2e4fe3e721ca4a71c61730e5aafac6844b417b3227058"
385
+ dependencies = [
386
+ "bitflags 2.13.0",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "gpu-allocator"
391
+ version = "0.25.0"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "6f56f6318968d03c18e1bcf4857ff88c61157e9da8e47c5f29055d60e1228884"
394
+ dependencies = [
395
+ "log",
396
+ "presser",
397
+ "thiserror",
398
+ "winapi",
399
+ "windows",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "gpu-descriptor"
404
+ version = "0.2.4"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "cc11df1ace8e7e564511f53af41f3e42ddc95b56fd07b3f4445d2a6048bc682c"
407
+ dependencies = [
408
+ "bitflags 2.13.0",
409
+ "gpu-descriptor-types",
410
+ "hashbrown 0.14.5",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "gpu-descriptor-types"
415
+ version = "0.1.2"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "6bf0b36e6f090b7e1d8a4b49c0cb81c1f8376f72198c65dd3ad9ff3556b8b78c"
418
+ dependencies = [
419
+ "bitflags 2.13.0",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "hashbrown"
424
+ version = "0.14.5"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
427
+ dependencies = [
428
+ "ahash",
429
+ "allocator-api2",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "hashbrown"
434
+ version = "0.17.1"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
437
+
438
+ [[package]]
439
+ name = "hassle-rs"
440
+ version = "0.11.0"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "af2a7e73e1f34c48da31fb668a907f250794837e08faa144fd24f0b8b741e890"
443
+ dependencies = [
444
+ "bitflags 2.13.0",
445
+ "com",
446
+ "libc",
447
+ "libloading 0.8.9",
448
+ "thiserror",
449
+ "widestring",
450
+ "winapi",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "heck"
455
+ version = "0.4.1"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
458
+
459
+ [[package]]
460
+ name = "hermit-abi"
461
+ version = "0.5.2"
462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
463
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
464
+
465
+ [[package]]
466
+ name = "hexf-parse"
467
+ version = "0.2.1"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
470
+
471
+ [[package]]
472
+ name = "indexmap"
473
+ version = "2.14.0"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
476
+ dependencies = [
477
+ "equivalent",
478
+ "hashbrown 0.17.1",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "indoc"
483
+ version = "2.0.7"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
486
+ dependencies = [
487
+ "rustversion",
488
+ ]
489
+
490
+ [[package]]
491
+ name = "jni-sys"
492
+ version = "0.3.1"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
495
+ dependencies = [
496
+ "jni-sys 0.4.1",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "jni-sys"
501
+ version = "0.4.1"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
504
+ dependencies = [
505
+ "jni-sys-macros",
506
+ ]
507
+
508
+ [[package]]
509
+ name = "jni-sys-macros"
510
+ version = "0.4.1"
511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
512
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
513
+ dependencies = [
514
+ "quote",
515
+ "syn 2.0.118",
516
+ ]
517
+
518
+ [[package]]
519
+ name = "js-sys"
520
+ version = "0.3.103"
521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
522
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
523
+ dependencies = [
524
+ "cfg-if",
525
+ "futures-util",
526
+ "wasm-bindgen",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "khronos-egl"
531
+ version = "6.0.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
534
+ dependencies = [
535
+ "libc",
536
+ "libloading 0.8.9",
537
+ "pkg-config",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "khronos_api"
542
+ version = "3.1.0"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
545
+
546
+ [[package]]
547
+ name = "libc"
548
+ version = "0.2.186"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
551
+
552
+ [[package]]
553
+ name = "libloading"
554
+ version = "0.7.4"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
557
+ dependencies = [
558
+ "cfg-if",
559
+ "winapi",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "libloading"
564
+ version = "0.8.9"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
567
+ dependencies = [
568
+ "cfg-if",
569
+ "windows-link",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "libm"
574
+ version = "0.2.16"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
577
+
578
+ [[package]]
579
+ name = "lock_api"
580
+ version = "0.4.14"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
583
+ dependencies = [
584
+ "scopeguard",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "log"
589
+ version = "0.4.33"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
592
+
593
+ [[package]]
594
+ name = "malloc_buf"
595
+ version = "0.0.6"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
598
+ dependencies = [
599
+ "libc",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "matrixmultiply"
604
+ version = "0.3.10"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
607
+ dependencies = [
608
+ "autocfg",
609
+ "rawpointer",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "memoffset"
614
+ version = "0.9.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
617
+ dependencies = [
618
+ "autocfg",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "metal"
623
+ version = "0.27.0"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "c43f73953f8cbe511f021b58f18c3ce1c3d1ae13fe953293e13345bf83217f25"
626
+ dependencies = [
627
+ "bitflags 2.13.0",
628
+ "block",
629
+ "core-graphics-types",
630
+ "foreign-types",
631
+ "log",
632
+ "objc",
633
+ "paste",
634
+ ]
635
+
636
+ [[package]]
637
+ name = "naga"
638
+ version = "0.19.2"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "50e3524642f53d9af419ab5e8dd29d3ba155708267667c2f3f06c88c9e130843"
641
+ dependencies = [
642
+ "bit-set",
643
+ "bitflags 2.13.0",
644
+ "codespan-reporting",
645
+ "hexf-parse",
646
+ "indexmap",
647
+ "log",
648
+ "num-traits",
649
+ "rustc-hash",
650
+ "spirv",
651
+ "termcolor",
652
+ "thiserror",
653
+ "unicode-xid",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "ndarray"
658
+ version = "0.15.6"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
661
+ dependencies = [
662
+ "matrixmultiply",
663
+ "num-complex 0.4.6",
664
+ "num-integer",
665
+ "num-traits",
666
+ "rawpointer",
667
+ "rayon",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "ndk-sys"
672
+ version = "0.5.0+25.2.9519653"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
675
+ dependencies = [
676
+ "jni-sys 0.3.1",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "num-complex"
681
+ version = "0.2.4"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "b6b19411a9719e753aff12e5187b74d60d3dc449ec3f4dc21e3989c3f554bc95"
684
+ dependencies = [
685
+ "autocfg",
686
+ "num-traits",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "num-complex"
691
+ version = "0.4.6"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
694
+ dependencies = [
695
+ "num-traits",
696
+ ]
697
+
698
+ [[package]]
699
+ name = "num-integer"
700
+ version = "0.1.46"
701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
702
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
703
+ dependencies = [
704
+ "num-traits",
705
+ ]
706
+
707
+ [[package]]
708
+ name = "num-traits"
709
+ version = "0.2.19"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
712
+ dependencies = [
713
+ "autocfg",
714
+ "libm",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "num_cpus"
719
+ version = "1.17.0"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
722
+ dependencies = [
723
+ "hermit-abi",
724
+ "libc",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "numpy"
729
+ version = "0.21.0"
730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
731
+ checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
732
+ dependencies = [
733
+ "libc",
734
+ "ndarray",
735
+ "num-complex 0.4.6",
736
+ "num-integer",
737
+ "num-traits",
738
+ "pyo3",
739
+ "rustc-hash",
740
+ ]
741
+
742
+ [[package]]
743
+ name = "objc"
744
+ version = "0.2.7"
745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
746
+ checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
747
+ dependencies = [
748
+ "malloc_buf",
749
+ "objc_exception",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "objc_exception"
754
+ version = "0.1.2"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "ad970fb455818ad6cba4c122ad012fae53ae8b4795f86378bce65e4f6bab2ca4"
757
+ dependencies = [
758
+ "cc",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "once_cell"
763
+ version = "1.21.4"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
766
+
767
+ [[package]]
768
+ name = "parking_lot"
769
+ version = "0.12.5"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
772
+ dependencies = [
773
+ "lock_api",
774
+ "parking_lot_core",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "parking_lot_core"
779
+ version = "0.9.12"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
782
+ dependencies = [
783
+ "cfg-if",
784
+ "libc",
785
+ "redox_syscall",
786
+ "smallvec",
787
+ "windows-link",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "paste"
792
+ version = "1.0.15"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
795
+
796
+ [[package]]
797
+ name = "pin-project-lite"
798
+ version = "0.2.17"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
801
+
802
+ [[package]]
803
+ name = "pkg-config"
804
+ version = "0.3.33"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
807
+
808
+ [[package]]
809
+ name = "pollster"
810
+ version = "0.3.0"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2"
813
+
814
+ [[package]]
815
+ name = "portable-atomic"
816
+ version = "1.13.1"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
819
+
820
+ [[package]]
821
+ name = "ppv-lite86"
822
+ version = "0.2.21"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
825
+ dependencies = [
826
+ "zerocopy",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "presser"
831
+ version = "0.3.1"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
834
+
835
+ [[package]]
836
+ name = "proc-macro2"
837
+ version = "1.0.106"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
840
+ dependencies = [
841
+ "unicode-ident",
842
+ ]
843
+
844
+ [[package]]
845
+ name = "profiling"
846
+ version = "1.0.18"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
849
+
850
+ [[package]]
851
+ name = "pyo3"
852
+ version = "0.21.2"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
855
+ dependencies = [
856
+ "cfg-if",
857
+ "indoc",
858
+ "libc",
859
+ "memoffset",
860
+ "parking_lot",
861
+ "portable-atomic",
862
+ "pyo3-build-config",
863
+ "pyo3-ffi",
864
+ "pyo3-macros",
865
+ "unindent",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "pyo3-build-config"
870
+ version = "0.21.2"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
873
+ dependencies = [
874
+ "once_cell",
875
+ "target-lexicon",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "pyo3-ffi"
880
+ version = "0.21.2"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
883
+ dependencies = [
884
+ "libc",
885
+ "pyo3-build-config",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "pyo3-macros"
890
+ version = "0.21.2"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
893
+ dependencies = [
894
+ "proc-macro2",
895
+ "pyo3-macros-backend",
896
+ "quote",
897
+ "syn 2.0.118",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "pyo3-macros-backend"
902
+ version = "0.21.2"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
905
+ dependencies = [
906
+ "heck",
907
+ "proc-macro2",
908
+ "pyo3-build-config",
909
+ "quote",
910
+ "syn 2.0.118",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "quote"
915
+ version = "1.0.46"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
918
+ dependencies = [
919
+ "proc-macro2",
920
+ ]
921
+
922
+ [[package]]
923
+ name = "rand"
924
+ version = "0.8.7"
925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
926
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
927
+ dependencies = [
928
+ "libc",
929
+ "rand_chacha",
930
+ "rand_core",
931
+ ]
932
+
933
+ [[package]]
934
+ name = "rand_chacha"
935
+ version = "0.3.1"
936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
937
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
938
+ dependencies = [
939
+ "ppv-lite86",
940
+ "rand_core",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "rand_core"
945
+ version = "0.6.4"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
948
+ dependencies = [
949
+ "getrandom",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "range-alloc"
954
+ version = "0.1.5"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "ca45419789ae5a7899559e9512e58ca889e41f04f1f2445e9f4b290ceccd1d08"
957
+
958
+ [[package]]
959
+ name = "raw-window-handle"
960
+ version = "0.6.2"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
963
+
964
+ [[package]]
965
+ name = "rawpointer"
966
+ version = "0.2.1"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
969
+
970
+ [[package]]
971
+ name = "rayon"
972
+ version = "1.12.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
975
+ dependencies = [
976
+ "either",
977
+ "rayon-core",
978
+ ]
979
+
980
+ [[package]]
981
+ name = "rayon-core"
982
+ version = "1.13.0"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
985
+ dependencies = [
986
+ "crossbeam-deque",
987
+ "crossbeam-utils",
988
+ ]
989
+
990
+ [[package]]
991
+ name = "redox_syscall"
992
+ version = "0.5.18"
993
+ source = "registry+https://github.com/rust-lang/crates.io-index"
994
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
995
+ dependencies = [
996
+ "bitflags 2.13.0",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "renderdoc-sys"
1001
+ version = "1.1.0"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
1004
+
1005
+ [[package]]
1006
+ name = "rustc-hash"
1007
+ version = "1.1.0"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1010
+
1011
+ [[package]]
1012
+ name = "rustversion"
1013
+ version = "1.0.23"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1016
+
1017
+ [[package]]
1018
+ name = "scopeguard"
1019
+ version = "1.2.0"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1022
+
1023
+ [[package]]
1024
+ name = "shlex"
1025
+ version = "2.0.1"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1028
+
1029
+ [[package]]
1030
+ name = "slab"
1031
+ version = "0.4.12"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1034
+
1035
+ [[package]]
1036
+ name = "slotmap"
1037
+ version = "1.1.1"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
1040
+ dependencies = [
1041
+ "version_check",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "smallvec"
1046
+ version = "1.15.2"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1049
+
1050
+ [[package]]
1051
+ name = "spirv"
1052
+ version = "0.3.0+sdk-1.3.268.0"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
1055
+ dependencies = [
1056
+ "bitflags 2.13.0",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "sprs"
1061
+ version = "0.11.4"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "6dca58a33be2188d4edc71534f8bafa826e787cc28ca1c47f31be3423f0d6e55"
1064
+ dependencies = [
1065
+ "alga",
1066
+ "ndarray",
1067
+ "num-complex 0.4.6",
1068
+ "num-traits",
1069
+ "num_cpus",
1070
+ "rayon",
1071
+ "smallvec",
1072
+ ]
1073
+
1074
+ [[package]]
1075
+ name = "static_assertions"
1076
+ version = "1.1.0"
1077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1078
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1079
+
1080
+ [[package]]
1081
+ name = "syn"
1082
+ version = "1.0.109"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1085
+ dependencies = [
1086
+ "proc-macro2",
1087
+ "quote",
1088
+ "unicode-ident",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "syn"
1093
+ version = "2.0.118"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1096
+ dependencies = [
1097
+ "proc-macro2",
1098
+ "quote",
1099
+ "unicode-ident",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "target-lexicon"
1104
+ version = "0.12.16"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1107
+
1108
+ [[package]]
1109
+ name = "termcolor"
1110
+ version = "1.4.1"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1113
+ dependencies = [
1114
+ "winapi-util",
1115
+ ]
1116
+
1117
+ [[package]]
1118
+ name = "thermite-binding"
1119
+ version = "0.1.0"
1120
+ dependencies = [
1121
+ "ndarray",
1122
+ "numpy",
1123
+ "pyo3",
1124
+ "sprs",
1125
+ "thermite-core",
1126
+ "thermite-gpu",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "thermite-core"
1131
+ version = "1.0.0"
1132
+ dependencies = [
1133
+ "ndarray",
1134
+ "rand",
1135
+ "rayon",
1136
+ "sprs",
1137
+ "thermite-gpu",
1138
+ ]
1139
+
1140
+ [[package]]
1141
+ name = "thermite-gpu"
1142
+ version = "1.0.0"
1143
+ dependencies = [
1144
+ "bytemuck",
1145
+ "ndarray",
1146
+ "pollster",
1147
+ "rayon",
1148
+ "wgpu",
1149
+ ]
1150
+
1151
+ [[package]]
1152
+ name = "thiserror"
1153
+ version = "1.0.69"
1154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1155
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1156
+ dependencies = [
1157
+ "thiserror-impl",
1158
+ ]
1159
+
1160
+ [[package]]
1161
+ name = "thiserror-impl"
1162
+ version = "1.0.69"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1165
+ dependencies = [
1166
+ "proc-macro2",
1167
+ "quote",
1168
+ "syn 2.0.118",
1169
+ ]
1170
+
1171
+ [[package]]
1172
+ name = "unicode-ident"
1173
+ version = "1.0.24"
1174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1175
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1176
+
1177
+ [[package]]
1178
+ name = "unicode-width"
1179
+ version = "0.1.14"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1182
+
1183
+ [[package]]
1184
+ name = "unicode-xid"
1185
+ version = "0.2.6"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1188
+
1189
+ [[package]]
1190
+ name = "unindent"
1191
+ version = "0.2.4"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1194
+
1195
+ [[package]]
1196
+ name = "version_check"
1197
+ version = "0.9.5"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1200
+
1201
+ [[package]]
1202
+ name = "wasi"
1203
+ version = "0.11.1+wasi-snapshot-preview1"
1204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1205
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1206
+
1207
+ [[package]]
1208
+ name = "wasm-bindgen"
1209
+ version = "0.2.126"
1210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1211
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
1212
+ dependencies = [
1213
+ "cfg-if",
1214
+ "once_cell",
1215
+ "rustversion",
1216
+ "wasm-bindgen-macro",
1217
+ "wasm-bindgen-shared",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "wasm-bindgen-futures"
1222
+ version = "0.4.76"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
1225
+ dependencies = [
1226
+ "js-sys",
1227
+ "wasm-bindgen",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "wasm-bindgen-macro"
1232
+ version = "0.2.126"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
1235
+ dependencies = [
1236
+ "quote",
1237
+ "wasm-bindgen-macro-support",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "wasm-bindgen-macro-support"
1242
+ version = "0.2.126"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
1245
+ dependencies = [
1246
+ "bumpalo",
1247
+ "proc-macro2",
1248
+ "quote",
1249
+ "syn 2.0.118",
1250
+ "wasm-bindgen-shared",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "wasm-bindgen-shared"
1255
+ version = "0.2.126"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
1258
+ dependencies = [
1259
+ "unicode-ident",
1260
+ ]
1261
+
1262
+ [[package]]
1263
+ name = "web-sys"
1264
+ version = "0.3.103"
1265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1266
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
1267
+ dependencies = [
1268
+ "js-sys",
1269
+ "wasm-bindgen",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "wgpu"
1274
+ version = "0.19.4"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "cbd7311dbd2abcfebaabf1841a2824ed7c8be443a0f29166e5d3c6a53a762c01"
1277
+ dependencies = [
1278
+ "arrayvec",
1279
+ "cfg-if",
1280
+ "cfg_aliases",
1281
+ "js-sys",
1282
+ "log",
1283
+ "naga",
1284
+ "parking_lot",
1285
+ "profiling",
1286
+ "raw-window-handle",
1287
+ "smallvec",
1288
+ "static_assertions",
1289
+ "wasm-bindgen",
1290
+ "wasm-bindgen-futures",
1291
+ "web-sys",
1292
+ "wgpu-core",
1293
+ "wgpu-hal",
1294
+ "wgpu-types",
1295
+ ]
1296
+
1297
+ [[package]]
1298
+ name = "wgpu-core"
1299
+ version = "0.19.4"
1300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1301
+ checksum = "28b94525fc99ba9e5c9a9e24764f2bc29bad0911a7446c12f446a8277369bf3a"
1302
+ dependencies = [
1303
+ "arrayvec",
1304
+ "bit-vec",
1305
+ "bitflags 2.13.0",
1306
+ "cfg_aliases",
1307
+ "codespan-reporting",
1308
+ "indexmap",
1309
+ "log",
1310
+ "naga",
1311
+ "once_cell",
1312
+ "parking_lot",
1313
+ "profiling",
1314
+ "raw-window-handle",
1315
+ "rustc-hash",
1316
+ "smallvec",
1317
+ "thiserror",
1318
+ "web-sys",
1319
+ "wgpu-hal",
1320
+ "wgpu-types",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "wgpu-hal"
1325
+ version = "0.19.5"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "bfabcfc55fd86611a855816326b2d54c3b2fd7972c27ce414291562650552703"
1328
+ dependencies = [
1329
+ "android_system_properties",
1330
+ "arrayvec",
1331
+ "ash",
1332
+ "bit-set",
1333
+ "bitflags 2.13.0",
1334
+ "block",
1335
+ "cfg_aliases",
1336
+ "core-graphics-types",
1337
+ "d3d12",
1338
+ "glow",
1339
+ "glutin_wgl_sys",
1340
+ "gpu-alloc",
1341
+ "gpu-allocator",
1342
+ "gpu-descriptor",
1343
+ "hassle-rs",
1344
+ "js-sys",
1345
+ "khronos-egl",
1346
+ "libc",
1347
+ "libloading 0.8.9",
1348
+ "log",
1349
+ "metal",
1350
+ "naga",
1351
+ "ndk-sys",
1352
+ "objc",
1353
+ "once_cell",
1354
+ "parking_lot",
1355
+ "profiling",
1356
+ "range-alloc",
1357
+ "raw-window-handle",
1358
+ "renderdoc-sys",
1359
+ "rustc-hash",
1360
+ "smallvec",
1361
+ "thiserror",
1362
+ "wasm-bindgen",
1363
+ "web-sys",
1364
+ "wgpu-types",
1365
+ "winapi",
1366
+ ]
1367
+
1368
+ [[package]]
1369
+ name = "wgpu-types"
1370
+ version = "0.19.2"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "b671ff9fb03f78b46ff176494ee1ebe7d603393f42664be55b64dc8d53969805"
1373
+ dependencies = [
1374
+ "bitflags 2.13.0",
1375
+ "js-sys",
1376
+ "web-sys",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "widestring"
1381
+ version = "1.2.1"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
1384
+
1385
+ [[package]]
1386
+ name = "winapi"
1387
+ version = "0.3.9"
1388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1389
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1390
+ dependencies = [
1391
+ "winapi-i686-pc-windows-gnu",
1392
+ "winapi-x86_64-pc-windows-gnu",
1393
+ ]
1394
+
1395
+ [[package]]
1396
+ name = "winapi-i686-pc-windows-gnu"
1397
+ version = "0.4.0"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1400
+
1401
+ [[package]]
1402
+ name = "winapi-util"
1403
+ version = "0.1.11"
1404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1405
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1406
+ dependencies = [
1407
+ "windows-sys",
1408
+ ]
1409
+
1410
+ [[package]]
1411
+ name = "winapi-x86_64-pc-windows-gnu"
1412
+ version = "0.4.0"
1413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1414
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1415
+
1416
+ [[package]]
1417
+ name = "windows"
1418
+ version = "0.52.0"
1419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1420
+ checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
1421
+ dependencies = [
1422
+ "windows-core",
1423
+ "windows-targets",
1424
+ ]
1425
+
1426
+ [[package]]
1427
+ name = "windows-core"
1428
+ version = "0.52.0"
1429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1430
+ checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
1431
+ dependencies = [
1432
+ "windows-targets",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "windows-link"
1437
+ version = "0.2.1"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1440
+
1441
+ [[package]]
1442
+ name = "windows-sys"
1443
+ version = "0.61.2"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1446
+ dependencies = [
1447
+ "windows-link",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "windows-targets"
1452
+ version = "0.52.6"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1455
+ dependencies = [
1456
+ "windows_aarch64_gnullvm",
1457
+ "windows_aarch64_msvc",
1458
+ "windows_i686_gnu",
1459
+ "windows_i686_gnullvm",
1460
+ "windows_i686_msvc",
1461
+ "windows_x86_64_gnu",
1462
+ "windows_x86_64_gnullvm",
1463
+ "windows_x86_64_msvc",
1464
+ ]
1465
+
1466
+ [[package]]
1467
+ name = "windows_aarch64_gnullvm"
1468
+ version = "0.52.6"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1471
+
1472
+ [[package]]
1473
+ name = "windows_aarch64_msvc"
1474
+ version = "0.52.6"
1475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1476
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1477
+
1478
+ [[package]]
1479
+ name = "windows_i686_gnu"
1480
+ version = "0.52.6"
1481
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1482
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1483
+
1484
+ [[package]]
1485
+ name = "windows_i686_gnullvm"
1486
+ version = "0.52.6"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1489
+
1490
+ [[package]]
1491
+ name = "windows_i686_msvc"
1492
+ version = "0.52.6"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1495
+
1496
+ [[package]]
1497
+ name = "windows_x86_64_gnu"
1498
+ version = "0.52.6"
1499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1500
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1501
+
1502
+ [[package]]
1503
+ name = "windows_x86_64_gnullvm"
1504
+ version = "0.52.6"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1507
+
1508
+ [[package]]
1509
+ name = "windows_x86_64_msvc"
1510
+ version = "0.52.6"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1513
+
1514
+ [[package]]
1515
+ name = "xml-rs"
1516
+ version = "0.8.28"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
1519
+
1520
+ [[package]]
1521
+ name = "zerocopy"
1522
+ version = "0.8.54"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "b7cbbc0a705a0fd05cc3676525980d2bf5a9bc4adac6d6475209a7887cf59d19"
1525
+ dependencies = [
1526
+ "zerocopy-derive",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "zerocopy-derive"
1531
+ version = "0.8.54"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "e2e817b7b52d0c7358d3246da9d69935ebb18116b2b102b4230dac079b4862f5"
1534
+ dependencies = [
1535
+ "proc-macro2",
1536
+ "quote",
1537
+ "syn 2.0.118",
1538
+ ]