moyopy 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.
- moyopy-0.1.0/Cargo.lock +838 -0
- moyopy-0.1.0/Cargo.toml +16 -0
- moyopy-0.1.0/PKG-INFO +24 -0
- moyopy-0.1.0/README.md +3 -0
- moyopy-0.1.0/moyo/Cargo.toml +26 -0
- moyopy-0.1.0/moyo/src/base/cell.rs +103 -0
- moyopy-0.1.0/moyo/src/base/error.rs +27 -0
- moyopy-0.1.0/moyo/src/base/lattice.rs +111 -0
- moyopy-0.1.0/moyo/src/base/operation.rs +153 -0
- moyopy-0.1.0/moyo/src/base/tolerance.rs +7 -0
- moyopy-0.1.0/moyo/src/base/transformation.rs +273 -0
- moyopy-0.1.0/moyo/src/base.rs +19 -0
- moyopy-0.1.0/moyo/src/data/arithmetic_crystal_class.rs +122 -0
- moyopy-0.1.0/moyo/src/data/classification.rs +244 -0
- moyopy-0.1.0/moyo/src/data/hall_symbol.rs +607 -0
- moyopy-0.1.0/moyo/src/data/hall_symbol_database.rs +4336 -0
- moyopy-0.1.0/moyo/src/data/point_group.rs +232 -0
- moyopy-0.1.0/moyo/src/data/setting.rs +52 -0
- moyopy-0.1.0/moyo/src/data/wyckoff.rs +3614 -0
- moyopy-0.1.0/moyo/src/data.rs +22 -0
- moyopy-0.1.0/moyo/src/identify/point_group.rs +393 -0
- moyopy-0.1.0/moyo/src/identify/space_group.rs +356 -0
- moyopy-0.1.0/moyo/src/identify.rs +4 -0
- moyopy-0.1.0/moyo/src/lib.rs +169 -0
- moyopy-0.1.0/moyo/src/math/cycle_checker.rs +40 -0
- moyopy-0.1.0/moyo/src/math/delaunay.rs +167 -0
- moyopy-0.1.0/moyo/src/math/elementary.rs +84 -0
- moyopy-0.1.0/moyo/src/math/hnf.rs +132 -0
- moyopy-0.1.0/moyo/src/math/integer_system.rs +90 -0
- moyopy-0.1.0/moyo/src/math/minkowski.rs +242 -0
- moyopy-0.1.0/moyo/src/math/niggli.rs +511 -0
- moyopy-0.1.0/moyo/src/math/snf.rs +155 -0
- moyopy-0.1.0/moyo/src/math.rs +15 -0
- moyopy-0.1.0/moyo/src/search/primitive_cell.rs +311 -0
- moyopy-0.1.0/moyo/src/search/solve.rs +195 -0
- moyopy-0.1.0/moyo/src/search/symmetry_search.rs +280 -0
- moyopy-0.1.0/moyo/src/search.rs +6 -0
- moyopy-0.1.0/moyo/src/symmetrize/standardize.rs +320 -0
- moyopy-0.1.0/moyo/src/symmetrize.rs +4 -0
- moyopy-0.1.0/moyo/tests/test_moyo_dataset.rs +354 -0
- moyopy-0.1.0/moyopy/Cargo.toml +22 -0
- moyopy-0.1.0/moyopy/README.md +3 -0
- moyopy-0.1.0/moyopy/python/moyopy/__init__.py +1 -0
- moyopy-0.1.0/moyopy/python/moyopy/_moyopy.pyi +78 -0
- moyopy-0.1.0/moyopy/python/moyopy/py.typed +0 -0
- moyopy-0.1.0/moyopy/python/tests/conftest.py +31 -0
- moyopy-0.1.0/moyopy/python/tests/test_moyo_dataset.py +7 -0
- moyopy-0.1.0/moyopy/src/base.rs +134 -0
- moyopy-0.1.0/moyopy/src/data.rs +33 -0
- moyopy-0.1.0/moyopy/src/lib.rs +149 -0
- moyopy-0.1.0/pyproject.toml +64 -0
- moyopy-0.1.0/python/moyopy/__init__.py +1 -0
- moyopy-0.1.0/python/moyopy/_moyopy.pyi +78 -0
- moyopy-0.1.0/python/moyopy/py.typed +0 -0
moyopy-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,838 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 3
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "aho-corasick"
|
|
7
|
+
version = "1.1.2"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"memchr",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "approx"
|
|
16
|
+
version = "0.5.1"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
19
|
+
dependencies = [
|
|
20
|
+
"num-traits",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "autocfg"
|
|
25
|
+
version = "1.1.0"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "bitflags"
|
|
31
|
+
version = "1.3.2"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bytemuck"
|
|
37
|
+
version = "1.14.3"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "a2ef034f05691a48569bd920a96c81b9d91bbad1ab5ac7c4616c1f6ef36cb79f"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "cfg-if"
|
|
43
|
+
version = "1.0.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "either"
|
|
49
|
+
version = "1.10.0"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "11157ac094ffbdde99aa67b23417ebdd801842852b500e395a45a9c0aac03e4a"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "futures"
|
|
55
|
+
version = "0.3.30"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"futures-channel",
|
|
60
|
+
"futures-core",
|
|
61
|
+
"futures-executor",
|
|
62
|
+
"futures-io",
|
|
63
|
+
"futures-sink",
|
|
64
|
+
"futures-task",
|
|
65
|
+
"futures-util",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "futures-channel"
|
|
70
|
+
version = "0.3.30"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"futures-core",
|
|
75
|
+
"futures-sink",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "futures-core"
|
|
80
|
+
version = "0.3.30"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "futures-executor"
|
|
86
|
+
version = "0.3.30"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"futures-core",
|
|
91
|
+
"futures-task",
|
|
92
|
+
"futures-util",
|
|
93
|
+
]
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "futures-io"
|
|
97
|
+
version = "0.3.30"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
|
100
|
+
|
|
101
|
+
[[package]]
|
|
102
|
+
name = "futures-macro"
|
|
103
|
+
version = "0.3.30"
|
|
104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
105
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
|
106
|
+
dependencies = [
|
|
107
|
+
"proc-macro2",
|
|
108
|
+
"quote",
|
|
109
|
+
"syn 2.0.52",
|
|
110
|
+
]
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "futures-sink"
|
|
114
|
+
version = "0.3.30"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
|
117
|
+
|
|
118
|
+
[[package]]
|
|
119
|
+
name = "futures-task"
|
|
120
|
+
version = "0.3.30"
|
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
122
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "futures-timer"
|
|
126
|
+
version = "3.0.3"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "futures-util"
|
|
132
|
+
version = "0.3.30"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"futures-channel",
|
|
137
|
+
"futures-core",
|
|
138
|
+
"futures-io",
|
|
139
|
+
"futures-macro",
|
|
140
|
+
"futures-sink",
|
|
141
|
+
"futures-task",
|
|
142
|
+
"memchr",
|
|
143
|
+
"pin-project-lite",
|
|
144
|
+
"pin-utils",
|
|
145
|
+
"slab",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "getrandom"
|
|
150
|
+
version = "0.2.12"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"cfg-if",
|
|
155
|
+
"libc",
|
|
156
|
+
"wasi",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "glob"
|
|
161
|
+
version = "0.3.1"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "heck"
|
|
167
|
+
version = "0.4.1"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "indoc"
|
|
173
|
+
version = "2.0.4"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "1e186cfbae8084e513daff4240b4797e342f988cecda4fb6c939150f96315fd8"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "itertools"
|
|
179
|
+
version = "0.11.0"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"either",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "itoa"
|
|
188
|
+
version = "1.0.10"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "libc"
|
|
194
|
+
version = "0.2.153"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "lock_api"
|
|
200
|
+
version = "0.4.11"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"autocfg",
|
|
205
|
+
"scopeguard",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "matrixmultiply"
|
|
210
|
+
version = "0.3.8"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "7574c1cf36da4798ab73da5b215bbf444f50718207754cb522201d78d1cd0ff2"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"autocfg",
|
|
215
|
+
"rawpointer",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "memchr"
|
|
220
|
+
version = "2.7.1"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "memoffset"
|
|
226
|
+
version = "0.9.0"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"autocfg",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "moyo"
|
|
235
|
+
version = "0.1.0"
|
|
236
|
+
dependencies = [
|
|
237
|
+
"approx",
|
|
238
|
+
"itertools",
|
|
239
|
+
"nalgebra",
|
|
240
|
+
"rand",
|
|
241
|
+
"rstest",
|
|
242
|
+
"serde",
|
|
243
|
+
"serde_json",
|
|
244
|
+
"strum",
|
|
245
|
+
"strum_macros",
|
|
246
|
+
"thiserror",
|
|
247
|
+
"union-find",
|
|
248
|
+
]
|
|
249
|
+
|
|
250
|
+
[[package]]
|
|
251
|
+
name = "moyopy"
|
|
252
|
+
version = "0.1.0"
|
|
253
|
+
dependencies = [
|
|
254
|
+
"moyo",
|
|
255
|
+
"nalgebra",
|
|
256
|
+
"pyo3",
|
|
257
|
+
]
|
|
258
|
+
|
|
259
|
+
[[package]]
|
|
260
|
+
name = "nalgebra"
|
|
261
|
+
version = "0.32.4"
|
|
262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
263
|
+
checksum = "4541eb06dce09c0241ebbaab7102f0a01a0c8994afed2e5d0d66775016e25ac2"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"approx",
|
|
266
|
+
"matrixmultiply",
|
|
267
|
+
"nalgebra-macros",
|
|
268
|
+
"num-complex",
|
|
269
|
+
"num-rational",
|
|
270
|
+
"num-traits",
|
|
271
|
+
"serde",
|
|
272
|
+
"simba",
|
|
273
|
+
"typenum",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "nalgebra-macros"
|
|
278
|
+
version = "0.2.1"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "91761aed67d03ad966ef783ae962ef9bbaca728d2dd7ceb7939ec110fffad998"
|
|
281
|
+
dependencies = [
|
|
282
|
+
"proc-macro2",
|
|
283
|
+
"quote",
|
|
284
|
+
"syn 1.0.109",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "num-complex"
|
|
289
|
+
version = "0.4.5"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "23c6602fda94a57c990fe0df199a035d83576b496aa29f4e634a8ac6004e68a6"
|
|
292
|
+
dependencies = [
|
|
293
|
+
"num-traits",
|
|
294
|
+
"serde",
|
|
295
|
+
]
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "num-integer"
|
|
299
|
+
version = "0.1.46"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
302
|
+
dependencies = [
|
|
303
|
+
"num-traits",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "num-rational"
|
|
308
|
+
version = "0.4.1"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "0638a1c9d0a3c0914158145bc76cff373a75a627e6ecbfb71cbe6f453a5a19b0"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"autocfg",
|
|
313
|
+
"num-integer",
|
|
314
|
+
"num-traits",
|
|
315
|
+
]
|
|
316
|
+
|
|
317
|
+
[[package]]
|
|
318
|
+
name = "num-traits"
|
|
319
|
+
version = "0.2.18"
|
|
320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
321
|
+
checksum = "da0df0e5185db44f69b44f26786fe401b6c293d1907744beaa7fa62b2e5a517a"
|
|
322
|
+
dependencies = [
|
|
323
|
+
"autocfg",
|
|
324
|
+
]
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "once_cell"
|
|
328
|
+
version = "1.19.0"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "parking_lot"
|
|
334
|
+
version = "0.12.1"
|
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
+
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
|
337
|
+
dependencies = [
|
|
338
|
+
"lock_api",
|
|
339
|
+
"parking_lot_core",
|
|
340
|
+
]
|
|
341
|
+
|
|
342
|
+
[[package]]
|
|
343
|
+
name = "parking_lot_core"
|
|
344
|
+
version = "0.9.9"
|
|
345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
346
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
347
|
+
dependencies = [
|
|
348
|
+
"cfg-if",
|
|
349
|
+
"libc",
|
|
350
|
+
"redox_syscall",
|
|
351
|
+
"smallvec",
|
|
352
|
+
"windows-targets",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "paste"
|
|
357
|
+
version = "1.0.14"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "pin-project-lite"
|
|
363
|
+
version = "0.2.13"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "pin-utils"
|
|
369
|
+
version = "0.1.0"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
372
|
+
|
|
373
|
+
[[package]]
|
|
374
|
+
name = "portable-atomic"
|
|
375
|
+
version = "1.6.0"
|
|
376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
+
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
378
|
+
|
|
379
|
+
[[package]]
|
|
380
|
+
name = "ppv-lite86"
|
|
381
|
+
version = "0.2.17"
|
|
382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
384
|
+
|
|
385
|
+
[[package]]
|
|
386
|
+
name = "proc-macro2"
|
|
387
|
+
version = "1.0.78"
|
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
389
|
+
checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae"
|
|
390
|
+
dependencies = [
|
|
391
|
+
"unicode-ident",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "pyo3"
|
|
396
|
+
version = "0.20.3"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "53bdbb96d49157e65d45cc287af5f32ffadd5f4761438b527b055fb0d4bb8233"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"cfg-if",
|
|
401
|
+
"indoc",
|
|
402
|
+
"libc",
|
|
403
|
+
"memoffset",
|
|
404
|
+
"parking_lot",
|
|
405
|
+
"portable-atomic",
|
|
406
|
+
"pyo3-build-config",
|
|
407
|
+
"pyo3-ffi",
|
|
408
|
+
"pyo3-macros",
|
|
409
|
+
"unindent",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "pyo3-build-config"
|
|
414
|
+
version = "0.20.3"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "deaa5745de3f5231ce10517a1f5dd97d53e5a2fd77aa6b5842292085831d48d7"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"once_cell",
|
|
419
|
+
"target-lexicon",
|
|
420
|
+
]
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "pyo3-ffi"
|
|
424
|
+
version = "0.20.3"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "62b42531d03e08d4ef1f6e85a2ed422eb678b8cd62b762e53891c05faf0d4afa"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"libc",
|
|
429
|
+
"pyo3-build-config",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "pyo3-macros"
|
|
434
|
+
version = "0.20.3"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "7305c720fa01b8055ec95e484a6eca7a83c841267f0dd5280f0c8b8551d2c158"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"proc-macro2",
|
|
439
|
+
"pyo3-macros-backend",
|
|
440
|
+
"quote",
|
|
441
|
+
"syn 2.0.52",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "pyo3-macros-backend"
|
|
446
|
+
version = "0.20.3"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "7c7e9b68bb9c3149c5b0cade5d07f953d6d125eb4337723c4ccdb665f1f96185"
|
|
449
|
+
dependencies = [
|
|
450
|
+
"heck",
|
|
451
|
+
"proc-macro2",
|
|
452
|
+
"pyo3-build-config",
|
|
453
|
+
"quote",
|
|
454
|
+
"syn 2.0.52",
|
|
455
|
+
]
|
|
456
|
+
|
|
457
|
+
[[package]]
|
|
458
|
+
name = "quote"
|
|
459
|
+
version = "1.0.35"
|
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
+
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
|
462
|
+
dependencies = [
|
|
463
|
+
"proc-macro2",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "rand"
|
|
468
|
+
version = "0.8.5"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"libc",
|
|
473
|
+
"rand_chacha",
|
|
474
|
+
"rand_core",
|
|
475
|
+
]
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "rand_chacha"
|
|
479
|
+
version = "0.3.1"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"ppv-lite86",
|
|
484
|
+
"rand_core",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "rand_core"
|
|
489
|
+
version = "0.6.4"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"getrandom",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "rawpointer"
|
|
498
|
+
version = "0.2.1"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "60a357793950651c4ed0f3f52338f53b2f809f32d83a07f72909fa13e4c6c1e3"
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "redox_syscall"
|
|
504
|
+
version = "0.4.1"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"bitflags",
|
|
509
|
+
]
|
|
510
|
+
|
|
511
|
+
[[package]]
|
|
512
|
+
name = "regex"
|
|
513
|
+
version = "1.10.3"
|
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
|
+
checksum = "b62dbe01f0b06f9d8dc7d49e05a0785f153b00b2c227856282f671e0318c9b15"
|
|
516
|
+
dependencies = [
|
|
517
|
+
"aho-corasick",
|
|
518
|
+
"memchr",
|
|
519
|
+
"regex-automata",
|
|
520
|
+
"regex-syntax",
|
|
521
|
+
]
|
|
522
|
+
|
|
523
|
+
[[package]]
|
|
524
|
+
name = "regex-automata"
|
|
525
|
+
version = "0.4.6"
|
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
|
528
|
+
dependencies = [
|
|
529
|
+
"aho-corasick",
|
|
530
|
+
"memchr",
|
|
531
|
+
"regex-syntax",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "regex-syntax"
|
|
536
|
+
version = "0.8.2"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "relative-path"
|
|
542
|
+
version = "1.9.2"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc"
|
|
545
|
+
|
|
546
|
+
[[package]]
|
|
547
|
+
name = "rstest"
|
|
548
|
+
version = "0.18.2"
|
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
+
checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
|
|
551
|
+
dependencies = [
|
|
552
|
+
"futures",
|
|
553
|
+
"futures-timer",
|
|
554
|
+
"rstest_macros",
|
|
555
|
+
"rustc_version",
|
|
556
|
+
]
|
|
557
|
+
|
|
558
|
+
[[package]]
|
|
559
|
+
name = "rstest_macros"
|
|
560
|
+
version = "0.18.2"
|
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
562
|
+
checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
|
|
563
|
+
dependencies = [
|
|
564
|
+
"cfg-if",
|
|
565
|
+
"glob",
|
|
566
|
+
"proc-macro2",
|
|
567
|
+
"quote",
|
|
568
|
+
"regex",
|
|
569
|
+
"relative-path",
|
|
570
|
+
"rustc_version",
|
|
571
|
+
"syn 2.0.52",
|
|
572
|
+
"unicode-ident",
|
|
573
|
+
]
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "rustc_version"
|
|
577
|
+
version = "0.4.0"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"semver",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "rustversion"
|
|
586
|
+
version = "1.0.14"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "ryu"
|
|
592
|
+
version = "1.0.17"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "safe_arch"
|
|
598
|
+
version = "0.7.1"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "f398075ce1e6a179b46f51bd88d0598b92b00d3551f1a2d4ac49e771b56ac354"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"bytemuck",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "scopeguard"
|
|
607
|
+
version = "1.2.0"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "semver"
|
|
613
|
+
version = "1.0.22"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "92d43fe69e652f3df9bdc2b85b2854a0825b86e4fb76bc44d945137d053639ca"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "serde"
|
|
619
|
+
version = "1.0.197"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"serde_derive",
|
|
624
|
+
]
|
|
625
|
+
|
|
626
|
+
[[package]]
|
|
627
|
+
name = "serde_derive"
|
|
628
|
+
version = "1.0.197"
|
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
+
checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b"
|
|
631
|
+
dependencies = [
|
|
632
|
+
"proc-macro2",
|
|
633
|
+
"quote",
|
|
634
|
+
"syn 2.0.52",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "serde_json"
|
|
639
|
+
version = "1.0.114"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "c5f09b1bd632ef549eaa9f60a1f8de742bdbc698e6cee2095fc84dde5f549ae0"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"itoa",
|
|
644
|
+
"ryu",
|
|
645
|
+
"serde",
|
|
646
|
+
]
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "simba"
|
|
650
|
+
version = "0.8.1"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "061507c94fc6ab4ba1c9a0305018408e312e17c041eb63bef8aa726fa33aceae"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"approx",
|
|
655
|
+
"num-complex",
|
|
656
|
+
"num-traits",
|
|
657
|
+
"paste",
|
|
658
|
+
"wide",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "slab"
|
|
663
|
+
version = "0.4.9"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"autocfg",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "smallvec"
|
|
672
|
+
version = "1.13.1"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "e6ecd384b10a64542d77071bd64bd7b231f4ed5940fba55e98c3de13824cf3d7"
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "strum"
|
|
678
|
+
version = "0.25.0"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "strum_macros"
|
|
684
|
+
version = "0.25.3"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
|
|
687
|
+
dependencies = [
|
|
688
|
+
"heck",
|
|
689
|
+
"proc-macro2",
|
|
690
|
+
"quote",
|
|
691
|
+
"rustversion",
|
|
692
|
+
"syn 2.0.52",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "syn"
|
|
697
|
+
version = "1.0.109"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
700
|
+
dependencies = [
|
|
701
|
+
"proc-macro2",
|
|
702
|
+
"quote",
|
|
703
|
+
"unicode-ident",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "syn"
|
|
708
|
+
version = "2.0.52"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07"
|
|
711
|
+
dependencies = [
|
|
712
|
+
"proc-macro2",
|
|
713
|
+
"quote",
|
|
714
|
+
"unicode-ident",
|
|
715
|
+
]
|
|
716
|
+
|
|
717
|
+
[[package]]
|
|
718
|
+
name = "target-lexicon"
|
|
719
|
+
version = "0.12.14"
|
|
720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
721
|
+
checksum = "e1fc403891a21bcfb7c37834ba66a547a8f402146eba7265b5a6d88059c9ff2f"
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "thiserror"
|
|
725
|
+
version = "1.0.57"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "1e45bcbe8ed29775f228095caf2cd67af7a4ccf756ebff23a306bf3e8b47b24b"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"thiserror-impl",
|
|
730
|
+
]
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "thiserror-impl"
|
|
734
|
+
version = "1.0.57"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "a953cb265bef375dae3de6663da4d3804eee9682ea80d8e2542529b73c531c81"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"proc-macro2",
|
|
739
|
+
"quote",
|
|
740
|
+
"syn 2.0.52",
|
|
741
|
+
]
|
|
742
|
+
|
|
743
|
+
[[package]]
|
|
744
|
+
name = "typenum"
|
|
745
|
+
version = "1.17.0"
|
|
746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
748
|
+
|
|
749
|
+
[[package]]
|
|
750
|
+
name = "unicode-ident"
|
|
751
|
+
version = "1.0.12"
|
|
752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "unindent"
|
|
757
|
+
version = "0.2.3"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "c7de7d73e1754487cb58364ee906a499937a0dfabd86bcb980fa99ec8c8fa2ce"
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "union-find"
|
|
763
|
+
version = "0.4.2"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "c109a31f4b2557d711f79c65b0e097359c033c78ba6416b78593e78f3dba930f"
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "wasi"
|
|
769
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "wide"
|
|
775
|
+
version = "0.7.15"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "89beec544f246e679fc25490e3f8e08003bc4bf612068f325120dad4cea02c1c"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"bytemuck",
|
|
780
|
+
"safe_arch",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "windows-targets"
|
|
785
|
+
version = "0.48.5"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"windows_aarch64_gnullvm",
|
|
790
|
+
"windows_aarch64_msvc",
|
|
791
|
+
"windows_i686_gnu",
|
|
792
|
+
"windows_i686_msvc",
|
|
793
|
+
"windows_x86_64_gnu",
|
|
794
|
+
"windows_x86_64_gnullvm",
|
|
795
|
+
"windows_x86_64_msvc",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "windows_aarch64_gnullvm"
|
|
800
|
+
version = "0.48.5"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
803
|
+
|
|
804
|
+
[[package]]
|
|
805
|
+
name = "windows_aarch64_msvc"
|
|
806
|
+
version = "0.48.5"
|
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
808
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "windows_i686_gnu"
|
|
812
|
+
version = "0.48.5"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "windows_i686_msvc"
|
|
818
|
+
version = "0.48.5"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "windows_x86_64_gnu"
|
|
824
|
+
version = "0.48.5"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "windows_x86_64_gnullvm"
|
|
830
|
+
version = "0.48.5"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "windows_x86_64_msvc"
|
|
836
|
+
version = "0.48.5"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|