libjay 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.
- libjay-0.1.0/Cargo.lock +1724 -0
- libjay-0.1.0/Cargo.toml +10 -0
- libjay-0.1.0/LICENSE +21 -0
- libjay-0.1.0/PKG-INFO +279 -0
- libjay-0.1.0/crates/libjay/Cargo.toml +52 -0
- libjay-0.1.0/crates/libjay/LICENSE +21 -0
- libjay-0.1.0/crates/libjay/README.md +119 -0
- libjay-0.1.0/crates/libjay/src/array.rs +878 -0
- libjay-0.1.0/crates/libjay/src/complex.rs +442 -0
- libjay-0.1.0/crates/libjay/src/device/codegen.rs +542 -0
- libjay-0.1.0/crates/libjay/src/device/gpu.rs +301 -0
- libjay-0.1.0/crates/libjay/src/device/mod.rs +503 -0
- libjay-0.1.0/crates/libjay/src/dtype.rs +89 -0
- libjay-0.1.0/crates/libjay/src/error.rs +151 -0
- libjay-0.1.0/crates/libjay/src/exact.rs +540 -0
- libjay-0.1.0/crates/libjay/src/explain.rs +577 -0
- libjay-0.1.0/crates/libjay/src/fmt.rs +683 -0
- libjay-0.1.0/crates/libjay/src/frontend/apl.rs +3302 -0
- libjay-0.1.0/crates/libjay/src/frontend/j.rs +3218 -0
- libjay-0.1.0/crates/libjay/src/frontend/mod.rs +415 -0
- libjay-0.1.0/crates/libjay/src/fuse.rs +2113 -0
- libjay-0.1.0/crates/libjay/src/ir.rs +858 -0
- libjay-0.1.0/crates/libjay/src/lib.rs +31 -0
- libjay-0.1.0/crates/libjay/src/limits.rs +90 -0
- libjay-0.1.0/crates/libjay/src/par.rs +318 -0
- libjay-0.1.0/crates/libjay/src/rng.rs +169 -0
- libjay-0.1.0/crates/libjay/src/simd.rs +247 -0
- libjay-0.1.0/crates/libjay/src/verb.rs +10256 -0
- libjay-0.1.0/crates/libjay-python/Cargo.toml +21 -0
- libjay-0.1.0/crates/libjay-python/src/data.rs +820 -0
- libjay-0.1.0/crates/libjay-python/src/lib.rs +705 -0
- libjay-0.1.0/crates/libjay-testkit/Cargo.toml +15 -0
- libjay-0.1.0/crates/libjay-testkit/src/compare.rs +99 -0
- libjay-0.1.0/crates/libjay-testkit/src/corpus.rs +165 -0
- libjay-0.1.0/crates/libjay-testkit/src/eval.rs +46 -0
- libjay-0.1.0/crates/libjay-testkit/src/lib.rs +45 -0
- libjay-0.1.0/crates/libjay-testkit/src/replay.rs +112 -0
- libjay-0.1.0/crates/libjay-testkit/src/snapshot.rs +198 -0
- libjay-0.1.0/pyproject.toml +76 -0
- libjay-0.1.0/python/README.md +245 -0
- libjay-0.1.0/python/jay/__init__.py +286 -0
- libjay-0.1.0/python/jay/_cli.py +77 -0
- libjay-0.1.0/python/jay/_tstring.py +30 -0
- libjay-0.1.0/python/jay/lang.py +74 -0
libjay-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,1724 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.8.12"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"cfg-if",
|
|
12
|
+
"const-random",
|
|
13
|
+
"getrandom 0.3.4",
|
|
14
|
+
"once_cell",
|
|
15
|
+
"version_check",
|
|
16
|
+
"zerocopy",
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
[[package]]
|
|
20
|
+
name = "aho-corasick"
|
|
21
|
+
version = "1.1.5"
|
|
22
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
23
|
+
checksum = "c982642fa9e8606056828ee9a8505737230110bb1099153c79efe865c59d12ba"
|
|
24
|
+
dependencies = [
|
|
25
|
+
"memchr",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
[[package]]
|
|
29
|
+
name = "android_system_properties"
|
|
30
|
+
version = "0.1.6"
|
|
31
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
32
|
+
checksum = "ae221649c9976a6f6c56ae1facf410f3ddb33cc661c4b7b61020a912d4237fbc"
|
|
33
|
+
dependencies = [
|
|
34
|
+
"libc",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[[package]]
|
|
38
|
+
name = "arrayvec"
|
|
39
|
+
version = "0.7.8"
|
|
40
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
41
|
+
checksum = "d3fb67a6e08acf24fdeccbac2cb6ac4305825bd1f117462e0e6f2f193345ad56"
|
|
42
|
+
|
|
43
|
+
[[package]]
|
|
44
|
+
name = "arrow-array"
|
|
45
|
+
version = "59.2.0"
|
|
46
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
47
|
+
checksum = "bc9a4a4b2b5ecd0e04df03471661cb61f28bed3c7fd50994715129b01b2edb97"
|
|
48
|
+
dependencies = [
|
|
49
|
+
"ahash",
|
|
50
|
+
"arrow-buffer",
|
|
51
|
+
"arrow-data",
|
|
52
|
+
"arrow-schema",
|
|
53
|
+
"chrono",
|
|
54
|
+
"half",
|
|
55
|
+
"hashbrown 0.17.1",
|
|
56
|
+
"libc",
|
|
57
|
+
"num-complex",
|
|
58
|
+
"num-integer",
|
|
59
|
+
"num-traits",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "arrow-buffer"
|
|
64
|
+
version = "59.2.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "c12b576ef18c1deb80925a248b25ad84f419198d791b8e293fc6aaa60441fe90"
|
|
67
|
+
dependencies = [
|
|
68
|
+
"bytes",
|
|
69
|
+
"half",
|
|
70
|
+
"num-bigint",
|
|
71
|
+
"num-traits",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "arrow-data"
|
|
76
|
+
version = "59.2.0"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "723fe4aeed7604e00b9883a465af4ff0a0e6c44c03e41a68c3d1cbc403e0e44d"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"arrow-buffer",
|
|
81
|
+
"arrow-schema",
|
|
82
|
+
"half",
|
|
83
|
+
"num-integer",
|
|
84
|
+
"num-traits",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "arrow-schema"
|
|
89
|
+
version = "59.2.0"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "e6fed2ca0d1eade57e811cbe73b98ad50cc08a1183e13b2d2aa43a7df593f40e"
|
|
92
|
+
dependencies = [
|
|
93
|
+
"bitflags",
|
|
94
|
+
]
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "ash"
|
|
98
|
+
version = "0.38.0+1.3.281"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"libloading",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "autocfg"
|
|
107
|
+
version = "1.5.1"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "bit-set"
|
|
113
|
+
version = "0.8.0"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"bit-vec",
|
|
118
|
+
]
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "bit-vec"
|
|
122
|
+
version = "0.8.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "bitflags"
|
|
128
|
+
version = "2.13.1"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"serde_core",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "block"
|
|
137
|
+
version = "0.1.6"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
140
|
+
|
|
141
|
+
[[package]]
|
|
142
|
+
name = "bumpalo"
|
|
143
|
+
version = "3.20.3"
|
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
146
|
+
|
|
147
|
+
[[package]]
|
|
148
|
+
name = "bytemuck"
|
|
149
|
+
version = "1.25.2"
|
|
150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
151
|
+
checksum = "95832e849adfb21180ccb6826a99da14e5d266ae5c2e668e1602cf234f153797"
|
|
152
|
+
dependencies = [
|
|
153
|
+
"bytemuck_derive",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "bytemuck_derive"
|
|
158
|
+
version = "1.12.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "fc0e56a716f1e132ff6bf4bdac1c944a3fcdc1cae65f70a4a2a1ac3b401d2d1f"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"proc-macro2",
|
|
163
|
+
"quote",
|
|
164
|
+
"syn 3.0.3",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "bytes"
|
|
169
|
+
version = "1.12.1"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
172
|
+
|
|
173
|
+
[[package]]
|
|
174
|
+
name = "cc"
|
|
175
|
+
version = "1.4.3"
|
|
176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
177
|
+
checksum = "509591b7bcd67f4ef775afad7662703b4935daaa6ec0e5605cfb1090b32a2b6d"
|
|
178
|
+
dependencies = [
|
|
179
|
+
"find-msvc-tools",
|
|
180
|
+
"shlex",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "cfg-if"
|
|
185
|
+
version = "1.0.4"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "cfg_aliases"
|
|
191
|
+
version = "0.2.2"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "f079e83a288787bcd14a6aea84cee5c87a67c5a3e660c30f557a3d24761b3527"
|
|
194
|
+
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "chrono"
|
|
197
|
+
version = "0.4.45"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"iana-time-zone",
|
|
202
|
+
"num-traits",
|
|
203
|
+
"windows-link",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "codespan-reporting"
|
|
208
|
+
version = "0.12.0"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"unicode-width",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "const-random"
|
|
217
|
+
version = "0.1.18"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"const-random-macro",
|
|
222
|
+
]
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "const-random-macro"
|
|
226
|
+
version = "0.1.16"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
229
|
+
dependencies = [
|
|
230
|
+
"getrandom 0.2.17",
|
|
231
|
+
"once_cell",
|
|
232
|
+
"tiny-keccak",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "core-foundation"
|
|
237
|
+
version = "0.10.1"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"core-foundation-sys",
|
|
242
|
+
"libc",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "core-foundation-sys"
|
|
247
|
+
version = "0.8.7"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "core-graphics-types"
|
|
253
|
+
version = "0.2.0"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"bitflags",
|
|
258
|
+
"core-foundation",
|
|
259
|
+
"libc",
|
|
260
|
+
]
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "crossbeam-deque"
|
|
264
|
+
version = "0.8.7"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"crossbeam-epoch",
|
|
269
|
+
"crossbeam-utils",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "crossbeam-epoch"
|
|
274
|
+
version = "0.9.20"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
277
|
+
dependencies = [
|
|
278
|
+
"crossbeam-utils",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "crossbeam-utils"
|
|
283
|
+
version = "0.8.22"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "crunchy"
|
|
289
|
+
version = "0.2.4"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "document-features"
|
|
295
|
+
version = "0.2.12"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"litrs",
|
|
300
|
+
]
|
|
301
|
+
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "either"
|
|
304
|
+
version = "1.17.0"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "9e5e8f6c15a24b9a3ee5efec809ccd006d3b30e8b3bb63c39af737c7f87daa1d"
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "equivalent"
|
|
310
|
+
version = "1.0.2"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "find-msvc-tools"
|
|
316
|
+
version = "0.1.11"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "d45db016d36b838f563236e9193d0ee6ce38f3f68b6c94e914b4929c96bbb890"
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "foldhash"
|
|
322
|
+
version = "0.1.5"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
325
|
+
|
|
326
|
+
[[package]]
|
|
327
|
+
name = "foreign-types"
|
|
328
|
+
version = "0.5.0"
|
|
329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
330
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
331
|
+
dependencies = [
|
|
332
|
+
"foreign-types-macros",
|
|
333
|
+
"foreign-types-shared",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "foreign-types-macros"
|
|
338
|
+
version = "0.2.4"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "ea5190182e6915eb873ddbc16e23b711b6eb1f9c00a0d0a3a91b5f6228475225"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"proc-macro2",
|
|
343
|
+
"quote",
|
|
344
|
+
"syn 3.0.3",
|
|
345
|
+
]
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "foreign-types-shared"
|
|
349
|
+
version = "0.3.1"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "futures-core"
|
|
355
|
+
version = "0.3.34"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "futures-macro"
|
|
361
|
+
version = "0.3.34"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "9fb9654ba8355388abeb8dcb4fc62f511300867002afc858860463bdd9fe0c44"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"proc-macro2",
|
|
366
|
+
"quote",
|
|
367
|
+
"syn 3.0.3",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "futures-task"
|
|
372
|
+
version = "0.3.34"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "futures-timer"
|
|
378
|
+
version = "3.0.4"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "af43fadb8a98512d547e37b4e92e0ced13e205c061b87b4623eff01d918d6968"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "futures-util"
|
|
384
|
+
version = "0.3.34"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"futures-core",
|
|
389
|
+
"futures-macro",
|
|
390
|
+
"futures-task",
|
|
391
|
+
"pin-project-lite",
|
|
392
|
+
"slab",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "getrandom"
|
|
397
|
+
version = "0.2.17"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"cfg-if",
|
|
402
|
+
"libc",
|
|
403
|
+
"wasi",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "getrandom"
|
|
408
|
+
version = "0.3.4"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"cfg-if",
|
|
413
|
+
"libc",
|
|
414
|
+
"r-efi",
|
|
415
|
+
"wasip2",
|
|
416
|
+
]
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "glob"
|
|
420
|
+
version = "0.3.4"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "e4eba85ea1d0a966a983acd07deee566e67395d2d96b6fb39e62b5a833f1eb0b"
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "gpu-alloc"
|
|
426
|
+
version = "0.6.2"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "45cf04b2726f02df5508c6de726acdc90cdf97ac771a9a0ffd8ba10a6e696bf9"
|
|
429
|
+
dependencies = [
|
|
430
|
+
"bitflags",
|
|
431
|
+
"gpu-alloc-types",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "gpu-alloc-types"
|
|
436
|
+
version = "0.3.1"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "b2bbed164dd10ed526c2e4fe3e721ca4a71c61730e5aafac6844b417b3227058"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"bitflags",
|
|
441
|
+
]
|
|
442
|
+
|
|
443
|
+
[[package]]
|
|
444
|
+
name = "gpu-allocator"
|
|
445
|
+
version = "0.27.0"
|
|
446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
447
|
+
checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
|
|
448
|
+
dependencies = [
|
|
449
|
+
"log",
|
|
450
|
+
"presser",
|
|
451
|
+
"thiserror 1.0.69",
|
|
452
|
+
"windows",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "gpu-descriptor"
|
|
457
|
+
version = "0.3.2"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"bitflags",
|
|
462
|
+
"gpu-descriptor-types",
|
|
463
|
+
"hashbrown 0.15.5",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "gpu-descriptor-types"
|
|
468
|
+
version = "0.2.0"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"bitflags",
|
|
473
|
+
]
|
|
474
|
+
|
|
475
|
+
[[package]]
|
|
476
|
+
name = "half"
|
|
477
|
+
version = "2.7.1"
|
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
480
|
+
dependencies = [
|
|
481
|
+
"cfg-if",
|
|
482
|
+
"crunchy",
|
|
483
|
+
"num-traits",
|
|
484
|
+
"zerocopy",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "hashbrown"
|
|
489
|
+
version = "0.15.5"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
492
|
+
dependencies = [
|
|
493
|
+
"foldhash",
|
|
494
|
+
]
|
|
495
|
+
|
|
496
|
+
[[package]]
|
|
497
|
+
name = "hashbrown"
|
|
498
|
+
version = "0.17.1"
|
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
500
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "heck"
|
|
504
|
+
version = "0.5.0"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "hexf-parse"
|
|
510
|
+
version = "0.2.1"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "iana-time-zone"
|
|
516
|
+
version = "0.1.65"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"android_system_properties",
|
|
521
|
+
"core-foundation-sys",
|
|
522
|
+
"iana-time-zone-haiku",
|
|
523
|
+
"js-sys",
|
|
524
|
+
"log",
|
|
525
|
+
"wasm-bindgen",
|
|
526
|
+
"windows-core 0.62.2",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "iana-time-zone-haiku"
|
|
531
|
+
version = "0.1.2"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
534
|
+
dependencies = [
|
|
535
|
+
"cc",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "indexmap"
|
|
540
|
+
version = "2.14.0"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"equivalent",
|
|
545
|
+
"hashbrown 0.17.1",
|
|
546
|
+
]
|
|
547
|
+
|
|
548
|
+
[[package]]
|
|
549
|
+
name = "indoc"
|
|
550
|
+
version = "2.0.7"
|
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
553
|
+
dependencies = [
|
|
554
|
+
"rustversion",
|
|
555
|
+
]
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "js-sys"
|
|
559
|
+
version = "0.3.104"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
562
|
+
dependencies = [
|
|
563
|
+
"cfg-if",
|
|
564
|
+
"futures-util",
|
|
565
|
+
"wasm-bindgen",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "libc"
|
|
570
|
+
version = "0.2.189"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "libjay"
|
|
576
|
+
version = "0.1.0"
|
|
577
|
+
dependencies = [
|
|
578
|
+
"libjay-testkit",
|
|
579
|
+
"multiversion",
|
|
580
|
+
"naga",
|
|
581
|
+
"num-bigint",
|
|
582
|
+
"num-integer",
|
|
583
|
+
"num-traits",
|
|
584
|
+
"pollster",
|
|
585
|
+
"rayon",
|
|
586
|
+
"rstest",
|
|
587
|
+
"wgpu",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "libjay-capi"
|
|
592
|
+
version = "0.1.0"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"libjay",
|
|
595
|
+
]
|
|
596
|
+
|
|
597
|
+
[[package]]
|
|
598
|
+
name = "libjay-devtools"
|
|
599
|
+
version = "0.1.0"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"libjay-testkit",
|
|
602
|
+
"rayon",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "libjay-python"
|
|
607
|
+
version = "0.1.0"
|
|
608
|
+
dependencies = [
|
|
609
|
+
"arrow-array",
|
|
610
|
+
"arrow-buffer",
|
|
611
|
+
"arrow-data",
|
|
612
|
+
"arrow-schema",
|
|
613
|
+
"libjay",
|
|
614
|
+
"pyo3",
|
|
615
|
+
]
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "libjay-testkit"
|
|
619
|
+
version = "0.1.0"
|
|
620
|
+
dependencies = [
|
|
621
|
+
"libjay",
|
|
622
|
+
]
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "libloading"
|
|
626
|
+
version = "0.8.9"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"cfg-if",
|
|
631
|
+
"windows-link",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "libm"
|
|
636
|
+
version = "0.2.16"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "litrs"
|
|
642
|
+
version = "1.0.0"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "lock_api"
|
|
648
|
+
version = "0.4.14"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"scopeguard",
|
|
653
|
+
]
|
|
654
|
+
|
|
655
|
+
[[package]]
|
|
656
|
+
name = "log"
|
|
657
|
+
version = "0.4.33"
|
|
658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
659
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "malloc_buf"
|
|
663
|
+
version = "0.0.6"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"libc",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "memchr"
|
|
672
|
+
version = "2.8.3"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
675
|
+
|
|
676
|
+
[[package]]
|
|
677
|
+
name = "memoffset"
|
|
678
|
+
version = "0.9.1"
|
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
681
|
+
dependencies = [
|
|
682
|
+
"autocfg",
|
|
683
|
+
]
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "metal"
|
|
687
|
+
version = "0.32.0"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "00c15a6f673ff72ddcc22394663290f870fb224c1bfce55734a75c414150e605"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"bitflags",
|
|
692
|
+
"block",
|
|
693
|
+
"core-graphics-types",
|
|
694
|
+
"foreign-types",
|
|
695
|
+
"log",
|
|
696
|
+
"objc",
|
|
697
|
+
"paste",
|
|
698
|
+
]
|
|
699
|
+
|
|
700
|
+
[[package]]
|
|
701
|
+
name = "multiversion"
|
|
702
|
+
version = "0.8.0"
|
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
704
|
+
checksum = "7edb7f0ff51249dfda9ab96b5823695e15a052dc15074c9dbf3d118afaf2c201"
|
|
705
|
+
dependencies = [
|
|
706
|
+
"multiversion-macros",
|
|
707
|
+
"target-features",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "multiversion-macros"
|
|
712
|
+
version = "0.8.0"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "b093064383341eb3271f42e381cb8f10a01459478446953953c75d24bd339fc0"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"proc-macro2",
|
|
717
|
+
"quote",
|
|
718
|
+
"syn 2.0.119",
|
|
719
|
+
"target-features",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "naga"
|
|
724
|
+
version = "26.0.0"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "916cbc7cb27db60be930a4e2da243cf4bc39569195f22fd8ee419cd31d5b662c"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"arrayvec",
|
|
729
|
+
"bit-set",
|
|
730
|
+
"bitflags",
|
|
731
|
+
"cfg-if",
|
|
732
|
+
"cfg_aliases",
|
|
733
|
+
"codespan-reporting",
|
|
734
|
+
"half",
|
|
735
|
+
"hashbrown 0.15.5",
|
|
736
|
+
"hexf-parse",
|
|
737
|
+
"indexmap",
|
|
738
|
+
"libm",
|
|
739
|
+
"log",
|
|
740
|
+
"num-traits",
|
|
741
|
+
"once_cell",
|
|
742
|
+
"rustc-hash",
|
|
743
|
+
"spirv",
|
|
744
|
+
"thiserror 2.0.20",
|
|
745
|
+
"unicode-ident",
|
|
746
|
+
]
|
|
747
|
+
|
|
748
|
+
[[package]]
|
|
749
|
+
name = "num-bigint"
|
|
750
|
+
version = "0.5.1"
|
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
+
checksum = "93e7820bc0a80a0238e650327316f929ba18d5be054b647490a3a6a339f3e7c0"
|
|
753
|
+
dependencies = [
|
|
754
|
+
"num-integer",
|
|
755
|
+
"num-traits",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "num-complex"
|
|
760
|
+
version = "0.4.6"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"num-traits",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "num-integer"
|
|
769
|
+
version = "0.1.47"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "7ce2d95d4b3734dc35aa2f45e1aa22cd416814592a4f9d9205e11affd5b8e10b"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"num-traits",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "num-traits"
|
|
778
|
+
version = "0.2.19"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"autocfg",
|
|
783
|
+
"libm",
|
|
784
|
+
]
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "objc"
|
|
788
|
+
version = "0.2.7"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
791
|
+
dependencies = [
|
|
792
|
+
"malloc_buf",
|
|
793
|
+
]
|
|
794
|
+
|
|
795
|
+
[[package]]
|
|
796
|
+
name = "once_cell"
|
|
797
|
+
version = "1.21.4"
|
|
798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
799
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
800
|
+
|
|
801
|
+
[[package]]
|
|
802
|
+
name = "ordered-float"
|
|
803
|
+
version = "5.0.0"
|
|
804
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
+
checksum = "e2c1f9f56e534ac6a9b8a4600bdf0f530fb393b5f393e7b4d03489c3cf0c3f01"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"num-traits",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "parking_lot"
|
|
812
|
+
version = "0.12.5"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
815
|
+
dependencies = [
|
|
816
|
+
"lock_api",
|
|
817
|
+
"parking_lot_core",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "parking_lot_core"
|
|
822
|
+
version = "0.9.12"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"cfg-if",
|
|
827
|
+
"libc",
|
|
828
|
+
"redox_syscall",
|
|
829
|
+
"smallvec",
|
|
830
|
+
"windows-link",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "paste"
|
|
835
|
+
version = "1.0.15"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "pin-project-lite"
|
|
841
|
+
version = "0.2.17"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "pollster"
|
|
847
|
+
version = "0.4.0"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "portable-atomic"
|
|
853
|
+
version = "1.15.0"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "05c8b63e8d9609db387f0324918f81d68fe27748f084ef092fb35954d0539a85"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "portable-atomic-util"
|
|
859
|
+
version = "0.2.7"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "c2a106d1259c23fac8e543272398ae0e3c0b8d33c88ed73d0cc71b0f1d902618"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"portable-atomic",
|
|
864
|
+
]
|
|
865
|
+
|
|
866
|
+
[[package]]
|
|
867
|
+
name = "presser"
|
|
868
|
+
version = "0.3.1"
|
|
869
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
870
|
+
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
|
871
|
+
|
|
872
|
+
[[package]]
|
|
873
|
+
name = "proc-macro-crate"
|
|
874
|
+
version = "3.5.0"
|
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
876
|
+
checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
|
|
877
|
+
dependencies = [
|
|
878
|
+
"toml_edit",
|
|
879
|
+
]
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "proc-macro2"
|
|
883
|
+
version = "1.0.107"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"unicode-ident",
|
|
888
|
+
]
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "profiling"
|
|
892
|
+
version = "1.0.18"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "3d595e54a326bc53c1c197b32d295e14b169e3cfeaa8dc82b529f947fba6bcf5"
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "pyo3"
|
|
898
|
+
version = "0.25.1"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"indoc",
|
|
903
|
+
"libc",
|
|
904
|
+
"memoffset",
|
|
905
|
+
"once_cell",
|
|
906
|
+
"portable-atomic",
|
|
907
|
+
"pyo3-build-config",
|
|
908
|
+
"pyo3-ffi",
|
|
909
|
+
"pyo3-macros",
|
|
910
|
+
"unindent",
|
|
911
|
+
]
|
|
912
|
+
|
|
913
|
+
[[package]]
|
|
914
|
+
name = "pyo3-build-config"
|
|
915
|
+
version = "0.25.1"
|
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
+
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
918
|
+
dependencies = [
|
|
919
|
+
"once_cell",
|
|
920
|
+
"target-lexicon",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "pyo3-ffi"
|
|
925
|
+
version = "0.25.1"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"libc",
|
|
930
|
+
"pyo3-build-config",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "pyo3-macros"
|
|
935
|
+
version = "0.25.1"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"proc-macro2",
|
|
940
|
+
"pyo3-macros-backend",
|
|
941
|
+
"quote",
|
|
942
|
+
"syn 2.0.119",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "pyo3-macros-backend"
|
|
947
|
+
version = "0.25.1"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"heck",
|
|
952
|
+
"proc-macro2",
|
|
953
|
+
"pyo3-build-config",
|
|
954
|
+
"quote",
|
|
955
|
+
"syn 2.0.119",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "quote"
|
|
960
|
+
version = "1.0.47"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"proc-macro2",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "r-efi"
|
|
969
|
+
version = "5.3.0"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "range-alloc"
|
|
975
|
+
version = "0.1.5"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "ca45419789ae5a7899559e9512e58ca889e41f04f1f2445e9f4b290ceccd1d08"
|
|
978
|
+
|
|
979
|
+
[[package]]
|
|
980
|
+
name = "raw-window-handle"
|
|
981
|
+
version = "0.6.2"
|
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
983
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
984
|
+
|
|
985
|
+
[[package]]
|
|
986
|
+
name = "rayon"
|
|
987
|
+
version = "1.12.0"
|
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
990
|
+
dependencies = [
|
|
991
|
+
"either",
|
|
992
|
+
"rayon-core",
|
|
993
|
+
]
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "rayon-core"
|
|
997
|
+
version = "1.13.0"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"crossbeam-deque",
|
|
1002
|
+
"crossbeam-utils",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "redox_syscall"
|
|
1007
|
+
version = "0.5.18"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"bitflags",
|
|
1012
|
+
]
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "regex"
|
|
1016
|
+
version = "1.13.1"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "f020237b6c8eed93db2e2cb53c00c60a8e1bc73da7d073199a1180401450218d"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"aho-corasick",
|
|
1021
|
+
"memchr",
|
|
1022
|
+
"regex-automata",
|
|
1023
|
+
"regex-syntax",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "regex-automata"
|
|
1028
|
+
version = "0.4.18"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "ad8553b9b26413251cbf30e620595c7a41b3887f03da04579c0e6b0d6a06b4b2"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"aho-corasick",
|
|
1033
|
+
"memchr",
|
|
1034
|
+
"regex-syntax",
|
|
1035
|
+
]
|
|
1036
|
+
|
|
1037
|
+
[[package]]
|
|
1038
|
+
name = "regex-syntax"
|
|
1039
|
+
version = "0.8.11"
|
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1041
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1042
|
+
|
|
1043
|
+
[[package]]
|
|
1044
|
+
name = "relative-path"
|
|
1045
|
+
version = "1.9.3"
|
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
|
+
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
|
|
1048
|
+
|
|
1049
|
+
[[package]]
|
|
1050
|
+
name = "renderdoc-sys"
|
|
1051
|
+
version = "1.1.0"
|
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
+
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "rstest"
|
|
1057
|
+
version = "0.25.0"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
|
|
1060
|
+
dependencies = [
|
|
1061
|
+
"futures-timer",
|
|
1062
|
+
"futures-util",
|
|
1063
|
+
"rstest_macros",
|
|
1064
|
+
"rustc_version",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "rstest_macros"
|
|
1069
|
+
version = "0.25.0"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"cfg-if",
|
|
1074
|
+
"glob",
|
|
1075
|
+
"proc-macro-crate",
|
|
1076
|
+
"proc-macro2",
|
|
1077
|
+
"quote",
|
|
1078
|
+
"regex",
|
|
1079
|
+
"relative-path",
|
|
1080
|
+
"rustc_version",
|
|
1081
|
+
"syn 2.0.119",
|
|
1082
|
+
"unicode-ident",
|
|
1083
|
+
]
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "rustc-hash"
|
|
1087
|
+
version = "1.1.0"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "rustc_version"
|
|
1093
|
+
version = "0.4.1"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"semver",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "rustversion"
|
|
1102
|
+
version = "1.0.23"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "scopeguard"
|
|
1108
|
+
version = "1.2.0"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1111
|
+
|
|
1112
|
+
[[package]]
|
|
1113
|
+
name = "semver"
|
|
1114
|
+
version = "1.0.28"
|
|
1115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "serde_core"
|
|
1120
|
+
version = "1.0.229"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"serde_derive",
|
|
1125
|
+
]
|
|
1126
|
+
|
|
1127
|
+
[[package]]
|
|
1128
|
+
name = "serde_derive"
|
|
1129
|
+
version = "1.0.229"
|
|
1130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1131
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
1132
|
+
dependencies = [
|
|
1133
|
+
"proc-macro2",
|
|
1134
|
+
"quote",
|
|
1135
|
+
"syn 3.0.3",
|
|
1136
|
+
]
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "shlex"
|
|
1140
|
+
version = "2.0.1"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "slab"
|
|
1146
|
+
version = "0.4.12"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1149
|
+
|
|
1150
|
+
[[package]]
|
|
1151
|
+
name = "smallvec"
|
|
1152
|
+
version = "1.15.2"
|
|
1153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1154
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "spirv"
|
|
1158
|
+
version = "0.3.0+sdk-1.3.268.0"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
1161
|
+
dependencies = [
|
|
1162
|
+
"bitflags",
|
|
1163
|
+
]
|
|
1164
|
+
|
|
1165
|
+
[[package]]
|
|
1166
|
+
name = "static_assertions"
|
|
1167
|
+
version = "1.1.0"
|
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1169
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1170
|
+
|
|
1171
|
+
[[package]]
|
|
1172
|
+
name = "syn"
|
|
1173
|
+
version = "2.0.119"
|
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1175
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1176
|
+
dependencies = [
|
|
1177
|
+
"proc-macro2",
|
|
1178
|
+
"quote",
|
|
1179
|
+
"unicode-ident",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "syn"
|
|
1184
|
+
version = "3.0.3"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "53e9bae58849f64dfa4f5d5ae372c8341f7305f82a3868709269343628b659a3"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"proc-macro2",
|
|
1189
|
+
"quote",
|
|
1190
|
+
"unicode-ident",
|
|
1191
|
+
]
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "target-features"
|
|
1195
|
+
version = "0.1.6"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "c1bbb9f3c5c463a01705937a24fdabc5047929ac764b2d5b9cf681c1f5041ed5"
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "target-lexicon"
|
|
1201
|
+
version = "0.13.5"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
|
|
1204
|
+
|
|
1205
|
+
[[package]]
|
|
1206
|
+
name = "thiserror"
|
|
1207
|
+
version = "1.0.69"
|
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1209
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1210
|
+
dependencies = [
|
|
1211
|
+
"thiserror-impl 1.0.69",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "thiserror"
|
|
1216
|
+
version = "2.0.20"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "ec86235f5fcc2a73650310756d2ac5b138a5780bbbdfae3eeccec992c435ba4f"
|
|
1219
|
+
dependencies = [
|
|
1220
|
+
"thiserror-impl 2.0.20",
|
|
1221
|
+
]
|
|
1222
|
+
|
|
1223
|
+
[[package]]
|
|
1224
|
+
name = "thiserror-impl"
|
|
1225
|
+
version = "1.0.69"
|
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1227
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1228
|
+
dependencies = [
|
|
1229
|
+
"proc-macro2",
|
|
1230
|
+
"quote",
|
|
1231
|
+
"syn 2.0.119",
|
|
1232
|
+
]
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "thiserror-impl"
|
|
1236
|
+
version = "2.0.20"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "bc04cd3e1236dd4a98afca4569f2deb3f120e5422a4023be2cb683f8486292af"
|
|
1239
|
+
dependencies = [
|
|
1240
|
+
"proc-macro2",
|
|
1241
|
+
"quote",
|
|
1242
|
+
"syn 3.0.3",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "tiny-keccak"
|
|
1247
|
+
version = "2.0.2"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"crunchy",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "toml_datetime"
|
|
1256
|
+
version = "1.1.1+spec-1.1.0"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "3165f65f62e28e0115a00b2ebdd37eb6f3b641855f9d636d3cd4103767159ad7"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"serde_core",
|
|
1261
|
+
]
|
|
1262
|
+
|
|
1263
|
+
[[package]]
|
|
1264
|
+
name = "toml_edit"
|
|
1265
|
+
version = "0.25.13+spec-1.1.0"
|
|
1266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1267
|
+
checksum = "6975367e4d2ef766d86af01ffad14b622fecc8d4357a998fbc4deb6e9bacaf9b"
|
|
1268
|
+
dependencies = [
|
|
1269
|
+
"indexmap",
|
|
1270
|
+
"toml_datetime",
|
|
1271
|
+
"toml_parser",
|
|
1272
|
+
"winnow",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "toml_parser"
|
|
1277
|
+
version = "1.1.3+spec-1.1.0"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "1d38ac1cf9b95face32296c0a3ede1fdc270627c9d9c02a7274dd6d960dc4d56"
|
|
1280
|
+
dependencies = [
|
|
1281
|
+
"winnow",
|
|
1282
|
+
]
|
|
1283
|
+
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "unicode-ident"
|
|
1286
|
+
version = "1.0.24"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "unicode-width"
|
|
1292
|
+
version = "0.2.2"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1295
|
+
|
|
1296
|
+
[[package]]
|
|
1297
|
+
name = "unindent"
|
|
1298
|
+
version = "0.2.4"
|
|
1299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1300
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
1301
|
+
|
|
1302
|
+
[[package]]
|
|
1303
|
+
name = "version_check"
|
|
1304
|
+
version = "0.9.5"
|
|
1305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1306
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "wasi"
|
|
1310
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1313
|
+
|
|
1314
|
+
[[package]]
|
|
1315
|
+
name = "wasip2"
|
|
1316
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1319
|
+
dependencies = [
|
|
1320
|
+
"wit-bindgen",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "wasm-bindgen"
|
|
1325
|
+
version = "0.2.127"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"cfg-if",
|
|
1330
|
+
"once_cell",
|
|
1331
|
+
"rustversion",
|
|
1332
|
+
"wasm-bindgen-macro",
|
|
1333
|
+
"wasm-bindgen-shared",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "wasm-bindgen-macro"
|
|
1338
|
+
version = "0.2.127"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
1341
|
+
dependencies = [
|
|
1342
|
+
"quote",
|
|
1343
|
+
"wasm-bindgen-macro-support",
|
|
1344
|
+
]
|
|
1345
|
+
|
|
1346
|
+
[[package]]
|
|
1347
|
+
name = "wasm-bindgen-macro-support"
|
|
1348
|
+
version = "0.2.127"
|
|
1349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1350
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
1351
|
+
dependencies = [
|
|
1352
|
+
"bumpalo",
|
|
1353
|
+
"proc-macro2",
|
|
1354
|
+
"quote",
|
|
1355
|
+
"syn 2.0.119",
|
|
1356
|
+
"wasm-bindgen-shared",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "wasm-bindgen-shared"
|
|
1361
|
+
version = "0.2.127"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"unicode-ident",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "web-sys"
|
|
1370
|
+
version = "0.3.104"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "c435338968042f4f59a557f690a253676d47ce13ceb55d70100e7facf6620a30"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"js-sys",
|
|
1375
|
+
"wasm-bindgen",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "wgpu"
|
|
1380
|
+
version = "26.0.1"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "70b6ff82bbf6e9206828e1a3178e851f8c20f1c9028e74dd3a8090741ccd5798"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"arrayvec",
|
|
1385
|
+
"bitflags",
|
|
1386
|
+
"cfg-if",
|
|
1387
|
+
"cfg_aliases",
|
|
1388
|
+
"document-features",
|
|
1389
|
+
"hashbrown 0.15.5",
|
|
1390
|
+
"log",
|
|
1391
|
+
"portable-atomic",
|
|
1392
|
+
"profiling",
|
|
1393
|
+
"raw-window-handle",
|
|
1394
|
+
"smallvec",
|
|
1395
|
+
"static_assertions",
|
|
1396
|
+
"wgpu-core",
|
|
1397
|
+
"wgpu-hal",
|
|
1398
|
+
"wgpu-types",
|
|
1399
|
+
]
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "wgpu-core"
|
|
1403
|
+
version = "26.0.1"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "d5f62f1053bd28c2268f42916f31588f81f64796e2ff91b81293515017ca8bd9"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"arrayvec",
|
|
1408
|
+
"bit-set",
|
|
1409
|
+
"bit-vec",
|
|
1410
|
+
"bitflags",
|
|
1411
|
+
"cfg_aliases",
|
|
1412
|
+
"document-features",
|
|
1413
|
+
"hashbrown 0.15.5",
|
|
1414
|
+
"indexmap",
|
|
1415
|
+
"log",
|
|
1416
|
+
"naga",
|
|
1417
|
+
"once_cell",
|
|
1418
|
+
"parking_lot",
|
|
1419
|
+
"portable-atomic",
|
|
1420
|
+
"profiling",
|
|
1421
|
+
"raw-window-handle",
|
|
1422
|
+
"rustc-hash",
|
|
1423
|
+
"smallvec",
|
|
1424
|
+
"thiserror 2.0.20",
|
|
1425
|
+
"wgpu-core-deps-apple",
|
|
1426
|
+
"wgpu-core-deps-windows-linux-android",
|
|
1427
|
+
"wgpu-hal",
|
|
1428
|
+
"wgpu-types",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "wgpu-core-deps-apple"
|
|
1433
|
+
version = "26.0.0"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "18ae5fbde6a4cbebae38358aa73fcd6e0f15c6144b67ef5dc91ded0db125dbdf"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"wgpu-hal",
|
|
1438
|
+
]
|
|
1439
|
+
|
|
1440
|
+
[[package]]
|
|
1441
|
+
name = "wgpu-core-deps-windows-linux-android"
|
|
1442
|
+
version = "26.0.0"
|
|
1443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1444
|
+
checksum = "720a5cb9d12b3d337c15ff0e24d3e97ed11490ff3f7506e7f3d98c68fa5d6f14"
|
|
1445
|
+
dependencies = [
|
|
1446
|
+
"wgpu-hal",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "wgpu-hal"
|
|
1451
|
+
version = "26.0.6"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "a8d0e67224cc7305b3b4eb2cc57ca4c4c3afc665c1d1bee162ea806e19c47bdd"
|
|
1454
|
+
dependencies = [
|
|
1455
|
+
"android_system_properties",
|
|
1456
|
+
"arrayvec",
|
|
1457
|
+
"ash",
|
|
1458
|
+
"bit-set",
|
|
1459
|
+
"bitflags",
|
|
1460
|
+
"block",
|
|
1461
|
+
"bytemuck",
|
|
1462
|
+
"cfg-if",
|
|
1463
|
+
"cfg_aliases",
|
|
1464
|
+
"core-graphics-types",
|
|
1465
|
+
"gpu-alloc",
|
|
1466
|
+
"gpu-allocator",
|
|
1467
|
+
"gpu-descriptor",
|
|
1468
|
+
"hashbrown 0.15.5",
|
|
1469
|
+
"libc",
|
|
1470
|
+
"libloading",
|
|
1471
|
+
"log",
|
|
1472
|
+
"metal",
|
|
1473
|
+
"naga",
|
|
1474
|
+
"objc",
|
|
1475
|
+
"ordered-float",
|
|
1476
|
+
"parking_lot",
|
|
1477
|
+
"portable-atomic",
|
|
1478
|
+
"portable-atomic-util",
|
|
1479
|
+
"profiling",
|
|
1480
|
+
"range-alloc",
|
|
1481
|
+
"raw-window-handle",
|
|
1482
|
+
"renderdoc-sys",
|
|
1483
|
+
"smallvec",
|
|
1484
|
+
"thiserror 2.0.20",
|
|
1485
|
+
"wgpu-types",
|
|
1486
|
+
"windows",
|
|
1487
|
+
"windows-core 0.58.0",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "wgpu-types"
|
|
1492
|
+
version = "26.0.0"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "eca7a8d8af57c18f57d393601a1fb159ace8b2328f1b6b5f80893f7d672c9ae2"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"bitflags",
|
|
1497
|
+
"bytemuck",
|
|
1498
|
+
"js-sys",
|
|
1499
|
+
"log",
|
|
1500
|
+
"thiserror 2.0.20",
|
|
1501
|
+
"web-sys",
|
|
1502
|
+
]
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "windows"
|
|
1506
|
+
version = "0.58.0"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
1509
|
+
dependencies = [
|
|
1510
|
+
"windows-core 0.58.0",
|
|
1511
|
+
"windows-targets",
|
|
1512
|
+
]
|
|
1513
|
+
|
|
1514
|
+
[[package]]
|
|
1515
|
+
name = "windows-core"
|
|
1516
|
+
version = "0.58.0"
|
|
1517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1518
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
1519
|
+
dependencies = [
|
|
1520
|
+
"windows-implement 0.58.0",
|
|
1521
|
+
"windows-interface 0.58.0",
|
|
1522
|
+
"windows-result 0.2.0",
|
|
1523
|
+
"windows-strings 0.1.0",
|
|
1524
|
+
"windows-targets",
|
|
1525
|
+
]
|
|
1526
|
+
|
|
1527
|
+
[[package]]
|
|
1528
|
+
name = "windows-core"
|
|
1529
|
+
version = "0.62.2"
|
|
1530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1531
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
1532
|
+
dependencies = [
|
|
1533
|
+
"windows-implement 0.60.2",
|
|
1534
|
+
"windows-interface 0.59.3",
|
|
1535
|
+
"windows-link",
|
|
1536
|
+
"windows-result 0.4.1",
|
|
1537
|
+
"windows-strings 0.5.1",
|
|
1538
|
+
]
|
|
1539
|
+
|
|
1540
|
+
[[package]]
|
|
1541
|
+
name = "windows-implement"
|
|
1542
|
+
version = "0.58.0"
|
|
1543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1544
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
1545
|
+
dependencies = [
|
|
1546
|
+
"proc-macro2",
|
|
1547
|
+
"quote",
|
|
1548
|
+
"syn 2.0.119",
|
|
1549
|
+
]
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "windows-implement"
|
|
1553
|
+
version = "0.60.2"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
1556
|
+
dependencies = [
|
|
1557
|
+
"proc-macro2",
|
|
1558
|
+
"quote",
|
|
1559
|
+
"syn 2.0.119",
|
|
1560
|
+
]
|
|
1561
|
+
|
|
1562
|
+
[[package]]
|
|
1563
|
+
name = "windows-interface"
|
|
1564
|
+
version = "0.58.0"
|
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
1567
|
+
dependencies = [
|
|
1568
|
+
"proc-macro2",
|
|
1569
|
+
"quote",
|
|
1570
|
+
"syn 2.0.119",
|
|
1571
|
+
]
|
|
1572
|
+
|
|
1573
|
+
[[package]]
|
|
1574
|
+
name = "windows-interface"
|
|
1575
|
+
version = "0.59.3"
|
|
1576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1577
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
1578
|
+
dependencies = [
|
|
1579
|
+
"proc-macro2",
|
|
1580
|
+
"quote",
|
|
1581
|
+
"syn 2.0.119",
|
|
1582
|
+
]
|
|
1583
|
+
|
|
1584
|
+
[[package]]
|
|
1585
|
+
name = "windows-link"
|
|
1586
|
+
version = "0.2.1"
|
|
1587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1588
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "windows-result"
|
|
1592
|
+
version = "0.2.0"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"windows-targets",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "windows-result"
|
|
1601
|
+
version = "0.4.1"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"windows-link",
|
|
1606
|
+
]
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "windows-strings"
|
|
1610
|
+
version = "0.1.0"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
1613
|
+
dependencies = [
|
|
1614
|
+
"windows-result 0.2.0",
|
|
1615
|
+
"windows-targets",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "windows-strings"
|
|
1620
|
+
version = "0.5.1"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"windows-link",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "windows-targets"
|
|
1629
|
+
version = "0.52.6"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"windows_aarch64_gnullvm",
|
|
1634
|
+
"windows_aarch64_msvc",
|
|
1635
|
+
"windows_i686_gnu",
|
|
1636
|
+
"windows_i686_gnullvm",
|
|
1637
|
+
"windows_i686_msvc",
|
|
1638
|
+
"windows_x86_64_gnu",
|
|
1639
|
+
"windows_x86_64_gnullvm",
|
|
1640
|
+
"windows_x86_64_msvc",
|
|
1641
|
+
]
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "windows_aarch64_gnullvm"
|
|
1645
|
+
version = "0.52.6"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "windows_aarch64_msvc"
|
|
1651
|
+
version = "0.52.6"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "windows_i686_gnu"
|
|
1657
|
+
version = "0.52.6"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "windows_i686_gnullvm"
|
|
1663
|
+
version = "0.52.6"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "windows_i686_msvc"
|
|
1669
|
+
version = "0.52.6"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "windows_x86_64_gnu"
|
|
1675
|
+
version = "0.52.6"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "windows_x86_64_gnullvm"
|
|
1681
|
+
version = "0.52.6"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "windows_x86_64_msvc"
|
|
1687
|
+
version = "0.52.6"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "winnow"
|
|
1693
|
+
version = "1.0.4"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "23b97319f7b8343df12cc98938e5c3eb436064524c8d2b4e30a1d3a36eecdf81"
|
|
1696
|
+
dependencies = [
|
|
1697
|
+
"memchr",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "wit-bindgen"
|
|
1702
|
+
version = "0.57.1"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "zerocopy"
|
|
1708
|
+
version = "0.8.56"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1711
|
+
dependencies = [
|
|
1712
|
+
"zerocopy-derive",
|
|
1713
|
+
]
|
|
1714
|
+
|
|
1715
|
+
[[package]]
|
|
1716
|
+
name = "zerocopy-derive"
|
|
1717
|
+
version = "0.8.56"
|
|
1718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1719
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1720
|
+
dependencies = [
|
|
1721
|
+
"proc-macro2",
|
|
1722
|
+
"quote",
|
|
1723
|
+
"syn 2.0.119",
|
|
1724
|
+
]
|