warp-md 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- warp_md-0.1.0/Cargo.lock +722 -0
- warp_md-0.1.0/Cargo.toml +7 -0
- warp_md-0.1.0/PKG-INFO +10 -0
- warp_md-0.1.0/crates/traj-core/Cargo.toml +9 -0
- warp_md-0.1.0/crates/traj-core/src/elements.rs +57 -0
- warp_md-0.1.0/crates/traj-core/src/error.rs +32 -0
- warp_md-0.1.0/crates/traj-core/src/frame.rs +92 -0
- warp_md-0.1.0/crates/traj-core/src/interner.rs +32 -0
- warp_md-0.1.0/crates/traj-core/src/lib.rs +14 -0
- warp_md-0.1.0/crates/traj-core/src/selection.rs +461 -0
- warp_md-0.1.0/crates/traj-core/src/system.rs +85 -0
- warp_md-0.1.0/crates/traj-engine/Cargo.toml +21 -0
- warp_md-0.1.0/crates/traj-engine/src/correlators/mod.rs +98 -0
- warp_md-0.1.0/crates/traj-engine/src/correlators/multi_tau.rs +163 -0
- warp_md-0.1.0/crates/traj-engine/src/correlators/ring.rs +59 -0
- warp_md-0.1.0/crates/traj-engine/src/executor.rs +188 -0
- warp_md-0.1.0/crates/traj-engine/src/feature_store.rs +138 -0
- warp_md-0.1.0/crates/traj-engine/src/lib.rs +489 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/common.rs +103 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/conductivity.rs +1089 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/dielectric.rs +299 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/dipole.rs +251 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/equipartition.rs +225 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/grouping.rs +140 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/hbond.rs +238 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/ion_pair.rs +712 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/legacy/mod.rs +5 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/legacy/param.rs +68 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/legacy/topol.rs +245 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/mod.rs +25 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/msd.rs +947 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/rotacf.rs +934 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/structure_factor.rs +265 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/analysis/water_count.rs +259 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/mod.rs +26 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/bond_angle.rs +138 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/bond_length.rs +124 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/chain_rg.rs +116 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/common.rs +106 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/contour.rs +106 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/end_to_end.rs +104 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/mod.rs +15 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/polymer/persistence.rs +168 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/rdf.rs +228 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/rg.rs +130 -0
- warp_md-0.1.0/crates/traj-engine/src/plans/rmsd.rs +267 -0
- warp_md-0.1.0/crates/traj-engine/tests/correlators.rs +50 -0
- warp_md-0.1.0/crates/traj-engine/tests/feature_store.rs +34 -0
- warp_md-0.1.0/crates/traj-engine/tests/trj_analysis_sample.rs +317 -0
- warp_md-0.1.0/crates/traj-io/Cargo.toml +12 -0
- warp_md-0.1.0/crates/traj-io/src/dcd.rs +426 -0
- warp_md-0.1.0/crates/traj-io/src/gro.rs +108 -0
- warp_md-0.1.0/crates/traj-io/src/lib.rs +18 -0
- warp_md-0.1.0/crates/traj-io/src/pdb.rs +136 -0
- warp_md-0.1.0/crates/traj-io/src/xtc.rs +124 -0
- warp_md-0.1.0/crates/traj-py/Cargo.toml +19 -0
- warp_md-0.1.0/crates/traj-py/src/lib.rs +1298 -0
- warp_md-0.1.0/pyproject.toml +23 -0
- warp_md-0.1.0/python/warp_md/__init__.py +95 -0
- warp_md-0.1.0/python/warp_md/builder.py +94 -0
- warp_md-0.1.0/python/warp_md/cli.py +1464 -0
- warp_md-0.1.0/python/warp_md/tests/test_cli_help.py +33 -0
warp_md-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,722 @@
|
|
|
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.0"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "bitflags"
|
|
22
|
+
version = "2.10.0"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bytemuck"
|
|
28
|
+
version = "1.24.0"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "cc"
|
|
34
|
+
version = "1.2.54"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "6354c81bbfd62d9cfa9cb3c773c2b7b2a3a482d569de977fd0e961f6e7c00583"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"find-msvc-tools",
|
|
39
|
+
"jobserver",
|
|
40
|
+
"libc",
|
|
41
|
+
"shlex",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "cfg-if"
|
|
46
|
+
version = "1.0.4"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "cudarc"
|
|
52
|
+
version = "0.19.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "4d5be1e9776a20360ca270df637b391c85d48ea57508140f30a4e8f6da91884a"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"libloading",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "errno"
|
|
61
|
+
version = "0.3.14"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"libc",
|
|
66
|
+
"windows-sys",
|
|
67
|
+
]
|
|
68
|
+
|
|
69
|
+
[[package]]
|
|
70
|
+
name = "fastrand"
|
|
71
|
+
version = "2.3.0"
|
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
73
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
74
|
+
|
|
75
|
+
[[package]]
|
|
76
|
+
name = "find-msvc-tools"
|
|
77
|
+
version = "0.1.8"
|
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
79
|
+
checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
|
|
80
|
+
|
|
81
|
+
[[package]]
|
|
82
|
+
name = "getrandom"
|
|
83
|
+
version = "0.3.4"
|
|
84
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
85
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
86
|
+
dependencies = [
|
|
87
|
+
"cfg-if",
|
|
88
|
+
"libc",
|
|
89
|
+
"r-efi",
|
|
90
|
+
"wasip2",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "heck"
|
|
95
|
+
version = "0.4.1"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "indoc"
|
|
101
|
+
version = "2.0.7"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"rustversion",
|
|
106
|
+
]
|
|
107
|
+
|
|
108
|
+
[[package]]
|
|
109
|
+
name = "itoa"
|
|
110
|
+
version = "1.0.17"
|
|
111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
112
|
+
checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "jobserver"
|
|
116
|
+
version = "0.1.34"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
119
|
+
dependencies = [
|
|
120
|
+
"getrandom",
|
|
121
|
+
"libc",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "lazy-init"
|
|
126
|
+
version = "0.3.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "e71f2233af239a915476da8ee21a57331d82b9880c78220451ece7cb5862d313"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "libc"
|
|
132
|
+
version = "0.2.180"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "libloading"
|
|
138
|
+
version = "0.8.9"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"cfg-if",
|
|
143
|
+
"windows-link",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "linux-raw-sys"
|
|
148
|
+
version = "0.11.0"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
151
|
+
|
|
152
|
+
[[package]]
|
|
153
|
+
name = "lock_api"
|
|
154
|
+
version = "0.4.14"
|
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
156
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
157
|
+
dependencies = [
|
|
158
|
+
"scopeguard",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "matrixmultiply"
|
|
163
|
+
version = "0.3.10"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"autocfg",
|
|
168
|
+
"rawpointer",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "memchr"
|
|
173
|
+
version = "2.7.6"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "memoffset"
|
|
179
|
+
version = "0.9.1"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"autocfg",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "nalgebra"
|
|
188
|
+
version = "0.32.6"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "7b5c17de023a86f59ed79891b2e5d5a94c705dbe904a5b5c9c952ea6221b03e4"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"approx",
|
|
193
|
+
"matrixmultiply",
|
|
194
|
+
"nalgebra-macros",
|
|
195
|
+
"num-complex",
|
|
196
|
+
"num-rational",
|
|
197
|
+
"num-traits",
|
|
198
|
+
"simba",
|
|
199
|
+
"typenum",
|
|
200
|
+
]
|
|
201
|
+
|
|
202
|
+
[[package]]
|
|
203
|
+
name = "nalgebra-macros"
|
|
204
|
+
version = "0.2.2"
|
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
206
|
+
checksum = "254a5372af8fc138e36684761d3c0cdb758a4410e938babcff1c860ce14ddbfc"
|
|
207
|
+
dependencies = [
|
|
208
|
+
"proc-macro2",
|
|
209
|
+
"quote",
|
|
210
|
+
"syn",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "ndarray"
|
|
215
|
+
version = "0.15.6"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "adb12d4e967ec485a5f71c6311fe28158e9d6f4bc4a447b474184d0f91a8fa32"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"matrixmultiply",
|
|
220
|
+
"num-complex",
|
|
221
|
+
"num-integer",
|
|
222
|
+
"num-traits",
|
|
223
|
+
"rawpointer",
|
|
224
|
+
]
|
|
225
|
+
|
|
226
|
+
[[package]]
|
|
227
|
+
name = "num-complex"
|
|
228
|
+
version = "0.4.6"
|
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
230
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
231
|
+
dependencies = [
|
|
232
|
+
"num-traits",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "num-integer"
|
|
237
|
+
version = "0.1.46"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"num-traits",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "num-rational"
|
|
246
|
+
version = "0.4.2"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"num-integer",
|
|
251
|
+
"num-traits",
|
|
252
|
+
]
|
|
253
|
+
|
|
254
|
+
[[package]]
|
|
255
|
+
name = "num-traits"
|
|
256
|
+
version = "0.2.19"
|
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
258
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
259
|
+
dependencies = [
|
|
260
|
+
"autocfg",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "numpy"
|
|
265
|
+
version = "0.21.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "ec170733ca37175f5d75a5bea5911d6ff45d2cd52849ce98b685394e4f2f37f4"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"libc",
|
|
270
|
+
"ndarray",
|
|
271
|
+
"num-complex",
|
|
272
|
+
"num-integer",
|
|
273
|
+
"num-traits",
|
|
274
|
+
"pyo3",
|
|
275
|
+
"rustc-hash",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "once_cell"
|
|
280
|
+
version = "1.21.3"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "parking_lot"
|
|
286
|
+
version = "0.12.5"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"lock_api",
|
|
291
|
+
"parking_lot_core",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "parking_lot_core"
|
|
296
|
+
version = "0.9.12"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"cfg-if",
|
|
301
|
+
"libc",
|
|
302
|
+
"redox_syscall",
|
|
303
|
+
"smallvec",
|
|
304
|
+
"windows-link",
|
|
305
|
+
]
|
|
306
|
+
|
|
307
|
+
[[package]]
|
|
308
|
+
name = "paste"
|
|
309
|
+
version = "1.0.15"
|
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "portable-atomic"
|
|
315
|
+
version = "1.13.0"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "primal-check"
|
|
321
|
+
version = "0.3.4"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "dc0d895b311e3af9902528fbb8f928688abbd95872819320517cc24ca6b2bd08"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"num-integer",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "proc-macro2"
|
|
330
|
+
version = "1.0.106"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
333
|
+
dependencies = [
|
|
334
|
+
"unicode-ident",
|
|
335
|
+
]
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "pyo3"
|
|
339
|
+
version = "0.21.2"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "a5e00b96a521718e08e03b1a622f01c8a8deb50719335de3f60b3b3950f069d8"
|
|
342
|
+
dependencies = [
|
|
343
|
+
"cfg-if",
|
|
344
|
+
"indoc",
|
|
345
|
+
"libc",
|
|
346
|
+
"memoffset",
|
|
347
|
+
"parking_lot",
|
|
348
|
+
"portable-atomic",
|
|
349
|
+
"pyo3-build-config",
|
|
350
|
+
"pyo3-ffi",
|
|
351
|
+
"pyo3-macros",
|
|
352
|
+
"unindent",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "pyo3-build-config"
|
|
357
|
+
version = "0.21.2"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "7883df5835fafdad87c0d888b266c8ec0f4c9ca48a5bed6bbb592e8dedee1b50"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"once_cell",
|
|
362
|
+
"target-lexicon",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "pyo3-ffi"
|
|
367
|
+
version = "0.21.2"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "01be5843dc60b916ab4dad1dca6d20b9b4e6ddc8e15f50c47fe6d85f1fb97403"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"libc",
|
|
372
|
+
"pyo3-build-config",
|
|
373
|
+
]
|
|
374
|
+
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "pyo3-macros"
|
|
377
|
+
version = "0.21.2"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "77b34069fc0682e11b31dbd10321cbf94808394c56fd996796ce45217dfac53c"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"proc-macro2",
|
|
382
|
+
"pyo3-macros-backend",
|
|
383
|
+
"quote",
|
|
384
|
+
"syn",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "pyo3-macros-backend"
|
|
389
|
+
version = "0.21.2"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "08260721f32db5e1a5beae69a55553f56b99bd0e1c3e6e0a5e8851a9d0f5a85c"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"heck",
|
|
394
|
+
"proc-macro2",
|
|
395
|
+
"pyo3-build-config",
|
|
396
|
+
"quote",
|
|
397
|
+
"syn",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "quote"
|
|
402
|
+
version = "1.0.44"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"proc-macro2",
|
|
407
|
+
]
|
|
408
|
+
|
|
409
|
+
[[package]]
|
|
410
|
+
name = "r-efi"
|
|
411
|
+
version = "5.3.0"
|
|
412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "rawpointer"
|
|
417
|
+
version = "0.2.1"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
420
|
+
|
|
421
|
+
[[package]]
|
|
422
|
+
name = "redox_syscall"
|
|
423
|
+
version = "0.5.18"
|
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
425
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
426
|
+
dependencies = [
|
|
427
|
+
"bitflags",
|
|
428
|
+
]
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "rustc-hash"
|
|
432
|
+
version = "1.1.0"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
435
|
+
|
|
436
|
+
[[package]]
|
|
437
|
+
name = "rustfft"
|
|
438
|
+
version = "6.4.1"
|
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
440
|
+
checksum = "21db5f9893e91f41798c88680037dba611ca6674703c1a18601b01a72c8adb89"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"num-complex",
|
|
443
|
+
"num-integer",
|
|
444
|
+
"num-traits",
|
|
445
|
+
"primal-check",
|
|
446
|
+
"strength_reduce",
|
|
447
|
+
"transpose",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "rustix"
|
|
452
|
+
version = "1.1.3"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"bitflags",
|
|
457
|
+
"errno",
|
|
458
|
+
"libc",
|
|
459
|
+
"linux-raw-sys",
|
|
460
|
+
"windows-sys",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "rustversion"
|
|
465
|
+
version = "1.0.22"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
468
|
+
|
|
469
|
+
[[package]]
|
|
470
|
+
name = "safe_arch"
|
|
471
|
+
version = "0.7.4"
|
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
473
|
+
checksum = "96b02de82ddbe1b636e6170c21be622223aea188ef2e139be0a5b219ec215323"
|
|
474
|
+
dependencies = [
|
|
475
|
+
"bytemuck",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "scopeguard"
|
|
480
|
+
version = "1.2.0"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "serde"
|
|
486
|
+
version = "1.0.228"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"serde_core",
|
|
491
|
+
"serde_derive",
|
|
492
|
+
]
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "serde_core"
|
|
496
|
+
version = "1.0.228"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"serde_derive",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "serde_derive"
|
|
505
|
+
version = "1.0.228"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"proc-macro2",
|
|
510
|
+
"quote",
|
|
511
|
+
"syn",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "serde_json"
|
|
516
|
+
version = "1.0.149"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"itoa",
|
|
521
|
+
"memchr",
|
|
522
|
+
"serde",
|
|
523
|
+
"serde_core",
|
|
524
|
+
"zmij",
|
|
525
|
+
]
|
|
526
|
+
|
|
527
|
+
[[package]]
|
|
528
|
+
name = "shlex"
|
|
529
|
+
version = "1.3.0"
|
|
530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "simba"
|
|
535
|
+
version = "0.8.1"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"approx",
|
|
540
|
+
"num-complex",
|
|
541
|
+
"num-traits",
|
|
542
|
+
"paste",
|
|
543
|
+
"wide",
|
|
544
|
+
]
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "smallvec"
|
|
548
|
+
version = "1.15.1"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
551
|
+
|
|
552
|
+
[[package]]
|
|
553
|
+
name = "strength_reduce"
|
|
554
|
+
version = "0.2.4"
|
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
556
|
+
checksum = "fe895eb47f22e2ddd4dabc02bce419d2e643c8e3b585c78158b349195bc24d82"
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "syn"
|
|
560
|
+
version = "2.0.114"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"proc-macro2",
|
|
565
|
+
"quote",
|
|
566
|
+
"unicode-ident",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "target-lexicon"
|
|
571
|
+
version = "0.12.16"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "tempfile"
|
|
577
|
+
version = "3.24.0"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"fastrand",
|
|
582
|
+
"getrandom",
|
|
583
|
+
"once_cell",
|
|
584
|
+
"rustix",
|
|
585
|
+
"windows-sys",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "traj-core"
|
|
590
|
+
version = "0.1.0"
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "traj-engine"
|
|
594
|
+
version = "0.1.0"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"bytemuck",
|
|
597
|
+
"libloading",
|
|
598
|
+
"nalgebra",
|
|
599
|
+
"rustfft",
|
|
600
|
+
"serde",
|
|
601
|
+
"serde_json",
|
|
602
|
+
"traj-core",
|
|
603
|
+
"traj-gpu",
|
|
604
|
+
"traj-io",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "traj-gpu"
|
|
609
|
+
version = "0.1.0"
|
|
610
|
+
dependencies = [
|
|
611
|
+
"cudarc",
|
|
612
|
+
"traj-core",
|
|
613
|
+
"traj-kernels",
|
|
614
|
+
]
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "traj-io"
|
|
618
|
+
version = "0.1.0"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"tempfile",
|
|
621
|
+
"traj-core",
|
|
622
|
+
"xdrfile",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "traj-kernels"
|
|
627
|
+
version = "0.1.0"
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "traj-py"
|
|
631
|
+
version = "0.1.0"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"numpy",
|
|
634
|
+
"pyo3",
|
|
635
|
+
"traj-core",
|
|
636
|
+
"traj-engine",
|
|
637
|
+
"traj-io",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "transpose"
|
|
642
|
+
version = "0.2.3"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "1ad61aed86bc3faea4300c7aee358b4c6d0c8d6ccc36524c96e4c92ccf26e77e"
|
|
645
|
+
dependencies = [
|
|
646
|
+
"num-integer",
|
|
647
|
+
"strength_reduce",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "typenum"
|
|
652
|
+
version = "1.19.0"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "unicode-ident"
|
|
658
|
+
version = "1.0.22"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "unindent"
|
|
664
|
+
version = "0.2.4"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
667
|
+
|
|
668
|
+
[[package]]
|
|
669
|
+
name = "wasip2"
|
|
670
|
+
version = "1.0.2+wasi-0.2.9"
|
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
673
|
+
dependencies = [
|
|
674
|
+
"wit-bindgen",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "wide"
|
|
679
|
+
version = "0.7.33"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "0ce5da8ecb62bcd8ec8b7ea19f69a51275e91299be594ea5cc6ef7819e16cd03"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"bytemuck",
|
|
684
|
+
"safe_arch",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "windows-link"
|
|
689
|
+
version = "0.2.1"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
692
|
+
|
|
693
|
+
[[package]]
|
|
694
|
+
name = "windows-sys"
|
|
695
|
+
version = "0.61.2"
|
|
696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
697
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
698
|
+
dependencies = [
|
|
699
|
+
"windows-link",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "wit-bindgen"
|
|
704
|
+
version = "0.51.0"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "xdrfile"
|
|
710
|
+
version = "0.3.0"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "bf1595f570602d54ac2e301f814d6ad5c00446043930d7912525ab3d10985b4f"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"cc",
|
|
715
|
+
"lazy-init",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "zmij"
|
|
720
|
+
version = "1.0.17"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "02aae0f83f69aafc94776e879363e9771d7ecbffe2c7fbb6c14c5e00dfe88439"
|