pykep-rust 0.1.1__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 (97) hide show
  1. pykep_rust-0.1.1/Cargo.lock +922 -0
  2. pykep_rust-0.1.1/Cargo.toml +31 -0
  3. pykep_rust-0.1.1/LICENSE +373 -0
  4. pykep_rust-0.1.1/PKG-INFO +62 -0
  5. pykep_rust-0.1.1/crates/pykep-core/Cargo.toml +63 -0
  6. pykep_rust-0.1.1/crates/pykep-core/LICENSE +373 -0
  7. pykep_rust-0.1.1/crates/pykep-core/README.md +75 -0
  8. pykep_rust-0.1.1/crates/pykep-core/benches/dynamics.rs +157 -0
  9. pykep_rust-0.1.1/crates/pykep-core/benches/elements.rs +47 -0
  10. pykep_rust-0.1.1/crates/pykep-core/benches/foundation.rs +54 -0
  11. pykep_rust-0.1.1/crates/pykep-core/benches/integration.rs +110 -0
  12. pykep_rust-0.1.1/crates/pykep-core/benches/legs.rs +96 -0
  13. pykep_rust-0.1.1/crates/pykep-core/benches/mission.rs +111 -0
  14. pykep_rust-0.1.1/crates/pykep-core/benches/propagation.rs +55 -0
  15. pykep_rust-0.1.1/crates/pykep-core/src/astro/anomalies.rs +352 -0
  16. pykep_rust-0.1.1/crates/pykep-core/src/astro/elements/automatic_differentiation.rs +279 -0
  17. pykep_rust-0.1.1/crates/pykep-core/src/astro/elements/classical.rs +233 -0
  18. pykep_rust-0.1.1/crates/pykep-core/src/astro/elements/equinoctial.rs +374 -0
  19. pykep_rust-0.1.1/crates/pykep-core/src/astro/elements/mod.rs +286 -0
  20. pykep_rust-0.1.1/crates/pykep-core/src/astro/elements/values.rs +145 -0
  21. pykep_rust-0.1.1/crates/pykep-core/src/astro/encodings.rs +167 -0
  22. pykep_rust-0.1.1/crates/pykep-core/src/astro/flyby.rs +215 -0
  23. pykep_rust-0.1.1/crates/pykep-core/src/astro/lambert.rs +558 -0
  24. pykep_rust-0.1.1/crates/pykep-core/src/astro/mima.rs +353 -0
  25. pykep_rust-0.1.1/crates/pykep-core/src/astro/mod.rs +30 -0
  26. pykep_rust-0.1.1/crates/pykep-core/src/astro/propagation/lagrangian.rs +392 -0
  27. pykep_rust-0.1.1/crates/pykep-core/src/astro/propagation/mod.rs +223 -0
  28. pykep_rust-0.1.1/crates/pykep-core/src/astro/propagation/stm.rs +403 -0
  29. pykep_rust-0.1.1/crates/pykep-core/src/astro/transfers.rs +113 -0
  30. pykep_rust-0.1.1/crates/pykep-core/src/constants.rs +69 -0
  31. pykep_rust-0.1.1/crates/pykep-core/src/dynamics/pontryagin.rs +816 -0
  32. pykep_rust-0.1.1/crates/pykep-core/src/dynamics/zoh.rs +928 -0
  33. pykep_rust-0.1.1/crates/pykep-core/src/dynamics.rs +723 -0
  34. pykep_rust-0.1.1/crates/pykep-core/src/ephemeris/VSOP2013_NOTICE.md +24 -0
  35. pykep_rust-0.1.1/crates/pykep-core/src/ephemeris/jpl_lp.rs +364 -0
  36. pykep_rust-0.1.1/crates/pykep-core/src/ephemeris/keplerian.rs +269 -0
  37. pykep_rust-0.1.1/crates/pykep-core/src/ephemeris/mod.rs +262 -0
  38. pykep_rust-0.1.1/crates/pykep-core/src/ephemeris/vsop2013.bin +0 -0
  39. pykep_rust-0.1.1/crates/pykep-core/src/ephemeris/vsop2013.rs +535 -0
  40. pykep_rust-0.1.1/crates/pykep-core/src/error.rs +204 -0
  41. pykep_rust-0.1.1/crates/pykep-core/src/integration.rs +1067 -0
  42. pykep_rust-0.1.1/crates/pykep-core/src/leg/mod.rs +31 -0
  43. pykep_rust-0.1.1/crates/pykep-core/src/leg/sims_flanagan.rs +839 -0
  44. pykep_rust-0.1.1/crates/pykep-core/src/leg/zoh.rs +698 -0
  45. pykep_rust-0.1.1/crates/pykep-core/src/lib.rs +45 -0
  46. pykep_rust-0.1.1/crates/pykep-core/src/math/kepler_equations.rs +542 -0
  47. pykep_rust-0.1.1/crates/pykep-core/src/math/linalg.rs +224 -0
  48. pykep_rust-0.1.1/crates/pykep-core/src/math/mod.rs +19 -0
  49. pykep_rust-0.1.1/crates/pykep-core/src/math/stumpff.rs +141 -0
  50. pykep_rust-0.1.1/crates/pykep-core/src/time/epoch.rs +579 -0
  51. pykep_rust-0.1.1/crates/pykep-core/src/time/julian.rs +114 -0
  52. pykep_rust-0.1.1/crates/pykep-core/src/time/mod.rs +18 -0
  53. pykep_rust-0.1.1/crates/pykep-core/src/types.rs +22 -0
  54. pykep_rust-0.1.1/crates/pykep-core/tests/data/README.md +56 -0
  55. pykep_rust-0.1.1/crates/pykep-core/tests/data/foundations-v1.json +165 -0
  56. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase11-v1.json +8 -0
  57. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase12-v1.json +8 -0
  58. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase13-v1.json +8 -0
  59. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase14-v1.json +7 -0
  60. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase15-v1.json +8 -0
  61. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase3-v1.json +164 -0
  62. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase4-v1.json +243 -0
  63. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase5-v1.json +42 -0
  64. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase6-v1.json +10 -0
  65. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase7-v1.json +6 -0
  66. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase8-v1.json +6 -0
  67. pykep_rust-0.1.1/crates/pykep-core/tests/data/phase9-v1.json +9 -0
  68. pykep_rust-0.1.1/crates/pykep-core/tests/foundations_golden.rs +140 -0
  69. pykep_rust-0.1.1/crates/pykep-core/tests/phase10_integrator.rs +665 -0
  70. pykep_rust-0.1.1/crates/pykep-core/tests/phase11_dynamics.rs +411 -0
  71. pykep_rust-0.1.1/crates/pykep-core/tests/phase12_zoh.rs +631 -0
  72. pykep_rust-0.1.1/crates/pykep-core/tests/phase13_pontryagin.rs +492 -0
  73. pykep_rust-0.1.1/crates/pykep-core/tests/phase14_sims_flanagan.rs +435 -0
  74. pykep_rust-0.1.1/crates/pykep-core/tests/phase15_zoh_leg.rs +397 -0
  75. pykep_rust-0.1.1/crates/pykep-core/tests/phase3_golden.rs +140 -0
  76. pykep_rust-0.1.1/crates/pykep-core/tests/phase4_golden.rs +153 -0
  77. pykep_rust-0.1.1/crates/pykep-core/tests/phase5_golden.rs +95 -0
  78. pykep_rust-0.1.1/crates/pykep-core/tests/phase6_golden.rs +160 -0
  79. pykep_rust-0.1.1/crates/pykep-core/tests/phase7_golden.rs +62 -0
  80. pykep_rust-0.1.1/crates/pykep-core/tests/phase8_golden.rs +98 -0
  81. pykep_rust-0.1.1/crates/pykep-core/tests/phase9_golden.rs +75 -0
  82. pykep_rust-0.1.1/crates/pykep-py/Cargo.toml +24 -0
  83. pykep_rust-0.1.1/crates/pykep-py/src/dynamics.rs +979 -0
  84. pykep_rust-0.1.1/crates/pykep-py/src/elements.rs +284 -0
  85. pykep_rust-0.1.1/crates/pykep-py/src/ephemeris.rs +229 -0
  86. pykep_rust-0.1.1/crates/pykep-py/src/error.rs +70 -0
  87. pykep_rust-0.1.1/crates/pykep-py/src/foundations.rs +433 -0
  88. pykep_rust-0.1.1/crates/pykep-py/src/leg.rs +637 -0
  89. pykep_rust-0.1.1/crates/pykep-py/src/lib.rs +35 -0
  90. pykep_rust-0.1.1/crates/pykep-py/src/mission.rs +339 -0
  91. pykep_rust-0.1.1/crates/pykep-py/src/propagation.rs +201 -0
  92. pykep_rust-0.1.1/crates/pykep-py/src/time_anomalies.rs +338 -0
  93. pykep_rust-0.1.1/pyproject.toml +52 -0
  94. pykep_rust-0.1.1/python/README.md +33 -0
  95. pykep_rust-0.1.1/python/pykep_rust/__init__.py +311 -0
  96. pykep_rust-0.1.1/python/pykep_rust/_pykep_rust.pyi +1054 -0
  97. pykep_rust-0.1.1/python/pykep_rust/py.typed +1 -0
