plskit 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. plskit-0.1.0/Cargo.lock +2183 -0
  2. plskit-0.1.0/Cargo.toml +41 -0
  3. plskit-0.1.0/LICENSE +674 -0
  4. plskit-0.1.0/PKG-INFO +102 -0
  5. plskit-0.1.0/plskit-py/.python-version +1 -0
  6. plskit-0.1.0/plskit-py/Cargo.toml +25 -0
  7. plskit-0.1.0/plskit-py/README.md +83 -0
  8. plskit-0.1.0/plskit-py/python/plskit/__init__.py +55 -0
  9. plskit-0.1.0/plskit-py/python/plskit/_api.py +706 -0
  10. plskit-0.1.0/plskit-py/python/plskit/_errors.py +38 -0
  11. plskit-0.1.0/plskit-py/python/plskit/_results.py +202 -0
  12. plskit-0.1.0/plskit-py/src/lib.rs +1123 -0
  13. plskit-0.1.0/plskit-py/tests/test_confirmatory_test.py +45 -0
  14. plskit-0.1.0/plskit-py/tests/test_corpus.py +254 -0
  15. plskit-0.1.0/plskit-py/tests/test_corpus_hash.py +23 -0
  16. plskit-0.1.0/plskit-py/tests/test_errors.py +11 -0
  17. plskit-0.1.0/plskit-py/tests/test_find_k_optimal.py +81 -0
  18. plskit-0.1.0/plskit-py/tests/test_find_k_sequence.py +41 -0
  19. plskit-0.1.0/plskit-py/tests/test_pls1_confirmatory_ci.py +363 -0
  20. plskit-0.1.0/plskit-py/tests/test_pls1_fit.py +124 -0
  21. plskit-0.1.0/plskit-py/tests/test_pls1_perm_null.py +115 -0
  22. plskit-0.1.0/plskit-py/tests/test_pls1_rotation_stability.py +163 -0
  23. plskit-0.1.0/plskit-py/tests/test_predict.py +13 -0
  24. plskit-0.1.0/plskit-py/tests/test_preprocess.py +69 -0
  25. plskit-0.1.0/plskit-py/tests/test_rotate.py +160 -0
  26. plskit-0.1.0/plskit-py/tests/test_weights_confirmatory.py +29 -0
  27. plskit-0.1.0/plskit-py/tests/test_weights_find_k.py +42 -0
  28. plskit-0.1.0/plskit-py/tests/test_weights_resampling_degenerate.py +49 -0
  29. plskit-0.1.0/plskit-py/tests/test_weights_rotation_stability.py +45 -0
  30. plskit-0.1.0/plskit-py/tests/test_weights_validation.py +62 -0
  31. plskit-0.1.0/plskit-py/tests/test_weights_wls_reference.py +22 -0
  32. plskit-0.1.0/plskit-rs/Cargo.toml +29 -0
  33. plskit-0.1.0/plskit-rs/README.md +102 -0
  34. plskit-0.1.0/plskit-rs/src/error.rs +233 -0
  35. plskit-0.1.0/plskit-rs/src/find_k.rs +757 -0
  36. plskit-0.1.0/plskit-rs/src/fit.rs +532 -0
  37. plskit-0.1.0/plskit-rs/src/lib.rs +69 -0
  38. plskit-0.1.0/plskit-rs/src/linalg.rs +580 -0
  39. plskit-0.1.0/plskit-rs/src/perm_null.rs +770 -0
  40. plskit-0.1.0/plskit-rs/src/predict.rs +113 -0
  41. plskit-0.1.0/plskit-rs/src/preprocess.rs +100 -0
  42. plskit-0.1.0/plskit-rs/src/resample.rs +154 -0
  43. plskit-0.1.0/plskit-rs/src/rng.rs +84 -0
  44. plskit-0.1.0/plskit-rs/src/rotate.rs +538 -0
  45. plskit-0.1.0/plskit-rs/src/rotation_stability.rs +998 -0
  46. plskit-0.1.0/plskit-rs/src/sequential.rs +315 -0
  47. plskit-0.1.0/plskit-rs/src/signal_test.rs +1282 -0
  48. plskit-0.1.0/plskit-rs/src/subsample.rs +1420 -0
  49. plskit-0.1.0/plskit-rs/tests/byte_parity.rs +213 -0
  50. plskit-0.1.0/plskit-rs/tests/corpus.rs +110 -0
  51. plskit-0.1.0/plskit-rs/tests/coverage_mc.rs +301 -0
  52. plskit-0.1.0/plskit-rs/tests/preprocess_basic.rs +83 -0
  53. plskit-0.1.0/plskit-rs/tests/rotate_ssd_parity.rs +56 -0
  54. plskit-0.1.0/plskit-rs/tests/ssd_reference_seed42.json +123 -0
  55. plskit-0.1.0/plskit-rs/tests/weights_fit_basic.rs +177 -0
  56. plskit-0.1.0/plskit-rs/tests/weights_integer_replication_parity.rs +60 -0
  57. plskit-0.1.0/plskit-rs/tests/weights_n_eff_kish.rs +27 -0
  58. plskit-0.1.0/plskit-rs/tests/weights_row_scaling_identity.rs +61 -0
  59. plskit-0.1.0/plskit-rs/tests/weights_uniform_invariance.rs +40 -0
  60. plskit-0.1.0/pyproject.toml +49 -0
