decayangle-rs 1.1.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.
- decayangle_rs-1.1.3/Cargo.lock +516 -0
- decayangle_rs-1.1.3/Cargo.toml +19 -0
- decayangle_rs-1.1.3/PKG-INFO +14 -0
- decayangle_rs-1.1.3/pyproject.toml +28 -0
- decayangle_rs-1.1.3/src/kinematics.rs +294 -0
- decayangle_rs-1.1.3/src/lib.rs +157 -0
- decayangle_rs-1.1.3/src/lorentz.rs +77 -0
- decayangle_rs-1.1.3/src/topology.rs +542 -0
|
@@ -0,0 +1,516 @@
|
|
|
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 = "autocfg"
|
|
16
|
+
version = "1.5.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "bitflags"
|
|
22
|
+
version = "2.13.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bytemuck"
|
|
28
|
+
version = "1.25.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "cc"
|
|
34
|
+
version = "1.2.65"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"find-msvc-tools",
|
|
39
|
+
"shlex",
|
|
40
|
+
]
|
|
41
|
+
|
|
42
|
+
[[package]]
|
|
43
|
+
name = "cfg-if"
|
|
44
|
+
version = "1.0.4"
|
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
46
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "crossbeam-deque"
|
|
50
|
+
version = "0.8.6"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
53
|
+
dependencies = [
|
|
54
|
+
"crossbeam-epoch",
|
|
55
|
+
"crossbeam-utils",
|
|
56
|
+
]
|
|
57
|
+
|
|
58
|
+
[[package]]
|
|
59
|
+
name = "crossbeam-epoch"
|
|
60
|
+
version = "0.9.18"
|
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
62
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
63
|
+
dependencies = [
|
|
64
|
+
"crossbeam-utils",
|
|
65
|
+
]
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "crossbeam-utils"
|
|
69
|
+
version = "0.8.21"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
72
|
+
|
|
73
|
+
[[package]]
|
|
74
|
+
name = "decayangle_rs"
|
|
75
|
+
version = "0.1.0"
|
|
76
|
+
dependencies = [
|
|
77
|
+
"nalgebra",
|
|
78
|
+
"num-complex",
|
|
79
|
+
"numpy",
|
|
80
|
+
"pyo3",
|
|
81
|
+
"rayon",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "either"
|
|
86
|
+
version = "1.16.0"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "find-msvc-tools"
|
|
92
|
+
version = "0.1.9"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "heck"
|
|
98
|
+
version = "0.4.1"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
101
|
+
|
|
102
|
+
[[package]]
|
|
103
|
+
name = "indoc"
|
|
104
|
+
version = "2.0.7"
|
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
106
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
107
|
+
dependencies = [
|
|
108
|
+
"rustversion",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "libc"
|
|
113
|
+
version = "0.2.186"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "lock_api"
|
|
119
|
+
version = "0.4.14"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"scopeguard",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "matrixmultiply"
|
|
128
|
+
version = "0.3.10"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"autocfg",
|
|
133
|
+
"rawpointer",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "memoffset"
|
|
138
|
+
version = "0.9.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"autocfg",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "nalgebra"
|
|
147
|
+
version = "0.33.3"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "9d43ddcacf343185dfd6de2ee786d9e8b1c2301622afab66b6c73baf9882abfd"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"approx",
|
|
152
|
+
"matrixmultiply",
|
|
153
|
+
"nalgebra-macros",
|
|
154
|
+
"num-complex",
|
|
155
|
+
"num-rational",
|
|
156
|
+
"num-traits",
|
|
157
|
+
"simba",
|
|
158
|
+
"typenum",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "nalgebra-macros"
|
|
163
|
+
version = "0.2.2"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"proc-macro2",
|
|
168
|
+
"quote",
|
|
169
|
+
"syn",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "ndarray"
|
|
174
|
+
version = "0.15.6"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"matrixmultiply",
|
|
179
|
+
"num-complex",
|
|
180
|
+
"num-integer",
|
|
181
|
+
"num-traits",
|
|
182
|
+
"rawpointer",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "num-bigint"
|
|
187
|
+
version = "0.4.6"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"num-integer",
|
|
192
|
+
"num-traits",
|
|
193
|
+
]
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "num-complex"
|
|
197
|
+
version = "0.4.6"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"num-traits",
|
|
202
|
+
]
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "num-integer"
|
|
206
|
+
version = "0.1.46"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"num-traits",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "num-rational"
|
|
215
|
+
version = "0.4.2"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"num-bigint",
|
|
220
|
+
"num-integer",
|
|
221
|
+
"num-traits",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "num-traits"
|
|
226
|
+
version = "0.2.19"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"autocfg",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "numpy"
|
|
235
|
+
version = "0.21.0"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"libc",
|
|
240
|
+
"ndarray",
|
|
241
|
+
"num-complex",
|
|
242
|
+
"num-integer",
|
|
243
|
+
"num-traits",
|
|
244
|
+
"pyo3",
|
|
245
|
+
"rustc-hash",
|
|
246
|
+
]
|
|
247
|
+
|
|
248
|
+
[[package]]
|
|
249
|
+
name = "once_cell"
|
|
250
|
+
version = "1.21.4"
|
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "parking_lot"
|
|
256
|
+
version = "0.12.5"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"lock_api",
|
|
261
|
+
"parking_lot_core",
|
|
262
|
+
]
|
|
263
|
+
|
|
264
|
+
[[package]]
|
|
265
|
+
name = "parking_lot_core"
|
|
266
|
+
version = "0.9.12"
|
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
268
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
269
|
+
dependencies = [
|
|
270
|
+
"cfg-if",
|
|
271
|
+
"libc",
|
|
272
|
+
"redox_syscall",
|
|
273
|
+
"smallvec",
|
|
274
|
+
"windows-link",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "paste"
|
|
279
|
+
version = "1.0.15"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "portable-atomic"
|
|
285
|
+
version = "1.13.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "proc-macro2"
|
|
291
|
+
version = "1.0.106"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"unicode-ident",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "pyo3"
|
|
300
|
+
version = "0.21.2"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
303
|
+
dependencies = [
|
|
304
|
+
"cfg-if",
|
|
305
|
+
"indoc",
|
|
306
|
+
"libc",
|
|
307
|
+
"memoffset",
|
|
308
|
+
"parking_lot",
|
|
309
|
+
"portable-atomic",
|
|
310
|
+
"pyo3-build-config",
|
|
311
|
+
"pyo3-ffi",
|
|
312
|
+
"pyo3-macros",
|
|
313
|
+
"unindent",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "pyo3-build-config"
|
|
318
|
+
version = "0.21.2"
|
|
319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
321
|
+
dependencies = [
|
|
322
|
+
"once_cell",
|
|
323
|
+
"python3-dll-a",
|
|
324
|
+
"target-lexicon",
|
|
325
|
+
]
|
|
326
|
+
|
|
327
|
+
[[package]]
|
|
328
|
+
name = "pyo3-ffi"
|
|
329
|
+
version = "0.21.2"
|
|
330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
331
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
332
|
+
dependencies = [
|
|
333
|
+
"libc",
|
|
334
|
+
"pyo3-build-config",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "pyo3-macros"
|
|
339
|
+
version = "0.21.2"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"proc-macro2",
|
|
344
|
+
"pyo3-macros-backend",
|
|
345
|
+
"quote",
|
|
346
|
+
"syn",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "pyo3-macros-backend"
|
|
351
|
+
version = "0.21.2"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"heck",
|
|
356
|
+
"proc-macro2",
|
|
357
|
+
"pyo3-build-config",
|
|
358
|
+
"quote",
|
|
359
|
+
"syn",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "python3-dll-a"
|
|
364
|
+
version = "0.2.15"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "d80ba7540edb18890d444c5aa8e1f1f99b1bdf26fb26ae383135325f4a36042b"
|
|
367
|
+
dependencies = [
|
|
368
|
+
"cc",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "quote"
|
|
373
|
+
version = "1.0.45"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"proc-macro2",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "rawpointer"
|
|
382
|
+
version = "0.2.1"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
385
|
+
|
|
386
|
+
[[package]]
|
|
387
|
+
name = "rayon"
|
|
388
|
+
version = "1.12.0"
|
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
391
|
+
dependencies = [
|
|
392
|
+
"either",
|
|
393
|
+
"rayon-core",
|
|
394
|
+
]
|
|
395
|
+
|
|
396
|
+
[[package]]
|
|
397
|
+
name = "rayon-core"
|
|
398
|
+
version = "1.13.0"
|
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
400
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
401
|
+
dependencies = [
|
|
402
|
+
"crossbeam-deque",
|
|
403
|
+
"crossbeam-utils",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "redox_syscall"
|
|
408
|
+
version = "0.5.18"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"bitflags",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "rustc-hash"
|
|
417
|
+
version = "1.1.0"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "rustversion"
|
|
423
|
+
version = "1.0.22"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "safe_arch"
|
|
429
|
+
version = "0.7.4"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"bytemuck",
|
|
434
|
+
]
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "scopeguard"
|
|
438
|
+
version = "1.2.0"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
441
|
+
|
|
442
|
+
[[package]]
|
|
443
|
+
name = "shlex"
|
|
444
|
+
version = "2.0.1"
|
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
446
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
447
|
+
|
|
448
|
+
[[package]]
|
|
449
|
+
name = "simba"
|
|
450
|
+
version = "0.9.1"
|
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
452
|
+
checksum = "c99284beb21666094ba2b75bbceda012e610f5479dfcc2d6e2426f53197ffd95"
|
|
453
|
+
dependencies = [
|
|
454
|
+
"approx",
|
|
455
|
+
"num-complex",
|
|
456
|
+
"num-traits",
|
|
457
|
+
"paste",
|
|
458
|
+
"wide",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "smallvec"
|
|
463
|
+
version = "1.15.2"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "syn"
|
|
469
|
+
version = "2.0.118"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"proc-macro2",
|
|
474
|
+
"quote",
|
|
475
|
+
"unicode-ident",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "target-lexicon"
|
|
480
|
+
version = "0.12.16"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "typenum"
|
|
486
|
+
version = "1.20.1"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "unicode-ident"
|
|
492
|
+
version = "1.0.24"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "unindent"
|
|
498
|
+
version = "0.2.4"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "wide"
|
|
504
|
+
version = "0.7.33"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"bytemuck",
|
|
509
|
+
"safe_arch",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "windows-link"
|
|
514
|
+
version = "0.2.1"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
[package]
|
|
2
|
+
name = "decayangle_rs"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
edition = "2021"
|
|
5
|
+
|
|
6
|
+
[lib]
|
|
7
|
+
name = "decayangle_rs"
|
|
8
|
+
crate-type = ["cdylib"]
|
|
9
|
+
|
|
10
|
+
[dependencies]
|
|
11
|
+
pyo3 = { version = "0.21", features = ["extension-module", "generate-import-lib"] }
|
|
12
|
+
numpy = "0.21"
|
|
13
|
+
nalgebra = { version = "0.33", features = ["std"] }
|
|
14
|
+
num-complex = "0.4"
|
|
15
|
+
rayon = "1.10"
|
|
16
|
+
|
|
17
|
+
[profile.release]
|
|
18
|
+
lto = true
|
|
19
|
+
codegen-units = 1
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: decayangle-rs
|
|
3
|
+
Version: 1.1.3
|
|
4
|
+
Classifier: Programming Language :: Python
|
|
5
|
+
Classifier: Programming Language :: Rust
|
|
6
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Summary: Rust-accelerated backend for the decayangle package
|
|
11
|
+
Author-email: Kai Habermann <kai.habermann@gmx.net>
|
|
12
|
+
License: MIT
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Project-URL: Source, https://github.com/KaiHabermann/decayangle
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["maturin>=1.5,<2.0"]
|
|
3
|
+
build-backend = "maturin"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "decayangle-rs"
|
|
7
|
+
description = "Rust-accelerated backend for the decayangle package"
|
|
8
|
+
version = "1.1.3"
|
|
9
|
+
requires-python = ">=3.9"
|
|
10
|
+
license = { text = "MIT" }
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Kai Habermann", email = "kai.habermann@gmx.net" },
|
|
13
|
+
]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python",
|
|
16
|
+
"Programming Language :: Rust",
|
|
17
|
+
"Programming Language :: Python :: 3.9",
|
|
18
|
+
"Programming Language :: Python :: 3.10",
|
|
19
|
+
"Programming Language :: Python :: 3.11",
|
|
20
|
+
"Programming Language :: Python :: 3.12",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Source = "https://github.com/KaiHabermann/decayangle"
|
|
25
|
+
|
|
26
|
+
[tool.maturin]
|
|
27
|
+
module-name = "decayangle_rs"
|
|
28
|
+
features = ["pyo3/extension-module", "pyo3/generate-import-lib"]
|