fuzzgpu 0.1.2__tar.gz → 0.1.4__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.2 → fuzzgpu-0.1.4}/Cargo.lock +601 -304
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/Cargo.toml +1 -1
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/PKG-INFO +206 -3
- fuzzgpu-0.1.4/README.md +425 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/Cargo.toml +7 -1
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/damerau.rs +37 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/gpu.rs +389 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/jaro.rs +332 -44
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/levenshtein.rs +236 -44
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/lib.rs +91 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/needleman.rs +487 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-core/src/shaders/needleman_affine.wgsl +112 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/simd.rs +73 -57
- fuzzgpu-0.1.4/crates/fuzzgpu-core/tests/differential.proptest-regressions +7 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-core/tests/differential.rs +695 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-core/tests/fixtures/broken.wgsl +9 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-core/tests/kernel_registration.rs +81 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-python/Cargo.toml +3 -2
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-python/src/lib.rs +47 -24
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-wasm/Cargo.toml +4 -1
- fuzzgpu-0.1.4/crates/fuzzgpu-wasm/src/lib.rs +155 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-wasm/tests/differential_harness.js +237 -0
- fuzzgpu-0.1.4/crates/fuzzgpu-wasm/tests/js_api.test.cjs +63 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/pyproject.toml +4 -1
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/tests/test_basic.py +7 -1
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/tests/test_edge_cases.py +15 -0
- fuzzgpu-0.1.4/tests/wasm_python_differential.py +171 -0
- fuzzgpu-0.1.2/README.md +0 -225
- fuzzgpu-0.1.2/crates/fuzzgpu-core/src/gpu.rs +0 -151
- fuzzgpu-0.1.2/crates/fuzzgpu-core/src/lib.rs +0 -22
- fuzzgpu-0.1.2/crates/fuzzgpu-core/src/needleman.rs +0 -173
- fuzzgpu-0.1.2/crates/fuzzgpu-wasm/src/lib.rs +0 -92
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/LICENSE +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/assets/banner.svg +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/assets/github-stats.svg +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/assets/logo.png +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/assets/logo.svg +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/assets/top-languages.svg +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/fuzz.rs +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/shaders/jaro.wgsl +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/shaders/jaro_matrix.wgsl +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/shaders/levenshtein.wgsl +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/crates/fuzzgpu-core/src/shaders/levenshtein_matrix.wgsl +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/python/fuzzgpu/__init__.py +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/python/fuzzgpu/fuzz.py +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/tests/test_api_signatures.py +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/tests/test_concurrency.py +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/tests/test_invariants.py +0 -0
- {fuzzgpu-0.1.2 → fuzzgpu-0.1.4}/tests/test_stress.py +0 -0
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
3
|
version = 4
|
|
4
4
|
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "allocator-api2"
|
|
7
|
+
version = "0.2.21"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
10
|
+
|
|
5
11
|
[[package]]
|
|
6
12
|
name = "android_system_properties"
|
|
7
13
|
version = "0.1.6"
|
|
@@ -38,7 +44,16 @@ version = "0.8.0"
|
|
|
38
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
45
|
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
40
46
|
dependencies = [
|
|
41
|
-
"bit-vec",
|
|
47
|
+
"bit-vec 0.8.0",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "bit-set"
|
|
52
|
+
version = "0.10.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "09ec2f926cc3060f09db9ebc5b52823d85268d24bb917e472c0c4bea35780a7d"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"bit-vec 0.9.1",
|
|
42
57
|
]
|
|
43
58
|
|
|
44
59
|
[[package]]
|
|
@@ -48,25 +63,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
48
63
|
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
49
64
|
|
|
50
65
|
[[package]]
|
|
51
|
-
name = "
|
|
52
|
-
version = "
|
|
66
|
+
name = "bit-vec"
|
|
67
|
+
version = "0.9.1"
|
|
53
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
69
|
+
checksum = "b71798fca2c1fe1086445a7258a4bc81e6e49dcd24c8d0dd9a1e57395b603f51"
|
|
55
70
|
|
|
56
71
|
[[package]]
|
|
57
72
|
name = "bitflags"
|
|
58
73
|
version = "2.13.1"
|
|
59
74
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
75
|
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
61
|
-
dependencies = [
|
|
62
|
-
"serde_core",
|
|
63
|
-
]
|
|
64
76
|
|
|
65
77
|
[[package]]
|
|
66
|
-
name = "
|
|
67
|
-
version = "0.
|
|
78
|
+
name = "block2"
|
|
79
|
+
version = "0.6.2"
|
|
68
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
81
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"objc2",
|
|
84
|
+
]
|
|
70
85
|
|
|
71
86
|
[[package]]
|
|
72
87
|
name = "bumpalo"
|
|
@@ -108,41 +123,15 @@ checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
|
108
123
|
|
|
109
124
|
[[package]]
|
|
110
125
|
name = "codespan-reporting"
|
|
111
|
-
version = "0.
|
|
126
|
+
version = "0.13.1"
|
|
112
127
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
-
checksum = "
|
|
128
|
+
checksum = "af491d569909a7e4dee0ad7db7f5341fef5c614d5b8ec8cf765732aba3cff681"
|
|
114
129
|
dependencies = [
|
|
130
|
+
"serde",
|
|
115
131
|
"termcolor",
|
|
116
132
|
"unicode-width",
|
|
117
133
|
]
|
|
118
134
|
|
|
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
135
|
[[package]]
|
|
147
136
|
name = "crossbeam-deque"
|
|
148
137
|
version = "0.8.7"
|
|
@@ -168,6 +157,31 @@ version = "0.8.22"
|
|
|
168
157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
158
|
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
170
159
|
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "crunchy"
|
|
162
|
+
version = "0.2.4"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "dispatch2"
|
|
168
|
+
version = "0.3.1"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"bitflags",
|
|
173
|
+
"objc2",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "dlib"
|
|
178
|
+
version = "0.5.3"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "ab8ecd87370524b461f8557c119c405552c396ed91fc0a8eec68679eab26f94a"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"libloading",
|
|
183
|
+
]
|
|
184
|
+
|
|
171
185
|
[[package]]
|
|
172
186
|
name = "document-features"
|
|
173
187
|
version = "0.2.12"
|
|
@@ -190,37 +204,32 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
190
204
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
191
205
|
|
|
192
206
|
[[package]]
|
|
193
|
-
name = "
|
|
194
|
-
version = "0.
|
|
207
|
+
name = "errno"
|
|
208
|
+
version = "0.3.14"
|
|
195
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
-
checksum = "
|
|
210
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"libc",
|
|
213
|
+
"windows-sys",
|
|
214
|
+
]
|
|
197
215
|
|
|
198
216
|
[[package]]
|
|
199
|
-
name = "
|
|
200
|
-
version = "
|
|
217
|
+
name = "fastrand"
|
|
218
|
+
version = "2.5.0"
|
|
201
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
-
checksum = "
|
|
203
|
-
dependencies = [
|
|
204
|
-
"foreign-types-macros",
|
|
205
|
-
"foreign-types-shared",
|
|
206
|
-
]
|
|
220
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
207
221
|
|
|
208
222
|
[[package]]
|
|
209
|
-
name = "
|
|
210
|
-
version = "0.
|
|
223
|
+
name = "fnv"
|
|
224
|
+
version = "1.0.7"
|
|
211
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
-
checksum = "
|
|
213
|
-
dependencies = [
|
|
214
|
-
"proc-macro2",
|
|
215
|
-
"quote",
|
|
216
|
-
"syn 3.0.3",
|
|
217
|
-
]
|
|
226
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
218
227
|
|
|
219
228
|
[[package]]
|
|
220
|
-
name = "
|
|
221
|
-
version = "0.
|
|
229
|
+
name = "foldhash"
|
|
230
|
+
version = "0.2.0"
|
|
222
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
-
checksum = "
|
|
232
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
224
233
|
|
|
225
234
|
[[package]]
|
|
226
235
|
name = "futures-core"
|
|
@@ -248,25 +257,50 @@ dependencies = [
|
|
|
248
257
|
|
|
249
258
|
[[package]]
|
|
250
259
|
name = "fuzzgpu-core"
|
|
251
|
-
version = "0.1.
|
|
260
|
+
version = "0.1.4"
|
|
252
261
|
dependencies = [
|
|
253
262
|
"bytemuck",
|
|
254
263
|
"log",
|
|
255
264
|
"pollster",
|
|
265
|
+
"proptest",
|
|
256
266
|
"rayon",
|
|
257
|
-
"thiserror
|
|
267
|
+
"thiserror",
|
|
258
268
|
"wgpu",
|
|
259
269
|
]
|
|
260
270
|
|
|
261
271
|
[[package]]
|
|
262
272
|
name = "fuzzgpu-python"
|
|
263
|
-
version = "0.1.
|
|
273
|
+
version = "0.1.4"
|
|
264
274
|
dependencies = [
|
|
265
275
|
"fuzzgpu-core",
|
|
276
|
+
"log",
|
|
266
277
|
"pollster",
|
|
267
278
|
"pyo3",
|
|
268
279
|
]
|
|
269
280
|
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "getrandom"
|
|
283
|
+
version = "0.3.4"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"cfg-if",
|
|
288
|
+
"libc",
|
|
289
|
+
"r-efi 5.3.0",
|
|
290
|
+
"wasip2",
|
|
291
|
+
]
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "getrandom"
|
|
295
|
+
version = "0.4.3"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"cfg-if",
|
|
300
|
+
"libc",
|
|
301
|
+
"r-efi 6.0.0",
|
|
302
|
+
]
|
|
303
|
+
|
|
270
304
|
[[package]]
|
|
271
305
|
name = "gl_generator"
|
|
272
306
|
version = "0.14.0"
|
|
@@ -280,9 +314,9 @@ dependencies = [
|
|
|
280
314
|
|
|
281
315
|
[[package]]
|
|
282
316
|
name = "glow"
|
|
283
|
-
version = "0.
|
|
317
|
+
version = "0.17.0"
|
|
284
318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
-
checksum = "
|
|
319
|
+
checksum = "29038e1c483364cc6bb3cf78feee1816002e127c331a1eec55a4d202b9e1adb5"
|
|
286
320
|
dependencies = [
|
|
287
321
|
"js-sys",
|
|
288
322
|
"slotmap",
|
|
@@ -299,63 +333,40 @@ dependencies = [
|
|
|
299
333
|
"gl_generator",
|
|
300
334
|
]
|
|
301
335
|
|
|
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
336
|
[[package]]
|
|
322
337
|
name = "gpu-allocator"
|
|
323
|
-
version = "0.
|
|
338
|
+
version = "0.28.0"
|
|
324
339
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
325
|
-
checksum = "
|
|
340
|
+
checksum = "51255ea7cfaadb6c5f1528d43e92a82acb2b96c43365989a28b2d44ee38f8795"
|
|
326
341
|
dependencies = [
|
|
342
|
+
"ash",
|
|
343
|
+
"hashbrown 0.16.1",
|
|
327
344
|
"log",
|
|
328
345
|
"presser",
|
|
329
|
-
"thiserror
|
|
346
|
+
"thiserror",
|
|
330
347
|
"windows",
|
|
331
348
|
]
|
|
332
349
|
|
|
333
350
|
[[package]]
|
|
334
|
-
name = "
|
|
335
|
-
version = "
|
|
351
|
+
name = "half"
|
|
352
|
+
version = "2.7.1"
|
|
336
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
337
|
-
checksum = "
|
|
354
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
338
355
|
dependencies = [
|
|
339
|
-
"
|
|
340
|
-
"
|
|
341
|
-
"
|
|
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",
|
|
356
|
+
"cfg-if",
|
|
357
|
+
"crunchy",
|
|
358
|
+
"num-traits",
|
|
359
|
+
"zerocopy",
|
|
351
360
|
]
|
|
352
361
|
|
|
353
362
|
[[package]]
|
|
354
363
|
name = "hashbrown"
|
|
355
|
-
version = "0.
|
|
364
|
+
version = "0.16.1"
|
|
356
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
-
checksum = "
|
|
366
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
358
367
|
dependencies = [
|
|
368
|
+
"allocator-api2",
|
|
369
|
+
"equivalent",
|
|
359
370
|
"foldhash",
|
|
360
371
|
]
|
|
361
372
|
|
|
@@ -364,6 +375,9 @@ name = "hashbrown"
|
|
|
364
375
|
version = "0.17.1"
|
|
365
376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
377
|
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
378
|
+
dependencies = [
|
|
379
|
+
"foldhash",
|
|
380
|
+
]
|
|
367
381
|
|
|
368
382
|
[[package]]
|
|
369
383
|
name = "heck"
|
|
@@ -371,12 +385,6 @@ version = "0.5.0"
|
|
|
371
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
386
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
373
387
|
|
|
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
388
|
[[package]]
|
|
381
389
|
name = "indexmap"
|
|
382
390
|
version = "2.14.0"
|
|
@@ -468,6 +476,18 @@ dependencies = [
|
|
|
468
476
|
"windows-link",
|
|
469
477
|
]
|
|
470
478
|
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "libm"
|
|
481
|
+
version = "0.2.16"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
484
|
+
|
|
485
|
+
[[package]]
|
|
486
|
+
name = "linux-raw-sys"
|
|
487
|
+
version = "0.12.1"
|
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
489
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
490
|
+
|
|
471
491
|
[[package]]
|
|
472
492
|
name = "litrs"
|
|
473
493
|
version = "1.0.0"
|
|
@@ -489,15 +509,6 @@ version = "0.4.33"
|
|
|
489
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
510
|
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
491
511
|
|
|
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
512
|
[[package]]
|
|
502
513
|
name = "memoffset"
|
|
503
514
|
version = "0.9.1"
|
|
@@ -507,48 +518,49 @@ dependencies = [
|
|
|
507
518
|
"autocfg",
|
|
508
519
|
]
|
|
509
520
|
|
|
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
521
|
[[package]]
|
|
526
522
|
name = "naga"
|
|
527
|
-
version = "
|
|
523
|
+
version = "30.0.0"
|
|
528
524
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
-
checksum = "
|
|
525
|
+
checksum = "23bf0a141a9ab6f07dbb492db53245e464bc9db42f407772d9ae03d83a2c1033"
|
|
530
526
|
dependencies = [
|
|
531
527
|
"arrayvec",
|
|
532
|
-
"bit-set",
|
|
533
|
-
"bitflags
|
|
528
|
+
"bit-set 0.10.0",
|
|
529
|
+
"bitflags",
|
|
530
|
+
"cfg-if",
|
|
534
531
|
"cfg_aliases",
|
|
535
532
|
"codespan-reporting",
|
|
536
|
-
"
|
|
533
|
+
"half",
|
|
534
|
+
"hashbrown 0.17.1",
|
|
537
535
|
"indexmap",
|
|
536
|
+
"libm",
|
|
538
537
|
"log",
|
|
538
|
+
"naga-types",
|
|
539
|
+
"num-traits",
|
|
540
|
+
"once_cell",
|
|
539
541
|
"rustc-hash",
|
|
540
542
|
"spirv",
|
|
541
|
-
"
|
|
542
|
-
"
|
|
543
|
-
|
|
544
|
-
|
|
543
|
+
"thiserror",
|
|
544
|
+
"unicode-ident",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "naga-types"
|
|
549
|
+
version = "30.0.0"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "658200ddc25c6c7b860747516d132d1b284c0fafb7a380233acee9a72fb30e11"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"hashbrown 0.17.1",
|
|
554
|
+
"indexmap",
|
|
555
|
+
"rustc-hash",
|
|
556
|
+
"thiserror",
|
|
545
557
|
]
|
|
546
558
|
|
|
547
559
|
[[package]]
|
|
548
560
|
name = "ndk-sys"
|
|
549
|
-
version = "0.
|
|
561
|
+
version = "0.6.0+11769913"
|
|
550
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
-
checksum = "
|
|
563
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
552
564
|
dependencies = [
|
|
553
565
|
"jni-sys 0.3.1",
|
|
554
566
|
]
|
|
@@ -560,15 +572,93 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
560
572
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
561
573
|
dependencies = [
|
|
562
574
|
"autocfg",
|
|
575
|
+
"libm",
|
|
563
576
|
]
|
|
564
577
|
|
|
565
578
|
[[package]]
|
|
566
|
-
name = "
|
|
567
|
-
version = "0.
|
|
579
|
+
name = "objc2"
|
|
580
|
+
version = "0.6.4"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"objc2-encode",
|
|
585
|
+
]
|
|
586
|
+
|
|
587
|
+
[[package]]
|
|
588
|
+
name = "objc2-core-foundation"
|
|
589
|
+
version = "0.3.2"
|
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
592
|
+
dependencies = [
|
|
593
|
+
"bitflags",
|
|
594
|
+
"dispatch2",
|
|
595
|
+
"objc2",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "objc2-core-graphics"
|
|
600
|
+
version = "0.3.2"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"dispatch2",
|
|
605
|
+
"objc2",
|
|
606
|
+
"objc2-core-foundation",
|
|
607
|
+
"objc2-io-surface",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "objc2-encode"
|
|
612
|
+
version = "4.1.0"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
615
|
+
|
|
616
|
+
[[package]]
|
|
617
|
+
name = "objc2-foundation"
|
|
618
|
+
version = "0.3.2"
|
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
620
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
621
|
+
dependencies = [
|
|
622
|
+
"bitflags",
|
|
623
|
+
"objc2",
|
|
624
|
+
"objc2-core-foundation",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "objc2-io-surface"
|
|
629
|
+
version = "0.3.2"
|
|
568
630
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
-
checksum = "
|
|
631
|
+
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
570
632
|
dependencies = [
|
|
571
|
-
"
|
|
633
|
+
"bitflags",
|
|
634
|
+
"objc2",
|
|
635
|
+
"objc2-core-foundation",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "objc2-metal"
|
|
640
|
+
version = "0.3.2"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "a0125f776a10d00af4152d74616409f0d4a2053a6f57fa5b7d6aa2854ac04794"
|
|
643
|
+
dependencies = [
|
|
644
|
+
"bitflags",
|
|
645
|
+
"block2",
|
|
646
|
+
"objc2",
|
|
647
|
+
"objc2-foundation",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "objc2-quartz-core"
|
|
652
|
+
version = "0.3.2"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"bitflags",
|
|
657
|
+
"objc2",
|
|
658
|
+
"objc2-core-foundation",
|
|
659
|
+
"objc2-core-graphics",
|
|
660
|
+
"objc2-foundation",
|
|
661
|
+
"objc2-metal",
|
|
572
662
|
]
|
|
573
663
|
|
|
574
664
|
[[package]]
|
|
@@ -579,9 +669,9 @@ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
|
579
669
|
|
|
580
670
|
[[package]]
|
|
581
671
|
name = "ordered-float"
|
|
582
|
-
version = "
|
|
672
|
+
version = "5.3.0"
|
|
583
673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
584
|
-
checksum = "
|
|
674
|
+
checksum = "b7d950ca161dc355eaf28f82b11345ed76c6e1f6eb1f4f4479e0323b9e2fbd0e"
|
|
585
675
|
dependencies = [
|
|
586
676
|
"num-traits",
|
|
587
677
|
]
|
|
@@ -609,12 +699,6 @@ dependencies = [
|
|
|
609
699
|
"windows-link",
|
|
610
700
|
]
|
|
611
701
|
|
|
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
702
|
[[package]]
|
|
619
703
|
name = "pin-project-lite"
|
|
620
704
|
version = "0.2.17"
|
|
@@ -639,6 +723,24 @@ version = "1.15.0"
|
|
|
639
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
640
724
|
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
641
725
|
|
|
726
|
+
[[package]]
|
|
727
|
+
name = "portable-atomic-util"
|
|
728
|
+
version = "0.2.7"
|
|
729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
731
|
+
dependencies = [
|
|
732
|
+
"portable-atomic",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "ppv-lite86"
|
|
737
|
+
version = "0.2.21"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"zerocopy",
|
|
742
|
+
]
|
|
743
|
+
|
|
642
744
|
[[package]]
|
|
643
745
|
name = "presser"
|
|
644
746
|
version = "0.3.1"
|
|
@@ -660,6 +762,25 @@ version = "1.0.18"
|
|
|
660
762
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
763
|
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
662
764
|
|
|
765
|
+
[[package]]
|
|
766
|
+
name = "proptest"
|
|
767
|
+
version = "1.11.0"
|
|
768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
769
|
+
checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
|
|
770
|
+
dependencies = [
|
|
771
|
+
"bit-set 0.8.0",
|
|
772
|
+
"bit-vec 0.8.0",
|
|
773
|
+
"bitflags",
|
|
774
|
+
"num-traits",
|
|
775
|
+
"rand",
|
|
776
|
+
"rand_chacha",
|
|
777
|
+
"rand_xorshift",
|
|
778
|
+
"regex-syntax",
|
|
779
|
+
"rusty-fork",
|
|
780
|
+
"tempfile",
|
|
781
|
+
"unarray",
|
|
782
|
+
]
|
|
783
|
+
|
|
663
784
|
[[package]]
|
|
664
785
|
name = "pyo3"
|
|
665
786
|
version = "0.23.5"
|
|
@@ -723,6 +844,12 @@ dependencies = [
|
|
|
723
844
|
"syn 2.0.119",
|
|
724
845
|
]
|
|
725
846
|
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "quick-error"
|
|
849
|
+
version = "1.2.3"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
852
|
+
|
|
726
853
|
[[package]]
|
|
727
854
|
name = "quote"
|
|
728
855
|
version = "1.0.47"
|
|
@@ -732,6 +859,56 @@ dependencies = [
|
|
|
732
859
|
"proc-macro2",
|
|
733
860
|
]
|
|
734
861
|
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "r-efi"
|
|
864
|
+
version = "5.3.0"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "r-efi"
|
|
870
|
+
version = "6.0.0"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "rand"
|
|
876
|
+
version = "0.9.5"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "b9ef1d0d795eb7d84685bca4f72f3649f064e6641543d3a8c415898726a57b41"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"rand_chacha",
|
|
881
|
+
"rand_core",
|
|
882
|
+
]
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "rand_chacha"
|
|
886
|
+
version = "0.9.0"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
889
|
+
dependencies = [
|
|
890
|
+
"ppv-lite86",
|
|
891
|
+
"rand_core",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "rand_core"
|
|
896
|
+
version = "0.9.5"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"getrandom 0.3.4",
|
|
901
|
+
]
|
|
902
|
+
|
|
903
|
+
[[package]]
|
|
904
|
+
name = "rand_xorshift"
|
|
905
|
+
version = "0.4.0"
|
|
906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
+
checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
|
|
908
|
+
dependencies = [
|
|
909
|
+
"rand_core",
|
|
910
|
+
]
|
|
911
|
+
|
|
735
912
|
[[package]]
|
|
736
913
|
name = "range-alloc"
|
|
737
914
|
version = "0.1.5"
|
|
@@ -744,6 +921,18 @@ version = "0.6.2"
|
|
|
744
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
745
922
|
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
746
923
|
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "raw-window-metal"
|
|
926
|
+
version = "1.1.0"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "40d213455a5f1dc59214213c7330e074ddf8114c9a42411eb890c767357ce135"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"objc2",
|
|
931
|
+
"objc2-core-foundation",
|
|
932
|
+
"objc2-foundation",
|
|
933
|
+
"objc2-quartz-core",
|
|
934
|
+
]
|
|
935
|
+
|
|
747
936
|
[[package]]
|
|
748
937
|
name = "rayon"
|
|
749
938
|
version = "1.12.0"
|
|
@@ -770,9 +959,15 @@ version = "0.5.18"
|
|
|
770
959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
960
|
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
772
961
|
dependencies = [
|
|
773
|
-
"bitflags
|
|
962
|
+
"bitflags",
|
|
774
963
|
]
|
|
775
964
|
|
|
965
|
+
[[package]]
|
|
966
|
+
name = "regex-syntax"
|
|
967
|
+
version = "0.8.11"
|
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
970
|
+
|
|
776
971
|
[[package]]
|
|
777
972
|
name = "renderdoc-sys"
|
|
778
973
|
version = "1.1.0"
|
|
@@ -785,18 +980,53 @@ version = "1.1.0"
|
|
|
785
980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
981
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
787
982
|
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "rustix"
|
|
985
|
+
version = "1.1.4"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
988
|
+
dependencies = [
|
|
989
|
+
"bitflags",
|
|
990
|
+
"errno",
|
|
991
|
+
"libc",
|
|
992
|
+
"linux-raw-sys",
|
|
993
|
+
"windows-sys",
|
|
994
|
+
]
|
|
995
|
+
|
|
788
996
|
[[package]]
|
|
789
997
|
name = "rustversion"
|
|
790
998
|
version = "1.0.23"
|
|
791
999
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
1000
|
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
793
1001
|
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "rusty-fork"
|
|
1004
|
+
version = "0.3.1"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"fnv",
|
|
1009
|
+
"quick-error",
|
|
1010
|
+
"tempfile",
|
|
1011
|
+
"wait-timeout",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
794
1014
|
[[package]]
|
|
795
1015
|
name = "scopeguard"
|
|
796
1016
|
version = "1.2.0"
|
|
797
1017
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
798
1018
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
799
1019
|
|
|
1020
|
+
[[package]]
|
|
1021
|
+
name = "serde"
|
|
1022
|
+
version = "1.0.229"
|
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
1025
|
+
dependencies = [
|
|
1026
|
+
"serde_core",
|
|
1027
|
+
"serde_derive",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
800
1030
|
[[package]]
|
|
801
1031
|
name = "serde_core"
|
|
802
1032
|
version = "1.0.229"
|
|
@@ -840,11 +1070,11 @@ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
|
840
1070
|
|
|
841
1071
|
[[package]]
|
|
842
1072
|
name = "spirv"
|
|
843
|
-
version = "0.
|
|
1073
|
+
version = "0.4.0+sdk-1.4.341.0"
|
|
844
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
-
checksum = "
|
|
1075
|
+
checksum = "d9571ea910ebd84c86af4b3ed27f9dbdc6ad06f17c5f96146b2b671e2976744f"
|
|
846
1076
|
dependencies = [
|
|
847
|
-
"bitflags
|
|
1077
|
+
"bitflags",
|
|
848
1078
|
]
|
|
849
1079
|
|
|
850
1080
|
[[package]]
|
|
@@ -853,28 +1083,6 @@ version = "1.1.0"
|
|
|
853
1083
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
1084
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
855
1085
|
|
|
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
1086
|
[[package]]
|
|
879
1087
|
name = "syn"
|
|
880
1088
|
version = "2.0.119"
|
|
@@ -904,21 +1112,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
904
1112
|
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
905
1113
|
|
|
906
1114
|
[[package]]
|
|
907
|
-
name = "
|
|
908
|
-
version = "
|
|
1115
|
+
name = "tempfile"
|
|
1116
|
+
version = "3.27.0"
|
|
909
1117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
-
checksum = "
|
|
1118
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
911
1119
|
dependencies = [
|
|
912
|
-
"
|
|
1120
|
+
"fastrand",
|
|
1121
|
+
"getrandom 0.4.3",
|
|
1122
|
+
"once_cell",
|
|
1123
|
+
"rustix",
|
|
1124
|
+
"windows-sys",
|
|
913
1125
|
]
|
|
914
1126
|
|
|
915
1127
|
[[package]]
|
|
916
|
-
name = "
|
|
917
|
-
version = "1.
|
|
1128
|
+
name = "termcolor"
|
|
1129
|
+
version = "1.4.1"
|
|
918
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
-
checksum = "
|
|
1131
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
920
1132
|
dependencies = [
|
|
921
|
-
"
|
|
1133
|
+
"winapi-util",
|
|
922
1134
|
]
|
|
923
1135
|
|
|
924
1136
|
[[package]]
|
|
@@ -927,18 +1139,7 @@ version = "2.0.20"
|
|
|
927
1139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
1140
|
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
929
1141
|
dependencies = [
|
|
930
|
-
"thiserror-impl
|
|
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",
|
|
1142
|
+
"thiserror-impl",
|
|
942
1143
|
]
|
|
943
1144
|
|
|
944
1145
|
[[package]]
|
|
@@ -952,6 +1153,12 @@ dependencies = [
|
|
|
952
1153
|
"syn 3.0.3",
|
|
953
1154
|
]
|
|
954
1155
|
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "unarray"
|
|
1158
|
+
version = "0.1.4"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
|
|
1161
|
+
|
|
955
1162
|
[[package]]
|
|
956
1163
|
name = "unicode-ident"
|
|
957
1164
|
version = "1.0.24"
|
|
@@ -960,15 +1167,9 @@ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
|
960
1167
|
|
|
961
1168
|
[[package]]
|
|
962
1169
|
name = "unicode-width"
|
|
963
|
-
version = "0.
|
|
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"
|
|
1170
|
+
version = "0.2.2"
|
|
970
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
-
checksum = "
|
|
1172
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
972
1173
|
|
|
973
1174
|
[[package]]
|
|
974
1175
|
name = "unindent"
|
|
@@ -982,6 +1183,24 @@ version = "0.9.5"
|
|
|
982
1183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
1184
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
984
1185
|
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "wait-timeout"
|
|
1188
|
+
version = "0.2.1"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
|
|
1191
|
+
dependencies = [
|
|
1192
|
+
"libc",
|
|
1193
|
+
]
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "wasip2"
|
|
1197
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1200
|
+
dependencies = [
|
|
1201
|
+
"wit-bindgen",
|
|
1202
|
+
]
|
|
1203
|
+
|
|
985
1204
|
[[package]]
|
|
986
1205
|
name = "wasm-bindgen"
|
|
987
1206
|
version = "0.2.127"
|
|
@@ -1037,6 +1256,18 @@ dependencies = [
|
|
|
1037
1256
|
"unicode-ident",
|
|
1038
1257
|
]
|
|
1039
1258
|
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "wayland-sys"
|
|
1261
|
+
version = "0.31.11"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "d8eab23fefc9e41f8e841df4a9c707e8a8c4ed26e944ef69297184de2785e3be"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"dlib",
|
|
1266
|
+
"log",
|
|
1267
|
+
"once_cell",
|
|
1268
|
+
"pkg-config",
|
|
1269
|
+
]
|
|
1270
|
+
|
|
1040
1271
|
[[package]]
|
|
1041
1272
|
name = "web-sys"
|
|
1042
1273
|
version = "0.3.104"
|
|
@@ -1049,18 +1280,22 @@ dependencies = [
|
|
|
1049
1280
|
|
|
1050
1281
|
[[package]]
|
|
1051
1282
|
name = "wgpu"
|
|
1052
|
-
version = "
|
|
1283
|
+
version = "30.0.0"
|
|
1053
1284
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
-
checksum = "
|
|
1285
|
+
checksum = "6d8f4bd44d92da5270f03409dba9f952dab24f128e05d6a554926101d1bf9114"
|
|
1055
1286
|
dependencies = [
|
|
1056
1287
|
"arrayvec",
|
|
1057
|
-
"bitflags
|
|
1288
|
+
"bitflags",
|
|
1289
|
+
"bytemuck",
|
|
1290
|
+
"cfg-if",
|
|
1058
1291
|
"cfg_aliases",
|
|
1059
1292
|
"document-features",
|
|
1293
|
+
"hashbrown 0.17.1",
|
|
1060
1294
|
"js-sys",
|
|
1061
1295
|
"log",
|
|
1062
1296
|
"naga",
|
|
1063
1297
|
"parking_lot",
|
|
1298
|
+
"portable-atomic",
|
|
1064
1299
|
"profiling",
|
|
1065
1300
|
"raw-window-handle",
|
|
1066
1301
|
"smallvec",
|
|
@@ -1075,84 +1310,144 @@ dependencies = [
|
|
|
1075
1310
|
|
|
1076
1311
|
[[package]]
|
|
1077
1312
|
name = "wgpu-core"
|
|
1078
|
-
version = "
|
|
1313
|
+
version = "30.0.0"
|
|
1079
1314
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1080
|
-
checksum = "
|
|
1315
|
+
checksum = "08763620e76fc980bca7bf84de82568614487a53172dd968d89187282eb87fa2"
|
|
1081
1316
|
dependencies = [
|
|
1082
1317
|
"arrayvec",
|
|
1083
|
-
"bit-
|
|
1084
|
-
"
|
|
1318
|
+
"bit-set 0.10.0",
|
|
1319
|
+
"bit-vec 0.9.1",
|
|
1320
|
+
"bitflags",
|
|
1321
|
+
"bytemuck",
|
|
1085
1322
|
"cfg_aliases",
|
|
1086
1323
|
"document-features",
|
|
1324
|
+
"hashbrown 0.17.1",
|
|
1087
1325
|
"indexmap",
|
|
1088
1326
|
"log",
|
|
1089
1327
|
"naga",
|
|
1328
|
+
"naga-types",
|
|
1090
1329
|
"once_cell",
|
|
1091
1330
|
"parking_lot",
|
|
1331
|
+
"portable-atomic",
|
|
1092
1332
|
"profiling",
|
|
1093
1333
|
"raw-window-handle",
|
|
1094
1334
|
"rustc-hash",
|
|
1095
1335
|
"smallvec",
|
|
1096
|
-
"thiserror
|
|
1336
|
+
"thiserror",
|
|
1337
|
+
"wgpu-core-deps-apple",
|
|
1338
|
+
"wgpu-core-deps-emscripten",
|
|
1339
|
+
"wgpu-core-deps-windows-linux-android",
|
|
1097
1340
|
"wgpu-hal",
|
|
1341
|
+
"wgpu-naga-bridge",
|
|
1098
1342
|
"wgpu-types",
|
|
1099
1343
|
]
|
|
1100
1344
|
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "wgpu-core-deps-apple"
|
|
1347
|
+
version = "30.0.0"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "3283b6da70d7fc892de95840215aa36381b5d0cbc479e88ee2b173c7b992b225"
|
|
1350
|
+
dependencies = [
|
|
1351
|
+
"wgpu-hal",
|
|
1352
|
+
]
|
|
1353
|
+
|
|
1354
|
+
[[package]]
|
|
1355
|
+
name = "wgpu-core-deps-emscripten"
|
|
1356
|
+
version = "30.0.0"
|
|
1357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1358
|
+
checksum = "85dcf2b2e5c2afb9eda64c570a87a4e570304bf39e52eddbaaf222d655b656ad"
|
|
1359
|
+
dependencies = [
|
|
1360
|
+
"wgpu-hal",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "wgpu-core-deps-windows-linux-android"
|
|
1365
|
+
version = "30.0.0"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "f76bc9c1c186ff3d9054e0d224c93c8c1c79d6653907c5249a5c1ea1a2cb1e43"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"wgpu-hal",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1101
1372
|
[[package]]
|
|
1102
1373
|
name = "wgpu-hal"
|
|
1103
|
-
version = "
|
|
1374
|
+
version = "30.0.0"
|
|
1104
1375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1376
|
+
checksum = "cf765132d8d5f50e192e7880464890c13f4e7457aafe8e5466e8174586e9f101"
|
|
1106
1377
|
dependencies = [
|
|
1107
1378
|
"android_system_properties",
|
|
1108
1379
|
"arrayvec",
|
|
1109
1380
|
"ash",
|
|
1110
|
-
"bit-set",
|
|
1111
|
-
"bitflags
|
|
1112
|
-
"
|
|
1381
|
+
"bit-set 0.10.0",
|
|
1382
|
+
"bitflags",
|
|
1383
|
+
"block2",
|
|
1113
1384
|
"bytemuck",
|
|
1385
|
+
"cfg-if",
|
|
1114
1386
|
"cfg_aliases",
|
|
1115
|
-
"core-graphics-types",
|
|
1116
1387
|
"glow",
|
|
1117
1388
|
"glutin_wgl_sys",
|
|
1118
|
-
"gpu-alloc",
|
|
1119
1389
|
"gpu-allocator",
|
|
1120
|
-
"
|
|
1390
|
+
"hashbrown 0.17.1",
|
|
1121
1391
|
"js-sys",
|
|
1122
1392
|
"khronos-egl",
|
|
1123
1393
|
"libc",
|
|
1124
1394
|
"libloading",
|
|
1125
1395
|
"log",
|
|
1126
|
-
"metal",
|
|
1127
1396
|
"naga",
|
|
1397
|
+
"naga-types",
|
|
1128
1398
|
"ndk-sys",
|
|
1129
|
-
"
|
|
1399
|
+
"objc2",
|
|
1400
|
+
"objc2-core-foundation",
|
|
1401
|
+
"objc2-core-graphics",
|
|
1402
|
+
"objc2-foundation",
|
|
1403
|
+
"objc2-metal",
|
|
1404
|
+
"objc2-quartz-core",
|
|
1130
1405
|
"once_cell",
|
|
1131
1406
|
"ordered-float",
|
|
1132
1407
|
"parking_lot",
|
|
1408
|
+
"portable-atomic",
|
|
1409
|
+
"portable-atomic-util",
|
|
1133
1410
|
"profiling",
|
|
1134
1411
|
"range-alloc",
|
|
1135
1412
|
"raw-window-handle",
|
|
1413
|
+
"raw-window-metal",
|
|
1136
1414
|
"renderdoc-sys",
|
|
1137
|
-
"rustc-hash",
|
|
1138
1415
|
"smallvec",
|
|
1139
|
-
"
|
|
1416
|
+
"static_assertions",
|
|
1417
|
+
"thiserror",
|
|
1140
1418
|
"wasm-bindgen",
|
|
1419
|
+
"wayland-sys",
|
|
1141
1420
|
"web-sys",
|
|
1421
|
+
"wgpu-naga-bridge",
|
|
1142
1422
|
"wgpu-types",
|
|
1143
1423
|
"windows",
|
|
1144
1424
|
"windows-core",
|
|
1425
|
+
"windows-result",
|
|
1426
|
+
]
|
|
1427
|
+
|
|
1428
|
+
[[package]]
|
|
1429
|
+
name = "wgpu-naga-bridge"
|
|
1430
|
+
version = "30.0.0"
|
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1432
|
+
checksum = "c9eaac644e5008925c78567d272b9d66ef83da55a53cc17fc7daade7bb6e66e5"
|
|
1433
|
+
dependencies = [
|
|
1434
|
+
"naga",
|
|
1435
|
+
"wgpu-types",
|
|
1145
1436
|
]
|
|
1146
1437
|
|
|
1147
1438
|
[[package]]
|
|
1148
1439
|
name = "wgpu-types"
|
|
1149
|
-
version = "
|
|
1440
|
+
version = "30.0.0"
|
|
1150
1441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
-
checksum = "
|
|
1442
|
+
checksum = "1a9c93c2b35edde326df60ffdee4c0f5864eac3011d6768b70d43f028ad93565"
|
|
1152
1443
|
dependencies = [
|
|
1153
|
-
"bitflags
|
|
1444
|
+
"bitflags",
|
|
1445
|
+
"bytemuck",
|
|
1154
1446
|
"js-sys",
|
|
1155
1447
|
"log",
|
|
1448
|
+
"naga-types",
|
|
1449
|
+
"raw-window-handle",
|
|
1450
|
+
"static_assertions",
|
|
1156
1451
|
"web-sys",
|
|
1157
1452
|
]
|
|
1158
1453
|
|
|
@@ -1167,32 +1462,54 @@ dependencies = [
|
|
|
1167
1462
|
|
|
1168
1463
|
[[package]]
|
|
1169
1464
|
name = "windows"
|
|
1170
|
-
version = "0.
|
|
1465
|
+
version = "0.62.2"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"windows-collections",
|
|
1470
|
+
"windows-core",
|
|
1471
|
+
"windows-future",
|
|
1472
|
+
"windows-numerics",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "windows-collections"
|
|
1477
|
+
version = "0.3.2"
|
|
1171
1478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
-
checksum = "
|
|
1479
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
1173
1480
|
dependencies = [
|
|
1174
1481
|
"windows-core",
|
|
1175
|
-
"windows-targets",
|
|
1176
1482
|
]
|
|
1177
1483
|
|
|
1178
1484
|
[[package]]
|
|
1179
1485
|
name = "windows-core"
|
|
1180
|
-
version = "0.
|
|
1486
|
+
version = "0.62.2"
|
|
1181
1487
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1182
|
-
checksum = "
|
|
1488
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1183
1489
|
dependencies = [
|
|
1184
1490
|
"windows-implement",
|
|
1185
1491
|
"windows-interface",
|
|
1492
|
+
"windows-link",
|
|
1186
1493
|
"windows-result",
|
|
1187
1494
|
"windows-strings",
|
|
1188
|
-
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "windows-future"
|
|
1499
|
+
version = "0.3.2"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
1502
|
+
dependencies = [
|
|
1503
|
+
"windows-core",
|
|
1504
|
+
"windows-link",
|
|
1505
|
+
"windows-threading",
|
|
1189
1506
|
]
|
|
1190
1507
|
|
|
1191
1508
|
[[package]]
|
|
1192
1509
|
name = "windows-implement"
|
|
1193
|
-
version = "0.
|
|
1510
|
+
version = "0.60.2"
|
|
1194
1511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1195
|
-
checksum = "
|
|
1512
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1196
1513
|
dependencies = [
|
|
1197
1514
|
"proc-macro2",
|
|
1198
1515
|
"quote",
|
|
@@ -1201,9 +1518,9 @@ dependencies = [
|
|
|
1201
1518
|
|
|
1202
1519
|
[[package]]
|
|
1203
1520
|
name = "windows-interface"
|
|
1204
|
-
version = "0.
|
|
1521
|
+
version = "0.59.3"
|
|
1205
1522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
-
checksum = "
|
|
1523
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1207
1524
|
dependencies = [
|
|
1208
1525
|
"proc-macro2",
|
|
1209
1526
|
"quote",
|
|
@@ -1216,23 +1533,32 @@ version = "0.2.1"
|
|
|
1216
1533
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1217
1534
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1218
1535
|
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "windows-numerics"
|
|
1538
|
+
version = "0.3.1"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"windows-core",
|
|
1543
|
+
"windows-link",
|
|
1544
|
+
]
|
|
1545
|
+
|
|
1219
1546
|
[[package]]
|
|
1220
1547
|
name = "windows-result"
|
|
1221
|
-
version = "0.
|
|
1548
|
+
version = "0.4.1"
|
|
1222
1549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
-
checksum = "
|
|
1550
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1224
1551
|
dependencies = [
|
|
1225
|
-
"windows-
|
|
1552
|
+
"windows-link",
|
|
1226
1553
|
]
|
|
1227
1554
|
|
|
1228
1555
|
[[package]]
|
|
1229
1556
|
name = "windows-strings"
|
|
1230
|
-
version = "0.1
|
|
1557
|
+
version = "0.5.1"
|
|
1231
1558
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
-
checksum = "
|
|
1559
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1233
1560
|
dependencies = [
|
|
1234
|
-
"windows-
|
|
1235
|
-
"windows-targets",
|
|
1561
|
+
"windows-link",
|
|
1236
1562
|
]
|
|
1237
1563
|
|
|
1238
1564
|
[[package]]
|
|
@@ -1245,71 +1571,42 @@ dependencies = [
|
|
|
1245
1571
|
]
|
|
1246
1572
|
|
|
1247
1573
|
[[package]]
|
|
1248
|
-
name = "windows-
|
|
1249
|
-
version = "0.
|
|
1574
|
+
name = "windows-threading"
|
|
1575
|
+
version = "0.2.1"
|
|
1250
1576
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
-
checksum = "
|
|
1577
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
1252
1578
|
dependencies = [
|
|
1253
|
-
"
|
|
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",
|
|
1579
|
+
"windows-link",
|
|
1261
1580
|
]
|
|
1262
1581
|
|
|
1263
1582
|
[[package]]
|
|
1264
|
-
name = "
|
|
1265
|
-
version = "0.
|
|
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"
|
|
1583
|
+
name = "wit-bindgen"
|
|
1584
|
+
version = "0.57.1"
|
|
1296
1585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
-
checksum = "
|
|
1586
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1298
1587
|
|
|
1299
1588
|
[[package]]
|
|
1300
|
-
name = "
|
|
1301
|
-
version = "0.
|
|
1589
|
+
name = "xml-rs"
|
|
1590
|
+
version = "0.8.29"
|
|
1302
1591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1303
|
-
checksum = "
|
|
1592
|
+
checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"
|
|
1304
1593
|
|
|
1305
1594
|
[[package]]
|
|
1306
|
-
name = "
|
|
1307
|
-
version = "0.
|
|
1595
|
+
name = "zerocopy"
|
|
1596
|
+
version = "0.8.56"
|
|
1308
1597
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
-
checksum = "
|
|
1598
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"zerocopy-derive",
|
|
1601
|
+
]
|
|
1310
1602
|
|
|
1311
1603
|
[[package]]
|
|
1312
|
-
name = "
|
|
1313
|
-
version = "0.8.
|
|
1604
|
+
name = "zerocopy-derive"
|
|
1605
|
+
version = "0.8.56"
|
|
1314
1606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
-
checksum = "
|
|
1607
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"proc-macro2",
|
|
1610
|
+
"quote",
|
|
1611
|
+
"syn 2.0.119",
|
|
1612
|
+
]
|