discopt 0.2.3__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 (126) hide show
  1. discopt-0.2.3/Cargo.lock +1318 -0
  2. discopt-0.2.3/Cargo.toml +14 -0
  3. discopt-0.2.3/LICENSE +277 -0
  4. discopt-0.2.3/PKG-INFO +242 -0
  5. discopt-0.2.3/README.md +180 -0
  6. discopt-0.2.3/crates/discopt-core/Cargo.toml +10 -0
  7. discopt-0.2.3/crates/discopt-core/src/bnb/branching.rs +597 -0
  8. discopt-0.2.3/crates/discopt-core/src/bnb/mod.rs +12 -0
  9. discopt-0.2.3/crates/discopt-core/src/bnb/node.rs +135 -0
  10. discopt-0.2.3/crates/discopt-core/src/bnb/pool.rs +281 -0
  11. discopt-0.2.3/crates/discopt-core/src/bnb/tree_manager.rs +876 -0
  12. discopt-0.2.3/crates/discopt-core/src/expr.rs +1524 -0
  13. discopt-0.2.3/crates/discopt-core/src/lib.rs +26 -0
  14. discopt-0.2.3/crates/discopt-core/src/nl_parser.rs +2021 -0
  15. discopt-0.2.3/crates/discopt-core/src/presolve/fbbt.rs +1600 -0
  16. discopt-0.2.3/crates/discopt-core/src/presolve/mod.rs +19 -0
  17. discopt-0.2.3/crates/discopt-core/src/presolve/obbt.rs +633 -0
  18. discopt-0.2.3/crates/discopt-core/src/presolve/probing.rs +441 -0
  19. discopt-0.2.3/crates/discopt-core/src/presolve/simplify.rs +612 -0
  20. discopt-0.2.3/crates/discopt-python/Cargo.toml +17 -0
  21. discopt-0.2.3/crates/discopt-python/src/batch.rs +247 -0
  22. discopt-0.2.3/crates/discopt-python/src/bnb_bindings.rs +339 -0
  23. discopt-0.2.3/crates/discopt-python/src/expr_bindings.rs +919 -0
  24. discopt-0.2.3/crates/discopt-python/src/lib.rs +35 -0
  25. discopt-0.2.3/crates/discopt-python/src/nl_bindings.rs +39 -0
  26. discopt-0.2.3/crates/discopt-python/src/ripopt_bindings.rs +297 -0
  27. discopt-0.2.3/pyproject.toml +159 -0
  28. discopt-0.2.3/python/discopt/__init__.py +98 -0
  29. discopt-0.2.3/python/discopt/_jax/PHASE3_MATH_NOTES.md +418 -0
  30. discopt-0.2.3/python/discopt/_jax/__init__.py +9 -0
  31. discopt-0.2.3/python/discopt/_jax/alphabb.py +253 -0
  32. discopt-0.2.3/python/discopt/_jax/batch_evaluator.py +144 -0
  33. discopt-0.2.3/python/discopt/_jax/convexity.py +401 -0
  34. discopt-0.2.3/python/discopt/_jax/cutting_planes.py +909 -0
  35. discopt-0.2.3/python/discopt/_jax/dag_compiler.py +265 -0
  36. discopt-0.2.3/python/discopt/_jax/differentiable.py +1317 -0
  37. discopt-0.2.3/python/discopt/_jax/differentiable_lp.py +170 -0
  38. discopt-0.2.3/python/discopt/_jax/differentiable_qp.py +162 -0
  39. discopt-0.2.3/python/discopt/_jax/differentiable_solve.py +295 -0
  40. discopt-0.2.3/python/discopt/_jax/envelopes.py +596 -0
  41. discopt-0.2.3/python/discopt/_jax/gdp_reformulate.py +1569 -0
  42. discopt-0.2.3/python/discopt/_jax/gnn_branching.py +556 -0
  43. discopt-0.2.3/python/discopt/_jax/gnn_policy.py +201 -0
  44. discopt-0.2.3/python/discopt/_jax/icnn.py +199 -0
  45. discopt-0.2.3/python/discopt/_jax/icnn_trainer.py +501 -0
  46. discopt-0.2.3/python/discopt/_jax/ipm.py +1126 -0
  47. discopt-0.2.3/python/discopt/_jax/ipm_callbacks.py +1111 -0
  48. discopt-0.2.3/python/discopt/_jax/ipm_iterative.py +490 -0
  49. discopt-0.2.3/python/discopt/_jax/learned_relaxations.py +300 -0
  50. discopt-0.2.3/python/discopt/_jax/lp_ipm.py +644 -0
  51. discopt-0.2.3/python/discopt/_jax/mccormick.py +711 -0
  52. discopt-0.2.3/python/discopt/_jax/mccormick_nlp.py +276 -0
  53. discopt-0.2.3/python/discopt/_jax/nl_evaluator.py +181 -0
  54. discopt-0.2.3/python/discopt/_jax/nl_reconstruction.py +133 -0
  55. discopt-0.2.3/python/discopt/_jax/nlp_evaluator.py +225 -0
  56. discopt-0.2.3/python/discopt/_jax/obbt.py +491 -0
  57. discopt-0.2.3/python/discopt/_jax/pcg.py +329 -0
  58. discopt-0.2.3/python/discopt/_jax/piecewise_mccormick.py +337 -0
  59. discopt-0.2.3/python/discopt/_jax/primal_heuristics.py +234 -0
  60. discopt-0.2.3/python/discopt/_jax/problem_classifier.py +1063 -0
  61. discopt-0.2.3/python/discopt/_jax/problem_graph.py +283 -0
  62. discopt-0.2.3/python/discopt/_jax/qp_ipm.py +633 -0
  63. discopt-0.2.3/python/discopt/_jax/relaxation_compiler.py +766 -0
  64. discopt-0.2.3/python/discopt/_jax/sparse_ipm.py +410 -0
  65. discopt-0.2.3/python/discopt/_jax/sparse_jacobian.py +120 -0
  66. discopt-0.2.3/python/discopt/_jax/sparse_kkt.py +160 -0
  67. discopt-0.2.3/python/discopt/_jax/sparsity.py +409 -0
  68. discopt-0.2.3/python/discopt/_jax/strong_branching.py +192 -0
  69. discopt-0.2.3/python/discopt/benchmarks/__init__.py +27 -0
  70. discopt-0.2.3/python/discopt/benchmarks/metrics.py +193 -0
  71. discopt-0.2.3/python/discopt/benchmarks/runner.py +225 -0
  72. discopt-0.2.3/python/discopt/callbacks.py +213 -0
  73. discopt-0.2.3/python/discopt/cli.py +265 -0
  74. discopt-0.2.3/python/discopt/constants.py +50 -0
  75. discopt-0.2.3/python/discopt/dae/__init__.py +55 -0
  76. discopt-0.2.3/python/discopt/dae/collocation.py +832 -0
  77. discopt-0.2.3/python/discopt/dae/finite_difference.py +517 -0
  78. discopt-0.2.3/python/discopt/dae/mol.py +450 -0
  79. discopt-0.2.3/python/discopt/dae/polynomials.py +247 -0
  80. discopt-0.2.3/python/discopt/export/__init__.py +26 -0
  81. discopt-0.2.3/python/discopt/export/_extract.py +494 -0
  82. discopt-0.2.3/python/discopt/export/lp.py +209 -0
  83. discopt-0.2.3/python/discopt/export/mps.py +249 -0
  84. discopt-0.2.3/python/discopt/interfaces/__init__.py +1 -0
  85. discopt-0.2.3/python/discopt/interfaces/cutest.py +476 -0
  86. discopt-0.2.3/python/discopt/llm/__init__.py +109 -0
  87. discopt-0.2.3/python/discopt/llm/advisor.py +342 -0
  88. discopt-0.2.3/python/discopt/llm/chat.py +358 -0
  89. discopt-0.2.3/python/discopt/llm/commentary.py +233 -0
  90. discopt-0.2.3/python/discopt/llm/diagnosis.py +335 -0
  91. discopt-0.2.3/python/discopt/llm/prompts.py +215 -0
  92. discopt-0.2.3/python/discopt/llm/provider.py +160 -0
  93. discopt-0.2.3/python/discopt/llm/reformulation.py +342 -0
  94. discopt-0.2.3/python/discopt/llm/safety.py +146 -0
  95. discopt-0.2.3/python/discopt/llm/serializer.py +214 -0
  96. discopt-0.2.3/python/discopt/llm/tools.py +609 -0
  97. discopt-0.2.3/python/discopt/modeling/__init__.py +124 -0
  98. discopt-0.2.3/python/discopt/modeling/core.py +2491 -0
  99. discopt-0.2.3/python/discopt/modeling/examples.py +719 -0
  100. discopt-0.2.3/python/discopt/nn/__init__.py +86 -0
  101. discopt-0.2.3/python/discopt/nn/bounds.py +90 -0
  102. discopt-0.2.3/python/discopt/nn/formulations/__init__.py +13 -0
  103. discopt-0.2.3/python/discopt/nn/formulations/base.py +173 -0
  104. discopt-0.2.3/python/discopt/nn/formulations/full_space.py +169 -0
  105. discopt-0.2.3/python/discopt/nn/formulations/reduced_space.py +133 -0
  106. discopt-0.2.3/python/discopt/nn/formulations/relu_bigm.py +196 -0
  107. discopt-0.2.3/python/discopt/nn/formulations/tree_ensemble.py +133 -0
  108. discopt-0.2.3/python/discopt/nn/network.py +120 -0
  109. discopt-0.2.3/python/discopt/nn/predictor.py +152 -0
  110. discopt-0.2.3/python/discopt/nn/readers/__init__.py +1 -0
  111. discopt-0.2.3/python/discopt/nn/readers/onnx_reader.py +144 -0
  112. discopt-0.2.3/python/discopt/nn/readers/sklearn_reader.py +167 -0
  113. discopt-0.2.3/python/discopt/nn/readers/torch_reader.py +74 -0
  114. discopt-0.2.3/python/discopt/nn/scaling.py +39 -0
  115. discopt-0.2.3/python/discopt/nn/tree.py +131 -0
  116. discopt-0.2.3/python/discopt/solver.py +2976 -0
  117. discopt-0.2.3/python/discopt/solvers/__init__.py +67 -0
  118. discopt-0.2.3/python/discopt/solvers/gdpopt_loa.py +494 -0
  119. discopt-0.2.3/python/discopt/solvers/lp_highs.py +216 -0
  120. discopt-0.2.3/python/discopt/solvers/milp_highs.py +144 -0
  121. discopt-0.2.3/python/discopt/solvers/nlp_ipopt.py +232 -0
  122. discopt-0.2.3/python/discopt/solvers/nlp_ripopt.py +108 -0
  123. discopt-0.2.3/python/discopt/solvers/oa.py +860 -0
  124. discopt-0.2.3/python/discopt/solvers/qp_highs.py +219 -0
  125. discopt-0.2.3/python/discopt/solvers/sipopt.py +256 -0
  126. discopt-0.2.3/python/discopt/warm_start.py +231 -0