@@ -0,0 +1,2183 @@
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 = "anyhow"
22
+ version = "1.0.102"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
25
+
26
+ [[package]]
27
+ name = "approx"
28
+ version = "0.5.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
31
+ dependencies = [
32
+ "num-traits",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "arbitrary"
37
+ version = "1.4.2"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
40
+ dependencies = [
41
+ "derive_arbitrary",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "atomic-wait"
46
+ version = "1.1.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "a55b94919229f2c42292fd71ffa4b75e83193bffdd77b1e858cd55fd2d0b0ea8"
49
+ dependencies = [
50
+ "libc",
51
+ "windows-sys 0.42.0",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "autocfg"
56
+ version = "1.5.0"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
59
+
60
+ [[package]]
61
+ name = "bit-set"
62
+ version = "0.8.0"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
65
+ dependencies = [
66
+ "bit-vec",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "bit-vec"
71
+ version = "0.8.0"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
74
+
75
+ [[package]]
76
+ name = "bitflags"
77
+ version = "2.11.1"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
80
+
81
+ [[package]]
82
+ name = "block-buffer"
83
+ version = "0.10.4"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
86
+ dependencies = [
87
+ "generic-array",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "block-buffer"
92
+ version = "0.12.0"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "cdd35008169921d80bc60d3d0ab416eecb028c4cd653352907921d95084790be"
95
+ dependencies = [
96
+ "hybrid-array",
97
+ ]
98
+
99
+ [[package]]
100
+ name = "bumpalo"
101
+ version = "3.20.2"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
104
+
105
+ [[package]]
106
+ name = "bytemuck"
107
+ version = "1.25.0"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
110
+ dependencies = [
111
+ "bytemuck_derive",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bytemuck_derive"
116
+ version = "1.10.2"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
119
+ dependencies = [
120
+ "proc-macro2",
121
+ "quote",
122
+ "syn 2.0.117",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "byteorder"
127
+ version = "1.5.0"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
130
+
131
+ [[package]]
132
+ name = "cc"
133
+ version = "1.2.62"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
136
+ dependencies = [
137
+ "find-msvc-tools",
138
+ "shlex",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "cfg-if"
143
+ version = "1.0.4"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
146
+
147
+ [[package]]
148
+ name = "chacha20"
149
+ version = "0.10.0"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
152
+ dependencies = [
153
+ "cfg-if",
154
+ "cpufeatures 0.3.0",
155
+ "rand_core 0.10.1",
156
+ ]
157
+
158
+ [[package]]
159
+ name = "const-oid"
160
+ version = "0.10.2"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
163
+
164
+ [[package]]
165
+ name = "cpufeatures"
166
+ version = "0.2.17"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
169
+ dependencies = [
170
+ "libc",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "cpufeatures"
175
+ version = "0.3.0"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
178
+ dependencies = [
179
+ "libc",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "crc32fast"
184
+ version = "1.5.0"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
187
+ dependencies = [
188
+ "cfg-if",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "crossbeam"
193
+ version = "0.8.4"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "1137cd7e7fc0fb5d3c5a8678be38ec56e819125d8d7907411fe24ccb943faca8"
196
+ dependencies = [
197
+ "crossbeam-channel",
198
+ "crossbeam-deque",
199
+ "crossbeam-epoch",
200
+ "crossbeam-queue",
201
+ "crossbeam-utils",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "crossbeam-channel"
206
+ version = "0.5.15"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
209
+ dependencies = [
210
+ "crossbeam-utils",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "crossbeam-deque"
215
+ version = "0.8.6"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
218
+ dependencies = [
219
+ "crossbeam-epoch",
220
+ "crossbeam-utils",
221
+ ]
222
+
223
+ [[package]]
224
+ name = "crossbeam-epoch"
225
+ version = "0.9.18"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
228
+ dependencies = [
229
+ "crossbeam-utils",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "crossbeam-queue"
234
+ version = "0.3.12"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
237
+ dependencies = [
238
+ "crossbeam-utils",
239
+ ]
240
+
241
+ [[package]]
242
+ name = "crossbeam-utils"
243
+ version = "0.8.21"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
246
+
247
+ [[package]]
248
+ name = "crunchy"
249
+ version = "0.2.4"
250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
251
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
252
+
253
+ [[package]]
254
+ name = "crypto-common"
255
+ version = "0.1.7"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
258
+ dependencies = [
259
+ "generic-array",
260
+ "typenum",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "crypto-common"
265
+ version = "0.2.1"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
268
+ dependencies = [
269
+ "hybrid-array",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "defer"
274
+ version = "0.2.1"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "930c7171c8df9fb1782bdf9b918ed9ed2d33d1d22300abb754f9085bc48bf8e8"
277
+
278
+ [[package]]
279
+ name = "derive_arbitrary"
280
+ version = "1.4.2"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
283
+ dependencies = [
284
+ "proc-macro2",
285
+ "quote",
286
+ "syn 2.0.117",
287
+ ]
288
+
289
+ [[package]]
290
+ name = "digest"
291
+ version = "0.10.7"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
294
+ dependencies = [
295
+ "block-buffer 0.10.4",
296
+ "crypto-common 0.1.7",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "digest"
301
+ version = "0.11.3"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "f1dd6dbb5841937940781866fa1281a1ff7bd3bf827091440879f9994983d5c2"
304
+ dependencies = [
305
+ "block-buffer 0.12.0",
306
+ "const-oid",
307
+ "crypto-common 0.2.1",
308
+ ]
309
+
310
+ [[package]]
311
+ name = "dyn-stack"
312
+ version = "0.13.2"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
315
+ dependencies = [
316
+ "bytemuck",
317
+ "dyn-stack-macros",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "dyn-stack-macros"
322
+ version = "0.1.3"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
325
+
326
+ [[package]]
327
+ name = "either"
328
+ version = "1.15.0"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
331
+
332
+ [[package]]
333
+ name = "enum-as-inner"
334
+ version = "0.6.1"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
337
+ dependencies = [
338
+ "heck",
339
+ "proc-macro2",
340
+ "quote",
341
+ "syn 2.0.117",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "equator"
346
+ version = "0.2.2"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
349
+ dependencies = [
350
+ "equator-macro 0.2.1",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "equator"
355
+ version = "0.4.2"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
358
+ dependencies = [
359
+ "equator-macro 0.4.2",
360
+ ]
361
+
362
+ [[package]]
363
+ name = "equator"
364
+ version = "0.6.0"
365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
366
+ checksum = "02da895aab06bbebefb6b2595f6d637b18c9ff629b4cd840965bb3164e4194b0"
367
+ dependencies = [
368
+ "equator-macro 0.6.0",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "equator-macro"
373
+ version = "0.2.1"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
376
+ dependencies = [
377
+ "proc-macro2",
378
+ "quote",
379
+ "syn 2.0.117",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "equator-macro"
384
+ version = "0.4.2"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
387
+ dependencies = [
388
+ "proc-macro2",
389
+ "quote",
390
+ "syn 2.0.117",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "equator-macro"
395
+ version = "0.6.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "2b14b339eb76d07f052cdbad76ca7c1310e56173a138095d3bf42a23c06ef5d8"
398
+
399
+ [[package]]
400
+ name = "equivalent"
401
+ version = "1.0.2"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
404
+
405
+ [[package]]
406
+ name = "errno"
407
+ version = "0.3.14"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
410
+ dependencies = [
411
+ "libc",
412
+ "windows-sys 0.61.2",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "faer"
417
+ version = "0.24.0"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "02d2ecfb80b6f8b0c569e36988a052e64b14d8def9d372390b014e8bf79f299a"
420
+ dependencies = [
421
+ "bytemuck",
422
+ "dyn-stack",
423
+ "equator 0.6.0",
424
+ "faer-traits",
425
+ "gemm",
426
+ "generativity",
427
+ "libm",
428
+ "nano-gemm",
429
+ "npyz",
430
+ "num-complex",
431
+ "num-traits",
432
+ "private-gemm-x86",
433
+ "pulp",
434
+ "rand 0.9.4",
435
+ "rand_distr 0.5.1",
436
+ "rayon",
437
+ "reborrow",
438
+ "spindle",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "faer-traits"
443
+ version = "0.24.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "b87d23ed7ab1f26c0cba0e5b9e061a796fbb7dc170fa8bee6970055a1308bb0f"
446
+ dependencies = [
447
+ "bytemuck",
448
+ "dyn-stack",
449
+ "generativity",
450
+ "libm",
451
+ "num-complex",
452
+ "num-traits",
453
+ "pulp",
454
+ "qd",
455
+ "reborrow",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "fastrand"
460
+ version = "2.4.1"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
463
+
464
+ [[package]]
465
+ name = "find-msvc-tools"
466
+ version = "0.1.9"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
469
+
470
+ [[package]]
471
+ name = "flate2"
472
+ version = "1.1.9"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
475
+ dependencies = [
476
+ "miniz_oxide",
477
+ "zlib-rs",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "fnv"
482
+ version = "1.0.7"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
485
+
486
+ [[package]]
487
+ name = "foldhash"
488
+ version = "0.1.5"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
491
+
492
+ [[package]]
493
+ name = "gemm"
494
+ version = "0.19.0"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "aa0673db364b12263d103b68337a68fbecc541d6f6b61ba72fe438654709eacb"
497
+ dependencies = [
498
+ "dyn-stack",
499
+ "gemm-c32",
500
+ "gemm-c64",
501
+ "gemm-common",
502
+ "gemm-f16",
503
+ "gemm-f32",
504
+ "gemm-f64",
505
+ "num-complex",
506
+ "num-traits",
507
+ "paste",
508
+ "raw-cpuid",
509
+ "seq-macro",
510
+ ]
511
+
512
+ [[package]]
513
+ name = "gemm-c32"
514
+ version = "0.19.0"
515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
516
+ checksum = "086936dbdcb99e37aad81d320f98f670e53c1e55a98bee70573e83f95beb128c"
517
+ dependencies = [
518
+ "dyn-stack",
519
+ "gemm-common",
520
+ "num-complex",
521
+ "num-traits",
522
+ "paste",
523
+ "raw-cpuid",
524
+ "seq-macro",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "gemm-c64"
529
+ version = "0.19.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "20c8aeeeec425959bda4d9827664029ba1501a90a0d1e6228e48bef741db3a3f"
532
+ dependencies = [
533
+ "dyn-stack",
534
+ "gemm-common",
535
+ "num-complex",
536
+ "num-traits",
537
+ "paste",
538
+ "raw-cpuid",
539
+ "seq-macro",
540
+ ]
541
+
542
+ [[package]]
543
+ name = "gemm-common"
544
+ version = "0.19.0"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "88027625910cc9b1085aaaa1c4bc46bb3a36aad323452b33c25b5e4e7c8e2a3e"
547
+ dependencies = [
548
+ "bytemuck",
549
+ "dyn-stack",
550
+ "half",
551
+ "libm",
552
+ "num-complex",
553
+ "num-traits",
554
+ "once_cell",
555
+ "paste",
556
+ "pulp",
557
+ "raw-cpuid",
558
+ "rayon",
559
+ "seq-macro",
560
+ "sysctl",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "gemm-f16"
565
+ version = "0.19.0"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "e3df7a55202e6cd6739d82ae3399c8e0c7e1402859b30e4cb780e61525d9486e"
568
+ dependencies = [
569
+ "dyn-stack",
570
+ "gemm-common",
571
+ "gemm-f32",
572
+ "half",
573
+ "num-complex",
574
+ "num-traits",
575
+ "paste",
576
+ "raw-cpuid",
577
+ "rayon",
578
+ "seq-macro",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "gemm-f32"
583
+ version = "0.19.0"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "02e0b8c9da1fbec6e3e3ab2ce6bc259ef18eb5f6f0d3e4edf54b75f9fd41a81c"
586
+ dependencies = [
587
+ "dyn-stack",
588
+ "gemm-common",
589
+ "num-complex",
590
+ "num-traits",
591
+ "paste",
592
+ "raw-cpuid",
593
+ "seq-macro",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "gemm-f64"
598
+ version = "0.19.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "056131e8f2a521bfab322f804ccd652520c79700d81209e9d9275bbdecaadc6a"
601
+ dependencies = [
602
+ "dyn-stack",
603
+ "gemm-common",
604
+ "num-complex",
605
+ "num-traits",
606
+ "paste",
607
+ "raw-cpuid",
608
+ "seq-macro",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "generativity"
613
+ version = "1.2.1"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "d2c81fb5260e37854d09d5c87183309fd8c555b75289427884b25660bc87a85e"
616
+
617
+ [[package]]
618
+ name = "generator"
619
+ version = "0.8.8"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
622
+ dependencies = [
623
+ "cc",
624
+ "cfg-if",
625
+ "libc",
626
+ "log",
627
+ "rustversion",
628
+ "windows-link",
629
+ "windows-result",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "generic-array"
634
+ version = "0.14.7"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
637
+ dependencies = [
638
+ "typenum",
639
+ "version_check",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "getrandom"
644
+ version = "0.3.4"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
647
+ dependencies = [
648
+ "cfg-if",
649
+ "libc",
650
+ "r-efi 5.3.0",
651
+ "wasip2",
652
+ ]
653
+
654
+ [[package]]
655
+ name = "getrandom"
656
+ version = "0.4.2"
657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
658
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
659
+ dependencies = [
660
+ "cfg-if",
661
+ "libc",
662
+ "r-efi 6.0.0",
663
+ "rand_core 0.10.1",
664
+ "wasip2",
665
+ "wasip3",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "half"
670
+ version = "2.7.1"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
673
+ dependencies = [
674
+ "bytemuck",
675
+ "cfg-if",
676
+ "crunchy",
677
+ "num-traits",
678
+ "zerocopy",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "hashbrown"
683
+ version = "0.15.5"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
686
+ dependencies = [
687
+ "foldhash",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "hashbrown"
692
+ version = "0.17.1"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
695
+
696
+ [[package]]
697
+ name = "heck"
698
+ version = "0.5.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
701
+
702
+ [[package]]
703
+ name = "hermit-abi"
704
+ version = "0.5.2"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
707
+
708
+ [[package]]
709
+ name = "hybrid-array"
710
+ version = "0.4.12"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "9155a582abd142abc056962c29e3ce5ff2ad5469f4246b537ed42c5deba857da"
713
+ dependencies = [
714
+ "typenum",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "id-arena"
719
+ version = "2.3.0"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
722
+
723
+ [[package]]
724
+ name = "indexmap"
725
+ version = "2.14.0"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
728
+ dependencies = [
729
+ "equivalent",
730
+ "hashbrown 0.17.1",
731
+ "serde",
732
+ "serde_core",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "interpol"
737
+ version = "0.2.1"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "eb58032ba748f4010d15912a1855a8a0b1ba9eaad3395b0c171c09b3b356ae50"
740
+ dependencies = [
741
+ "proc-macro2",
742
+ "quote",
743
+ "syn 1.0.109",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "itoa"
748
+ version = "1.0.18"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
751
+
752
+ [[package]]
753
+ name = "lazy_static"
754
+ version = "1.5.0"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
757
+
758
+ [[package]]
759
+ name = "leb128fmt"
760
+ version = "0.1.0"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
763
+
764
+ [[package]]
765
+ name = "libc"
766
+ version = "0.2.186"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
769
+
770
+ [[package]]
771
+ name = "libm"
772
+ version = "0.2.16"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
775
+
776
+ [[package]]
777
+ name = "linux-raw-sys"
778
+ version = "0.12.1"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
781
+
782
+ [[package]]
783
+ name = "log"
784
+ version = "0.4.29"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
787
+
788
+ [[package]]
789
+ name = "loom"
790
+ version = "0.7.2"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
793
+ dependencies = [
794
+ "cfg-if",
795
+ "generator",
796
+ "scoped-tls",
797
+ "tracing",
798
+ "tracing-subscriber",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "matchers"
803
+ version = "0.2.0"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
806
+ dependencies = [
807
+ "regex-automata",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "matrixmultiply"
812
+ version = "0.3.10"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
815
+ dependencies = [
816
+ "autocfg",
817
+ "rawpointer",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "memchr"
822
+ version = "2.8.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
825
+
826
+ [[package]]
827
+ name = "miniz_oxide"
828
+ version = "0.8.9"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
831
+ dependencies = [
832
+ "adler2",
833
+ "simd-adler32",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "nano-gemm"
838
+ version = "0.2.2"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "9e04345dc84b498ff89fe0d38543d1f170da9e43a2c2bcee73a0f9069f72d081"
841
+ dependencies = [
842
+ "equator 0.2.2",
843
+ "nano-gemm-c32",
844
+ "nano-gemm-c64",
845
+ "nano-gemm-codegen",
846
+ "nano-gemm-core",
847
+ "nano-gemm-f32",
848
+ "nano-gemm-f64",
849
+ "num-complex",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "nano-gemm-c32"
854
+ version = "0.2.1"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "0775b1e2520e64deee8fc78b7732e3091fb7585017c0b0f9f4b451757bbbc562"
857
+ dependencies = [
858
+ "nano-gemm-codegen",
859
+ "nano-gemm-core",
860
+ "num-complex",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "nano-gemm-c64"
865
+ version = "0.2.1"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "9af49a20d58816e6b5ee65f64142e50edb5eba152678d4bb7377fcbf63f8437a"
868
+ dependencies = [
869
+ "nano-gemm-codegen",
870
+ "nano-gemm-core",
871
+ "num-complex",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "nano-gemm-codegen"
876
+ version = "0.2.1"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "6cc8d495c791627779477a2cf5df60049f5b165342610eb0d76bee5ff5c5d74c"
879
+
880
+ [[package]]
881
+ name = "nano-gemm-core"
882
+ version = "0.2.1"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "d998dfa644de87a0f8660e5ea511d7cb5c33b5a2d9847b7af57a2565105089f0"
885
+
886
+ [[package]]
887
+ name = "nano-gemm-f32"
888
+ version = "0.2.1"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "879d962e79bc8952e4ad21ca4845a21132540ed3f5e01184b2ff7f720e666523"
891
+ dependencies = [
892
+ "nano-gemm-codegen",
893
+ "nano-gemm-core",
894
+ ]
895
+
896
+ [[package]]
897
+ name = "nano-gemm-f64"
898
+ version = "0.2.1"
899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
900
+ checksum = "b9a513473dce7dc00c7e7c318481ca4494034e76997218d8dad51bd9f007a815"
901
+ dependencies = [
902
+ "nano-gemm-codegen",
903
+ "nano-gemm-core",
904
+ ]
905
+
906
+ [[package]]
907
+ name = "ndarray"
908
+ version = "0.17.2"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
911
+ dependencies = [
912
+ "matrixmultiply",
913
+ "num-complex",
914
+ "num-integer",
915
+ "num-traits",
916
+ "portable-atomic",
917
+ "portable-atomic-util",
918
+ "rawpointer",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "ndarray-npy"
923
+ version = "0.10.0"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "58e8a348bca0075000d999d750420d74434fd0d3e0993b456554f885e7657a11"
926
+ dependencies = [
927
+ "byteorder",
928
+ "ndarray",
929
+ "num-complex",
930
+ "num-traits",
931
+ "py_literal",
932
+ "zip",
933
+ ]
934
+
935
+ [[package]]
936
+ name = "npyz"
937
+ version = "0.8.4"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "9f0e759e014e630f90af745101b614f761306ddc541681e546649068e25ec1b9"
940
+ dependencies = [
941
+ "byteorder",
942
+ "num-bigint",
943
+ "py_literal",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "nu-ansi-term"
948
+ version = "0.50.3"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
951
+ dependencies = [
952
+ "windows-sys 0.61.2",
953
+ ]
954
+
955
+ [[package]]
956
+ name = "num-bigint"
957
+ version = "0.4.6"
958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
959
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
960
+ dependencies = [
961
+ "num-integer",
962
+ "num-traits",
963
+ ]
964
+
965
+ [[package]]
966
+ name = "num-complex"
967
+ version = "0.4.6"
968
+ source = "registry+https://github.com/rust-lang/crates.io-index"
969
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
970
+ dependencies = [
971
+ "bytemuck",
972
+ "num-traits",
973
+ "rand 0.8.6",
974
+ ]
975
+
976
+ [[package]]
977
+ name = "num-integer"
978
+ version = "0.1.46"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
981
+ dependencies = [
982
+ "num-traits",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "num-traits"
987
+ version = "0.2.19"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
990
+ dependencies = [
991
+ "autocfg",
992
+ "libm",
993
+ ]
994
+
995
+ [[package]]
996
+ name = "num_cpus"
997
+ version = "1.17.0"
998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
999
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1000
+ dependencies = [
1001
+ "hermit-abi",
1002
+ "libc",
1003
+ ]
1004
+
1005
+ [[package]]
1006
+ name = "numpy"
1007
+ version = "0.28.0"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "778da78c64ddc928ebf5ad9df5edf0789410ff3bdbf3619aed51cd789a6af1e2"
1010
+ dependencies = [
1011
+ "libc",
1012
+ "ndarray",
1013
+ "num-complex",
1014
+ "num-integer",
1015
+ "num-traits",
1016
+ "pyo3",
1017
+ "pyo3-build-config",
1018
+ "rustc-hash",
1019
+ ]
1020
+
1021
+ [[package]]
1022
+ name = "once_cell"
1023
+ version = "1.21.4"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1026
+
1027
+ [[package]]
1028
+ name = "paste"
1029
+ version = "1.0.15"
1030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1031
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1032
+
1033
+ [[package]]
1034
+ name = "pest"
1035
+ version = "2.8.6"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
1038
+ dependencies = [
1039
+ "memchr",
1040
+ "ucd-trie",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "pest_derive"
1045
+ version = "2.8.6"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
1048
+ dependencies = [
1049
+ "pest",
1050
+ "pest_generator",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "pest_generator"
1055
+ version = "2.8.6"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
1058
+ dependencies = [
1059
+ "pest",
1060
+ "pest_meta",
1061
+ "proc-macro2",
1062
+ "quote",
1063
+ "syn 2.0.117",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "pest_meta"
1068
+ version = "2.8.6"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
1071
+ dependencies = [
1072
+ "pest",
1073
+ "sha2 0.10.9",
1074
+ ]
1075
+
1076
+ [[package]]
1077
+ name = "pin-project-lite"
1078
+ version = "0.2.17"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1081
+
1082
+ [[package]]
1083
+ name = "plskit"
1084
+ version = "0.1.0"
1085
+ dependencies = [
1086
+ "approx",
1087
+ "faer",
1088
+ "getrandom 0.4.2",
1089
+ "ndarray",
1090
+ "ndarray-npy",
1091
+ "procrustes",
1092
+ "proptest",
1093
+ "rand 0.10.1",
1094
+ "rand_chacha 0.10.0",
1095
+ "rayon",
1096
+ "serde_json",
1097
+ "thiserror 2.0.18",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "plskit-py"
1102
+ version = "0.1.0"
1103
+ dependencies = [
1104
+ "faer",
1105
+ "ndarray",
1106
+ "numpy",
1107
+ "plskit",
1108
+ "pyo3",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "plskit-testdata-gen"
1113
+ version = "0.1.0"
1114
+ dependencies = [
1115
+ "anyhow",
1116
+ "faer",
1117
+ "ndarray",
1118
+ "ndarray-npy",
1119
+ "plskit",
1120
+ "rand 0.10.1",
1121
+ "rand_chacha 0.10.0",
1122
+ "rand_distr 0.6.0",
1123
+ "serde",
1124
+ "serde_json",
1125
+ "sha2 0.11.0",
1126
+ "tempfile",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "portable-atomic"
1131
+ version = "1.13.1"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1134
+
1135
+ [[package]]
1136
+ name = "portable-atomic-util"
1137
+ version = "0.2.7"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
1140
+ dependencies = [
1141
+ "portable-atomic",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "ppv-lite86"
1146
+ version = "0.2.21"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1149
+ dependencies = [
1150
+ "zerocopy",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "prettyplease"
1155
+ version = "0.2.37"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1158
+ dependencies = [
1159
+ "proc-macro2",
1160
+ "syn 2.0.117",
1161
+ ]
1162
+
1163
+ [[package]]
1164
+ name = "private-gemm-x86"
1165
+ version = "0.1.20"
1166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1167
+ checksum = "0af8c3e5087969c323f667ccb4b789fa0954f5aa650550e38e81cf9108be21b5"
1168
+ dependencies = [
1169
+ "crossbeam",
1170
+ "defer",
1171
+ "interpol",
1172
+ "num_cpus",
1173
+ "raw-cpuid",
1174
+ "rayon",
1175
+ "spindle",
1176
+ "sysctl",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "proc-macro2"
1181
+ version = "1.0.106"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1184
+ dependencies = [
1185
+ "unicode-ident",
1186
+ ]
1187
+
1188
+ [[package]]
1189
+ name = "procrustes"
1190
+ version = "0.1.1"
1191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1192
+ checksum = "49569c4c24f82e784a764db2d3e808a851e1666d5b12af3d6da0fefb08f9fdff"
1193
+ dependencies = [
1194
+ "faer",
1195
+ "thiserror 1.0.69",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "proptest"
1200
+ version = "1.11.0"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1203
+ dependencies = [
1204
+ "bit-set",
1205
+ "bit-vec",
1206
+ "bitflags",
1207
+ "num-traits",
1208
+ "rand 0.9.4",
1209
+ "rand_chacha 0.9.0",
1210
+ "rand_xorshift",
1211
+ "regex-syntax",
1212
+ "rusty-fork",
1213
+ "tempfile",
1214
+ "unarray",
1215
+ ]
1216
+
1217
+ [[package]]
1218
+ name = "pulp"
1219
+ version = "0.22.2"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "2e205bb30d5b916c55e584c22201771bcf2bad9aabd5d4127f38387140c38632"
1222
+ dependencies = [
1223
+ "bytemuck",
1224
+ "cfg-if",
1225
+ "libm",
1226
+ "num-complex",
1227
+ "paste",
1228
+ "pulp-wasm-simd-flag",
1229
+ "raw-cpuid",
1230
+ "reborrow",
1231
+ "version_check",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "pulp-wasm-simd-flag"
1236
+ version = "0.1.0"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "40e24eee682d89fb193496edf918a7f407d30175b2e785fe057e4392dfd182e0"
1239
+
1240
+ [[package]]
1241
+ name = "py_literal"
1242
+ version = "0.4.0"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "102df7a3d46db9d3891f178dcc826dc270a6746277a9ae6436f8d29fd490a8e1"
1245
+ dependencies = [
1246
+ "num-bigint",
1247
+ "num-complex",
1248
+ "num-traits",
1249
+ "pest",
1250
+ "pest_derive",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "pyo3"
1255
+ version = "0.28.3"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1258
+ dependencies = [
1259
+ "libc",
1260
+ "once_cell",
1261
+ "portable-atomic",
1262
+ "pyo3-build-config",
1263
+ "pyo3-ffi",
1264
+ "pyo3-macros",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "pyo3-build-config"
1269
+ version = "0.28.3"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1272
+ dependencies = [
1273
+ "target-lexicon",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "pyo3-ffi"
1278
+ version = "0.28.3"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1281
+ dependencies = [
1282
+ "libc",
1283
+ "pyo3-build-config",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "pyo3-macros"
1288
+ version = "0.28.3"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1291
+ dependencies = [
1292
+ "proc-macro2",
1293
+ "pyo3-macros-backend",
1294
+ "quote",
1295
+ "syn 2.0.117",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "pyo3-macros-backend"
1300
+ version = "0.28.3"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
1303
+ dependencies = [
1304
+ "heck",
1305
+ "proc-macro2",
1306
+ "pyo3-build-config",
1307
+ "quote",
1308
+ "syn 2.0.117",
1309
+ ]
1310
+
1311
+ [[package]]
1312
+ name = "qd"
1313
+ version = "0.8.0"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "15f1304a5aecdcfe9ee72fbba90aa37b3aa067a69d14cb7f3d9deada0be7c07c"
1316
+ dependencies = [
1317
+ "bytemuck",
1318
+ "libm",
1319
+ "num-traits",
1320
+ "pulp",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "quick-error"
1325
+ version = "1.2.3"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1328
+
1329
+ [[package]]
1330
+ name = "quote"
1331
+ version = "1.0.45"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1334
+ dependencies = [
1335
+ "proc-macro2",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "r-efi"
1340
+ version = "5.3.0"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1343
+
1344
+ [[package]]
1345
+ name = "r-efi"
1346
+ version = "6.0.0"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1349
+
1350
+ [[package]]
1351
+ name = "rand"
1352
+ version = "0.8.6"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1355
+ dependencies = [
1356
+ "rand_core 0.6.4",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "rand"
1361
+ version = "0.9.4"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1364
+ dependencies = [
1365
+ "rand_chacha 0.9.0",
1366
+ "rand_core 0.9.5",
1367
+ ]
1368
+
1369
+ [[package]]
1370
+ name = "rand"
1371
+ version = "0.10.1"
1372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1373
+ checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
1374
+ dependencies = [
1375
+ "chacha20",
1376
+ "getrandom 0.4.2",
1377
+ "rand_core 0.10.1",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "rand_chacha"
1382
+ version = "0.9.0"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1385
+ dependencies = [
1386
+ "ppv-lite86",
1387
+ "rand_core 0.9.5",
1388
+ ]
1389
+
1390
+ [[package]]
1391
+ name = "rand_chacha"
1392
+ version = "0.10.0"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "3e6af7f3e25ded52c41df4e0b1af2d047e45896c2f3281792ed68a1c243daedb"
1395
+ dependencies = [
1396
+ "ppv-lite86",
1397
+ "rand_core 0.10.1",
1398
+ ]
1399
+
1400
+ [[package]]
1401
+ name = "rand_core"
1402
+ version = "0.6.4"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1405
+
1406
+ [[package]]
1407
+ name = "rand_core"
1408
+ version = "0.9.5"
1409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1410
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1411
+ dependencies = [
1412
+ "getrandom 0.3.4",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "rand_core"
1417
+ version = "0.10.1"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1420
+
1421
+ [[package]]
1422
+ name = "rand_distr"
1423
+ version = "0.5.1"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "6a8615d50dcf34fa31f7ab52692afec947c4dd0ab803cc87cb3b0b4570ff7463"
1426
+ dependencies = [
1427
+ "num-traits",
1428
+ "rand 0.9.4",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "rand_distr"
1433
+ version = "0.6.0"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "4d431c2703ccf129de4d45253c03f49ebb22b97d6ad79ee3ecfc7e3f4862c1d8"
1436
+ dependencies = [
1437
+ "num-traits",
1438
+ "rand 0.10.1",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "rand_xorshift"
1443
+ version = "0.4.0"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1446
+ dependencies = [
1447
+ "rand_core 0.9.5",
1448
+ ]
1449
+
1450
+ [[package]]
1451
+ name = "raw-cpuid"
1452
+ version = "11.6.0"
1453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1454
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
1455
+ dependencies = [
1456
+ "bitflags",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "rawpointer"
1461
+ version = "0.2.1"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1464
+
1465
+ [[package]]
1466
+ name = "rayon"
1467
+ version = "1.12.0"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
1470
+ dependencies = [
1471
+ "either",
1472
+ "rayon-core",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "rayon-core"
1477
+ version = "1.13.0"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1480
+ dependencies = [
1481
+ "crossbeam-deque",
1482
+ "crossbeam-utils",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "reborrow"
1487
+ version = "0.5.5"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
1490
+
1491
+ [[package]]
1492
+ name = "regex-automata"
1493
+ version = "0.4.14"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1496
+ dependencies = [
1497
+ "aho-corasick",
1498
+ "memchr",
1499
+ "regex-syntax",
1500
+ ]
1501
+
1502
+ [[package]]
1503
+ name = "regex-syntax"
1504
+ version = "0.8.10"
1505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1506
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1507
+
1508
+ [[package]]
1509
+ name = "rustc-hash"
1510
+ version = "2.1.2"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1513
+
1514
+ [[package]]
1515
+ name = "rustix"
1516
+ version = "1.1.4"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1519
+ dependencies = [
1520
+ "bitflags",
1521
+ "errno",
1522
+ "libc",
1523
+ "linux-raw-sys",
1524
+ "windows-sys 0.61.2",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "rustversion"
1529
+ version = "1.0.22"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1532
+
1533
+ [[package]]
1534
+ name = "rusty-fork"
1535
+ version = "0.3.1"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
1538
+ dependencies = [
1539
+ "fnv",
1540
+ "quick-error",
1541
+ "tempfile",
1542
+ "wait-timeout",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "same-file"
1547
+ version = "1.0.6"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1550
+ dependencies = [
1551
+ "winapi-util",
1552
+ ]
1553
+
1554
+ [[package]]
1555
+ name = "scoped-tls"
1556
+ version = "1.0.1"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1559
+
1560
+ [[package]]
1561
+ name = "semver"
1562
+ version = "1.0.28"
1563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1564
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1565
+
1566
+ [[package]]
1567
+ name = "seq-macro"
1568
+ version = "0.3.6"
1569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1570
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1571
+
1572
+ [[package]]
1573
+ name = "serde"
1574
+ version = "1.0.228"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1577
+ dependencies = [
1578
+ "serde_core",
1579
+ "serde_derive",
1580
+ ]
1581
+
1582
+ [[package]]
1583
+ name = "serde_core"
1584
+ version = "1.0.228"
1585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1586
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1587
+ dependencies = [
1588
+ "serde_derive",
1589
+ ]
1590
+
1591
+ [[package]]
1592
+ name = "serde_derive"
1593
+ version = "1.0.228"
1594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1595
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1596
+ dependencies = [
1597
+ "proc-macro2",
1598
+ "quote",
1599
+ "syn 2.0.117",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "serde_json"
1604
+ version = "1.0.149"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1607
+ dependencies = [
1608
+ "itoa",
1609
+ "memchr",
1610
+ "serde",
1611
+ "serde_core",
1612
+ "zmij",
1613
+ ]
1614
+
1615
+ [[package]]
1616
+ name = "sha2"
1617
+ version = "0.10.9"
1618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1619
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1620
+ dependencies = [
1621
+ "cfg-if",
1622
+ "cpufeatures 0.2.17",
1623
+ "digest 0.10.7",
1624
+ ]
1625
+
1626
+ [[package]]
1627
+ name = "sha2"
1628
+ version = "0.11.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "446ba717509524cb3f22f17ecc096f10f4822d76ab5c0b9822c5f9c284e825f4"
1631
+ dependencies = [
1632
+ "cfg-if",
1633
+ "cpufeatures 0.3.0",
1634
+ "digest 0.11.3",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "sharded-slab"
1639
+ version = "0.1.7"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1642
+ dependencies = [
1643
+ "lazy_static",
1644
+ ]
1645
+
1646
+ [[package]]
1647
+ name = "shlex"
1648
+ version = "1.3.0"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1651
+
1652
+ [[package]]
1653
+ name = "simd-adler32"
1654
+ version = "0.3.9"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
1657
+
1658
+ [[package]]
1659
+ name = "smallvec"
1660
+ version = "1.15.1"
1661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1662
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1663
+
1664
+ [[package]]
1665
+ name = "spindle"
1666
+ version = "0.2.6"
1667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1668
+ checksum = "673aaca3d8aa5387a6eba861fbf984af5348d9df5d940c25c6366b19556fdf64"
1669
+ dependencies = [
1670
+ "atomic-wait",
1671
+ "crossbeam",
1672
+ "equator 0.4.2",
1673
+ "loom",
1674
+ "rayon",
1675
+ ]
1676
+
1677
+ [[package]]
1678
+ name = "syn"
1679
+ version = "1.0.109"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
1682
+ dependencies = [
1683
+ "proc-macro2",
1684
+ "quote",
1685
+ "unicode-ident",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "syn"
1690
+ version = "2.0.117"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1693
+ dependencies = [
1694
+ "proc-macro2",
1695
+ "quote",
1696
+ "unicode-ident",
1697
+ ]
1698
+
1699
+ [[package]]
1700
+ name = "sysctl"
1701
+ version = "0.6.0"
1702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1703
+ checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
1704
+ dependencies = [
1705
+ "bitflags",
1706
+ "byteorder",
1707
+ "enum-as-inner",
1708
+ "libc",
1709
+ "thiserror 1.0.69",
1710
+ "walkdir",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "target-lexicon"
1715
+ version = "0.13.5"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1718
+
1719
+ [[package]]
1720
+ name = "tempfile"
1721
+ version = "3.27.0"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1724
+ dependencies = [
1725
+ "fastrand",
1726
+ "getrandom 0.4.2",
1727
+ "once_cell",
1728
+ "rustix",
1729
+ "windows-sys 0.61.2",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "thiserror"
1734
+ version = "1.0.69"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1737
+ dependencies = [
1738
+ "thiserror-impl 1.0.69",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "thiserror"
1743
+ version = "2.0.18"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1746
+ dependencies = [
1747
+ "thiserror-impl 2.0.18",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "thiserror-impl"
1752
+ version = "1.0.69"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1755
+ dependencies = [
1756
+ "proc-macro2",
1757
+ "quote",
1758
+ "syn 2.0.117",
1759
+ ]
1760
+
1761
+ [[package]]
1762
+ name = "thiserror-impl"
1763
+ version = "2.0.18"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1766
+ dependencies = [
1767
+ "proc-macro2",
1768
+ "quote",
1769
+ "syn 2.0.117",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "thread_local"
1774
+ version = "1.1.9"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
1777
+ dependencies = [
1778
+ "cfg-if",
1779
+ ]
1780
+
1781
+ [[package]]
1782
+ name = "tracing"
1783
+ version = "0.1.44"
1784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1785
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1786
+ dependencies = [
1787
+ "pin-project-lite",
1788
+ "tracing-core",
1789
+ ]
1790
+
1791
+ [[package]]
1792
+ name = "tracing-core"
1793
+ version = "0.1.36"
1794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1795
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1796
+ dependencies = [
1797
+ "once_cell",
1798
+ "valuable",
1799
+ ]
1800
+
1801
+ [[package]]
1802
+ name = "tracing-log"
1803
+ version = "0.2.0"
1804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1805
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1806
+ dependencies = [
1807
+ "log",
1808
+ "once_cell",
1809
+ "tracing-core",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "tracing-subscriber"
1814
+ version = "0.3.23"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
1817
+ dependencies = [
1818
+ "matchers",
1819
+ "nu-ansi-term",
1820
+ "once_cell",
1821
+ "regex-automata",
1822
+ "sharded-slab",
1823
+ "smallvec",
1824
+ "thread_local",
1825
+ "tracing",
1826
+ "tracing-core",
1827
+ "tracing-log",
1828
+ ]
1829
+
1830
+ [[package]]
1831
+ name = "typenum"
1832
+ version = "1.20.0"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
1835
+
1836
+ [[package]]
1837
+ name = "ucd-trie"
1838
+ version = "0.1.7"
1839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1840
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1841
+
1842
+ [[package]]
1843
+ name = "unarray"
1844
+ version = "0.1.4"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
1847
+
1848
+ [[package]]
1849
+ name = "unicode-ident"
1850
+ version = "1.0.24"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1853
+
1854
+ [[package]]
1855
+ name = "unicode-xid"
1856
+ version = "0.2.6"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1859
+
1860
+ [[package]]
1861
+ name = "valuable"
1862
+ version = "0.1.1"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1865
+
1866
+ [[package]]
1867
+ name = "version_check"
1868
+ version = "0.9.5"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1871
+
1872
+ [[package]]
1873
+ name = "wait-timeout"
1874
+ version = "0.2.1"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1877
+ dependencies = [
1878
+ "libc",
1879
+ ]
1880
+
1881
+ [[package]]
1882
+ name = "walkdir"
1883
+ version = "2.5.0"
1884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1885
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1886
+ dependencies = [
1887
+ "same-file",
1888
+ "winapi-util",
1889
+ ]
1890
+
1891
+ [[package]]
1892
+ name = "wasip2"
1893
+ version = "1.0.3+wasi-0.2.9"
1894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1895
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1896
+ dependencies = [
1897
+ "wit-bindgen 0.57.1",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "wasip3"
1902
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1905
+ dependencies = [
1906
+ "wit-bindgen 0.51.0",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "wasm-encoder"
1911
+ version = "0.244.0"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1914
+ dependencies = [
1915
+ "leb128fmt",
1916
+ "wasmparser",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "wasm-metadata"
1921
+ version = "0.244.0"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1924
+ dependencies = [
1925
+ "anyhow",
1926
+ "indexmap",
1927
+ "wasm-encoder",
1928
+ "wasmparser",
1929
+ ]
1930
+
1931
+ [[package]]
1932
+ name = "wasmparser"
1933
+ version = "0.244.0"
1934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1935
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1936
+ dependencies = [
1937
+ "bitflags",
1938
+ "hashbrown 0.15.5",
1939
+ "indexmap",
1940
+ "semver",
1941
+ ]
1942
+
1943
+ [[package]]
1944
+ name = "winapi-util"
1945
+ version = "0.1.11"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1948
+ dependencies = [
1949
+ "windows-sys 0.61.2",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "windows-link"
1954
+ version = "0.2.1"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1957
+
1958
+ [[package]]
1959
+ name = "windows-result"
1960
+ version = "0.4.1"
1961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1962
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1963
+ dependencies = [
1964
+ "windows-link",
1965
+ ]
1966
+
1967
+ [[package]]
1968
+ name = "windows-sys"
1969
+ version = "0.42.0"
1970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1971
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
1972
+ dependencies = [
1973
+ "windows_aarch64_gnullvm",
1974
+ "windows_aarch64_msvc",
1975
+ "windows_i686_gnu",
1976
+ "windows_i686_msvc",
1977
+ "windows_x86_64_gnu",
1978
+ "windows_x86_64_gnullvm",
1979
+ "windows_x86_64_msvc",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "windows-sys"
1984
+ version = "0.61.2"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1987
+ dependencies = [
1988
+ "windows-link",
1989
+ ]
1990
+
1991
+ [[package]]
1992
+ name = "windows_aarch64_gnullvm"
1993
+ version = "0.42.2"
1994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1995
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
1996
+
1997
+ [[package]]
1998
+ name = "windows_aarch64_msvc"
1999
+ version = "0.42.2"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2002
+
2003
+ [[package]]
2004
+ name = "windows_i686_gnu"
2005
+ version = "0.42.2"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2008
+
2009
+ [[package]]
2010
+ name = "windows_i686_msvc"
2011
+ version = "0.42.2"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2014
+
2015
+ [[package]]
2016
+ name = "windows_x86_64_gnu"
2017
+ version = "0.42.2"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2020
+
2021
+ [[package]]
2022
+ name = "windows_x86_64_gnullvm"
2023
+ version = "0.42.2"
2024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2025
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2026
+
2027
+ [[package]]
2028
+ name = "windows_x86_64_msvc"
2029
+ version = "0.42.2"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2032
+
2033
+ [[package]]
2034
+ name = "wit-bindgen"
2035
+ version = "0.51.0"
2036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2037
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2038
+ dependencies = [
2039
+ "wit-bindgen-rust-macro",
2040
+ ]
2041
+
2042
+ [[package]]
2043
+ name = "wit-bindgen"
2044
+ version = "0.57.1"
2045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2046
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2047
+
2048
+ [[package]]
2049
+ name = "wit-bindgen-core"
2050
+ version = "0.51.0"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2053
+ dependencies = [
2054
+ "anyhow",
2055
+ "heck",
2056
+ "wit-parser",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "wit-bindgen-rust"
2061
+ version = "0.51.0"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2064
+ dependencies = [
2065
+ "anyhow",
2066
+ "heck",
2067
+ "indexmap",
2068
+ "prettyplease",
2069
+ "syn 2.0.117",
2070
+ "wasm-metadata",
2071
+ "wit-bindgen-core",
2072
+ "wit-component",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "wit-bindgen-rust-macro"
2077
+ version = "0.51.0"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2080
+ dependencies = [
2081
+ "anyhow",
2082
+ "prettyplease",
2083
+ "proc-macro2",
2084
+ "quote",
2085
+ "syn 2.0.117",
2086
+ "wit-bindgen-core",
2087
+ "wit-bindgen-rust",
2088
+ ]
2089
+
2090
+ [[package]]
2091
+ name = "wit-component"
2092
+ version = "0.244.0"
2093
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2094
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2095
+ dependencies = [
2096
+ "anyhow",
2097
+ "bitflags",
2098
+ "indexmap",
2099
+ "log",
2100
+ "serde",
2101
+ "serde_derive",
2102
+ "serde_json",
2103
+ "wasm-encoder",
2104
+ "wasm-metadata",
2105
+ "wasmparser",
2106
+ "wit-parser",
2107
+ ]
2108
+
2109
+ [[package]]
2110
+ name = "wit-parser"
2111
+ version = "0.244.0"
2112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2113
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2114
+ dependencies = [
2115
+ "anyhow",
2116
+ "id-arena",
2117
+ "indexmap",
2118
+ "log",
2119
+ "semver",
2120
+ "serde",
2121
+ "serde_derive",
2122
+ "serde_json",
2123
+ "unicode-xid",
2124
+ "wasmparser",
2125
+ ]
2126
+
2127
+ [[package]]
2128
+ name = "zerocopy"
2129
+ version = "0.8.48"
2130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2131
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2132
+ dependencies = [
2133
+ "zerocopy-derive",
2134
+ ]
2135
+
2136
+ [[package]]
2137
+ name = "zerocopy-derive"
2138
+ version = "0.8.48"
2139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2140
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2141
+ dependencies = [
2142
+ "proc-macro2",
2143
+ "quote",
2144
+ "syn 2.0.117",
2145
+ ]
2146
+
2147
+ [[package]]
2148
+ name = "zip"
2149
+ version = "6.0.0"
2150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2151
+ checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b"
2152
+ dependencies = [
2153
+ "arbitrary",
2154
+ "crc32fast",
2155
+ "flate2",
2156
+ "indexmap",
2157
+ "memchr",
2158
+ "zopfli",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "zlib-rs"
2163
+ version = "0.6.3"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
2166
+
2167
+ [[package]]
2168
+ name = "zmij"
2169
+ version = "1.0.21"
2170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2171
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2172
+
2173
+ [[package]]
2174
+ name = "zopfli"
2175
+ version = "0.8.3"
2176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2177
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
2178
+ dependencies = [
2179
+ "bumpalo",
2180
+ "crc32fast",
2181
+ "log",
2182
+ "simd-adler32",
2183
+ ]