alg-etf 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- alg_etf-0.1.0/Cargo.lock +4589 -0
- alg_etf-0.1.0/Cargo.toml +20 -0
- alg_etf-0.1.0/PKG-INFO +25 -0
- alg_etf-0.1.0/README.md +16 -0
- alg_etf-0.1.0/crates/alg_core/Cargo.lock +576 -0
- alg_etf-0.1.0/crates/alg_core/Cargo.toml +8 -0
- alg_etf-0.1.0/crates/alg_core/src/drc/drc_rules.rs +21 -0
- alg_etf-0.1.0/crates/alg_core/src/drc/mod.rs +4 -0
- alg_etf-0.1.0/crates/alg_core/src/drc/queries.rs +16 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/aabb.rs +161 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/boundary.rs +200 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/gjk.rs +870 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/mod.rs +93 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/path.rs +201 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/polygon.rs +202 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/rectangle.rs +144 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/shape.rs +306 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/triangulation.rs +354 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/vector2.rs +122 -0
- alg_etf-0.1.0/crates/alg_core/src/geo/vertex.rs +170 -0
- alg_etf-0.1.0/crates/alg_core/src/io/gds_reader.rs +1 -0
- alg_etf-0.1.0/crates/alg_core/src/io/mod.rs +1 -0
- alg_etf-0.1.0/crates/alg_core/src/lib.rs +22 -0
- alg_etf-0.1.0/crates/alg_core/src/library/cell.rs +170 -0
- alg_etf-0.1.0/crates/alg_core/src/library/instance.rs +226 -0
- alg_etf-0.1.0/crates/alg_core/src/library/layer.rs +151 -0
- alg_etf-0.1.0/crates/alg_core/src/library/mod.rs +113 -0
- alg_etf-0.1.0/crates/alg_core/src/project/design.rs +55 -0
- alg_etf-0.1.0/crates/alg_core/src/project/mod.rs +19 -0
- alg_etf-0.1.0/crates/alg_core/src/project/style.rs +19 -0
- alg_etf-0.1.0/crates/alg_core/src/project/technology.rs +138 -0
- alg_etf-0.1.0/crates/alg_gui/Cargo.lock +4457 -0
- alg_etf-0.1.0/crates/alg_gui/Cargo.toml +17 -0
- alg_etf-0.1.0/crates/alg_gui/src/lib.rs +9 -0
- alg_etf-0.1.0/crates/alg_gui/src/main.rs +278 -0
- alg_etf-0.1.0/crates/alg_gui/src/viewer/app.rs +659 -0
- alg_etf-0.1.0/crates/alg_gui/src/viewer/mod.rs +5 -0
- alg_etf-0.1.0/crates/alg_gui/src/viewer/style.rs +38 -0
- alg_etf-0.1.0/crates/alg_gui/src/viewer/viewport.rs +139 -0
- alg_etf-0.1.0/crates/alg_py/Cargo.toml +14 -0
- alg_etf-0.1.0/crates/alg_py/src/lib.rs +265 -0
- alg_etf-0.1.0/pyproject.toml +30 -0
- alg_etf-0.1.0/python/alg_etf/__init__.py +17 -0
- alg_etf-0.1.0/python/alg_etf/__init__.pyi +81 -0
alg_etf-0.1.0/Cargo.lock
ADDED
|
@@ -0,0 +1,4589 @@
|
|
|
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 = "accesskit"
|
|
23
|
+
version = "0.21.1"
|
|
24
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
+
checksum = "cf203f9d3bd8f29f98833d1fbef628df18f759248a547e7e01cfbf63cda36a99"
|
|
26
|
+
|
|
27
|
+
[[package]]
|
|
28
|
+
name = "accesskit_atspi_common"
|
|
29
|
+
version = "0.14.2"
|
|
30
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
+
checksum = "890d241cf51fc784f0ac5ac34dfc847421f8d39da6c7c91a0fcc987db62a8267"
|
|
32
|
+
dependencies = [
|
|
33
|
+
"accesskit",
|
|
34
|
+
"accesskit_consumer",
|
|
35
|
+
"atspi-common",
|
|
36
|
+
"serde",
|
|
37
|
+
"thiserror 1.0.69",
|
|
38
|
+
"zvariant",
|
|
39
|
+
]
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "accesskit_consumer"
|
|
43
|
+
version = "0.31.0"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "db81010a6895d8707f9072e6ce98070579b43b717193d2614014abd5cb17dd43"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"accesskit",
|
|
48
|
+
"hashbrown 0.15.5",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "accesskit_macos"
|
|
53
|
+
version = "0.22.2"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "a0089e5c0ac0ca281e13ea374773898d9354cc28d15af9f0f7394d44a495b575"
|
|
56
|
+
dependencies = [
|
|
57
|
+
"accesskit",
|
|
58
|
+
"accesskit_consumer",
|
|
59
|
+
"hashbrown 0.15.5",
|
|
60
|
+
"objc2 0.5.2",
|
|
61
|
+
"objc2-app-kit 0.2.2",
|
|
62
|
+
"objc2-foundation 0.2.2",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "accesskit_unix"
|
|
67
|
+
version = "0.17.2"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "301e55b39cfc15d9c48943ce5f572204a551646700d0e8efa424585f94fec528"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"accesskit",
|
|
72
|
+
"accesskit_atspi_common",
|
|
73
|
+
"async-channel",
|
|
74
|
+
"async-executor",
|
|
75
|
+
"async-task",
|
|
76
|
+
"atspi",
|
|
77
|
+
"futures-lite",
|
|
78
|
+
"futures-util",
|
|
79
|
+
"serde",
|
|
80
|
+
"zbus",
|
|
81
|
+
]
|
|
82
|
+
|
|
83
|
+
[[package]]
|
|
84
|
+
name = "accesskit_windows"
|
|
85
|
+
version = "0.29.2"
|
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
+
checksum = "d2d63dd5041e49c363d83f5419a896ecb074d309c414036f616dc0b04faca971"
|
|
88
|
+
dependencies = [
|
|
89
|
+
"accesskit",
|
|
90
|
+
"accesskit_consumer",
|
|
91
|
+
"hashbrown 0.15.5",
|
|
92
|
+
"static_assertions",
|
|
93
|
+
"windows 0.61.3",
|
|
94
|
+
"windows-core 0.61.2",
|
|
95
|
+
]
|
|
96
|
+
|
|
97
|
+
[[package]]
|
|
98
|
+
name = "accesskit_winit"
|
|
99
|
+
version = "0.29.2"
|
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
+
checksum = "c8cfabe59d0eaca7412bfb1f70198dd31e3b0496fee7e15b066f9c36a1a140a0"
|
|
102
|
+
dependencies = [
|
|
103
|
+
"accesskit",
|
|
104
|
+
"accesskit_macos",
|
|
105
|
+
"accesskit_unix",
|
|
106
|
+
"accesskit_windows",
|
|
107
|
+
"raw-window-handle",
|
|
108
|
+
"winit",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "adler2"
|
|
113
|
+
version = "2.0.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "ahash"
|
|
119
|
+
version = "0.8.12"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
122
|
+
dependencies = [
|
|
123
|
+
"cfg-if",
|
|
124
|
+
"getrandom",
|
|
125
|
+
"once_cell",
|
|
126
|
+
"version_check",
|
|
127
|
+
"zerocopy",
|
|
128
|
+
]
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "alg_core"
|
|
132
|
+
version = "0.1.0"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"eframe",
|
|
135
|
+
"gds21",
|
|
136
|
+
]
|
|
137
|
+
|
|
138
|
+
[[package]]
|
|
139
|
+
name = "alg_gui"
|
|
140
|
+
version = "0.1.0"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"alg_core",
|
|
143
|
+
"eframe",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "alg_py"
|
|
148
|
+
version = "0.1.0"
|
|
149
|
+
dependencies = [
|
|
150
|
+
"alg_core",
|
|
151
|
+
"alg_gui",
|
|
152
|
+
"eframe",
|
|
153
|
+
"pyo3",
|
|
154
|
+
]
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "android-activity"
|
|
158
|
+
version = "0.6.0"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"android-properties",
|
|
163
|
+
"bitflags 2.10.0",
|
|
164
|
+
"cc",
|
|
165
|
+
"cesu8",
|
|
166
|
+
"jni",
|
|
167
|
+
"jni-sys",
|
|
168
|
+
"libc",
|
|
169
|
+
"log",
|
|
170
|
+
"ndk",
|
|
171
|
+
"ndk-context",
|
|
172
|
+
"ndk-sys",
|
|
173
|
+
"num_enum",
|
|
174
|
+
"thiserror 1.0.69",
|
|
175
|
+
]
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "android-properties"
|
|
179
|
+
version = "0.2.2"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "android_system_properties"
|
|
185
|
+
version = "0.1.5"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"libc",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "arboard"
|
|
194
|
+
version = "3.6.1"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "0348a1c054491f4bfe6ab86a7b6ab1e44e45d899005de92f58b3df180b36ddaf"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"clipboard-win",
|
|
199
|
+
"image",
|
|
200
|
+
"log",
|
|
201
|
+
"objc2 0.6.3",
|
|
202
|
+
"objc2-app-kit 0.3.2",
|
|
203
|
+
"objc2-core-foundation",
|
|
204
|
+
"objc2-core-graphics",
|
|
205
|
+
"objc2-foundation 0.3.2",
|
|
206
|
+
"parking_lot",
|
|
207
|
+
"percent-encoding",
|
|
208
|
+
"windows-sys 0.60.2",
|
|
209
|
+
"x11rb",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "arrayref"
|
|
214
|
+
version = "0.3.9"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "arrayvec"
|
|
220
|
+
version = "0.7.6"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
223
|
+
|
|
224
|
+
[[package]]
|
|
225
|
+
name = "as-raw-xcb-connection"
|
|
226
|
+
version = "1.0.1"
|
|
227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
228
|
+
checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
|
|
229
|
+
|
|
230
|
+
[[package]]
|
|
231
|
+
name = "ash"
|
|
232
|
+
version = "0.38.0+1.3.281"
|
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
+
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
|
235
|
+
dependencies = [
|
|
236
|
+
"libloading",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "async-broadcast"
|
|
241
|
+
version = "0.7.2"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
|
|
244
|
+
dependencies = [
|
|
245
|
+
"event-listener",
|
|
246
|
+
"event-listener-strategy",
|
|
247
|
+
"futures-core",
|
|
248
|
+
"pin-project-lite",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "async-channel"
|
|
253
|
+
version = "2.5.0"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"concurrent-queue",
|
|
258
|
+
"event-listener-strategy",
|
|
259
|
+
"futures-core",
|
|
260
|
+
"pin-project-lite",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "async-executor"
|
|
265
|
+
version = "1.13.3"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"async-task",
|
|
270
|
+
"concurrent-queue",
|
|
271
|
+
"fastrand",
|
|
272
|
+
"futures-lite",
|
|
273
|
+
"pin-project-lite",
|
|
274
|
+
"slab",
|
|
275
|
+
]
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "async-io"
|
|
279
|
+
version = "2.6.0"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"autocfg",
|
|
284
|
+
"cfg-if",
|
|
285
|
+
"concurrent-queue",
|
|
286
|
+
"futures-io",
|
|
287
|
+
"futures-lite",
|
|
288
|
+
"parking",
|
|
289
|
+
"polling",
|
|
290
|
+
"rustix 1.1.2",
|
|
291
|
+
"slab",
|
|
292
|
+
"windows-sys 0.61.2",
|
|
293
|
+
]
|
|
294
|
+
|
|
295
|
+
[[package]]
|
|
296
|
+
name = "async-lock"
|
|
297
|
+
version = "3.4.2"
|
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
+
checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
|
|
300
|
+
dependencies = [
|
|
301
|
+
"event-listener",
|
|
302
|
+
"event-listener-strategy",
|
|
303
|
+
"pin-project-lite",
|
|
304
|
+
]
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "async-process"
|
|
308
|
+
version = "2.5.0"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"async-channel",
|
|
313
|
+
"async-io",
|
|
314
|
+
"async-lock",
|
|
315
|
+
"async-signal",
|
|
316
|
+
"async-task",
|
|
317
|
+
"blocking",
|
|
318
|
+
"cfg-if",
|
|
319
|
+
"event-listener",
|
|
320
|
+
"futures-lite",
|
|
321
|
+
"rustix 1.1.2",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "async-recursion"
|
|
326
|
+
version = "1.1.1"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"proc-macro2",
|
|
331
|
+
"quote",
|
|
332
|
+
"syn 2.0.111",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "async-signal"
|
|
337
|
+
version = "0.2.13"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c"
|
|
340
|
+
dependencies = [
|
|
341
|
+
"async-io",
|
|
342
|
+
"async-lock",
|
|
343
|
+
"atomic-waker",
|
|
344
|
+
"cfg-if",
|
|
345
|
+
"futures-core",
|
|
346
|
+
"futures-io",
|
|
347
|
+
"rustix 1.1.2",
|
|
348
|
+
"signal-hook-registry",
|
|
349
|
+
"slab",
|
|
350
|
+
"windows-sys 0.61.2",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "async-task"
|
|
355
|
+
version = "4.7.1"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "async-trait"
|
|
361
|
+
version = "0.1.89"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"proc-macro2",
|
|
366
|
+
"quote",
|
|
367
|
+
"syn 2.0.111",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "atomic-waker"
|
|
372
|
+
version = "1.1.2"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "atspi"
|
|
378
|
+
version = "0.25.0"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "c83247582e7508838caf5f316c00791eee0e15c0bf743e6880585b867e16815c"
|
|
381
|
+
dependencies = [
|
|
382
|
+
"atspi-common",
|
|
383
|
+
"atspi-connection",
|
|
384
|
+
"atspi-proxies",
|
|
385
|
+
]
|
|
386
|
+
|
|
387
|
+
[[package]]
|
|
388
|
+
name = "atspi-common"
|
|
389
|
+
version = "0.9.0"
|
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
391
|
+
checksum = "33dfc05e7cdf90988a197803bf24f5788f94f7c94a69efa95683e8ffe76cfdfb"
|
|
392
|
+
dependencies = [
|
|
393
|
+
"enumflags2",
|
|
394
|
+
"serde",
|
|
395
|
+
"static_assertions",
|
|
396
|
+
"zbus",
|
|
397
|
+
"zbus-lockstep",
|
|
398
|
+
"zbus-lockstep-macros",
|
|
399
|
+
"zbus_names",
|
|
400
|
+
"zvariant",
|
|
401
|
+
]
|
|
402
|
+
|
|
403
|
+
[[package]]
|
|
404
|
+
name = "atspi-connection"
|
|
405
|
+
version = "0.9.0"
|
|
406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
+
checksum = "4193d51303d8332304056ae0004714256b46b6635a5c556109b319c0d3784938"
|
|
408
|
+
dependencies = [
|
|
409
|
+
"atspi-common",
|
|
410
|
+
"atspi-proxies",
|
|
411
|
+
"futures-lite",
|
|
412
|
+
"zbus",
|
|
413
|
+
]
|
|
414
|
+
|
|
415
|
+
[[package]]
|
|
416
|
+
name = "atspi-proxies"
|
|
417
|
+
version = "0.9.0"
|
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
419
|
+
checksum = "d2eebcb9e7e76f26d0bcfd6f0295e1cd1e6f33bedbc5698a971db8dc43d7751c"
|
|
420
|
+
dependencies = [
|
|
421
|
+
"atspi-common",
|
|
422
|
+
"serde",
|
|
423
|
+
"zbus",
|
|
424
|
+
]
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "autocfg"
|
|
428
|
+
version = "1.5.0"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "bit-set"
|
|
434
|
+
version = "0.8.0"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"bit-vec",
|
|
439
|
+
]
|
|
440
|
+
|
|
441
|
+
[[package]]
|
|
442
|
+
name = "bit-vec"
|
|
443
|
+
version = "0.8.0"
|
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
445
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "bitflags"
|
|
449
|
+
version = "1.3.2"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "bitflags"
|
|
455
|
+
version = "2.10.0"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "block"
|
|
461
|
+
version = "0.1.6"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "block2"
|
|
467
|
+
version = "0.5.1"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"objc2 0.5.2",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "blocking"
|
|
476
|
+
version = "1.6.2"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
479
|
+
dependencies = [
|
|
480
|
+
"async-channel",
|
|
481
|
+
"async-task",
|
|
482
|
+
"futures-io",
|
|
483
|
+
"futures-lite",
|
|
484
|
+
"piper",
|
|
485
|
+
]
|
|
486
|
+
|
|
487
|
+
[[package]]
|
|
488
|
+
name = "bumpalo"
|
|
489
|
+
version = "3.19.1"
|
|
490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
491
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "by_address"
|
|
495
|
+
version = "1.2.1"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "bytemuck"
|
|
501
|
+
version = "1.24.0"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"bytemuck_derive",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "bytemuck_derive"
|
|
510
|
+
version = "1.10.2"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"proc-macro2",
|
|
515
|
+
"quote",
|
|
516
|
+
"syn 2.0.111",
|
|
517
|
+
]
|
|
518
|
+
|
|
519
|
+
[[package]]
|
|
520
|
+
name = "byteorder"
|
|
521
|
+
version = "1.5.0"
|
|
522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
523
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "byteorder-lite"
|
|
527
|
+
version = "0.1.0"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
530
|
+
|
|
531
|
+
[[package]]
|
|
532
|
+
name = "bytes"
|
|
533
|
+
version = "1.11.0"
|
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
535
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
536
|
+
|
|
537
|
+
[[package]]
|
|
538
|
+
name = "calloop"
|
|
539
|
+
version = "0.13.0"
|
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
541
|
+
checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
|
|
542
|
+
dependencies = [
|
|
543
|
+
"bitflags 2.10.0",
|
|
544
|
+
"log",
|
|
545
|
+
"polling",
|
|
546
|
+
"rustix 0.38.44",
|
|
547
|
+
"slab",
|
|
548
|
+
"thiserror 1.0.69",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "calloop"
|
|
553
|
+
version = "0.14.3"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "cb9f6e1368bd4621d2c86baa7e37de77a938adf5221e5dd3d6133340101b309e"
|
|
556
|
+
dependencies = [
|
|
557
|
+
"bitflags 2.10.0",
|
|
558
|
+
"polling",
|
|
559
|
+
"rustix 1.1.2",
|
|
560
|
+
"slab",
|
|
561
|
+
"tracing",
|
|
562
|
+
]
|
|
563
|
+
|
|
564
|
+
[[package]]
|
|
565
|
+
name = "calloop-wayland-source"
|
|
566
|
+
version = "0.3.0"
|
|
567
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
+
checksum = "95a66a987056935f7efce4ab5668920b5d0dac4a7c99991a67395f13702ddd20"
|
|
569
|
+
dependencies = [
|
|
570
|
+
"calloop 0.13.0",
|
|
571
|
+
"rustix 0.38.44",
|
|
572
|
+
"wayland-backend",
|
|
573
|
+
"wayland-client",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "calloop-wayland-source"
|
|
578
|
+
version = "0.4.1"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "138efcf0940a02ebf0cc8d1eff41a1682a46b431630f4c52450d6265876021fa"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"calloop 0.14.3",
|
|
583
|
+
"rustix 1.1.2",
|
|
584
|
+
"wayland-backend",
|
|
585
|
+
"wayland-client",
|
|
586
|
+
]
|
|
587
|
+
|
|
588
|
+
[[package]]
|
|
589
|
+
name = "cc"
|
|
590
|
+
version = "1.2.50"
|
|
591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
592
|
+
checksum = "9f50d563227a1c37cc0a263f64eca3334388c01c5e4c4861a9def205c614383c"
|
|
593
|
+
dependencies = [
|
|
594
|
+
"find-msvc-tools",
|
|
595
|
+
"jobserver",
|
|
596
|
+
"libc",
|
|
597
|
+
"shlex",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "cesu8"
|
|
602
|
+
version = "1.1.0"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
605
|
+
|
|
606
|
+
[[package]]
|
|
607
|
+
name = "cfg-if"
|
|
608
|
+
version = "1.0.4"
|
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
611
|
+
|
|
612
|
+
[[package]]
|
|
613
|
+
name = "cfg_aliases"
|
|
614
|
+
version = "0.2.1"
|
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "cgl"
|
|
620
|
+
version = "0.3.2"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "0ced0551234e87afee12411d535648dd89d2e7f34c78b753395567aff3d447ff"
|
|
623
|
+
dependencies = [
|
|
624
|
+
"libc",
|
|
625
|
+
]
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "chrono"
|
|
629
|
+
version = "0.4.42"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"iana-time-zone",
|
|
634
|
+
"js-sys",
|
|
635
|
+
"num-traits",
|
|
636
|
+
"serde",
|
|
637
|
+
"wasm-bindgen",
|
|
638
|
+
"windows-link 0.2.1",
|
|
639
|
+
]
|
|
640
|
+
|
|
641
|
+
[[package]]
|
|
642
|
+
name = "clipboard-win"
|
|
643
|
+
version = "5.4.1"
|
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
+
checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
|
|
646
|
+
dependencies = [
|
|
647
|
+
"error-code",
|
|
648
|
+
]
|
|
649
|
+
|
|
650
|
+
[[package]]
|
|
651
|
+
name = "codespan-reporting"
|
|
652
|
+
version = "0.12.0"
|
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
+
checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
|
|
655
|
+
dependencies = [
|
|
656
|
+
"serde",
|
|
657
|
+
"termcolor",
|
|
658
|
+
"unicode-width",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "combine"
|
|
663
|
+
version = "4.6.7"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"bytes",
|
|
668
|
+
"memchr",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "concurrent-queue"
|
|
673
|
+
version = "2.5.0"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"crossbeam-utils",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "convert_case"
|
|
682
|
+
version = "0.4.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "core-foundation"
|
|
688
|
+
version = "0.9.4"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
691
|
+
dependencies = [
|
|
692
|
+
"core-foundation-sys",
|
|
693
|
+
"libc",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "core-foundation"
|
|
698
|
+
version = "0.10.1"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"core-foundation-sys",
|
|
703
|
+
"libc",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "core-foundation-sys"
|
|
708
|
+
version = "0.8.7"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "core-graphics"
|
|
714
|
+
version = "0.23.2"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
|
|
717
|
+
dependencies = [
|
|
718
|
+
"bitflags 1.3.2",
|
|
719
|
+
"core-foundation 0.9.4",
|
|
720
|
+
"core-graphics-types 0.1.3",
|
|
721
|
+
"foreign-types",
|
|
722
|
+
"libc",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "core-graphics-types"
|
|
727
|
+
version = "0.1.3"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
730
|
+
dependencies = [
|
|
731
|
+
"bitflags 1.3.2",
|
|
732
|
+
"core-foundation 0.9.4",
|
|
733
|
+
"libc",
|
|
734
|
+
]
|
|
735
|
+
|
|
736
|
+
[[package]]
|
|
737
|
+
name = "core-graphics-types"
|
|
738
|
+
version = "0.2.0"
|
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
+
checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
|
|
741
|
+
dependencies = [
|
|
742
|
+
"bitflags 2.10.0",
|
|
743
|
+
"core-foundation 0.10.1",
|
|
744
|
+
"libc",
|
|
745
|
+
]
|
|
746
|
+
|
|
747
|
+
[[package]]
|
|
748
|
+
name = "crc32fast"
|
|
749
|
+
version = "1.5.0"
|
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
751
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
752
|
+
dependencies = [
|
|
753
|
+
"cfg-if",
|
|
754
|
+
]
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "crossbeam-utils"
|
|
758
|
+
version = "0.8.21"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "crunchy"
|
|
764
|
+
version = "0.2.4"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
767
|
+
|
|
768
|
+
[[package]]
|
|
769
|
+
name = "cursor-icon"
|
|
770
|
+
version = "1.2.0"
|
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
|
+
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
|
773
|
+
|
|
774
|
+
[[package]]
|
|
775
|
+
name = "darling"
|
|
776
|
+
version = "0.10.2"
|
|
777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
778
|
+
checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
|
|
779
|
+
dependencies = [
|
|
780
|
+
"darling_core",
|
|
781
|
+
"darling_macro",
|
|
782
|
+
]
|
|
783
|
+
|
|
784
|
+
[[package]]
|
|
785
|
+
name = "darling_core"
|
|
786
|
+
version = "0.10.2"
|
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
|
+
checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
|
|
789
|
+
dependencies = [
|
|
790
|
+
"fnv",
|
|
791
|
+
"ident_case",
|
|
792
|
+
"proc-macro2",
|
|
793
|
+
"quote",
|
|
794
|
+
"strsim",
|
|
795
|
+
"syn 1.0.109",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "darling_macro"
|
|
800
|
+
version = "0.10.2"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"darling_core",
|
|
805
|
+
"quote",
|
|
806
|
+
"syn 1.0.109",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "derive_builder"
|
|
811
|
+
version = "0.9.0"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"darling",
|
|
816
|
+
"derive_builder_core",
|
|
817
|
+
"proc-macro2",
|
|
818
|
+
"quote",
|
|
819
|
+
"syn 1.0.109",
|
|
820
|
+
]
|
|
821
|
+
|
|
822
|
+
[[package]]
|
|
823
|
+
name = "derive_builder_core"
|
|
824
|
+
version = "0.9.0"
|
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
826
|
+
checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
|
|
827
|
+
dependencies = [
|
|
828
|
+
"darling",
|
|
829
|
+
"proc-macro2",
|
|
830
|
+
"quote",
|
|
831
|
+
"syn 1.0.109",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "derive_more"
|
|
836
|
+
version = "0.99.20"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f"
|
|
839
|
+
dependencies = [
|
|
840
|
+
"convert_case",
|
|
841
|
+
"proc-macro2",
|
|
842
|
+
"quote",
|
|
843
|
+
"rustc_version",
|
|
844
|
+
"syn 2.0.111",
|
|
845
|
+
]
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "dispatch"
|
|
849
|
+
version = "0.2.0"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
852
|
+
|
|
853
|
+
[[package]]
|
|
854
|
+
name = "dispatch2"
|
|
855
|
+
version = "0.3.0"
|
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
+
checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
|
|
858
|
+
dependencies = [
|
|
859
|
+
"bitflags 2.10.0",
|
|
860
|
+
"objc2 0.6.3",
|
|
861
|
+
]
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "displaydoc"
|
|
865
|
+
version = "0.2.5"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"proc-macro2",
|
|
870
|
+
"quote",
|
|
871
|
+
"syn 2.0.111",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "dlib"
|
|
876
|
+
version = "0.5.2"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"libloading",
|
|
881
|
+
]
|
|
882
|
+
|
|
883
|
+
[[package]]
|
|
884
|
+
name = "document-features"
|
|
885
|
+
version = "0.2.12"
|
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
888
|
+
dependencies = [
|
|
889
|
+
"litrs",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "downcast-rs"
|
|
894
|
+
version = "1.2.1"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "dpi"
|
|
900
|
+
version = "0.1.2"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "ecolor"
|
|
906
|
+
version = "0.33.3"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "71ddb8ac7643d1dba1bb02110e804406dd459a838efcb14011ced10556711a8e"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"bytemuck",
|
|
911
|
+
"emath",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "eframe"
|
|
916
|
+
version = "0.33.3"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "457481173e6db5ca9fa2be93a58df8f4c7be639587aeb4853b526c6cf87db4e6"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"ahash",
|
|
921
|
+
"bytemuck",
|
|
922
|
+
"document-features",
|
|
923
|
+
"egui",
|
|
924
|
+
"egui-wgpu",
|
|
925
|
+
"egui-winit",
|
|
926
|
+
"egui_glow",
|
|
927
|
+
"glow",
|
|
928
|
+
"glutin",
|
|
929
|
+
"glutin-winit",
|
|
930
|
+
"image",
|
|
931
|
+
"js-sys",
|
|
932
|
+
"log",
|
|
933
|
+
"objc2 0.5.2",
|
|
934
|
+
"objc2-app-kit 0.2.2",
|
|
935
|
+
"objc2-foundation 0.2.2",
|
|
936
|
+
"parking_lot",
|
|
937
|
+
"percent-encoding",
|
|
938
|
+
"profiling",
|
|
939
|
+
"raw-window-handle",
|
|
940
|
+
"static_assertions",
|
|
941
|
+
"wasm-bindgen",
|
|
942
|
+
"wasm-bindgen-futures",
|
|
943
|
+
"web-sys",
|
|
944
|
+
"web-time",
|
|
945
|
+
"windows-sys 0.61.2",
|
|
946
|
+
"winit",
|
|
947
|
+
]
|
|
948
|
+
|
|
949
|
+
[[package]]
|
|
950
|
+
name = "egui"
|
|
951
|
+
version = "0.33.3"
|
|
952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
+
checksum = "6a9b567d356674e9a5121ed3fedfb0a7c31e059fe71f6972b691bcd0bfc284e3"
|
|
954
|
+
dependencies = [
|
|
955
|
+
"accesskit",
|
|
956
|
+
"ahash",
|
|
957
|
+
"bitflags 2.10.0",
|
|
958
|
+
"emath",
|
|
959
|
+
"epaint",
|
|
960
|
+
"log",
|
|
961
|
+
"nohash-hasher",
|
|
962
|
+
"profiling",
|
|
963
|
+
"smallvec",
|
|
964
|
+
"unicode-segmentation",
|
|
965
|
+
]
|
|
966
|
+
|
|
967
|
+
[[package]]
|
|
968
|
+
name = "egui-wgpu"
|
|
969
|
+
version = "0.33.3"
|
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
+
checksum = "5e4d209971c84b2352a06174abdba701af1e552ce56b144d96f2bd50a3c91236"
|
|
972
|
+
dependencies = [
|
|
973
|
+
"ahash",
|
|
974
|
+
"bytemuck",
|
|
975
|
+
"document-features",
|
|
976
|
+
"egui",
|
|
977
|
+
"epaint",
|
|
978
|
+
"log",
|
|
979
|
+
"profiling",
|
|
980
|
+
"thiserror 2.0.17",
|
|
981
|
+
"type-map",
|
|
982
|
+
"web-time",
|
|
983
|
+
"wgpu",
|
|
984
|
+
"winit",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "egui-winit"
|
|
989
|
+
version = "0.33.3"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "ec6687e5bb551702f4ad10ac428bab12acf9d53047ebb1082d4a0ed8c6251a29"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"accesskit_winit",
|
|
994
|
+
"arboard",
|
|
995
|
+
"bytemuck",
|
|
996
|
+
"egui",
|
|
997
|
+
"log",
|
|
998
|
+
"objc2 0.5.2",
|
|
999
|
+
"objc2-foundation 0.2.2",
|
|
1000
|
+
"objc2-ui-kit",
|
|
1001
|
+
"profiling",
|
|
1002
|
+
"raw-window-handle",
|
|
1003
|
+
"smithay-clipboard",
|
|
1004
|
+
"web-time",
|
|
1005
|
+
"webbrowser",
|
|
1006
|
+
"winit",
|
|
1007
|
+
]
|
|
1008
|
+
|
|
1009
|
+
[[package]]
|
|
1010
|
+
name = "egui_glow"
|
|
1011
|
+
version = "0.33.3"
|
|
1012
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1013
|
+
checksum = "6420863ea1d90e750f75075231a260030ad8a9f30a7cef82cdc966492dc4c4eb"
|
|
1014
|
+
dependencies = [
|
|
1015
|
+
"bytemuck",
|
|
1016
|
+
"egui",
|
|
1017
|
+
"glow",
|
|
1018
|
+
"log",
|
|
1019
|
+
"memoffset",
|
|
1020
|
+
"profiling",
|
|
1021
|
+
"wasm-bindgen",
|
|
1022
|
+
"web-sys",
|
|
1023
|
+
"winit",
|
|
1024
|
+
]
|
|
1025
|
+
|
|
1026
|
+
[[package]]
|
|
1027
|
+
name = "emath"
|
|
1028
|
+
version = "0.33.3"
|
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
+
checksum = "491bdf728bf25ddd9ad60d4cf1c48588fa82c013a2440b91aa7fc43e34a07c32"
|
|
1031
|
+
dependencies = [
|
|
1032
|
+
"bytemuck",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "endi"
|
|
1037
|
+
version = "1.1.1"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "enumflags2"
|
|
1043
|
+
version = "0.7.12"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"enumflags2_derive",
|
|
1048
|
+
"serde",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "enumflags2_derive"
|
|
1053
|
+
version = "0.7.12"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"proc-macro2",
|
|
1058
|
+
"quote",
|
|
1059
|
+
"syn 2.0.111",
|
|
1060
|
+
]
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "epaint"
|
|
1064
|
+
version = "0.33.3"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "009d0dd3c2163823a0abdb899451ecbc78798dec545ee91b43aff1fa790bab62"
|
|
1067
|
+
dependencies = [
|
|
1068
|
+
"ab_glyph",
|
|
1069
|
+
"ahash",
|
|
1070
|
+
"bytemuck",
|
|
1071
|
+
"ecolor",
|
|
1072
|
+
"emath",
|
|
1073
|
+
"epaint_default_fonts",
|
|
1074
|
+
"log",
|
|
1075
|
+
"nohash-hasher",
|
|
1076
|
+
"parking_lot",
|
|
1077
|
+
"profiling",
|
|
1078
|
+
]
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "epaint_default_fonts"
|
|
1082
|
+
version = "0.33.3"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "5c4fbe202b6578d3d56428fa185cdf114a05e49da05f477b3c7f0fbb221f1862"
|
|
1085
|
+
|
|
1086
|
+
[[package]]
|
|
1087
|
+
name = "equivalent"
|
|
1088
|
+
version = "1.0.2"
|
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "errno"
|
|
1094
|
+
version = "0.3.14"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1097
|
+
dependencies = [
|
|
1098
|
+
"libc",
|
|
1099
|
+
"windows-sys 0.61.2",
|
|
1100
|
+
]
|
|
1101
|
+
|
|
1102
|
+
[[package]]
|
|
1103
|
+
name = "error-code"
|
|
1104
|
+
version = "3.3.2"
|
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
+
checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
|
|
1107
|
+
|
|
1108
|
+
[[package]]
|
|
1109
|
+
name = "event-listener"
|
|
1110
|
+
version = "5.4.1"
|
|
1111
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1112
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
1113
|
+
dependencies = [
|
|
1114
|
+
"concurrent-queue",
|
|
1115
|
+
"parking",
|
|
1116
|
+
"pin-project-lite",
|
|
1117
|
+
]
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "event-listener-strategy"
|
|
1121
|
+
version = "0.5.4"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"event-listener",
|
|
1126
|
+
"pin-project-lite",
|
|
1127
|
+
]
|
|
1128
|
+
|
|
1129
|
+
[[package]]
|
|
1130
|
+
name = "fastrand"
|
|
1131
|
+
version = "2.3.0"
|
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1133
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "fax"
|
|
1137
|
+
version = "0.2.6"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "f05de7d48f37cd6730705cbca900770cab77a89f413d23e100ad7fad7795a0ab"
|
|
1140
|
+
dependencies = [
|
|
1141
|
+
"fax_derive",
|
|
1142
|
+
]
|
|
1143
|
+
|
|
1144
|
+
[[package]]
|
|
1145
|
+
name = "fax_derive"
|
|
1146
|
+
version = "0.2.0"
|
|
1147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1148
|
+
checksum = "a0aca10fb742cb43f9e7bb8467c91aa9bcb8e3ffbc6a6f7389bb93ffc920577d"
|
|
1149
|
+
dependencies = [
|
|
1150
|
+
"proc-macro2",
|
|
1151
|
+
"quote",
|
|
1152
|
+
"syn 2.0.111",
|
|
1153
|
+
]
|
|
1154
|
+
|
|
1155
|
+
[[package]]
|
|
1156
|
+
name = "fdeflate"
|
|
1157
|
+
version = "0.3.7"
|
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
1160
|
+
dependencies = [
|
|
1161
|
+
"simd-adler32",
|
|
1162
|
+
]
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "find-msvc-tools"
|
|
1166
|
+
version = "0.1.5"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
1169
|
+
|
|
1170
|
+
[[package]]
|
|
1171
|
+
name = "flate2"
|
|
1172
|
+
version = "1.1.5"
|
|
1173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1174
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
1175
|
+
dependencies = [
|
|
1176
|
+
"crc32fast",
|
|
1177
|
+
"miniz_oxide",
|
|
1178
|
+
]
|
|
1179
|
+
|
|
1180
|
+
[[package]]
|
|
1181
|
+
name = "fnv"
|
|
1182
|
+
version = "1.0.7"
|
|
1183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1184
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1185
|
+
|
|
1186
|
+
[[package]]
|
|
1187
|
+
name = "foldhash"
|
|
1188
|
+
version = "0.1.5"
|
|
1189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1190
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "foldhash"
|
|
1194
|
+
version = "0.2.0"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "foreign-types"
|
|
1200
|
+
version = "0.5.0"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"foreign-types-macros",
|
|
1205
|
+
"foreign-types-shared",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "foreign-types-macros"
|
|
1210
|
+
version = "0.2.3"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"proc-macro2",
|
|
1215
|
+
"quote",
|
|
1216
|
+
"syn 2.0.111",
|
|
1217
|
+
]
|
|
1218
|
+
|
|
1219
|
+
[[package]]
|
|
1220
|
+
name = "foreign-types-shared"
|
|
1221
|
+
version = "0.3.1"
|
|
1222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1223
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
1224
|
+
|
|
1225
|
+
[[package]]
|
|
1226
|
+
name = "form_urlencoded"
|
|
1227
|
+
version = "1.2.2"
|
|
1228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1229
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
1230
|
+
dependencies = [
|
|
1231
|
+
"percent-encoding",
|
|
1232
|
+
]
|
|
1233
|
+
|
|
1234
|
+
[[package]]
|
|
1235
|
+
name = "futures-core"
|
|
1236
|
+
version = "0.3.31"
|
|
1237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "futures-io"
|
|
1242
|
+
version = "0.3.31"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1245
|
+
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "futures-lite"
|
|
1248
|
+
version = "2.6.1"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"fastrand",
|
|
1253
|
+
"futures-core",
|
|
1254
|
+
"futures-io",
|
|
1255
|
+
"parking",
|
|
1256
|
+
"pin-project-lite",
|
|
1257
|
+
]
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "futures-macro"
|
|
1261
|
+
version = "0.3.31"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"proc-macro2",
|
|
1266
|
+
"quote",
|
|
1267
|
+
"syn 2.0.111",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "futures-task"
|
|
1272
|
+
version = "0.3.31"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "futures-util"
|
|
1278
|
+
version = "0.3.31"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1281
|
+
dependencies = [
|
|
1282
|
+
"futures-core",
|
|
1283
|
+
"futures-macro",
|
|
1284
|
+
"futures-task",
|
|
1285
|
+
"pin-project-lite",
|
|
1286
|
+
"pin-utils",
|
|
1287
|
+
"slab",
|
|
1288
|
+
]
|
|
1289
|
+
|
|
1290
|
+
[[package]]
|
|
1291
|
+
name = "gds21"
|
|
1292
|
+
version = "0.2.0"
|
|
1293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1294
|
+
checksum = "052f049eeb6d2edba9bf69bf17bb55ae4a4ac28c8b712d88c9b71027910eaadb"
|
|
1295
|
+
dependencies = [
|
|
1296
|
+
"byteorder",
|
|
1297
|
+
"chrono",
|
|
1298
|
+
"derive_builder",
|
|
1299
|
+
"derive_more",
|
|
1300
|
+
"layout21utils",
|
|
1301
|
+
"num-derive",
|
|
1302
|
+
"num-traits",
|
|
1303
|
+
"serde",
|
|
1304
|
+
"serde_derive",
|
|
1305
|
+
"serde_json",
|
|
1306
|
+
]
|
|
1307
|
+
|
|
1308
|
+
[[package]]
|
|
1309
|
+
name = "gethostname"
|
|
1310
|
+
version = "1.1.0"
|
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
+
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
1313
|
+
dependencies = [
|
|
1314
|
+
"rustix 1.1.2",
|
|
1315
|
+
"windows-link 0.2.1",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "getrandom"
|
|
1320
|
+
version = "0.3.4"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1323
|
+
dependencies = [
|
|
1324
|
+
"cfg-if",
|
|
1325
|
+
"libc",
|
|
1326
|
+
"r-efi",
|
|
1327
|
+
"wasip2",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "gl_generator"
|
|
1332
|
+
version = "0.14.0"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"khronos_api",
|
|
1337
|
+
"log",
|
|
1338
|
+
"xml-rs",
|
|
1339
|
+
]
|
|
1340
|
+
|
|
1341
|
+
[[package]]
|
|
1342
|
+
name = "glow"
|
|
1343
|
+
version = "0.16.0"
|
|
1344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1345
|
+
checksum = "c5e5ea60d70410161c8bf5da3fdfeaa1c72ed2c15f8bbb9d19fe3a4fad085f08"
|
|
1346
|
+
dependencies = [
|
|
1347
|
+
"js-sys",
|
|
1348
|
+
"slotmap",
|
|
1349
|
+
"wasm-bindgen",
|
|
1350
|
+
"web-sys",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "glutin"
|
|
1355
|
+
version = "0.32.3"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "12124de845cacfebedff80e877bb37b5b75c34c5a4c89e47e1cdd67fb6041325"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"bitflags 2.10.0",
|
|
1360
|
+
"cfg_aliases",
|
|
1361
|
+
"cgl",
|
|
1362
|
+
"dispatch2",
|
|
1363
|
+
"glutin_egl_sys",
|
|
1364
|
+
"glutin_glx_sys",
|
|
1365
|
+
"glutin_wgl_sys",
|
|
1366
|
+
"libloading",
|
|
1367
|
+
"objc2 0.6.3",
|
|
1368
|
+
"objc2-app-kit 0.3.2",
|
|
1369
|
+
"objc2-core-foundation",
|
|
1370
|
+
"objc2-foundation 0.3.2",
|
|
1371
|
+
"once_cell",
|
|
1372
|
+
"raw-window-handle",
|
|
1373
|
+
"wayland-sys",
|
|
1374
|
+
"windows-sys 0.52.0",
|
|
1375
|
+
"x11-dl",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "glutin-winit"
|
|
1380
|
+
version = "0.5.0"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "85edca7075f8fc728f28cb8fbb111a96c3b89e930574369e3e9c27eb75d3788f"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"cfg_aliases",
|
|
1385
|
+
"glutin",
|
|
1386
|
+
"raw-window-handle",
|
|
1387
|
+
"winit",
|
|
1388
|
+
]
|
|
1389
|
+
|
|
1390
|
+
[[package]]
|
|
1391
|
+
name = "glutin_egl_sys"
|
|
1392
|
+
version = "0.7.1"
|
|
1393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1394
|
+
checksum = "4c4680ba6195f424febdc3ba46e7a42a0e58743f2edb115297b86d7f8ecc02d2"
|
|
1395
|
+
dependencies = [
|
|
1396
|
+
"gl_generator",
|
|
1397
|
+
"windows-sys 0.52.0",
|
|
1398
|
+
]
|
|
1399
|
+
|
|
1400
|
+
[[package]]
|
|
1401
|
+
name = "glutin_glx_sys"
|
|
1402
|
+
version = "0.6.1"
|
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1404
|
+
checksum = "8a7bb2938045a88b612499fbcba375a77198e01306f52272e692f8c1f3751185"
|
|
1405
|
+
dependencies = [
|
|
1406
|
+
"gl_generator",
|
|
1407
|
+
"x11-dl",
|
|
1408
|
+
]
|
|
1409
|
+
|
|
1410
|
+
[[package]]
|
|
1411
|
+
name = "glutin_wgl_sys"
|
|
1412
|
+
version = "0.6.1"
|
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1414
|
+
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
|
|
1415
|
+
dependencies = [
|
|
1416
|
+
"gl_generator",
|
|
1417
|
+
]
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "gpu-alloc"
|
|
1421
|
+
version = "0.6.0"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"bitflags 2.10.0",
|
|
1426
|
+
"gpu-alloc-types",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "gpu-alloc-types"
|
|
1431
|
+
version = "0.3.0"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
|
|
1434
|
+
dependencies = [
|
|
1435
|
+
"bitflags 2.10.0",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "gpu-allocator"
|
|
1440
|
+
version = "0.27.0"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"log",
|
|
1445
|
+
"presser",
|
|
1446
|
+
"thiserror 1.0.69",
|
|
1447
|
+
"windows 0.58.0",
|
|
1448
|
+
]
|
|
1449
|
+
|
|
1450
|
+
[[package]]
|
|
1451
|
+
name = "gpu-descriptor"
|
|
1452
|
+
version = "0.3.2"
|
|
1453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1454
|
+
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
1455
|
+
dependencies = [
|
|
1456
|
+
"bitflags 2.10.0",
|
|
1457
|
+
"gpu-descriptor-types",
|
|
1458
|
+
"hashbrown 0.15.5",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "gpu-descriptor-types"
|
|
1463
|
+
version = "0.2.0"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
|
|
1466
|
+
dependencies = [
|
|
1467
|
+
"bitflags 2.10.0",
|
|
1468
|
+
]
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "half"
|
|
1472
|
+
version = "2.7.1"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"cfg-if",
|
|
1477
|
+
"crunchy",
|
|
1478
|
+
"num-traits",
|
|
1479
|
+
"zerocopy",
|
|
1480
|
+
]
|
|
1481
|
+
|
|
1482
|
+
[[package]]
|
|
1483
|
+
name = "hashbrown"
|
|
1484
|
+
version = "0.12.3"
|
|
1485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1486
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
1487
|
+
|
|
1488
|
+
[[package]]
|
|
1489
|
+
name = "hashbrown"
|
|
1490
|
+
version = "0.15.5"
|
|
1491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1492
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1493
|
+
dependencies = [
|
|
1494
|
+
"foldhash 0.1.5",
|
|
1495
|
+
]
|
|
1496
|
+
|
|
1497
|
+
[[package]]
|
|
1498
|
+
name = "hashbrown"
|
|
1499
|
+
version = "0.16.1"
|
|
1500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1501
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1502
|
+
dependencies = [
|
|
1503
|
+
"foldhash 0.2.0",
|
|
1504
|
+
]
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "heck"
|
|
1508
|
+
version = "0.5.0"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "hermit-abi"
|
|
1514
|
+
version = "0.5.2"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "hex"
|
|
1520
|
+
version = "0.4.3"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "hexf-parse"
|
|
1526
|
+
version = "0.2.1"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
1529
|
+
|
|
1530
|
+
[[package]]
|
|
1531
|
+
name = "iana-time-zone"
|
|
1532
|
+
version = "0.1.64"
|
|
1533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1534
|
+
checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
|
|
1535
|
+
dependencies = [
|
|
1536
|
+
"android_system_properties",
|
|
1537
|
+
"core-foundation-sys",
|
|
1538
|
+
"iana-time-zone-haiku",
|
|
1539
|
+
"js-sys",
|
|
1540
|
+
"log",
|
|
1541
|
+
"wasm-bindgen",
|
|
1542
|
+
"windows-core 0.62.2",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "iana-time-zone-haiku"
|
|
1547
|
+
version = "0.1.2"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
1550
|
+
dependencies = [
|
|
1551
|
+
"cc",
|
|
1552
|
+
]
|
|
1553
|
+
|
|
1554
|
+
[[package]]
|
|
1555
|
+
name = "icu_collections"
|
|
1556
|
+
version = "2.1.1"
|
|
1557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1558
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
1559
|
+
dependencies = [
|
|
1560
|
+
"displaydoc",
|
|
1561
|
+
"potential_utf",
|
|
1562
|
+
"yoke",
|
|
1563
|
+
"zerofrom",
|
|
1564
|
+
"zerovec",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "icu_locale_core"
|
|
1569
|
+
version = "2.1.1"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"displaydoc",
|
|
1574
|
+
"litemap",
|
|
1575
|
+
"tinystr",
|
|
1576
|
+
"writeable",
|
|
1577
|
+
"zerovec",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "icu_normalizer"
|
|
1582
|
+
version = "2.1.1"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
1585
|
+
dependencies = [
|
|
1586
|
+
"icu_collections",
|
|
1587
|
+
"icu_normalizer_data",
|
|
1588
|
+
"icu_properties",
|
|
1589
|
+
"icu_provider",
|
|
1590
|
+
"smallvec",
|
|
1591
|
+
"zerovec",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "icu_normalizer_data"
|
|
1596
|
+
version = "2.1.1"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "icu_properties"
|
|
1602
|
+
version = "2.1.2"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"icu_collections",
|
|
1607
|
+
"icu_locale_core",
|
|
1608
|
+
"icu_properties_data",
|
|
1609
|
+
"icu_provider",
|
|
1610
|
+
"zerotrie",
|
|
1611
|
+
"zerovec",
|
|
1612
|
+
]
|
|
1613
|
+
|
|
1614
|
+
[[package]]
|
|
1615
|
+
name = "icu_properties_data"
|
|
1616
|
+
version = "2.1.2"
|
|
1617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1618
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
1619
|
+
|
|
1620
|
+
[[package]]
|
|
1621
|
+
name = "icu_provider"
|
|
1622
|
+
version = "2.1.1"
|
|
1623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1624
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
1625
|
+
dependencies = [
|
|
1626
|
+
"displaydoc",
|
|
1627
|
+
"icu_locale_core",
|
|
1628
|
+
"writeable",
|
|
1629
|
+
"yoke",
|
|
1630
|
+
"zerofrom",
|
|
1631
|
+
"zerotrie",
|
|
1632
|
+
"zerovec",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "ident_case"
|
|
1637
|
+
version = "1.0.1"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "idna"
|
|
1643
|
+
version = "1.1.0"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"idna_adapter",
|
|
1648
|
+
"smallvec",
|
|
1649
|
+
"utf8_iter",
|
|
1650
|
+
]
|
|
1651
|
+
|
|
1652
|
+
[[package]]
|
|
1653
|
+
name = "idna_adapter"
|
|
1654
|
+
version = "1.2.1"
|
|
1655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1656
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
1657
|
+
dependencies = [
|
|
1658
|
+
"icu_normalizer",
|
|
1659
|
+
"icu_properties",
|
|
1660
|
+
]
|
|
1661
|
+
|
|
1662
|
+
[[package]]
|
|
1663
|
+
name = "image"
|
|
1664
|
+
version = "0.25.9"
|
|
1665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1666
|
+
checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
|
|
1667
|
+
dependencies = [
|
|
1668
|
+
"bytemuck",
|
|
1669
|
+
"byteorder-lite",
|
|
1670
|
+
"moxcms",
|
|
1671
|
+
"num-traits",
|
|
1672
|
+
"png",
|
|
1673
|
+
"tiff",
|
|
1674
|
+
]
|
|
1675
|
+
|
|
1676
|
+
[[package]]
|
|
1677
|
+
name = "indexmap"
|
|
1678
|
+
version = "1.9.3"
|
|
1679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1680
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
1681
|
+
dependencies = [
|
|
1682
|
+
"autocfg",
|
|
1683
|
+
"hashbrown 0.12.3",
|
|
1684
|
+
]
|
|
1685
|
+
|
|
1686
|
+
[[package]]
|
|
1687
|
+
name = "indexmap"
|
|
1688
|
+
version = "2.12.1"
|
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1690
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
1691
|
+
dependencies = [
|
|
1692
|
+
"equivalent",
|
|
1693
|
+
"hashbrown 0.16.1",
|
|
1694
|
+
]
|
|
1695
|
+
|
|
1696
|
+
[[package]]
|
|
1697
|
+
name = "indoc"
|
|
1698
|
+
version = "2.0.7"
|
|
1699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1700
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1701
|
+
dependencies = [
|
|
1702
|
+
"rustversion",
|
|
1703
|
+
]
|
|
1704
|
+
|
|
1705
|
+
[[package]]
|
|
1706
|
+
name = "itoa"
|
|
1707
|
+
version = "1.0.16"
|
|
1708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1709
|
+
checksum = "7ee5b5339afb4c41626dde77b7a611bd4f2c202b897852b4bcf5d03eddc61010"
|
|
1710
|
+
|
|
1711
|
+
[[package]]
|
|
1712
|
+
name = "jni"
|
|
1713
|
+
version = "0.21.1"
|
|
1714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1715
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
1716
|
+
dependencies = [
|
|
1717
|
+
"cesu8",
|
|
1718
|
+
"cfg-if",
|
|
1719
|
+
"combine",
|
|
1720
|
+
"jni-sys",
|
|
1721
|
+
"log",
|
|
1722
|
+
"thiserror 1.0.69",
|
|
1723
|
+
"walkdir",
|
|
1724
|
+
"windows-sys 0.45.0",
|
|
1725
|
+
]
|
|
1726
|
+
|
|
1727
|
+
[[package]]
|
|
1728
|
+
name = "jni-sys"
|
|
1729
|
+
version = "0.3.0"
|
|
1730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
1732
|
+
|
|
1733
|
+
[[package]]
|
|
1734
|
+
name = "jobserver"
|
|
1735
|
+
version = "0.1.34"
|
|
1736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1737
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1738
|
+
dependencies = [
|
|
1739
|
+
"getrandom",
|
|
1740
|
+
"libc",
|
|
1741
|
+
]
|
|
1742
|
+
|
|
1743
|
+
[[package]]
|
|
1744
|
+
name = "js-sys"
|
|
1745
|
+
version = "0.3.83"
|
|
1746
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1747
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
1748
|
+
dependencies = [
|
|
1749
|
+
"once_cell",
|
|
1750
|
+
"wasm-bindgen",
|
|
1751
|
+
]
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "khronos-egl"
|
|
1755
|
+
version = "6.0.0"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"libc",
|
|
1760
|
+
"libloading",
|
|
1761
|
+
"pkg-config",
|
|
1762
|
+
]
|
|
1763
|
+
|
|
1764
|
+
[[package]]
|
|
1765
|
+
name = "khronos_api"
|
|
1766
|
+
version = "3.1.0"
|
|
1767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1768
|
+
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
1769
|
+
|
|
1770
|
+
[[package]]
|
|
1771
|
+
name = "layout21utils"
|
|
1772
|
+
version = "0.2.0"
|
|
1773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
|
+
checksum = "1737e7a5d11b2c4535a0c2606c4a2c7709d4d83c1028ec4e0d7ee52159bad33e"
|
|
1775
|
+
dependencies = [
|
|
1776
|
+
"by_address",
|
|
1777
|
+
"serde",
|
|
1778
|
+
"serde_derive",
|
|
1779
|
+
"serde_json",
|
|
1780
|
+
"serde_yaml",
|
|
1781
|
+
"toml",
|
|
1782
|
+
]
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "libc"
|
|
1786
|
+
version = "0.2.178"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
1789
|
+
|
|
1790
|
+
[[package]]
|
|
1791
|
+
name = "libloading"
|
|
1792
|
+
version = "0.8.9"
|
|
1793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1794
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1795
|
+
dependencies = [
|
|
1796
|
+
"cfg-if",
|
|
1797
|
+
"windows-link 0.2.1",
|
|
1798
|
+
]
|
|
1799
|
+
|
|
1800
|
+
[[package]]
|
|
1801
|
+
name = "libm"
|
|
1802
|
+
version = "0.2.15"
|
|
1803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1804
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "libredox"
|
|
1808
|
+
version = "0.1.11"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "df15f6eac291ed1cf25865b1ee60399f57e7c227e7f51bdbd4c5270396a9ed50"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"bitflags 2.10.0",
|
|
1813
|
+
"libc",
|
|
1814
|
+
"redox_syscall 0.6.0",
|
|
1815
|
+
]
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "linked-hash-map"
|
|
1819
|
+
version = "0.5.6"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
1822
|
+
|
|
1823
|
+
[[package]]
|
|
1824
|
+
name = "linux-raw-sys"
|
|
1825
|
+
version = "0.4.15"
|
|
1826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1827
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "linux-raw-sys"
|
|
1831
|
+
version = "0.11.0"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
1834
|
+
|
|
1835
|
+
[[package]]
|
|
1836
|
+
name = "litemap"
|
|
1837
|
+
version = "0.8.1"
|
|
1838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
1840
|
+
|
|
1841
|
+
[[package]]
|
|
1842
|
+
name = "litrs"
|
|
1843
|
+
version = "1.0.0"
|
|
1844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1845
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "lock_api"
|
|
1849
|
+
version = "0.4.14"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"scopeguard",
|
|
1854
|
+
]
|
|
1855
|
+
|
|
1856
|
+
[[package]]
|
|
1857
|
+
name = "log"
|
|
1858
|
+
version = "0.4.29"
|
|
1859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1860
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
1861
|
+
|
|
1862
|
+
[[package]]
|
|
1863
|
+
name = "malloc_buf"
|
|
1864
|
+
version = "0.0.6"
|
|
1865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1866
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
1867
|
+
dependencies = [
|
|
1868
|
+
"libc",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "memchr"
|
|
1873
|
+
version = "2.7.6"
|
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
1876
|
+
|
|
1877
|
+
[[package]]
|
|
1878
|
+
name = "memmap2"
|
|
1879
|
+
version = "0.9.9"
|
|
1880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1881
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
1882
|
+
dependencies = [
|
|
1883
|
+
"libc",
|
|
1884
|
+
]
|
|
1885
|
+
|
|
1886
|
+
[[package]]
|
|
1887
|
+
name = "memoffset"
|
|
1888
|
+
version = "0.9.1"
|
|
1889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1890
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1891
|
+
dependencies = [
|
|
1892
|
+
"autocfg",
|
|
1893
|
+
]
|
|
1894
|
+
|
|
1895
|
+
[[package]]
|
|
1896
|
+
name = "metal"
|
|
1897
|
+
version = "0.32.0"
|
|
1898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
+
checksum = "00c15a6f673ff72ddcc22394663290f870fb224c1bfce55734a75c414150e605"
|
|
1900
|
+
dependencies = [
|
|
1901
|
+
"bitflags 2.10.0",
|
|
1902
|
+
"block",
|
|
1903
|
+
"core-graphics-types 0.2.0",
|
|
1904
|
+
"foreign-types",
|
|
1905
|
+
"log",
|
|
1906
|
+
"objc",
|
|
1907
|
+
"paste",
|
|
1908
|
+
]
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "miniz_oxide"
|
|
1912
|
+
version = "0.8.9"
|
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"adler2",
|
|
1917
|
+
"simd-adler32",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "moxcms"
|
|
1922
|
+
version = "0.7.11"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"num-traits",
|
|
1927
|
+
"pxfm",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "naga"
|
|
1932
|
+
version = "27.0.3"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "066cf25f0e8b11ee0df221219010f213ad429855f57c494f995590c861a9a7d8"
|
|
1935
|
+
dependencies = [
|
|
1936
|
+
"arrayvec",
|
|
1937
|
+
"bit-set",
|
|
1938
|
+
"bitflags 2.10.0",
|
|
1939
|
+
"cfg-if",
|
|
1940
|
+
"cfg_aliases",
|
|
1941
|
+
"codespan-reporting",
|
|
1942
|
+
"half",
|
|
1943
|
+
"hashbrown 0.16.1",
|
|
1944
|
+
"hexf-parse",
|
|
1945
|
+
"indexmap 2.12.1",
|
|
1946
|
+
"libm",
|
|
1947
|
+
"log",
|
|
1948
|
+
"num-traits",
|
|
1949
|
+
"once_cell",
|
|
1950
|
+
"rustc-hash 1.1.0",
|
|
1951
|
+
"spirv",
|
|
1952
|
+
"thiserror 2.0.17",
|
|
1953
|
+
"unicode-ident",
|
|
1954
|
+
]
|
|
1955
|
+
|
|
1956
|
+
[[package]]
|
|
1957
|
+
name = "ndk"
|
|
1958
|
+
version = "0.9.0"
|
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1960
|
+
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
|
|
1961
|
+
dependencies = [
|
|
1962
|
+
"bitflags 2.10.0",
|
|
1963
|
+
"jni-sys",
|
|
1964
|
+
"log",
|
|
1965
|
+
"ndk-sys",
|
|
1966
|
+
"num_enum",
|
|
1967
|
+
"raw-window-handle",
|
|
1968
|
+
"thiserror 1.0.69",
|
|
1969
|
+
]
|
|
1970
|
+
|
|
1971
|
+
[[package]]
|
|
1972
|
+
name = "ndk-context"
|
|
1973
|
+
version = "0.1.1"
|
|
1974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1975
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
1976
|
+
|
|
1977
|
+
[[package]]
|
|
1978
|
+
name = "ndk-sys"
|
|
1979
|
+
version = "0.6.0+11769913"
|
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1981
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
1982
|
+
dependencies = [
|
|
1983
|
+
"jni-sys",
|
|
1984
|
+
]
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "nix"
|
|
1988
|
+
version = "0.30.1"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"bitflags 2.10.0",
|
|
1993
|
+
"cfg-if",
|
|
1994
|
+
"cfg_aliases",
|
|
1995
|
+
"libc",
|
|
1996
|
+
"memoffset",
|
|
1997
|
+
]
|
|
1998
|
+
|
|
1999
|
+
[[package]]
|
|
2000
|
+
name = "nohash-hasher"
|
|
2001
|
+
version = "0.2.0"
|
|
2002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2003
|
+
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "num-derive"
|
|
2007
|
+
version = "0.3.3"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"proc-macro2",
|
|
2012
|
+
"quote",
|
|
2013
|
+
"syn 1.0.109",
|
|
2014
|
+
]
|
|
2015
|
+
|
|
2016
|
+
[[package]]
|
|
2017
|
+
name = "num-traits"
|
|
2018
|
+
version = "0.2.19"
|
|
2019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2020
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2021
|
+
dependencies = [
|
|
2022
|
+
"autocfg",
|
|
2023
|
+
"libm",
|
|
2024
|
+
]
|
|
2025
|
+
|
|
2026
|
+
[[package]]
|
|
2027
|
+
name = "num_enum"
|
|
2028
|
+
version = "0.7.5"
|
|
2029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2030
|
+
checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
|
|
2031
|
+
dependencies = [
|
|
2032
|
+
"num_enum_derive",
|
|
2033
|
+
"rustversion",
|
|
2034
|
+
]
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "num_enum_derive"
|
|
2038
|
+
version = "0.7.5"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
|
|
2041
|
+
dependencies = [
|
|
2042
|
+
"proc-macro-crate",
|
|
2043
|
+
"proc-macro2",
|
|
2044
|
+
"quote",
|
|
2045
|
+
"syn 2.0.111",
|
|
2046
|
+
]
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "objc"
|
|
2050
|
+
version = "0.2.7"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
2053
|
+
dependencies = [
|
|
2054
|
+
"malloc_buf",
|
|
2055
|
+
]
|
|
2056
|
+
|
|
2057
|
+
[[package]]
|
|
2058
|
+
name = "objc-sys"
|
|
2059
|
+
version = "0.3.5"
|
|
2060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2061
|
+
checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
|
|
2062
|
+
|
|
2063
|
+
[[package]]
|
|
2064
|
+
name = "objc2"
|
|
2065
|
+
version = "0.5.2"
|
|
2066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2067
|
+
checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
|
|
2068
|
+
dependencies = [
|
|
2069
|
+
"objc-sys",
|
|
2070
|
+
"objc2-encode",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "objc2"
|
|
2075
|
+
version = "0.6.3"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
|
|
2078
|
+
dependencies = [
|
|
2079
|
+
"objc2-encode",
|
|
2080
|
+
]
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "objc2-app-kit"
|
|
2084
|
+
version = "0.2.2"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
|
|
2087
|
+
dependencies = [
|
|
2088
|
+
"bitflags 2.10.0",
|
|
2089
|
+
"block2",
|
|
2090
|
+
"libc",
|
|
2091
|
+
"objc2 0.5.2",
|
|
2092
|
+
"objc2-core-data",
|
|
2093
|
+
"objc2-core-image",
|
|
2094
|
+
"objc2-foundation 0.2.2",
|
|
2095
|
+
"objc2-quartz-core",
|
|
2096
|
+
]
|
|
2097
|
+
|
|
2098
|
+
[[package]]
|
|
2099
|
+
name = "objc2-app-kit"
|
|
2100
|
+
version = "0.3.2"
|
|
2101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2102
|
+
checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c"
|
|
2103
|
+
dependencies = [
|
|
2104
|
+
"bitflags 2.10.0",
|
|
2105
|
+
"objc2 0.6.3",
|
|
2106
|
+
"objc2-core-foundation",
|
|
2107
|
+
"objc2-core-graphics",
|
|
2108
|
+
"objc2-foundation 0.3.2",
|
|
2109
|
+
]
|
|
2110
|
+
|
|
2111
|
+
[[package]]
|
|
2112
|
+
name = "objc2-cloud-kit"
|
|
2113
|
+
version = "0.2.2"
|
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
+
checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
|
|
2116
|
+
dependencies = [
|
|
2117
|
+
"bitflags 2.10.0",
|
|
2118
|
+
"block2",
|
|
2119
|
+
"objc2 0.5.2",
|
|
2120
|
+
"objc2-core-location",
|
|
2121
|
+
"objc2-foundation 0.2.2",
|
|
2122
|
+
]
|
|
2123
|
+
|
|
2124
|
+
[[package]]
|
|
2125
|
+
name = "objc2-contacts"
|
|
2126
|
+
version = "0.2.2"
|
|
2127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2128
|
+
checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
|
|
2129
|
+
dependencies = [
|
|
2130
|
+
"block2",
|
|
2131
|
+
"objc2 0.5.2",
|
|
2132
|
+
"objc2-foundation 0.2.2",
|
|
2133
|
+
]
|
|
2134
|
+
|
|
2135
|
+
[[package]]
|
|
2136
|
+
name = "objc2-core-data"
|
|
2137
|
+
version = "0.2.2"
|
|
2138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2139
|
+
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
|
|
2140
|
+
dependencies = [
|
|
2141
|
+
"bitflags 2.10.0",
|
|
2142
|
+
"block2",
|
|
2143
|
+
"objc2 0.5.2",
|
|
2144
|
+
"objc2-foundation 0.2.2",
|
|
2145
|
+
]
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "objc2-core-foundation"
|
|
2149
|
+
version = "0.3.2"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
|
|
2152
|
+
dependencies = [
|
|
2153
|
+
"bitflags 2.10.0",
|
|
2154
|
+
"dispatch2",
|
|
2155
|
+
"objc2 0.6.3",
|
|
2156
|
+
]
|
|
2157
|
+
|
|
2158
|
+
[[package]]
|
|
2159
|
+
name = "objc2-core-graphics"
|
|
2160
|
+
version = "0.3.2"
|
|
2161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
+
checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807"
|
|
2163
|
+
dependencies = [
|
|
2164
|
+
"bitflags 2.10.0",
|
|
2165
|
+
"dispatch2",
|
|
2166
|
+
"objc2 0.6.3",
|
|
2167
|
+
"objc2-core-foundation",
|
|
2168
|
+
"objc2-io-surface",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "objc2-core-image"
|
|
2173
|
+
version = "0.2.2"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"block2",
|
|
2178
|
+
"objc2 0.5.2",
|
|
2179
|
+
"objc2-foundation 0.2.2",
|
|
2180
|
+
"objc2-metal",
|
|
2181
|
+
]
|
|
2182
|
+
|
|
2183
|
+
[[package]]
|
|
2184
|
+
name = "objc2-core-location"
|
|
2185
|
+
version = "0.2.2"
|
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
+
checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
|
|
2188
|
+
dependencies = [
|
|
2189
|
+
"block2",
|
|
2190
|
+
"objc2 0.5.2",
|
|
2191
|
+
"objc2-contacts",
|
|
2192
|
+
"objc2-foundation 0.2.2",
|
|
2193
|
+
]
|
|
2194
|
+
|
|
2195
|
+
[[package]]
|
|
2196
|
+
name = "objc2-encode"
|
|
2197
|
+
version = "4.1.0"
|
|
2198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
2200
|
+
|
|
2201
|
+
[[package]]
|
|
2202
|
+
name = "objc2-foundation"
|
|
2203
|
+
version = "0.2.2"
|
|
2204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2205
|
+
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
|
|
2206
|
+
dependencies = [
|
|
2207
|
+
"bitflags 2.10.0",
|
|
2208
|
+
"block2",
|
|
2209
|
+
"dispatch",
|
|
2210
|
+
"libc",
|
|
2211
|
+
"objc2 0.5.2",
|
|
2212
|
+
]
|
|
2213
|
+
|
|
2214
|
+
[[package]]
|
|
2215
|
+
name = "objc2-foundation"
|
|
2216
|
+
version = "0.3.2"
|
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
+
checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
|
|
2219
|
+
dependencies = [
|
|
2220
|
+
"bitflags 2.10.0",
|
|
2221
|
+
"objc2 0.6.3",
|
|
2222
|
+
"objc2-core-foundation",
|
|
2223
|
+
]
|
|
2224
|
+
|
|
2225
|
+
[[package]]
|
|
2226
|
+
name = "objc2-io-surface"
|
|
2227
|
+
version = "0.3.2"
|
|
2228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2229
|
+
checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d"
|
|
2230
|
+
dependencies = [
|
|
2231
|
+
"bitflags 2.10.0",
|
|
2232
|
+
"objc2 0.6.3",
|
|
2233
|
+
"objc2-core-foundation",
|
|
2234
|
+
]
|
|
2235
|
+
|
|
2236
|
+
[[package]]
|
|
2237
|
+
name = "objc2-link-presentation"
|
|
2238
|
+
version = "0.2.2"
|
|
2239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2240
|
+
checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
|
|
2241
|
+
dependencies = [
|
|
2242
|
+
"block2",
|
|
2243
|
+
"objc2 0.5.2",
|
|
2244
|
+
"objc2-app-kit 0.2.2",
|
|
2245
|
+
"objc2-foundation 0.2.2",
|
|
2246
|
+
]
|
|
2247
|
+
|
|
2248
|
+
[[package]]
|
|
2249
|
+
name = "objc2-metal"
|
|
2250
|
+
version = "0.2.2"
|
|
2251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2252
|
+
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
|
|
2253
|
+
dependencies = [
|
|
2254
|
+
"bitflags 2.10.0",
|
|
2255
|
+
"block2",
|
|
2256
|
+
"objc2 0.5.2",
|
|
2257
|
+
"objc2-foundation 0.2.2",
|
|
2258
|
+
]
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "objc2-quartz-core"
|
|
2262
|
+
version = "0.2.2"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
|
|
2265
|
+
dependencies = [
|
|
2266
|
+
"bitflags 2.10.0",
|
|
2267
|
+
"block2",
|
|
2268
|
+
"objc2 0.5.2",
|
|
2269
|
+
"objc2-foundation 0.2.2",
|
|
2270
|
+
"objc2-metal",
|
|
2271
|
+
]
|
|
2272
|
+
|
|
2273
|
+
[[package]]
|
|
2274
|
+
name = "objc2-symbols"
|
|
2275
|
+
version = "0.2.2"
|
|
2276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2277
|
+
checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
|
|
2278
|
+
dependencies = [
|
|
2279
|
+
"objc2 0.5.2",
|
|
2280
|
+
"objc2-foundation 0.2.2",
|
|
2281
|
+
]
|
|
2282
|
+
|
|
2283
|
+
[[package]]
|
|
2284
|
+
name = "objc2-ui-kit"
|
|
2285
|
+
version = "0.2.2"
|
|
2286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2287
|
+
checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
|
|
2288
|
+
dependencies = [
|
|
2289
|
+
"bitflags 2.10.0",
|
|
2290
|
+
"block2",
|
|
2291
|
+
"objc2 0.5.2",
|
|
2292
|
+
"objc2-cloud-kit",
|
|
2293
|
+
"objc2-core-data",
|
|
2294
|
+
"objc2-core-image",
|
|
2295
|
+
"objc2-core-location",
|
|
2296
|
+
"objc2-foundation 0.2.2",
|
|
2297
|
+
"objc2-link-presentation",
|
|
2298
|
+
"objc2-quartz-core",
|
|
2299
|
+
"objc2-symbols",
|
|
2300
|
+
"objc2-uniform-type-identifiers",
|
|
2301
|
+
"objc2-user-notifications",
|
|
2302
|
+
]
|
|
2303
|
+
|
|
2304
|
+
[[package]]
|
|
2305
|
+
name = "objc2-uniform-type-identifiers"
|
|
2306
|
+
version = "0.2.2"
|
|
2307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2308
|
+
checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
|
|
2309
|
+
dependencies = [
|
|
2310
|
+
"block2",
|
|
2311
|
+
"objc2 0.5.2",
|
|
2312
|
+
"objc2-foundation 0.2.2",
|
|
2313
|
+
]
|
|
2314
|
+
|
|
2315
|
+
[[package]]
|
|
2316
|
+
name = "objc2-user-notifications"
|
|
2317
|
+
version = "0.2.2"
|
|
2318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2319
|
+
checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
|
|
2320
|
+
dependencies = [
|
|
2321
|
+
"bitflags 2.10.0",
|
|
2322
|
+
"block2",
|
|
2323
|
+
"objc2 0.5.2",
|
|
2324
|
+
"objc2-core-location",
|
|
2325
|
+
"objc2-foundation 0.2.2",
|
|
2326
|
+
]
|
|
2327
|
+
|
|
2328
|
+
[[package]]
|
|
2329
|
+
name = "once_cell"
|
|
2330
|
+
version = "1.21.3"
|
|
2331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2333
|
+
|
|
2334
|
+
[[package]]
|
|
2335
|
+
name = "orbclient"
|
|
2336
|
+
version = "0.3.49"
|
|
2337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2338
|
+
checksum = "247ad146e19b9437f8604c21f8652423595cf710ad108af40e77d3ae6e96b827"
|
|
2339
|
+
dependencies = [
|
|
2340
|
+
"libredox",
|
|
2341
|
+
]
|
|
2342
|
+
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "ordered-float"
|
|
2345
|
+
version = "5.1.0"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
|
|
2348
|
+
dependencies = [
|
|
2349
|
+
"num-traits",
|
|
2350
|
+
]
|
|
2351
|
+
|
|
2352
|
+
[[package]]
|
|
2353
|
+
name = "ordered-stream"
|
|
2354
|
+
version = "0.2.0"
|
|
2355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2356
|
+
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
|
|
2357
|
+
dependencies = [
|
|
2358
|
+
"futures-core",
|
|
2359
|
+
"pin-project-lite",
|
|
2360
|
+
]
|
|
2361
|
+
|
|
2362
|
+
[[package]]
|
|
2363
|
+
name = "owned_ttf_parser"
|
|
2364
|
+
version = "0.25.1"
|
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2366
|
+
checksum = "36820e9051aca1014ddc75770aab4d68bc1e9e632f0f5627c4086bc216fb583b"
|
|
2367
|
+
dependencies = [
|
|
2368
|
+
"ttf-parser",
|
|
2369
|
+
]
|
|
2370
|
+
|
|
2371
|
+
[[package]]
|
|
2372
|
+
name = "parking"
|
|
2373
|
+
version = "2.2.1"
|
|
2374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2375
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2376
|
+
|
|
2377
|
+
[[package]]
|
|
2378
|
+
name = "parking_lot"
|
|
2379
|
+
version = "0.12.5"
|
|
2380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2381
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2382
|
+
dependencies = [
|
|
2383
|
+
"lock_api",
|
|
2384
|
+
"parking_lot_core",
|
|
2385
|
+
]
|
|
2386
|
+
|
|
2387
|
+
[[package]]
|
|
2388
|
+
name = "parking_lot_core"
|
|
2389
|
+
version = "0.9.12"
|
|
2390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2391
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2392
|
+
dependencies = [
|
|
2393
|
+
"cfg-if",
|
|
2394
|
+
"libc",
|
|
2395
|
+
"redox_syscall 0.5.18",
|
|
2396
|
+
"smallvec",
|
|
2397
|
+
"windows-link 0.2.1",
|
|
2398
|
+
]
|
|
2399
|
+
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "paste"
|
|
2402
|
+
version = "1.0.15"
|
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2405
|
+
|
|
2406
|
+
[[package]]
|
|
2407
|
+
name = "percent-encoding"
|
|
2408
|
+
version = "2.3.2"
|
|
2409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2410
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
2411
|
+
|
|
2412
|
+
[[package]]
|
|
2413
|
+
name = "pin-project"
|
|
2414
|
+
version = "1.1.10"
|
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2417
|
+
dependencies = [
|
|
2418
|
+
"pin-project-internal",
|
|
2419
|
+
]
|
|
2420
|
+
|
|
2421
|
+
[[package]]
|
|
2422
|
+
name = "pin-project-internal"
|
|
2423
|
+
version = "1.1.10"
|
|
2424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2425
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2426
|
+
dependencies = [
|
|
2427
|
+
"proc-macro2",
|
|
2428
|
+
"quote",
|
|
2429
|
+
"syn 2.0.111",
|
|
2430
|
+
]
|
|
2431
|
+
|
|
2432
|
+
[[package]]
|
|
2433
|
+
name = "pin-project-lite"
|
|
2434
|
+
version = "0.2.16"
|
|
2435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2437
|
+
|
|
2438
|
+
[[package]]
|
|
2439
|
+
name = "pin-utils"
|
|
2440
|
+
version = "0.1.0"
|
|
2441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2442
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
2443
|
+
|
|
2444
|
+
[[package]]
|
|
2445
|
+
name = "piper"
|
|
2446
|
+
version = "0.2.4"
|
|
2447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2448
|
+
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
|
2449
|
+
dependencies = [
|
|
2450
|
+
"atomic-waker",
|
|
2451
|
+
"fastrand",
|
|
2452
|
+
"futures-io",
|
|
2453
|
+
]
|
|
2454
|
+
|
|
2455
|
+
[[package]]
|
|
2456
|
+
name = "pkg-config"
|
|
2457
|
+
version = "0.3.32"
|
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2459
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2460
|
+
|
|
2461
|
+
[[package]]
|
|
2462
|
+
name = "png"
|
|
2463
|
+
version = "0.18.0"
|
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2465
|
+
checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
|
|
2466
|
+
dependencies = [
|
|
2467
|
+
"bitflags 2.10.0",
|
|
2468
|
+
"crc32fast",
|
|
2469
|
+
"fdeflate",
|
|
2470
|
+
"flate2",
|
|
2471
|
+
"miniz_oxide",
|
|
2472
|
+
]
|
|
2473
|
+
|
|
2474
|
+
[[package]]
|
|
2475
|
+
name = "polling"
|
|
2476
|
+
version = "3.11.0"
|
|
2477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2478
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
2479
|
+
dependencies = [
|
|
2480
|
+
"cfg-if",
|
|
2481
|
+
"concurrent-queue",
|
|
2482
|
+
"hermit-abi",
|
|
2483
|
+
"pin-project-lite",
|
|
2484
|
+
"rustix 1.1.2",
|
|
2485
|
+
"windows-sys 0.61.2",
|
|
2486
|
+
]
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "portable-atomic"
|
|
2490
|
+
version = "1.12.0"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "f59e70c4aef1e55797c2e8fd94a4f2a973fc972cfde0e0b05f683667b0cd39dd"
|
|
2493
|
+
|
|
2494
|
+
[[package]]
|
|
2495
|
+
name = "portable-atomic-util"
|
|
2496
|
+
version = "0.2.4"
|
|
2497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2498
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2499
|
+
dependencies = [
|
|
2500
|
+
"portable-atomic",
|
|
2501
|
+
]
|
|
2502
|
+
|
|
2503
|
+
[[package]]
|
|
2504
|
+
name = "potential_utf"
|
|
2505
|
+
version = "0.1.4"
|
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2507
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
2508
|
+
dependencies = [
|
|
2509
|
+
"zerovec",
|
|
2510
|
+
]
|
|
2511
|
+
|
|
2512
|
+
[[package]]
|
|
2513
|
+
name = "presser"
|
|
2514
|
+
version = "0.3.1"
|
|
2515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2516
|
+
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
|
2517
|
+
|
|
2518
|
+
[[package]]
|
|
2519
|
+
name = "proc-macro-crate"
|
|
2520
|
+
version = "3.4.0"
|
|
2521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2522
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
2523
|
+
dependencies = [
|
|
2524
|
+
"toml_edit",
|
|
2525
|
+
]
|
|
2526
|
+
|
|
2527
|
+
[[package]]
|
|
2528
|
+
name = "proc-macro2"
|
|
2529
|
+
version = "1.0.103"
|
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2531
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
2532
|
+
dependencies = [
|
|
2533
|
+
"unicode-ident",
|
|
2534
|
+
]
|
|
2535
|
+
|
|
2536
|
+
[[package]]
|
|
2537
|
+
name = "profiling"
|
|
2538
|
+
version = "1.0.17"
|
|
2539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2540
|
+
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
|
|
2541
|
+
|
|
2542
|
+
[[package]]
|
|
2543
|
+
name = "pxfm"
|
|
2544
|
+
version = "0.1.27"
|
|
2545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2546
|
+
checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
|
|
2547
|
+
dependencies = [
|
|
2548
|
+
"num-traits",
|
|
2549
|
+
]
|
|
2550
|
+
|
|
2551
|
+
[[package]]
|
|
2552
|
+
name = "pyo3"
|
|
2553
|
+
version = "0.23.5"
|
|
2554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2555
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
2556
|
+
dependencies = [
|
|
2557
|
+
"cfg-if",
|
|
2558
|
+
"indoc",
|
|
2559
|
+
"libc",
|
|
2560
|
+
"memoffset",
|
|
2561
|
+
"once_cell",
|
|
2562
|
+
"portable-atomic",
|
|
2563
|
+
"pyo3-build-config",
|
|
2564
|
+
"pyo3-ffi",
|
|
2565
|
+
"pyo3-macros",
|
|
2566
|
+
"unindent",
|
|
2567
|
+
]
|
|
2568
|
+
|
|
2569
|
+
[[package]]
|
|
2570
|
+
name = "pyo3-build-config"
|
|
2571
|
+
version = "0.23.5"
|
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2573
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
2574
|
+
dependencies = [
|
|
2575
|
+
"once_cell",
|
|
2576
|
+
"target-lexicon",
|
|
2577
|
+
]
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "pyo3-ffi"
|
|
2581
|
+
version = "0.23.5"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
2584
|
+
dependencies = [
|
|
2585
|
+
"libc",
|
|
2586
|
+
"pyo3-build-config",
|
|
2587
|
+
]
|
|
2588
|
+
|
|
2589
|
+
[[package]]
|
|
2590
|
+
name = "pyo3-macros"
|
|
2591
|
+
version = "0.23.5"
|
|
2592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2593
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
2594
|
+
dependencies = [
|
|
2595
|
+
"proc-macro2",
|
|
2596
|
+
"pyo3-macros-backend",
|
|
2597
|
+
"quote",
|
|
2598
|
+
"syn 2.0.111",
|
|
2599
|
+
]
|
|
2600
|
+
|
|
2601
|
+
[[package]]
|
|
2602
|
+
name = "pyo3-macros-backend"
|
|
2603
|
+
version = "0.23.5"
|
|
2604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2605
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
2606
|
+
dependencies = [
|
|
2607
|
+
"heck",
|
|
2608
|
+
"proc-macro2",
|
|
2609
|
+
"pyo3-build-config",
|
|
2610
|
+
"quote",
|
|
2611
|
+
"syn 2.0.111",
|
|
2612
|
+
]
|
|
2613
|
+
|
|
2614
|
+
[[package]]
|
|
2615
|
+
name = "quick-error"
|
|
2616
|
+
version = "2.0.1"
|
|
2617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2618
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
2619
|
+
|
|
2620
|
+
[[package]]
|
|
2621
|
+
name = "quick-xml"
|
|
2622
|
+
version = "0.36.2"
|
|
2623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2624
|
+
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
|
|
2625
|
+
dependencies = [
|
|
2626
|
+
"memchr",
|
|
2627
|
+
"serde",
|
|
2628
|
+
]
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "quick-xml"
|
|
2632
|
+
version = "0.37.5"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
|
2635
|
+
dependencies = [
|
|
2636
|
+
"memchr",
|
|
2637
|
+
]
|
|
2638
|
+
|
|
2639
|
+
[[package]]
|
|
2640
|
+
name = "quote"
|
|
2641
|
+
version = "1.0.42"
|
|
2642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2643
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
2644
|
+
dependencies = [
|
|
2645
|
+
"proc-macro2",
|
|
2646
|
+
]
|
|
2647
|
+
|
|
2648
|
+
[[package]]
|
|
2649
|
+
name = "r-efi"
|
|
2650
|
+
version = "5.3.0"
|
|
2651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2652
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2653
|
+
|
|
2654
|
+
[[package]]
|
|
2655
|
+
name = "range-alloc"
|
|
2656
|
+
version = "0.1.4"
|
|
2657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2658
|
+
checksum = "c3d6831663a5098ea164f89cff59c6284e95f4e3c76ce9848d4529f5ccca9bde"
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "raw-window-handle"
|
|
2662
|
+
version = "0.6.2"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
2665
|
+
|
|
2666
|
+
[[package]]
|
|
2667
|
+
name = "redox_syscall"
|
|
2668
|
+
version = "0.4.1"
|
|
2669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2670
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
2671
|
+
dependencies = [
|
|
2672
|
+
"bitflags 1.3.2",
|
|
2673
|
+
]
|
|
2674
|
+
|
|
2675
|
+
[[package]]
|
|
2676
|
+
name = "redox_syscall"
|
|
2677
|
+
version = "0.5.18"
|
|
2678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2679
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2680
|
+
dependencies = [
|
|
2681
|
+
"bitflags 2.10.0",
|
|
2682
|
+
]
|
|
2683
|
+
|
|
2684
|
+
[[package]]
|
|
2685
|
+
name = "redox_syscall"
|
|
2686
|
+
version = "0.6.0"
|
|
2687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2688
|
+
checksum = "ec96166dafa0886eb81fe1c0a388bece180fbef2135f97c1e2cf8302e74b43b5"
|
|
2689
|
+
dependencies = [
|
|
2690
|
+
"bitflags 2.10.0",
|
|
2691
|
+
]
|
|
2692
|
+
|
|
2693
|
+
[[package]]
|
|
2694
|
+
name = "renderdoc-sys"
|
|
2695
|
+
version = "1.1.0"
|
|
2696
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
|
+
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
2698
|
+
|
|
2699
|
+
[[package]]
|
|
2700
|
+
name = "rustc-hash"
|
|
2701
|
+
version = "1.1.0"
|
|
2702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
2704
|
+
|
|
2705
|
+
[[package]]
|
|
2706
|
+
name = "rustc-hash"
|
|
2707
|
+
version = "2.1.1"
|
|
2708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
2710
|
+
|
|
2711
|
+
[[package]]
|
|
2712
|
+
name = "rustc_version"
|
|
2713
|
+
version = "0.4.1"
|
|
2714
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
2716
|
+
dependencies = [
|
|
2717
|
+
"semver",
|
|
2718
|
+
]
|
|
2719
|
+
|
|
2720
|
+
[[package]]
|
|
2721
|
+
name = "rustix"
|
|
2722
|
+
version = "0.38.44"
|
|
2723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2725
|
+
dependencies = [
|
|
2726
|
+
"bitflags 2.10.0",
|
|
2727
|
+
"errno",
|
|
2728
|
+
"libc",
|
|
2729
|
+
"linux-raw-sys 0.4.15",
|
|
2730
|
+
"windows-sys 0.59.0",
|
|
2731
|
+
]
|
|
2732
|
+
|
|
2733
|
+
[[package]]
|
|
2734
|
+
name = "rustix"
|
|
2735
|
+
version = "1.1.2"
|
|
2736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
2738
|
+
dependencies = [
|
|
2739
|
+
"bitflags 2.10.0",
|
|
2740
|
+
"errno",
|
|
2741
|
+
"libc",
|
|
2742
|
+
"linux-raw-sys 0.11.0",
|
|
2743
|
+
"windows-sys 0.61.2",
|
|
2744
|
+
]
|
|
2745
|
+
|
|
2746
|
+
[[package]]
|
|
2747
|
+
name = "rustversion"
|
|
2748
|
+
version = "1.0.22"
|
|
2749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2750
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2751
|
+
|
|
2752
|
+
[[package]]
|
|
2753
|
+
name = "ryu"
|
|
2754
|
+
version = "1.0.21"
|
|
2755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2756
|
+
checksum = "62049b2877bf12821e8f9ad256ee38fdc31db7387ec2d3b3f403024de2034aea"
|
|
2757
|
+
|
|
2758
|
+
[[package]]
|
|
2759
|
+
name = "same-file"
|
|
2760
|
+
version = "1.0.6"
|
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2763
|
+
dependencies = [
|
|
2764
|
+
"winapi-util",
|
|
2765
|
+
]
|
|
2766
|
+
|
|
2767
|
+
[[package]]
|
|
2768
|
+
name = "scoped-tls"
|
|
2769
|
+
version = "1.0.1"
|
|
2770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2771
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
2772
|
+
|
|
2773
|
+
[[package]]
|
|
2774
|
+
name = "scopeguard"
|
|
2775
|
+
version = "1.2.0"
|
|
2776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2777
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2778
|
+
|
|
2779
|
+
[[package]]
|
|
2780
|
+
name = "sctk-adwaita"
|
|
2781
|
+
version = "0.10.1"
|
|
2782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
+
checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec"
|
|
2784
|
+
dependencies = [
|
|
2785
|
+
"ab_glyph",
|
|
2786
|
+
"log",
|
|
2787
|
+
"memmap2",
|
|
2788
|
+
"smithay-client-toolkit 0.19.2",
|
|
2789
|
+
"tiny-skia",
|
|
2790
|
+
]
|
|
2791
|
+
|
|
2792
|
+
[[package]]
|
|
2793
|
+
name = "semver"
|
|
2794
|
+
version = "1.0.27"
|
|
2795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2796
|
+
checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
|
|
2797
|
+
|
|
2798
|
+
[[package]]
|
|
2799
|
+
name = "serde"
|
|
2800
|
+
version = "1.0.228"
|
|
2801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2802
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2803
|
+
dependencies = [
|
|
2804
|
+
"serde_core",
|
|
2805
|
+
"serde_derive",
|
|
2806
|
+
]
|
|
2807
|
+
|
|
2808
|
+
[[package]]
|
|
2809
|
+
name = "serde_core"
|
|
2810
|
+
version = "1.0.228"
|
|
2811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2812
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2813
|
+
dependencies = [
|
|
2814
|
+
"serde_derive",
|
|
2815
|
+
]
|
|
2816
|
+
|
|
2817
|
+
[[package]]
|
|
2818
|
+
name = "serde_derive"
|
|
2819
|
+
version = "1.0.228"
|
|
2820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2822
|
+
dependencies = [
|
|
2823
|
+
"proc-macro2",
|
|
2824
|
+
"quote",
|
|
2825
|
+
"syn 2.0.111",
|
|
2826
|
+
]
|
|
2827
|
+
|
|
2828
|
+
[[package]]
|
|
2829
|
+
name = "serde_json"
|
|
2830
|
+
version = "1.0.145"
|
|
2831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2832
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
2833
|
+
dependencies = [
|
|
2834
|
+
"itoa",
|
|
2835
|
+
"memchr",
|
|
2836
|
+
"ryu",
|
|
2837
|
+
"serde",
|
|
2838
|
+
"serde_core",
|
|
2839
|
+
]
|
|
2840
|
+
|
|
2841
|
+
[[package]]
|
|
2842
|
+
name = "serde_repr"
|
|
2843
|
+
version = "0.1.20"
|
|
2844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2845
|
+
checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
|
|
2846
|
+
dependencies = [
|
|
2847
|
+
"proc-macro2",
|
|
2848
|
+
"quote",
|
|
2849
|
+
"syn 2.0.111",
|
|
2850
|
+
]
|
|
2851
|
+
|
|
2852
|
+
[[package]]
|
|
2853
|
+
name = "serde_yaml"
|
|
2854
|
+
version = "0.8.26"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
|
|
2857
|
+
dependencies = [
|
|
2858
|
+
"indexmap 1.9.3",
|
|
2859
|
+
"ryu",
|
|
2860
|
+
"serde",
|
|
2861
|
+
"yaml-rust",
|
|
2862
|
+
]
|
|
2863
|
+
|
|
2864
|
+
[[package]]
|
|
2865
|
+
name = "shlex"
|
|
2866
|
+
version = "1.3.0"
|
|
2867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2868
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "signal-hook-registry"
|
|
2872
|
+
version = "1.4.7"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "7664a098b8e616bdfcc2dc0e9ac44eb231eedf41db4e9fe95d8d32ec728dedad"
|
|
2875
|
+
dependencies = [
|
|
2876
|
+
"libc",
|
|
2877
|
+
]
|
|
2878
|
+
|
|
2879
|
+
[[package]]
|
|
2880
|
+
name = "simd-adler32"
|
|
2881
|
+
version = "0.3.8"
|
|
2882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2883
|
+
checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
|
|
2884
|
+
|
|
2885
|
+
[[package]]
|
|
2886
|
+
name = "slab"
|
|
2887
|
+
version = "0.4.11"
|
|
2888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2889
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
2890
|
+
|
|
2891
|
+
[[package]]
|
|
2892
|
+
name = "slotmap"
|
|
2893
|
+
version = "1.1.1"
|
|
2894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2895
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
2896
|
+
dependencies = [
|
|
2897
|
+
"version_check",
|
|
2898
|
+
]
|
|
2899
|
+
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "smallvec"
|
|
2902
|
+
version = "1.15.1"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
2905
|
+
|
|
2906
|
+
[[package]]
|
|
2907
|
+
name = "smithay-client-toolkit"
|
|
2908
|
+
version = "0.19.2"
|
|
2909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2910
|
+
checksum = "3457dea1f0eb631b4034d61d4d8c32074caa6cd1ab2d59f2327bd8461e2c0016"
|
|
2911
|
+
dependencies = [
|
|
2912
|
+
"bitflags 2.10.0",
|
|
2913
|
+
"calloop 0.13.0",
|
|
2914
|
+
"calloop-wayland-source 0.3.0",
|
|
2915
|
+
"cursor-icon",
|
|
2916
|
+
"libc",
|
|
2917
|
+
"log",
|
|
2918
|
+
"memmap2",
|
|
2919
|
+
"rustix 0.38.44",
|
|
2920
|
+
"thiserror 1.0.69",
|
|
2921
|
+
"wayland-backend",
|
|
2922
|
+
"wayland-client",
|
|
2923
|
+
"wayland-csd-frame",
|
|
2924
|
+
"wayland-cursor",
|
|
2925
|
+
"wayland-protocols",
|
|
2926
|
+
"wayland-protocols-wlr",
|
|
2927
|
+
"wayland-scanner",
|
|
2928
|
+
"xkeysym",
|
|
2929
|
+
]
|
|
2930
|
+
|
|
2931
|
+
[[package]]
|
|
2932
|
+
name = "smithay-client-toolkit"
|
|
2933
|
+
version = "0.20.0"
|
|
2934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2935
|
+
checksum = "0512da38f5e2b31201a93524adb8d3136276fa4fe4aafab4e1f727a82b534cc0"
|
|
2936
|
+
dependencies = [
|
|
2937
|
+
"bitflags 2.10.0",
|
|
2938
|
+
"calloop 0.14.3",
|
|
2939
|
+
"calloop-wayland-source 0.4.1",
|
|
2940
|
+
"cursor-icon",
|
|
2941
|
+
"libc",
|
|
2942
|
+
"log",
|
|
2943
|
+
"memmap2",
|
|
2944
|
+
"rustix 1.1.2",
|
|
2945
|
+
"thiserror 2.0.17",
|
|
2946
|
+
"wayland-backend",
|
|
2947
|
+
"wayland-client",
|
|
2948
|
+
"wayland-csd-frame",
|
|
2949
|
+
"wayland-cursor",
|
|
2950
|
+
"wayland-protocols",
|
|
2951
|
+
"wayland-protocols-experimental",
|
|
2952
|
+
"wayland-protocols-misc",
|
|
2953
|
+
"wayland-protocols-wlr",
|
|
2954
|
+
"wayland-scanner",
|
|
2955
|
+
"xkeysym",
|
|
2956
|
+
]
|
|
2957
|
+
|
|
2958
|
+
[[package]]
|
|
2959
|
+
name = "smithay-clipboard"
|
|
2960
|
+
version = "0.7.3"
|
|
2961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2962
|
+
checksum = "71704c03f739f7745053bde45fa203a46c58d25bc5c4efba1d9a60e9dba81226"
|
|
2963
|
+
dependencies = [
|
|
2964
|
+
"libc",
|
|
2965
|
+
"smithay-client-toolkit 0.20.0",
|
|
2966
|
+
"wayland-backend",
|
|
2967
|
+
]
|
|
2968
|
+
|
|
2969
|
+
[[package]]
|
|
2970
|
+
name = "smol_str"
|
|
2971
|
+
version = "0.2.2"
|
|
2972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2973
|
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
|
2974
|
+
dependencies = [
|
|
2975
|
+
"serde",
|
|
2976
|
+
]
|
|
2977
|
+
|
|
2978
|
+
[[package]]
|
|
2979
|
+
name = "spirv"
|
|
2980
|
+
version = "0.3.0+sdk-1.3.268.0"
|
|
2981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2982
|
+
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
2983
|
+
dependencies = [
|
|
2984
|
+
"bitflags 2.10.0",
|
|
2985
|
+
]
|
|
2986
|
+
|
|
2987
|
+
[[package]]
|
|
2988
|
+
name = "stable_deref_trait"
|
|
2989
|
+
version = "1.2.1"
|
|
2990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2991
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2992
|
+
|
|
2993
|
+
[[package]]
|
|
2994
|
+
name = "static_assertions"
|
|
2995
|
+
version = "1.1.0"
|
|
2996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2997
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2998
|
+
|
|
2999
|
+
[[package]]
|
|
3000
|
+
name = "strict-num"
|
|
3001
|
+
version = "0.1.1"
|
|
3002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3003
|
+
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
3004
|
+
|
|
3005
|
+
[[package]]
|
|
3006
|
+
name = "strsim"
|
|
3007
|
+
version = "0.9.3"
|
|
3008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3009
|
+
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
|
|
3010
|
+
|
|
3011
|
+
[[package]]
|
|
3012
|
+
name = "syn"
|
|
3013
|
+
version = "1.0.109"
|
|
3014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3015
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
3016
|
+
dependencies = [
|
|
3017
|
+
"proc-macro2",
|
|
3018
|
+
"quote",
|
|
3019
|
+
"unicode-ident",
|
|
3020
|
+
]
|
|
3021
|
+
|
|
3022
|
+
[[package]]
|
|
3023
|
+
name = "syn"
|
|
3024
|
+
version = "2.0.111"
|
|
3025
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3026
|
+
checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
|
|
3027
|
+
dependencies = [
|
|
3028
|
+
"proc-macro2",
|
|
3029
|
+
"quote",
|
|
3030
|
+
"unicode-ident",
|
|
3031
|
+
]
|
|
3032
|
+
|
|
3033
|
+
[[package]]
|
|
3034
|
+
name = "synstructure"
|
|
3035
|
+
version = "0.13.2"
|
|
3036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3037
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
3038
|
+
dependencies = [
|
|
3039
|
+
"proc-macro2",
|
|
3040
|
+
"quote",
|
|
3041
|
+
"syn 2.0.111",
|
|
3042
|
+
]
|
|
3043
|
+
|
|
3044
|
+
[[package]]
|
|
3045
|
+
name = "target-lexicon"
|
|
3046
|
+
version = "0.12.16"
|
|
3047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3048
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3049
|
+
|
|
3050
|
+
[[package]]
|
|
3051
|
+
name = "tempfile"
|
|
3052
|
+
version = "3.23.0"
|
|
3053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3054
|
+
checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
|
|
3055
|
+
dependencies = [
|
|
3056
|
+
"fastrand",
|
|
3057
|
+
"getrandom",
|
|
3058
|
+
"once_cell",
|
|
3059
|
+
"rustix 1.1.2",
|
|
3060
|
+
"windows-sys 0.61.2",
|
|
3061
|
+
]
|
|
3062
|
+
|
|
3063
|
+
[[package]]
|
|
3064
|
+
name = "termcolor"
|
|
3065
|
+
version = "1.4.1"
|
|
3066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3067
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
3068
|
+
dependencies = [
|
|
3069
|
+
"winapi-util",
|
|
3070
|
+
]
|
|
3071
|
+
|
|
3072
|
+
[[package]]
|
|
3073
|
+
name = "thiserror"
|
|
3074
|
+
version = "1.0.69"
|
|
3075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3077
|
+
dependencies = [
|
|
3078
|
+
"thiserror-impl 1.0.69",
|
|
3079
|
+
]
|
|
3080
|
+
|
|
3081
|
+
[[package]]
|
|
3082
|
+
name = "thiserror"
|
|
3083
|
+
version = "2.0.17"
|
|
3084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3085
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3086
|
+
dependencies = [
|
|
3087
|
+
"thiserror-impl 2.0.17",
|
|
3088
|
+
]
|
|
3089
|
+
|
|
3090
|
+
[[package]]
|
|
3091
|
+
name = "thiserror-impl"
|
|
3092
|
+
version = "1.0.69"
|
|
3093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3094
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3095
|
+
dependencies = [
|
|
3096
|
+
"proc-macro2",
|
|
3097
|
+
"quote",
|
|
3098
|
+
"syn 2.0.111",
|
|
3099
|
+
]
|
|
3100
|
+
|
|
3101
|
+
[[package]]
|
|
3102
|
+
name = "thiserror-impl"
|
|
3103
|
+
version = "2.0.17"
|
|
3104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3106
|
+
dependencies = [
|
|
3107
|
+
"proc-macro2",
|
|
3108
|
+
"quote",
|
|
3109
|
+
"syn 2.0.111",
|
|
3110
|
+
]
|
|
3111
|
+
|
|
3112
|
+
[[package]]
|
|
3113
|
+
name = "tiff"
|
|
3114
|
+
version = "0.10.3"
|
|
3115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3116
|
+
checksum = "af9605de7fee8d9551863fd692cce7637f548dbd9db9180fcc07ccc6d26c336f"
|
|
3117
|
+
dependencies = [
|
|
3118
|
+
"fax",
|
|
3119
|
+
"flate2",
|
|
3120
|
+
"half",
|
|
3121
|
+
"quick-error",
|
|
3122
|
+
"weezl",
|
|
3123
|
+
"zune-jpeg",
|
|
3124
|
+
]
|
|
3125
|
+
|
|
3126
|
+
[[package]]
|
|
3127
|
+
name = "tiny-skia"
|
|
3128
|
+
version = "0.11.4"
|
|
3129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3130
|
+
checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
|
|
3131
|
+
dependencies = [
|
|
3132
|
+
"arrayref",
|
|
3133
|
+
"arrayvec",
|
|
3134
|
+
"bytemuck",
|
|
3135
|
+
"cfg-if",
|
|
3136
|
+
"log",
|
|
3137
|
+
"tiny-skia-path",
|
|
3138
|
+
]
|
|
3139
|
+
|
|
3140
|
+
[[package]]
|
|
3141
|
+
name = "tiny-skia-path"
|
|
3142
|
+
version = "0.11.4"
|
|
3143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3144
|
+
checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
|
|
3145
|
+
dependencies = [
|
|
3146
|
+
"arrayref",
|
|
3147
|
+
"bytemuck",
|
|
3148
|
+
"strict-num",
|
|
3149
|
+
]
|
|
3150
|
+
|
|
3151
|
+
[[package]]
|
|
3152
|
+
name = "tinystr"
|
|
3153
|
+
version = "0.8.2"
|
|
3154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3155
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
3156
|
+
dependencies = [
|
|
3157
|
+
"displaydoc",
|
|
3158
|
+
"zerovec",
|
|
3159
|
+
]
|
|
3160
|
+
|
|
3161
|
+
[[package]]
|
|
3162
|
+
name = "toml"
|
|
3163
|
+
version = "0.5.11"
|
|
3164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3165
|
+
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
3166
|
+
dependencies = [
|
|
3167
|
+
"serde",
|
|
3168
|
+
]
|
|
3169
|
+
|
|
3170
|
+
[[package]]
|
|
3171
|
+
name = "toml_datetime"
|
|
3172
|
+
version = "0.7.5+spec-1.1.0"
|
|
3173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3174
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
3175
|
+
dependencies = [
|
|
3176
|
+
"serde_core",
|
|
3177
|
+
]
|
|
3178
|
+
|
|
3179
|
+
[[package]]
|
|
3180
|
+
name = "toml_edit"
|
|
3181
|
+
version = "0.23.10+spec-1.0.0"
|
|
3182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3183
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
3184
|
+
dependencies = [
|
|
3185
|
+
"indexmap 2.12.1",
|
|
3186
|
+
"toml_datetime",
|
|
3187
|
+
"toml_parser",
|
|
3188
|
+
"winnow",
|
|
3189
|
+
]
|
|
3190
|
+
|
|
3191
|
+
[[package]]
|
|
3192
|
+
name = "toml_parser"
|
|
3193
|
+
version = "1.0.6+spec-1.1.0"
|
|
3194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3195
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
3196
|
+
dependencies = [
|
|
3197
|
+
"winnow",
|
|
3198
|
+
]
|
|
3199
|
+
|
|
3200
|
+
[[package]]
|
|
3201
|
+
name = "tracing"
|
|
3202
|
+
version = "0.1.44"
|
|
3203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3204
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3205
|
+
dependencies = [
|
|
3206
|
+
"log",
|
|
3207
|
+
"pin-project-lite",
|
|
3208
|
+
"tracing-attributes",
|
|
3209
|
+
"tracing-core",
|
|
3210
|
+
]
|
|
3211
|
+
|
|
3212
|
+
[[package]]
|
|
3213
|
+
name = "tracing-attributes"
|
|
3214
|
+
version = "0.1.31"
|
|
3215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3216
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3217
|
+
dependencies = [
|
|
3218
|
+
"proc-macro2",
|
|
3219
|
+
"quote",
|
|
3220
|
+
"syn 2.0.111",
|
|
3221
|
+
]
|
|
3222
|
+
|
|
3223
|
+
[[package]]
|
|
3224
|
+
name = "tracing-core"
|
|
3225
|
+
version = "0.1.36"
|
|
3226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3227
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3228
|
+
dependencies = [
|
|
3229
|
+
"once_cell",
|
|
3230
|
+
]
|
|
3231
|
+
|
|
3232
|
+
[[package]]
|
|
3233
|
+
name = "ttf-parser"
|
|
3234
|
+
version = "0.25.1"
|
|
3235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3236
|
+
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
3237
|
+
|
|
3238
|
+
[[package]]
|
|
3239
|
+
name = "type-map"
|
|
3240
|
+
version = "0.5.1"
|
|
3241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3242
|
+
checksum = "cb30dbbd9036155e74adad6812e9898d03ec374946234fbcebd5dfc7b9187b90"
|
|
3243
|
+
dependencies = [
|
|
3244
|
+
"rustc-hash 2.1.1",
|
|
3245
|
+
]
|
|
3246
|
+
|
|
3247
|
+
[[package]]
|
|
3248
|
+
name = "uds_windows"
|
|
3249
|
+
version = "1.1.0"
|
|
3250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3251
|
+
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
|
|
3252
|
+
dependencies = [
|
|
3253
|
+
"memoffset",
|
|
3254
|
+
"tempfile",
|
|
3255
|
+
"winapi",
|
|
3256
|
+
]
|
|
3257
|
+
|
|
3258
|
+
[[package]]
|
|
3259
|
+
name = "unicode-ident"
|
|
3260
|
+
version = "1.0.22"
|
|
3261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3262
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
3263
|
+
|
|
3264
|
+
[[package]]
|
|
3265
|
+
name = "unicode-segmentation"
|
|
3266
|
+
version = "1.12.0"
|
|
3267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3268
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3269
|
+
|
|
3270
|
+
[[package]]
|
|
3271
|
+
name = "unicode-width"
|
|
3272
|
+
version = "0.2.2"
|
|
3273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3274
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3275
|
+
|
|
3276
|
+
[[package]]
|
|
3277
|
+
name = "unindent"
|
|
3278
|
+
version = "0.2.4"
|
|
3279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3280
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3281
|
+
|
|
3282
|
+
[[package]]
|
|
3283
|
+
name = "url"
|
|
3284
|
+
version = "2.5.7"
|
|
3285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3286
|
+
checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
|
|
3287
|
+
dependencies = [
|
|
3288
|
+
"form_urlencoded",
|
|
3289
|
+
"idna",
|
|
3290
|
+
"percent-encoding",
|
|
3291
|
+
"serde",
|
|
3292
|
+
]
|
|
3293
|
+
|
|
3294
|
+
[[package]]
|
|
3295
|
+
name = "utf8_iter"
|
|
3296
|
+
version = "1.0.4"
|
|
3297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3298
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3299
|
+
|
|
3300
|
+
[[package]]
|
|
3301
|
+
name = "uuid"
|
|
3302
|
+
version = "1.19.0"
|
|
3303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3304
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
3305
|
+
dependencies = [
|
|
3306
|
+
"js-sys",
|
|
3307
|
+
"serde_core",
|
|
3308
|
+
"wasm-bindgen",
|
|
3309
|
+
]
|
|
3310
|
+
|
|
3311
|
+
[[package]]
|
|
3312
|
+
name = "version_check"
|
|
3313
|
+
version = "0.9.5"
|
|
3314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3315
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3316
|
+
|
|
3317
|
+
[[package]]
|
|
3318
|
+
name = "walkdir"
|
|
3319
|
+
version = "2.5.0"
|
|
3320
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3321
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3322
|
+
dependencies = [
|
|
3323
|
+
"same-file",
|
|
3324
|
+
"winapi-util",
|
|
3325
|
+
]
|
|
3326
|
+
|
|
3327
|
+
[[package]]
|
|
3328
|
+
name = "wasip2"
|
|
3329
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3331
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3332
|
+
dependencies = [
|
|
3333
|
+
"wit-bindgen",
|
|
3334
|
+
]
|
|
3335
|
+
|
|
3336
|
+
[[package]]
|
|
3337
|
+
name = "wasm-bindgen"
|
|
3338
|
+
version = "0.2.106"
|
|
3339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3340
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
3341
|
+
dependencies = [
|
|
3342
|
+
"cfg-if",
|
|
3343
|
+
"once_cell",
|
|
3344
|
+
"rustversion",
|
|
3345
|
+
"wasm-bindgen-macro",
|
|
3346
|
+
"wasm-bindgen-shared",
|
|
3347
|
+
]
|
|
3348
|
+
|
|
3349
|
+
[[package]]
|
|
3350
|
+
name = "wasm-bindgen-futures"
|
|
3351
|
+
version = "0.4.56"
|
|
3352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3353
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
3354
|
+
dependencies = [
|
|
3355
|
+
"cfg-if",
|
|
3356
|
+
"js-sys",
|
|
3357
|
+
"once_cell",
|
|
3358
|
+
"wasm-bindgen",
|
|
3359
|
+
"web-sys",
|
|
3360
|
+
]
|
|
3361
|
+
|
|
3362
|
+
[[package]]
|
|
3363
|
+
name = "wasm-bindgen-macro"
|
|
3364
|
+
version = "0.2.106"
|
|
3365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3366
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
3367
|
+
dependencies = [
|
|
3368
|
+
"quote",
|
|
3369
|
+
"wasm-bindgen-macro-support",
|
|
3370
|
+
]
|
|
3371
|
+
|
|
3372
|
+
[[package]]
|
|
3373
|
+
name = "wasm-bindgen-macro-support"
|
|
3374
|
+
version = "0.2.106"
|
|
3375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3376
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
3377
|
+
dependencies = [
|
|
3378
|
+
"bumpalo",
|
|
3379
|
+
"proc-macro2",
|
|
3380
|
+
"quote",
|
|
3381
|
+
"syn 2.0.111",
|
|
3382
|
+
"wasm-bindgen-shared",
|
|
3383
|
+
]
|
|
3384
|
+
|
|
3385
|
+
[[package]]
|
|
3386
|
+
name = "wasm-bindgen-shared"
|
|
3387
|
+
version = "0.2.106"
|
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
3390
|
+
dependencies = [
|
|
3391
|
+
"unicode-ident",
|
|
3392
|
+
]
|
|
3393
|
+
|
|
3394
|
+
[[package]]
|
|
3395
|
+
name = "wayland-backend"
|
|
3396
|
+
version = "0.3.11"
|
|
3397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3398
|
+
checksum = "673a33c33048a5ade91a6b139580fa174e19fb0d23f396dca9fa15f2e1e49b35"
|
|
3399
|
+
dependencies = [
|
|
3400
|
+
"cc",
|
|
3401
|
+
"downcast-rs",
|
|
3402
|
+
"rustix 1.1.2",
|
|
3403
|
+
"scoped-tls",
|
|
3404
|
+
"smallvec",
|
|
3405
|
+
"wayland-sys",
|
|
3406
|
+
]
|
|
3407
|
+
|
|
3408
|
+
[[package]]
|
|
3409
|
+
name = "wayland-client"
|
|
3410
|
+
version = "0.31.11"
|
|
3411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3412
|
+
checksum = "c66a47e840dc20793f2264eb4b3e4ecb4b75d91c0dd4af04b456128e0bdd449d"
|
|
3413
|
+
dependencies = [
|
|
3414
|
+
"bitflags 2.10.0",
|
|
3415
|
+
"rustix 1.1.2",
|
|
3416
|
+
"wayland-backend",
|
|
3417
|
+
"wayland-scanner",
|
|
3418
|
+
]
|
|
3419
|
+
|
|
3420
|
+
[[package]]
|
|
3421
|
+
name = "wayland-csd-frame"
|
|
3422
|
+
version = "0.3.0"
|
|
3423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3424
|
+
checksum = "625c5029dbd43d25e6aa9615e88b829a5cad13b2819c4ae129fdbb7c31ab4c7e"
|
|
3425
|
+
dependencies = [
|
|
3426
|
+
"bitflags 2.10.0",
|
|
3427
|
+
"cursor-icon",
|
|
3428
|
+
"wayland-backend",
|
|
3429
|
+
]
|
|
3430
|
+
|
|
3431
|
+
[[package]]
|
|
3432
|
+
name = "wayland-cursor"
|
|
3433
|
+
version = "0.31.11"
|
|
3434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3435
|
+
checksum = "447ccc440a881271b19e9989f75726d60faa09b95b0200a9b7eb5cc47c3eeb29"
|
|
3436
|
+
dependencies = [
|
|
3437
|
+
"rustix 1.1.2",
|
|
3438
|
+
"wayland-client",
|
|
3439
|
+
"xcursor",
|
|
3440
|
+
]
|
|
3441
|
+
|
|
3442
|
+
[[package]]
|
|
3443
|
+
name = "wayland-protocols"
|
|
3444
|
+
version = "0.32.9"
|
|
3445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3446
|
+
checksum = "efa790ed75fbfd71283bd2521a1cfdc022aabcc28bdcff00851f9e4ae88d9901"
|
|
3447
|
+
dependencies = [
|
|
3448
|
+
"bitflags 2.10.0",
|
|
3449
|
+
"wayland-backend",
|
|
3450
|
+
"wayland-client",
|
|
3451
|
+
"wayland-scanner",
|
|
3452
|
+
]
|
|
3453
|
+
|
|
3454
|
+
[[package]]
|
|
3455
|
+
name = "wayland-protocols-experimental"
|
|
3456
|
+
version = "20250721.0.1"
|
|
3457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3458
|
+
checksum = "40a1f863128dcaaec790d7b4b396cc9b9a7a079e878e18c47e6c2d2c5a8dcbb1"
|
|
3459
|
+
dependencies = [
|
|
3460
|
+
"bitflags 2.10.0",
|
|
3461
|
+
"wayland-backend",
|
|
3462
|
+
"wayland-client",
|
|
3463
|
+
"wayland-protocols",
|
|
3464
|
+
"wayland-scanner",
|
|
3465
|
+
]
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "wayland-protocols-misc"
|
|
3469
|
+
version = "0.3.9"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "2dfe33d551eb8bffd03ff067a8b44bb963919157841a99957151299a6307d19c"
|
|
3472
|
+
dependencies = [
|
|
3473
|
+
"bitflags 2.10.0",
|
|
3474
|
+
"wayland-backend",
|
|
3475
|
+
"wayland-client",
|
|
3476
|
+
"wayland-protocols",
|
|
3477
|
+
"wayland-scanner",
|
|
3478
|
+
]
|
|
3479
|
+
|
|
3480
|
+
[[package]]
|
|
3481
|
+
name = "wayland-protocols-plasma"
|
|
3482
|
+
version = "0.3.9"
|
|
3483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3484
|
+
checksum = "a07a14257c077ab3279987c4f8bb987851bf57081b93710381daea94f2c2c032"
|
|
3485
|
+
dependencies = [
|
|
3486
|
+
"bitflags 2.10.0",
|
|
3487
|
+
"wayland-backend",
|
|
3488
|
+
"wayland-client",
|
|
3489
|
+
"wayland-protocols",
|
|
3490
|
+
"wayland-scanner",
|
|
3491
|
+
]
|
|
3492
|
+
|
|
3493
|
+
[[package]]
|
|
3494
|
+
name = "wayland-protocols-wlr"
|
|
3495
|
+
version = "0.3.9"
|
|
3496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3497
|
+
checksum = "efd94963ed43cf9938a090ca4f7da58eb55325ec8200c3848963e98dc25b78ec"
|
|
3498
|
+
dependencies = [
|
|
3499
|
+
"bitflags 2.10.0",
|
|
3500
|
+
"wayland-backend",
|
|
3501
|
+
"wayland-client",
|
|
3502
|
+
"wayland-protocols",
|
|
3503
|
+
"wayland-scanner",
|
|
3504
|
+
]
|
|
3505
|
+
|
|
3506
|
+
[[package]]
|
|
3507
|
+
name = "wayland-scanner"
|
|
3508
|
+
version = "0.31.7"
|
|
3509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3510
|
+
checksum = "54cb1e9dc49da91950bdfd8b848c49330536d9d1fb03d4bfec8cae50caa50ae3"
|
|
3511
|
+
dependencies = [
|
|
3512
|
+
"proc-macro2",
|
|
3513
|
+
"quick-xml 0.37.5",
|
|
3514
|
+
"quote",
|
|
3515
|
+
]
|
|
3516
|
+
|
|
3517
|
+
[[package]]
|
|
3518
|
+
name = "wayland-sys"
|
|
3519
|
+
version = "0.31.7"
|
|
3520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3521
|
+
checksum = "34949b42822155826b41db8e5d0c1be3a2bd296c747577a43a3e6daefc296142"
|
|
3522
|
+
dependencies = [
|
|
3523
|
+
"dlib",
|
|
3524
|
+
"log",
|
|
3525
|
+
"once_cell",
|
|
3526
|
+
"pkg-config",
|
|
3527
|
+
]
|
|
3528
|
+
|
|
3529
|
+
[[package]]
|
|
3530
|
+
name = "web-sys"
|
|
3531
|
+
version = "0.3.83"
|
|
3532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3533
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
3534
|
+
dependencies = [
|
|
3535
|
+
"js-sys",
|
|
3536
|
+
"wasm-bindgen",
|
|
3537
|
+
]
|
|
3538
|
+
|
|
3539
|
+
[[package]]
|
|
3540
|
+
name = "web-time"
|
|
3541
|
+
version = "1.1.0"
|
|
3542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3543
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3544
|
+
dependencies = [
|
|
3545
|
+
"js-sys",
|
|
3546
|
+
"wasm-bindgen",
|
|
3547
|
+
]
|
|
3548
|
+
|
|
3549
|
+
[[package]]
|
|
3550
|
+
name = "webbrowser"
|
|
3551
|
+
version = "1.0.6"
|
|
3552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3553
|
+
checksum = "00f1243ef785213e3a32fa0396093424a3a6ea566f9948497e5a2309261a4c97"
|
|
3554
|
+
dependencies = [
|
|
3555
|
+
"core-foundation 0.10.1",
|
|
3556
|
+
"jni",
|
|
3557
|
+
"log",
|
|
3558
|
+
"ndk-context",
|
|
3559
|
+
"objc2 0.6.3",
|
|
3560
|
+
"objc2-foundation 0.3.2",
|
|
3561
|
+
"url",
|
|
3562
|
+
"web-sys",
|
|
3563
|
+
]
|
|
3564
|
+
|
|
3565
|
+
[[package]]
|
|
3566
|
+
name = "weezl"
|
|
3567
|
+
version = "0.1.12"
|
|
3568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3569
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
3570
|
+
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "wgpu"
|
|
3573
|
+
version = "27.0.1"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "bfe68bac7cde125de7a731c3400723cadaaf1703795ad3f4805f187459cd7a77"
|
|
3576
|
+
dependencies = [
|
|
3577
|
+
"arrayvec",
|
|
3578
|
+
"bitflags 2.10.0",
|
|
3579
|
+
"cfg-if",
|
|
3580
|
+
"cfg_aliases",
|
|
3581
|
+
"document-features",
|
|
3582
|
+
"hashbrown 0.16.1",
|
|
3583
|
+
"js-sys",
|
|
3584
|
+
"log",
|
|
3585
|
+
"naga",
|
|
3586
|
+
"parking_lot",
|
|
3587
|
+
"portable-atomic",
|
|
3588
|
+
"profiling",
|
|
3589
|
+
"raw-window-handle",
|
|
3590
|
+
"smallvec",
|
|
3591
|
+
"static_assertions",
|
|
3592
|
+
"wasm-bindgen",
|
|
3593
|
+
"wasm-bindgen-futures",
|
|
3594
|
+
"web-sys",
|
|
3595
|
+
"wgpu-core",
|
|
3596
|
+
"wgpu-hal",
|
|
3597
|
+
"wgpu-types",
|
|
3598
|
+
]
|
|
3599
|
+
|
|
3600
|
+
[[package]]
|
|
3601
|
+
name = "wgpu-core"
|
|
3602
|
+
version = "27.0.3"
|
|
3603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3604
|
+
checksum = "27a75de515543b1897b26119f93731b385a19aea165a1ec5f0e3acecc229cae7"
|
|
3605
|
+
dependencies = [
|
|
3606
|
+
"arrayvec",
|
|
3607
|
+
"bit-set",
|
|
3608
|
+
"bit-vec",
|
|
3609
|
+
"bitflags 2.10.0",
|
|
3610
|
+
"bytemuck",
|
|
3611
|
+
"cfg_aliases",
|
|
3612
|
+
"document-features",
|
|
3613
|
+
"hashbrown 0.16.1",
|
|
3614
|
+
"indexmap 2.12.1",
|
|
3615
|
+
"log",
|
|
3616
|
+
"naga",
|
|
3617
|
+
"once_cell",
|
|
3618
|
+
"parking_lot",
|
|
3619
|
+
"portable-atomic",
|
|
3620
|
+
"profiling",
|
|
3621
|
+
"raw-window-handle",
|
|
3622
|
+
"rustc-hash 1.1.0",
|
|
3623
|
+
"smallvec",
|
|
3624
|
+
"thiserror 2.0.17",
|
|
3625
|
+
"wgpu-core-deps-apple",
|
|
3626
|
+
"wgpu-core-deps-emscripten",
|
|
3627
|
+
"wgpu-core-deps-windows-linux-android",
|
|
3628
|
+
"wgpu-hal",
|
|
3629
|
+
"wgpu-types",
|
|
3630
|
+
]
|
|
3631
|
+
|
|
3632
|
+
[[package]]
|
|
3633
|
+
name = "wgpu-core-deps-apple"
|
|
3634
|
+
version = "27.0.0"
|
|
3635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3636
|
+
checksum = "0772ae958e9be0c729561d5e3fd9a19679bcdfb945b8b1a1969d9bfe8056d233"
|
|
3637
|
+
dependencies = [
|
|
3638
|
+
"wgpu-hal",
|
|
3639
|
+
]
|
|
3640
|
+
|
|
3641
|
+
[[package]]
|
|
3642
|
+
name = "wgpu-core-deps-emscripten"
|
|
3643
|
+
version = "27.0.0"
|
|
3644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3645
|
+
checksum = "b06ac3444a95b0813ecfd81ddb2774b66220b264b3e2031152a4a29fda4da6b5"
|
|
3646
|
+
dependencies = [
|
|
3647
|
+
"wgpu-hal",
|
|
3648
|
+
]
|
|
3649
|
+
|
|
3650
|
+
[[package]]
|
|
3651
|
+
name = "wgpu-core-deps-windows-linux-android"
|
|
3652
|
+
version = "27.0.0"
|
|
3653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3654
|
+
checksum = "71197027d61a71748e4120f05a9242b2ad142e3c01f8c1b47707945a879a03c3"
|
|
3655
|
+
dependencies = [
|
|
3656
|
+
"wgpu-hal",
|
|
3657
|
+
]
|
|
3658
|
+
|
|
3659
|
+
[[package]]
|
|
3660
|
+
name = "wgpu-hal"
|
|
3661
|
+
version = "27.0.4"
|
|
3662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3663
|
+
checksum = "5b21cb61c57ee198bc4aff71aeadff4cbb80b927beb912506af9c780d64313ce"
|
|
3664
|
+
dependencies = [
|
|
3665
|
+
"android_system_properties",
|
|
3666
|
+
"arrayvec",
|
|
3667
|
+
"ash",
|
|
3668
|
+
"bit-set",
|
|
3669
|
+
"bitflags 2.10.0",
|
|
3670
|
+
"block",
|
|
3671
|
+
"bytemuck",
|
|
3672
|
+
"cfg-if",
|
|
3673
|
+
"cfg_aliases",
|
|
3674
|
+
"core-graphics-types 0.2.0",
|
|
3675
|
+
"glow",
|
|
3676
|
+
"glutin_wgl_sys",
|
|
3677
|
+
"gpu-alloc",
|
|
3678
|
+
"gpu-allocator",
|
|
3679
|
+
"gpu-descriptor",
|
|
3680
|
+
"hashbrown 0.16.1",
|
|
3681
|
+
"js-sys",
|
|
3682
|
+
"khronos-egl",
|
|
3683
|
+
"libc",
|
|
3684
|
+
"libloading",
|
|
3685
|
+
"log",
|
|
3686
|
+
"metal",
|
|
3687
|
+
"naga",
|
|
3688
|
+
"ndk-sys",
|
|
3689
|
+
"objc",
|
|
3690
|
+
"once_cell",
|
|
3691
|
+
"ordered-float",
|
|
3692
|
+
"parking_lot",
|
|
3693
|
+
"portable-atomic",
|
|
3694
|
+
"portable-atomic-util",
|
|
3695
|
+
"profiling",
|
|
3696
|
+
"range-alloc",
|
|
3697
|
+
"raw-window-handle",
|
|
3698
|
+
"renderdoc-sys",
|
|
3699
|
+
"smallvec",
|
|
3700
|
+
"thiserror 2.0.17",
|
|
3701
|
+
"wasm-bindgen",
|
|
3702
|
+
"web-sys",
|
|
3703
|
+
"wgpu-types",
|
|
3704
|
+
"windows 0.58.0",
|
|
3705
|
+
"windows-core 0.58.0",
|
|
3706
|
+
]
|
|
3707
|
+
|
|
3708
|
+
[[package]]
|
|
3709
|
+
name = "wgpu-types"
|
|
3710
|
+
version = "27.0.1"
|
|
3711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3712
|
+
checksum = "afdcf84c395990db737f2dd91628706cb31e86d72e53482320d368e52b5da5eb"
|
|
3713
|
+
dependencies = [
|
|
3714
|
+
"bitflags 2.10.0",
|
|
3715
|
+
"bytemuck",
|
|
3716
|
+
"js-sys",
|
|
3717
|
+
"log",
|
|
3718
|
+
"thiserror 2.0.17",
|
|
3719
|
+
"web-sys",
|
|
3720
|
+
]
|
|
3721
|
+
|
|
3722
|
+
[[package]]
|
|
3723
|
+
name = "winapi"
|
|
3724
|
+
version = "0.3.9"
|
|
3725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3726
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3727
|
+
dependencies = [
|
|
3728
|
+
"winapi-i686-pc-windows-gnu",
|
|
3729
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3730
|
+
]
|
|
3731
|
+
|
|
3732
|
+
[[package]]
|
|
3733
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3734
|
+
version = "0.4.0"
|
|
3735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3736
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3737
|
+
|
|
3738
|
+
[[package]]
|
|
3739
|
+
name = "winapi-util"
|
|
3740
|
+
version = "0.1.11"
|
|
3741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3742
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3743
|
+
dependencies = [
|
|
3744
|
+
"windows-sys 0.61.2",
|
|
3745
|
+
]
|
|
3746
|
+
|
|
3747
|
+
[[package]]
|
|
3748
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3749
|
+
version = "0.4.0"
|
|
3750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3751
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3752
|
+
|
|
3753
|
+
[[package]]
|
|
3754
|
+
name = "windows"
|
|
3755
|
+
version = "0.58.0"
|
|
3756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3757
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
3758
|
+
dependencies = [
|
|
3759
|
+
"windows-core 0.58.0",
|
|
3760
|
+
"windows-targets 0.52.6",
|
|
3761
|
+
]
|
|
3762
|
+
|
|
3763
|
+
[[package]]
|
|
3764
|
+
name = "windows"
|
|
3765
|
+
version = "0.61.3"
|
|
3766
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3767
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
3768
|
+
dependencies = [
|
|
3769
|
+
"windows-collections",
|
|
3770
|
+
"windows-core 0.61.2",
|
|
3771
|
+
"windows-future",
|
|
3772
|
+
"windows-link 0.1.3",
|
|
3773
|
+
"windows-numerics",
|
|
3774
|
+
]
|
|
3775
|
+
|
|
3776
|
+
[[package]]
|
|
3777
|
+
name = "windows-collections"
|
|
3778
|
+
version = "0.2.0"
|
|
3779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3780
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
3781
|
+
dependencies = [
|
|
3782
|
+
"windows-core 0.61.2",
|
|
3783
|
+
]
|
|
3784
|
+
|
|
3785
|
+
[[package]]
|
|
3786
|
+
name = "windows-core"
|
|
3787
|
+
version = "0.58.0"
|
|
3788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3789
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
3790
|
+
dependencies = [
|
|
3791
|
+
"windows-implement 0.58.0",
|
|
3792
|
+
"windows-interface 0.58.0",
|
|
3793
|
+
"windows-result 0.2.0",
|
|
3794
|
+
"windows-strings 0.1.0",
|
|
3795
|
+
"windows-targets 0.52.6",
|
|
3796
|
+
]
|
|
3797
|
+
|
|
3798
|
+
[[package]]
|
|
3799
|
+
name = "windows-core"
|
|
3800
|
+
version = "0.61.2"
|
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
3803
|
+
dependencies = [
|
|
3804
|
+
"windows-implement 0.60.2",
|
|
3805
|
+
"windows-interface 0.59.3",
|
|
3806
|
+
"windows-link 0.1.3",
|
|
3807
|
+
"windows-result 0.3.4",
|
|
3808
|
+
"windows-strings 0.4.2",
|
|
3809
|
+
]
|
|
3810
|
+
|
|
3811
|
+
[[package]]
|
|
3812
|
+
name = "windows-core"
|
|
3813
|
+
version = "0.62.2"
|
|
3814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3815
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
3816
|
+
dependencies = [
|
|
3817
|
+
"windows-implement 0.60.2",
|
|
3818
|
+
"windows-interface 0.59.3",
|
|
3819
|
+
"windows-link 0.2.1",
|
|
3820
|
+
"windows-result 0.4.1",
|
|
3821
|
+
"windows-strings 0.5.1",
|
|
3822
|
+
]
|
|
3823
|
+
|
|
3824
|
+
[[package]]
|
|
3825
|
+
name = "windows-future"
|
|
3826
|
+
version = "0.2.1"
|
|
3827
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3828
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
3829
|
+
dependencies = [
|
|
3830
|
+
"windows-core 0.61.2",
|
|
3831
|
+
"windows-link 0.1.3",
|
|
3832
|
+
"windows-threading",
|
|
3833
|
+
]
|
|
3834
|
+
|
|
3835
|
+
[[package]]
|
|
3836
|
+
name = "windows-implement"
|
|
3837
|
+
version = "0.58.0"
|
|
3838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3839
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
3840
|
+
dependencies = [
|
|
3841
|
+
"proc-macro2",
|
|
3842
|
+
"quote",
|
|
3843
|
+
"syn 2.0.111",
|
|
3844
|
+
]
|
|
3845
|
+
|
|
3846
|
+
[[package]]
|
|
3847
|
+
name = "windows-implement"
|
|
3848
|
+
version = "0.60.2"
|
|
3849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3850
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
3851
|
+
dependencies = [
|
|
3852
|
+
"proc-macro2",
|
|
3853
|
+
"quote",
|
|
3854
|
+
"syn 2.0.111",
|
|
3855
|
+
]
|
|
3856
|
+
|
|
3857
|
+
[[package]]
|
|
3858
|
+
name = "windows-interface"
|
|
3859
|
+
version = "0.58.0"
|
|
3860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
3862
|
+
dependencies = [
|
|
3863
|
+
"proc-macro2",
|
|
3864
|
+
"quote",
|
|
3865
|
+
"syn 2.0.111",
|
|
3866
|
+
]
|
|
3867
|
+
|
|
3868
|
+
[[package]]
|
|
3869
|
+
name = "windows-interface"
|
|
3870
|
+
version = "0.59.3"
|
|
3871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
3873
|
+
dependencies = [
|
|
3874
|
+
"proc-macro2",
|
|
3875
|
+
"quote",
|
|
3876
|
+
"syn 2.0.111",
|
|
3877
|
+
]
|
|
3878
|
+
|
|
3879
|
+
[[package]]
|
|
3880
|
+
name = "windows-link"
|
|
3881
|
+
version = "0.1.3"
|
|
3882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3883
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3884
|
+
|
|
3885
|
+
[[package]]
|
|
3886
|
+
name = "windows-link"
|
|
3887
|
+
version = "0.2.1"
|
|
3888
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3889
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3890
|
+
|
|
3891
|
+
[[package]]
|
|
3892
|
+
name = "windows-numerics"
|
|
3893
|
+
version = "0.2.0"
|
|
3894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3895
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
3896
|
+
dependencies = [
|
|
3897
|
+
"windows-core 0.61.2",
|
|
3898
|
+
"windows-link 0.1.3",
|
|
3899
|
+
]
|
|
3900
|
+
|
|
3901
|
+
[[package]]
|
|
3902
|
+
name = "windows-result"
|
|
3903
|
+
version = "0.2.0"
|
|
3904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3905
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
3906
|
+
dependencies = [
|
|
3907
|
+
"windows-targets 0.52.6",
|
|
3908
|
+
]
|
|
3909
|
+
|
|
3910
|
+
[[package]]
|
|
3911
|
+
name = "windows-result"
|
|
3912
|
+
version = "0.3.4"
|
|
3913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3914
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
3915
|
+
dependencies = [
|
|
3916
|
+
"windows-link 0.1.3",
|
|
3917
|
+
]
|
|
3918
|
+
|
|
3919
|
+
[[package]]
|
|
3920
|
+
name = "windows-result"
|
|
3921
|
+
version = "0.4.1"
|
|
3922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3923
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
3924
|
+
dependencies = [
|
|
3925
|
+
"windows-link 0.2.1",
|
|
3926
|
+
]
|
|
3927
|
+
|
|
3928
|
+
[[package]]
|
|
3929
|
+
name = "windows-strings"
|
|
3930
|
+
version = "0.1.0"
|
|
3931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3932
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
3933
|
+
dependencies = [
|
|
3934
|
+
"windows-result 0.2.0",
|
|
3935
|
+
"windows-targets 0.52.6",
|
|
3936
|
+
]
|
|
3937
|
+
|
|
3938
|
+
[[package]]
|
|
3939
|
+
name = "windows-strings"
|
|
3940
|
+
version = "0.4.2"
|
|
3941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3942
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
3943
|
+
dependencies = [
|
|
3944
|
+
"windows-link 0.1.3",
|
|
3945
|
+
]
|
|
3946
|
+
|
|
3947
|
+
[[package]]
|
|
3948
|
+
name = "windows-strings"
|
|
3949
|
+
version = "0.5.1"
|
|
3950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3951
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
3952
|
+
dependencies = [
|
|
3953
|
+
"windows-link 0.2.1",
|
|
3954
|
+
]
|
|
3955
|
+
|
|
3956
|
+
[[package]]
|
|
3957
|
+
name = "windows-sys"
|
|
3958
|
+
version = "0.45.0"
|
|
3959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3960
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
3961
|
+
dependencies = [
|
|
3962
|
+
"windows-targets 0.42.2",
|
|
3963
|
+
]
|
|
3964
|
+
|
|
3965
|
+
[[package]]
|
|
3966
|
+
name = "windows-sys"
|
|
3967
|
+
version = "0.52.0"
|
|
3968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3969
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3970
|
+
dependencies = [
|
|
3971
|
+
"windows-targets 0.52.6",
|
|
3972
|
+
]
|
|
3973
|
+
|
|
3974
|
+
[[package]]
|
|
3975
|
+
name = "windows-sys"
|
|
3976
|
+
version = "0.59.0"
|
|
3977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3978
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3979
|
+
dependencies = [
|
|
3980
|
+
"windows-targets 0.52.6",
|
|
3981
|
+
]
|
|
3982
|
+
|
|
3983
|
+
[[package]]
|
|
3984
|
+
name = "windows-sys"
|
|
3985
|
+
version = "0.60.2"
|
|
3986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3987
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3988
|
+
dependencies = [
|
|
3989
|
+
"windows-targets 0.53.5",
|
|
3990
|
+
]
|
|
3991
|
+
|
|
3992
|
+
[[package]]
|
|
3993
|
+
name = "windows-sys"
|
|
3994
|
+
version = "0.61.2"
|
|
3995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3997
|
+
dependencies = [
|
|
3998
|
+
"windows-link 0.2.1",
|
|
3999
|
+
]
|
|
4000
|
+
|
|
4001
|
+
[[package]]
|
|
4002
|
+
name = "windows-targets"
|
|
4003
|
+
version = "0.42.2"
|
|
4004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4005
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4006
|
+
dependencies = [
|
|
4007
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4008
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4009
|
+
"windows_i686_gnu 0.42.2",
|
|
4010
|
+
"windows_i686_msvc 0.42.2",
|
|
4011
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4012
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4013
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4014
|
+
]
|
|
4015
|
+
|
|
4016
|
+
[[package]]
|
|
4017
|
+
name = "windows-targets"
|
|
4018
|
+
version = "0.52.6"
|
|
4019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4020
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4021
|
+
dependencies = [
|
|
4022
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4023
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4024
|
+
"windows_i686_gnu 0.52.6",
|
|
4025
|
+
"windows_i686_gnullvm 0.52.6",
|
|
4026
|
+
"windows_i686_msvc 0.52.6",
|
|
4027
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4028
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4029
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4030
|
+
]
|
|
4031
|
+
|
|
4032
|
+
[[package]]
|
|
4033
|
+
name = "windows-targets"
|
|
4034
|
+
version = "0.53.5"
|
|
4035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4036
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
4037
|
+
dependencies = [
|
|
4038
|
+
"windows-link 0.2.1",
|
|
4039
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
4040
|
+
"windows_aarch64_msvc 0.53.1",
|
|
4041
|
+
"windows_i686_gnu 0.53.1",
|
|
4042
|
+
"windows_i686_gnullvm 0.53.1",
|
|
4043
|
+
"windows_i686_msvc 0.53.1",
|
|
4044
|
+
"windows_x86_64_gnu 0.53.1",
|
|
4045
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
4046
|
+
"windows_x86_64_msvc 0.53.1",
|
|
4047
|
+
]
|
|
4048
|
+
|
|
4049
|
+
[[package]]
|
|
4050
|
+
name = "windows-threading"
|
|
4051
|
+
version = "0.1.0"
|
|
4052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4053
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
4054
|
+
dependencies = [
|
|
4055
|
+
"windows-link 0.1.3",
|
|
4056
|
+
]
|
|
4057
|
+
|
|
4058
|
+
[[package]]
|
|
4059
|
+
name = "windows_aarch64_gnullvm"
|
|
4060
|
+
version = "0.42.2"
|
|
4061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4062
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4063
|
+
|
|
4064
|
+
[[package]]
|
|
4065
|
+
name = "windows_aarch64_gnullvm"
|
|
4066
|
+
version = "0.52.6"
|
|
4067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4068
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4069
|
+
|
|
4070
|
+
[[package]]
|
|
4071
|
+
name = "windows_aarch64_gnullvm"
|
|
4072
|
+
version = "0.53.1"
|
|
4073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4074
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
4075
|
+
|
|
4076
|
+
[[package]]
|
|
4077
|
+
name = "windows_aarch64_msvc"
|
|
4078
|
+
version = "0.42.2"
|
|
4079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4080
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4081
|
+
|
|
4082
|
+
[[package]]
|
|
4083
|
+
name = "windows_aarch64_msvc"
|
|
4084
|
+
version = "0.52.6"
|
|
4085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4086
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4087
|
+
|
|
4088
|
+
[[package]]
|
|
4089
|
+
name = "windows_aarch64_msvc"
|
|
4090
|
+
version = "0.53.1"
|
|
4091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4092
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
4093
|
+
|
|
4094
|
+
[[package]]
|
|
4095
|
+
name = "windows_i686_gnu"
|
|
4096
|
+
version = "0.42.2"
|
|
4097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4098
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4099
|
+
|
|
4100
|
+
[[package]]
|
|
4101
|
+
name = "windows_i686_gnu"
|
|
4102
|
+
version = "0.52.6"
|
|
4103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4104
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4105
|
+
|
|
4106
|
+
[[package]]
|
|
4107
|
+
name = "windows_i686_gnu"
|
|
4108
|
+
version = "0.53.1"
|
|
4109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4110
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
4111
|
+
|
|
4112
|
+
[[package]]
|
|
4113
|
+
name = "windows_i686_gnullvm"
|
|
4114
|
+
version = "0.52.6"
|
|
4115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4116
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4117
|
+
|
|
4118
|
+
[[package]]
|
|
4119
|
+
name = "windows_i686_gnullvm"
|
|
4120
|
+
version = "0.53.1"
|
|
4121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4122
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
4123
|
+
|
|
4124
|
+
[[package]]
|
|
4125
|
+
name = "windows_i686_msvc"
|
|
4126
|
+
version = "0.42.2"
|
|
4127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4128
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4129
|
+
|
|
4130
|
+
[[package]]
|
|
4131
|
+
name = "windows_i686_msvc"
|
|
4132
|
+
version = "0.52.6"
|
|
4133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4134
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4135
|
+
|
|
4136
|
+
[[package]]
|
|
4137
|
+
name = "windows_i686_msvc"
|
|
4138
|
+
version = "0.53.1"
|
|
4139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4140
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
4141
|
+
|
|
4142
|
+
[[package]]
|
|
4143
|
+
name = "windows_x86_64_gnu"
|
|
4144
|
+
version = "0.42.2"
|
|
4145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4146
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4147
|
+
|
|
4148
|
+
[[package]]
|
|
4149
|
+
name = "windows_x86_64_gnu"
|
|
4150
|
+
version = "0.52.6"
|
|
4151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4152
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4153
|
+
|
|
4154
|
+
[[package]]
|
|
4155
|
+
name = "windows_x86_64_gnu"
|
|
4156
|
+
version = "0.53.1"
|
|
4157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4158
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
4159
|
+
|
|
4160
|
+
[[package]]
|
|
4161
|
+
name = "windows_x86_64_gnullvm"
|
|
4162
|
+
version = "0.42.2"
|
|
4163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4164
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4165
|
+
|
|
4166
|
+
[[package]]
|
|
4167
|
+
name = "windows_x86_64_gnullvm"
|
|
4168
|
+
version = "0.52.6"
|
|
4169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4170
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4171
|
+
|
|
4172
|
+
[[package]]
|
|
4173
|
+
name = "windows_x86_64_gnullvm"
|
|
4174
|
+
version = "0.53.1"
|
|
4175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4176
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
4177
|
+
|
|
4178
|
+
[[package]]
|
|
4179
|
+
name = "windows_x86_64_msvc"
|
|
4180
|
+
version = "0.42.2"
|
|
4181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4182
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4183
|
+
|
|
4184
|
+
[[package]]
|
|
4185
|
+
name = "windows_x86_64_msvc"
|
|
4186
|
+
version = "0.52.6"
|
|
4187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4188
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4189
|
+
|
|
4190
|
+
[[package]]
|
|
4191
|
+
name = "windows_x86_64_msvc"
|
|
4192
|
+
version = "0.53.1"
|
|
4193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4194
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
4195
|
+
|
|
4196
|
+
[[package]]
|
|
4197
|
+
name = "winit"
|
|
4198
|
+
version = "0.30.12"
|
|
4199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4200
|
+
checksum = "c66d4b9ed69c4009f6321f762d6e61ad8a2389cd431b97cb1e146812e9e6c732"
|
|
4201
|
+
dependencies = [
|
|
4202
|
+
"ahash",
|
|
4203
|
+
"android-activity",
|
|
4204
|
+
"atomic-waker",
|
|
4205
|
+
"bitflags 2.10.0",
|
|
4206
|
+
"block2",
|
|
4207
|
+
"bytemuck",
|
|
4208
|
+
"calloop 0.13.0",
|
|
4209
|
+
"cfg_aliases",
|
|
4210
|
+
"concurrent-queue",
|
|
4211
|
+
"core-foundation 0.9.4",
|
|
4212
|
+
"core-graphics",
|
|
4213
|
+
"cursor-icon",
|
|
4214
|
+
"dpi",
|
|
4215
|
+
"js-sys",
|
|
4216
|
+
"libc",
|
|
4217
|
+
"memmap2",
|
|
4218
|
+
"ndk",
|
|
4219
|
+
"objc2 0.5.2",
|
|
4220
|
+
"objc2-app-kit 0.2.2",
|
|
4221
|
+
"objc2-foundation 0.2.2",
|
|
4222
|
+
"objc2-ui-kit",
|
|
4223
|
+
"orbclient",
|
|
4224
|
+
"percent-encoding",
|
|
4225
|
+
"pin-project",
|
|
4226
|
+
"raw-window-handle",
|
|
4227
|
+
"redox_syscall 0.4.1",
|
|
4228
|
+
"rustix 0.38.44",
|
|
4229
|
+
"sctk-adwaita",
|
|
4230
|
+
"smithay-client-toolkit 0.19.2",
|
|
4231
|
+
"smol_str",
|
|
4232
|
+
"tracing",
|
|
4233
|
+
"unicode-segmentation",
|
|
4234
|
+
"wasm-bindgen",
|
|
4235
|
+
"wasm-bindgen-futures",
|
|
4236
|
+
"wayland-backend",
|
|
4237
|
+
"wayland-client",
|
|
4238
|
+
"wayland-protocols",
|
|
4239
|
+
"wayland-protocols-plasma",
|
|
4240
|
+
"web-sys",
|
|
4241
|
+
"web-time",
|
|
4242
|
+
"windows-sys 0.52.0",
|
|
4243
|
+
"x11-dl",
|
|
4244
|
+
"x11rb",
|
|
4245
|
+
"xkbcommon-dl",
|
|
4246
|
+
]
|
|
4247
|
+
|
|
4248
|
+
[[package]]
|
|
4249
|
+
name = "winnow"
|
|
4250
|
+
version = "0.7.14"
|
|
4251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4252
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
4253
|
+
dependencies = [
|
|
4254
|
+
"memchr",
|
|
4255
|
+
]
|
|
4256
|
+
|
|
4257
|
+
[[package]]
|
|
4258
|
+
name = "wit-bindgen"
|
|
4259
|
+
version = "0.46.0"
|
|
4260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4261
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
4262
|
+
|
|
4263
|
+
[[package]]
|
|
4264
|
+
name = "writeable"
|
|
4265
|
+
version = "0.6.2"
|
|
4266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4267
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
4268
|
+
|
|
4269
|
+
[[package]]
|
|
4270
|
+
name = "x11-dl"
|
|
4271
|
+
version = "2.21.0"
|
|
4272
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4273
|
+
checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f"
|
|
4274
|
+
dependencies = [
|
|
4275
|
+
"libc",
|
|
4276
|
+
"once_cell",
|
|
4277
|
+
"pkg-config",
|
|
4278
|
+
]
|
|
4279
|
+
|
|
4280
|
+
[[package]]
|
|
4281
|
+
name = "x11rb"
|
|
4282
|
+
version = "0.13.2"
|
|
4283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4284
|
+
checksum = "9993aa5be5a26815fe2c3eacfc1fde061fc1a1f094bf1ad2a18bf9c495dd7414"
|
|
4285
|
+
dependencies = [
|
|
4286
|
+
"as-raw-xcb-connection",
|
|
4287
|
+
"gethostname",
|
|
4288
|
+
"libc",
|
|
4289
|
+
"libloading",
|
|
4290
|
+
"once_cell",
|
|
4291
|
+
"rustix 1.1.2",
|
|
4292
|
+
"x11rb-protocol",
|
|
4293
|
+
]
|
|
4294
|
+
|
|
4295
|
+
[[package]]
|
|
4296
|
+
name = "x11rb-protocol"
|
|
4297
|
+
version = "0.13.2"
|
|
4298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4299
|
+
checksum = "ea6fc2961e4ef194dcbfe56bb845534d0dc8098940c7e5c012a258bfec6701bd"
|
|
4300
|
+
|
|
4301
|
+
[[package]]
|
|
4302
|
+
name = "xcursor"
|
|
4303
|
+
version = "0.3.10"
|
|
4304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4305
|
+
checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
|
|
4306
|
+
|
|
4307
|
+
[[package]]
|
|
4308
|
+
name = "xkbcommon-dl"
|
|
4309
|
+
version = "0.4.2"
|
|
4310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4311
|
+
checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
|
|
4312
|
+
dependencies = [
|
|
4313
|
+
"bitflags 2.10.0",
|
|
4314
|
+
"dlib",
|
|
4315
|
+
"log",
|
|
4316
|
+
"once_cell",
|
|
4317
|
+
"xkeysym",
|
|
4318
|
+
]
|
|
4319
|
+
|
|
4320
|
+
[[package]]
|
|
4321
|
+
name = "xkeysym"
|
|
4322
|
+
version = "0.2.1"
|
|
4323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4324
|
+
checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
|
|
4325
|
+
|
|
4326
|
+
[[package]]
|
|
4327
|
+
name = "xml-rs"
|
|
4328
|
+
version = "0.8.28"
|
|
4329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4330
|
+
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
4331
|
+
|
|
4332
|
+
[[package]]
|
|
4333
|
+
name = "yaml-rust"
|
|
4334
|
+
version = "0.4.5"
|
|
4335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4336
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
4337
|
+
dependencies = [
|
|
4338
|
+
"linked-hash-map",
|
|
4339
|
+
]
|
|
4340
|
+
|
|
4341
|
+
[[package]]
|
|
4342
|
+
name = "yoke"
|
|
4343
|
+
version = "0.8.1"
|
|
4344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4345
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
4346
|
+
dependencies = [
|
|
4347
|
+
"stable_deref_trait",
|
|
4348
|
+
"yoke-derive",
|
|
4349
|
+
"zerofrom",
|
|
4350
|
+
]
|
|
4351
|
+
|
|
4352
|
+
[[package]]
|
|
4353
|
+
name = "yoke-derive"
|
|
4354
|
+
version = "0.8.1"
|
|
4355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4356
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
4357
|
+
dependencies = [
|
|
4358
|
+
"proc-macro2",
|
|
4359
|
+
"quote",
|
|
4360
|
+
"syn 2.0.111",
|
|
4361
|
+
"synstructure",
|
|
4362
|
+
]
|
|
4363
|
+
|
|
4364
|
+
[[package]]
|
|
4365
|
+
name = "zbus"
|
|
4366
|
+
version = "5.12.0"
|
|
4367
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4368
|
+
checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91"
|
|
4369
|
+
dependencies = [
|
|
4370
|
+
"async-broadcast",
|
|
4371
|
+
"async-executor",
|
|
4372
|
+
"async-io",
|
|
4373
|
+
"async-lock",
|
|
4374
|
+
"async-process",
|
|
4375
|
+
"async-recursion",
|
|
4376
|
+
"async-task",
|
|
4377
|
+
"async-trait",
|
|
4378
|
+
"blocking",
|
|
4379
|
+
"enumflags2",
|
|
4380
|
+
"event-listener",
|
|
4381
|
+
"futures-core",
|
|
4382
|
+
"futures-lite",
|
|
4383
|
+
"hex",
|
|
4384
|
+
"nix",
|
|
4385
|
+
"ordered-stream",
|
|
4386
|
+
"serde",
|
|
4387
|
+
"serde_repr",
|
|
4388
|
+
"tracing",
|
|
4389
|
+
"uds_windows",
|
|
4390
|
+
"uuid",
|
|
4391
|
+
"windows-sys 0.61.2",
|
|
4392
|
+
"winnow",
|
|
4393
|
+
"zbus_macros",
|
|
4394
|
+
"zbus_names",
|
|
4395
|
+
"zvariant",
|
|
4396
|
+
]
|
|
4397
|
+
|
|
4398
|
+
[[package]]
|
|
4399
|
+
name = "zbus-lockstep"
|
|
4400
|
+
version = "0.5.2"
|
|
4401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4402
|
+
checksum = "6998de05217a084b7578728a9443d04ea4cd80f2a0839b8d78770b76ccd45863"
|
|
4403
|
+
dependencies = [
|
|
4404
|
+
"zbus_xml",
|
|
4405
|
+
"zvariant",
|
|
4406
|
+
]
|
|
4407
|
+
|
|
4408
|
+
[[package]]
|
|
4409
|
+
name = "zbus-lockstep-macros"
|
|
4410
|
+
version = "0.5.2"
|
|
4411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4412
|
+
checksum = "10da05367f3a7b7553c8cdf8fa91aee6b64afebe32b51c95177957efc47ca3a0"
|
|
4413
|
+
dependencies = [
|
|
4414
|
+
"proc-macro2",
|
|
4415
|
+
"quote",
|
|
4416
|
+
"syn 2.0.111",
|
|
4417
|
+
"zbus-lockstep",
|
|
4418
|
+
"zbus_xml",
|
|
4419
|
+
"zvariant",
|
|
4420
|
+
]
|
|
4421
|
+
|
|
4422
|
+
[[package]]
|
|
4423
|
+
name = "zbus_macros"
|
|
4424
|
+
version = "5.12.0"
|
|
4425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4426
|
+
checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314"
|
|
4427
|
+
dependencies = [
|
|
4428
|
+
"proc-macro-crate",
|
|
4429
|
+
"proc-macro2",
|
|
4430
|
+
"quote",
|
|
4431
|
+
"syn 2.0.111",
|
|
4432
|
+
"zbus_names",
|
|
4433
|
+
"zvariant",
|
|
4434
|
+
"zvariant_utils",
|
|
4435
|
+
]
|
|
4436
|
+
|
|
4437
|
+
[[package]]
|
|
4438
|
+
name = "zbus_names"
|
|
4439
|
+
version = "4.2.0"
|
|
4440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4441
|
+
checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
|
|
4442
|
+
dependencies = [
|
|
4443
|
+
"serde",
|
|
4444
|
+
"static_assertions",
|
|
4445
|
+
"winnow",
|
|
4446
|
+
"zvariant",
|
|
4447
|
+
]
|
|
4448
|
+
|
|
4449
|
+
[[package]]
|
|
4450
|
+
name = "zbus_xml"
|
|
4451
|
+
version = "5.0.2"
|
|
4452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4453
|
+
checksum = "589e9a02bfafb9754bb2340a9e3b38f389772684c63d9637e76b1870377bec29"
|
|
4454
|
+
dependencies = [
|
|
4455
|
+
"quick-xml 0.36.2",
|
|
4456
|
+
"serde",
|
|
4457
|
+
"static_assertions",
|
|
4458
|
+
"zbus_names",
|
|
4459
|
+
"zvariant",
|
|
4460
|
+
]
|
|
4461
|
+
|
|
4462
|
+
[[package]]
|
|
4463
|
+
name = "zerocopy"
|
|
4464
|
+
version = "0.8.31"
|
|
4465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4466
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
4467
|
+
dependencies = [
|
|
4468
|
+
"zerocopy-derive",
|
|
4469
|
+
]
|
|
4470
|
+
|
|
4471
|
+
[[package]]
|
|
4472
|
+
name = "zerocopy-derive"
|
|
4473
|
+
version = "0.8.31"
|
|
4474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4475
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
4476
|
+
dependencies = [
|
|
4477
|
+
"proc-macro2",
|
|
4478
|
+
"quote",
|
|
4479
|
+
"syn 2.0.111",
|
|
4480
|
+
]
|
|
4481
|
+
|
|
4482
|
+
[[package]]
|
|
4483
|
+
name = "zerofrom"
|
|
4484
|
+
version = "0.1.6"
|
|
4485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4486
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
4487
|
+
dependencies = [
|
|
4488
|
+
"zerofrom-derive",
|
|
4489
|
+
]
|
|
4490
|
+
|
|
4491
|
+
[[package]]
|
|
4492
|
+
name = "zerofrom-derive"
|
|
4493
|
+
version = "0.1.6"
|
|
4494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4495
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
4496
|
+
dependencies = [
|
|
4497
|
+
"proc-macro2",
|
|
4498
|
+
"quote",
|
|
4499
|
+
"syn 2.0.111",
|
|
4500
|
+
"synstructure",
|
|
4501
|
+
]
|
|
4502
|
+
|
|
4503
|
+
[[package]]
|
|
4504
|
+
name = "zerotrie"
|
|
4505
|
+
version = "0.2.3"
|
|
4506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4507
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
4508
|
+
dependencies = [
|
|
4509
|
+
"displaydoc",
|
|
4510
|
+
"yoke",
|
|
4511
|
+
"zerofrom",
|
|
4512
|
+
]
|
|
4513
|
+
|
|
4514
|
+
[[package]]
|
|
4515
|
+
name = "zerovec"
|
|
4516
|
+
version = "0.11.5"
|
|
4517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4518
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
4519
|
+
dependencies = [
|
|
4520
|
+
"yoke",
|
|
4521
|
+
"zerofrom",
|
|
4522
|
+
"zerovec-derive",
|
|
4523
|
+
]
|
|
4524
|
+
|
|
4525
|
+
[[package]]
|
|
4526
|
+
name = "zerovec-derive"
|
|
4527
|
+
version = "0.11.2"
|
|
4528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4529
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
4530
|
+
dependencies = [
|
|
4531
|
+
"proc-macro2",
|
|
4532
|
+
"quote",
|
|
4533
|
+
"syn 2.0.111",
|
|
4534
|
+
]
|
|
4535
|
+
|
|
4536
|
+
[[package]]
|
|
4537
|
+
name = "zune-core"
|
|
4538
|
+
version = "0.4.12"
|
|
4539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4540
|
+
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
4541
|
+
|
|
4542
|
+
[[package]]
|
|
4543
|
+
name = "zune-jpeg"
|
|
4544
|
+
version = "0.4.21"
|
|
4545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4546
|
+
checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
|
|
4547
|
+
dependencies = [
|
|
4548
|
+
"zune-core",
|
|
4549
|
+
]
|
|
4550
|
+
|
|
4551
|
+
[[package]]
|
|
4552
|
+
name = "zvariant"
|
|
4553
|
+
version = "5.8.0"
|
|
4554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4555
|
+
checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c"
|
|
4556
|
+
dependencies = [
|
|
4557
|
+
"endi",
|
|
4558
|
+
"enumflags2",
|
|
4559
|
+
"serde",
|
|
4560
|
+
"winnow",
|
|
4561
|
+
"zvariant_derive",
|
|
4562
|
+
"zvariant_utils",
|
|
4563
|
+
]
|
|
4564
|
+
|
|
4565
|
+
[[package]]
|
|
4566
|
+
name = "zvariant_derive"
|
|
4567
|
+
version = "5.8.0"
|
|
4568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4569
|
+
checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006"
|
|
4570
|
+
dependencies = [
|
|
4571
|
+
"proc-macro-crate",
|
|
4572
|
+
"proc-macro2",
|
|
4573
|
+
"quote",
|
|
4574
|
+
"syn 2.0.111",
|
|
4575
|
+
"zvariant_utils",
|
|
4576
|
+
]
|
|
4577
|
+
|
|
4578
|
+
[[package]]
|
|
4579
|
+
name = "zvariant_utils"
|
|
4580
|
+
version = "3.2.1"
|
|
4581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4582
|
+
checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599"
|
|
4583
|
+
dependencies = [
|
|
4584
|
+
"proc-macro2",
|
|
4585
|
+
"quote",
|
|
4586
|
+
"serde",
|
|
4587
|
+
"syn 2.0.111",
|
|
4588
|
+
"winnow",
|
|
4589
|
+
]
|