isodistrreg 0.5.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. isodistrreg-0.5.2/Cargo.lock +926 -0
  2. isodistrreg-0.5.2/Cargo.toml +43 -0
  3. isodistrreg-0.5.2/LICENSE +338 -0
  4. isodistrreg-0.5.2/PKG-INFO +149 -0
  5. isodistrreg-0.5.2/README.md +124 -0
  6. isodistrreg-0.5.2/bindings/python/.gitignore +16 -0
  7. isodistrreg-0.5.2/bindings/python/.pre-commit-config.yaml +7 -0
  8. isodistrreg-0.5.2/bindings/python/.python-version +1 -0
  9. isodistrreg-0.5.2/bindings/python/Cargo.toml +32 -0
  10. isodistrreg-0.5.2/bindings/python/LICENSE +338 -0
  11. isodistrreg-0.5.2/bindings/python/README.md +124 -0
  12. isodistrreg-0.5.2/bindings/python/src/lib.rs +2570 -0
  13. isodistrreg-0.5.2/bindings/python/src/park.rs +628 -0
  14. isodistrreg-0.5.2/bindings/python/tests/test_idr.py +440 -0
  15. isodistrreg-0.5.2/bindings/python/tests/test_interface_validation.py +255 -0
  16. isodistrreg-0.5.2/bindings/python/tests/test_isotonic_regression.py +116 -0
  17. isodistrreg-0.5.2/bindings/python/tests/test_kaplan_meier.py +104 -0
  18. isodistrreg-0.5.2/bindings/python/tests/test_scikit_learn_api_adherence.py +7 -0
  19. isodistrreg-0.5.2/bindings/python/uv.lock +756 -0
  20. isodistrreg-0.5.2/isodistrreg/Cargo.toml +29 -0
  21. isodistrreg-0.5.2/isodistrreg/README.md +34 -0
  22. isodistrreg-0.5.2/isodistrreg/src/error.rs +87 -0
  23. isodistrreg-0.5.2/isodistrreg/src/float.rs +30 -0
  24. isodistrreg-0.5.2/isodistrreg/src/functionals/mod.rs +503 -0
  25. isodistrreg-0.5.2/isodistrreg/src/functionals/recursive_clipping.rs +315 -0
  26. isodistrreg-0.5.2/isodistrreg/src/lib.rs +130 -0
  27. isodistrreg-0.5.2/isodistrreg/src/partial_order/algorithm/censored.rs +151 -0
  28. isodistrreg-0.5.2/isodistrreg/src/partial_order/algorithm/definition.rs +274 -0
  29. isodistrreg-0.5.2/isodistrreg/src/partial_order/algorithm/mod.rs +6 -0
  30. isodistrreg-0.5.2/isodistrreg/src/partial_order/algorithm/test.rs +321 -0
  31. isodistrreg-0.5.2/isodistrreg/src/partial_order/algorithm/uncensored/hazard_rate_order.rs +488 -0
  32. isodistrreg-0.5.2/isodistrreg/src/partial_order/algorithm/uncensored/mod.rs +834 -0
  33. isodistrreg-0.5.2/isodistrreg/src/partial_order/bit_set.rs +367 -0
  34. isodistrreg-0.5.2/isodistrreg/src/partial_order/functionals.rs +547 -0
  35. isodistrreg-0.5.2/isodistrreg/src/partial_order/mod.rs +18 -0
  36. isodistrreg-0.5.2/isodistrreg/src/partial_order/prediction.rs +81 -0
  37. isodistrreg-0.5.2/isodistrreg/src/partial_order/preprocessing.rs +474 -0
  38. isodistrreg-0.5.2/isodistrreg/src/partial_order/routines.rs +816 -0
  39. isodistrreg-0.5.2/isodistrreg/src/partial_order/structures.rs +1003 -0
  40. isodistrreg-0.5.2/isodistrreg/src/prediction.rs +412 -0
  41. isodistrreg-0.5.2/isodistrreg/src/preprocessing.rs +44 -0
  42. isodistrreg-0.5.2/isodistrreg/src/progress.rs +34 -0
  43. isodistrreg-0.5.2/isodistrreg/src/routines.rs +776 -0
  44. isodistrreg-0.5.2/isodistrreg/src/structures.rs +172 -0
  45. isodistrreg-0.5.2/isodistrreg/src/subagging.rs +1056 -0
  46. isodistrreg-0.5.2/isodistrreg/src/test.rs +19 -0
  47. isodistrreg-0.5.2/isodistrreg/src/total_order/epsilon.rs +33 -0
  48. isodistrreg-0.5.2/isodistrreg/src/total_order/functionals.rs +826 -0
  49. isodistrreg-0.5.2/isodistrreg/src/total_order/hazard_rate_order/censored.rs +598 -0
  50. isodistrreg-0.5.2/isodistrreg/src/total_order/hazard_rate_order/mod.rs +11 -0
  51. isodistrreg-0.5.2/isodistrreg/src/total_order/hazard_rate_order/routines.rs +1 -0
  52. isodistrreg-0.5.2/isodistrreg/src/total_order/hazard_rate_order/uncensored.rs +400 -0
  53. isodistrreg-0.5.2/isodistrreg/src/total_order/mod.rs +19 -0
  54. isodistrreg-0.5.2/isodistrreg/src/total_order/prediction.rs +391 -0
  55. isodistrreg-0.5.2/isodistrreg/src/total_order/preprocessing.rs +1083 -0
  56. isodistrreg-0.5.2/isodistrreg/src/total_order/routines.rs +120 -0
  57. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/definition.rs +163 -0
  58. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/fast/sweep.rs +221 -0
  59. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/fast.rs +1288 -0
  60. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/mod.rs +18 -0
  61. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/nonrecursive.rs +536 -0
  62. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/propagate_bounds.rs +873 -0
  63. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/scale_test.rs +263 -0
  64. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/structures.rs +434 -0
  65. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/censored/test.rs +1265 -0
  66. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/mod.rs +11 -0
  67. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/routines.rs +678 -0
  68. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/test.rs +417 -0
  69. isodistrreg-0.5.2/isodistrreg/src/total_order/stochastic_dominance/uncensored.rs +64 -0
  70. isodistrreg-0.5.2/isodistrreg/src/total_order/structures.rs +755 -0
  71. isodistrreg-0.5.2/isodistrreg/src/total_order/tonic_regression.rs +158 -0
  72. isodistrreg-0.5.2/isodistrreg/tests/exact_proper_cdf.rs +164 -0
  73. isodistrreg-0.5.2/isodistrreg/tests/zero_weight_preprocessing.rs +264 -0
  74. isodistrreg-0.5.2/pyproject.toml +94 -0
  75. isodistrreg-0.5.2/src/isodistrreg/__init__.py +16 -0
  76. isodistrreg-0.5.2/src/isodistrreg/_core.pyi +191 -0
  77. isodistrreg-0.5.2/src/isodistrreg/estimator.py +158 -0
  78. isodistrreg-0.5.2/src/isodistrreg/py.typed +0 -0
