fuzzgpu 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.
- fuzzgpu-0.1.0/Cargo.lock +1315 -0
- fuzzgpu-0.1.0/Cargo.toml +9 -0
- fuzzgpu-0.1.0/LICENSE +21 -0
- fuzzgpu-0.1.0/PKG-INFO +253 -0
- fuzzgpu-0.1.0/README.md +225 -0
- fuzzgpu-0.1.0/assets/logo.png +0 -0
- fuzzgpu-0.1.0/assets/logo.svg +46 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/Cargo.toml +21 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/damerau.rs +118 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/fuzz.rs +264 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/gpu.rs +96 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/jaro.rs +459 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/levenshtein.rs +453 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/lib.rs +22 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/needleman.rs +155 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/shaders/jaro.wgsl +121 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/shaders/jaro_matrix.wgsl +120 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/shaders/levenshtein.wgsl +72 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/shaders/levenshtein_matrix.wgsl +82 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-core/src/simd.rs +282 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-python/Cargo.toml +22 -0
- fuzzgpu-0.1.0/crates/fuzzgpu-python/src/lib.rs +273 -0
- fuzzgpu-0.1.0/pyproject.toml +39 -0
- fuzzgpu-0.1.0/python/fuzzgpu/__init__.py +96 -0
- fuzzgpu-0.1.0/python/fuzzgpu/fuzz.py +18 -0
fuzzgpu-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1315 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "android_system_properties"
|
|
7
|
+
version = "0.1.6"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"libc",
|
|
12
|
+
]
|
|
13
|
+
|
|
14
|
+
[[package]]
|
|
15
|
+
name = "arrayvec"
|
|
16
|
+
version = "0.7.8"
|
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
18
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "ash"
|
|
22
|
+
version = "0.38.0+1.3.281"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
|
25
|
+
dependencies = [
|
|
26
|
+
"libloading",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "autocfg"
|
|
31
|
+
version = "1.5.1"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bit-set"
|
|
37
|
+
version = "0.8.0"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"bit-vec",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "bit-vec"
|
|
46
|
+
version = "0.8.0"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "bitflags"
|
|
52
|
+
version = "1.3.2"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "bitflags"
|
|
58
|
+
version = "2.13.1"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"serde_core",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "block"
|
|
67
|
+
version = "0.1.6"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "bumpalo"
|
|
73
|
+
version = "3.20.3"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "bytemuck"
|
|
79
|
+
version = "1.25.2"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"bytemuck_derive",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "bytemuck_derive"
|
|
88
|
+
version = "1.12.0"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"proc-macro2",
|
|
93
|
+
"quote",
|
|
94
|
+
"syn 3.0.3",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "cfg-if"
|
|
99
|
+
version = "1.0.4"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "cfg_aliases"
|
|
105
|
+
version = "0.2.2"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "codespan-reporting"
|
|
111
|
+
version = "0.11.1"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
|
114
|
+
dependencies = [
|
|
115
|
+
"termcolor",
|
|
116
|
+
"unicode-width",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "core-foundation"
|
|
121
|
+
version = "0.9.4"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
124
|
+
dependencies = [
|
|
125
|
+
"core-foundation-sys",
|
|
126
|
+
"libc",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "core-foundation-sys"
|
|
131
|
+
version = "0.8.7"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "core-graphics-types"
|
|
137
|
+
version = "0.1.3"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"bitflags 1.3.2",
|
|
142
|
+
"core-foundation",
|
|
143
|
+
"libc",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "crossbeam-deque"
|
|
148
|
+
version = "0.8.7"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"crossbeam-epoch",
|
|
153
|
+
"crossbeam-utils",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "crossbeam-epoch"
|
|
158
|
+
version = "0.9.20"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"crossbeam-utils",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "crossbeam-utils"
|
|
167
|
+
version = "0.8.22"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "document-features"
|
|
173
|
+
version = "0.2.12"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
176
|
+
dependencies = [
|
|
177
|
+
"litrs",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "either"
|
|
182
|
+
version = "1.17.0"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "equivalent"
|
|
188
|
+
version = "1.0.2"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "foldhash"
|
|
194
|
+
version = "0.1.5"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "foreign-types"
|
|
200
|
+
version = "0.5.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"foreign-types-macros",
|
|
205
|
+
"foreign-types-shared",
|
|
206
|
+
]
|
|
207
|
+
|
|
208
|
+
[[package]]
|
|
209
|
+
name = "foreign-types-macros"
|
|
210
|
+
version = "0.2.4"
|
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
+
checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
|
|
213
|
+
dependencies = [
|
|
214
|
+
"proc-macro2",
|
|
215
|
+
"quote",
|
|
216
|
+
"syn 3.0.3",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "foreign-types-shared"
|
|
221
|
+
version = "0.3.1"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "futures-core"
|
|
227
|
+
version = "0.3.34"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "futures-task"
|
|
233
|
+
version = "0.3.34"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "futures-util"
|
|
239
|
+
version = "0.3.34"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
242
|
+
dependencies = [
|
|
243
|
+
"futures-core",
|
|
244
|
+
"futures-task",
|
|
245
|
+
"pin-project-lite",
|
|
246
|
+
"slab",
|
|
247
|
+
]
|
|
248
|
+
|
|
249
|
+
[[package]]
|
|
250
|
+
name = "fuzzgpu-core"
|
|
251
|
+
version = "0.1.0"
|
|
252
|
+
dependencies = [
|
|
253
|
+
"bytemuck",
|
|
254
|
+
"log",
|
|
255
|
+
"pollster",
|
|
256
|
+
"rayon",
|
|
257
|
+
"thiserror 2.0.20",
|
|
258
|
+
"wgpu",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "fuzzgpu-python"
|
|
263
|
+
version = "0.1.0"
|
|
264
|
+
dependencies = [
|
|
265
|
+
"fuzzgpu-core",
|
|
266
|
+
"pollster",
|
|
267
|
+
"pyo3",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "gl_generator"
|
|
272
|
+
version = "0.14.0"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"khronos_api",
|
|
277
|
+
"log",
|
|
278
|
+
"xml-rs",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "glow"
|
|
283
|
+
version = "0.16.0"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"js-sys",
|
|
288
|
+
"slotmap",
|
|
289
|
+
"wasm-bindgen",
|
|
290
|
+
"web-sys",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "glutin_wgl_sys"
|
|
295
|
+
version = "0.6.1"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"gl_generator",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "gpu-alloc"
|
|
304
|
+
version = "0.6.2"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "45cf04b2726f02df5508c6de726acdc90cdf97ac771a9a0ffd8ba10a6e696bf9"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"bitflags 2.13.1",
|
|
309
|
+
"gpu-alloc-types",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "gpu-alloc-types"
|
|
314
|
+
version = "0.3.1"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "b2bbed164dd10ed526c2e4fe3e721ca4a71c61730e5aafac6844b417b3227058"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"bitflags 2.13.1",
|
|
319
|
+
]
|
|
320
|
+
|
|
321
|
+
[[package]]
|
|
322
|
+
name = "gpu-allocator"
|
|
323
|
+
version = "0.27.0"
|
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
+
checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
|
|
326
|
+
dependencies = [
|
|
327
|
+
"log",
|
|
328
|
+
"presser",
|
|
329
|
+
"thiserror 1.0.69",
|
|
330
|
+
"windows",
|
|
331
|
+
]
|
|
332
|
+
|
|
333
|
+
[[package]]
|
|
334
|
+
name = "gpu-descriptor"
|
|
335
|
+
version = "0.3.2"
|
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
+
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
338
|
+
dependencies = [
|
|
339
|
+
"bitflags 2.13.1",
|
|
340
|
+
"gpu-descriptor-types",
|
|
341
|
+
"hashbrown 0.15.5",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "gpu-descriptor-types"
|
|
346
|
+
version = "0.2.0"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
|
|
349
|
+
dependencies = [
|
|
350
|
+
"bitflags 2.13.1",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "hashbrown"
|
|
355
|
+
version = "0.15.5"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"foldhash",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "hashbrown"
|
|
364
|
+
version = "0.17.1"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "heck"
|
|
370
|
+
version = "0.5.0"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "hexf-parse"
|
|
376
|
+
version = "0.2.1"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "indexmap"
|
|
382
|
+
version = "2.14.0"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"equivalent",
|
|
387
|
+
"hashbrown 0.17.1",
|
|
388
|
+
]
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "indoc"
|
|
392
|
+
version = "2.0.7"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"rustversion",
|
|
397
|
+
]
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "jni-sys"
|
|
401
|
+
version = "0.3.1"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
|
|
404
|
+
dependencies = [
|
|
405
|
+
"jni-sys 0.4.1",
|
|
406
|
+
]
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "jni-sys"
|
|
410
|
+
version = "0.4.1"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
|
|
413
|
+
dependencies = [
|
|
414
|
+
"jni-sys-macros",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "jni-sys-macros"
|
|
419
|
+
version = "0.4.1"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"quote",
|
|
424
|
+
"syn 2.0.119",
|
|
425
|
+
]
|
|
426
|
+
|
|
427
|
+
[[package]]
|
|
428
|
+
name = "js-sys"
|
|
429
|
+
version = "0.3.104"
|
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
431
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
432
|
+
dependencies = [
|
|
433
|
+
"cfg-if",
|
|
434
|
+
"futures-util",
|
|
435
|
+
"wasm-bindgen",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "khronos-egl"
|
|
440
|
+
version = "6.0.0"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"libc",
|
|
445
|
+
"libloading",
|
|
446
|
+
"pkg-config",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "khronos_api"
|
|
451
|
+
version = "3.1.0"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "libc"
|
|
457
|
+
version = "0.2.189"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "libloading"
|
|
463
|
+
version = "0.8.9"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"cfg-if",
|
|
468
|
+
"windows-link",
|
|
469
|
+
]
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "litrs"
|
|
473
|
+
version = "1.0.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "lock_api"
|
|
479
|
+
version = "0.4.14"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"scopeguard",
|
|
484
|
+
]
|
|
485
|
+
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "log"
|
|
488
|
+
version = "0.4.33"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
491
|
+
|
|
492
|
+
[[package]]
|
|
493
|
+
name = "malloc_buf"
|
|
494
|
+
version = "0.0.6"
|
|
495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
496
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
497
|
+
dependencies = [
|
|
498
|
+
"libc",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "memoffset"
|
|
503
|
+
version = "0.9.1"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"autocfg",
|
|
508
|
+
]
|
|
509
|
+
|
|
510
|
+
[[package]]
|
|
511
|
+
name = "metal"
|
|
512
|
+
version = "0.31.0"
|
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
514
|
+
checksum = "f569fb946490b5743ad69813cb19629130ce9374034abe31614a36402d18f99e"
|
|
515
|
+
dependencies = [
|
|
516
|
+
"bitflags 2.13.1",
|
|
517
|
+
"block",
|
|
518
|
+
"core-graphics-types",
|
|
519
|
+
"foreign-types",
|
|
520
|
+
"log",
|
|
521
|
+
"objc",
|
|
522
|
+
"paste",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "naga"
|
|
527
|
+
version = "24.0.0"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "e380993072e52eef724eddfcde0ed013b0c023c3f0417336ed041aa9f076994e"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"arrayvec",
|
|
532
|
+
"bit-set",
|
|
533
|
+
"bitflags 2.13.1",
|
|
534
|
+
"cfg_aliases",
|
|
535
|
+
"codespan-reporting",
|
|
536
|
+
"hexf-parse",
|
|
537
|
+
"indexmap",
|
|
538
|
+
"log",
|
|
539
|
+
"rustc-hash",
|
|
540
|
+
"spirv",
|
|
541
|
+
"strum",
|
|
542
|
+
"termcolor",
|
|
543
|
+
"thiserror 2.0.20",
|
|
544
|
+
"unicode-xid",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "ndk-sys"
|
|
549
|
+
version = "0.5.0+25.2.9519653"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"jni-sys 0.3.1",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "num-traits"
|
|
558
|
+
version = "0.2.19"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"autocfg",
|
|
563
|
+
]
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "objc"
|
|
567
|
+
version = "0.2.7"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
570
|
+
dependencies = [
|
|
571
|
+
"malloc_buf",
|
|
572
|
+
]
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "once_cell"
|
|
576
|
+
version = "1.21.4"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
579
|
+
|
|
580
|
+
[[package]]
|
|
581
|
+
name = "ordered-float"
|
|
582
|
+
version = "4.6.0"
|
|
583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
+
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
585
|
+
dependencies = [
|
|
586
|
+
"num-traits",
|
|
587
|
+
]
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "parking_lot"
|
|
591
|
+
version = "0.12.5"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"lock_api",
|
|
596
|
+
"parking_lot_core",
|
|
597
|
+
]
|
|
598
|
+
|
|
599
|
+
[[package]]
|
|
600
|
+
name = "parking_lot_core"
|
|
601
|
+
version = "0.9.12"
|
|
602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
604
|
+
dependencies = [
|
|
605
|
+
"cfg-if",
|
|
606
|
+
"libc",
|
|
607
|
+
"redox_syscall",
|
|
608
|
+
"smallvec",
|
|
609
|
+
"windows-link",
|
|
610
|
+
]
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "paste"
|
|
614
|
+
version = "1.0.15"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "pin-project-lite"
|
|
620
|
+
version = "0.2.17"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "pkg-config"
|
|
626
|
+
version = "0.3.34"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "f6b464fbc74e149a392436b17d523f769e057cb6877f6a5c4618bc6f11800548"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "pollster"
|
|
632
|
+
version = "0.4.0"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
|
|
635
|
+
|
|
636
|
+
[[package]]
|
|
637
|
+
name = "portable-atomic"
|
|
638
|
+
version = "1.15.0"
|
|
639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
641
|
+
|
|
642
|
+
[[package]]
|
|
643
|
+
name = "presser"
|
|
644
|
+
version = "0.3.1"
|
|
645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
646
|
+
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
|
647
|
+
|
|
648
|
+
[[package]]
|
|
649
|
+
name = "proc-macro2"
|
|
650
|
+
version = "1.0.107"
|
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
652
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
653
|
+
dependencies = [
|
|
654
|
+
"unicode-ident",
|
|
655
|
+
]
|
|
656
|
+
|
|
657
|
+
[[package]]
|
|
658
|
+
name = "profiling"
|
|
659
|
+
version = "1.0.18"
|
|
660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
+
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "pyo3"
|
|
665
|
+
version = "0.23.5"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"cfg-if",
|
|
670
|
+
"indoc",
|
|
671
|
+
"libc",
|
|
672
|
+
"memoffset",
|
|
673
|
+
"once_cell",
|
|
674
|
+
"portable-atomic",
|
|
675
|
+
"pyo3-build-config",
|
|
676
|
+
"pyo3-ffi",
|
|
677
|
+
"pyo3-macros",
|
|
678
|
+
"unindent",
|
|
679
|
+
]
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "pyo3-build-config"
|
|
683
|
+
version = "0.23.5"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
686
|
+
dependencies = [
|
|
687
|
+
"once_cell",
|
|
688
|
+
"target-lexicon",
|
|
689
|
+
]
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "pyo3-ffi"
|
|
693
|
+
version = "0.23.5"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"libc",
|
|
698
|
+
"pyo3-build-config",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "pyo3-macros"
|
|
703
|
+
version = "0.23.5"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"proc-macro2",
|
|
708
|
+
"pyo3-macros-backend",
|
|
709
|
+
"quote",
|
|
710
|
+
"syn 2.0.119",
|
|
711
|
+
]
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "pyo3-macros-backend"
|
|
715
|
+
version = "0.23.5"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"heck",
|
|
720
|
+
"proc-macro2",
|
|
721
|
+
"pyo3-build-config",
|
|
722
|
+
"quote",
|
|
723
|
+
"syn 2.0.119",
|
|
724
|
+
]
|
|
725
|
+
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "quote"
|
|
728
|
+
version = "1.0.47"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"proc-macro2",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "range-alloc"
|
|
737
|
+
version = "0.1.5"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "ca45419789ae5a7899559e9512e58ca889e41f04f1f2445e9f4b290ceccd1d08"
|
|
740
|
+
|
|
741
|
+
[[package]]
|
|
742
|
+
name = "raw-window-handle"
|
|
743
|
+
version = "0.6.2"
|
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "rayon"
|
|
749
|
+
version = "1.12.0"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"either",
|
|
754
|
+
"rayon-core",
|
|
755
|
+
]
|
|
756
|
+
|
|
757
|
+
[[package]]
|
|
758
|
+
name = "rayon-core"
|
|
759
|
+
version = "1.13.0"
|
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
761
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
762
|
+
dependencies = [
|
|
763
|
+
"crossbeam-deque",
|
|
764
|
+
"crossbeam-utils",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "redox_syscall"
|
|
769
|
+
version = "0.5.18"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"bitflags 2.13.1",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "renderdoc-sys"
|
|
778
|
+
version = "1.1.0"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
781
|
+
|
|
782
|
+
[[package]]
|
|
783
|
+
name = "rustc-hash"
|
|
784
|
+
version = "1.1.0"
|
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "rustversion"
|
|
790
|
+
version = "1.0.23"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
793
|
+
|
|
794
|
+
[[package]]
|
|
795
|
+
name = "scopeguard"
|
|
796
|
+
version = "1.2.0"
|
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "serde_core"
|
|
802
|
+
version = "1.0.229"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"serde_derive",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "serde_derive"
|
|
811
|
+
version = "1.0.229"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"proc-macro2",
|
|
816
|
+
"quote",
|
|
817
|
+
"syn 3.0.3",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "slab"
|
|
822
|
+
version = "0.4.12"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "slotmap"
|
|
828
|
+
version = "1.1.1"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"version_check",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "smallvec"
|
|
837
|
+
version = "1.15.2"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "spirv"
|
|
843
|
+
version = "0.3.0+sdk-1.3.268.0"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"bitflags 2.13.1",
|
|
848
|
+
]
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "static_assertions"
|
|
852
|
+
version = "1.1.0"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "strum"
|
|
858
|
+
version = "0.26.3"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"strum_macros",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "strum_macros"
|
|
867
|
+
version = "0.26.4"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"heck",
|
|
872
|
+
"proc-macro2",
|
|
873
|
+
"quote",
|
|
874
|
+
"rustversion",
|
|
875
|
+
"syn 2.0.119",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "syn"
|
|
880
|
+
version = "2.0.119"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
883
|
+
dependencies = [
|
|
884
|
+
"proc-macro2",
|
|
885
|
+
"quote",
|
|
886
|
+
"unicode-ident",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "syn"
|
|
891
|
+
version = "3.0.3"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"proc-macro2",
|
|
896
|
+
"quote",
|
|
897
|
+
"unicode-ident",
|
|
898
|
+
]
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "target-lexicon"
|
|
902
|
+
version = "0.12.16"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "termcolor"
|
|
908
|
+
version = "1.4.1"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"winapi-util",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "thiserror"
|
|
917
|
+
version = "1.0.69"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"thiserror-impl 1.0.69",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "thiserror"
|
|
926
|
+
version = "2.0.20"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"thiserror-impl 2.0.20",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "thiserror-impl"
|
|
935
|
+
version = "1.0.69"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"proc-macro2",
|
|
940
|
+
"quote",
|
|
941
|
+
"syn 2.0.119",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "thiserror-impl"
|
|
946
|
+
version = "2.0.20"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"proc-macro2",
|
|
951
|
+
"quote",
|
|
952
|
+
"syn 3.0.3",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "unicode-ident"
|
|
957
|
+
version = "1.0.24"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "unicode-width"
|
|
963
|
+
version = "0.1.14"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "unicode-xid"
|
|
969
|
+
version = "0.2.6"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "unindent"
|
|
975
|
+
version = "0.2.4"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "version_check"
|
|
981
|
+
version = "0.9.5"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "wasm-bindgen"
|
|
987
|
+
version = "0.2.127"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
990
|
+
dependencies = [
|
|
991
|
+
"cfg-if",
|
|
992
|
+
"once_cell",
|
|
993
|
+
"rustversion",
|
|
994
|
+
"wasm-bindgen-macro",
|
|
995
|
+
"wasm-bindgen-shared",
|
|
996
|
+
]
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "wasm-bindgen-futures"
|
|
1000
|
+
version = "0.4.77"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "6b7777d5cc23d0e91404e53ce2d5e8ec7acae3026b16233dba62cd3246457950"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"js-sys",
|
|
1005
|
+
"wasm-bindgen",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "wasm-bindgen-macro"
|
|
1010
|
+
version = "0.2.127"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"quote",
|
|
1015
|
+
"wasm-bindgen-macro-support",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "wasm-bindgen-macro-support"
|
|
1020
|
+
version = "0.2.127"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"bumpalo",
|
|
1025
|
+
"proc-macro2",
|
|
1026
|
+
"quote",
|
|
1027
|
+
"syn 2.0.119",
|
|
1028
|
+
"wasm-bindgen-shared",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "wasm-bindgen-shared"
|
|
1033
|
+
version = "0.2.127"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"unicode-ident",
|
|
1038
|
+
]
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "web-sys"
|
|
1042
|
+
version = "0.3.104"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"js-sys",
|
|
1047
|
+
"wasm-bindgen",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "wgpu"
|
|
1052
|
+
version = "24.0.5"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "6b0b3436f0729f6cdf2e6e9201f3d39dc95813fad61d826c1ed07918b4539353"
|
|
1055
|
+
dependencies = [
|
|
1056
|
+
"arrayvec",
|
|
1057
|
+
"bitflags 2.13.1",
|
|
1058
|
+
"cfg_aliases",
|
|
1059
|
+
"document-features",
|
|
1060
|
+
"js-sys",
|
|
1061
|
+
"log",
|
|
1062
|
+
"naga",
|
|
1063
|
+
"parking_lot",
|
|
1064
|
+
"profiling",
|
|
1065
|
+
"raw-window-handle",
|
|
1066
|
+
"smallvec",
|
|
1067
|
+
"static_assertions",
|
|
1068
|
+
"wasm-bindgen",
|
|
1069
|
+
"wasm-bindgen-futures",
|
|
1070
|
+
"web-sys",
|
|
1071
|
+
"wgpu-core",
|
|
1072
|
+
"wgpu-hal",
|
|
1073
|
+
"wgpu-types",
|
|
1074
|
+
]
|
|
1075
|
+
|
|
1076
|
+
[[package]]
|
|
1077
|
+
name = "wgpu-core"
|
|
1078
|
+
version = "24.0.5"
|
|
1079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
+
checksum = "7f0aa306497a238d169b9dc70659105b4a096859a34894544ca81719242e1499"
|
|
1081
|
+
dependencies = [
|
|
1082
|
+
"arrayvec",
|
|
1083
|
+
"bit-vec",
|
|
1084
|
+
"bitflags 2.13.1",
|
|
1085
|
+
"cfg_aliases",
|
|
1086
|
+
"document-features",
|
|
1087
|
+
"indexmap",
|
|
1088
|
+
"log",
|
|
1089
|
+
"naga",
|
|
1090
|
+
"once_cell",
|
|
1091
|
+
"parking_lot",
|
|
1092
|
+
"profiling",
|
|
1093
|
+
"raw-window-handle",
|
|
1094
|
+
"rustc-hash",
|
|
1095
|
+
"smallvec",
|
|
1096
|
+
"thiserror 2.0.20",
|
|
1097
|
+
"wgpu-hal",
|
|
1098
|
+
"wgpu-types",
|
|
1099
|
+
]
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "wgpu-hal"
|
|
1103
|
+
version = "24.0.4"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "f112f464674ca69f3533248508ee30cb84c67cf06c25ff6800685f5e0294e259"
|
|
1106
|
+
dependencies = [
|
|
1107
|
+
"android_system_properties",
|
|
1108
|
+
"arrayvec",
|
|
1109
|
+
"ash",
|
|
1110
|
+
"bit-set",
|
|
1111
|
+
"bitflags 2.13.1",
|
|
1112
|
+
"block",
|
|
1113
|
+
"bytemuck",
|
|
1114
|
+
"cfg_aliases",
|
|
1115
|
+
"core-graphics-types",
|
|
1116
|
+
"glow",
|
|
1117
|
+
"glutin_wgl_sys",
|
|
1118
|
+
"gpu-alloc",
|
|
1119
|
+
"gpu-allocator",
|
|
1120
|
+
"gpu-descriptor",
|
|
1121
|
+
"js-sys",
|
|
1122
|
+
"khronos-egl",
|
|
1123
|
+
"libc",
|
|
1124
|
+
"libloading",
|
|
1125
|
+
"log",
|
|
1126
|
+
"metal",
|
|
1127
|
+
"naga",
|
|
1128
|
+
"ndk-sys",
|
|
1129
|
+
"objc",
|
|
1130
|
+
"once_cell",
|
|
1131
|
+
"ordered-float",
|
|
1132
|
+
"parking_lot",
|
|
1133
|
+
"profiling",
|
|
1134
|
+
"range-alloc",
|
|
1135
|
+
"raw-window-handle",
|
|
1136
|
+
"renderdoc-sys",
|
|
1137
|
+
"rustc-hash",
|
|
1138
|
+
"smallvec",
|
|
1139
|
+
"thiserror 2.0.20",
|
|
1140
|
+
"wasm-bindgen",
|
|
1141
|
+
"web-sys",
|
|
1142
|
+
"wgpu-types",
|
|
1143
|
+
"windows",
|
|
1144
|
+
"windows-core",
|
|
1145
|
+
]
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "wgpu-types"
|
|
1149
|
+
version = "24.0.0"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "50ac044c0e76c03a0378e7786ac505d010a873665e2d51383dcff8dd227dc69c"
|
|
1152
|
+
dependencies = [
|
|
1153
|
+
"bitflags 2.13.1",
|
|
1154
|
+
"js-sys",
|
|
1155
|
+
"log",
|
|
1156
|
+
"web-sys",
|
|
1157
|
+
]
|
|
1158
|
+
|
|
1159
|
+
[[package]]
|
|
1160
|
+
name = "winapi-util"
|
|
1161
|
+
version = "0.1.11"
|
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1163
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1164
|
+
dependencies = [
|
|
1165
|
+
"windows-sys",
|
|
1166
|
+
]
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "windows"
|
|
1170
|
+
version = "0.58.0"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"windows-core",
|
|
1175
|
+
"windows-targets",
|
|
1176
|
+
]
|
|
1177
|
+
|
|
1178
|
+
[[package]]
|
|
1179
|
+
name = "windows-core"
|
|
1180
|
+
version = "0.58.0"
|
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
1183
|
+
dependencies = [
|
|
1184
|
+
"windows-implement",
|
|
1185
|
+
"windows-interface",
|
|
1186
|
+
"windows-result",
|
|
1187
|
+
"windows-strings",
|
|
1188
|
+
"windows-targets",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1191
|
+
[[package]]
|
|
1192
|
+
name = "windows-implement"
|
|
1193
|
+
version = "0.58.0"
|
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
1196
|
+
dependencies = [
|
|
1197
|
+
"proc-macro2",
|
|
1198
|
+
"quote",
|
|
1199
|
+
"syn 2.0.119",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "windows-interface"
|
|
1204
|
+
version = "0.58.0"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
1207
|
+
dependencies = [
|
|
1208
|
+
"proc-macro2",
|
|
1209
|
+
"quote",
|
|
1210
|
+
"syn 2.0.119",
|
|
1211
|
+
]
|
|
1212
|
+
|
|
1213
|
+
[[package]]
|
|
1214
|
+
name = "windows-link"
|
|
1215
|
+
version = "0.2.1"
|
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "windows-result"
|
|
1221
|
+
version = "0.2.0"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
1224
|
+
dependencies = [
|
|
1225
|
+
"windows-targets",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "windows-strings"
|
|
1230
|
+
version = "0.1.0"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"windows-result",
|
|
1235
|
+
"windows-targets",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "windows-sys"
|
|
1240
|
+
version = "0.61.2"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"windows-link",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "windows-targets"
|
|
1249
|
+
version = "0.52.6"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"windows_aarch64_gnullvm",
|
|
1254
|
+
"windows_aarch64_msvc",
|
|
1255
|
+
"windows_i686_gnu",
|
|
1256
|
+
"windows_i686_gnullvm",
|
|
1257
|
+
"windows_i686_msvc",
|
|
1258
|
+
"windows_x86_64_gnu",
|
|
1259
|
+
"windows_x86_64_gnullvm",
|
|
1260
|
+
"windows_x86_64_msvc",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "windows_aarch64_gnullvm"
|
|
1265
|
+
version = "0.52.6"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1268
|
+
|
|
1269
|
+
[[package]]
|
|
1270
|
+
name = "windows_aarch64_msvc"
|
|
1271
|
+
version = "0.52.6"
|
|
1272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1273
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "windows_i686_gnu"
|
|
1277
|
+
version = "0.52.6"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "windows_i686_gnullvm"
|
|
1283
|
+
version = "0.52.6"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "windows_i686_msvc"
|
|
1289
|
+
version = "0.52.6"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "windows_x86_64_gnu"
|
|
1295
|
+
version = "0.52.6"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1298
|
+
|
|
1299
|
+
[[package]]
|
|
1300
|
+
name = "windows_x86_64_gnullvm"
|
|
1301
|
+
version = "0.52.6"
|
|
1302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "windows_x86_64_msvc"
|
|
1307
|
+
version = "0.52.6"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "xml-rs"
|
|
1313
|
+
version = "0.8.29"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"
|