rrtrace 0.1.0
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.
- checksums.yaml +7 -0
- data/.github/workflows/release.yml +137 -0
- data/Cargo.lock +2477 -0
- data/Cargo.toml +23 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/Rakefile +16 -0
- data/ext/rrtrace/extconf.rb +16 -0
- data/ext/rrtrace/process_manager_posix.h +25 -0
- data/ext/rrtrace/process_manager_windows.h +40 -0
- data/ext/rrtrace/rrtrace.c +192 -0
- data/ext/rrtrace/rrtrace.h +8 -0
- data/ext/rrtrace/rrtrace_event.h +111 -0
- data/ext/rrtrace/rrtrace_event_ringbuffer.h +45 -0
- data/ext/rrtrace/rust_build_helper.rb +41 -0
- data/ext/rrtrace/shared_memory_posix.h +26 -0
- data/ext/rrtrace/shared_memory_windows.h +34 -0
- data/lib/rrtrace/version.rb +5 -0
- data/lib/rrtrace.rb +12 -0
- data/libexec/rrtrace +0 -0
- data/mise.toml +8 -0
- data/sig/rrtrace.rbs +4 -0
- data/src/main.rs +197 -0
- data/src/renderer/vertex_arena.rs +305 -0
- data/src/renderer.rs +751 -0
- data/src/ringbuffer.rs +134 -0
- data/src/shader.wgsl +115 -0
- data/src/shm_unix.rs +47 -0
- data/src/shm_windows.rs +44 -0
- data/src/trace_state.rs +275 -0
- metadata +86 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,2477 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ab_glyph"
|
|
7
|
+
version = "0.2.32"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "01c0457472c38ea5bd1c3b5ada5e368271cb550be7a4ca4a0b4634e9913f6cc2"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"ab_glyph_rasterizer",
|
|
12
|
+
"owned_ttf_parser",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[[package]]
|
|
16
|
+
name = "ab_glyph_rasterizer"
|
|
17
|
+
version = "0.1.10"
|
|
18
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
+
checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
|
|
20
|
+
|
|
21
|
+
[[package]]
|
|
22
|
+
name = "ahash"
|
|
23
|
+
version = "0.8.12"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"cfg-if",
|
|
28
|
+
"getrandom",
|
|
29
|
+
"once_cell",
|
|
30
|
+
"version_check",
|
|
31
|
+
"zerocopy",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[[package]]
|
|
35
|
+
name = "allocator-api2"
|
|
36
|
+
version = "0.2.21"
|
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
38
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
39
|
+
|
|
40
|
+
[[package]]
|
|
41
|
+
name = "android-activity"
|
|
42
|
+
version = "0.6.0"
|
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
44
|
+
checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
|
|
45
|
+
dependencies = [
|
|
46
|
+
"android-properties",
|
|
47
|
+
"bitflags 2.10.0",
|
|
48
|
+
"cc",
|
|
49
|
+
"cesu8",
|
|
50
|
+
"jni",
|
|
51
|
+
"jni-sys",
|
|
52
|
+
"libc",
|
|
53
|
+
"log",
|
|
54
|
+
"ndk",
|
|
55
|
+
"ndk-context",
|
|
56
|
+
"ndk-sys",
|
|
57
|
+
"num_enum",
|
|
58
|
+
"thiserror 1.0.69",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "android-properties"
|
|
63
|
+
version = "0.2.2"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|
66
|
+
|
|
67
|
+
[[package]]
|
|
68
|
+
name = "android_system_properties"
|
|
69
|
+
version = "0.1.5"
|
|
70
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
71
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
72
|
+
dependencies = [
|
|
73
|
+
"libc",
|
|
74
|
+
]
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "arrayref"
|
|
78
|
+
version = "0.3.9"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
81
|
+
|
|
82
|
+
[[package]]
|
|
83
|
+
name = "arrayvec"
|
|
84
|
+
version = "0.7.6"
|
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
86
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "as-raw-xcb-connection"
|
|
90
|
+
version = "1.0.1"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "ash"
|
|
96
|
+
version = "0.38.0+1.3.281"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"libloading",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "atomic-waker"
|
|
105
|
+
version = "1.1.2"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
108
|
+
|
|
109
|
+
[[package]]
|
|
110
|
+
name = "autocfg"
|
|
111
|
+
version = "1.5.0"
|
|
112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
113
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
114
|
+
|
|
115
|
+
[[package]]
|
|
116
|
+
name = "bit-set"
|
|
117
|
+
version = "0.8.0"
|
|
118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
119
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
120
|
+
dependencies = [
|
|
121
|
+
"bit-vec",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "bit-vec"
|
|
126
|
+
version = "0.8.0"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "bitflags"
|
|
132
|
+
version = "1.3.2"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bitflags"
|
|
138
|
+
version = "2.10.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "block"
|
|
144
|
+
version = "0.1.6"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "block2"
|
|
150
|
+
version = "0.5.1"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"objc2",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "bumpalo"
|
|
159
|
+
version = "3.19.1"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "bytemuck"
|
|
165
|
+
version = "1.24.0"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"bytemuck_derive",
|
|
170
|
+
]
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "bytemuck_derive"
|
|
174
|
+
version = "1.10.2"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
177
|
+
dependencies = [
|
|
178
|
+
"proc-macro2",
|
|
179
|
+
"quote",
|
|
180
|
+
"syn",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "bytes"
|
|
185
|
+
version = "1.11.0"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "calloop"
|
|
191
|
+
version = "0.13.0"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"bitflags 2.10.0",
|
|
196
|
+
"log",
|
|
197
|
+
"polling",
|
|
198
|
+
"rustix 0.38.44",
|
|
199
|
+
"slab",
|
|
200
|
+
"thiserror 1.0.69",
|
|
201
|
+
]
|
|
202
|
+
|
|
203
|
+
[[package]]
|
|
204
|
+
name = "calloop-wayland-source"
|
|
205
|
+
version = "0.3.0"
|
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
+
checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
|
|
208
|
+
dependencies = [
|
|
209
|
+
"calloop",
|
|
210
|
+
"rustix 0.38.44",
|
|
211
|
+
"wayland-backend",
|
|
212
|
+
"wayland-client",
|
|
213
|
+
]
|
|
214
|
+
|
|
215
|
+
[[package]]
|
|
216
|
+
name = "cc"
|
|
217
|
+
version = "1.2.52"
|
|
218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
219
|
+
checksum = "cd4932aefd12402b36c60956a4fe0035421f544799057659ff86f923657aada3"
|
|
220
|
+
dependencies = [
|
|
221
|
+
"find-msvc-tools",
|
|
222
|
+
"jobserver",
|
|
223
|
+
"libc",
|
|
224
|
+
"shlex",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "cesu8"
|
|
229
|
+
version = "1.1.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "cfg-if"
|
|
235
|
+
version = "1.0.4"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "cfg_aliases"
|
|
241
|
+
version = "0.2.1"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "codespan-reporting"
|
|
247
|
+
version = "0.12.0"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"serde",
|
|
252
|
+
"termcolor",
|
|
253
|
+
"unicode-width",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "combine"
|
|
258
|
+
version = "4.6.7"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"bytes",
|
|
263
|
+
"memchr",
|
|
264
|
+
]
|
|
265
|
+
|
|
266
|
+
[[package]]
|
|
267
|
+
name = "concurrent-queue"
|
|
268
|
+
version = "2.5.0"
|
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"crossbeam-utils",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "core-foundation"
|
|
277
|
+
version = "0.9.4"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"core-foundation-sys",
|
|
282
|
+
"libc",
|
|
283
|
+
]
|
|
284
|
+
|
|
285
|
+
[[package]]
|
|
286
|
+
name = "core-foundation"
|
|
287
|
+
version = "0.10.1"
|
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
289
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"core-foundation-sys",
|
|
292
|
+
"libc",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "core-foundation-sys"
|
|
297
|
+
version = "0.8.7"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "core-graphics"
|
|
303
|
+
version = "0.23.2"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"bitflags 1.3.2",
|
|
308
|
+
"core-foundation 0.9.4",
|
|
309
|
+
"core-graphics-types 0.1.3",
|
|
310
|
+
"foreign-types",
|
|
311
|
+
"libc",
|
|
312
|
+
]
|
|
313
|
+
|
|
314
|
+
[[package]]
|
|
315
|
+
name = "core-graphics-types"
|
|
316
|
+
version = "0.1.3"
|
|
317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
318
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"bitflags 1.3.2",
|
|
321
|
+
"core-foundation 0.9.4",
|
|
322
|
+
"libc",
|
|
323
|
+
]
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "core-graphics-types"
|
|
327
|
+
version = "0.2.0"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"bitflags 2.10.0",
|
|
332
|
+
"core-foundation 0.10.1",
|
|
333
|
+
"libc",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "crossbeam-deque"
|
|
338
|
+
version = "0.8.6"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"crossbeam-epoch",
|
|
343
|
+
"crossbeam-utils",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "crossbeam-epoch"
|
|
348
|
+
version = "0.9.18"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
351
|
+
dependencies = [
|
|
352
|
+
"crossbeam-utils",
|
|
353
|
+
]
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "crossbeam-queue"
|
|
357
|
+
version = "0.3.12"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"crossbeam-utils",
|
|
362
|
+
]
|
|
363
|
+
|
|
364
|
+
[[package]]
|
|
365
|
+
name = "crossbeam-utils"
|
|
366
|
+
version = "0.8.21"
|
|
367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
368
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "crunchy"
|
|
372
|
+
version = "0.2.4"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "cursor-icon"
|
|
378
|
+
version = "1.2.0"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "dispatch"
|
|
384
|
+
version = "0.2.0"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "dlib"
|
|
390
|
+
version = "0.5.2"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"libloading",
|
|
395
|
+
]
|
|
396
|
+
|
|
397
|
+
[[package]]
|
|
398
|
+
name = "document-features"
|
|
399
|
+
version = "0.2.12"
|
|
400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
402
|
+
dependencies = [
|
|
403
|
+
"litrs",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "downcast-rs"
|
|
408
|
+
version = "1.2.1"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "dpi"
|
|
414
|
+
version = "0.1.2"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "equivalent"
|
|
420
|
+
version = "1.0.2"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "errno"
|
|
426
|
+
version = "0.3.14"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
429
|
+
dependencies = [
|
|
430
|
+
"libc",
|
|
431
|
+
"windows-sys 0.61.2",
|
|
432
|
+
]
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "find-msvc-tools"
|
|
436
|
+
version = "0.1.7"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "f449e6c6c08c865631d4890cfacf252b3d396c9bcc83adb6623cdb02a8336c41"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "foldhash"
|
|
442
|
+
version = "0.1.5"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "foldhash"
|
|
448
|
+
version = "0.2.0"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
451
|
+
|
|
452
|
+
[[package]]
|
|
453
|
+
name = "foreign-types"
|
|
454
|
+
version = "0.5.0"
|
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
457
|
+
dependencies = [
|
|
458
|
+
"foreign-types-macros",
|
|
459
|
+
"foreign-types-shared",
|
|
460
|
+
]
|
|
461
|
+
|
|
462
|
+
[[package]]
|
|
463
|
+
name = "foreign-types-macros"
|
|
464
|
+
version = "0.2.3"
|
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
466
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
467
|
+
dependencies = [
|
|
468
|
+
"proc-macro2",
|
|
469
|
+
"quote",
|
|
470
|
+
"syn",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "foreign-types-shared"
|
|
475
|
+
version = "0.3.1"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "gethostname"
|
|
481
|
+
version = "1.1.0"
|
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
+
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
484
|
+
dependencies = [
|
|
485
|
+
"rustix 1.1.3",
|
|
486
|
+
"windows-link",
|
|
487
|
+
]
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "getrandom"
|
|
491
|
+
version = "0.3.4"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"cfg-if",
|
|
496
|
+
"libc",
|
|
497
|
+
"r-efi",
|
|
498
|
+
"wasip2",
|
|
499
|
+
]
|
|
500
|
+
|
|
501
|
+
[[package]]
|
|
502
|
+
name = "gl_generator"
|
|
503
|
+
version = "0.14.0"
|
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
505
|
+
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
|
506
|
+
dependencies = [
|
|
507
|
+
"khronos_api",
|
|
508
|
+
"log",
|
|
509
|
+
"xml-rs",
|
|
510
|
+
]
|
|
511
|
+
|
|
512
|
+
[[package]]
|
|
513
|
+
name = "glam"
|
|
514
|
+
version = "0.30.10"
|
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
516
|
+
checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
|
|
517
|
+
|
|
518
|
+
[[package]]
|
|
519
|
+
name = "glow"
|
|
520
|
+
version = "0.16.0"
|
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
+
checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08"
|
|
523
|
+
dependencies = [
|
|
524
|
+
"js-sys",
|
|
525
|
+
"slotmap",
|
|
526
|
+
"wasm-bindgen",
|
|
527
|
+
"web-sys",
|
|
528
|
+
]
|
|
529
|
+
|
|
530
|
+
[[package]]
|
|
531
|
+
name = "glutin_wgl_sys"
|
|
532
|
+
version = "0.6.1"
|
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
534
|
+
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
|
|
535
|
+
dependencies = [
|
|
536
|
+
"gl_generator",
|
|
537
|
+
]
|
|
538
|
+
|
|
539
|
+
[[package]]
|
|
540
|
+
name = "gpu-allocator"
|
|
541
|
+
version = "0.28.0"
|
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
+
checksum = "51255ea7cfaadb6c5f1528d43e92a82acb2b96c43365989a28b2d44ee38f8795"
|
|
544
|
+
dependencies = [
|
|
545
|
+
"ash",
|
|
546
|
+
"hashbrown 0.16.1",
|
|
547
|
+
"log",
|
|
548
|
+
"presser",
|
|
549
|
+
"thiserror 2.0.17",
|
|
550
|
+
"windows",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "gpu-descriptor"
|
|
555
|
+
version = "0.3.2"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"bitflags 2.10.0",
|
|
560
|
+
"gpu-descriptor-types",
|
|
561
|
+
"hashbrown 0.15.5",
|
|
562
|
+
]
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "gpu-descriptor-types"
|
|
566
|
+
version = "0.2.0"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"bitflags 2.10.0",
|
|
571
|
+
]
|
|
572
|
+
|
|
573
|
+
[[package]]
|
|
574
|
+
name = "half"
|
|
575
|
+
version = "2.7.1"
|
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
578
|
+
dependencies = [
|
|
579
|
+
"cfg-if",
|
|
580
|
+
"crunchy",
|
|
581
|
+
"num-traits",
|
|
582
|
+
"zerocopy",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "hashbrown"
|
|
587
|
+
version = "0.15.5"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"foldhash 0.1.5",
|
|
592
|
+
]
|
|
593
|
+
|
|
594
|
+
[[package]]
|
|
595
|
+
name = "hashbrown"
|
|
596
|
+
version = "0.16.1"
|
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
598
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
599
|
+
dependencies = [
|
|
600
|
+
"allocator-api2",
|
|
601
|
+
"equivalent",
|
|
602
|
+
"foldhash 0.2.0",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "hermit-abi"
|
|
607
|
+
version = "0.5.2"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "hexf-parse"
|
|
613
|
+
version = "0.2.1"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "indexmap"
|
|
619
|
+
version = "2.13.0"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
622
|
+
dependencies = [
|
|
623
|
+
"equivalent",
|
|
624
|
+
"hashbrown 0.16.1",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "jni"
|
|
629
|
+
version = "0.21.1"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"cesu8",
|
|
634
|
+
"cfg-if",
|
|
635
|
+
"combine",
|
|
636
|
+
"jni-sys",
|
|
637
|
+
"log",
|
|
638
|
+
"thiserror 1.0.69",
|
|
639
|
+
"walkdir",
|
|
640
|
+
"windows-sys 0.45.0",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "jni-sys"
|
|
645
|
+
version = "0.3.0"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
648
|
+
|
|
649
|
+
[[package]]
|
|
650
|
+
name = "jobserver"
|
|
651
|
+
version = "0.1.34"
|
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
653
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
654
|
+
dependencies = [
|
|
655
|
+
"getrandom",
|
|
656
|
+
"libc",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "js-sys"
|
|
661
|
+
version = "0.3.83"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"once_cell",
|
|
666
|
+
"wasm-bindgen",
|
|
667
|
+
]
|
|
668
|
+
|
|
669
|
+
[[package]]
|
|
670
|
+
name = "khronos-egl"
|
|
671
|
+
version = "6.0.0"
|
|
672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
+
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
674
|
+
dependencies = [
|
|
675
|
+
"libc",
|
|
676
|
+
"libloading",
|
|
677
|
+
"pkg-config",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "khronos_api"
|
|
682
|
+
version = "3.1.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "libc"
|
|
688
|
+
version = "0.2.180"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "libloading"
|
|
694
|
+
version = "0.8.9"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
697
|
+
dependencies = [
|
|
698
|
+
"cfg-if",
|
|
699
|
+
"windows-link",
|
|
700
|
+
]
|
|
701
|
+
|
|
702
|
+
[[package]]
|
|
703
|
+
name = "libm"
|
|
704
|
+
version = "0.2.15"
|
|
705
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
706
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "libredox"
|
|
710
|
+
version = "0.1.12"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"bitflags 2.10.0",
|
|
715
|
+
"libc",
|
|
716
|
+
"redox_syscall 0.7.0",
|
|
717
|
+
]
|
|
718
|
+
|
|
719
|
+
[[package]]
|
|
720
|
+
name = "linux-raw-sys"
|
|
721
|
+
version = "0.4.15"
|
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
723
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "linux-raw-sys"
|
|
727
|
+
version = "0.11.0"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "litrs"
|
|
733
|
+
version = "1.0.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "lock_api"
|
|
739
|
+
version = "0.4.14"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"scopeguard",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "log"
|
|
748
|
+
version = "0.4.29"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "malloc_buf"
|
|
754
|
+
version = "0.0.6"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"libc",
|
|
759
|
+
]
|
|
760
|
+
|
|
761
|
+
[[package]]
|
|
762
|
+
name = "memchr"
|
|
763
|
+
version = "2.7.6"
|
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "memmap2"
|
|
769
|
+
version = "0.9.9"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"libc",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "metal"
|
|
778
|
+
version = "0.33.0"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "c7047791b5bc903b8cd963014b355f71dc9864a9a0b727057676c1dcae5cbc15"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"bitflags 2.10.0",
|
|
783
|
+
"block",
|
|
784
|
+
"core-graphics-types 0.2.0",
|
|
785
|
+
"foreign-types",
|
|
786
|
+
"log",
|
|
787
|
+
"objc",
|
|
788
|
+
"paste",
|
|
789
|
+
]
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "naga"
|
|
793
|
+
version = "28.0.0"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "618f667225063219ddfc61251087db8a9aec3c3f0950c916b614e403486f1135"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"arrayvec",
|
|
798
|
+
"bit-set",
|
|
799
|
+
"bitflags 2.10.0",
|
|
800
|
+
"cfg-if",
|
|
801
|
+
"cfg_aliases",
|
|
802
|
+
"codespan-reporting",
|
|
803
|
+
"half",
|
|
804
|
+
"hashbrown 0.16.1",
|
|
805
|
+
"hexf-parse",
|
|
806
|
+
"indexmap",
|
|
807
|
+
"libm",
|
|
808
|
+
"log",
|
|
809
|
+
"num-traits",
|
|
810
|
+
"once_cell",
|
|
811
|
+
"rustc-hash",
|
|
812
|
+
"spirv",
|
|
813
|
+
"thiserror 2.0.17",
|
|
814
|
+
"unicode-ident",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "ndk"
|
|
819
|
+
version = "0.9.0"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
|
|
822
|
+
dependencies = [
|
|
823
|
+
"bitflags 2.10.0",
|
|
824
|
+
"jni-sys",
|
|
825
|
+
"log",
|
|
826
|
+
"ndk-sys",
|
|
827
|
+
"num_enum",
|
|
828
|
+
"raw-window-handle",
|
|
829
|
+
"thiserror 1.0.69",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "ndk-context"
|
|
834
|
+
version = "0.1.1"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "ndk-sys"
|
|
840
|
+
version = "0.6.0+11769913"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
843
|
+
dependencies = [
|
|
844
|
+
"jni-sys",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "num-traits"
|
|
849
|
+
version = "0.2.19"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"autocfg",
|
|
854
|
+
"libm",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "num_enum"
|
|
859
|
+
version = "0.7.5"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"num_enum_derive",
|
|
864
|
+
"rustversion",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "num_enum_derive"
|
|
869
|
+
version = "0.7.5"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"proc-macro-crate",
|
|
874
|
+
"proc-macro2",
|
|
875
|
+
"quote",
|
|
876
|
+
"syn",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "objc"
|
|
881
|
+
version = "0.2.7"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"malloc_buf",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "objc-sys"
|
|
890
|
+
version = "0.3.5"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "objc2"
|
|
896
|
+
version = "0.5.2"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
|
|
899
|
+
dependencies = [
|
|
900
|
+
"objc-sys",
|
|
901
|
+
"objc2-encode",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "objc2-app-kit"
|
|
906
|
+
version = "0.2.2"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"bitflags 2.10.0",
|
|
911
|
+
"block2",
|
|
912
|
+
"libc",
|
|
913
|
+
"objc2",
|
|
914
|
+
"objc2-core-data",
|
|
915
|
+
"objc2-core-image",
|
|
916
|
+
"objc2-foundation",
|
|
917
|
+
"objc2-quartz-core",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "objc2-cloud-kit"
|
|
922
|
+
version = "0.2.2"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"bitflags 2.10.0",
|
|
927
|
+
"block2",
|
|
928
|
+
"objc2",
|
|
929
|
+
"objc2-core-location",
|
|
930
|
+
"objc2-foundation",
|
|
931
|
+
]
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "objc2-contacts"
|
|
935
|
+
version = "0.2.2"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"block2",
|
|
940
|
+
"objc2",
|
|
941
|
+
"objc2-foundation",
|
|
942
|
+
]
|
|
943
|
+
|
|
944
|
+
[[package]]
|
|
945
|
+
name = "objc2-core-data"
|
|
946
|
+
version = "0.2.2"
|
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
948
|
+
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
|
|
949
|
+
dependencies = [
|
|
950
|
+
"bitflags 2.10.0",
|
|
951
|
+
"block2",
|
|
952
|
+
"objc2",
|
|
953
|
+
"objc2-foundation",
|
|
954
|
+
]
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "objc2-core-image"
|
|
958
|
+
version = "0.2.2"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
|
|
961
|
+
dependencies = [
|
|
962
|
+
"block2",
|
|
963
|
+
"objc2",
|
|
964
|
+
"objc2-foundation",
|
|
965
|
+
"objc2-metal",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "objc2-core-location"
|
|
970
|
+
version = "0.2.2"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"block2",
|
|
975
|
+
"objc2",
|
|
976
|
+
"objc2-contacts",
|
|
977
|
+
"objc2-foundation",
|
|
978
|
+
]
|
|
979
|
+
|
|
980
|
+
[[package]]
|
|
981
|
+
name = "objc2-encode"
|
|
982
|
+
version = "4.1.0"
|
|
983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
984
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
985
|
+
|
|
986
|
+
[[package]]
|
|
987
|
+
name = "objc2-foundation"
|
|
988
|
+
version = "0.2.2"
|
|
989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
990
|
+
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
|
|
991
|
+
dependencies = [
|
|
992
|
+
"bitflags 2.10.0",
|
|
993
|
+
"block2",
|
|
994
|
+
"dispatch",
|
|
995
|
+
"libc",
|
|
996
|
+
"objc2",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "objc2-link-presentation"
|
|
1001
|
+
version = "0.2.2"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"block2",
|
|
1006
|
+
"objc2",
|
|
1007
|
+
"objc2-app-kit",
|
|
1008
|
+
"objc2-foundation",
|
|
1009
|
+
]
|
|
1010
|
+
|
|
1011
|
+
[[package]]
|
|
1012
|
+
name = "objc2-metal"
|
|
1013
|
+
version = "0.2.2"
|
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
+
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
|
|
1016
|
+
dependencies = [
|
|
1017
|
+
"bitflags 2.10.0",
|
|
1018
|
+
"block2",
|
|
1019
|
+
"objc2",
|
|
1020
|
+
"objc2-foundation",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "objc2-quartz-core"
|
|
1025
|
+
version = "0.2.2"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"bitflags 2.10.0",
|
|
1030
|
+
"block2",
|
|
1031
|
+
"objc2",
|
|
1032
|
+
"objc2-foundation",
|
|
1033
|
+
"objc2-metal",
|
|
1034
|
+
]
|
|
1035
|
+
|
|
1036
|
+
[[package]]
|
|
1037
|
+
name = "objc2-symbols"
|
|
1038
|
+
version = "0.2.2"
|
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
+
checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
|
|
1041
|
+
dependencies = [
|
|
1042
|
+
"objc2",
|
|
1043
|
+
"objc2-foundation",
|
|
1044
|
+
]
|
|
1045
|
+
|
|
1046
|
+
[[package]]
|
|
1047
|
+
name = "objc2-ui-kit"
|
|
1048
|
+
version = "0.2.2"
|
|
1049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1050
|
+
checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
|
|
1051
|
+
dependencies = [
|
|
1052
|
+
"bitflags 2.10.0",
|
|
1053
|
+
"block2",
|
|
1054
|
+
"objc2",
|
|
1055
|
+
"objc2-cloud-kit",
|
|
1056
|
+
"objc2-core-data",
|
|
1057
|
+
"objc2-core-image",
|
|
1058
|
+
"objc2-core-location",
|
|
1059
|
+
"objc2-foundation",
|
|
1060
|
+
"objc2-link-presentation",
|
|
1061
|
+
"objc2-quartz-core",
|
|
1062
|
+
"objc2-symbols",
|
|
1063
|
+
"objc2-uniform-type-identifiers",
|
|
1064
|
+
"objc2-user-notifications",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "objc2-uniform-type-identifiers"
|
|
1069
|
+
version = "0.2.2"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
|
|
1072
|
+
dependencies = [
|
|
1073
|
+
"block2",
|
|
1074
|
+
"objc2",
|
|
1075
|
+
"objc2-foundation",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "objc2-user-notifications"
|
|
1080
|
+
version = "0.2.2"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
|
|
1083
|
+
dependencies = [
|
|
1084
|
+
"bitflags 2.10.0",
|
|
1085
|
+
"block2",
|
|
1086
|
+
"objc2",
|
|
1087
|
+
"objc2-core-location",
|
|
1088
|
+
"objc2-foundation",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "once_cell"
|
|
1093
|
+
version = "1.21.3"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "orbclient"
|
|
1099
|
+
version = "0.3.50"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "52ad2c6bae700b7aa5d1cc30c59bdd3a1c180b09dbaea51e2ae2b8e1cf211fdd"
|
|
1102
|
+
dependencies = [
|
|
1103
|
+
"libc",
|
|
1104
|
+
"libredox",
|
|
1105
|
+
]
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "ordered-float"
|
|
1109
|
+
version = "5.1.0"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
|
|
1112
|
+
dependencies = [
|
|
1113
|
+
"num-traits",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "owned_ttf_parser"
|
|
1118
|
+
version = "0.25.1"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"ttf-parser",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "parking_lot"
|
|
1127
|
+
version = "0.12.5"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"lock_api",
|
|
1132
|
+
"parking_lot_core",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "parking_lot_core"
|
|
1137
|
+
version = "0.9.12"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1140
|
+
dependencies = [
|
|
1141
|
+
"cfg-if",
|
|
1142
|
+
"libc",
|
|
1143
|
+
"redox_syscall 0.5.18",
|
|
1144
|
+
"smallvec",
|
|
1145
|
+
"windows-link",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "paste"
|
|
1150
|
+
version = "1.0.15"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "percent-encoding"
|
|
1156
|
+
version = "2.3.2"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "pin-project"
|
|
1162
|
+
version = "1.1.10"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"pin-project-internal",
|
|
1167
|
+
]
|
|
1168
|
+
|
|
1169
|
+
[[package]]
|
|
1170
|
+
name = "pin-project-internal"
|
|
1171
|
+
version = "1.1.10"
|
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
1174
|
+
dependencies = [
|
|
1175
|
+
"proc-macro2",
|
|
1176
|
+
"quote",
|
|
1177
|
+
"syn",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "pin-project-lite"
|
|
1182
|
+
version = "0.2.16"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "pkg-config"
|
|
1188
|
+
version = "0.3.32"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "polling"
|
|
1194
|
+
version = "3.11.0"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"cfg-if",
|
|
1199
|
+
"concurrent-queue",
|
|
1200
|
+
"hermit-abi",
|
|
1201
|
+
"pin-project-lite",
|
|
1202
|
+
"rustix 1.1.3",
|
|
1203
|
+
"windows-sys 0.61.2",
|
|
1204
|
+
]
|
|
1205
|
+
|
|
1206
|
+
[[package]]
|
|
1207
|
+
name = "pollster"
|
|
1208
|
+
version = "0.4.0"
|
|
1209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1210
|
+
checksum = "2f3a9f18d041e6d0e102a0a46750538147e5e8992d3b4873aaafee2520b00ce3"
|
|
1211
|
+
|
|
1212
|
+
[[package]]
|
|
1213
|
+
name = "portable-atomic"
|
|
1214
|
+
version = "1.13.0"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "portable-atomic-util"
|
|
1220
|
+
version = "0.2.4"
|
|
1221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
1223
|
+
dependencies = [
|
|
1224
|
+
"portable-atomic",
|
|
1225
|
+
]
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "presser"
|
|
1229
|
+
version = "0.3.1"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "proc-macro-crate"
|
|
1235
|
+
version = "3.4.0"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"toml_edit",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "proc-macro2"
|
|
1244
|
+
version = "1.0.105"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"unicode-ident",
|
|
1249
|
+
]
|
|
1250
|
+
|
|
1251
|
+
[[package]]
|
|
1252
|
+
name = "profiling"
|
|
1253
|
+
version = "1.0.17"
|
|
1254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1255
|
+
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
|
|
1256
|
+
|
|
1257
|
+
[[package]]
|
|
1258
|
+
name = "quick-xml"
|
|
1259
|
+
version = "0.38.4"
|
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1261
|
+
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
1262
|
+
dependencies = [
|
|
1263
|
+
"memchr",
|
|
1264
|
+
]
|
|
1265
|
+
|
|
1266
|
+
[[package]]
|
|
1267
|
+
name = "quote"
|
|
1268
|
+
version = "1.0.43"
|
|
1269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1270
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
1271
|
+
dependencies = [
|
|
1272
|
+
"proc-macro2",
|
|
1273
|
+
]
|
|
1274
|
+
|
|
1275
|
+
[[package]]
|
|
1276
|
+
name = "r-efi"
|
|
1277
|
+
version = "5.3.0"
|
|
1278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1280
|
+
|
|
1281
|
+
[[package]]
|
|
1282
|
+
name = "range-alloc"
|
|
1283
|
+
version = "0.1.4"
|
|
1284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1285
|
+
checksum = "c3d6831663a5098ea164f89cff59c6284e95f4e3c76ce9848d4529f5ccca9bde"
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "raw-window-handle"
|
|
1289
|
+
version = "0.6.2"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
1292
|
+
|
|
1293
|
+
[[package]]
|
|
1294
|
+
name = "rayon-core"
|
|
1295
|
+
version = "1.13.0"
|
|
1296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1297
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
1298
|
+
dependencies = [
|
|
1299
|
+
"crossbeam-deque",
|
|
1300
|
+
"crossbeam-utils",
|
|
1301
|
+
]
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "redox_syscall"
|
|
1305
|
+
version = "0.4.1"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
1308
|
+
dependencies = [
|
|
1309
|
+
"bitflags 1.3.2",
|
|
1310
|
+
]
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "redox_syscall"
|
|
1314
|
+
version = "0.5.18"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"bitflags 2.10.0",
|
|
1319
|
+
]
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "redox_syscall"
|
|
1323
|
+
version = "0.7.0"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"bitflags 2.10.0",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "renderdoc-sys"
|
|
1332
|
+
version = "1.1.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "rrtrace"
|
|
1338
|
+
version = "0.1.0"
|
|
1339
|
+
dependencies = [
|
|
1340
|
+
"bytemuck",
|
|
1341
|
+
"crossbeam-queue",
|
|
1342
|
+
"glam",
|
|
1343
|
+
"libc",
|
|
1344
|
+
"pollster",
|
|
1345
|
+
"rayon-core",
|
|
1346
|
+
"smallvec",
|
|
1347
|
+
"wgpu",
|
|
1348
|
+
"windows-sys 0.61.2",
|
|
1349
|
+
"winit",
|
|
1350
|
+
]
|
|
1351
|
+
|
|
1352
|
+
[[package]]
|
|
1353
|
+
name = "rustc-hash"
|
|
1354
|
+
version = "1.1.0"
|
|
1355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1356
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
1357
|
+
|
|
1358
|
+
[[package]]
|
|
1359
|
+
name = "rustix"
|
|
1360
|
+
version = "0.38.44"
|
|
1361
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1362
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
1363
|
+
dependencies = [
|
|
1364
|
+
"bitflags 2.10.0",
|
|
1365
|
+
"errno",
|
|
1366
|
+
"libc",
|
|
1367
|
+
"linux-raw-sys 0.4.15",
|
|
1368
|
+
"windows-sys 0.59.0",
|
|
1369
|
+
]
|
|
1370
|
+
|
|
1371
|
+
[[package]]
|
|
1372
|
+
name = "rustix"
|
|
1373
|
+
version = "1.1.3"
|
|
1374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1375
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
1376
|
+
dependencies = [
|
|
1377
|
+
"bitflags 2.10.0",
|
|
1378
|
+
"errno",
|
|
1379
|
+
"libc",
|
|
1380
|
+
"linux-raw-sys 0.11.0",
|
|
1381
|
+
"windows-sys 0.61.2",
|
|
1382
|
+
]
|
|
1383
|
+
|
|
1384
|
+
[[package]]
|
|
1385
|
+
name = "rustversion"
|
|
1386
|
+
version = "1.0.22"
|
|
1387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1388
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "same-file"
|
|
1392
|
+
version = "1.0.6"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"winapi-util",
|
|
1397
|
+
]
|
|
1398
|
+
|
|
1399
|
+
[[package]]
|
|
1400
|
+
name = "scoped-tls"
|
|
1401
|
+
version = "1.0.1"
|
|
1402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1403
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
1404
|
+
|
|
1405
|
+
[[package]]
|
|
1406
|
+
name = "scopeguard"
|
|
1407
|
+
version = "1.2.0"
|
|
1408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1409
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1410
|
+
|
|
1411
|
+
[[package]]
|
|
1412
|
+
name = "sctk-adwaita"
|
|
1413
|
+
version = "0.10.1"
|
|
1414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1415
|
+
checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec"
|
|
1416
|
+
dependencies = [
|
|
1417
|
+
"ab_glyph",
|
|
1418
|
+
"log",
|
|
1419
|
+
"memmap2",
|
|
1420
|
+
"smithay-client-toolkit",
|
|
1421
|
+
"tiny-skia",
|
|
1422
|
+
]
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "serde"
|
|
1426
|
+
version = "1.0.228"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1429
|
+
dependencies = [
|
|
1430
|
+
"serde_core",
|
|
1431
|
+
"serde_derive",
|
|
1432
|
+
]
|
|
1433
|
+
|
|
1434
|
+
[[package]]
|
|
1435
|
+
name = "serde_core"
|
|
1436
|
+
version = "1.0.228"
|
|
1437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1438
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1439
|
+
dependencies = [
|
|
1440
|
+
"serde_derive",
|
|
1441
|
+
]
|
|
1442
|
+
|
|
1443
|
+
[[package]]
|
|
1444
|
+
name = "serde_derive"
|
|
1445
|
+
version = "1.0.228"
|
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1447
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1448
|
+
dependencies = [
|
|
1449
|
+
"proc-macro2",
|
|
1450
|
+
"quote",
|
|
1451
|
+
"syn",
|
|
1452
|
+
]
|
|
1453
|
+
|
|
1454
|
+
[[package]]
|
|
1455
|
+
name = "shlex"
|
|
1456
|
+
version = "1.3.0"
|
|
1457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1458
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "slab"
|
|
1462
|
+
version = "0.4.11"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
1465
|
+
|
|
1466
|
+
[[package]]
|
|
1467
|
+
name = "slotmap"
|
|
1468
|
+
version = "1.1.1"
|
|
1469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"version_check",
|
|
1473
|
+
]
|
|
1474
|
+
|
|
1475
|
+
[[package]]
|
|
1476
|
+
name = "smallvec"
|
|
1477
|
+
version = "1.15.1"
|
|
1478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1479
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "smithay-client-toolkit"
|
|
1483
|
+
version = "0.19.2"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
|
|
1486
|
+
dependencies = [
|
|
1487
|
+
"bitflags 2.10.0",
|
|
1488
|
+
"calloop",
|
|
1489
|
+
"calloop-wayland-source",
|
|
1490
|
+
"cursor-icon",
|
|
1491
|
+
"libc",
|
|
1492
|
+
"log",
|
|
1493
|
+
"memmap2",
|
|
1494
|
+
"rustix 0.38.44",
|
|
1495
|
+
"thiserror 1.0.69",
|
|
1496
|
+
"wayland-backend",
|
|
1497
|
+
"wayland-client",
|
|
1498
|
+
"wayland-csd-frame",
|
|
1499
|
+
"wayland-cursor",
|
|
1500
|
+
"wayland-protocols",
|
|
1501
|
+
"wayland-protocols-wlr",
|
|
1502
|
+
"wayland-scanner",
|
|
1503
|
+
"xkeysym",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "smol_str"
|
|
1508
|
+
version = "0.2.2"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
|
1511
|
+
dependencies = [
|
|
1512
|
+
"serde",
|
|
1513
|
+
]
|
|
1514
|
+
|
|
1515
|
+
[[package]]
|
|
1516
|
+
name = "spirv"
|
|
1517
|
+
version = "0.3.0+sdk-1.3.268.0"
|
|
1518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1519
|
+
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
1520
|
+
dependencies = [
|
|
1521
|
+
"bitflags 2.10.0",
|
|
1522
|
+
]
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "static_assertions"
|
|
1526
|
+
version = "1.1.0"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "strict-num"
|
|
1532
|
+
version = "0.1.1"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "syn"
|
|
1538
|
+
version = "2.0.114"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"proc-macro2",
|
|
1543
|
+
"quote",
|
|
1544
|
+
"unicode-ident",
|
|
1545
|
+
]
|
|
1546
|
+
|
|
1547
|
+
[[package]]
|
|
1548
|
+
name = "termcolor"
|
|
1549
|
+
version = "1.4.1"
|
|
1550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
1552
|
+
dependencies = [
|
|
1553
|
+
"winapi-util",
|
|
1554
|
+
]
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "thiserror"
|
|
1558
|
+
version = "1.0.69"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"thiserror-impl 1.0.69",
|
|
1563
|
+
]
|
|
1564
|
+
|
|
1565
|
+
[[package]]
|
|
1566
|
+
name = "thiserror"
|
|
1567
|
+
version = "2.0.17"
|
|
1568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1569
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
1570
|
+
dependencies = [
|
|
1571
|
+
"thiserror-impl 2.0.17",
|
|
1572
|
+
]
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "thiserror-impl"
|
|
1576
|
+
version = "1.0.69"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"proc-macro2",
|
|
1581
|
+
"quote",
|
|
1582
|
+
"syn",
|
|
1583
|
+
]
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "thiserror-impl"
|
|
1587
|
+
version = "2.0.17"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"proc-macro2",
|
|
1592
|
+
"quote",
|
|
1593
|
+
"syn",
|
|
1594
|
+
]
|
|
1595
|
+
|
|
1596
|
+
[[package]]
|
|
1597
|
+
name = "tiny-skia"
|
|
1598
|
+
version = "0.11.4"
|
|
1599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1600
|
+
checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
|
|
1601
|
+
dependencies = [
|
|
1602
|
+
"arrayref",
|
|
1603
|
+
"arrayvec",
|
|
1604
|
+
"bytemuck",
|
|
1605
|
+
"cfg-if",
|
|
1606
|
+
"log",
|
|
1607
|
+
"tiny-skia-path",
|
|
1608
|
+
]
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "tiny-skia-path"
|
|
1612
|
+
version = "0.11.4"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"arrayref",
|
|
1617
|
+
"bytemuck",
|
|
1618
|
+
"strict-num",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "toml_datetime"
|
|
1623
|
+
version = "0.7.5+spec-1.1.0"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"serde_core",
|
|
1628
|
+
]
|
|
1629
|
+
|
|
1630
|
+
[[package]]
|
|
1631
|
+
name = "toml_edit"
|
|
1632
|
+
version = "0.23.10+spec-1.0.0"
|
|
1633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1634
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
1635
|
+
dependencies = [
|
|
1636
|
+
"indexmap",
|
|
1637
|
+
"toml_datetime",
|
|
1638
|
+
"toml_parser",
|
|
1639
|
+
"winnow",
|
|
1640
|
+
]
|
|
1641
|
+
|
|
1642
|
+
[[package]]
|
|
1643
|
+
name = "toml_parser"
|
|
1644
|
+
version = "1.0.6+spec-1.1.0"
|
|
1645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1646
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
1647
|
+
dependencies = [
|
|
1648
|
+
"winnow",
|
|
1649
|
+
]
|
|
1650
|
+
|
|
1651
|
+
[[package]]
|
|
1652
|
+
name = "tracing"
|
|
1653
|
+
version = "0.1.44"
|
|
1654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1656
|
+
dependencies = [
|
|
1657
|
+
"pin-project-lite",
|
|
1658
|
+
"tracing-core",
|
|
1659
|
+
]
|
|
1660
|
+
|
|
1661
|
+
[[package]]
|
|
1662
|
+
name = "tracing-core"
|
|
1663
|
+
version = "0.1.36"
|
|
1664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1665
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "ttf-parser"
|
|
1669
|
+
version = "0.25.1"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "unicode-ident"
|
|
1675
|
+
version = "1.0.22"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "unicode-segmentation"
|
|
1681
|
+
version = "1.12.0"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "unicode-width"
|
|
1687
|
+
version = "0.2.2"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "version_check"
|
|
1693
|
+
version = "0.9.5"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1696
|
+
|
|
1697
|
+
[[package]]
|
|
1698
|
+
name = "walkdir"
|
|
1699
|
+
version = "2.5.0"
|
|
1700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1701
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1702
|
+
dependencies = [
|
|
1703
|
+
"same-file",
|
|
1704
|
+
"winapi-util",
|
|
1705
|
+
]
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "wasip2"
|
|
1709
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"wit-bindgen",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "wasm-bindgen"
|
|
1718
|
+
version = "0.2.106"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
1721
|
+
dependencies = [
|
|
1722
|
+
"cfg-if",
|
|
1723
|
+
"once_cell",
|
|
1724
|
+
"rustversion",
|
|
1725
|
+
"wasm-bindgen-macro",
|
|
1726
|
+
"wasm-bindgen-shared",
|
|
1727
|
+
]
|
|
1728
|
+
|
|
1729
|
+
[[package]]
|
|
1730
|
+
name = "wasm-bindgen-futures"
|
|
1731
|
+
version = "0.4.56"
|
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
1734
|
+
dependencies = [
|
|
1735
|
+
"cfg-if",
|
|
1736
|
+
"js-sys",
|
|
1737
|
+
"once_cell",
|
|
1738
|
+
"wasm-bindgen",
|
|
1739
|
+
"web-sys",
|
|
1740
|
+
]
|
|
1741
|
+
|
|
1742
|
+
[[package]]
|
|
1743
|
+
name = "wasm-bindgen-macro"
|
|
1744
|
+
version = "0.2.106"
|
|
1745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
1747
|
+
dependencies = [
|
|
1748
|
+
"quote",
|
|
1749
|
+
"wasm-bindgen-macro-support",
|
|
1750
|
+
]
|
|
1751
|
+
|
|
1752
|
+
[[package]]
|
|
1753
|
+
name = "wasm-bindgen-macro-support"
|
|
1754
|
+
version = "0.2.106"
|
|
1755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1756
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
1757
|
+
dependencies = [
|
|
1758
|
+
"bumpalo",
|
|
1759
|
+
"proc-macro2",
|
|
1760
|
+
"quote",
|
|
1761
|
+
"syn",
|
|
1762
|
+
"wasm-bindgen-shared",
|
|
1763
|
+
]
|
|
1764
|
+
|
|
1765
|
+
[[package]]
|
|
1766
|
+
name = "wasm-bindgen-shared"
|
|
1767
|
+
version = "0.2.106"
|
|
1768
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
1770
|
+
dependencies = [
|
|
1771
|
+
"unicode-ident",
|
|
1772
|
+
]
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "wayland-backend"
|
|
1776
|
+
version = "0.3.12"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "fee64194ccd96bf648f42a65a7e589547096dfa702f7cadef84347b66ad164f9"
|
|
1779
|
+
dependencies = [
|
|
1780
|
+
"cc",
|
|
1781
|
+
"downcast-rs",
|
|
1782
|
+
"rustix 1.1.3",
|
|
1783
|
+
"scoped-tls",
|
|
1784
|
+
"smallvec",
|
|
1785
|
+
"wayland-sys",
|
|
1786
|
+
]
|
|
1787
|
+
|
|
1788
|
+
[[package]]
|
|
1789
|
+
name = "wayland-client"
|
|
1790
|
+
version = "0.31.12"
|
|
1791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1792
|
+
checksum = "b8e6faa537fbb6c186cb9f1d41f2f811a4120d1b57ec61f50da451a0c5122bec"
|
|
1793
|
+
dependencies = [
|
|
1794
|
+
"bitflags 2.10.0",
|
|
1795
|
+
"rustix 1.1.3",
|
|
1796
|
+
"wayland-backend",
|
|
1797
|
+
"wayland-scanner",
|
|
1798
|
+
]
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "wayland-csd-frame"
|
|
1802
|
+
version = "0.3.0"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
|
|
1805
|
+
dependencies = [
|
|
1806
|
+
"bitflags 2.10.0",
|
|
1807
|
+
"cursor-icon",
|
|
1808
|
+
"wayland-backend",
|
|
1809
|
+
]
|
|
1810
|
+
|
|
1811
|
+
[[package]]
|
|
1812
|
+
name = "wayland-cursor"
|
|
1813
|
+
version = "0.31.12"
|
|
1814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1815
|
+
checksum = "5864c4b5b6064b06b1e8b74ead4a98a6c45a285fe7a0e784d24735f011fdb078"
|
|
1816
|
+
dependencies = [
|
|
1817
|
+
"rustix 1.1.3",
|
|
1818
|
+
"wayland-client",
|
|
1819
|
+
"xcursor",
|
|
1820
|
+
]
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "wayland-protocols"
|
|
1824
|
+
version = "0.32.10"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "baeda9ffbcfc8cd6ddaade385eaf2393bd2115a69523c735f12242353c3df4f3"
|
|
1827
|
+
dependencies = [
|
|
1828
|
+
"bitflags 2.10.0",
|
|
1829
|
+
"wayland-backend",
|
|
1830
|
+
"wayland-client",
|
|
1831
|
+
"wayland-scanner",
|
|
1832
|
+
]
|
|
1833
|
+
|
|
1834
|
+
[[package]]
|
|
1835
|
+
name = "wayland-protocols-plasma"
|
|
1836
|
+
version = "0.3.10"
|
|
1837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
|
+
checksum = "aa98634619300a535a9a97f338aed9a5ff1e01a461943e8346ff4ae26007306b"
|
|
1839
|
+
dependencies = [
|
|
1840
|
+
"bitflags 2.10.0",
|
|
1841
|
+
"wayland-backend",
|
|
1842
|
+
"wayland-client",
|
|
1843
|
+
"wayland-protocols",
|
|
1844
|
+
"wayland-scanner",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "wayland-protocols-wlr"
|
|
1849
|
+
version = "0.3.10"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "e9597cdf02cf0c34cd5823786dce6b5ae8598f05c2daf5621b6e178d4f7345f3"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"bitflags 2.10.0",
|
|
1854
|
+
"wayland-backend",
|
|
1855
|
+
"wayland-client",
|
|
1856
|
+
"wayland-protocols",
|
|
1857
|
+
"wayland-scanner",
|
|
1858
|
+
]
|
|
1859
|
+
|
|
1860
|
+
[[package]]
|
|
1861
|
+
name = "wayland-scanner"
|
|
1862
|
+
version = "0.31.8"
|
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
+
checksum = "5423e94b6a63e68e439803a3e153a9252d5ead12fd853334e2ad33997e3889e3"
|
|
1865
|
+
dependencies = [
|
|
1866
|
+
"proc-macro2",
|
|
1867
|
+
"quick-xml",
|
|
1868
|
+
"quote",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "wayland-sys"
|
|
1873
|
+
version = "0.31.8"
|
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
+
checksum = "1e6dbfc3ac5ef974c92a2235805cc0114033018ae1290a72e474aa8b28cbbdfd"
|
|
1876
|
+
dependencies = [
|
|
1877
|
+
"dlib",
|
|
1878
|
+
"log",
|
|
1879
|
+
"once_cell",
|
|
1880
|
+
"pkg-config",
|
|
1881
|
+
]
|
|
1882
|
+
|
|
1883
|
+
[[package]]
|
|
1884
|
+
name = "web-sys"
|
|
1885
|
+
version = "0.3.83"
|
|
1886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1887
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
1888
|
+
dependencies = [
|
|
1889
|
+
"js-sys",
|
|
1890
|
+
"wasm-bindgen",
|
|
1891
|
+
]
|
|
1892
|
+
|
|
1893
|
+
[[package]]
|
|
1894
|
+
name = "web-time"
|
|
1895
|
+
version = "1.1.0"
|
|
1896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1897
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1898
|
+
dependencies = [
|
|
1899
|
+
"js-sys",
|
|
1900
|
+
"wasm-bindgen",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "wgpu"
|
|
1905
|
+
version = "28.0.0"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "f9cb534d5ffd109c7d1135f34cdae29e60eab94855a625dcfe1705f8bc7ad79f"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"arrayvec",
|
|
1910
|
+
"bitflags 2.10.0",
|
|
1911
|
+
"bytemuck",
|
|
1912
|
+
"cfg-if",
|
|
1913
|
+
"cfg_aliases",
|
|
1914
|
+
"document-features",
|
|
1915
|
+
"hashbrown 0.16.1",
|
|
1916
|
+
"js-sys",
|
|
1917
|
+
"log",
|
|
1918
|
+
"naga",
|
|
1919
|
+
"parking_lot",
|
|
1920
|
+
"portable-atomic",
|
|
1921
|
+
"profiling",
|
|
1922
|
+
"raw-window-handle",
|
|
1923
|
+
"smallvec",
|
|
1924
|
+
"static_assertions",
|
|
1925
|
+
"wasm-bindgen",
|
|
1926
|
+
"wasm-bindgen-futures",
|
|
1927
|
+
"web-sys",
|
|
1928
|
+
"wgpu-core",
|
|
1929
|
+
"wgpu-hal",
|
|
1930
|
+
"wgpu-types",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "wgpu-core"
|
|
1935
|
+
version = "28.0.0"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "8bb4c8b5db5f00e56f1f08869d870a0dff7c8bc7ebc01091fec140b0cf0211a9"
|
|
1938
|
+
dependencies = [
|
|
1939
|
+
"arrayvec",
|
|
1940
|
+
"bit-set",
|
|
1941
|
+
"bit-vec",
|
|
1942
|
+
"bitflags 2.10.0",
|
|
1943
|
+
"bytemuck",
|
|
1944
|
+
"cfg_aliases",
|
|
1945
|
+
"document-features",
|
|
1946
|
+
"hashbrown 0.16.1",
|
|
1947
|
+
"indexmap",
|
|
1948
|
+
"log",
|
|
1949
|
+
"naga",
|
|
1950
|
+
"once_cell",
|
|
1951
|
+
"parking_lot",
|
|
1952
|
+
"portable-atomic",
|
|
1953
|
+
"profiling",
|
|
1954
|
+
"raw-window-handle",
|
|
1955
|
+
"rustc-hash",
|
|
1956
|
+
"smallvec",
|
|
1957
|
+
"thiserror 2.0.17",
|
|
1958
|
+
"wgpu-core-deps-apple",
|
|
1959
|
+
"wgpu-core-deps-emscripten",
|
|
1960
|
+
"wgpu-core-deps-windows-linux-android",
|
|
1961
|
+
"wgpu-hal",
|
|
1962
|
+
"wgpu-types",
|
|
1963
|
+
]
|
|
1964
|
+
|
|
1965
|
+
[[package]]
|
|
1966
|
+
name = "wgpu-core-deps-apple"
|
|
1967
|
+
version = "28.0.0"
|
|
1968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
+
checksum = "87b7b696b918f337c486bf93142454080a32a37832ba8a31e4f48221890047da"
|
|
1970
|
+
dependencies = [
|
|
1971
|
+
"wgpu-hal",
|
|
1972
|
+
]
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "wgpu-core-deps-emscripten"
|
|
1976
|
+
version = "28.0.0"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "34b251c331f84feac147de3c4aa3aa45112622a95dd7ee1b74384fa0458dbd79"
|
|
1979
|
+
dependencies = [
|
|
1980
|
+
"wgpu-hal",
|
|
1981
|
+
]
|
|
1982
|
+
|
|
1983
|
+
[[package]]
|
|
1984
|
+
name = "wgpu-core-deps-windows-linux-android"
|
|
1985
|
+
version = "28.0.0"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
+
checksum = "68ca976e72b2c9964eb243e281f6ce7f14a514e409920920dcda12ae40febaae"
|
|
1988
|
+
dependencies = [
|
|
1989
|
+
"wgpu-hal",
|
|
1990
|
+
]
|
|
1991
|
+
|
|
1992
|
+
[[package]]
|
|
1993
|
+
name = "wgpu-hal"
|
|
1994
|
+
version = "28.0.0"
|
|
1995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1996
|
+
checksum = "293080d77fdd14d6b08a67c5487dfddbf874534bb7921526db56a7b75d7e3bef"
|
|
1997
|
+
dependencies = [
|
|
1998
|
+
"android_system_properties",
|
|
1999
|
+
"arrayvec",
|
|
2000
|
+
"ash",
|
|
2001
|
+
"bit-set",
|
|
2002
|
+
"bitflags 2.10.0",
|
|
2003
|
+
"block",
|
|
2004
|
+
"bytemuck",
|
|
2005
|
+
"cfg-if",
|
|
2006
|
+
"cfg_aliases",
|
|
2007
|
+
"core-graphics-types 0.2.0",
|
|
2008
|
+
"glow",
|
|
2009
|
+
"glutin_wgl_sys",
|
|
2010
|
+
"gpu-allocator",
|
|
2011
|
+
"gpu-descriptor",
|
|
2012
|
+
"hashbrown 0.16.1",
|
|
2013
|
+
"js-sys",
|
|
2014
|
+
"khronos-egl",
|
|
2015
|
+
"libc",
|
|
2016
|
+
"libloading",
|
|
2017
|
+
"log",
|
|
2018
|
+
"metal",
|
|
2019
|
+
"naga",
|
|
2020
|
+
"ndk-sys",
|
|
2021
|
+
"objc",
|
|
2022
|
+
"once_cell",
|
|
2023
|
+
"ordered-float",
|
|
2024
|
+
"parking_lot",
|
|
2025
|
+
"portable-atomic",
|
|
2026
|
+
"portable-atomic-util",
|
|
2027
|
+
"profiling",
|
|
2028
|
+
"range-alloc",
|
|
2029
|
+
"raw-window-handle",
|
|
2030
|
+
"renderdoc-sys",
|
|
2031
|
+
"smallvec",
|
|
2032
|
+
"thiserror 2.0.17",
|
|
2033
|
+
"wasm-bindgen",
|
|
2034
|
+
"web-sys",
|
|
2035
|
+
"wgpu-types",
|
|
2036
|
+
"windows",
|
|
2037
|
+
"windows-core",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "wgpu-types"
|
|
2042
|
+
version = "28.0.0"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "e18308757e594ed2cd27dddbb16a139c42a683819d32a2e0b1b0167552f5840c"
|
|
2045
|
+
dependencies = [
|
|
2046
|
+
"bitflags 2.10.0",
|
|
2047
|
+
"bytemuck",
|
|
2048
|
+
"js-sys",
|
|
2049
|
+
"log",
|
|
2050
|
+
"web-sys",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "winapi-util"
|
|
2055
|
+
version = "0.1.11"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"windows-sys 0.61.2",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "windows"
|
|
2064
|
+
version = "0.62.2"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"windows-collections",
|
|
2069
|
+
"windows-core",
|
|
2070
|
+
"windows-future",
|
|
2071
|
+
"windows-numerics",
|
|
2072
|
+
]
|
|
2073
|
+
|
|
2074
|
+
[[package]]
|
|
2075
|
+
name = "windows-collections"
|
|
2076
|
+
version = "0.3.2"
|
|
2077
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2078
|
+
checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
|
|
2079
|
+
dependencies = [
|
|
2080
|
+
"windows-core",
|
|
2081
|
+
]
|
|
2082
|
+
|
|
2083
|
+
[[package]]
|
|
2084
|
+
name = "windows-core"
|
|
2085
|
+
version = "0.62.2"
|
|
2086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2087
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2088
|
+
dependencies = [
|
|
2089
|
+
"windows-implement",
|
|
2090
|
+
"windows-interface",
|
|
2091
|
+
"windows-link",
|
|
2092
|
+
"windows-result",
|
|
2093
|
+
"windows-strings",
|
|
2094
|
+
]
|
|
2095
|
+
|
|
2096
|
+
[[package]]
|
|
2097
|
+
name = "windows-future"
|
|
2098
|
+
version = "0.3.2"
|
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2100
|
+
checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
|
|
2101
|
+
dependencies = [
|
|
2102
|
+
"windows-core",
|
|
2103
|
+
"windows-link",
|
|
2104
|
+
"windows-threading",
|
|
2105
|
+
]
|
|
2106
|
+
|
|
2107
|
+
[[package]]
|
|
2108
|
+
name = "windows-implement"
|
|
2109
|
+
version = "0.60.2"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2112
|
+
dependencies = [
|
|
2113
|
+
"proc-macro2",
|
|
2114
|
+
"quote",
|
|
2115
|
+
"syn",
|
|
2116
|
+
]
|
|
2117
|
+
|
|
2118
|
+
[[package]]
|
|
2119
|
+
name = "windows-interface"
|
|
2120
|
+
version = "0.59.3"
|
|
2121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2122
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2123
|
+
dependencies = [
|
|
2124
|
+
"proc-macro2",
|
|
2125
|
+
"quote",
|
|
2126
|
+
"syn",
|
|
2127
|
+
]
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "windows-link"
|
|
2131
|
+
version = "0.2.1"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2134
|
+
|
|
2135
|
+
[[package]]
|
|
2136
|
+
name = "windows-numerics"
|
|
2137
|
+
version = "0.3.1"
|
|
2138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2139
|
+
checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
|
|
2140
|
+
dependencies = [
|
|
2141
|
+
"windows-core",
|
|
2142
|
+
"windows-link",
|
|
2143
|
+
]
|
|
2144
|
+
|
|
2145
|
+
[[package]]
|
|
2146
|
+
name = "windows-result"
|
|
2147
|
+
version = "0.4.1"
|
|
2148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2149
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2150
|
+
dependencies = [
|
|
2151
|
+
"windows-link",
|
|
2152
|
+
]
|
|
2153
|
+
|
|
2154
|
+
[[package]]
|
|
2155
|
+
name = "windows-strings"
|
|
2156
|
+
version = "0.5.1"
|
|
2157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2159
|
+
dependencies = [
|
|
2160
|
+
"windows-link",
|
|
2161
|
+
]
|
|
2162
|
+
|
|
2163
|
+
[[package]]
|
|
2164
|
+
name = "windows-sys"
|
|
2165
|
+
version = "0.45.0"
|
|
2166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2167
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
2168
|
+
dependencies = [
|
|
2169
|
+
"windows-targets 0.42.2",
|
|
2170
|
+
]
|
|
2171
|
+
|
|
2172
|
+
[[package]]
|
|
2173
|
+
name = "windows-sys"
|
|
2174
|
+
version = "0.52.0"
|
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2176
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2177
|
+
dependencies = [
|
|
2178
|
+
"windows-targets 0.52.6",
|
|
2179
|
+
]
|
|
2180
|
+
|
|
2181
|
+
[[package]]
|
|
2182
|
+
name = "windows-sys"
|
|
2183
|
+
version = "0.59.0"
|
|
2184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2185
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
2186
|
+
dependencies = [
|
|
2187
|
+
"windows-targets 0.52.6",
|
|
2188
|
+
]
|
|
2189
|
+
|
|
2190
|
+
[[package]]
|
|
2191
|
+
name = "windows-sys"
|
|
2192
|
+
version = "0.61.2"
|
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2194
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2195
|
+
dependencies = [
|
|
2196
|
+
"windows-link",
|
|
2197
|
+
]
|
|
2198
|
+
|
|
2199
|
+
[[package]]
|
|
2200
|
+
name = "windows-targets"
|
|
2201
|
+
version = "0.42.2"
|
|
2202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2203
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
2204
|
+
dependencies = [
|
|
2205
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
2206
|
+
"windows_aarch64_msvc 0.42.2",
|
|
2207
|
+
"windows_i686_gnu 0.42.2",
|
|
2208
|
+
"windows_i686_msvc 0.42.2",
|
|
2209
|
+
"windows_x86_64_gnu 0.42.2",
|
|
2210
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
2211
|
+
"windows_x86_64_msvc 0.42.2",
|
|
2212
|
+
]
|
|
2213
|
+
|
|
2214
|
+
[[package]]
|
|
2215
|
+
name = "windows-targets"
|
|
2216
|
+
version = "0.52.6"
|
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2219
|
+
dependencies = [
|
|
2220
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
2221
|
+
"windows_aarch64_msvc 0.52.6",
|
|
2222
|
+
"windows_i686_gnu 0.52.6",
|
|
2223
|
+
"windows_i686_gnullvm",
|
|
2224
|
+
"windows_i686_msvc 0.52.6",
|
|
2225
|
+
"windows_x86_64_gnu 0.52.6",
|
|
2226
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
2227
|
+
"windows_x86_64_msvc 0.52.6",
|
|
2228
|
+
]
|
|
2229
|
+
|
|
2230
|
+
[[package]]
|
|
2231
|
+
name = "windows-threading"
|
|
2232
|
+
version = "0.2.1"
|
|
2233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2234
|
+
checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
|
|
2235
|
+
dependencies = [
|
|
2236
|
+
"windows-link",
|
|
2237
|
+
]
|
|
2238
|
+
|
|
2239
|
+
[[package]]
|
|
2240
|
+
name = "windows_aarch64_gnullvm"
|
|
2241
|
+
version = "0.42.2"
|
|
2242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2243
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
2244
|
+
|
|
2245
|
+
[[package]]
|
|
2246
|
+
name = "windows_aarch64_gnullvm"
|
|
2247
|
+
version = "0.52.6"
|
|
2248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2249
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2250
|
+
|
|
2251
|
+
[[package]]
|
|
2252
|
+
name = "windows_aarch64_msvc"
|
|
2253
|
+
version = "0.42.2"
|
|
2254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2255
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
2256
|
+
|
|
2257
|
+
[[package]]
|
|
2258
|
+
name = "windows_aarch64_msvc"
|
|
2259
|
+
version = "0.52.6"
|
|
2260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2261
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2262
|
+
|
|
2263
|
+
[[package]]
|
|
2264
|
+
name = "windows_i686_gnu"
|
|
2265
|
+
version = "0.42.2"
|
|
2266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2267
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
2268
|
+
|
|
2269
|
+
[[package]]
|
|
2270
|
+
name = "windows_i686_gnu"
|
|
2271
|
+
version = "0.52.6"
|
|
2272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2273
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "windows_i686_gnullvm"
|
|
2277
|
+
version = "0.52.6"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2280
|
+
|
|
2281
|
+
[[package]]
|
|
2282
|
+
name = "windows_i686_msvc"
|
|
2283
|
+
version = "0.42.2"
|
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
2286
|
+
|
|
2287
|
+
[[package]]
|
|
2288
|
+
name = "windows_i686_msvc"
|
|
2289
|
+
version = "0.52.6"
|
|
2290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2291
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2292
|
+
|
|
2293
|
+
[[package]]
|
|
2294
|
+
name = "windows_x86_64_gnu"
|
|
2295
|
+
version = "0.42.2"
|
|
2296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
2298
|
+
|
|
2299
|
+
[[package]]
|
|
2300
|
+
name = "windows_x86_64_gnu"
|
|
2301
|
+
version = "0.52.6"
|
|
2302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2304
|
+
|
|
2305
|
+
[[package]]
|
|
2306
|
+
name = "windows_x86_64_gnullvm"
|
|
2307
|
+
version = "0.42.2"
|
|
2308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2309
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
2310
|
+
|
|
2311
|
+
[[package]]
|
|
2312
|
+
name = "windows_x86_64_gnullvm"
|
|
2313
|
+
version = "0.52.6"
|
|
2314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2315
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2316
|
+
|
|
2317
|
+
[[package]]
|
|
2318
|
+
name = "windows_x86_64_msvc"
|
|
2319
|
+
version = "0.42.2"
|
|
2320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2321
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "windows_x86_64_msvc"
|
|
2325
|
+
version = "0.52.6"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "winit"
|
|
2331
|
+
version = "0.30.12"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "c66d4b9ed69c4009f6321f762d6e61ad8a2389cd431b97cb1e146812e9e6c732"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"ahash",
|
|
2336
|
+
"android-activity",
|
|
2337
|
+
"atomic-waker",
|
|
2338
|
+
"bitflags 2.10.0",
|
|
2339
|
+
"block2",
|
|
2340
|
+
"bytemuck",
|
|
2341
|
+
"calloop",
|
|
2342
|
+
"cfg_aliases",
|
|
2343
|
+
"concurrent-queue",
|
|
2344
|
+
"core-foundation 0.9.4",
|
|
2345
|
+
"core-graphics",
|
|
2346
|
+
"cursor-icon",
|
|
2347
|
+
"dpi",
|
|
2348
|
+
"js-sys",
|
|
2349
|
+
"libc",
|
|
2350
|
+
"memmap2",
|
|
2351
|
+
"ndk",
|
|
2352
|
+
"objc2",
|
|
2353
|
+
"objc2-app-kit",
|
|
2354
|
+
"objc2-foundation",
|
|
2355
|
+
"objc2-ui-kit",
|
|
2356
|
+
"orbclient",
|
|
2357
|
+
"percent-encoding",
|
|
2358
|
+
"pin-project",
|
|
2359
|
+
"raw-window-handle",
|
|
2360
|
+
"redox_syscall 0.4.1",
|
|
2361
|
+
"rustix 0.38.44",
|
|
2362
|
+
"sctk-adwaita",
|
|
2363
|
+
"smithay-client-toolkit",
|
|
2364
|
+
"smol_str",
|
|
2365
|
+
"tracing",
|
|
2366
|
+
"unicode-segmentation",
|
|
2367
|
+
"wasm-bindgen",
|
|
2368
|
+
"wasm-bindgen-futures",
|
|
2369
|
+
"wayland-backend",
|
|
2370
|
+
"wayland-client",
|
|
2371
|
+
"wayland-protocols",
|
|
2372
|
+
"wayland-protocols-plasma",
|
|
2373
|
+
"web-sys",
|
|
2374
|
+
"web-time",
|
|
2375
|
+
"windows-sys 0.52.0",
|
|
2376
|
+
"x11-dl",
|
|
2377
|
+
"x11rb",
|
|
2378
|
+
"xkbcommon-dl",
|
|
2379
|
+
]
|
|
2380
|
+
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "winnow"
|
|
2383
|
+
version = "0.7.14"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
2386
|
+
dependencies = [
|
|
2387
|
+
"memchr",
|
|
2388
|
+
]
|
|
2389
|
+
|
|
2390
|
+
[[package]]
|
|
2391
|
+
name = "wit-bindgen"
|
|
2392
|
+
version = "0.46.0"
|
|
2393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2394
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
2395
|
+
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "x11-dl"
|
|
2398
|
+
version = "2.21.0"
|
|
2399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2400
|
+
checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
|
|
2401
|
+
dependencies = [
|
|
2402
|
+
"libc",
|
|
2403
|
+
"once_cell",
|
|
2404
|
+
"pkg-config",
|
|
2405
|
+
]
|
|
2406
|
+
|
|
2407
|
+
[[package]]
|
|
2408
|
+
name = "x11rb"
|
|
2409
|
+
version = "0.13.2"
|
|
2410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2411
|
+
checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
|
|
2412
|
+
dependencies = [
|
|
2413
|
+
"as-raw-xcb-connection",
|
|
2414
|
+
"gethostname",
|
|
2415
|
+
"libc",
|
|
2416
|
+
"libloading",
|
|
2417
|
+
"once_cell",
|
|
2418
|
+
"rustix 1.1.3",
|
|
2419
|
+
"x11rb-protocol",
|
|
2420
|
+
]
|
|
2421
|
+
|
|
2422
|
+
[[package]]
|
|
2423
|
+
name = "x11rb-protocol"
|
|
2424
|
+
version = "0.13.2"
|
|
2425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2426
|
+
checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
|
|
2427
|
+
|
|
2428
|
+
[[package]]
|
|
2429
|
+
name = "xcursor"
|
|
2430
|
+
version = "0.3.10"
|
|
2431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2432
|
+
checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
|
|
2433
|
+
|
|
2434
|
+
[[package]]
|
|
2435
|
+
name = "xkbcommon-dl"
|
|
2436
|
+
version = "0.4.2"
|
|
2437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2438
|
+
checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
|
|
2439
|
+
dependencies = [
|
|
2440
|
+
"bitflags 2.10.0",
|
|
2441
|
+
"dlib",
|
|
2442
|
+
"log",
|
|
2443
|
+
"once_cell",
|
|
2444
|
+
"xkeysym",
|
|
2445
|
+
]
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "xkeysym"
|
|
2449
|
+
version = "0.2.1"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
|
|
2452
|
+
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "xml-rs"
|
|
2455
|
+
version = "0.8.28"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "zerocopy"
|
|
2461
|
+
version = "0.8.33"
|
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
2464
|
+
dependencies = [
|
|
2465
|
+
"zerocopy-derive",
|
|
2466
|
+
]
|
|
2467
|
+
|
|
2468
|
+
[[package]]
|
|
2469
|
+
name = "zerocopy-derive"
|
|
2470
|
+
version = "0.8.33"
|
|
2471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2472
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
2473
|
+
dependencies = [
|
|
2474
|
+
"proc-macro2",
|
|
2475
|
+
"quote",
|
|
2476
|
+
"syn",
|
|
2477
|
+
]
|