dockq-rs 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.
- dockq_rs-0.1.0/Cargo.lock +1024 -0
- dockq_rs-0.1.0/Cargo.toml +14 -0
- dockq_rs-0.1.0/PKG-INFO +86 -0
- dockq_rs-0.1.0/README.md +58 -0
- dockq_rs-0.1.0/dockq-core/Cargo.toml +20 -0
- dockq_rs-0.1.0/dockq-core/src/align.rs +863 -0
- dockq_rs-0.1.0/dockq-core/src/batch.rs +98 -0
- dockq_rs-0.1.0/dockq-core/src/dockq.rs +347 -0
- dockq_rs-0.1.0/dockq-core/src/error.rs +54 -0
- dockq_rs-0.1.0/dockq-core/src/geometry.rs +421 -0
- dockq_rs-0.1.0/dockq-core/src/lib.rs +39 -0
- dockq_rs-0.1.0/dockq-core/src/mapping.rs +461 -0
- dockq_rs-0.1.0/dockq-core/src/model.rs +165 -0
- dockq_rs-0.1.0/dockq-core/src/parser.rs +1075 -0
- dockq_rs-0.1.0/dockq-core/tests/data/1A2K_r_l_b.model.pdb +7103 -0
- dockq_rs-0.1.0/dockq-core/tests/data/1A2K_r_l_b.pdb +3560 -0
- dockq_rs-0.1.0/dockq-core/tests/data/1EXB.cif.gz +0 -0
- dockq_rs-0.1.0/dockq-core/tests/data/1HHO_hem.cif +4127 -0
- dockq_rs-0.1.0/dockq-core/tests/data/model.pdb +4888 -0
- dockq_rs-0.1.0/dockq-core/tests/integration.rs +83 -0
- dockq_rs-0.1.0/dockq-py/Cargo.toml +15 -0
- dockq_rs-0.1.0/dockq-py/README.md +58 -0
- dockq_rs-0.1.0/dockq-py/src/lib.rs +282 -0
- dockq_rs-0.1.0/pyproject.toml +51 -0
- dockq_rs-0.1.0/python/dockq_rs/__init__.py +27 -0
|
@@ -0,0 +1,1024 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "anstream"
|
|
13
|
+
version = "1.0.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"anstyle",
|
|
18
|
+
"anstyle-parse",
|
|
19
|
+
"anstyle-query",
|
|
20
|
+
"anstyle-wincon",
|
|
21
|
+
"colorchoice",
|
|
22
|
+
"is_terminal_polyfill",
|
|
23
|
+
"utf8parse",
|
|
24
|
+
]
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "anstyle"
|
|
28
|
+
version = "1.0.14"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "anstyle-parse"
|
|
34
|
+
version = "1.0.0"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
37
|
+
dependencies = [
|
|
38
|
+
"utf8parse",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-query"
|
|
43
|
+
version = "1.1.5"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"windows-sys",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-wincon"
|
|
52
|
+
version = "3.0.11"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"anstyle",
|
|
57
|
+
"once_cell_polyfill",
|
|
58
|
+
"windows-sys",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "approx"
|
|
63
|
+
version = "0.5.1"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"num-traits",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "autocfg"
|
|
72
|
+
version = "1.5.1"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bit-set"
|
|
78
|
+
version = "0.8.0"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"bit-vec",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "bit-vec"
|
|
87
|
+
version = "0.8.0"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
90
|
+
|
|
91
|
+
[[package]]
|
|
92
|
+
name = "bitflags"
|
|
93
|
+
version = "2.13.0"
|
|
94
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
95
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "bytemuck"
|
|
99
|
+
version = "1.25.0"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "byteorder"
|
|
105
|
+
version = "1.5.0"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "cfg-if"
|
|
111
|
+
version = "1.0.4"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "clap"
|
|
117
|
+
version = "4.6.1"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"clap_builder",
|
|
122
|
+
"clap_derive",
|
|
123
|
+
]
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "clap_builder"
|
|
127
|
+
version = "4.6.0"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"anstream",
|
|
132
|
+
"anstyle",
|
|
133
|
+
"clap_lex",
|
|
134
|
+
"strsim",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "clap_derive"
|
|
139
|
+
version = "4.6.1"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"heck",
|
|
144
|
+
"proc-macro2 1.0.106",
|
|
145
|
+
"quote 1.0.45",
|
|
146
|
+
"syn",
|
|
147
|
+
]
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "clap_lex"
|
|
151
|
+
version = "1.1.0"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "colorchoice"
|
|
157
|
+
version = "1.0.5"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "crc32fast"
|
|
163
|
+
version = "1.5.0"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"cfg-if",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "crossbeam-deque"
|
|
172
|
+
version = "0.8.6"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"crossbeam-epoch",
|
|
177
|
+
"crossbeam-utils",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "crossbeam-epoch"
|
|
182
|
+
version = "0.9.18"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"crossbeam-utils",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "crossbeam-utils"
|
|
191
|
+
version = "0.8.21"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "doc-cfg"
|
|
197
|
+
version = "0.1.0"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "3b4f3d1d3adb03db53727b1d60d42e247dbf4c8612f1afff5efb52ad1bd1c264"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"proc-macro2 0.4.30",
|
|
202
|
+
"quote 0.6.13",
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "dockq-cli"
|
|
207
|
+
version = "0.1.0"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"clap",
|
|
210
|
+
"dockq-core",
|
|
211
|
+
"rayon",
|
|
212
|
+
"serde_json",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "dockq-core"
|
|
217
|
+
version = "0.1.0"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"approx",
|
|
220
|
+
"flate2",
|
|
221
|
+
"indexmap",
|
|
222
|
+
"nalgebra",
|
|
223
|
+
"pdbtbx",
|
|
224
|
+
"proptest",
|
|
225
|
+
"rayon",
|
|
226
|
+
"thiserror",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "dockq-py"
|
|
231
|
+
version = "0.1.0"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"dockq-core",
|
|
234
|
+
"indexmap",
|
|
235
|
+
"pyo3",
|
|
236
|
+
]
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "either"
|
|
240
|
+
version = "1.16.0"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "equivalent"
|
|
246
|
+
version = "1.0.2"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "errno"
|
|
252
|
+
version = "0.3.14"
|
|
253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
255
|
+
dependencies = [
|
|
256
|
+
"libc",
|
|
257
|
+
"windows-sys",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "fastrand"
|
|
262
|
+
version = "2.4.1"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "flate2"
|
|
268
|
+
version = "1.1.9"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"crc32fast",
|
|
273
|
+
"miniz_oxide",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "fnv"
|
|
278
|
+
version = "1.0.7"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "getrandom"
|
|
284
|
+
version = "0.3.4"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
287
|
+
dependencies = [
|
|
288
|
+
"cfg-if",
|
|
289
|
+
"libc",
|
|
290
|
+
"r-efi 5.3.0",
|
|
291
|
+
"wasip2",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "getrandom"
|
|
296
|
+
version = "0.4.3"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"cfg-if",
|
|
301
|
+
"libc",
|
|
302
|
+
"r-efi 6.0.0",
|
|
303
|
+
]
|
|
304
|
+
|
|
305
|
+
[[package]]
|
|
306
|
+
name = "glam"
|
|
307
|
+
version = "0.30.10"
|
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
+
checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "glam"
|
|
313
|
+
version = "0.31.1"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "556f6b2ea90b8d15a74e0e7bb41671c9bdf38cd9f78c284d750b9ce58a2b5be7"
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "glam"
|
|
319
|
+
version = "0.32.1"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "f70749695b063ecbf6b62949ccccde2e733ec3ecbbd71d467dca4e5c6c97cca0"
|
|
322
|
+
|
|
323
|
+
[[package]]
|
|
324
|
+
name = "glam"
|
|
325
|
+
version = "0.33.1"
|
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
327
|
+
checksum = "898f5a568a84989b6c0f8caa50a93074b97dbdc58fc6d9543157bb4562758933"
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "hash32"
|
|
331
|
+
version = "0.3.1"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"byteorder",
|
|
336
|
+
]
|
|
337
|
+
|
|
338
|
+
[[package]]
|
|
339
|
+
name = "hashbrown"
|
|
340
|
+
version = "0.17.1"
|
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
342
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "heapless"
|
|
346
|
+
version = "0.8.0"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"hash32",
|
|
351
|
+
"stable_deref_trait",
|
|
352
|
+
]
|
|
353
|
+
|
|
354
|
+
[[package]]
|
|
355
|
+
name = "heck"
|
|
356
|
+
version = "0.5.0"
|
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
358
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
359
|
+
|
|
360
|
+
[[package]]
|
|
361
|
+
name = "indexmap"
|
|
362
|
+
version = "2.14.0"
|
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
365
|
+
dependencies = [
|
|
366
|
+
"equivalent",
|
|
367
|
+
"hashbrown",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "is_terminal_polyfill"
|
|
372
|
+
version = "1.70.2"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "itoa"
|
|
378
|
+
version = "1.0.18"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "libc"
|
|
384
|
+
version = "0.2.186"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "libm"
|
|
390
|
+
version = "0.2.16"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "linux-raw-sys"
|
|
396
|
+
version = "0.12.1"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "matrixmultiply"
|
|
402
|
+
version = "0.3.10"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "a06de3016e9fae57a36fd14dba131fccf49f74b40b7fbdb472f96e361ec71a08"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"autocfg",
|
|
407
|
+
"rawpointer",
|
|
408
|
+
]
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "memchr"
|
|
412
|
+
version = "2.8.2"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "miniz_oxide"
|
|
418
|
+
version = "0.8.9"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
421
|
+
dependencies = [
|
|
422
|
+
"adler2",
|
|
423
|
+
"simd-adler32",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "nalgebra"
|
|
428
|
+
version = "0.35.0"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "adc43a60c217b0c6ff46e47f26911015ad8d2e5a8be1af668c67e370d99a4346"
|
|
431
|
+
dependencies = [
|
|
432
|
+
"approx",
|
|
433
|
+
"glam 0.30.10",
|
|
434
|
+
"glam 0.31.1",
|
|
435
|
+
"glam 0.32.1",
|
|
436
|
+
"glam 0.33.1",
|
|
437
|
+
"matrixmultiply",
|
|
438
|
+
"nalgebra-macros",
|
|
439
|
+
"num-complex",
|
|
440
|
+
"num-rational",
|
|
441
|
+
"num-traits",
|
|
442
|
+
"simba",
|
|
443
|
+
"typenum",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "nalgebra-macros"
|
|
448
|
+
version = "0.3.0"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "973e7178a678cfd059ccec50887658d482ce16b0aa9da3888ddeab5cd5eb4889"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"proc-macro2 1.0.106",
|
|
453
|
+
"quote 1.0.45",
|
|
454
|
+
"syn",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "num-bigint"
|
|
459
|
+
version = "0.4.6"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"num-integer",
|
|
464
|
+
"num-traits",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "num-complex"
|
|
469
|
+
version = "0.4.6"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"num-traits",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "num-integer"
|
|
478
|
+
version = "0.1.46"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
481
|
+
dependencies = [
|
|
482
|
+
"num-traits",
|
|
483
|
+
]
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "num-rational"
|
|
487
|
+
version = "0.4.2"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
490
|
+
dependencies = [
|
|
491
|
+
"num-bigint",
|
|
492
|
+
"num-integer",
|
|
493
|
+
"num-traits",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "num-traits"
|
|
498
|
+
version = "0.2.19"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
501
|
+
dependencies = [
|
|
502
|
+
"autocfg",
|
|
503
|
+
"libm",
|
|
504
|
+
]
|
|
505
|
+
|
|
506
|
+
[[package]]
|
|
507
|
+
name = "once_cell"
|
|
508
|
+
version = "1.21.4"
|
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
510
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "once_cell_polyfill"
|
|
514
|
+
version = "1.70.2"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "pdbtbx"
|
|
520
|
+
version = "0.12.0"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "932b111b429ecfb94434569372e9538543b1abee9c51908f7a92f18b934f03bf"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"doc-cfg",
|
|
525
|
+
"flate2",
|
|
526
|
+
"indexmap",
|
|
527
|
+
"rayon",
|
|
528
|
+
"rstar",
|
|
529
|
+
"serde",
|
|
530
|
+
]
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "portable-atomic"
|
|
534
|
+
version = "1.13.1"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "ppv-lite86"
|
|
540
|
+
version = "0.2.21"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"zerocopy",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "proc-macro2"
|
|
549
|
+
version = "0.4.30"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"unicode-xid",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "proc-macro2"
|
|
558
|
+
version = "1.0.106"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"unicode-ident",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "proptest"
|
|
567
|
+
version = "1.11.0"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"bit-set",
|
|
572
|
+
"bit-vec",
|
|
573
|
+
"bitflags",
|
|
574
|
+
"num-traits",
|
|
575
|
+
"rand",
|
|
576
|
+
"rand_chacha",
|
|
577
|
+
"rand_xorshift",
|
|
578
|
+
"regex-syntax",
|
|
579
|
+
"rusty-fork",
|
|
580
|
+
"tempfile",
|
|
581
|
+
"unarray",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "pyo3"
|
|
586
|
+
version = "0.29.0"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "cd274650b21d4bfc26a0a47587962c1edb425f69287324355cd040c3ea66071c"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"libc",
|
|
591
|
+
"once_cell",
|
|
592
|
+
"portable-atomic",
|
|
593
|
+
"pyo3-build-config",
|
|
594
|
+
"pyo3-ffi",
|
|
595
|
+
"pyo3-macros",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "pyo3-build-config"
|
|
600
|
+
version = "0.29.0"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "c5e2a7d2f0d013342f295c048ad19237add5154a55b1c5a254c0ec93d4109078"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"target-lexicon",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "pyo3-ffi"
|
|
609
|
+
version = "0.29.0"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "ca85c467da1bbc8d866eea5deff9cf29ea5f7785054a17da36e65bda9c05845b"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"libc",
|
|
614
|
+
"pyo3-build-config",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "pyo3-macros"
|
|
619
|
+
version = "0.29.0"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "9ac53762fd065daa3194dd09337a38bd793a188100fd1a9304c4ab312d901771"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"proc-macro2 1.0.106",
|
|
624
|
+
"pyo3-macros-backend",
|
|
625
|
+
"quote 1.0.45",
|
|
626
|
+
"syn",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "pyo3-macros-backend"
|
|
631
|
+
version = "0.29.0"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "4ca3a1557399783172dc5bf39cfca835157732532cba56b71d2292161e53b362"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"heck",
|
|
636
|
+
"proc-macro2 1.0.106",
|
|
637
|
+
"quote 1.0.45",
|
|
638
|
+
"syn",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "quick-error"
|
|
643
|
+
version = "1.2.3"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
646
|
+
|
|
647
|
+
[[package]]
|
|
648
|
+
name = "quote"
|
|
649
|
+
version = "0.6.13"
|
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
651
|
+
checksum = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
|
|
652
|
+
dependencies = [
|
|
653
|
+
"proc-macro2 0.4.30",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "quote"
|
|
658
|
+
version = "1.0.45"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"proc-macro2 1.0.106",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "r-efi"
|
|
667
|
+
version = "5.3.0"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "r-efi"
|
|
673
|
+
version = "6.0.0"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "rand"
|
|
679
|
+
version = "0.9.4"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"rand_chacha",
|
|
684
|
+
"rand_core",
|
|
685
|
+
]
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "rand_chacha"
|
|
689
|
+
version = "0.9.0"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"ppv-lite86",
|
|
694
|
+
"rand_core",
|
|
695
|
+
]
|
|
696
|
+
|
|
697
|
+
[[package]]
|
|
698
|
+
name = "rand_core"
|
|
699
|
+
version = "0.9.5"
|
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
701
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
702
|
+
dependencies = [
|
|
703
|
+
"getrandom 0.3.4",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "rand_xorshift"
|
|
708
|
+
version = "0.4.0"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"rand_core",
|
|
713
|
+
]
|
|
714
|
+
|
|
715
|
+
[[package]]
|
|
716
|
+
name = "rawpointer"
|
|
717
|
+
version = "0.2.1"
|
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
719
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "rayon"
|
|
723
|
+
version = "1.12.0"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"either",
|
|
728
|
+
"rayon-core",
|
|
729
|
+
]
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "rayon-core"
|
|
733
|
+
version = "1.13.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
736
|
+
dependencies = [
|
|
737
|
+
"crossbeam-deque",
|
|
738
|
+
"crossbeam-utils",
|
|
739
|
+
]
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "regex-syntax"
|
|
743
|
+
version = "0.8.11"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "rstar"
|
|
749
|
+
version = "0.12.2"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "421400d13ccfd26dfa5858199c30a5d76f9c54e0dba7575273025b43c5175dbb"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"heapless",
|
|
754
|
+
"num-traits",
|
|
755
|
+
"smallvec",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "rustix"
|
|
760
|
+
version = "1.1.4"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"bitflags",
|
|
765
|
+
"errno",
|
|
766
|
+
"libc",
|
|
767
|
+
"linux-raw-sys",
|
|
768
|
+
"windows-sys",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "rusty-fork"
|
|
773
|
+
version = "0.3.1"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
776
|
+
dependencies = [
|
|
777
|
+
"fnv",
|
|
778
|
+
"quick-error",
|
|
779
|
+
"tempfile",
|
|
780
|
+
"wait-timeout",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "safe_arch"
|
|
785
|
+
version = "1.0.0"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "1f7caad094bd561859bcd467734a720c3c1f5d1f338995351fefe2190c45efed"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"bytemuck",
|
|
790
|
+
]
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "serde"
|
|
794
|
+
version = "1.0.228"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
797
|
+
dependencies = [
|
|
798
|
+
"serde_core",
|
|
799
|
+
"serde_derive",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "serde_core"
|
|
804
|
+
version = "1.0.228"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"serde_derive",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "serde_derive"
|
|
813
|
+
version = "1.0.228"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"proc-macro2 1.0.106",
|
|
818
|
+
"quote 1.0.45",
|
|
819
|
+
"syn",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "serde_json"
|
|
824
|
+
version = "1.0.150"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"itoa",
|
|
829
|
+
"memchr",
|
|
830
|
+
"serde",
|
|
831
|
+
"serde_core",
|
|
832
|
+
"zmij",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "simba"
|
|
837
|
+
version = "0.10.0"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "8f45c644a9f3a386f9288625d9f0c1e999e1acf07a37df35d0516c7f199d9cb2"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"approx",
|
|
842
|
+
"num-complex",
|
|
843
|
+
"num-traits",
|
|
844
|
+
"wide",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "simd-adler32"
|
|
849
|
+
version = "0.3.9"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "smallvec"
|
|
855
|
+
version = "1.15.2"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "stable_deref_trait"
|
|
861
|
+
version = "1.2.1"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "strsim"
|
|
867
|
+
version = "0.11.1"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "syn"
|
|
873
|
+
version = "2.0.118"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
876
|
+
dependencies = [
|
|
877
|
+
"proc-macro2 1.0.106",
|
|
878
|
+
"quote 1.0.45",
|
|
879
|
+
"unicode-ident",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "target-lexicon"
|
|
884
|
+
version = "0.13.5"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "tempfile"
|
|
890
|
+
version = "3.27.0"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"fastrand",
|
|
895
|
+
"getrandom 0.4.3",
|
|
896
|
+
"once_cell",
|
|
897
|
+
"rustix",
|
|
898
|
+
"windows-sys",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "thiserror"
|
|
903
|
+
version = "2.0.18"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"thiserror-impl",
|
|
908
|
+
]
|
|
909
|
+
|
|
910
|
+
[[package]]
|
|
911
|
+
name = "thiserror-impl"
|
|
912
|
+
version = "2.0.18"
|
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
914
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
915
|
+
dependencies = [
|
|
916
|
+
"proc-macro2 1.0.106",
|
|
917
|
+
"quote 1.0.45",
|
|
918
|
+
"syn",
|
|
919
|
+
]
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "typenum"
|
|
923
|
+
version = "1.20.1"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "unarray"
|
|
929
|
+
version = "0.1.4"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "unicode-ident"
|
|
935
|
+
version = "1.0.24"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "unicode-xid"
|
|
941
|
+
version = "0.1.0"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "utf8parse"
|
|
947
|
+
version = "0.2.2"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "wait-timeout"
|
|
953
|
+
version = "0.2.1"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"libc",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "wasip2"
|
|
962
|
+
version = "1.0.4+wasi-0.2.12"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"wit-bindgen",
|
|
967
|
+
]
|
|
968
|
+
|
|
969
|
+
[[package]]
|
|
970
|
+
name = "wide"
|
|
971
|
+
version = "1.5.0"
|
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
973
|
+
checksum = "dfdfe6a32973f2d1b268b8895845a8a96cac2f0191e72c27cc929036060dbf89"
|
|
974
|
+
dependencies = [
|
|
975
|
+
"bytemuck",
|
|
976
|
+
"safe_arch",
|
|
977
|
+
]
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "windows-link"
|
|
981
|
+
version = "0.2.1"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "windows-sys"
|
|
987
|
+
version = "0.61.2"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
990
|
+
dependencies = [
|
|
991
|
+
"windows-link",
|
|
992
|
+
]
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "wit-bindgen"
|
|
996
|
+
version = "0.57.1"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "zerocopy"
|
|
1002
|
+
version = "0.8.52"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
1005
|
+
dependencies = [
|
|
1006
|
+
"zerocopy-derive",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "zerocopy-derive"
|
|
1011
|
+
version = "0.8.52"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"proc-macro2 1.0.106",
|
|
1016
|
+
"quote 1.0.45",
|
|
1017
|
+
"syn",
|
|
1018
|
+
]
|
|
1019
|
+
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "zmij"
|
|
1022
|
+
version = "1.0.21"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|