@@ -0,0 +1,926 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "approx"
7
+ version = "0.5.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
10
+ dependencies = [
11
+ "num-traits",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "atomic-polyfill"
16
+ version = "1.0.3"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
19
+ dependencies = [
20
+ "critical-section",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "autocfg"
25
+ version = "1.5.1"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
28
+
29
+ [[package]]
30
+ name = "bitflags"
31
+ version = "2.13.0"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
34
+
35
+ [[package]]
36
+ name = "bitree"
37
+ version = "1.0.1"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "c4a85a5aa05b43f9fb72a9d7d3e9ba997312c68ba350bd9be02b82551286fb41"
40
+
41
+ [[package]]
42
+ name = "bumpalo"
43
+ version = "3.20.3"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
46
+
47
+ [[package]]
48
+ name = "byteorder"
49
+ version = "1.5.0"
50
+ source = "registry+https://github.com/rust-lang/crates.io-index"
51
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
52
+
53
+ [[package]]
54
+ name = "cc"
55
+ version = "1.2.66"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
58
+ dependencies = [
59
+ "find-msvc-tools",
60
+ "shlex",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "cfg-if"
65
+ version = "1.0.4"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
68
+
69
+ [[package]]
70
+ name = "chacha20"
71
+ version = "0.10.1"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
74
+ dependencies = [
75
+ "cfg-if",
76
+ "cpufeatures",
77
+ "rand_core",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "cmake"
82
+ version = "0.1.58"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
85
+ dependencies = [
86
+ "cc",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "cobs"
91
+ version = "0.3.0"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
94
+ dependencies = [
95
+ "thiserror",
96
+ ]
97
+
98
+ [[package]]
99
+ name = "console"
100
+ version = "0.16.4"
101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
102
+ checksum = "4fe5f465a4f6fee88fad41b85d990f84c835335e85b5d9e6e63e0d06d28cba7c"
103
+ dependencies = [
104
+ "encode_unicode",
105
+ "libc",
106
+ "unicode-width",
107
+ "windows-sys",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "cpufeatures"
112
+ version = "0.3.0"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
115
+ dependencies = [
116
+ "libc",
117
+ ]
118
+
119
+ [[package]]
120
+ name = "critical-section"
121
+ version = "1.2.0"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
124
+
125
+ [[package]]
126
+ name = "crossbeam-channel"
127
+ version = "0.5.16"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "d85363c37faeca707aef026efa9f3b34d077bce547e48f770770625c6013679e"
130
+ dependencies = [
131
+ "crossbeam-utils",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "crossbeam-deque"
136
+ version = "0.8.7"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
139
+ dependencies = [
140
+ "crossbeam-epoch",
141
+ "crossbeam-utils",
142
+ ]
143
+
144
+ [[package]]
145
+ name = "crossbeam-epoch"
146
+ version = "0.9.20"
147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
148
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
149
+ dependencies = [
150
+ "crossbeam-utils",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "crossbeam-utils"
155
+ version = "0.8.22"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
158
+
159
+ [[package]]
160
+ name = "either"
161
+ version = "1.16.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
164
+
165
+ [[package]]
166
+ name = "embedded-io"
167
+ version = "0.4.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
170
+
171
+ [[package]]
172
+ name = "embedded-io"
173
+ version = "0.6.1"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
176
+
177
+ [[package]]
178
+ name = "encode_unicode"
179
+ version = "1.0.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
182
+
183
+ [[package]]
184
+ name = "errno"
185
+ version = "0.3.14"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
188
+ dependencies = [
189
+ "libc",
190
+ "windows-sys",
191
+ ]
192
+
193
+ [[package]]
194
+ name = "extendr-api"
195
+ version = "0.9.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "803569de0d273b4bf281871046a7d63a23cc12776bdb5b63de5c1e81aae30728"
198
+ dependencies = [
199
+ "extendr-ffi",
200
+ "extendr-macros",
201
+ "once_cell",
202
+ "paste",
203
+ "readonly",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "extendr-ffi"
208
+ version = "0.9.0"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "5ba82ddd48e85202654997b81e4b1d39c0c54b5dcd7cae92705f807bf528efcf"
211
+
212
+ [[package]]
213
+ name = "extendr-macros"
214
+ version = "0.9.0"
215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
216
+ checksum = "ba8fad8d2a0d0651b1947042cf3a8beddc73d39cec3485b200fdfd24cb3bb6aa"
217
+ dependencies = [
218
+ "lazy_static",
219
+ "proc-macro2",
220
+ "quote",
221
+ "syn",
222
+ ]
223
+
224
+ [[package]]
225
+ name = "find-msvc-tools"
226
+ version = "0.1.9"
227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
228
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
229
+
230
+ [[package]]
231
+ name = "formatx"
232
+ version = "0.2.4"
233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
234
+ checksum = "d8866fac38f53fc87fa3ae1b09ddd723e0482f8fa74323518b4c59df2c55a00a"
235
+
236
+ [[package]]
237
+ name = "fs_extra"
238
+ version = "1.3.0"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
241
+
242
+ [[package]]
243
+ name = "futures-core"
244
+ version = "0.3.32"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
247
+
248
+ [[package]]
249
+ name = "futures-task"
250
+ version = "0.3.32"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
253
+
254
+ [[package]]
255
+ name = "futures-util"
256
+ version = "0.3.32"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
259
+ dependencies = [
260
+ "futures-core",
261
+ "futures-task",
262
+ "pin-project-lite",
263
+ "slab",
264
+ ]
265
+
266
+ [[package]]
267
+ name = "getrandom"
268
+ version = "0.4.3"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
271
+ dependencies = [
272
+ "cfg-if",
273
+ "libc",
274
+ "r-efi",
275
+ "rand_core",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "hash32"
280
+ version = "0.2.1"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
283
+ dependencies = [
284
+ "byteorder",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "heapless"
289
+ version = "0.7.17"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
292
+ dependencies = [
293
+ "atomic-polyfill",
294
+ "hash32",
295
+ "rustc_version",
296
+ "serde",
297
+ "spin",
298
+ "stable_deref_trait",
299
+ ]
300
+
301
+ [[package]]
302
+ name = "heck"
303
+ version = "0.5.0"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
306
+
307
+ [[package]]
308
+ name = "indicatif"
309
+ version = "0.18.6"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "9433806cd6b4ec1aba79c021c7e4c58fb4c3b9977c085062e611ac929998fb0c"
312
+ dependencies = [
313
+ "console",
314
+ "portable-atomic",
315
+ "unicode-width",
316
+ "unit-prefix",
317
+ "web-time",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "isodistrreg"
322
+ version = "0.5.2"
323
+ dependencies = [
324
+ "approx",
325
+ "bitree",
326
+ "itertools",
327
+ "num-traits",
328
+ "osqp",
329
+ "rand",
330
+ "rayon",
331
+ "serde",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "isodistrreg-py"
336
+ version = "0.5.2"
337
+ dependencies = [
338
+ "isodistrreg",
339
+ "itertools",
340
+ "kdam",
341
+ "num-traits",
342
+ "numpy",
343
+ "postcard",
344
+ "pyo3",
345
+ "rayon",
346
+ "serde",
347
+ ]
348
+
349
+ [[package]]
350
+ name = "isodistrreg-r"
351
+ version = "0.5.2"
352
+ dependencies = [
353
+ "crossbeam-channel",
354
+ "extendr-api",
355
+ "indicatif",
356
+ "isodistrreg",
357
+ "itertools",
358
+ "osqp",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "itertools"
363
+ version = "0.15.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "8b4baf93f58d4425749ca49a51c50ebab072c5df6994d08fed93541c331481dc"
366
+ dependencies = [
367
+ "either",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "js-sys"
372
+ version = "0.3.103"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
375
+ dependencies = [
376
+ "cfg-if",
377
+ "futures-util",
378
+ "wasm-bindgen",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "kdam"
383
+ version = "0.6.4"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "d847be338ef16a13f97637c062d97fb52ebe0ff3b77fa18456d5ed366317e4f7"
386
+ dependencies = [
387
+ "formatx",
388
+ "pyo3",
389
+ "terminal_size",
390
+ "windows-sys",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "lazy_static"
395
+ version = "1.5.0"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
398
+
399
+ [[package]]
400
+ name = "libc"
401
+ version = "0.2.186"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
404
+
405
+ [[package]]
406
+ name = "linux-raw-sys"
407
+ version = "0.12.1"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
410
+
411
+ [[package]]
412
+ name = "lock_api"
413
+ version = "0.4.14"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
416
+ dependencies = [
417
+ "scopeguard",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "matrixmultiply"
422
+ version = "0.3.10"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
425
+ dependencies = [
426
+ "autocfg",
427
+ "rawpointer",
428
+ ]
429
+
430
+ [[package]]
431
+ name = "ndarray"
432
+ version = "0.17.2"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
435
+ dependencies = [
436
+ "matrixmultiply",
437
+ "num-complex",
438
+ "num-integer",
439
+ "num-traits",
440
+ "portable-atomic",
441
+ "portable-atomic-util",
442
+ "rawpointer",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "num-complex"
447
+ version = "0.4.6"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
450
+ dependencies = [
451
+ "num-traits",
452
+ ]
453
+
454
+ [[package]]
455
+ name = "num-integer"
456
+ version = "0.1.46"
457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
458
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
459
+ dependencies = [
460
+ "num-traits",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "num-traits"
465
+ version = "0.2.19"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
468
+ dependencies = [
469
+ "autocfg",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "numpy"
474
+ version = "0.29.0"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
477
+ dependencies = [
478
+ "libc",
479
+ "ndarray",
480
+ "num-complex",
481
+ "num-integer",
482
+ "num-traits",
483
+ "pyo3",
484
+ "pyo3-build-config",
485
+ "rustc-hash",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "once_cell"
490
+ version = "1.21.4"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
493
+
494
+ [[package]]
495
+ name = "osqp"
496
+ version = "1.0.1"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "02dc0ca4067340d5e15e26c181e43a87fc0df9f201355e7fba314576d39d6e57"
499
+ dependencies = [
500
+ "osqp-sys",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "osqp-sys"
505
+ version = "1.0.1"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "7b70bc255afb17e18ccd40deb2d86e87cec78c780dcbc127f429e5f2336f1347"
508
+ dependencies = [
509
+ "cc",
510
+ "cmake",
511
+ "fs_extra",
512
+ ]
513
+
514
+ [[package]]
515
+ name = "paste"
516
+ version = "1.0.15"
517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
518
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
519
+
520
+ [[package]]
521
+ name = "pin-project-lite"
522
+ version = "0.2.17"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
525
+
526
+ [[package]]
527
+ name = "portable-atomic"
528
+ version = "1.13.1"
529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
530
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
531
+
532
+ [[package]]
533
+ name = "portable-atomic-util"
534
+ version = "0.2.7"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
537
+ dependencies = [
538
+ "portable-atomic",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "postcard"
543
+ version = "1.1.3"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
546
+ dependencies = [
547
+ "cobs",
548
+ "embedded-io 0.4.0",
549
+ "embedded-io 0.6.1",
550
+ "heapless",
551
+ "serde",
552
+ ]
553
+
554
+ [[package]]
555
+ name = "proc-macro2"
556
+ version = "1.0.106"
557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
558
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
559
+ dependencies = [
560
+ "unicode-ident",
561
+ ]
562
+
563
+ [[package]]
564
+ name = "pyo3"
565
+ version = "0.29.0"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
568
+ dependencies = [
569
+ "either",
570
+ "libc",
571
+ "once_cell",
572
+ "portable-atomic",
573
+ "pyo3-build-config",
574
+ "pyo3-ffi",
575
+ "pyo3-macros",
576
+ ]
577
+
578
+ [[package]]
579
+ name = "pyo3-build-config"
580
+ version = "0.29.0"
581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
582
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
583
+ dependencies = [
584
+ "target-lexicon",
585
+ ]
586
+
587
+ [[package]]
588
+ name = "pyo3-ffi"
589
+ version = "0.29.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
592
+ dependencies = [
593
+ "libc",
594
+ "pyo3-build-config",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "pyo3-macros"
599
+ version = "0.29.0"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
602
+ dependencies = [
603
+ "proc-macro2",
604
+ "pyo3-macros-backend",
605
+ "quote",
606
+ "syn",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "pyo3-macros-backend"
611
+ version = "0.29.0"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
614
+ dependencies = [
615
+ "heck",
616
+ "proc-macro2",
617
+ "quote",
618
+ "syn",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "quote"
623
+ version = "1.0.46"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
626
+ dependencies = [
627
+ "proc-macro2",
628
+ ]
629
+
630
+ [[package]]
631
+ name = "r-efi"
632
+ version = "6.0.0"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
635
+
636
+ [[package]]
637
+ name = "rand"
638
+ version = "0.10.2"
639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
640
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
641
+ dependencies = [
642
+ "chacha20",
643
+ "getrandom",
644
+ "rand_core",
645
+ ]
646
+
647
+ [[package]]
648
+ name = "rand_core"
649
+ version = "0.10.1"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
652
+
653
+ [[package]]
654
+ name = "rawpointer"
655
+ version = "0.2.1"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
658
+
659
+ [[package]]
660
+ name = "rayon"
661
+ version = "1.12.0"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
664
+ dependencies = [
665
+ "either",
666
+ "rayon-core",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "rayon-core"
671
+ version = "1.13.0"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
674
+ dependencies = [
675
+ "crossbeam-deque",
676
+ "crossbeam-utils",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "readonly"
681
+ version = "0.2.13"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "f2a62d85ed81ca5305dc544bd42c8804c5060b78ffa5ad3c64b0fb6a8c13d062"
684
+ dependencies = [
685
+ "proc-macro2",
686
+ "quote",
687
+ "syn",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "rustc-hash"
692
+ version = "2.1.3"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
695
+
696
+ [[package]]
697
+ name = "rustc_version"
698
+ version = "0.4.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
701
+ dependencies = [
702
+ "semver",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "rustix"
707
+ version = "1.1.4"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
710
+ dependencies = [
711
+ "bitflags",
712
+ "errno",
713
+ "libc",
714
+ "linux-raw-sys",
715
+ "windows-sys",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "rustversion"
720
+ version = "1.0.23"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
723
+
724
+ [[package]]
725
+ name = "scopeguard"
726
+ version = "1.2.0"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
729
+
730
+ [[package]]
731
+ name = "semver"
732
+ version = "1.0.28"
733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
734
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
735
+
736
+ [[package]]
737
+ name = "serde"
738
+ version = "1.0.228"
739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
740
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
741
+ dependencies = [
742
+ "serde_core",
743
+ "serde_derive",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "serde_core"
748
+ version = "1.0.228"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
751
+ dependencies = [
752
+ "serde_derive",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "serde_derive"
757
+ version = "1.0.228"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
760
+ dependencies = [
761
+ "proc-macro2",
762
+ "quote",
763
+ "syn",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "shlex"
768
+ version = "2.0.1"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
771
+
772
+ [[package]]
773
+ name = "slab"
774
+ version = "0.4.12"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
777
+
778
+ [[package]]
779
+ name = "spin"
780
+ version = "0.9.8"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
783
+ dependencies = [
784
+ "lock_api",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "stable_deref_trait"
789
+ version = "1.2.1"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
792
+
793
+ [[package]]
794
+ name = "syn"
795
+ version = "2.0.118"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
798
+ dependencies = [
799
+ "proc-macro2",
800
+ "quote",
801
+ "unicode-ident",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "target-lexicon"
806
+ version = "0.13.5"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
809
+
810
+ [[package]]
811
+ name = "terminal_size"
812
+ version = "0.4.4"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "230a1b821ccbd75b185820a1f1ff7b14d21da1e442e22c0863ea5f08771a8874"
815
+ dependencies = [
816
+ "rustix",
817
+ "windows-sys",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "thiserror"
822
+ version = "2.0.18"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
825
+ dependencies = [
826
+ "thiserror-impl",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "thiserror-impl"
831
+ version = "2.0.18"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
834
+ dependencies = [
835
+ "proc-macro2",
836
+ "quote",
837
+ "syn",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "unicode-ident"
842
+ version = "1.0.24"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
845
+
846
+ [[package]]
847
+ name = "unicode-width"
848
+ version = "0.2.2"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
851
+
852
+ [[package]]
853
+ name = "unit-prefix"
854
+ version = "0.5.2"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
857
+
858
+ [[package]]
859
+ name = "wasm-bindgen"
860
+ version = "0.2.126"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
863
+ dependencies = [
864
+ "cfg-if",
865
+ "once_cell",
866
+ "rustversion",
867
+ "wasm-bindgen-macro",
868
+ "wasm-bindgen-shared",
869
+ ]
870
+
871
+ [[package]]
872
+ name = "wasm-bindgen-macro"
873
+ version = "0.2.126"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
876
+ dependencies = [
877
+ "quote",
878
+ "wasm-bindgen-macro-support",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "wasm-bindgen-macro-support"
883
+ version = "0.2.126"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
886
+ dependencies = [
887
+ "bumpalo",
888
+ "proc-macro2",
889
+ "quote",
890
+ "syn",
891
+ "wasm-bindgen-shared",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "wasm-bindgen-shared"
896
+ version = "0.2.126"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
899
+ dependencies = [
900
+ "unicode-ident",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "web-time"
905
+ version = "1.1.0"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
908
+ dependencies = [
909
+ "js-sys",
910
+ "wasm-bindgen",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "windows-link"
915
+ version = "0.2.1"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
918
+
919
+ [[package]]
920
+ name = "windows-sys"
921
+ version = "0.61.2"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
924
+ dependencies = [
925
+ "windows-link",
926
+ ]