@@ -0,0 +1,1318 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "amd"
16
+ version = "0.2.2"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "a679e001575697a3bd195813feb57a4718ecc08dc194944015cbc5f6213c2b96"
19
+ dependencies = [
20
+ "num-traits",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anstream"
25
+ version = "0.6.21"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
28
+ dependencies = [
29
+ "anstyle",
30
+ "anstyle-parse",
31
+ "anstyle-query",
32
+ "anstyle-wincon",
33
+ "colorchoice",
34
+ "is_terminal_polyfill",
35
+ "utf8parse",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anstyle"
40
+ version = "1.0.13"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
43
+
44
+ [[package]]
45
+ name = "anstyle-parse"
46
+ version = "0.2.7"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
49
+ dependencies = [
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-query"
55
+ version = "1.1.5"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
58
+ dependencies = [
59
+ "windows-sys",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle-wincon"
64
+ version = "3.0.11"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
67
+ dependencies = [
68
+ "anstyle",
69
+ "once_cell_polyfill",
70
+ "windows-sys",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "autocfg"
75
+ version = "1.5.0"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
78
+
79
+ [[package]]
80
+ name = "bitflags"
81
+ version = "2.11.0"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
84
+
85
+ [[package]]
86
+ name = "block-buffer"
87
+ version = "0.10.4"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
90
+ dependencies = [
91
+ "generic-array",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "bytemuck"
96
+ version = "1.25.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
99
+ dependencies = [
100
+ "bytemuck_derive",
101
+ ]
102
+
103
+ [[package]]
104
+ name = "bytemuck_derive"
105
+ version = "1.10.2"
106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
107
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
108
+ dependencies = [
109
+ "proc-macro2",
110
+ "quote",
111
+ "syn",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "byteorder"
116
+ version = "1.5.0"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
119
+
120
+ [[package]]
121
+ name = "cfg-if"
122
+ version = "1.0.4"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
125
+
126
+ [[package]]
127
+ name = "coe-rs"
128
+ version = "0.1.2"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "7e8f1e641542c07631228b1e0dc04b69ae3c1d58ef65d5691a439711d805c698"
131
+
132
+ [[package]]
133
+ name = "colorchoice"
134
+ version = "1.0.4"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
137
+
138
+ [[package]]
139
+ name = "cpufeatures"
140
+ version = "0.2.17"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
143
+ dependencies = [
144
+ "libc",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "crossbeam-deque"
149
+ version = "0.8.6"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
152
+ dependencies = [
153
+ "crossbeam-epoch",
154
+ "crossbeam-utils",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "crossbeam-epoch"
159
+ version = "0.9.18"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
162
+ dependencies = [
163
+ "crossbeam-utils",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "crossbeam-utils"
168
+ version = "0.8.21"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
171
+
172
+ [[package]]
173
+ name = "crunchy"
174
+ version = "0.2.4"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
177
+
178
+ [[package]]
179
+ name = "crypto-common"
180
+ version = "0.1.7"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
183
+ dependencies = [
184
+ "generic-array",
185
+ "typenum",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "dbgf"
190
+ version = "0.1.2"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "e6ca96b45ca70b8045e0462f191bd209fcb3c3bfe8dbfb1257ada54c4dd59169"
193
+
194
+ [[package]]
195
+ name = "digest"
196
+ version = "0.10.7"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
199
+ dependencies = [
200
+ "block-buffer",
201
+ "crypto-common",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "discopt-core"
206
+ version = "0.2.0"
207
+
208
+ [[package]]
209
+ name = "discopt-python"
210
+ version = "0.2.3"
211
+ dependencies = [
212
+ "discopt-core",
213
+ "numpy",
214
+ "pyo3",
215
+ "ripopt",
216
+ ]
217
+
218
+ [[package]]
219
+ name = "dyn-stack"
220
+ version = "0.11.0"
221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
222
+ checksum = "bf6fa63092e3ca9f602f6500fddd05502412b748c4c4682938565b44eb9e0066"
223
+ dependencies = [
224
+ "bytemuck",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "dyn-stack"
229
+ version = "0.13.2"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "1c4713e43e2886ba72b8271aa66c93d722116acf7a75555cce11dcde84388fe8"
232
+ dependencies = [
233
+ "bytemuck",
234
+ "dyn-stack-macros",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "dyn-stack-macros"
239
+ version = "0.1.3"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "e1d926b4d407d372f141f93bb444696142c29d32962ccbd3531117cf3aa0bfa9"
242
+
243
+ [[package]]
244
+ name = "either"
245
+ version = "1.15.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
248
+
249
+ [[package]]
250
+ name = "enum-as-inner"
251
+ version = "0.6.1"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
254
+ dependencies = [
255
+ "heck",
256
+ "proc-macro2",
257
+ "quote",
258
+ "syn",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "env_filter"
263
+ version = "0.1.4"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
266
+ dependencies = [
267
+ "log",
268
+ "regex",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "env_logger"
273
+ version = "0.11.8"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
276
+ dependencies = [
277
+ "anstream",
278
+ "anstyle",
279
+ "env_filter",
280
+ "jiff",
281
+ "log",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "equator"
286
+ version = "0.2.2"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "c35da53b5a021d2484a7cc49b2ac7f2d840f8236a286f84202369bd338d761ea"
289
+ dependencies = [
290
+ "equator-macro 0.2.1",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "equator"
295
+ version = "0.4.2"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
298
+ dependencies = [
299
+ "equator-macro 0.4.2",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "equator-macro"
304
+ version = "0.2.1"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "3bf679796c0322556351f287a51b49e48f7c4986e727b5dd78c972d30e2e16cc"
307
+ dependencies = [
308
+ "proc-macro2",
309
+ "quote",
310
+ "syn",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "equator-macro"
315
+ version = "0.4.2"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
318
+ dependencies = [
319
+ "proc-macro2",
320
+ "quote",
321
+ "syn",
322
+ ]
323
+
324
+ [[package]]
325
+ name = "faer"
326
+ version = "0.20.2"
327
+ source = "registry+https://github.com/rust-lang/crates.io-index"
328
+ checksum = "c2b19b8c3570ea226e507fe3dbae2aa9d7e0f16676abd35ea3adeeb9f90f7b5d"
329
+ dependencies = [
330
+ "bytemuck",
331
+ "coe-rs",
332
+ "dbgf",
333
+ "dyn-stack 0.11.0",
334
+ "equator 0.4.2",
335
+ "faer-entity",
336
+ "gemm",
337
+ "generativity",
338
+ "libm",
339
+ "matrixcompare",
340
+ "matrixcompare-core",
341
+ "nano-gemm",
342
+ "npyz",
343
+ "num-complex",
344
+ "num-traits",
345
+ "paste",
346
+ "rand",
347
+ "rand_distr",
348
+ "rayon",
349
+ "reborrow",
350
+ "serde",
351
+ ]
352
+
353
+ [[package]]
354
+ name = "faer-entity"
355
+ version = "0.20.1"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "072f96f1bc8b2b30dfc26c086baeadb63aae08019b1ed84721809b9fd2006685"
358
+ dependencies = [
359
+ "bytemuck",
360
+ "coe-rs",
361
+ "libm",
362
+ "num-complex",
363
+ "num-traits",
364
+ "pulp 0.18.22",
365
+ "reborrow",
366
+ ]
367
+
368
+ [[package]]
369
+ name = "gemm"
370
+ version = "0.18.2"
371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
372
+ checksum = "ab96b703d31950f1aeddded248bc95543c9efc7ac9c4a21fda8703a83ee35451"
373
+ dependencies = [
374
+ "dyn-stack 0.13.2",
375
+ "gemm-c32",
376
+ "gemm-c64",
377
+ "gemm-common",
378
+ "gemm-f16",
379
+ "gemm-f32",
380
+ "gemm-f64",
381
+ "num-complex",
382
+ "num-traits",
383
+ "paste",
384
+ "raw-cpuid",
385
+ "seq-macro",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "gemm-c32"
390
+ version = "0.18.2"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "f6db9fd9f40421d00eea9dd0770045a5603b8d684654816637732463f4073847"
393
+ dependencies = [
394
+ "dyn-stack 0.13.2",
395
+ "gemm-common",
396
+ "num-complex",
397
+ "num-traits",
398
+ "paste",
399
+ "raw-cpuid",
400
+ "seq-macro",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "gemm-c64"
405
+ version = "0.18.2"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "dfcad8a3d35a43758330b635d02edad980c1e143dc2f21e6fd25f9e4eada8edf"
408
+ dependencies = [
409
+ "dyn-stack 0.13.2",
410
+ "gemm-common",
411
+ "num-complex",
412
+ "num-traits",
413
+ "paste",
414
+ "raw-cpuid",
415
+ "seq-macro",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "gemm-common"
420
+ version = "0.18.2"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "a352d4a69cbe938b9e2a9cb7a3a63b7e72f9349174a2752a558a8a563510d0f3"
423
+ dependencies = [
424
+ "bytemuck",
425
+ "dyn-stack 0.13.2",
426
+ "half",
427
+ "libm",
428
+ "num-complex",
429
+ "num-traits",
430
+ "once_cell",
431
+ "paste",
432
+ "pulp 0.21.5",
433
+ "raw-cpuid",
434
+ "rayon",
435
+ "seq-macro",
436
+ "sysctl",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "gemm-f16"
441
+ version = "0.18.2"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "cff95ae3259432f3c3410eaa919033cd03791d81cebd18018393dc147952e109"
444
+ dependencies = [
445
+ "dyn-stack 0.13.2",
446
+ "gemm-common",
447
+ "gemm-f32",
448
+ "half",
449
+ "num-complex",
450
+ "num-traits",
451
+ "paste",
452
+ "raw-cpuid",
453
+ "rayon",
454
+ "seq-macro",
455
+ ]
456
+
457
+ [[package]]
458
+ name = "gemm-f32"
459
+ version = "0.18.2"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "bc8d3d4385393304f407392f754cd2dc4b315d05063f62cf09f47b58de276864"
462
+ dependencies = [
463
+ "dyn-stack 0.13.2",
464
+ "gemm-common",
465
+ "num-complex",
466
+ "num-traits",
467
+ "paste",
468
+ "raw-cpuid",
469
+ "seq-macro",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "gemm-f64"
474
+ version = "0.18.2"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "35b2a4f76ce4b8b16eadc11ccf2e083252d8237c1b589558a49b0183545015bd"
477
+ dependencies = [
478
+ "dyn-stack 0.13.2",
479
+ "gemm-common",
480
+ "num-complex",
481
+ "num-traits",
482
+ "paste",
483
+ "raw-cpuid",
484
+ "seq-macro",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "generativity"
489
+ version = "1.1.0"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "5881e4c3c2433fe4905bb19cfd2b5d49d4248274862b68c27c33d9ba4e13f9ec"
492
+
493
+ [[package]]
494
+ name = "generic-array"
495
+ version = "0.14.7"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
498
+ dependencies = [
499
+ "typenum",
500
+ "version_check",
501
+ ]
502
+
503
+ [[package]]
504
+ name = "half"
505
+ version = "2.7.1"
506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
507
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
508
+ dependencies = [
509
+ "bytemuck",
510
+ "cfg-if",
511
+ "crunchy",
512
+ "num-traits",
513
+ "zerocopy",
514
+ ]
515
+
516
+ [[package]]
517
+ name = "heck"
518
+ version = "0.5.0"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
521
+
522
+ [[package]]
523
+ name = "indoc"
524
+ version = "2.0.7"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
527
+ dependencies = [
528
+ "rustversion",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "is_terminal_polyfill"
533
+ version = "1.70.2"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
536
+
537
+ [[package]]
538
+ name = "itoa"
539
+ version = "1.0.17"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
542
+
543
+ [[package]]
544
+ name = "jiff"
545
+ version = "0.2.19"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "d89a5b5e10d5a9ad6e5d1f4bd58225f655d6fe9767575a5e8ac5a6fe64e04495"
548
+ dependencies = [
549
+ "jiff-static",
550
+ "log",
551
+ "portable-atomic",
552
+ "portable-atomic-util",
553
+ "serde_core",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "jiff-static"
558
+ version = "0.2.19"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "ff7a39c8862fc1369215ccf0a8f12dd4598c7f6484704359f0351bd617034dbf"
561
+ dependencies = [
562
+ "proc-macro2",
563
+ "quote",
564
+ "syn",
565
+ ]
566
+
567
+ [[package]]
568
+ name = "libc"
569
+ version = "0.2.180"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
572
+
573
+ [[package]]
574
+ name = "libm"
575
+ version = "0.2.16"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
578
+
579
+ [[package]]
580
+ name = "log"
581
+ version = "0.4.29"
582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
583
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
584
+
585
+ [[package]]
586
+ name = "matrixcompare"
587
+ version = "0.3.0"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "37832ba820e47c93d66b4360198dccb004b43c74abc3ac1ce1fed54e65a80445"
590
+ dependencies = [
591
+ "matrixcompare-core",
592
+ "num-traits",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "matrixcompare-core"
597
+ version = "0.1.0"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "b0bdabb30db18805d5290b3da7ceaccbddba795620b86c02145d688e04900a73"
600
+
601
+ [[package]]
602
+ name = "matrixmultiply"
603
+ version = "0.3.10"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
606
+ dependencies = [
607
+ "autocfg",
608
+ "rawpointer",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "memchr"
613
+ version = "2.8.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
616
+
617
+ [[package]]
618
+ name = "memoffset"
619
+ version = "0.9.1"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
622
+ dependencies = [
623
+ "autocfg",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "nano-gemm"
628
+ version = "0.1.3"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "bb5ba2bea1c00e53de11f6ab5bd0761ba87dc0045d63b0c87ee471d2d3061376"
631
+ dependencies = [
632
+ "equator 0.2.2",
633
+ "nano-gemm-c32",
634
+ "nano-gemm-c64",
635
+ "nano-gemm-codegen",
636
+ "nano-gemm-core",
637
+ "nano-gemm-f32",
638
+ "nano-gemm-f64",
639
+ "num-complex",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "nano-gemm-c32"
644
+ version = "0.1.0"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "a40449e57a5713464c3a1208c4c3301c8d29ee1344711822cf022bc91373a91b"
647
+ dependencies = [
648
+ "nano-gemm-codegen",
649
+ "nano-gemm-core",
650
+ "num-complex",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "nano-gemm-c64"
655
+ version = "0.1.0"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "743a6e6211358fba85d1009616751e4107da86f4c95b24e684ce85f25c25b3bf"
658
+ dependencies = [
659
+ "nano-gemm-codegen",
660
+ "nano-gemm-core",
661
+ "num-complex",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "nano-gemm-codegen"
666
+ version = "0.1.0"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "963bf7c7110d55430169dc74c67096375491ed580cd2ef84842550ac72e781fa"
669
+
670
+ [[package]]
671
+ name = "nano-gemm-core"
672
+ version = "0.1.0"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "fe3fc4f83ae8861bad79dc3c016bd6b0220da5f9de302e07d3112d16efc24aa6"
675
+
676
+ [[package]]
677
+ name = "nano-gemm-f32"
678
+ version = "0.1.0"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "4e3681b7ce35658f79da94b7f62c60a005e29c373c7111ed070e3bf64546a8bb"
681
+ dependencies = [
682
+ "nano-gemm-codegen",
683
+ "nano-gemm-core",
684
+ ]
685
+
686
+ [[package]]
687
+ name = "nano-gemm-f64"
688
+ version = "0.1.0"
689
+ source = "registry+https://github.com/rust-lang/crates.io-index"
690
+ checksum = "bc1e619ed04d801809e1f63e61b669d380c4119e8b0cdd6ed184c6b111f046d8"
691
+ dependencies = [
692
+ "nano-gemm-codegen",
693
+ "nano-gemm-core",
694
+ ]
695
+
696
+ [[package]]
697
+ name = "ndarray"
698
+ version = "0.16.1"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "882ed72dce9365842bf196bdeedf5055305f11fc8c03dee7bb0194a6cad34841"
701
+ dependencies = [
702
+ "matrixmultiply",
703
+ "num-complex",
704
+ "num-integer",
705
+ "num-traits",
706
+ "portable-atomic",
707
+ "portable-atomic-util",
708
+ "rawpointer",
709
+ ]
710
+
711
+ [[package]]
712
+ name = "npyz"
713
+ version = "0.8.4"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "9f0e759e014e630f90af745101b614f761306ddc541681e546649068e25ec1b9"
716
+ dependencies = [
717
+ "byteorder",
718
+ "num-bigint",
719
+ "py_literal",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "num-bigint"
724
+ version = "0.4.6"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
727
+ dependencies = [
728
+ "num-integer",
729
+ "num-traits",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "num-complex"
734
+ version = "0.4.6"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
737
+ dependencies = [
738
+ "bytemuck",
739
+ "num-traits",
740
+ "rand",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "num-integer"
745
+ version = "0.1.46"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
748
+ dependencies = [
749
+ "num-traits",
750
+ ]
751
+
752
+ [[package]]
753
+ name = "num-traits"
754
+ version = "0.2.19"
755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
756
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
757
+ dependencies = [
758
+ "autocfg",
759
+ "libm",
760
+ ]
761
+
762
+ [[package]]
763
+ name = "numpy"
764
+ version = "0.23.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "b94caae805f998a07d33af06e6a3891e38556051b8045c615470a71590e13e78"
767
+ dependencies = [
768
+ "libc",
769
+ "ndarray",
770
+ "num-complex",
771
+ "num-integer",
772
+ "num-traits",
773
+ "pyo3",
774
+ "rustc-hash",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "once_cell"
779
+ version = "1.21.3"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
782
+
783
+ [[package]]
784
+ name = "once_cell_polyfill"
785
+ version = "1.70.2"
786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
787
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
788
+
789
+ [[package]]
790
+ name = "paste"
791
+ version = "1.0.15"
792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
793
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
794
+
795
+ [[package]]
796
+ name = "pest"
797
+ version = "2.8.6"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "e0848c601009d37dfa3430c4666e147e49cdcf1b92ecd3e63657d8a5f19da662"
800
+ dependencies = [
801
+ "memchr",
802
+ "ucd-trie",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "pest_derive"
807
+ version = "2.8.6"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "11f486f1ea21e6c10ed15d5a7c77165d0ee443402f0780849d1768e7d9d6fe77"
810
+ dependencies = [
811
+ "pest",
812
+ "pest_generator",
813
+ ]
814
+
815
+ [[package]]
816
+ name = "pest_generator"
817
+ version = "2.8.6"
818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
819
+ checksum = "8040c4647b13b210a963c1ed407c1ff4fdfa01c31d6d2a098218702e6664f94f"
820
+ dependencies = [
821
+ "pest",
822
+ "pest_meta",
823
+ "proc-macro2",
824
+ "quote",
825
+ "syn",
826
+ ]
827
+
828
+ [[package]]
829
+ name = "pest_meta"
830
+ version = "2.8.6"
831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
832
+ checksum = "89815c69d36021a140146f26659a81d6c2afa33d216d736dd4be5381a7362220"
833
+ dependencies = [
834
+ "pest",
835
+ "sha2",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "portable-atomic"
840
+ version = "1.13.1"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
843
+
844
+ [[package]]
845
+ name = "portable-atomic-util"
846
+ version = "0.2.5"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "7a9db96d7fa8782dd8c15ce32ffe8680bbd1e978a43bf51a34d39483540495f5"
849
+ dependencies = [
850
+ "portable-atomic",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "proc-macro2"
855
+ version = "1.0.106"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
858
+ dependencies = [
859
+ "unicode-ident",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "pulp"
864
+ version = "0.18.22"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "a0a01a0dc67cf4558d279f0c25b0962bd08fc6dec0137699eae304103e882fe6"
867
+ dependencies = [
868
+ "bytemuck",
869
+ "libm",
870
+ "num-complex",
871
+ "reborrow",
872
+ ]
873
+
874
+ [[package]]
875
+ name = "pulp"
876
+ version = "0.21.5"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "96b86df24f0a7ddd5e4b95c94fc9ed8a98f1ca94d3b01bdce2824097e7835907"
879
+ dependencies = [
880
+ "bytemuck",
881
+ "cfg-if",
882
+ "libm",
883
+ "num-complex",
884
+ "reborrow",
885
+ "version_check",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "py_literal"
890
+ version = "0.4.0"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "102df7a3d46db9d3891f178dcc826dc270a6746277a9ae6436f8d29fd490a8e1"
893
+ dependencies = [
894
+ "num-bigint",
895
+ "num-complex",
896
+ "num-traits",
897
+ "pest",
898
+ "pest_derive",
899
+ ]
900
+
901
+ [[package]]
902
+ name = "pyo3"
903
+ version = "0.23.5"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
906
+ dependencies = [
907
+ "cfg-if",
908
+ "indoc",
909
+ "libc",
910
+ "memoffset",
911
+ "once_cell",
912
+ "portable-atomic",
913
+ "pyo3-build-config",
914
+ "pyo3-ffi",
915
+ "pyo3-macros",
916
+ "unindent",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "pyo3-build-config"
921
+ version = "0.23.5"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
924
+ dependencies = [
925
+ "once_cell",
926
+ "target-lexicon",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "pyo3-ffi"
931
+ version = "0.23.5"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
934
+ dependencies = [
935
+ "libc",
936
+ "pyo3-build-config",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "pyo3-macros"
941
+ version = "0.23.5"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
944
+ dependencies = [
945
+ "proc-macro2",
946
+ "pyo3-macros-backend",
947
+ "quote",
948
+ "syn",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "pyo3-macros-backend"
953
+ version = "0.23.5"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
956
+ dependencies = [
957
+ "heck",
958
+ "proc-macro2",
959
+ "pyo3-build-config",
960
+ "quote",
961
+ "syn",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "quote"
966
+ version = "1.0.44"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
969
+ dependencies = [
970
+ "proc-macro2",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "rand"
975
+ version = "0.8.5"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
978
+ dependencies = [
979
+ "rand_core",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "rand_core"
984
+ version = "0.6.4"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
987
+
988
+ [[package]]
989
+ name = "rand_distr"
990
+ version = "0.4.3"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
993
+ dependencies = [
994
+ "num-traits",
995
+ "rand",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "raw-cpuid"
1000
+ version = "11.6.0"
1001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1002
+ checksum = "498cd0dc59d73224351ee52a95fee0f1a617a2eae0e7d9d720cc622c73a54186"
1003
+ dependencies = [
1004
+ "bitflags",
1005
+ ]
1006
+
1007
+ [[package]]
1008
+ name = "rawpointer"
1009
+ version = "0.2.1"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
1012
+
1013
+ [[package]]
1014
+ name = "rayon"
1015
+ version = "1.11.0"
1016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1017
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1018
+ dependencies = [
1019
+ "either",
1020
+ "rayon-core",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "rayon-core"
1025
+ version = "1.13.0"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1028
+ dependencies = [
1029
+ "crossbeam-deque",
1030
+ "crossbeam-utils",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "reborrow"
1035
+ version = "0.5.5"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "03251193000f4bd3b042892be858ee50e8b3719f2b08e5833ac4353724632430"
1038
+
1039
+ [[package]]
1040
+ name = "regex"
1041
+ version = "1.12.3"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1044
+ dependencies = [
1045
+ "aho-corasick",
1046
+ "memchr",
1047
+ "regex-automata",
1048
+ "regex-syntax",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "regex-automata"
1053
+ version = "0.4.14"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1056
+ dependencies = [
1057
+ "aho-corasick",
1058
+ "memchr",
1059
+ "regex-syntax",
1060
+ ]
1061
+
1062
+ [[package]]
1063
+ name = "regex-syntax"
1064
+ version = "0.8.9"
1065
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1066
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1067
+
1068
+ [[package]]
1069
+ name = "ripopt"
1070
+ version = "0.6.0"
1071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1072
+ checksum = "fb2217dfe4ec562aaeefb002b9a9427e8bd47ff9f94f37494f51e13723ddcf61"
1073
+ dependencies = [
1074
+ "env_logger",
1075
+ "faer",
1076
+ "log",
1077
+ "rmumps",
1078
+ "serde",
1079
+ "serde_json",
1080
+ ]
1081
+
1082
+ [[package]]
1083
+ name = "rmumps"
1084
+ version = "0.1.0"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "514a798c9a81dec2c1394589d661e99dc5c95ae7813dbf89c8eaac0ffd8f76bc"
1087
+ dependencies = [
1088
+ "amd",
1089
+ "rayon",
1090
+ ]
1091
+
1092
+ [[package]]
1093
+ name = "rustc-hash"
1094
+ version = "2.1.1"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1097
+
1098
+ [[package]]
1099
+ name = "rustversion"
1100
+ version = "1.0.22"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1103
+
1104
+ [[package]]
1105
+ name = "same-file"
1106
+ version = "1.0.6"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1109
+ dependencies = [
1110
+ "winapi-util",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "seq-macro"
1115
+ version = "0.3.6"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
1118
+
1119
+ [[package]]
1120
+ name = "serde"
1121
+ version = "1.0.228"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1124
+ dependencies = [
1125
+ "serde_core",
1126
+ "serde_derive",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "serde_core"
1131
+ version = "1.0.228"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1134
+ dependencies = [
1135
+ "serde_derive",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "serde_derive"
1140
+ version = "1.0.228"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1143
+ dependencies = [
1144
+ "proc-macro2",
1145
+ "quote",
1146
+ "syn",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "serde_json"
1151
+ version = "1.0.149"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1154
+ dependencies = [
1155
+ "itoa",
1156
+ "memchr",
1157
+ "serde",
1158
+ "serde_core",
1159
+ "zmij",
1160
+ ]
1161
+
1162
+ [[package]]
1163
+ name = "sha2"
1164
+ version = "0.10.9"
1165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1166
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1167
+ dependencies = [
1168
+ "cfg-if",
1169
+ "cpufeatures",
1170
+ "digest",
1171
+ ]
1172
+
1173
+ [[package]]
1174
+ name = "syn"
1175
+ version = "2.0.114"
1176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1177
+ checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
1178
+ dependencies = [
1179
+ "proc-macro2",
1180
+ "quote",
1181
+ "unicode-ident",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "sysctl"
1186
+ version = "0.6.0"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "01198a2debb237c62b6826ec7081082d951f46dbb64b0e8c7649a452230d1dfc"
1189
+ dependencies = [
1190
+ "bitflags",
1191
+ "byteorder",
1192
+ "enum-as-inner",
1193
+ "libc",
1194
+ "thiserror",
1195
+ "walkdir",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "target-lexicon"
1200
+ version = "0.12.16"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
1203
+
1204
+ [[package]]
1205
+ name = "thiserror"
1206
+ version = "1.0.69"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1209
+ dependencies = [
1210
+ "thiserror-impl",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "thiserror-impl"
1215
+ version = "1.0.69"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1218
+ dependencies = [
1219
+ "proc-macro2",
1220
+ "quote",
1221
+ "syn",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "typenum"
1226
+ version = "1.19.0"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1229
+
1230
+ [[package]]
1231
+ name = "ucd-trie"
1232
+ version = "0.1.7"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1235
+
1236
+ [[package]]
1237
+ name = "unicode-ident"
1238
+ version = "1.0.22"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
1241
+
1242
+ [[package]]
1243
+ name = "unindent"
1244
+ version = "0.2.4"
1245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1246
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1247
+
1248
+ [[package]]
1249
+ name = "utf8parse"
1250
+ version = "0.2.2"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1253
+
1254
+ [[package]]
1255
+ name = "version_check"
1256
+ version = "0.9.5"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1259
+
1260
+ [[package]]
1261
+ name = "walkdir"
1262
+ version = "2.5.0"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1265
+ dependencies = [
1266
+ "same-file",
1267
+ "winapi-util",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "winapi-util"
1272
+ version = "0.1.11"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1275
+ dependencies = [
1276
+ "windows-sys",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "windows-link"
1281
+ version = "0.2.1"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1284
+
1285
+ [[package]]
1286
+ name = "windows-sys"
1287
+ version = "0.61.2"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1290
+ dependencies = [
1291
+ "windows-link",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "zerocopy"
1296
+ version = "0.8.48"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
1299
+ dependencies = [
1300
+ "zerocopy-derive",
1301
+ ]
1302
+
1303
+ [[package]]
1304
+ name = "zerocopy-derive"
1305
+ version = "0.8.48"
1306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1307
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
1308
+ dependencies = [
1309
+ "proc-macro2",
1310
+ "quote",
1311
+ "syn",
1312
+ ]
1313
+
1314
+ [[package]]
1315
+ name = "zmij"
1316
+ version = "1.0.19"
1317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1318
+ checksum = "3ff05f8caa9038894637571ae6b9e29466c1f4f829d26c9b28f869a29cbe3445"