@@ -0,0 +1,922 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
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 = "alloca"
16
+ version = "0.4.0"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "e5a7d05ea6aea7e9e64d25b9156ba2fee3fdd659e34e41063cd2fc7cd020d7f4"
19
+ dependencies = [
20
+ "cc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anes"
25
+ version = "0.1.6"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
28
+
29
+ [[package]]
30
+ name = "anstyle"
31
+ version = "1.0.14"
32
+ source = "registry+https://github.com/rust-lang/crates.io-index"
33
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
34
+
35
+ [[package]]
36
+ name = "approx"
37
+ version = "0.5.1"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
40
+ dependencies = [
41
+ "num-traits",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "autocfg"
46
+ version = "1.5.1"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
49
+
50
+ [[package]]
51
+ name = "bytemuck"
52
+ version = "1.25.2"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
55
+
56
+ [[package]]
57
+ name = "cast"
58
+ version = "0.3.0"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
61
+
62
+ [[package]]
63
+ name = "cc"
64
+ version = "1.4.0"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "5add81bb678e6cb321aff7fa0dc7689ad82b112dbc032cea19f91d6b8e3582b9"
67
+ dependencies = [
68
+ "find-msvc-tools",
69
+ "shlex",
70
+ ]
71
+
72
+ [[package]]
73
+ name = "cfg-if"
74
+ version = "1.0.4"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
77
+
78
+ [[package]]
79
+ name = "ciborium"
80
+ version = "0.2.2"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
83
+ dependencies = [
84
+ "ciborium-io",
85
+ "ciborium-ll",
86
+ "serde",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "ciborium-io"
91
+ version = "0.2.2"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
94
+
95
+ [[package]]
96
+ name = "ciborium-ll"
97
+ version = "0.2.2"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
100
+ dependencies = [
101
+ "ciborium-io",
102
+ "half",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "clap"
107
+ version = "4.6.4"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "d91e0c145792ef73a6ad36d27c75ac09f1832222a3c209689d90f534685ee5b7"
110
+ dependencies = [
111
+ "clap_builder",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "clap_builder"
116
+ version = "4.6.2"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "f09628afdcc538b57f3c6341e9c8e9970f18e4a481690a64974d7023bd33548b"
119
+ dependencies = [
120
+ "anstyle",
121
+ "clap_lex",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "clap_lex"
126
+ version = "1.1.0"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
129
+
130
+ [[package]]
131
+ name = "criterion"
132
+ version = "0.8.2"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "950046b2aa2492f9a536f5f4f9a3de7b9e2476e575e05bd6c333371add4d98f3"
135
+ dependencies = [
136
+ "alloca",
137
+ "anes",
138
+ "cast",
139
+ "ciborium",
140
+ "clap",
141
+ "criterion-plot",
142
+ "itertools",
143
+ "num-traits",
144
+ "oorandom",
145
+ "page_size",
146
+ "regex",
147
+ "serde",
148
+ "serde_json",
149
+ "tinytemplate",
150
+ "walkdir",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "criterion-plot"
155
+ version = "0.8.2"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "d8d80a2f4f5b554395e47b5d8305bc3d27813bacb73493eb1001e8f76dae29ea"
158
+ dependencies = [
159
+ "cast",
160
+ "itertools",
161
+ ]
162
+
163
+ [[package]]
164
+ name = "crossbeam-deque"
165
+ version = "0.8.7"
166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
167
+ checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
168
+ dependencies = [
169
+ "crossbeam-epoch",
170
+ "crossbeam-utils",
171
+ ]
172
+
173
+ [[package]]
174
+ name = "crossbeam-epoch"
175
+ version = "0.9.20"
176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
177
+ checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
178
+ dependencies = [
179
+ "crossbeam-utils",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "crossbeam-utils"
184
+ version = "0.8.22"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
187
+
188
+ [[package]]
189
+ name = "crunchy"
190
+ version = "0.2.4"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
193
+
194
+ [[package]]
195
+ name = "differential-equations"
196
+ version = "0.6.1"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "9d59c6f4160bf75916dd69b58f6323171dd22e2e4a68cf7e31b1b2bf54b7433a"
199
+ dependencies = [
200
+ "differential-equations-derive",
201
+ "simba",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "differential-equations-derive"
206
+ version = "0.2.0"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "68a7fe2019075c678918caa15cc0be080f0c4400ae58256aaf31ab7059b4920b"
209
+ dependencies = [
210
+ "proc-macro2",
211
+ "quote",
212
+ "syn 2.0.119",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "either"
217
+ version = "1.17.0"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
220
+
221
+ [[package]]
222
+ name = "fcmaes-core"
223
+ version = "0.1.3"
224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
225
+ checksum = "d2f4cc03ed3da3d4ea7ea8fe1452b7d67eaeee582f226e5cc472e513dffaaefe"
226
+ dependencies = [
227
+ "libm",
228
+ "nalgebra",
229
+ "rand",
230
+ "rand_distr",
231
+ "rand_pcg",
232
+ "rayon",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "find-msvc-tools"
237
+ version = "0.1.9"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
240
+
241
+ [[package]]
242
+ name = "getrandom"
243
+ version = "0.2.17"
244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
245
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
246
+ dependencies = [
247
+ "cfg-if",
248
+ "libc",
249
+ "wasi",
250
+ ]
251
+
252
+ [[package]]
253
+ name = "half"
254
+ version = "2.7.1"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
257
+ dependencies = [
258
+ "cfg-if",
259
+ "crunchy",
260
+ "zerocopy",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "heck"
265
+ version = "0.5.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
268
+
269
+ [[package]]
270
+ name = "itertools"
271
+ version = "0.13.0"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
274
+ dependencies = [
275
+ "either",
276
+ ]
277
+
278
+ [[package]]
279
+ name = "itoa"
280
+ version = "1.0.18"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
283
+
284
+ [[package]]
285
+ name = "libc"
286
+ version = "0.2.189"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
289
+
290
+ [[package]]
291
+ name = "libm"
292
+ version = "0.2.16"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
295
+
296
+ [[package]]
297
+ name = "matrixmultiply"
298
+ version = "0.3.11"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "3f607c237553f086e7043417a51df26b2eb899d3caff94e6a67592ff992fedc7"
301
+ dependencies = [
302
+ "autocfg",
303
+ "rawpointer",
304
+ ]
305
+
306
+ [[package]]
307
+ name = "memchr"
308
+ version = "2.8.3"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
311
+
312
+ [[package]]
313
+ name = "nalgebra"
314
+ version = "0.33.3"
315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
316
+ checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
317
+ dependencies = [
318
+ "approx",
319
+ "matrixmultiply",
320
+ "nalgebra-macros",
321
+ "num-complex",
322
+ "num-rational",
323
+ "num-traits",
324
+ "simba",
325
+ "typenum",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "nalgebra-macros"
330
+ version = "0.2.2"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
333
+ dependencies = [
334
+ "proc-macro2",
335
+ "quote",
336
+ "syn 2.0.119",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "ndarray"
341
+ version = "0.17.2"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "520080814a7a6b4a6e9070823bb24b4531daac8c4627e08ba5de8c5ef2f2752d"
344
+ dependencies = [
345
+ "matrixmultiply",
346
+ "num-complex",
347
+ "num-integer",
348
+ "num-traits",
349
+ "portable-atomic",
350
+ "portable-atomic-util",
351
+ "rawpointer",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "num-bigint"
356
+ version = "0.4.8"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "c89e69e7e0f03bea5ef08013795c25018e101932225a656383bd384495ecc367"
359
+ dependencies = [
360
+ "num-integer",
361
+ "num-traits",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "num-complex"
366
+ version = "0.4.6"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
369
+ dependencies = [
370
+ "num-traits",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "num-integer"
375
+ version = "0.1.46"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
378
+ dependencies = [
379
+ "num-traits",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "num-rational"
384
+ version = "0.4.2"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
387
+ dependencies = [
388
+ "num-bigint",
389
+ "num-integer",
390
+ "num-traits",
391
+ ]
392
+
393
+ [[package]]
394
+ name = "num-traits"
395
+ version = "0.2.19"
396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
397
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
398
+ dependencies = [
399
+ "autocfg",
400
+ "libm",
401
+ ]
402
+
403
+ [[package]]
404
+ name = "numpy"
405
+ version = "0.29.0"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "6a5b15d63a5ff39e378daed0e1340d3a5964703ea9712eb09a0dc66fade996f4"
408
+ dependencies = [
409
+ "libc",
410
+ "ndarray",
411
+ "num-complex",
412
+ "num-integer",
413
+ "num-traits",
414
+ "pyo3",
415
+ "pyo3-build-config",
416
+ "rustc-hash",
417
+ ]
418
+
419
+ [[package]]
420
+ name = "once_cell"
421
+ version = "1.21.4"
422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
423
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
424
+
425
+ [[package]]
426
+ name = "oorandom"
427
+ version = "11.1.5"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
430
+
431
+ [[package]]
432
+ name = "page_size"
433
+ version = "0.6.0"
434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
435
+ checksum = "30d5b2194ed13191c1999ae0704b7839fb18384fa22e49b57eeaa97d79ce40da"
436
+ dependencies = [
437
+ "libc",
438
+ "winapi",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "paste"
443
+ version = "1.0.15"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
446
+
447
+ [[package]]
448
+ name = "portable-atomic"
449
+ version = "1.14.0"
450
+ source = "registry+https://github.com/rust-lang/crates.io-index"
451
+ checksum = "3d20d5497ef88037a52ff98267d066e7f11fcc5e99bbfbd58a42336193aacec3"
452
+
453
+ [[package]]
454
+ name = "portable-atomic-util"
455
+ version = "0.2.7"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
458
+ dependencies = [
459
+ "portable-atomic",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "ppv-lite86"
464
+ version = "0.2.21"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
467
+ dependencies = [
468
+ "zerocopy",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "proc-macro2"
473
+ version = "1.0.107"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
476
+ dependencies = [
477
+ "unicode-ident",
478
+ ]
479
+
480
+ [[package]]
481
+ name = "pykep-core"
482
+ version = "0.1.1"
483
+ dependencies = [
484
+ "criterion",
485
+ "differential-equations",
486
+ "serde_json",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "pykep-examples"
491
+ version = "0.1.1"
492
+ dependencies = [
493
+ "pykep-core",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "pykep-lambert-optimization-benchmark"
498
+ version = "0.1.1"
499
+ dependencies = [
500
+ "fcmaes-core",
501
+ "pykep-core",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "pykep-py"
506
+ version = "0.1.1"
507
+ dependencies = [
508
+ "numpy",
509
+ "pykep-core",
510
+ "pyo3",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "pykep-release-benchmark"
515
+ version = "0.1.1"
516
+ dependencies = [
517
+ "pykep-core",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "pyo3"
522
+ version = "0.29.0"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
525
+ dependencies = [
526
+ "libc",
527
+ "once_cell",
528
+ "portable-atomic",
529
+ "pyo3-build-config",
530
+ "pyo3-ffi",
531
+ "pyo3-macros",
532
+ ]
533
+
534
+ [[package]]
535
+ name = "pyo3-build-config"
536
+ version = "0.29.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
539
+ dependencies = [
540
+ "target-lexicon",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "pyo3-ffi"
545
+ version = "0.29.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
548
+ dependencies = [
549
+ "libc",
550
+ "pyo3-build-config",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "pyo3-macros"
555
+ version = "0.29.0"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
558
+ dependencies = [
559
+ "proc-macro2",
560
+ "pyo3-macros-backend",
561
+ "quote",
562
+ "syn 2.0.119",
563
+ ]
564
+
565
+ [[package]]
566
+ name = "pyo3-macros-backend"
567
+ version = "0.29.0"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
570
+ dependencies = [
571
+ "heck",
572
+ "proc-macro2",
573
+ "quote",
574
+ "syn 2.0.119",
575
+ ]
576
+
577
+ [[package]]
578
+ name = "quote"
579
+ version = "1.0.47"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
582
+ dependencies = [
583
+ "proc-macro2",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "rand"
588
+ version = "0.8.7"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
591
+ dependencies = [
592
+ "libc",
593
+ "rand_chacha",
594
+ "rand_core",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "rand_chacha"
599
+ version = "0.3.1"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
602
+ dependencies = [
603
+ "ppv-lite86",
604
+ "rand_core",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "rand_core"
609
+ version = "0.6.4"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
612
+ dependencies = [
613
+ "getrandom",
614
+ ]
615
+
616
+ [[package]]
617
+ name = "rand_distr"
618
+ version = "0.4.3"
619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
620
+ checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
621
+ dependencies = [
622
+ "num-traits",
623
+ "rand",
624
+ ]
625
+
626
+ [[package]]
627
+ name = "rand_pcg"
628
+ version = "0.3.1"
629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
630
+ checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
631
+ dependencies = [
632
+ "rand_core",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "rawpointer"
637
+ version = "0.2.1"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
640
+
641
+ [[package]]
642
+ name = "rayon"
643
+ version = "1.12.0"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
646
+ dependencies = [
647
+ "either",
648
+ "rayon-core",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "rayon-core"
653
+ version = "1.13.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
656
+ dependencies = [
657
+ "crossbeam-deque",
658
+ "crossbeam-utils",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "regex"
663
+ version = "1.13.1"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
666
+ dependencies = [
667
+ "aho-corasick",
668
+ "memchr",
669
+ "regex-automata",
670
+ "regex-syntax",
671
+ ]
672
+
673
+ [[package]]
674
+ name = "regex-automata"
675
+ version = "0.4.16"
676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
677
+ checksum = "8fcfdb36bda0c880c5931cdc7a2bcdc8ba4556847b9d912bca70bc94708711ad"
678
+ dependencies = [
679
+ "aho-corasick",
680
+ "memchr",
681
+ "regex-syntax",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "regex-syntax"
686
+ version = "0.8.11"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
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 = "safe_arch"
698
+ version = "0.7.4"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
701
+ dependencies = [
702
+ "bytemuck",
703
+ ]
704
+
705
+ [[package]]
706
+ name = "same-file"
707
+ version = "1.0.6"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
710
+ dependencies = [
711
+ "winapi-util",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "serde"
716
+ version = "1.0.229"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
719
+ dependencies = [
720
+ "serde_core",
721
+ "serde_derive",
722
+ ]
723
+
724
+ [[package]]
725
+ name = "serde_core"
726
+ version = "1.0.229"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
729
+ dependencies = [
730
+ "serde_derive",
731
+ ]
732
+
733
+ [[package]]
734
+ name = "serde_derive"
735
+ version = "1.0.229"
736
+ source = "registry+https://github.com/rust-lang/crates.io-index"
737
+ checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
738
+ dependencies = [
739
+ "proc-macro2",
740
+ "quote",
741
+ "syn 3.0.3",
742
+ ]
743
+
744
+ [[package]]
745
+ name = "serde_json"
746
+ version = "1.0.151"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
749
+ dependencies = [
750
+ "itoa",
751
+ "memchr",
752
+ "serde",
753
+ "serde_core",
754
+ "zmij",
755
+ ]
756
+
757
+ [[package]]
758
+ name = "shlex"
759
+ version = "2.0.1"
760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
761
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
762
+
763
+ [[package]]
764
+ name = "simba"
765
+ version = "0.9.1"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
768
+ dependencies = [
769
+ "approx",
770
+ "num-complex",
771
+ "num-traits",
772
+ "paste",
773
+ "wide",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "syn"
778
+ version = "2.0.119"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
781
+ dependencies = [
782
+ "proc-macro2",
783
+ "quote",
784
+ "unicode-ident",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "syn"
789
+ version = "3.0.3"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
792
+ dependencies = [
793
+ "proc-macro2",
794
+ "quote",
795
+ "unicode-ident",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "target-lexicon"
800
+ version = "0.13.5"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
803
+
804
+ [[package]]
805
+ name = "tinytemplate"
806
+ version = "1.2.1"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
809
+ dependencies = [
810
+ "serde",
811
+ "serde_json",
812
+ ]
813
+
814
+ [[package]]
815
+ name = "typenum"
816
+ version = "1.20.1"
817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
818
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
819
+
820
+ [[package]]
821
+ name = "unicode-ident"
822
+ version = "1.0.24"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
825
+
826
+ [[package]]
827
+ name = "walkdir"
828
+ version = "2.5.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
831
+ dependencies = [
832
+ "same-file",
833
+ "winapi-util",
834
+ ]
835
+
836
+ [[package]]
837
+ name = "wasi"
838
+ version = "0.11.1+wasi-snapshot-preview1"
839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
840
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
841
+
842
+ [[package]]
843
+ name = "wide"
844
+ version = "0.7.33"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
847
+ dependencies = [
848
+ "bytemuck",
849
+ "safe_arch",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "winapi"
854
+ version = "0.3.9"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
857
+ dependencies = [
858
+ "winapi-i686-pc-windows-gnu",
859
+ "winapi-x86_64-pc-windows-gnu",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "winapi-i686-pc-windows-gnu"
864
+ version = "0.4.0"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
867
+
868
+ [[package]]
869
+ name = "winapi-util"
870
+ version = "0.1.11"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
873
+ dependencies = [
874
+ "windows-sys",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "winapi-x86_64-pc-windows-gnu"
879
+ version = "0.4.0"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
882
+
883
+ [[package]]
884
+ name = "windows-link"
885
+ version = "0.2.1"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
888
+
889
+ [[package]]
890
+ name = "windows-sys"
891
+ version = "0.61.2"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
894
+ dependencies = [
895
+ "windows-link",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "zerocopy"
900
+ version = "0.8.55"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "b5a105cd7b140f6eeec8acff2ea38135d3cab283ada58540f629fe51e46696eb"
903
+ dependencies = [
904
+ "zerocopy-derive",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "zerocopy-derive"
909
+ version = "0.8.55"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "0fe976fb70c78cd64cccfe3a6fc142244e8a77b70959b30faf9d0ac37ee228eb"
912
+ dependencies = [
913
+ "proc-macro2",
914
+ "quote",
915
+ "syn 2.0.119",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "zmij"
920
+ version = "1.0.23"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"