bevy 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/Cargo.lock +4279 -0
- data/Cargo.toml +36 -0
- data/README.md +226 -0
- data/crates/bevy/Cargo.toml +52 -0
- data/crates/bevy/src/app.rs +43 -0
- data/crates/bevy/src/component.rs +111 -0
- data/crates/bevy/src/entity.rs +30 -0
- data/crates/bevy/src/error.rs +32 -0
- data/crates/bevy/src/event.rs +190 -0
- data/crates/bevy/src/input_bridge.rs +300 -0
- data/crates/bevy/src/lib.rs +42 -0
- data/crates/bevy/src/mesh_renderer.rs +328 -0
- data/crates/bevy/src/query.rs +53 -0
- data/crates/bevy/src/render_app.rs +689 -0
- data/crates/bevy/src/resource.rs +28 -0
- data/crates/bevy/src/schedule.rs +186 -0
- data/crates/bevy/src/sprite_renderer.rs +355 -0
- data/crates/bevy/src/system.rs +44 -0
- data/crates/bevy/src/text_renderer.rs +258 -0
- data/crates/bevy/src/types/color.rs +114 -0
- data/crates/bevy/src/types/dynamic.rs +131 -0
- data/crates/bevy/src/types/math.rs +260 -0
- data/crates/bevy/src/types/mod.rs +9 -0
- data/crates/bevy/src/types/transform.rs +166 -0
- data/crates/bevy/src/world.rs +163 -0
- data/crates/bevy_ruby_render/Cargo.toml +22 -0
- data/crates/bevy_ruby_render/src/asset.rs +360 -0
- data/crates/bevy_ruby_render/src/audio.rs +511 -0
- data/crates/bevy_ruby_render/src/camera.rs +365 -0
- data/crates/bevy_ruby_render/src/gamepad.rs +398 -0
- data/crates/bevy_ruby_render/src/lib.rs +26 -0
- data/crates/bevy_ruby_render/src/material.rs +310 -0
- data/crates/bevy_ruby_render/src/mesh.rs +491 -0
- data/crates/bevy_ruby_render/src/sprite.rs +289 -0
- data/ext/bevy/Cargo.toml +20 -0
- data/ext/bevy/extconf.rb +6 -0
- data/ext/bevy/src/conversions.rs +137 -0
- data/ext/bevy/src/lib.rs +29 -0
- data/ext/bevy/src/ruby_app.rs +65 -0
- data/ext/bevy/src/ruby_color.rs +149 -0
- data/ext/bevy/src/ruby_component.rs +189 -0
- data/ext/bevy/src/ruby_entity.rs +33 -0
- data/ext/bevy/src/ruby_math.rs +384 -0
- data/ext/bevy/src/ruby_query.rs +64 -0
- data/ext/bevy/src/ruby_render_app.rs +779 -0
- data/ext/bevy/src/ruby_system.rs +122 -0
- data/ext/bevy/src/ruby_world.rs +107 -0
- data/lib/bevy/animation.rb +597 -0
- data/lib/bevy/app.rb +675 -0
- data/lib/bevy/asset.rb +613 -0
- data/lib/bevy/audio.rb +545 -0
- data/lib/bevy/audio_effects.rb +224 -0
- data/lib/bevy/camera.rb +412 -0
- data/lib/bevy/component.rb +91 -0
- data/lib/bevy/diagnostics.rb +227 -0
- data/lib/bevy/ecs_advanced.rb +296 -0
- data/lib/bevy/event.rb +199 -0
- data/lib/bevy/gizmos.rb +158 -0
- data/lib/bevy/gltf.rb +227 -0
- data/lib/bevy/hierarchy.rb +444 -0
- data/lib/bevy/input.rb +514 -0
- data/lib/bevy/lighting.rb +369 -0
- data/lib/bevy/material.rb +248 -0
- data/lib/bevy/mesh.rb +257 -0
- data/lib/bevy/navigation.rb +344 -0
- data/lib/bevy/networking.rb +335 -0
- data/lib/bevy/particle.rb +337 -0
- data/lib/bevy/physics.rb +396 -0
- data/lib/bevy/plugins/default_plugins.rb +34 -0
- data/lib/bevy/plugins/input_plugin.rb +49 -0
- data/lib/bevy/reflect.rb +361 -0
- data/lib/bevy/render_graph.rb +210 -0
- data/lib/bevy/resource.rb +185 -0
- data/lib/bevy/scene.rb +254 -0
- data/lib/bevy/shader.rb +319 -0
- data/lib/bevy/shape.rb +195 -0
- data/lib/bevy/skeletal.rb +248 -0
- data/lib/bevy/sprite.rb +152 -0
- data/lib/bevy/sprite_sheet.rb +444 -0
- data/lib/bevy/state.rb +277 -0
- data/lib/bevy/system.rb +206 -0
- data/lib/bevy/text.rb +99 -0
- data/lib/bevy/text_advanced.rb +455 -0
- data/lib/bevy/timer.rb +147 -0
- data/lib/bevy/transform.rb +158 -0
- data/lib/bevy/ui.rb +454 -0
- data/lib/bevy/ui_advanced.rb +568 -0
- data/lib/bevy/version.rb +5 -0
- data/lib/bevy/visibility.rb +250 -0
- data/lib/bevy/window.rb +302 -0
- data/lib/bevy.rb +390 -0
- metadata +150 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,4279 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "accesskit"
|
|
7
|
+
version = "0.17.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "d3d3b8f9bae46a948369bc4a03e815d4ed6d616bd00de4051133a5019dc31c5a"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "accesskit_consumer"
|
|
13
|
+
version = "0.26.0"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "f47983a1084940ba9a39c077a8c63e55c619388be5476ac04c804cfbd1e63459"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"accesskit",
|
|
18
|
+
"hashbrown 0.15.5",
|
|
19
|
+
"immutable-chunkmap",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[[package]]
|
|
23
|
+
name = "accesskit_macos"
|
|
24
|
+
version = "0.18.1"
|
|
25
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
26
|
+
checksum = "7329821f3bd1101e03a7d2e03bd339e3ac0dc64c70b4c9f9ae1949e3ba8dece1"
|
|
27
|
+
dependencies = [
|
|
28
|
+
"accesskit",
|
|
29
|
+
"accesskit_consumer",
|
|
30
|
+
"hashbrown 0.15.5",
|
|
31
|
+
"objc2 0.5.2",
|
|
32
|
+
"objc2-app-kit",
|
|
33
|
+
"objc2-foundation",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[[package]]
|
|
37
|
+
name = "accesskit_windows"
|
|
38
|
+
version = "0.24.1"
|
|
39
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
40
|
+
checksum = "24fcd5d23d70670992b823e735e859374d694a3d12bfd8dd32bd3bd8bedb5d81"
|
|
41
|
+
dependencies = [
|
|
42
|
+
"accesskit",
|
|
43
|
+
"accesskit_consumer",
|
|
44
|
+
"hashbrown 0.15.5",
|
|
45
|
+
"paste",
|
|
46
|
+
"static_assertions",
|
|
47
|
+
"windows",
|
|
48
|
+
"windows-core",
|
|
49
|
+
]
|
|
50
|
+
|
|
51
|
+
[[package]]
|
|
52
|
+
name = "accesskit_winit"
|
|
53
|
+
version = "0.23.1"
|
|
54
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
+
checksum = "6a6a48dad5530b6deb9fc7a52cc6c3bf72cdd9eb8157ac9d32d69f2427a5e879"
|
|
56
|
+
dependencies = [
|
|
57
|
+
"accesskit",
|
|
58
|
+
"accesskit_macos",
|
|
59
|
+
"accesskit_windows",
|
|
60
|
+
"raw-window-handle",
|
|
61
|
+
"winit",
|
|
62
|
+
]
|
|
63
|
+
|
|
64
|
+
[[package]]
|
|
65
|
+
name = "ahash"
|
|
66
|
+
version = "0.8.12"
|
|
67
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
68
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
69
|
+
dependencies = [
|
|
70
|
+
"cfg-if",
|
|
71
|
+
"const-random",
|
|
72
|
+
"getrandom 0.3.4",
|
|
73
|
+
"once_cell",
|
|
74
|
+
"version_check",
|
|
75
|
+
"zerocopy",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "aho-corasick"
|
|
80
|
+
version = "1.1.4"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
83
|
+
dependencies = [
|
|
84
|
+
"memchr",
|
|
85
|
+
]
|
|
86
|
+
|
|
87
|
+
[[package]]
|
|
88
|
+
name = "allocator-api2"
|
|
89
|
+
version = "0.2.21"
|
|
90
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
91
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "android-activity"
|
|
95
|
+
version = "0.6.0"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
|
|
98
|
+
dependencies = [
|
|
99
|
+
"android-properties",
|
|
100
|
+
"bitflags 2.10.0",
|
|
101
|
+
"cc",
|
|
102
|
+
"cesu8",
|
|
103
|
+
"jni",
|
|
104
|
+
"jni-sys",
|
|
105
|
+
"libc",
|
|
106
|
+
"log",
|
|
107
|
+
"ndk",
|
|
108
|
+
"ndk-context",
|
|
109
|
+
"ndk-sys 0.6.0+11769913",
|
|
110
|
+
"num_enum",
|
|
111
|
+
"thiserror 1.0.69",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "android-properties"
|
|
116
|
+
version = "0.2.2"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "android_log-sys"
|
|
122
|
+
version = "0.3.2"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "android_system_properties"
|
|
128
|
+
version = "0.1.5"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"libc",
|
|
133
|
+
]
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "approx"
|
|
137
|
+
version = "0.5.1"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"num-traits",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "arrayref"
|
|
146
|
+
version = "0.3.9"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "arrayvec"
|
|
152
|
+
version = "0.7.6"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
155
|
+
|
|
156
|
+
[[package]]
|
|
157
|
+
name = "ash"
|
|
158
|
+
version = "0.38.0+1.3.281"
|
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
+
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
|
161
|
+
dependencies = [
|
|
162
|
+
"libloading",
|
|
163
|
+
]
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "assert_type_match"
|
|
167
|
+
version = "0.1.1"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "f548ad2c4031f2902e3edc1f29c29e835829437de49562d8eb5dc5584d3a1043"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"proc-macro2",
|
|
172
|
+
"quote",
|
|
173
|
+
"syn",
|
|
174
|
+
]
|
|
175
|
+
|
|
176
|
+
[[package]]
|
|
177
|
+
name = "async-broadcast"
|
|
178
|
+
version = "0.5.1"
|
|
179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
180
|
+
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
|
|
181
|
+
dependencies = [
|
|
182
|
+
"event-listener 2.5.3",
|
|
183
|
+
"futures-core",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "async-channel"
|
|
188
|
+
version = "2.5.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
|
191
|
+
dependencies = [
|
|
192
|
+
"concurrent-queue",
|
|
193
|
+
"event-listener-strategy",
|
|
194
|
+
"futures-core",
|
|
195
|
+
"pin-project-lite",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "async-executor"
|
|
200
|
+
version = "1.13.3"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"async-task",
|
|
205
|
+
"concurrent-queue",
|
|
206
|
+
"fastrand",
|
|
207
|
+
"futures-lite",
|
|
208
|
+
"pin-project-lite",
|
|
209
|
+
"slab",
|
|
210
|
+
]
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "async-fs"
|
|
214
|
+
version = "2.2.0"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "8034a681df4aed8b8edbd7fbe472401ecf009251c8b40556b304567052e294c5"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"async-lock",
|
|
219
|
+
"blocking",
|
|
220
|
+
"futures-lite",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "async-lock"
|
|
225
|
+
version = "3.4.2"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"event-listener 5.4.1",
|
|
230
|
+
"event-listener-strategy",
|
|
231
|
+
"pin-project-lite",
|
|
232
|
+
]
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "async-task"
|
|
236
|
+
version = "4.7.1"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
239
|
+
|
|
240
|
+
[[package]]
|
|
241
|
+
name = "atomic-waker"
|
|
242
|
+
version = "1.1.2"
|
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
244
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "atomicow"
|
|
248
|
+
version = "1.1.0"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "f52e8890bb9844440d0c412fa74b67fd2f14e85248b6e00708059b6da9e5f8bf"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"portable-atomic",
|
|
253
|
+
"portable-atomic-util",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "autocfg"
|
|
258
|
+
version = "1.5.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "base64"
|
|
264
|
+
version = "0.21.7"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "bevy"
|
|
270
|
+
version = "0.1.0"
|
|
271
|
+
dependencies = [
|
|
272
|
+
"bevy-ruby",
|
|
273
|
+
"magnus",
|
|
274
|
+
"parking_lot",
|
|
275
|
+
"rb-sys",
|
|
276
|
+
]
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "bevy"
|
|
280
|
+
version = "0.15.1"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "bb2a21c9f3306676077a88700bb8f354be779cf9caba9c21e94da9e696751af4"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"bevy_internal",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "bevy-ruby"
|
|
289
|
+
version = "0.1.0"
|
|
290
|
+
dependencies = [
|
|
291
|
+
"bevy_a11y",
|
|
292
|
+
"bevy_app",
|
|
293
|
+
"bevy_asset",
|
|
294
|
+
"bevy_color",
|
|
295
|
+
"bevy_core",
|
|
296
|
+
"bevy_core_pipeline",
|
|
297
|
+
"bevy_ecs",
|
|
298
|
+
"bevy_hierarchy",
|
|
299
|
+
"bevy_image",
|
|
300
|
+
"bevy_input",
|
|
301
|
+
"bevy_log",
|
|
302
|
+
"bevy_math",
|
|
303
|
+
"bevy_picking",
|
|
304
|
+
"bevy_prototype_lyon",
|
|
305
|
+
"bevy_render",
|
|
306
|
+
"bevy_sprite",
|
|
307
|
+
"bevy_text",
|
|
308
|
+
"bevy_time",
|
|
309
|
+
"bevy_transform",
|
|
310
|
+
"bevy_window",
|
|
311
|
+
"bevy_winit",
|
|
312
|
+
"parking_lot",
|
|
313
|
+
"thiserror 2.0.17",
|
|
314
|
+
]
|
|
315
|
+
|
|
316
|
+
[[package]]
|
|
317
|
+
name = "bevy-ruby-render"
|
|
318
|
+
version = "0.1.0"
|
|
319
|
+
dependencies = [
|
|
320
|
+
"bevy_app",
|
|
321
|
+
"bevy_asset",
|
|
322
|
+
"bevy_color",
|
|
323
|
+
"bevy_core_pipeline",
|
|
324
|
+
"bevy_ecs",
|
|
325
|
+
"bevy_hierarchy",
|
|
326
|
+
"bevy_image",
|
|
327
|
+
"bevy_math",
|
|
328
|
+
"bevy_prototype_lyon",
|
|
329
|
+
"bevy_render",
|
|
330
|
+
"bevy_sprite",
|
|
331
|
+
"bevy_text",
|
|
332
|
+
"bevy_transform",
|
|
333
|
+
"bevy_window",
|
|
334
|
+
]
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "bevy_a11y"
|
|
338
|
+
version = "0.15.1"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "f96642402d2cd7c8e58c5994bbd14a2e44ca72dd7e460a2edad82aa3bf0348f9"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"accesskit",
|
|
343
|
+
"bevy_app",
|
|
344
|
+
"bevy_derive",
|
|
345
|
+
"bevy_ecs",
|
|
346
|
+
"bevy_reflect",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "bevy_app"
|
|
351
|
+
version = "0.15.1"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "454a8cfd134864dcdcba6ee56fb958531b981021bba6bb2037c9e3df6046603c"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"bevy_derive",
|
|
356
|
+
"bevy_ecs",
|
|
357
|
+
"bevy_reflect",
|
|
358
|
+
"bevy_tasks",
|
|
359
|
+
"bevy_utils",
|
|
360
|
+
"console_error_panic_hook",
|
|
361
|
+
"ctrlc",
|
|
362
|
+
"derive_more",
|
|
363
|
+
"downcast-rs",
|
|
364
|
+
"wasm-bindgen",
|
|
365
|
+
"web-sys",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "bevy_asset"
|
|
370
|
+
version = "0.15.1"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "2d762dd4422fb6219fd904e514a4a5d1d451711a0a8e1d6495dea15a545f04f3"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"async-broadcast",
|
|
375
|
+
"async-fs",
|
|
376
|
+
"async-lock",
|
|
377
|
+
"atomicow",
|
|
378
|
+
"bevy_app",
|
|
379
|
+
"bevy_asset_macros",
|
|
380
|
+
"bevy_ecs",
|
|
381
|
+
"bevy_reflect",
|
|
382
|
+
"bevy_tasks",
|
|
383
|
+
"bevy_utils",
|
|
384
|
+
"bevy_window",
|
|
385
|
+
"bitflags 2.10.0",
|
|
386
|
+
"blake3",
|
|
387
|
+
"crossbeam-channel",
|
|
388
|
+
"derive_more",
|
|
389
|
+
"disqualified",
|
|
390
|
+
"downcast-rs",
|
|
391
|
+
"either",
|
|
392
|
+
"futures-io",
|
|
393
|
+
"futures-lite",
|
|
394
|
+
"js-sys",
|
|
395
|
+
"parking_lot",
|
|
396
|
+
"ron",
|
|
397
|
+
"serde",
|
|
398
|
+
"stackfuture",
|
|
399
|
+
"uuid",
|
|
400
|
+
"wasm-bindgen",
|
|
401
|
+
"wasm-bindgen-futures",
|
|
402
|
+
"web-sys",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "bevy_asset_macros"
|
|
407
|
+
version = "0.15.3"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "6725a785789ece8d8c73bba25fdac5e50494d959530e89565bbcea9f808b7181"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"bevy_macro_utils",
|
|
412
|
+
"proc-macro2",
|
|
413
|
+
"quote",
|
|
414
|
+
"syn",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "bevy_color"
|
|
419
|
+
version = "0.15.2"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "f00aa2966c7ca0c7dd39f5ba8f3b1eaa5c2005a93ffdefb7a4090150d8327678"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"bevy_math",
|
|
424
|
+
"bevy_reflect",
|
|
425
|
+
"bytemuck",
|
|
426
|
+
"derive_more",
|
|
427
|
+
"encase",
|
|
428
|
+
"serde",
|
|
429
|
+
"wgpu-types",
|
|
430
|
+
]
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "bevy_core"
|
|
434
|
+
version = "0.15.1"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "0ff28118f5ae3193f7f6cab30d4fd4246ba1802776910ab256dc7c20e8696381"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"bevy_app",
|
|
439
|
+
"bevy_ecs",
|
|
440
|
+
"bevy_reflect",
|
|
441
|
+
"bevy_tasks",
|
|
442
|
+
"bevy_utils",
|
|
443
|
+
"uuid",
|
|
444
|
+
]
|
|
445
|
+
|
|
446
|
+
[[package]]
|
|
447
|
+
name = "bevy_core_pipeline"
|
|
448
|
+
version = "0.15.1"
|
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
+
checksum = "c0c0eea548a55fd04acf01d351bd16da4d1198037cb9c7b98dea6519f5d7dade"
|
|
451
|
+
dependencies = [
|
|
452
|
+
"bevy_app",
|
|
453
|
+
"bevy_asset",
|
|
454
|
+
"bevy_color",
|
|
455
|
+
"bevy_core",
|
|
456
|
+
"bevy_derive",
|
|
457
|
+
"bevy_ecs",
|
|
458
|
+
"bevy_image",
|
|
459
|
+
"bevy_math",
|
|
460
|
+
"bevy_reflect",
|
|
461
|
+
"bevy_render",
|
|
462
|
+
"bevy_transform",
|
|
463
|
+
"bevy_utils",
|
|
464
|
+
"bevy_window",
|
|
465
|
+
"bitflags 2.10.0",
|
|
466
|
+
"derive_more",
|
|
467
|
+
"nonmax",
|
|
468
|
+
"radsort",
|
|
469
|
+
"serde",
|
|
470
|
+
"smallvec",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "bevy_derive"
|
|
475
|
+
version = "0.15.3"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "57d94761ce947b0a2402fd949fe1e7a5b1535293130ba4cd9893be6295d4680a"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"bevy_macro_utils",
|
|
480
|
+
"quote",
|
|
481
|
+
"syn",
|
|
482
|
+
]
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "bevy_diagnostic"
|
|
486
|
+
version = "0.15.1"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "21fe41b22fdf47bf11f0a3ca3e61975b003e86fa44d87e070f2dc7e752dd99f5"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"bevy_app",
|
|
491
|
+
"bevy_core",
|
|
492
|
+
"bevy_ecs",
|
|
493
|
+
"bevy_tasks",
|
|
494
|
+
"bevy_time",
|
|
495
|
+
"bevy_utils",
|
|
496
|
+
"const-fnv1a-hash",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "bevy_ecs"
|
|
501
|
+
version = "0.15.1"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "b747210d7db09dfacc237707d4fd31c8b43d7744cd5e5829e2c4ca86b9e47baf"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"bevy_ecs_macros",
|
|
506
|
+
"bevy_ptr",
|
|
507
|
+
"bevy_reflect",
|
|
508
|
+
"bevy_tasks",
|
|
509
|
+
"bevy_utils",
|
|
510
|
+
"bitflags 2.10.0",
|
|
511
|
+
"concurrent-queue",
|
|
512
|
+
"derive_more",
|
|
513
|
+
"disqualified",
|
|
514
|
+
"fixedbitset 0.5.7",
|
|
515
|
+
"nonmax",
|
|
516
|
+
"petgraph",
|
|
517
|
+
"serde",
|
|
518
|
+
"smallvec",
|
|
519
|
+
]
|
|
520
|
+
|
|
521
|
+
[[package]]
|
|
522
|
+
name = "bevy_ecs_macros"
|
|
523
|
+
version = "0.15.3"
|
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
+
checksum = "f453adf07712b39826bc5845e5b0887ce03204ee8359bbe6b40a9afda60564a1"
|
|
526
|
+
dependencies = [
|
|
527
|
+
"bevy_macro_utils",
|
|
528
|
+
"proc-macro2",
|
|
529
|
+
"quote",
|
|
530
|
+
"syn",
|
|
531
|
+
]
|
|
532
|
+
|
|
533
|
+
[[package]]
|
|
534
|
+
name = "bevy_encase_derive"
|
|
535
|
+
version = "0.15.3"
|
|
536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
537
|
+
checksum = "f37ad69d36bb9e8479a88d481ef9748f5d7ab676040531d751d3a44441dcede7"
|
|
538
|
+
dependencies = [
|
|
539
|
+
"bevy_macro_utils",
|
|
540
|
+
"encase_derive_impl",
|
|
541
|
+
]
|
|
542
|
+
|
|
543
|
+
[[package]]
|
|
544
|
+
name = "bevy_gizmos"
|
|
545
|
+
version = "0.15.1"
|
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
+
checksum = "ca821905afffe1f3aaf33b496903a24a0c980e4c83fa7523fb41eac16892a57a"
|
|
548
|
+
dependencies = [
|
|
549
|
+
"bevy_app",
|
|
550
|
+
"bevy_asset",
|
|
551
|
+
"bevy_color",
|
|
552
|
+
"bevy_core_pipeline",
|
|
553
|
+
"bevy_ecs",
|
|
554
|
+
"bevy_gizmos_macros",
|
|
555
|
+
"bevy_image",
|
|
556
|
+
"bevy_math",
|
|
557
|
+
"bevy_reflect",
|
|
558
|
+
"bevy_render",
|
|
559
|
+
"bevy_sprite",
|
|
560
|
+
"bevy_time",
|
|
561
|
+
"bevy_transform",
|
|
562
|
+
"bevy_utils",
|
|
563
|
+
"bytemuck",
|
|
564
|
+
]
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "bevy_gizmos_macros"
|
|
568
|
+
version = "0.15.3"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "0edb9e0dca64e0fc9d6b1d9e6e2178396e339e3e2b9f751e2504e3ea4ddf4508"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"bevy_macro_utils",
|
|
573
|
+
"proc-macro2",
|
|
574
|
+
"quote",
|
|
575
|
+
"syn",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "bevy_hierarchy"
|
|
580
|
+
version = "0.15.1"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "bd9aab2cd1684d30f2eedf953b6377a6416fd6b482f8145b6c05f4684bd60c3e"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"bevy_app",
|
|
585
|
+
"bevy_core",
|
|
586
|
+
"bevy_ecs",
|
|
587
|
+
"bevy_reflect",
|
|
588
|
+
"bevy_utils",
|
|
589
|
+
"disqualified",
|
|
590
|
+
"smallvec",
|
|
591
|
+
]
|
|
592
|
+
|
|
593
|
+
[[package]]
|
|
594
|
+
name = "bevy_image"
|
|
595
|
+
version = "0.15.1"
|
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
+
checksum = "8c5942a7d681b81aa9723bb1d918135c2f88e7871331f5676119c86c01984759"
|
|
598
|
+
dependencies = [
|
|
599
|
+
"bevy_asset",
|
|
600
|
+
"bevy_color",
|
|
601
|
+
"bevy_math",
|
|
602
|
+
"bevy_reflect",
|
|
603
|
+
"bevy_utils",
|
|
604
|
+
"bitflags 2.10.0",
|
|
605
|
+
"bytemuck",
|
|
606
|
+
"derive_more",
|
|
607
|
+
"futures-lite",
|
|
608
|
+
"image",
|
|
609
|
+
"serde",
|
|
610
|
+
"wgpu",
|
|
611
|
+
]
|
|
612
|
+
|
|
613
|
+
[[package]]
|
|
614
|
+
name = "bevy_input"
|
|
615
|
+
version = "0.15.1"
|
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
617
|
+
checksum = "a9bbf39c1d2d33350e03354a67bebee5c21973c5203b1456a9a4b90a5e6f8e75"
|
|
618
|
+
dependencies = [
|
|
619
|
+
"bevy_app",
|
|
620
|
+
"bevy_core",
|
|
621
|
+
"bevy_ecs",
|
|
622
|
+
"bevy_math",
|
|
623
|
+
"bevy_reflect",
|
|
624
|
+
"bevy_utils",
|
|
625
|
+
"derive_more",
|
|
626
|
+
"smol_str",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "bevy_internal"
|
|
631
|
+
version = "0.15.1"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "fd7fc4db9a1793ee71f79abb15e7a8fcfe4e2081e5f18ed91b802bf6cf30e088"
|
|
634
|
+
dependencies = [
|
|
635
|
+
"bevy_app",
|
|
636
|
+
"bevy_asset",
|
|
637
|
+
"bevy_color",
|
|
638
|
+
"bevy_core",
|
|
639
|
+
"bevy_core_pipeline",
|
|
640
|
+
"bevy_derive",
|
|
641
|
+
"bevy_diagnostic",
|
|
642
|
+
"bevy_ecs",
|
|
643
|
+
"bevy_gizmos",
|
|
644
|
+
"bevy_hierarchy",
|
|
645
|
+
"bevy_image",
|
|
646
|
+
"bevy_input",
|
|
647
|
+
"bevy_log",
|
|
648
|
+
"bevy_math",
|
|
649
|
+
"bevy_picking",
|
|
650
|
+
"bevy_ptr",
|
|
651
|
+
"bevy_reflect",
|
|
652
|
+
"bevy_render",
|
|
653
|
+
"bevy_scene",
|
|
654
|
+
"bevy_sprite",
|
|
655
|
+
"bevy_tasks",
|
|
656
|
+
"bevy_time",
|
|
657
|
+
"bevy_transform",
|
|
658
|
+
"bevy_utils",
|
|
659
|
+
]
|
|
660
|
+
|
|
661
|
+
[[package]]
|
|
662
|
+
name = "bevy_log"
|
|
663
|
+
version = "0.15.1"
|
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
665
|
+
checksum = "774238dcf70a0ef4d82aa2860b24b1cffdd4633f3694d3bcbfbb05c4f17ae4fe"
|
|
666
|
+
dependencies = [
|
|
667
|
+
"android_log-sys",
|
|
668
|
+
"bevy_app",
|
|
669
|
+
"bevy_ecs",
|
|
670
|
+
"bevy_utils",
|
|
671
|
+
"tracing-log",
|
|
672
|
+
"tracing-oslog",
|
|
673
|
+
"tracing-subscriber",
|
|
674
|
+
"tracing-wasm",
|
|
675
|
+
]
|
|
676
|
+
|
|
677
|
+
[[package]]
|
|
678
|
+
name = "bevy_macro_utils"
|
|
679
|
+
version = "0.15.3"
|
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
+
checksum = "8bb6ded1ddc124ea214f6a2140e47a78d1fe79b0638dad39419cdeef2e1133f1"
|
|
682
|
+
dependencies = [
|
|
683
|
+
"proc-macro2",
|
|
684
|
+
"quote",
|
|
685
|
+
"syn",
|
|
686
|
+
"toml_edit 0.22.27",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "bevy_math"
|
|
691
|
+
version = "0.15.1"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "edec18d90e6bab27b5c6131ee03172ece75b7edd0abe4e482a26d6db906ec357"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"bevy_reflect",
|
|
696
|
+
"derive_more",
|
|
697
|
+
"glam",
|
|
698
|
+
"itertools 0.13.0",
|
|
699
|
+
"rand",
|
|
700
|
+
"rand_distr",
|
|
701
|
+
"serde",
|
|
702
|
+
"smallvec",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "bevy_mesh"
|
|
707
|
+
version = "0.15.1"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "183abae7c6695a80d7408c860bd737410cd66d2a9f910dafc914485da06e43dc"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"bevy_asset",
|
|
712
|
+
"bevy_derive",
|
|
713
|
+
"bevy_ecs",
|
|
714
|
+
"bevy_image",
|
|
715
|
+
"bevy_math",
|
|
716
|
+
"bevy_mikktspace",
|
|
717
|
+
"bevy_reflect",
|
|
718
|
+
"bevy_transform",
|
|
719
|
+
"bevy_utils",
|
|
720
|
+
"bitflags 2.10.0",
|
|
721
|
+
"bytemuck",
|
|
722
|
+
"derive_more",
|
|
723
|
+
"hexasphere",
|
|
724
|
+
"serde",
|
|
725
|
+
"wgpu",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "bevy_mikktspace"
|
|
730
|
+
version = "0.15.3"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "226f663401069ded4352ed1472a85bb1f43e2b7305d6a50e53a4f6508168e380"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"glam",
|
|
735
|
+
]
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "bevy_picking"
|
|
739
|
+
version = "0.15.1"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "125e0c7327ec155c566c044c6eefd1a02e904134fa5dc0ba54665e06a35297b0"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"bevy_app",
|
|
744
|
+
"bevy_asset",
|
|
745
|
+
"bevy_derive",
|
|
746
|
+
"bevy_ecs",
|
|
747
|
+
"bevy_hierarchy",
|
|
748
|
+
"bevy_input",
|
|
749
|
+
"bevy_math",
|
|
750
|
+
"bevy_reflect",
|
|
751
|
+
"bevy_render",
|
|
752
|
+
"bevy_time",
|
|
753
|
+
"bevy_transform",
|
|
754
|
+
"bevy_utils",
|
|
755
|
+
"bevy_window",
|
|
756
|
+
"uuid",
|
|
757
|
+
]
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "bevy_prototype_lyon"
|
|
761
|
+
version = "0.13.0"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "e02ff6a3e8b4867eaed81a2bb2cc0bcddc33150849eefa369b4a170ef337aaa8"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"bevy 0.15.1",
|
|
766
|
+
"lyon_algorithms",
|
|
767
|
+
"lyon_tessellation",
|
|
768
|
+
"svgtypes",
|
|
769
|
+
]
|
|
770
|
+
|
|
771
|
+
[[package]]
|
|
772
|
+
name = "bevy_ptr"
|
|
773
|
+
version = "0.15.3"
|
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
|
+
checksum = "89fe0b0b919146939481a3a7c38864face2c6d0fd2c73ab3d430dc693ecd9b11"
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "bevy_reflect"
|
|
779
|
+
version = "0.15.1"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "bab3264acc3b6f48bc23fbd09fdfea6e5d9b7bfec142e4f3333f532acf195bca"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"assert_type_match",
|
|
784
|
+
"bevy_ptr",
|
|
785
|
+
"bevy_reflect_derive",
|
|
786
|
+
"bevy_utils",
|
|
787
|
+
"derive_more",
|
|
788
|
+
"disqualified",
|
|
789
|
+
"downcast-rs",
|
|
790
|
+
"erased-serde",
|
|
791
|
+
"glam",
|
|
792
|
+
"serde",
|
|
793
|
+
"smallvec",
|
|
794
|
+
"smol_str",
|
|
795
|
+
"uuid",
|
|
796
|
+
]
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "bevy_reflect_derive"
|
|
800
|
+
version = "0.15.1"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "42f83876a322130ab38a47d5dcf75258944bf76b3387d1acdb3750920fda63e2"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"bevy_macro_utils",
|
|
805
|
+
"proc-macro2",
|
|
806
|
+
"quote",
|
|
807
|
+
"syn",
|
|
808
|
+
"uuid",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "bevy_render"
|
|
813
|
+
version = "0.15.1"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "5b14d77d8ff589743237c98502c0e47fd31059cf348ab86a265c4f90bb5e2a22"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"async-channel",
|
|
818
|
+
"bevy_app",
|
|
819
|
+
"bevy_asset",
|
|
820
|
+
"bevy_color",
|
|
821
|
+
"bevy_core",
|
|
822
|
+
"bevy_derive",
|
|
823
|
+
"bevy_diagnostic",
|
|
824
|
+
"bevy_ecs",
|
|
825
|
+
"bevy_encase_derive",
|
|
826
|
+
"bevy_hierarchy",
|
|
827
|
+
"bevy_image",
|
|
828
|
+
"bevy_math",
|
|
829
|
+
"bevy_mesh",
|
|
830
|
+
"bevy_reflect",
|
|
831
|
+
"bevy_render_macros",
|
|
832
|
+
"bevy_tasks",
|
|
833
|
+
"bevy_time",
|
|
834
|
+
"bevy_transform",
|
|
835
|
+
"bevy_utils",
|
|
836
|
+
"bevy_window",
|
|
837
|
+
"bytemuck",
|
|
838
|
+
"codespan-reporting",
|
|
839
|
+
"derive_more",
|
|
840
|
+
"downcast-rs",
|
|
841
|
+
"encase",
|
|
842
|
+
"futures-lite",
|
|
843
|
+
"image",
|
|
844
|
+
"js-sys",
|
|
845
|
+
"naga",
|
|
846
|
+
"naga_oil",
|
|
847
|
+
"nonmax",
|
|
848
|
+
"offset-allocator",
|
|
849
|
+
"send_wrapper",
|
|
850
|
+
"serde",
|
|
851
|
+
"smallvec",
|
|
852
|
+
"wasm-bindgen",
|
|
853
|
+
"web-sys",
|
|
854
|
+
"wgpu",
|
|
855
|
+
]
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "bevy_render_macros"
|
|
859
|
+
version = "0.15.3"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "3469307d1b5ca5c37b7f9269be033845357412ebad33eace46826e59da592f66"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"bevy_macro_utils",
|
|
864
|
+
"proc-macro2",
|
|
865
|
+
"quote",
|
|
866
|
+
"syn",
|
|
867
|
+
]
|
|
868
|
+
|
|
869
|
+
[[package]]
|
|
870
|
+
name = "bevy_scene"
|
|
871
|
+
version = "0.15.1"
|
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
873
|
+
checksum = "cd00a08d01a190a826a5f6ad0fcb3dbf7bd1bd4f64ebe6108c38384691a21111"
|
|
874
|
+
dependencies = [
|
|
875
|
+
"bevy_app",
|
|
876
|
+
"bevy_asset",
|
|
877
|
+
"bevy_derive",
|
|
878
|
+
"bevy_ecs",
|
|
879
|
+
"bevy_hierarchy",
|
|
880
|
+
"bevy_reflect",
|
|
881
|
+
"bevy_render",
|
|
882
|
+
"bevy_transform",
|
|
883
|
+
"bevy_utils",
|
|
884
|
+
"derive_more",
|
|
885
|
+
"serde",
|
|
886
|
+
"uuid",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "bevy_sprite"
|
|
891
|
+
version = "0.15.1"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "84c7d22da88e562fb2ae8fe7f8cc749d3024caa4dcb57a777d070ef9141577aa"
|
|
894
|
+
dependencies = [
|
|
895
|
+
"bevy_app",
|
|
896
|
+
"bevy_asset",
|
|
897
|
+
"bevy_color",
|
|
898
|
+
"bevy_core_pipeline",
|
|
899
|
+
"bevy_derive",
|
|
900
|
+
"bevy_ecs",
|
|
901
|
+
"bevy_image",
|
|
902
|
+
"bevy_math",
|
|
903
|
+
"bevy_picking",
|
|
904
|
+
"bevy_reflect",
|
|
905
|
+
"bevy_render",
|
|
906
|
+
"bevy_transform",
|
|
907
|
+
"bevy_utils",
|
|
908
|
+
"bevy_window",
|
|
909
|
+
"bitflags 2.10.0",
|
|
910
|
+
"bytemuck",
|
|
911
|
+
"derive_more",
|
|
912
|
+
"fixedbitset 0.5.7",
|
|
913
|
+
"guillotiere",
|
|
914
|
+
"nonmax",
|
|
915
|
+
"radsort",
|
|
916
|
+
"rectangle-pack",
|
|
917
|
+
]
|
|
918
|
+
|
|
919
|
+
[[package]]
|
|
920
|
+
name = "bevy_tasks"
|
|
921
|
+
version = "0.15.3"
|
|
922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
923
|
+
checksum = "028630ddc355563bd567df1076db3515858aa26715ddf7467d2086f9b40e5ab1"
|
|
924
|
+
dependencies = [
|
|
925
|
+
"async-executor",
|
|
926
|
+
"futures-channel",
|
|
927
|
+
"futures-lite",
|
|
928
|
+
"pin-project",
|
|
929
|
+
"wasm-bindgen-futures",
|
|
930
|
+
]
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "bevy_text"
|
|
934
|
+
version = "0.15.1"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "17ee0b5f52946d222521f93773a6230f42e868548f881c4c5bddb1393a96298b"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"bevy_app",
|
|
939
|
+
"bevy_asset",
|
|
940
|
+
"bevy_color",
|
|
941
|
+
"bevy_derive",
|
|
942
|
+
"bevy_ecs",
|
|
943
|
+
"bevy_hierarchy",
|
|
944
|
+
"bevy_image",
|
|
945
|
+
"bevy_math",
|
|
946
|
+
"bevy_reflect",
|
|
947
|
+
"bevy_render",
|
|
948
|
+
"bevy_sprite",
|
|
949
|
+
"bevy_transform",
|
|
950
|
+
"bevy_utils",
|
|
951
|
+
"bevy_window",
|
|
952
|
+
"cosmic-text",
|
|
953
|
+
"derive_more",
|
|
954
|
+
"serde",
|
|
955
|
+
"smallvec",
|
|
956
|
+
"sys-locale",
|
|
957
|
+
"unicode-bidi",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "bevy_time"
|
|
962
|
+
version = "0.15.1"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "bb3108ed1ef864bc40bc859ba4c9c3844213c7be3674f982203cf5d87c656848"
|
|
965
|
+
dependencies = [
|
|
966
|
+
"bevy_app",
|
|
967
|
+
"bevy_ecs",
|
|
968
|
+
"bevy_reflect",
|
|
969
|
+
"bevy_utils",
|
|
970
|
+
"crossbeam-channel",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "bevy_transform"
|
|
975
|
+
version = "0.15.1"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "056fabcedbf0503417af69447d47a983e18c7cfb5e6b6728636be3ec285cbcfa"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"bevy_app",
|
|
980
|
+
"bevy_ecs",
|
|
981
|
+
"bevy_hierarchy",
|
|
982
|
+
"bevy_math",
|
|
983
|
+
"bevy_reflect",
|
|
984
|
+
"derive_more",
|
|
985
|
+
]
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "bevy_utils"
|
|
989
|
+
version = "0.15.3"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "63c2174d43a0de99f863c98a472370047a2bfa7d1e5cec8d9d647fb500905d9d"
|
|
992
|
+
dependencies = [
|
|
993
|
+
"ahash",
|
|
994
|
+
"bevy_utils_proc_macros",
|
|
995
|
+
"getrandom 0.2.16",
|
|
996
|
+
"hashbrown 0.14.5",
|
|
997
|
+
"thread_local",
|
|
998
|
+
"tracing",
|
|
999
|
+
"web-time",
|
|
1000
|
+
]
|
|
1001
|
+
|
|
1002
|
+
[[package]]
|
|
1003
|
+
name = "bevy_utils_proc_macros"
|
|
1004
|
+
version = "0.15.3"
|
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1006
|
+
checksum = "94847541f6dd2e28f54a9c2b0e857da5f2631e2201ebc25ce68781cdcb721391"
|
|
1007
|
+
dependencies = [
|
|
1008
|
+
"proc-macro2",
|
|
1009
|
+
"quote",
|
|
1010
|
+
"syn",
|
|
1011
|
+
]
|
|
1012
|
+
|
|
1013
|
+
[[package]]
|
|
1014
|
+
name = "bevy_window"
|
|
1015
|
+
version = "0.15.1"
|
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1017
|
+
checksum = "36139955777cc9e7a40a97833ff3a95b7401ce525a3dbac05fc52557968b31a7"
|
|
1018
|
+
dependencies = [
|
|
1019
|
+
"android-activity",
|
|
1020
|
+
"bevy_a11y",
|
|
1021
|
+
"bevy_app",
|
|
1022
|
+
"bevy_ecs",
|
|
1023
|
+
"bevy_input",
|
|
1024
|
+
"bevy_math",
|
|
1025
|
+
"bevy_reflect",
|
|
1026
|
+
"bevy_utils",
|
|
1027
|
+
"raw-window-handle",
|
|
1028
|
+
"smol_str",
|
|
1029
|
+
]
|
|
1030
|
+
|
|
1031
|
+
[[package]]
|
|
1032
|
+
name = "bevy_winit"
|
|
1033
|
+
version = "0.15.1"
|
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1035
|
+
checksum = "36e84e7f94583cac93de4ba641029eb0b6551d35e559c829209f2b1b9fe532d8"
|
|
1036
|
+
dependencies = [
|
|
1037
|
+
"accesskit",
|
|
1038
|
+
"accesskit_winit",
|
|
1039
|
+
"approx",
|
|
1040
|
+
"bevy_a11y",
|
|
1041
|
+
"bevy_app",
|
|
1042
|
+
"bevy_derive",
|
|
1043
|
+
"bevy_ecs",
|
|
1044
|
+
"bevy_hierarchy",
|
|
1045
|
+
"bevy_input",
|
|
1046
|
+
"bevy_log",
|
|
1047
|
+
"bevy_math",
|
|
1048
|
+
"bevy_reflect",
|
|
1049
|
+
"bevy_tasks",
|
|
1050
|
+
"bevy_utils",
|
|
1051
|
+
"bevy_window",
|
|
1052
|
+
"cfg-if",
|
|
1053
|
+
"crossbeam-channel",
|
|
1054
|
+
"raw-window-handle",
|
|
1055
|
+
"wasm-bindgen",
|
|
1056
|
+
"web-sys",
|
|
1057
|
+
"winit",
|
|
1058
|
+
]
|
|
1059
|
+
|
|
1060
|
+
[[package]]
|
|
1061
|
+
name = "bindgen"
|
|
1062
|
+
version = "0.69.5"
|
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1064
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
1065
|
+
dependencies = [
|
|
1066
|
+
"bitflags 2.10.0",
|
|
1067
|
+
"cexpr",
|
|
1068
|
+
"clang-sys",
|
|
1069
|
+
"itertools 0.12.1",
|
|
1070
|
+
"lazy_static",
|
|
1071
|
+
"lazycell",
|
|
1072
|
+
"proc-macro2",
|
|
1073
|
+
"quote",
|
|
1074
|
+
"regex",
|
|
1075
|
+
"rustc-hash",
|
|
1076
|
+
"shlex",
|
|
1077
|
+
"syn",
|
|
1078
|
+
]
|
|
1079
|
+
|
|
1080
|
+
[[package]]
|
|
1081
|
+
name = "bindgen"
|
|
1082
|
+
version = "0.70.1"
|
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1084
|
+
checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
|
|
1085
|
+
dependencies = [
|
|
1086
|
+
"bitflags 2.10.0",
|
|
1087
|
+
"cexpr",
|
|
1088
|
+
"clang-sys",
|
|
1089
|
+
"itertools 0.13.0",
|
|
1090
|
+
"log",
|
|
1091
|
+
"prettyplease",
|
|
1092
|
+
"proc-macro2",
|
|
1093
|
+
"quote",
|
|
1094
|
+
"regex",
|
|
1095
|
+
"rustc-hash",
|
|
1096
|
+
"shlex",
|
|
1097
|
+
"syn",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "bit-set"
|
|
1102
|
+
version = "0.5.3"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"bit-vec 0.6.3",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "bit-set"
|
|
1111
|
+
version = "0.8.0"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"bit-vec 0.8.0",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "bit-vec"
|
|
1120
|
+
version = "0.6.3"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
1123
|
+
|
|
1124
|
+
[[package]]
|
|
1125
|
+
name = "bit-vec"
|
|
1126
|
+
version = "0.8.0"
|
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1128
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "bitflags"
|
|
1132
|
+
version = "1.3.2"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "bitflags"
|
|
1138
|
+
version = "2.10.0"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"serde_core",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "blake3"
|
|
1147
|
+
version = "1.8.2"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"arrayref",
|
|
1152
|
+
"arrayvec",
|
|
1153
|
+
"cc",
|
|
1154
|
+
"cfg-if",
|
|
1155
|
+
"constant_time_eq",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "block"
|
|
1160
|
+
version = "0.1.6"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
1163
|
+
|
|
1164
|
+
[[package]]
|
|
1165
|
+
name = "block2"
|
|
1166
|
+
version = "0.5.1"
|
|
1167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1168
|
+
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
|
|
1169
|
+
dependencies = [
|
|
1170
|
+
"objc2 0.5.2",
|
|
1171
|
+
]
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "block2"
|
|
1175
|
+
version = "0.6.2"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
1178
|
+
dependencies = [
|
|
1179
|
+
"objc2 0.6.3",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "blocking"
|
|
1184
|
+
version = "1.6.2"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"async-channel",
|
|
1189
|
+
"async-task",
|
|
1190
|
+
"futures-io",
|
|
1191
|
+
"futures-lite",
|
|
1192
|
+
"piper",
|
|
1193
|
+
]
|
|
1194
|
+
|
|
1195
|
+
[[package]]
|
|
1196
|
+
name = "bumpalo"
|
|
1197
|
+
version = "3.19.1"
|
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
+
checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "bytemuck"
|
|
1203
|
+
version = "1.24.0"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"bytemuck_derive",
|
|
1208
|
+
]
|
|
1209
|
+
|
|
1210
|
+
[[package]]
|
|
1211
|
+
name = "bytemuck_derive"
|
|
1212
|
+
version = "1.10.2"
|
|
1213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1214
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
1215
|
+
dependencies = [
|
|
1216
|
+
"proc-macro2",
|
|
1217
|
+
"quote",
|
|
1218
|
+
"syn",
|
|
1219
|
+
]
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "byteorder-lite"
|
|
1223
|
+
version = "0.1.0"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "bytes"
|
|
1229
|
+
version = "1.11.0"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "calloop"
|
|
1235
|
+
version = "0.13.0"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"bitflags 2.10.0",
|
|
1240
|
+
"log",
|
|
1241
|
+
"polling",
|
|
1242
|
+
"rustix 0.38.44",
|
|
1243
|
+
"slab",
|
|
1244
|
+
"thiserror 1.0.69",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "cc"
|
|
1249
|
+
version = "1.2.51"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"find-msvc-tools",
|
|
1254
|
+
"jobserver",
|
|
1255
|
+
"libc",
|
|
1256
|
+
"shlex",
|
|
1257
|
+
]
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "cesu8"
|
|
1261
|
+
version = "1.1.0"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
1264
|
+
|
|
1265
|
+
[[package]]
|
|
1266
|
+
name = "cexpr"
|
|
1267
|
+
version = "0.6.0"
|
|
1268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1269
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
1270
|
+
dependencies = [
|
|
1271
|
+
"nom",
|
|
1272
|
+
]
|
|
1273
|
+
|
|
1274
|
+
[[package]]
|
|
1275
|
+
name = "cfg-if"
|
|
1276
|
+
version = "1.0.4"
|
|
1277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1278
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "cfg_aliases"
|
|
1282
|
+
version = "0.1.1"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "cfg_aliases"
|
|
1288
|
+
version = "0.2.1"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "clang-sys"
|
|
1294
|
+
version = "1.8.1"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
1297
|
+
dependencies = [
|
|
1298
|
+
"glob",
|
|
1299
|
+
"libc",
|
|
1300
|
+
"libloading",
|
|
1301
|
+
]
|
|
1302
|
+
|
|
1303
|
+
[[package]]
|
|
1304
|
+
name = "codespan-reporting"
|
|
1305
|
+
version = "0.11.1"
|
|
1306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1307
|
+
checksum = "3538270d33cc669650c4b093848450d380def10c331d38c768e34cac80576e6e"
|
|
1308
|
+
dependencies = [
|
|
1309
|
+
"termcolor",
|
|
1310
|
+
"unicode-width",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "combine"
|
|
1315
|
+
version = "4.6.7"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"bytes",
|
|
1320
|
+
"memchr",
|
|
1321
|
+
]
|
|
1322
|
+
|
|
1323
|
+
[[package]]
|
|
1324
|
+
name = "concurrent-queue"
|
|
1325
|
+
version = "2.5.0"
|
|
1326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1327
|
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
|
|
1328
|
+
dependencies = [
|
|
1329
|
+
"crossbeam-utils",
|
|
1330
|
+
]
|
|
1331
|
+
|
|
1332
|
+
[[package]]
|
|
1333
|
+
name = "console_error_panic_hook"
|
|
1334
|
+
version = "0.1.7"
|
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1336
|
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
|
|
1337
|
+
dependencies = [
|
|
1338
|
+
"cfg-if",
|
|
1339
|
+
"wasm-bindgen",
|
|
1340
|
+
]
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "const-fnv1a-hash"
|
|
1344
|
+
version = "1.1.0"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "32b13ea120a812beba79e34316b3942a857c86ec1593cb34f27bb28272ce2cca"
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "const-random"
|
|
1350
|
+
version = "0.1.18"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"const-random-macro",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "const-random-macro"
|
|
1359
|
+
version = "0.1.16"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
1362
|
+
dependencies = [
|
|
1363
|
+
"getrandom 0.2.16",
|
|
1364
|
+
"once_cell",
|
|
1365
|
+
"tiny-keccak",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "const_panic"
|
|
1370
|
+
version = "0.2.15"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "e262cdaac42494e3ae34c43969f9cdeb7da178bdb4b66fa6a1ea2edb4c8ae652"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"typewit",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "const_soft_float"
|
|
1379
|
+
version = "0.1.4"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "87ca1caa64ef4ed453e68bb3db612e51cf1b2f5b871337f0fcab1c8f87cc3dff"
|
|
1382
|
+
|
|
1383
|
+
[[package]]
|
|
1384
|
+
name = "constant_time_eq"
|
|
1385
|
+
version = "0.3.1"
|
|
1386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1387
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "constgebra"
|
|
1391
|
+
version = "0.1.4"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "e1aaf9b65849a68662ac6c0810c8893a765c960b907dd7cfab9c4a50bf764fbc"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"const_soft_float",
|
|
1396
|
+
]
|
|
1397
|
+
|
|
1398
|
+
[[package]]
|
|
1399
|
+
name = "core-foundation"
|
|
1400
|
+
version = "0.9.4"
|
|
1401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
1403
|
+
dependencies = [
|
|
1404
|
+
"core-foundation-sys",
|
|
1405
|
+
"libc",
|
|
1406
|
+
]
|
|
1407
|
+
|
|
1408
|
+
[[package]]
|
|
1409
|
+
name = "core-foundation-sys"
|
|
1410
|
+
version = "0.8.7"
|
|
1411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1412
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
1413
|
+
|
|
1414
|
+
[[package]]
|
|
1415
|
+
name = "core-graphics"
|
|
1416
|
+
version = "0.23.2"
|
|
1417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1418
|
+
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
|
|
1419
|
+
dependencies = [
|
|
1420
|
+
"bitflags 1.3.2",
|
|
1421
|
+
"core-foundation",
|
|
1422
|
+
"core-graphics-types",
|
|
1423
|
+
"foreign-types",
|
|
1424
|
+
"libc",
|
|
1425
|
+
]
|
|
1426
|
+
|
|
1427
|
+
[[package]]
|
|
1428
|
+
name = "core-graphics-types"
|
|
1429
|
+
version = "0.1.3"
|
|
1430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1431
|
+
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
|
|
1432
|
+
dependencies = [
|
|
1433
|
+
"bitflags 1.3.2",
|
|
1434
|
+
"core-foundation",
|
|
1435
|
+
"libc",
|
|
1436
|
+
]
|
|
1437
|
+
|
|
1438
|
+
[[package]]
|
|
1439
|
+
name = "cosmic-text"
|
|
1440
|
+
version = "0.12.1"
|
|
1441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1442
|
+
checksum = "59fd57d82eb4bfe7ffa9b1cec0c05e2fd378155b47f255a67983cb4afe0e80c2"
|
|
1443
|
+
dependencies = [
|
|
1444
|
+
"bitflags 2.10.0",
|
|
1445
|
+
"fontdb",
|
|
1446
|
+
"log",
|
|
1447
|
+
"rangemap",
|
|
1448
|
+
"rayon",
|
|
1449
|
+
"rustc-hash",
|
|
1450
|
+
"rustybuzz",
|
|
1451
|
+
"self_cell",
|
|
1452
|
+
"swash",
|
|
1453
|
+
"sys-locale",
|
|
1454
|
+
"ttf-parser 0.21.1",
|
|
1455
|
+
"unicode-bidi",
|
|
1456
|
+
"unicode-linebreak",
|
|
1457
|
+
"unicode-script",
|
|
1458
|
+
"unicode-segmentation",
|
|
1459
|
+
]
|
|
1460
|
+
|
|
1461
|
+
[[package]]
|
|
1462
|
+
name = "crossbeam-channel"
|
|
1463
|
+
version = "0.5.15"
|
|
1464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1465
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
1466
|
+
dependencies = [
|
|
1467
|
+
"crossbeam-utils",
|
|
1468
|
+
]
|
|
1469
|
+
|
|
1470
|
+
[[package]]
|
|
1471
|
+
name = "crossbeam-deque"
|
|
1472
|
+
version = "0.8.6"
|
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
1475
|
+
dependencies = [
|
|
1476
|
+
"crossbeam-epoch",
|
|
1477
|
+
"crossbeam-utils",
|
|
1478
|
+
]
|
|
1479
|
+
|
|
1480
|
+
[[package]]
|
|
1481
|
+
name = "crossbeam-epoch"
|
|
1482
|
+
version = "0.9.18"
|
|
1483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1484
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
1485
|
+
dependencies = [
|
|
1486
|
+
"crossbeam-utils",
|
|
1487
|
+
]
|
|
1488
|
+
|
|
1489
|
+
[[package]]
|
|
1490
|
+
name = "crossbeam-utils"
|
|
1491
|
+
version = "0.8.21"
|
|
1492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1493
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
1494
|
+
|
|
1495
|
+
[[package]]
|
|
1496
|
+
name = "crunchy"
|
|
1497
|
+
version = "0.2.4"
|
|
1498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1499
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "ctrlc"
|
|
1503
|
+
version = "3.5.1"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "73736a89c4aff73035ba2ed2e565061954da00d4970fc9ac25dcc85a2a20d790"
|
|
1506
|
+
dependencies = [
|
|
1507
|
+
"dispatch2",
|
|
1508
|
+
"nix",
|
|
1509
|
+
"windows-sys 0.61.2",
|
|
1510
|
+
]
|
|
1511
|
+
|
|
1512
|
+
[[package]]
|
|
1513
|
+
name = "cursor-icon"
|
|
1514
|
+
version = "1.2.0"
|
|
1515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1516
|
+
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "data-encoding"
|
|
1520
|
+
version = "2.9.0"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
|
|
1523
|
+
|
|
1524
|
+
[[package]]
|
|
1525
|
+
name = "derive_more"
|
|
1526
|
+
version = "1.0.0"
|
|
1527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1528
|
+
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
|
|
1529
|
+
dependencies = [
|
|
1530
|
+
"derive_more-impl",
|
|
1531
|
+
]
|
|
1532
|
+
|
|
1533
|
+
[[package]]
|
|
1534
|
+
name = "derive_more-impl"
|
|
1535
|
+
version = "1.0.0"
|
|
1536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1537
|
+
checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
|
|
1538
|
+
dependencies = [
|
|
1539
|
+
"proc-macro2",
|
|
1540
|
+
"quote",
|
|
1541
|
+
"syn",
|
|
1542
|
+
"unicode-xid",
|
|
1543
|
+
]
|
|
1544
|
+
|
|
1545
|
+
[[package]]
|
|
1546
|
+
name = "dispatch"
|
|
1547
|
+
version = "0.2.0"
|
|
1548
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1549
|
+
checksum = "bd0c93bb4b0c6d9b77f4435b0ae98c24d17f1c45b2ff844c6151a07256ca923b"
|
|
1550
|
+
|
|
1551
|
+
[[package]]
|
|
1552
|
+
name = "dispatch2"
|
|
1553
|
+
version = "0.3.0"
|
|
1554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1555
|
+
checksum = "89a09f22a6c6069a18470eb92d2298acf25463f14256d24778e1230d789a2aec"
|
|
1556
|
+
dependencies = [
|
|
1557
|
+
"bitflags 2.10.0",
|
|
1558
|
+
"block2 0.6.2",
|
|
1559
|
+
"libc",
|
|
1560
|
+
"objc2 0.6.3",
|
|
1561
|
+
]
|
|
1562
|
+
|
|
1563
|
+
[[package]]
|
|
1564
|
+
name = "disqualified"
|
|
1565
|
+
version = "1.0.0"
|
|
1566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1567
|
+
checksum = "c9c272297e804878a2a4b707cfcfc6d2328b5bb936944613b4fdf2b9269afdfd"
|
|
1568
|
+
|
|
1569
|
+
[[package]]
|
|
1570
|
+
name = "dlib"
|
|
1571
|
+
version = "0.5.2"
|
|
1572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1573
|
+
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
|
|
1574
|
+
dependencies = [
|
|
1575
|
+
"libloading",
|
|
1576
|
+
]
|
|
1577
|
+
|
|
1578
|
+
[[package]]
|
|
1579
|
+
name = "document-features"
|
|
1580
|
+
version = "0.2.12"
|
|
1581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1582
|
+
checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
|
|
1583
|
+
dependencies = [
|
|
1584
|
+
"litrs",
|
|
1585
|
+
]
|
|
1586
|
+
|
|
1587
|
+
[[package]]
|
|
1588
|
+
name = "downcast-rs"
|
|
1589
|
+
version = "1.2.1"
|
|
1590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1591
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
|
1592
|
+
|
|
1593
|
+
[[package]]
|
|
1594
|
+
name = "dpi"
|
|
1595
|
+
version = "0.1.2"
|
|
1596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
+
checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "either"
|
|
1601
|
+
version = "1.15.0"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1604
|
+
|
|
1605
|
+
[[package]]
|
|
1606
|
+
name = "encase"
|
|
1607
|
+
version = "0.10.0"
|
|
1608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1609
|
+
checksum = "b0a05902cf601ed11d564128448097b98ebe3c6574bd7b6a653a3d56d54aa020"
|
|
1610
|
+
dependencies = [
|
|
1611
|
+
"const_panic",
|
|
1612
|
+
"encase_derive",
|
|
1613
|
+
"glam",
|
|
1614
|
+
"thiserror 1.0.69",
|
|
1615
|
+
]
|
|
1616
|
+
|
|
1617
|
+
[[package]]
|
|
1618
|
+
name = "encase_derive"
|
|
1619
|
+
version = "0.10.0"
|
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1621
|
+
checksum = "181d475b694e2dd56ae919ce7699d344d1fd259292d590c723a50d1189a2ea85"
|
|
1622
|
+
dependencies = [
|
|
1623
|
+
"encase_derive_impl",
|
|
1624
|
+
]
|
|
1625
|
+
|
|
1626
|
+
[[package]]
|
|
1627
|
+
name = "encase_derive_impl"
|
|
1628
|
+
version = "0.10.0"
|
|
1629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1630
|
+
checksum = "f97b51c5cc57ef7c5f7a0c57c250251c49ee4c28f819f87ac32f4aceabc36792"
|
|
1631
|
+
dependencies = [
|
|
1632
|
+
"proc-macro2",
|
|
1633
|
+
"quote",
|
|
1634
|
+
"syn",
|
|
1635
|
+
]
|
|
1636
|
+
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "equivalent"
|
|
1639
|
+
version = "1.0.2"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "erased-serde"
|
|
1645
|
+
version = "0.4.9"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
|
|
1648
|
+
dependencies = [
|
|
1649
|
+
"serde",
|
|
1650
|
+
"serde_core",
|
|
1651
|
+
"typeid",
|
|
1652
|
+
]
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "errno"
|
|
1656
|
+
version = "0.3.14"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"libc",
|
|
1661
|
+
"windows-sys 0.61.2",
|
|
1662
|
+
]
|
|
1663
|
+
|
|
1664
|
+
[[package]]
|
|
1665
|
+
name = "euclid"
|
|
1666
|
+
version = "0.22.11"
|
|
1667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1668
|
+
checksum = "ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48"
|
|
1669
|
+
dependencies = [
|
|
1670
|
+
"num-traits",
|
|
1671
|
+
]
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "event-listener"
|
|
1675
|
+
version = "2.5.3"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "event-listener"
|
|
1681
|
+
version = "5.4.1"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
1684
|
+
dependencies = [
|
|
1685
|
+
"concurrent-queue",
|
|
1686
|
+
"parking",
|
|
1687
|
+
"pin-project-lite",
|
|
1688
|
+
]
|
|
1689
|
+
|
|
1690
|
+
[[package]]
|
|
1691
|
+
name = "event-listener-strategy"
|
|
1692
|
+
version = "0.5.4"
|
|
1693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1694
|
+
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
1695
|
+
dependencies = [
|
|
1696
|
+
"event-listener 5.4.1",
|
|
1697
|
+
"pin-project-lite",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "fastrand"
|
|
1702
|
+
version = "2.3.0"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1705
|
+
|
|
1706
|
+
[[package]]
|
|
1707
|
+
name = "find-msvc-tools"
|
|
1708
|
+
version = "0.1.6"
|
|
1709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1710
|
+
checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
|
|
1711
|
+
|
|
1712
|
+
[[package]]
|
|
1713
|
+
name = "fixedbitset"
|
|
1714
|
+
version = "0.4.2"
|
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1716
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "fixedbitset"
|
|
1720
|
+
version = "0.5.7"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "float_next_after"
|
|
1726
|
+
version = "1.0.0"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "8bf7cc16383c4b8d58b9905a8509f02926ce3058053c056376248d958c9df1e8"
|
|
1729
|
+
|
|
1730
|
+
[[package]]
|
|
1731
|
+
name = "foldhash"
|
|
1732
|
+
version = "0.1.5"
|
|
1733
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1734
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1735
|
+
|
|
1736
|
+
[[package]]
|
|
1737
|
+
name = "font-types"
|
|
1738
|
+
version = "0.7.3"
|
|
1739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1740
|
+
checksum = "b3971f9a5ca983419cdc386941ba3b9e1feba01a0ab888adf78739feb2798492"
|
|
1741
|
+
dependencies = [
|
|
1742
|
+
"bytemuck",
|
|
1743
|
+
]
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "fontconfig-parser"
|
|
1747
|
+
version = "0.5.8"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "bbc773e24e02d4ddd8395fd30dc147524273a83e54e0f312d986ea30de5f5646"
|
|
1750
|
+
dependencies = [
|
|
1751
|
+
"roxmltree",
|
|
1752
|
+
]
|
|
1753
|
+
|
|
1754
|
+
[[package]]
|
|
1755
|
+
name = "fontdb"
|
|
1756
|
+
version = "0.16.2"
|
|
1757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1758
|
+
checksum = "b0299020c3ef3f60f526a4f64ab4a3d4ce116b1acbf24cdd22da0068e5d81dc3"
|
|
1759
|
+
dependencies = [
|
|
1760
|
+
"fontconfig-parser",
|
|
1761
|
+
"log",
|
|
1762
|
+
"memmap2",
|
|
1763
|
+
"slotmap",
|
|
1764
|
+
"tinyvec",
|
|
1765
|
+
"ttf-parser 0.20.0",
|
|
1766
|
+
]
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "foreign-types"
|
|
1770
|
+
version = "0.5.0"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
1773
|
+
dependencies = [
|
|
1774
|
+
"foreign-types-macros",
|
|
1775
|
+
"foreign-types-shared",
|
|
1776
|
+
]
|
|
1777
|
+
|
|
1778
|
+
[[package]]
|
|
1779
|
+
name = "foreign-types-macros"
|
|
1780
|
+
version = "0.2.3"
|
|
1781
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1782
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
1783
|
+
dependencies = [
|
|
1784
|
+
"proc-macro2",
|
|
1785
|
+
"quote",
|
|
1786
|
+
"syn",
|
|
1787
|
+
]
|
|
1788
|
+
|
|
1789
|
+
[[package]]
|
|
1790
|
+
name = "foreign-types-shared"
|
|
1791
|
+
version = "0.3.1"
|
|
1792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1793
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "futures-channel"
|
|
1797
|
+
version = "0.3.31"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"futures-core",
|
|
1802
|
+
]
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "futures-core"
|
|
1806
|
+
version = "0.3.31"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "futures-io"
|
|
1812
|
+
version = "0.3.31"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "futures-lite"
|
|
1818
|
+
version = "2.6.1"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
1821
|
+
dependencies = [
|
|
1822
|
+
"fastrand",
|
|
1823
|
+
"futures-core",
|
|
1824
|
+
"futures-io",
|
|
1825
|
+
"parking",
|
|
1826
|
+
"pin-project-lite",
|
|
1827
|
+
]
|
|
1828
|
+
|
|
1829
|
+
[[package]]
|
|
1830
|
+
name = "getrandom"
|
|
1831
|
+
version = "0.2.16"
|
|
1832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1833
|
+
checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
|
|
1834
|
+
dependencies = [
|
|
1835
|
+
"cfg-if",
|
|
1836
|
+
"js-sys",
|
|
1837
|
+
"libc",
|
|
1838
|
+
"wasi",
|
|
1839
|
+
"wasm-bindgen",
|
|
1840
|
+
]
|
|
1841
|
+
|
|
1842
|
+
[[package]]
|
|
1843
|
+
name = "getrandom"
|
|
1844
|
+
version = "0.3.4"
|
|
1845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1846
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1847
|
+
dependencies = [
|
|
1848
|
+
"cfg-if",
|
|
1849
|
+
"libc",
|
|
1850
|
+
"r-efi",
|
|
1851
|
+
"wasip2",
|
|
1852
|
+
]
|
|
1853
|
+
|
|
1854
|
+
[[package]]
|
|
1855
|
+
name = "gl_generator"
|
|
1856
|
+
version = "0.14.0"
|
|
1857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1858
|
+
checksum = "1a95dfc23a2b4a9a2f5ab41d194f8bfda3cabec42af4e39f08c339eb2a0c124d"
|
|
1859
|
+
dependencies = [
|
|
1860
|
+
"khronos_api",
|
|
1861
|
+
"log",
|
|
1862
|
+
"xml-rs",
|
|
1863
|
+
]
|
|
1864
|
+
|
|
1865
|
+
[[package]]
|
|
1866
|
+
name = "glam"
|
|
1867
|
+
version = "0.29.3"
|
|
1868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1869
|
+
checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
|
|
1870
|
+
dependencies = [
|
|
1871
|
+
"bytemuck",
|
|
1872
|
+
"rand",
|
|
1873
|
+
"serde",
|
|
1874
|
+
]
|
|
1875
|
+
|
|
1876
|
+
[[package]]
|
|
1877
|
+
name = "glob"
|
|
1878
|
+
version = "0.3.3"
|
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1880
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "glow"
|
|
1884
|
+
version = "0.14.2"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "d51fa363f025f5c111e03f13eda21162faeacb6911fe8caa0c0349f9cf0c4483"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"js-sys",
|
|
1889
|
+
"slotmap",
|
|
1890
|
+
"wasm-bindgen",
|
|
1891
|
+
"web-sys",
|
|
1892
|
+
]
|
|
1893
|
+
|
|
1894
|
+
[[package]]
|
|
1895
|
+
name = "glutin_wgl_sys"
|
|
1896
|
+
version = "0.6.1"
|
|
1897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
+
checksum = "2c4ee00b289aba7a9e5306d57c2d05499b2e5dc427f84ac708bd2c090212cf3e"
|
|
1899
|
+
dependencies = [
|
|
1900
|
+
"gl_generator",
|
|
1901
|
+
]
|
|
1902
|
+
|
|
1903
|
+
[[package]]
|
|
1904
|
+
name = "gpu-alloc"
|
|
1905
|
+
version = "0.6.0"
|
|
1906
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1907
|
+
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
|
|
1908
|
+
dependencies = [
|
|
1909
|
+
"bitflags 2.10.0",
|
|
1910
|
+
"gpu-alloc-types",
|
|
1911
|
+
]
|
|
1912
|
+
|
|
1913
|
+
[[package]]
|
|
1914
|
+
name = "gpu-alloc-types"
|
|
1915
|
+
version = "0.3.0"
|
|
1916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
+
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
|
|
1918
|
+
dependencies = [
|
|
1919
|
+
"bitflags 2.10.0",
|
|
1920
|
+
]
|
|
1921
|
+
|
|
1922
|
+
[[package]]
|
|
1923
|
+
name = "gpu-allocator"
|
|
1924
|
+
version = "0.27.0"
|
|
1925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
+
checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
|
|
1927
|
+
dependencies = [
|
|
1928
|
+
"log",
|
|
1929
|
+
"presser",
|
|
1930
|
+
"thiserror 1.0.69",
|
|
1931
|
+
"windows",
|
|
1932
|
+
]
|
|
1933
|
+
|
|
1934
|
+
[[package]]
|
|
1935
|
+
name = "gpu-descriptor"
|
|
1936
|
+
version = "0.3.2"
|
|
1937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1938
|
+
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
1939
|
+
dependencies = [
|
|
1940
|
+
"bitflags 2.10.0",
|
|
1941
|
+
"gpu-descriptor-types",
|
|
1942
|
+
"hashbrown 0.15.5",
|
|
1943
|
+
]
|
|
1944
|
+
|
|
1945
|
+
[[package]]
|
|
1946
|
+
name = "gpu-descriptor-types"
|
|
1947
|
+
version = "0.2.0"
|
|
1948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1949
|
+
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
|
|
1950
|
+
dependencies = [
|
|
1951
|
+
"bitflags 2.10.0",
|
|
1952
|
+
]
|
|
1953
|
+
|
|
1954
|
+
[[package]]
|
|
1955
|
+
name = "guillotiere"
|
|
1956
|
+
version = "0.6.2"
|
|
1957
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1958
|
+
checksum = "b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782"
|
|
1959
|
+
dependencies = [
|
|
1960
|
+
"euclid",
|
|
1961
|
+
"svg_fmt",
|
|
1962
|
+
]
|
|
1963
|
+
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "hashbrown"
|
|
1966
|
+
version = "0.14.5"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"ahash",
|
|
1971
|
+
"allocator-api2",
|
|
1972
|
+
"serde",
|
|
1973
|
+
]
|
|
1974
|
+
|
|
1975
|
+
[[package]]
|
|
1976
|
+
name = "hashbrown"
|
|
1977
|
+
version = "0.15.5"
|
|
1978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1979
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1980
|
+
dependencies = [
|
|
1981
|
+
"foldhash",
|
|
1982
|
+
]
|
|
1983
|
+
|
|
1984
|
+
[[package]]
|
|
1985
|
+
name = "hashbrown"
|
|
1986
|
+
version = "0.16.1"
|
|
1987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1988
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1989
|
+
|
|
1990
|
+
[[package]]
|
|
1991
|
+
name = "hermit-abi"
|
|
1992
|
+
version = "0.5.2"
|
|
1993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1994
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "hexasphere"
|
|
1998
|
+
version = "15.1.0"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "d9c9e718d32b6e6b2b32354e1b0367025efdd0b11d6a740b905ddf5db1074679"
|
|
2001
|
+
dependencies = [
|
|
2002
|
+
"constgebra",
|
|
2003
|
+
"glam",
|
|
2004
|
+
"tinyvec",
|
|
2005
|
+
]
|
|
2006
|
+
|
|
2007
|
+
[[package]]
|
|
2008
|
+
name = "hexf-parse"
|
|
2009
|
+
version = "0.2.1"
|
|
2010
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2011
|
+
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "image"
|
|
2015
|
+
version = "0.25.9"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
|
|
2018
|
+
dependencies = [
|
|
2019
|
+
"bytemuck",
|
|
2020
|
+
"byteorder-lite",
|
|
2021
|
+
"moxcms",
|
|
2022
|
+
"num-traits",
|
|
2023
|
+
]
|
|
2024
|
+
|
|
2025
|
+
[[package]]
|
|
2026
|
+
name = "immutable-chunkmap"
|
|
2027
|
+
version = "2.1.2"
|
|
2028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2029
|
+
checksum = "9a3e98b1520e49e252237edc238a39869da9f3241f2ec19dc788c1d24694d1e4"
|
|
2030
|
+
dependencies = [
|
|
2031
|
+
"arrayvec",
|
|
2032
|
+
]
|
|
2033
|
+
|
|
2034
|
+
[[package]]
|
|
2035
|
+
name = "indexmap"
|
|
2036
|
+
version = "2.12.1"
|
|
2037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2038
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
2039
|
+
dependencies = [
|
|
2040
|
+
"equivalent",
|
|
2041
|
+
"hashbrown 0.16.1",
|
|
2042
|
+
]
|
|
2043
|
+
|
|
2044
|
+
[[package]]
|
|
2045
|
+
name = "itertools"
|
|
2046
|
+
version = "0.12.1"
|
|
2047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2048
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
2049
|
+
dependencies = [
|
|
2050
|
+
"either",
|
|
2051
|
+
]
|
|
2052
|
+
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "itertools"
|
|
2055
|
+
version = "0.13.0"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"either",
|
|
2060
|
+
]
|
|
2061
|
+
|
|
2062
|
+
[[package]]
|
|
2063
|
+
name = "jni"
|
|
2064
|
+
version = "0.21.1"
|
|
2065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2066
|
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
|
|
2067
|
+
dependencies = [
|
|
2068
|
+
"cesu8",
|
|
2069
|
+
"cfg-if",
|
|
2070
|
+
"combine",
|
|
2071
|
+
"jni-sys",
|
|
2072
|
+
"log",
|
|
2073
|
+
"thiserror 1.0.69",
|
|
2074
|
+
"walkdir",
|
|
2075
|
+
"windows-sys 0.45.0",
|
|
2076
|
+
]
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "jni-sys"
|
|
2080
|
+
version = "0.3.0"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "jobserver"
|
|
2086
|
+
version = "0.1.34"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
2089
|
+
dependencies = [
|
|
2090
|
+
"getrandom 0.3.4",
|
|
2091
|
+
"libc",
|
|
2092
|
+
]
|
|
2093
|
+
|
|
2094
|
+
[[package]]
|
|
2095
|
+
name = "js-sys"
|
|
2096
|
+
version = "0.3.83"
|
|
2097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
+
checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
|
|
2099
|
+
dependencies = [
|
|
2100
|
+
"once_cell",
|
|
2101
|
+
"wasm-bindgen",
|
|
2102
|
+
]
|
|
2103
|
+
|
|
2104
|
+
[[package]]
|
|
2105
|
+
name = "khronos-egl"
|
|
2106
|
+
version = "6.0.0"
|
|
2107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2108
|
+
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
2109
|
+
dependencies = [
|
|
2110
|
+
"libc",
|
|
2111
|
+
"libloading",
|
|
2112
|
+
"pkg-config",
|
|
2113
|
+
]
|
|
2114
|
+
|
|
2115
|
+
[[package]]
|
|
2116
|
+
name = "khronos_api"
|
|
2117
|
+
version = "3.1.0"
|
|
2118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2119
|
+
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
2120
|
+
|
|
2121
|
+
[[package]]
|
|
2122
|
+
name = "kurbo"
|
|
2123
|
+
version = "0.11.3"
|
|
2124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2125
|
+
checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
|
|
2126
|
+
dependencies = [
|
|
2127
|
+
"arrayvec",
|
|
2128
|
+
"euclid",
|
|
2129
|
+
"smallvec",
|
|
2130
|
+
]
|
|
2131
|
+
|
|
2132
|
+
[[package]]
|
|
2133
|
+
name = "lazy_static"
|
|
2134
|
+
version = "1.5.0"
|
|
2135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2136
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "lazycell"
|
|
2140
|
+
version = "1.3.0"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
2143
|
+
|
|
2144
|
+
[[package]]
|
|
2145
|
+
name = "libc"
|
|
2146
|
+
version = "0.2.178"
|
|
2147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2148
|
+
checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
|
|
2149
|
+
|
|
2150
|
+
[[package]]
|
|
2151
|
+
name = "libloading"
|
|
2152
|
+
version = "0.8.9"
|
|
2153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
2155
|
+
dependencies = [
|
|
2156
|
+
"cfg-if",
|
|
2157
|
+
"windows-link",
|
|
2158
|
+
]
|
|
2159
|
+
|
|
2160
|
+
[[package]]
|
|
2161
|
+
name = "libm"
|
|
2162
|
+
version = "0.2.15"
|
|
2163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2164
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
2165
|
+
|
|
2166
|
+
[[package]]
|
|
2167
|
+
name = "libredox"
|
|
2168
|
+
version = "0.1.12"
|
|
2169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2170
|
+
checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
|
|
2171
|
+
dependencies = [
|
|
2172
|
+
"bitflags 2.10.0",
|
|
2173
|
+
"libc",
|
|
2174
|
+
"redox_syscall 0.7.0",
|
|
2175
|
+
]
|
|
2176
|
+
|
|
2177
|
+
[[package]]
|
|
2178
|
+
name = "linux-raw-sys"
|
|
2179
|
+
version = "0.4.15"
|
|
2180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2181
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
2182
|
+
|
|
2183
|
+
[[package]]
|
|
2184
|
+
name = "linux-raw-sys"
|
|
2185
|
+
version = "0.11.0"
|
|
2186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2187
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
2188
|
+
|
|
2189
|
+
[[package]]
|
|
2190
|
+
name = "litrs"
|
|
2191
|
+
version = "1.0.0"
|
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
+
checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
|
|
2194
|
+
|
|
2195
|
+
[[package]]
|
|
2196
|
+
name = "lock_api"
|
|
2197
|
+
version = "0.4.14"
|
|
2198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2199
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
2200
|
+
dependencies = [
|
|
2201
|
+
"scopeguard",
|
|
2202
|
+
]
|
|
2203
|
+
|
|
2204
|
+
[[package]]
|
|
2205
|
+
name = "log"
|
|
2206
|
+
version = "0.4.29"
|
|
2207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2208
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
2209
|
+
|
|
2210
|
+
[[package]]
|
|
2211
|
+
name = "lyon_algorithms"
|
|
2212
|
+
version = "1.0.16"
|
|
2213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2214
|
+
checksum = "f4c0829e28c4f336396f250d850c3987e16ce6db057ffe047ce0dd54aab6b647"
|
|
2215
|
+
dependencies = [
|
|
2216
|
+
"lyon_path",
|
|
2217
|
+
"num-traits",
|
|
2218
|
+
]
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "lyon_geom"
|
|
2222
|
+
version = "1.0.18"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "e260b6de923e6e47adfedf6243013a7a874684165a6a277594ee3906021b2343"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"arrayvec",
|
|
2227
|
+
"euclid",
|
|
2228
|
+
"num-traits",
|
|
2229
|
+
]
|
|
2230
|
+
|
|
2231
|
+
[[package]]
|
|
2232
|
+
name = "lyon_path"
|
|
2233
|
+
version = "1.0.16"
|
|
2234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2235
|
+
checksum = "1aeca86bcfd632a15984ba029b539ffb811e0a70bf55e814ef8b0f54f506fdeb"
|
|
2236
|
+
dependencies = [
|
|
2237
|
+
"lyon_geom",
|
|
2238
|
+
"num-traits",
|
|
2239
|
+
]
|
|
2240
|
+
|
|
2241
|
+
[[package]]
|
|
2242
|
+
name = "lyon_tessellation"
|
|
2243
|
+
version = "1.0.16"
|
|
2244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
+
checksum = "f3f586142e1280335b1bc89539f7c97dd80f08fc43e9ab1b74ef0a42b04aa353"
|
|
2246
|
+
dependencies = [
|
|
2247
|
+
"float_next_after",
|
|
2248
|
+
"lyon_path",
|
|
2249
|
+
"num-traits",
|
|
2250
|
+
]
|
|
2251
|
+
|
|
2252
|
+
[[package]]
|
|
2253
|
+
name = "magnus"
|
|
2254
|
+
version = "0.8.2"
|
|
2255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2256
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
2257
|
+
dependencies = [
|
|
2258
|
+
"magnus-macros",
|
|
2259
|
+
"rb-sys",
|
|
2260
|
+
"rb-sys-env",
|
|
2261
|
+
"seq-macro",
|
|
2262
|
+
]
|
|
2263
|
+
|
|
2264
|
+
[[package]]
|
|
2265
|
+
name = "magnus-macros"
|
|
2266
|
+
version = "0.8.0"
|
|
2267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2268
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
2269
|
+
dependencies = [
|
|
2270
|
+
"proc-macro2",
|
|
2271
|
+
"quote",
|
|
2272
|
+
"syn",
|
|
2273
|
+
]
|
|
2274
|
+
|
|
2275
|
+
[[package]]
|
|
2276
|
+
name = "malloc_buf"
|
|
2277
|
+
version = "0.0.6"
|
|
2278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2279
|
+
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
2280
|
+
dependencies = [
|
|
2281
|
+
"libc",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "matchers"
|
|
2286
|
+
version = "0.2.0"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
2289
|
+
dependencies = [
|
|
2290
|
+
"regex-automata",
|
|
2291
|
+
]
|
|
2292
|
+
|
|
2293
|
+
[[package]]
|
|
2294
|
+
name = "memchr"
|
|
2295
|
+
version = "2.7.6"
|
|
2296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2297
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
2298
|
+
|
|
2299
|
+
[[package]]
|
|
2300
|
+
name = "memmap2"
|
|
2301
|
+
version = "0.9.9"
|
|
2302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
|
+
checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
|
|
2304
|
+
dependencies = [
|
|
2305
|
+
"libc",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "metal"
|
|
2310
|
+
version = "0.29.0"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "7ecfd3296f8c56b7c1f6fbac3c71cefa9d78ce009850c45000015f206dc7fa21"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"bitflags 2.10.0",
|
|
2315
|
+
"block",
|
|
2316
|
+
"core-graphics-types",
|
|
2317
|
+
"foreign-types",
|
|
2318
|
+
"log",
|
|
2319
|
+
"objc",
|
|
2320
|
+
"paste",
|
|
2321
|
+
]
|
|
2322
|
+
|
|
2323
|
+
[[package]]
|
|
2324
|
+
name = "minimal-lexical"
|
|
2325
|
+
version = "0.2.1"
|
|
2326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2327
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
2328
|
+
|
|
2329
|
+
[[package]]
|
|
2330
|
+
name = "moxcms"
|
|
2331
|
+
version = "0.7.11"
|
|
2332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2333
|
+
checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
|
|
2334
|
+
dependencies = [
|
|
2335
|
+
"num-traits",
|
|
2336
|
+
"pxfm",
|
|
2337
|
+
]
|
|
2338
|
+
|
|
2339
|
+
[[package]]
|
|
2340
|
+
name = "naga"
|
|
2341
|
+
version = "23.1.0"
|
|
2342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2343
|
+
checksum = "364f94bc34f61332abebe8cad6f6cd82a5b65cff22c828d05d0968911462ca4f"
|
|
2344
|
+
dependencies = [
|
|
2345
|
+
"arrayvec",
|
|
2346
|
+
"bit-set 0.8.0",
|
|
2347
|
+
"bitflags 2.10.0",
|
|
2348
|
+
"cfg_aliases 0.1.1",
|
|
2349
|
+
"codespan-reporting",
|
|
2350
|
+
"hexf-parse",
|
|
2351
|
+
"indexmap",
|
|
2352
|
+
"log",
|
|
2353
|
+
"pp-rs",
|
|
2354
|
+
"rustc-hash",
|
|
2355
|
+
"spirv",
|
|
2356
|
+
"termcolor",
|
|
2357
|
+
"thiserror 1.0.69",
|
|
2358
|
+
"unicode-xid",
|
|
2359
|
+
]
|
|
2360
|
+
|
|
2361
|
+
[[package]]
|
|
2362
|
+
name = "naga_oil"
|
|
2363
|
+
version = "0.16.0"
|
|
2364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2365
|
+
checksum = "31ea1f080bb359927cd5404d0af1e5e6758f4f2d82ecfbebb0a0c434764e40f1"
|
|
2366
|
+
dependencies = [
|
|
2367
|
+
"bit-set 0.5.3",
|
|
2368
|
+
"codespan-reporting",
|
|
2369
|
+
"data-encoding",
|
|
2370
|
+
"indexmap",
|
|
2371
|
+
"naga",
|
|
2372
|
+
"once_cell",
|
|
2373
|
+
"regex",
|
|
2374
|
+
"regex-syntax",
|
|
2375
|
+
"rustc-hash",
|
|
2376
|
+
"thiserror 1.0.69",
|
|
2377
|
+
"tracing",
|
|
2378
|
+
"unicode-ident",
|
|
2379
|
+
]
|
|
2380
|
+
|
|
2381
|
+
[[package]]
|
|
2382
|
+
name = "ndk"
|
|
2383
|
+
version = "0.9.0"
|
|
2384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2385
|
+
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
|
|
2386
|
+
dependencies = [
|
|
2387
|
+
"bitflags 2.10.0",
|
|
2388
|
+
"jni-sys",
|
|
2389
|
+
"log",
|
|
2390
|
+
"ndk-sys 0.6.0+11769913",
|
|
2391
|
+
"num_enum",
|
|
2392
|
+
"raw-window-handle",
|
|
2393
|
+
"thiserror 1.0.69",
|
|
2394
|
+
]
|
|
2395
|
+
|
|
2396
|
+
[[package]]
|
|
2397
|
+
name = "ndk-context"
|
|
2398
|
+
version = "0.1.1"
|
|
2399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2400
|
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
2401
|
+
|
|
2402
|
+
[[package]]
|
|
2403
|
+
name = "ndk-sys"
|
|
2404
|
+
version = "0.5.0+25.2.9519653"
|
|
2405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2406
|
+
checksum = "8c196769dd60fd4f363e11d948139556a344e79d451aeb2fa2fd040738ef7691"
|
|
2407
|
+
dependencies = [
|
|
2408
|
+
"jni-sys",
|
|
2409
|
+
]
|
|
2410
|
+
|
|
2411
|
+
[[package]]
|
|
2412
|
+
name = "ndk-sys"
|
|
2413
|
+
version = "0.6.0+11769913"
|
|
2414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2415
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
2416
|
+
dependencies = [
|
|
2417
|
+
"jni-sys",
|
|
2418
|
+
]
|
|
2419
|
+
|
|
2420
|
+
[[package]]
|
|
2421
|
+
name = "nix"
|
|
2422
|
+
version = "0.30.1"
|
|
2423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
2425
|
+
dependencies = [
|
|
2426
|
+
"bitflags 2.10.0",
|
|
2427
|
+
"cfg-if",
|
|
2428
|
+
"cfg_aliases 0.2.1",
|
|
2429
|
+
"libc",
|
|
2430
|
+
]
|
|
2431
|
+
|
|
2432
|
+
[[package]]
|
|
2433
|
+
name = "nom"
|
|
2434
|
+
version = "7.1.3"
|
|
2435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2436
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
2437
|
+
dependencies = [
|
|
2438
|
+
"memchr",
|
|
2439
|
+
"minimal-lexical",
|
|
2440
|
+
]
|
|
2441
|
+
|
|
2442
|
+
[[package]]
|
|
2443
|
+
name = "nonmax"
|
|
2444
|
+
version = "0.5.5"
|
|
2445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2446
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
2447
|
+
|
|
2448
|
+
[[package]]
|
|
2449
|
+
name = "nu-ansi-term"
|
|
2450
|
+
version = "0.50.3"
|
|
2451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2452
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
2453
|
+
dependencies = [
|
|
2454
|
+
"windows-sys 0.61.2",
|
|
2455
|
+
]
|
|
2456
|
+
|
|
2457
|
+
[[package]]
|
|
2458
|
+
name = "num-traits"
|
|
2459
|
+
version = "0.2.19"
|
|
2460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2461
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2462
|
+
dependencies = [
|
|
2463
|
+
"autocfg",
|
|
2464
|
+
"libm",
|
|
2465
|
+
]
|
|
2466
|
+
|
|
2467
|
+
[[package]]
|
|
2468
|
+
name = "num_enum"
|
|
2469
|
+
version = "0.7.5"
|
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2471
|
+
checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c"
|
|
2472
|
+
dependencies = [
|
|
2473
|
+
"num_enum_derive",
|
|
2474
|
+
"rustversion",
|
|
2475
|
+
]
|
|
2476
|
+
|
|
2477
|
+
[[package]]
|
|
2478
|
+
name = "num_enum_derive"
|
|
2479
|
+
version = "0.7.5"
|
|
2480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
+
checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7"
|
|
2482
|
+
dependencies = [
|
|
2483
|
+
"proc-macro-crate",
|
|
2484
|
+
"proc-macro2",
|
|
2485
|
+
"quote",
|
|
2486
|
+
"syn",
|
|
2487
|
+
]
|
|
2488
|
+
|
|
2489
|
+
[[package]]
|
|
2490
|
+
name = "objc"
|
|
2491
|
+
version = "0.2.7"
|
|
2492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2493
|
+
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
2494
|
+
dependencies = [
|
|
2495
|
+
"malloc_buf",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "objc-sys"
|
|
2500
|
+
version = "0.3.5"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
|
|
2503
|
+
|
|
2504
|
+
[[package]]
|
|
2505
|
+
name = "objc2"
|
|
2506
|
+
version = "0.5.2"
|
|
2507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2508
|
+
checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
|
|
2509
|
+
dependencies = [
|
|
2510
|
+
"objc-sys",
|
|
2511
|
+
"objc2-encode",
|
|
2512
|
+
]
|
|
2513
|
+
|
|
2514
|
+
[[package]]
|
|
2515
|
+
name = "objc2"
|
|
2516
|
+
version = "0.6.3"
|
|
2517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2518
|
+
checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
|
|
2519
|
+
dependencies = [
|
|
2520
|
+
"objc2-encode",
|
|
2521
|
+
]
|
|
2522
|
+
|
|
2523
|
+
[[package]]
|
|
2524
|
+
name = "objc2-app-kit"
|
|
2525
|
+
version = "0.2.2"
|
|
2526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2527
|
+
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
|
|
2528
|
+
dependencies = [
|
|
2529
|
+
"bitflags 2.10.0",
|
|
2530
|
+
"block2 0.5.1",
|
|
2531
|
+
"libc",
|
|
2532
|
+
"objc2 0.5.2",
|
|
2533
|
+
"objc2-core-data",
|
|
2534
|
+
"objc2-core-image",
|
|
2535
|
+
"objc2-foundation",
|
|
2536
|
+
"objc2-quartz-core",
|
|
2537
|
+
]
|
|
2538
|
+
|
|
2539
|
+
[[package]]
|
|
2540
|
+
name = "objc2-cloud-kit"
|
|
2541
|
+
version = "0.2.2"
|
|
2542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2543
|
+
checksum = "74dd3b56391c7a0596a295029734d3c1c5e7e510a4cb30245f8221ccea96b009"
|
|
2544
|
+
dependencies = [
|
|
2545
|
+
"bitflags 2.10.0",
|
|
2546
|
+
"block2 0.5.1",
|
|
2547
|
+
"objc2 0.5.2",
|
|
2548
|
+
"objc2-core-location",
|
|
2549
|
+
"objc2-foundation",
|
|
2550
|
+
]
|
|
2551
|
+
|
|
2552
|
+
[[package]]
|
|
2553
|
+
name = "objc2-contacts"
|
|
2554
|
+
version = "0.2.2"
|
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2556
|
+
checksum = "a5ff520e9c33812fd374d8deecef01d4a840e7b41862d849513de77e44aa4889"
|
|
2557
|
+
dependencies = [
|
|
2558
|
+
"block2 0.5.1",
|
|
2559
|
+
"objc2 0.5.2",
|
|
2560
|
+
"objc2-foundation",
|
|
2561
|
+
]
|
|
2562
|
+
|
|
2563
|
+
[[package]]
|
|
2564
|
+
name = "objc2-core-data"
|
|
2565
|
+
version = "0.2.2"
|
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2567
|
+
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
|
|
2568
|
+
dependencies = [
|
|
2569
|
+
"bitflags 2.10.0",
|
|
2570
|
+
"block2 0.5.1",
|
|
2571
|
+
"objc2 0.5.2",
|
|
2572
|
+
"objc2-foundation",
|
|
2573
|
+
]
|
|
2574
|
+
|
|
2575
|
+
[[package]]
|
|
2576
|
+
name = "objc2-core-image"
|
|
2577
|
+
version = "0.2.2"
|
|
2578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2579
|
+
checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
|
|
2580
|
+
dependencies = [
|
|
2581
|
+
"block2 0.5.1",
|
|
2582
|
+
"objc2 0.5.2",
|
|
2583
|
+
"objc2-foundation",
|
|
2584
|
+
"objc2-metal",
|
|
2585
|
+
]
|
|
2586
|
+
|
|
2587
|
+
[[package]]
|
|
2588
|
+
name = "objc2-core-location"
|
|
2589
|
+
version = "0.2.2"
|
|
2590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2591
|
+
checksum = "000cfee34e683244f284252ee206a27953279d370e309649dc3ee317b37e5781"
|
|
2592
|
+
dependencies = [
|
|
2593
|
+
"block2 0.5.1",
|
|
2594
|
+
"objc2 0.5.2",
|
|
2595
|
+
"objc2-contacts",
|
|
2596
|
+
"objc2-foundation",
|
|
2597
|
+
]
|
|
2598
|
+
|
|
2599
|
+
[[package]]
|
|
2600
|
+
name = "objc2-encode"
|
|
2601
|
+
version = "4.1.0"
|
|
2602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2603
|
+
checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
|
|
2604
|
+
|
|
2605
|
+
[[package]]
|
|
2606
|
+
name = "objc2-foundation"
|
|
2607
|
+
version = "0.2.2"
|
|
2608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2609
|
+
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
|
|
2610
|
+
dependencies = [
|
|
2611
|
+
"bitflags 2.10.0",
|
|
2612
|
+
"block2 0.5.1",
|
|
2613
|
+
"dispatch",
|
|
2614
|
+
"libc",
|
|
2615
|
+
"objc2 0.5.2",
|
|
2616
|
+
]
|
|
2617
|
+
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "objc2-link-presentation"
|
|
2620
|
+
version = "0.2.2"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "a1a1ae721c5e35be65f01a03b6d2ac13a54cb4fa70d8a5da293d7b0020261398"
|
|
2623
|
+
dependencies = [
|
|
2624
|
+
"block2 0.5.1",
|
|
2625
|
+
"objc2 0.5.2",
|
|
2626
|
+
"objc2-app-kit",
|
|
2627
|
+
"objc2-foundation",
|
|
2628
|
+
]
|
|
2629
|
+
|
|
2630
|
+
[[package]]
|
|
2631
|
+
name = "objc2-metal"
|
|
2632
|
+
version = "0.2.2"
|
|
2633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2634
|
+
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
|
|
2635
|
+
dependencies = [
|
|
2636
|
+
"bitflags 2.10.0",
|
|
2637
|
+
"block2 0.5.1",
|
|
2638
|
+
"objc2 0.5.2",
|
|
2639
|
+
"objc2-foundation",
|
|
2640
|
+
]
|
|
2641
|
+
|
|
2642
|
+
[[package]]
|
|
2643
|
+
name = "objc2-quartz-core"
|
|
2644
|
+
version = "0.2.2"
|
|
2645
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2646
|
+
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
|
|
2647
|
+
dependencies = [
|
|
2648
|
+
"bitflags 2.10.0",
|
|
2649
|
+
"block2 0.5.1",
|
|
2650
|
+
"objc2 0.5.2",
|
|
2651
|
+
"objc2-foundation",
|
|
2652
|
+
"objc2-metal",
|
|
2653
|
+
]
|
|
2654
|
+
|
|
2655
|
+
[[package]]
|
|
2656
|
+
name = "objc2-symbols"
|
|
2657
|
+
version = "0.2.2"
|
|
2658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2659
|
+
checksum = "0a684efe3dec1b305badae1a28f6555f6ddd3bb2c2267896782858d5a78404dc"
|
|
2660
|
+
dependencies = [
|
|
2661
|
+
"objc2 0.5.2",
|
|
2662
|
+
"objc2-foundation",
|
|
2663
|
+
]
|
|
2664
|
+
|
|
2665
|
+
[[package]]
|
|
2666
|
+
name = "objc2-ui-kit"
|
|
2667
|
+
version = "0.2.2"
|
|
2668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
+
checksum = "b8bb46798b20cd6b91cbd113524c490f1686f4c4e8f49502431415f3512e2b6f"
|
|
2670
|
+
dependencies = [
|
|
2671
|
+
"bitflags 2.10.0",
|
|
2672
|
+
"block2 0.5.1",
|
|
2673
|
+
"objc2 0.5.2",
|
|
2674
|
+
"objc2-cloud-kit",
|
|
2675
|
+
"objc2-core-data",
|
|
2676
|
+
"objc2-core-image",
|
|
2677
|
+
"objc2-core-location",
|
|
2678
|
+
"objc2-foundation",
|
|
2679
|
+
"objc2-link-presentation",
|
|
2680
|
+
"objc2-quartz-core",
|
|
2681
|
+
"objc2-symbols",
|
|
2682
|
+
"objc2-uniform-type-identifiers",
|
|
2683
|
+
"objc2-user-notifications",
|
|
2684
|
+
]
|
|
2685
|
+
|
|
2686
|
+
[[package]]
|
|
2687
|
+
name = "objc2-uniform-type-identifiers"
|
|
2688
|
+
version = "0.2.2"
|
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
+
checksum = "44fa5f9748dbfe1ca6c0b79ad20725a11eca7c2218bceb4b005cb1be26273bfe"
|
|
2691
|
+
dependencies = [
|
|
2692
|
+
"block2 0.5.1",
|
|
2693
|
+
"objc2 0.5.2",
|
|
2694
|
+
"objc2-foundation",
|
|
2695
|
+
]
|
|
2696
|
+
|
|
2697
|
+
[[package]]
|
|
2698
|
+
name = "objc2-user-notifications"
|
|
2699
|
+
version = "0.2.2"
|
|
2700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2701
|
+
checksum = "76cfcbf642358e8689af64cee815d139339f3ed8ad05103ed5eaf73db8d84cb3"
|
|
2702
|
+
dependencies = [
|
|
2703
|
+
"bitflags 2.10.0",
|
|
2704
|
+
"block2 0.5.1",
|
|
2705
|
+
"objc2 0.5.2",
|
|
2706
|
+
"objc2-core-location",
|
|
2707
|
+
"objc2-foundation",
|
|
2708
|
+
]
|
|
2709
|
+
|
|
2710
|
+
[[package]]
|
|
2711
|
+
name = "offset-allocator"
|
|
2712
|
+
version = "0.2.0"
|
|
2713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2714
|
+
checksum = "e234d535da3521eb95106f40f0b73483d80bfb3aacf27c40d7e2b72f1a3e00a2"
|
|
2715
|
+
dependencies = [
|
|
2716
|
+
"log",
|
|
2717
|
+
"nonmax",
|
|
2718
|
+
]
|
|
2719
|
+
|
|
2720
|
+
[[package]]
|
|
2721
|
+
name = "once_cell"
|
|
2722
|
+
version = "1.21.3"
|
|
2723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
2725
|
+
|
|
2726
|
+
[[package]]
|
|
2727
|
+
name = "orbclient"
|
|
2728
|
+
version = "0.3.49"
|
|
2729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2730
|
+
checksum = "247ad146e19b9437f8604c21f8652423595cf710ad108af40e77d3ae6e96b827"
|
|
2731
|
+
dependencies = [
|
|
2732
|
+
"libredox",
|
|
2733
|
+
]
|
|
2734
|
+
|
|
2735
|
+
[[package]]
|
|
2736
|
+
name = "parking"
|
|
2737
|
+
version = "2.2.1"
|
|
2738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2740
|
+
|
|
2741
|
+
[[package]]
|
|
2742
|
+
name = "parking_lot"
|
|
2743
|
+
version = "0.12.5"
|
|
2744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2745
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
2746
|
+
dependencies = [
|
|
2747
|
+
"lock_api",
|
|
2748
|
+
"parking_lot_core",
|
|
2749
|
+
]
|
|
2750
|
+
|
|
2751
|
+
[[package]]
|
|
2752
|
+
name = "parking_lot_core"
|
|
2753
|
+
version = "0.9.12"
|
|
2754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2755
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
2756
|
+
dependencies = [
|
|
2757
|
+
"cfg-if",
|
|
2758
|
+
"libc",
|
|
2759
|
+
"redox_syscall 0.5.18",
|
|
2760
|
+
"smallvec",
|
|
2761
|
+
"windows-link",
|
|
2762
|
+
]
|
|
2763
|
+
|
|
2764
|
+
[[package]]
|
|
2765
|
+
name = "paste"
|
|
2766
|
+
version = "1.0.15"
|
|
2767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2768
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
2769
|
+
|
|
2770
|
+
[[package]]
|
|
2771
|
+
name = "petgraph"
|
|
2772
|
+
version = "0.6.5"
|
|
2773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
2775
|
+
dependencies = [
|
|
2776
|
+
"fixedbitset 0.4.2",
|
|
2777
|
+
"indexmap",
|
|
2778
|
+
]
|
|
2779
|
+
|
|
2780
|
+
[[package]]
|
|
2781
|
+
name = "pin-project"
|
|
2782
|
+
version = "1.1.10"
|
|
2783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2784
|
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
|
|
2785
|
+
dependencies = [
|
|
2786
|
+
"pin-project-internal",
|
|
2787
|
+
]
|
|
2788
|
+
|
|
2789
|
+
[[package]]
|
|
2790
|
+
name = "pin-project-internal"
|
|
2791
|
+
version = "1.1.10"
|
|
2792
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2793
|
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
|
|
2794
|
+
dependencies = [
|
|
2795
|
+
"proc-macro2",
|
|
2796
|
+
"quote",
|
|
2797
|
+
"syn",
|
|
2798
|
+
]
|
|
2799
|
+
|
|
2800
|
+
[[package]]
|
|
2801
|
+
name = "pin-project-lite"
|
|
2802
|
+
version = "0.2.16"
|
|
2803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
|
|
2805
|
+
|
|
2806
|
+
[[package]]
|
|
2807
|
+
name = "piper"
|
|
2808
|
+
version = "0.2.4"
|
|
2809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2810
|
+
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
|
2811
|
+
dependencies = [
|
|
2812
|
+
"atomic-waker",
|
|
2813
|
+
"fastrand",
|
|
2814
|
+
"futures-io",
|
|
2815
|
+
]
|
|
2816
|
+
|
|
2817
|
+
[[package]]
|
|
2818
|
+
name = "pkg-config"
|
|
2819
|
+
version = "0.3.32"
|
|
2820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
2822
|
+
|
|
2823
|
+
[[package]]
|
|
2824
|
+
name = "polling"
|
|
2825
|
+
version = "3.11.0"
|
|
2826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2827
|
+
checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
|
|
2828
|
+
dependencies = [
|
|
2829
|
+
"cfg-if",
|
|
2830
|
+
"concurrent-queue",
|
|
2831
|
+
"hermit-abi",
|
|
2832
|
+
"pin-project-lite",
|
|
2833
|
+
"rustix 1.1.3",
|
|
2834
|
+
"windows-sys 0.61.2",
|
|
2835
|
+
]
|
|
2836
|
+
|
|
2837
|
+
[[package]]
|
|
2838
|
+
name = "portable-atomic"
|
|
2839
|
+
version = "1.13.0"
|
|
2840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2841
|
+
checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
|
|
2842
|
+
|
|
2843
|
+
[[package]]
|
|
2844
|
+
name = "portable-atomic-util"
|
|
2845
|
+
version = "0.2.4"
|
|
2846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2847
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
2848
|
+
dependencies = [
|
|
2849
|
+
"portable-atomic",
|
|
2850
|
+
]
|
|
2851
|
+
|
|
2852
|
+
[[package]]
|
|
2853
|
+
name = "pp-rs"
|
|
2854
|
+
version = "0.2.1"
|
|
2855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2856
|
+
checksum = "bb458bb7f6e250e6eb79d5026badc10a3ebb8f9a15d1fff0f13d17c71f4d6dee"
|
|
2857
|
+
dependencies = [
|
|
2858
|
+
"unicode-xid",
|
|
2859
|
+
]
|
|
2860
|
+
|
|
2861
|
+
[[package]]
|
|
2862
|
+
name = "ppv-lite86"
|
|
2863
|
+
version = "0.2.21"
|
|
2864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2865
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
2866
|
+
dependencies = [
|
|
2867
|
+
"zerocopy",
|
|
2868
|
+
]
|
|
2869
|
+
|
|
2870
|
+
[[package]]
|
|
2871
|
+
name = "presser"
|
|
2872
|
+
version = "0.3.1"
|
|
2873
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2874
|
+
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
|
2875
|
+
|
|
2876
|
+
[[package]]
|
|
2877
|
+
name = "prettyplease"
|
|
2878
|
+
version = "0.2.37"
|
|
2879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2880
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
2881
|
+
dependencies = [
|
|
2882
|
+
"proc-macro2",
|
|
2883
|
+
"syn",
|
|
2884
|
+
]
|
|
2885
|
+
|
|
2886
|
+
[[package]]
|
|
2887
|
+
name = "proc-macro-crate"
|
|
2888
|
+
version = "3.4.0"
|
|
2889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2890
|
+
checksum = "219cb19e96be00ab2e37d6e299658a0cfa83e52429179969b0f0121b4ac46983"
|
|
2891
|
+
dependencies = [
|
|
2892
|
+
"toml_edit 0.23.10+spec-1.0.0",
|
|
2893
|
+
]
|
|
2894
|
+
|
|
2895
|
+
[[package]]
|
|
2896
|
+
name = "proc-macro2"
|
|
2897
|
+
version = "1.0.104"
|
|
2898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2899
|
+
checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
|
|
2900
|
+
dependencies = [
|
|
2901
|
+
"unicode-ident",
|
|
2902
|
+
]
|
|
2903
|
+
|
|
2904
|
+
[[package]]
|
|
2905
|
+
name = "profiling"
|
|
2906
|
+
version = "1.0.17"
|
|
2907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2908
|
+
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
|
|
2909
|
+
|
|
2910
|
+
[[package]]
|
|
2911
|
+
name = "pxfm"
|
|
2912
|
+
version = "0.1.27"
|
|
2913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2914
|
+
checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
|
|
2915
|
+
dependencies = [
|
|
2916
|
+
"num-traits",
|
|
2917
|
+
]
|
|
2918
|
+
|
|
2919
|
+
[[package]]
|
|
2920
|
+
name = "quote"
|
|
2921
|
+
version = "1.0.42"
|
|
2922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
+
checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
|
|
2924
|
+
dependencies = [
|
|
2925
|
+
"proc-macro2",
|
|
2926
|
+
]
|
|
2927
|
+
|
|
2928
|
+
[[package]]
|
|
2929
|
+
name = "r-efi"
|
|
2930
|
+
version = "5.3.0"
|
|
2931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2932
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2933
|
+
|
|
2934
|
+
[[package]]
|
|
2935
|
+
name = "radsort"
|
|
2936
|
+
version = "0.1.1"
|
|
2937
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2938
|
+
checksum = "019b4b213425016d7d84a153c4c73afb0946fbb4840e4eece7ba8848b9d6da22"
|
|
2939
|
+
|
|
2940
|
+
[[package]]
|
|
2941
|
+
name = "rand"
|
|
2942
|
+
version = "0.8.5"
|
|
2943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2944
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2945
|
+
dependencies = [
|
|
2946
|
+
"libc",
|
|
2947
|
+
"rand_chacha",
|
|
2948
|
+
"rand_core",
|
|
2949
|
+
]
|
|
2950
|
+
|
|
2951
|
+
[[package]]
|
|
2952
|
+
name = "rand_chacha"
|
|
2953
|
+
version = "0.3.1"
|
|
2954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2955
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2956
|
+
dependencies = [
|
|
2957
|
+
"ppv-lite86",
|
|
2958
|
+
"rand_core",
|
|
2959
|
+
]
|
|
2960
|
+
|
|
2961
|
+
[[package]]
|
|
2962
|
+
name = "rand_core"
|
|
2963
|
+
version = "0.6.4"
|
|
2964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2965
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2966
|
+
dependencies = [
|
|
2967
|
+
"getrandom 0.2.16",
|
|
2968
|
+
]
|
|
2969
|
+
|
|
2970
|
+
[[package]]
|
|
2971
|
+
name = "rand_distr"
|
|
2972
|
+
version = "0.4.3"
|
|
2973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2974
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
2975
|
+
dependencies = [
|
|
2976
|
+
"num-traits",
|
|
2977
|
+
"rand",
|
|
2978
|
+
]
|
|
2979
|
+
|
|
2980
|
+
[[package]]
|
|
2981
|
+
name = "range-alloc"
|
|
2982
|
+
version = "0.1.4"
|
|
2983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
|
+
checksum = "c3d6831663a5098ea164f89cff59c6284e95f4e3c76ce9848d4529f5ccca9bde"
|
|
2985
|
+
|
|
2986
|
+
[[package]]
|
|
2987
|
+
name = "rangemap"
|
|
2988
|
+
version = "1.7.1"
|
|
2989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2990
|
+
checksum = "973443cf09a9c8656b574a866ab68dfa19f0867d0340648c7d2f6a71b8a8ea68"
|
|
2991
|
+
|
|
2992
|
+
[[package]]
|
|
2993
|
+
name = "raw-window-handle"
|
|
2994
|
+
version = "0.6.2"
|
|
2995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2996
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
2997
|
+
|
|
2998
|
+
[[package]]
|
|
2999
|
+
name = "rayon"
|
|
3000
|
+
version = "1.11.0"
|
|
3001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3002
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
3003
|
+
dependencies = [
|
|
3004
|
+
"either",
|
|
3005
|
+
"rayon-core",
|
|
3006
|
+
]
|
|
3007
|
+
|
|
3008
|
+
[[package]]
|
|
3009
|
+
name = "rayon-core"
|
|
3010
|
+
version = "1.13.0"
|
|
3011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3012
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
3013
|
+
dependencies = [
|
|
3014
|
+
"crossbeam-deque",
|
|
3015
|
+
"crossbeam-utils",
|
|
3016
|
+
]
|
|
3017
|
+
|
|
3018
|
+
[[package]]
|
|
3019
|
+
name = "rb-sys"
|
|
3020
|
+
version = "0.9.123"
|
|
3021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3022
|
+
checksum = "45fb1a185af97ee456f1c9e56dbe6e2e662bec4fdeaf83c4c28e0e6adfb18816"
|
|
3023
|
+
dependencies = [
|
|
3024
|
+
"rb-sys-build",
|
|
3025
|
+
]
|
|
3026
|
+
|
|
3027
|
+
[[package]]
|
|
3028
|
+
name = "rb-sys-build"
|
|
3029
|
+
version = "0.9.123"
|
|
3030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3031
|
+
checksum = "a58ebd02d7a6033e6a5f6f8d150c1e9f16506039092b84a73e6bedce6d3adf41"
|
|
3032
|
+
dependencies = [
|
|
3033
|
+
"bindgen 0.69.5",
|
|
3034
|
+
"lazy_static",
|
|
3035
|
+
"proc-macro2",
|
|
3036
|
+
"quote",
|
|
3037
|
+
"regex",
|
|
3038
|
+
"shell-words",
|
|
3039
|
+
"syn",
|
|
3040
|
+
]
|
|
3041
|
+
|
|
3042
|
+
[[package]]
|
|
3043
|
+
name = "rb-sys-env"
|
|
3044
|
+
version = "0.2.2"
|
|
3045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3046
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
3047
|
+
|
|
3048
|
+
[[package]]
|
|
3049
|
+
name = "read-fonts"
|
|
3050
|
+
version = "0.22.7"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "69aacb76b5c29acfb7f90155d39759a29496aebb49395830e928a9703d2eec2f"
|
|
3053
|
+
dependencies = [
|
|
3054
|
+
"bytemuck",
|
|
3055
|
+
"font-types",
|
|
3056
|
+
]
|
|
3057
|
+
|
|
3058
|
+
[[package]]
|
|
3059
|
+
name = "rectangle-pack"
|
|
3060
|
+
version = "0.4.2"
|
|
3061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3062
|
+
checksum = "a0d463f2884048e7153449a55166f91028d5b0ea53c79377099ce4e8cf0cf9bb"
|
|
3063
|
+
|
|
3064
|
+
[[package]]
|
|
3065
|
+
name = "redox_syscall"
|
|
3066
|
+
version = "0.4.1"
|
|
3067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3068
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
3069
|
+
dependencies = [
|
|
3070
|
+
"bitflags 1.3.2",
|
|
3071
|
+
]
|
|
3072
|
+
|
|
3073
|
+
[[package]]
|
|
3074
|
+
name = "redox_syscall"
|
|
3075
|
+
version = "0.5.18"
|
|
3076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3077
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
3078
|
+
dependencies = [
|
|
3079
|
+
"bitflags 2.10.0",
|
|
3080
|
+
]
|
|
3081
|
+
|
|
3082
|
+
[[package]]
|
|
3083
|
+
name = "redox_syscall"
|
|
3084
|
+
version = "0.7.0"
|
|
3085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3086
|
+
checksum = "49f3fe0889e69e2ae9e41f4d6c4c0181701d00e4697b356fb1f74173a5e0ee27"
|
|
3087
|
+
dependencies = [
|
|
3088
|
+
"bitflags 2.10.0",
|
|
3089
|
+
]
|
|
3090
|
+
|
|
3091
|
+
[[package]]
|
|
3092
|
+
name = "regex"
|
|
3093
|
+
version = "1.12.2"
|
|
3094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3095
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
3096
|
+
dependencies = [
|
|
3097
|
+
"aho-corasick",
|
|
3098
|
+
"memchr",
|
|
3099
|
+
"regex-automata",
|
|
3100
|
+
"regex-syntax",
|
|
3101
|
+
]
|
|
3102
|
+
|
|
3103
|
+
[[package]]
|
|
3104
|
+
name = "regex-automata"
|
|
3105
|
+
version = "0.4.13"
|
|
3106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
3108
|
+
dependencies = [
|
|
3109
|
+
"aho-corasick",
|
|
3110
|
+
"memchr",
|
|
3111
|
+
"regex-syntax",
|
|
3112
|
+
]
|
|
3113
|
+
|
|
3114
|
+
[[package]]
|
|
3115
|
+
name = "regex-syntax"
|
|
3116
|
+
version = "0.8.8"
|
|
3117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3118
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
3119
|
+
|
|
3120
|
+
[[package]]
|
|
3121
|
+
name = "renderdoc-sys"
|
|
3122
|
+
version = "1.1.0"
|
|
3123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3124
|
+
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
3125
|
+
|
|
3126
|
+
[[package]]
|
|
3127
|
+
name = "ron"
|
|
3128
|
+
version = "0.8.1"
|
|
3129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3130
|
+
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
|
|
3131
|
+
dependencies = [
|
|
3132
|
+
"base64",
|
|
3133
|
+
"bitflags 2.10.0",
|
|
3134
|
+
"serde",
|
|
3135
|
+
"serde_derive",
|
|
3136
|
+
]
|
|
3137
|
+
|
|
3138
|
+
[[package]]
|
|
3139
|
+
name = "roxmltree"
|
|
3140
|
+
version = "0.20.0"
|
|
3141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3142
|
+
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
3143
|
+
|
|
3144
|
+
[[package]]
|
|
3145
|
+
name = "rustc-hash"
|
|
3146
|
+
version = "1.1.0"
|
|
3147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3148
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
3149
|
+
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "rustix"
|
|
3152
|
+
version = "0.38.44"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
3155
|
+
dependencies = [
|
|
3156
|
+
"bitflags 2.10.0",
|
|
3157
|
+
"errno",
|
|
3158
|
+
"libc",
|
|
3159
|
+
"linux-raw-sys 0.4.15",
|
|
3160
|
+
"windows-sys 0.59.0",
|
|
3161
|
+
]
|
|
3162
|
+
|
|
3163
|
+
[[package]]
|
|
3164
|
+
name = "rustix"
|
|
3165
|
+
version = "1.1.3"
|
|
3166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
+
checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
|
|
3168
|
+
dependencies = [
|
|
3169
|
+
"bitflags 2.10.0",
|
|
3170
|
+
"errno",
|
|
3171
|
+
"libc",
|
|
3172
|
+
"linux-raw-sys 0.11.0",
|
|
3173
|
+
"windows-sys 0.61.2",
|
|
3174
|
+
]
|
|
3175
|
+
|
|
3176
|
+
[[package]]
|
|
3177
|
+
name = "rustversion"
|
|
3178
|
+
version = "1.0.22"
|
|
3179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3180
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
3181
|
+
|
|
3182
|
+
[[package]]
|
|
3183
|
+
name = "rustybuzz"
|
|
3184
|
+
version = "0.14.1"
|
|
3185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3186
|
+
checksum = "cfb9cf8877777222e4a3bc7eb247e398b56baba500c38c1c46842431adc8b55c"
|
|
3187
|
+
dependencies = [
|
|
3188
|
+
"bitflags 2.10.0",
|
|
3189
|
+
"bytemuck",
|
|
3190
|
+
"libm",
|
|
3191
|
+
"smallvec",
|
|
3192
|
+
"ttf-parser 0.21.1",
|
|
3193
|
+
"unicode-bidi-mirroring",
|
|
3194
|
+
"unicode-ccc",
|
|
3195
|
+
"unicode-properties",
|
|
3196
|
+
"unicode-script",
|
|
3197
|
+
]
|
|
3198
|
+
|
|
3199
|
+
[[package]]
|
|
3200
|
+
name = "same-file"
|
|
3201
|
+
version = "1.0.6"
|
|
3202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3203
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
3204
|
+
dependencies = [
|
|
3205
|
+
"winapi-util",
|
|
3206
|
+
]
|
|
3207
|
+
|
|
3208
|
+
[[package]]
|
|
3209
|
+
name = "scopeguard"
|
|
3210
|
+
version = "1.2.0"
|
|
3211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3213
|
+
|
|
3214
|
+
[[package]]
|
|
3215
|
+
name = "self_cell"
|
|
3216
|
+
version = "1.2.2"
|
|
3217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3218
|
+
checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
|
|
3219
|
+
|
|
3220
|
+
[[package]]
|
|
3221
|
+
name = "send_wrapper"
|
|
3222
|
+
version = "0.6.0"
|
|
3223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3224
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
3225
|
+
|
|
3226
|
+
[[package]]
|
|
3227
|
+
name = "seq-macro"
|
|
3228
|
+
version = "0.3.6"
|
|
3229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3230
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
3231
|
+
|
|
3232
|
+
[[package]]
|
|
3233
|
+
name = "serde"
|
|
3234
|
+
version = "1.0.228"
|
|
3235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3236
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
3237
|
+
dependencies = [
|
|
3238
|
+
"serde_core",
|
|
3239
|
+
"serde_derive",
|
|
3240
|
+
]
|
|
3241
|
+
|
|
3242
|
+
[[package]]
|
|
3243
|
+
name = "serde_core"
|
|
3244
|
+
version = "1.0.228"
|
|
3245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3246
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
3247
|
+
dependencies = [
|
|
3248
|
+
"serde_derive",
|
|
3249
|
+
]
|
|
3250
|
+
|
|
3251
|
+
[[package]]
|
|
3252
|
+
name = "serde_derive"
|
|
3253
|
+
version = "1.0.228"
|
|
3254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3255
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
3256
|
+
dependencies = [
|
|
3257
|
+
"proc-macro2",
|
|
3258
|
+
"quote",
|
|
3259
|
+
"syn",
|
|
3260
|
+
]
|
|
3261
|
+
|
|
3262
|
+
[[package]]
|
|
3263
|
+
name = "sharded-slab"
|
|
3264
|
+
version = "0.1.7"
|
|
3265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3266
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
3267
|
+
dependencies = [
|
|
3268
|
+
"lazy_static",
|
|
3269
|
+
]
|
|
3270
|
+
|
|
3271
|
+
[[package]]
|
|
3272
|
+
name = "shell-words"
|
|
3273
|
+
version = "1.1.1"
|
|
3274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3275
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
3276
|
+
|
|
3277
|
+
[[package]]
|
|
3278
|
+
name = "shlex"
|
|
3279
|
+
version = "1.3.0"
|
|
3280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3281
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3282
|
+
|
|
3283
|
+
[[package]]
|
|
3284
|
+
name = "siphasher"
|
|
3285
|
+
version = "1.0.1"
|
|
3286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3287
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
3288
|
+
|
|
3289
|
+
[[package]]
|
|
3290
|
+
name = "skrifa"
|
|
3291
|
+
version = "0.22.3"
|
|
3292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3293
|
+
checksum = "8e1c44ad1f6c5bdd4eefed8326711b7dbda9ea45dfd36068c427d332aa382cbe"
|
|
3294
|
+
dependencies = [
|
|
3295
|
+
"bytemuck",
|
|
3296
|
+
"read-fonts",
|
|
3297
|
+
]
|
|
3298
|
+
|
|
3299
|
+
[[package]]
|
|
3300
|
+
name = "slab"
|
|
3301
|
+
version = "0.4.11"
|
|
3302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3303
|
+
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
|
|
3304
|
+
|
|
3305
|
+
[[package]]
|
|
3306
|
+
name = "slotmap"
|
|
3307
|
+
version = "1.1.1"
|
|
3308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3309
|
+
checksum = "bdd58c3c93c3d278ca835519292445cb4b0d4dc59ccfdf7ceadaab3f8aeb4038"
|
|
3310
|
+
dependencies = [
|
|
3311
|
+
"version_check",
|
|
3312
|
+
]
|
|
3313
|
+
|
|
3314
|
+
[[package]]
|
|
3315
|
+
name = "smallvec"
|
|
3316
|
+
version = "1.15.1"
|
|
3317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3318
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
3319
|
+
|
|
3320
|
+
[[package]]
|
|
3321
|
+
name = "smol_str"
|
|
3322
|
+
version = "0.2.2"
|
|
3323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3324
|
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
|
|
3325
|
+
dependencies = [
|
|
3326
|
+
"serde",
|
|
3327
|
+
]
|
|
3328
|
+
|
|
3329
|
+
[[package]]
|
|
3330
|
+
name = "spirv"
|
|
3331
|
+
version = "0.3.0+sdk-1.3.268.0"
|
|
3332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3333
|
+
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
3334
|
+
dependencies = [
|
|
3335
|
+
"bitflags 2.10.0",
|
|
3336
|
+
]
|
|
3337
|
+
|
|
3338
|
+
[[package]]
|
|
3339
|
+
name = "stackfuture"
|
|
3340
|
+
version = "0.3.1"
|
|
3341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3342
|
+
checksum = "115beb9c69db2393ff10b75a1b8587a51716e5551d015001e55320ed279d32f9"
|
|
3343
|
+
dependencies = [
|
|
3344
|
+
"const_panic",
|
|
3345
|
+
]
|
|
3346
|
+
|
|
3347
|
+
[[package]]
|
|
3348
|
+
name = "static_assertions"
|
|
3349
|
+
version = "1.1.0"
|
|
3350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3351
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3352
|
+
|
|
3353
|
+
[[package]]
|
|
3354
|
+
name = "svg_fmt"
|
|
3355
|
+
version = "0.4.5"
|
|
3356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3357
|
+
checksum = "0193cc4331cfd2f3d2011ef287590868599a2f33c3e69bc22c1a3d3acf9e02fb"
|
|
3358
|
+
|
|
3359
|
+
[[package]]
|
|
3360
|
+
name = "svgtypes"
|
|
3361
|
+
version = "0.15.3"
|
|
3362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
+
checksum = "68c7541fff44b35860c1a7a47a7cadf3e4a304c457b58f9870d9706ece028afc"
|
|
3364
|
+
dependencies = [
|
|
3365
|
+
"kurbo",
|
|
3366
|
+
"siphasher",
|
|
3367
|
+
]
|
|
3368
|
+
|
|
3369
|
+
[[package]]
|
|
3370
|
+
name = "swash"
|
|
3371
|
+
version = "0.1.19"
|
|
3372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3373
|
+
checksum = "cbd59f3f359ddd2c95af4758c18270eddd9c730dde98598023cdabff472c2ca2"
|
|
3374
|
+
dependencies = [
|
|
3375
|
+
"skrifa",
|
|
3376
|
+
"yazi",
|
|
3377
|
+
"zeno",
|
|
3378
|
+
]
|
|
3379
|
+
|
|
3380
|
+
[[package]]
|
|
3381
|
+
name = "syn"
|
|
3382
|
+
version = "2.0.112"
|
|
3383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3384
|
+
checksum = "21f182278bf2d2bcb3c88b1b08a37df029d71ce3d3ae26168e3c653b213b99d4"
|
|
3385
|
+
dependencies = [
|
|
3386
|
+
"proc-macro2",
|
|
3387
|
+
"quote",
|
|
3388
|
+
"unicode-ident",
|
|
3389
|
+
]
|
|
3390
|
+
|
|
3391
|
+
[[package]]
|
|
3392
|
+
name = "sys-locale"
|
|
3393
|
+
version = "0.3.2"
|
|
3394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3395
|
+
checksum = "8eab9a99a024a169fe8a903cf9d4a3b3601109bcc13bd9e3c6fff259138626c4"
|
|
3396
|
+
dependencies = [
|
|
3397
|
+
"libc",
|
|
3398
|
+
]
|
|
3399
|
+
|
|
3400
|
+
[[package]]
|
|
3401
|
+
name = "termcolor"
|
|
3402
|
+
version = "1.4.1"
|
|
3403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
+
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
3405
|
+
dependencies = [
|
|
3406
|
+
"winapi-util",
|
|
3407
|
+
]
|
|
3408
|
+
|
|
3409
|
+
[[package]]
|
|
3410
|
+
name = "thiserror"
|
|
3411
|
+
version = "1.0.69"
|
|
3412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3413
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
3414
|
+
dependencies = [
|
|
3415
|
+
"thiserror-impl 1.0.69",
|
|
3416
|
+
]
|
|
3417
|
+
|
|
3418
|
+
[[package]]
|
|
3419
|
+
name = "thiserror"
|
|
3420
|
+
version = "2.0.17"
|
|
3421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3422
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
3423
|
+
dependencies = [
|
|
3424
|
+
"thiserror-impl 2.0.17",
|
|
3425
|
+
]
|
|
3426
|
+
|
|
3427
|
+
[[package]]
|
|
3428
|
+
name = "thiserror-impl"
|
|
3429
|
+
version = "1.0.69"
|
|
3430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3431
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
3432
|
+
dependencies = [
|
|
3433
|
+
"proc-macro2",
|
|
3434
|
+
"quote",
|
|
3435
|
+
"syn",
|
|
3436
|
+
]
|
|
3437
|
+
|
|
3438
|
+
[[package]]
|
|
3439
|
+
name = "thiserror-impl"
|
|
3440
|
+
version = "2.0.17"
|
|
3441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3442
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
3443
|
+
dependencies = [
|
|
3444
|
+
"proc-macro2",
|
|
3445
|
+
"quote",
|
|
3446
|
+
"syn",
|
|
3447
|
+
]
|
|
3448
|
+
|
|
3449
|
+
[[package]]
|
|
3450
|
+
name = "thread_local"
|
|
3451
|
+
version = "1.1.9"
|
|
3452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3453
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
3454
|
+
dependencies = [
|
|
3455
|
+
"cfg-if",
|
|
3456
|
+
]
|
|
3457
|
+
|
|
3458
|
+
[[package]]
|
|
3459
|
+
name = "tiny-keccak"
|
|
3460
|
+
version = "2.0.2"
|
|
3461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3462
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
3463
|
+
dependencies = [
|
|
3464
|
+
"crunchy",
|
|
3465
|
+
]
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "tinyvec"
|
|
3469
|
+
version = "1.10.0"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
3472
|
+
dependencies = [
|
|
3473
|
+
"tinyvec_macros",
|
|
3474
|
+
]
|
|
3475
|
+
|
|
3476
|
+
[[package]]
|
|
3477
|
+
name = "tinyvec_macros"
|
|
3478
|
+
version = "0.1.1"
|
|
3479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3480
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3481
|
+
|
|
3482
|
+
[[package]]
|
|
3483
|
+
name = "toml_datetime"
|
|
3484
|
+
version = "0.6.11"
|
|
3485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3486
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3487
|
+
|
|
3488
|
+
[[package]]
|
|
3489
|
+
name = "toml_datetime"
|
|
3490
|
+
version = "0.7.5+spec-1.1.0"
|
|
3491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3492
|
+
checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
|
|
3493
|
+
dependencies = [
|
|
3494
|
+
"serde_core",
|
|
3495
|
+
]
|
|
3496
|
+
|
|
3497
|
+
[[package]]
|
|
3498
|
+
name = "toml_edit"
|
|
3499
|
+
version = "0.22.27"
|
|
3500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3501
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3502
|
+
dependencies = [
|
|
3503
|
+
"indexmap",
|
|
3504
|
+
"toml_datetime 0.6.11",
|
|
3505
|
+
"winnow",
|
|
3506
|
+
]
|
|
3507
|
+
|
|
3508
|
+
[[package]]
|
|
3509
|
+
name = "toml_edit"
|
|
3510
|
+
version = "0.23.10+spec-1.0.0"
|
|
3511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3512
|
+
checksum = "84c8b9f757e028cee9fa244aea147aab2a9ec09d5325a9b01e0a49730c2b5269"
|
|
3513
|
+
dependencies = [
|
|
3514
|
+
"indexmap",
|
|
3515
|
+
"toml_datetime 0.7.5+spec-1.1.0",
|
|
3516
|
+
"toml_parser",
|
|
3517
|
+
"winnow",
|
|
3518
|
+
]
|
|
3519
|
+
|
|
3520
|
+
[[package]]
|
|
3521
|
+
name = "toml_parser"
|
|
3522
|
+
version = "1.0.6+spec-1.1.0"
|
|
3523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3524
|
+
checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
|
|
3525
|
+
dependencies = [
|
|
3526
|
+
"winnow",
|
|
3527
|
+
]
|
|
3528
|
+
|
|
3529
|
+
[[package]]
|
|
3530
|
+
name = "tracing"
|
|
3531
|
+
version = "0.1.44"
|
|
3532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3533
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3534
|
+
dependencies = [
|
|
3535
|
+
"pin-project-lite",
|
|
3536
|
+
"tracing-attributes",
|
|
3537
|
+
"tracing-core",
|
|
3538
|
+
]
|
|
3539
|
+
|
|
3540
|
+
[[package]]
|
|
3541
|
+
name = "tracing-attributes"
|
|
3542
|
+
version = "0.1.31"
|
|
3543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3544
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3545
|
+
dependencies = [
|
|
3546
|
+
"proc-macro2",
|
|
3547
|
+
"quote",
|
|
3548
|
+
"syn",
|
|
3549
|
+
]
|
|
3550
|
+
|
|
3551
|
+
[[package]]
|
|
3552
|
+
name = "tracing-core"
|
|
3553
|
+
version = "0.1.36"
|
|
3554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3555
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3556
|
+
dependencies = [
|
|
3557
|
+
"once_cell",
|
|
3558
|
+
"valuable",
|
|
3559
|
+
]
|
|
3560
|
+
|
|
3561
|
+
[[package]]
|
|
3562
|
+
name = "tracing-log"
|
|
3563
|
+
version = "0.2.0"
|
|
3564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
3566
|
+
dependencies = [
|
|
3567
|
+
"log",
|
|
3568
|
+
"once_cell",
|
|
3569
|
+
"tracing-core",
|
|
3570
|
+
]
|
|
3571
|
+
|
|
3572
|
+
[[package]]
|
|
3573
|
+
name = "tracing-oslog"
|
|
3574
|
+
version = "0.2.0"
|
|
3575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3576
|
+
checksum = "528bdd1f0e27b5dd9a4ededf154e824b0532731e4af73bb531de46276e0aab1e"
|
|
3577
|
+
dependencies = [
|
|
3578
|
+
"bindgen 0.70.1",
|
|
3579
|
+
"cc",
|
|
3580
|
+
"cfg-if",
|
|
3581
|
+
"once_cell",
|
|
3582
|
+
"parking_lot",
|
|
3583
|
+
"tracing-core",
|
|
3584
|
+
"tracing-subscriber",
|
|
3585
|
+
]
|
|
3586
|
+
|
|
3587
|
+
[[package]]
|
|
3588
|
+
name = "tracing-subscriber"
|
|
3589
|
+
version = "0.3.22"
|
|
3590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3591
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
3592
|
+
dependencies = [
|
|
3593
|
+
"matchers",
|
|
3594
|
+
"nu-ansi-term",
|
|
3595
|
+
"once_cell",
|
|
3596
|
+
"regex-automata",
|
|
3597
|
+
"sharded-slab",
|
|
3598
|
+
"smallvec",
|
|
3599
|
+
"thread_local",
|
|
3600
|
+
"tracing",
|
|
3601
|
+
"tracing-core",
|
|
3602
|
+
"tracing-log",
|
|
3603
|
+
]
|
|
3604
|
+
|
|
3605
|
+
[[package]]
|
|
3606
|
+
name = "tracing-wasm"
|
|
3607
|
+
version = "0.2.1"
|
|
3608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3609
|
+
checksum = "4575c663a174420fa2d78f4108ff68f65bf2fbb7dd89f33749b6e826b3626e07"
|
|
3610
|
+
dependencies = [
|
|
3611
|
+
"tracing",
|
|
3612
|
+
"tracing-subscriber",
|
|
3613
|
+
"wasm-bindgen",
|
|
3614
|
+
]
|
|
3615
|
+
|
|
3616
|
+
[[package]]
|
|
3617
|
+
name = "ttf-parser"
|
|
3618
|
+
version = "0.20.0"
|
|
3619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3620
|
+
checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
|
|
3621
|
+
|
|
3622
|
+
[[package]]
|
|
3623
|
+
name = "ttf-parser"
|
|
3624
|
+
version = "0.21.1"
|
|
3625
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3626
|
+
checksum = "2c591d83f69777866b9126b24c6dd9a18351f177e49d625920d19f989fd31cf8"
|
|
3627
|
+
|
|
3628
|
+
[[package]]
|
|
3629
|
+
name = "typeid"
|
|
3630
|
+
version = "1.0.3"
|
|
3631
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3632
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
3633
|
+
|
|
3634
|
+
[[package]]
|
|
3635
|
+
name = "typewit"
|
|
3636
|
+
version = "1.14.2"
|
|
3637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3638
|
+
checksum = "f8c1ae7cc0fdb8b842d65d127cb981574b0d2b249b74d1c7a2986863dc134f71"
|
|
3639
|
+
|
|
3640
|
+
[[package]]
|
|
3641
|
+
name = "unicode-bidi"
|
|
3642
|
+
version = "0.3.18"
|
|
3643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3644
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
|
3645
|
+
|
|
3646
|
+
[[package]]
|
|
3647
|
+
name = "unicode-bidi-mirroring"
|
|
3648
|
+
version = "0.2.0"
|
|
3649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3650
|
+
checksum = "23cb788ffebc92c5948d0e997106233eeb1d8b9512f93f41651f52b6c5f5af86"
|
|
3651
|
+
|
|
3652
|
+
[[package]]
|
|
3653
|
+
name = "unicode-ccc"
|
|
3654
|
+
version = "0.2.0"
|
|
3655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3656
|
+
checksum = "1df77b101bcc4ea3d78dafc5ad7e4f58ceffe0b2b16bf446aeb50b6cb4157656"
|
|
3657
|
+
|
|
3658
|
+
[[package]]
|
|
3659
|
+
name = "unicode-ident"
|
|
3660
|
+
version = "1.0.22"
|
|
3661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3662
|
+
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
3663
|
+
|
|
3664
|
+
[[package]]
|
|
3665
|
+
name = "unicode-linebreak"
|
|
3666
|
+
version = "0.1.5"
|
|
3667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3668
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
3669
|
+
|
|
3670
|
+
[[package]]
|
|
3671
|
+
name = "unicode-properties"
|
|
3672
|
+
version = "0.1.4"
|
|
3673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3674
|
+
checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
|
|
3675
|
+
|
|
3676
|
+
[[package]]
|
|
3677
|
+
name = "unicode-script"
|
|
3678
|
+
version = "0.5.8"
|
|
3679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3680
|
+
checksum = "383ad40bb927465ec0ce7720e033cb4ca06912855fc35db31b5755d0de75b1ee"
|
|
3681
|
+
|
|
3682
|
+
[[package]]
|
|
3683
|
+
name = "unicode-segmentation"
|
|
3684
|
+
version = "1.12.0"
|
|
3685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3686
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
3687
|
+
|
|
3688
|
+
[[package]]
|
|
3689
|
+
name = "unicode-width"
|
|
3690
|
+
version = "0.1.14"
|
|
3691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3692
|
+
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3693
|
+
|
|
3694
|
+
[[package]]
|
|
3695
|
+
name = "unicode-xid"
|
|
3696
|
+
version = "0.2.6"
|
|
3697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
3699
|
+
|
|
3700
|
+
[[package]]
|
|
3701
|
+
name = "uuid"
|
|
3702
|
+
version = "1.19.0"
|
|
3703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3704
|
+
checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
3705
|
+
dependencies = [
|
|
3706
|
+
"getrandom 0.3.4",
|
|
3707
|
+
"js-sys",
|
|
3708
|
+
"serde_core",
|
|
3709
|
+
"wasm-bindgen",
|
|
3710
|
+
]
|
|
3711
|
+
|
|
3712
|
+
[[package]]
|
|
3713
|
+
name = "valuable"
|
|
3714
|
+
version = "0.1.1"
|
|
3715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3716
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
3717
|
+
|
|
3718
|
+
[[package]]
|
|
3719
|
+
name = "version_check"
|
|
3720
|
+
version = "0.9.5"
|
|
3721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3722
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "walkdir"
|
|
3726
|
+
version = "2.5.0"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"same-file",
|
|
3731
|
+
"winapi-util",
|
|
3732
|
+
]
|
|
3733
|
+
|
|
3734
|
+
[[package]]
|
|
3735
|
+
name = "wasi"
|
|
3736
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3738
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3739
|
+
|
|
3740
|
+
[[package]]
|
|
3741
|
+
name = "wasip2"
|
|
3742
|
+
version = "1.0.1+wasi-0.2.4"
|
|
3743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3744
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
3745
|
+
dependencies = [
|
|
3746
|
+
"wit-bindgen",
|
|
3747
|
+
]
|
|
3748
|
+
|
|
3749
|
+
[[package]]
|
|
3750
|
+
name = "wasm-bindgen"
|
|
3751
|
+
version = "0.2.106"
|
|
3752
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3753
|
+
checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
|
|
3754
|
+
dependencies = [
|
|
3755
|
+
"cfg-if",
|
|
3756
|
+
"once_cell",
|
|
3757
|
+
"rustversion",
|
|
3758
|
+
"wasm-bindgen-macro",
|
|
3759
|
+
"wasm-bindgen-shared",
|
|
3760
|
+
]
|
|
3761
|
+
|
|
3762
|
+
[[package]]
|
|
3763
|
+
name = "wasm-bindgen-futures"
|
|
3764
|
+
version = "0.4.56"
|
|
3765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3766
|
+
checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
|
|
3767
|
+
dependencies = [
|
|
3768
|
+
"cfg-if",
|
|
3769
|
+
"js-sys",
|
|
3770
|
+
"once_cell",
|
|
3771
|
+
"wasm-bindgen",
|
|
3772
|
+
"web-sys",
|
|
3773
|
+
]
|
|
3774
|
+
|
|
3775
|
+
[[package]]
|
|
3776
|
+
name = "wasm-bindgen-macro"
|
|
3777
|
+
version = "0.2.106"
|
|
3778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
|
+
checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
|
|
3780
|
+
dependencies = [
|
|
3781
|
+
"quote",
|
|
3782
|
+
"wasm-bindgen-macro-support",
|
|
3783
|
+
]
|
|
3784
|
+
|
|
3785
|
+
[[package]]
|
|
3786
|
+
name = "wasm-bindgen-macro-support"
|
|
3787
|
+
version = "0.2.106"
|
|
3788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3789
|
+
checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
|
|
3790
|
+
dependencies = [
|
|
3791
|
+
"bumpalo",
|
|
3792
|
+
"proc-macro2",
|
|
3793
|
+
"quote",
|
|
3794
|
+
"syn",
|
|
3795
|
+
"wasm-bindgen-shared",
|
|
3796
|
+
]
|
|
3797
|
+
|
|
3798
|
+
[[package]]
|
|
3799
|
+
name = "wasm-bindgen-shared"
|
|
3800
|
+
version = "0.2.106"
|
|
3801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
|
+
checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
|
|
3803
|
+
dependencies = [
|
|
3804
|
+
"unicode-ident",
|
|
3805
|
+
]
|
|
3806
|
+
|
|
3807
|
+
[[package]]
|
|
3808
|
+
name = "web-sys"
|
|
3809
|
+
version = "0.3.83"
|
|
3810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3811
|
+
checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
|
|
3812
|
+
dependencies = [
|
|
3813
|
+
"js-sys",
|
|
3814
|
+
"wasm-bindgen",
|
|
3815
|
+
]
|
|
3816
|
+
|
|
3817
|
+
[[package]]
|
|
3818
|
+
name = "web-time"
|
|
3819
|
+
version = "1.1.0"
|
|
3820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3821
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3822
|
+
dependencies = [
|
|
3823
|
+
"js-sys",
|
|
3824
|
+
"wasm-bindgen",
|
|
3825
|
+
]
|
|
3826
|
+
|
|
3827
|
+
[[package]]
|
|
3828
|
+
name = "wgpu"
|
|
3829
|
+
version = "23.0.1"
|
|
3830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3831
|
+
checksum = "80f70000db37c469ea9d67defdc13024ddf9a5f1b89cb2941b812ad7cde1735a"
|
|
3832
|
+
dependencies = [
|
|
3833
|
+
"arrayvec",
|
|
3834
|
+
"cfg_aliases 0.1.1",
|
|
3835
|
+
"document-features",
|
|
3836
|
+
"js-sys",
|
|
3837
|
+
"log",
|
|
3838
|
+
"naga",
|
|
3839
|
+
"parking_lot",
|
|
3840
|
+
"profiling",
|
|
3841
|
+
"raw-window-handle",
|
|
3842
|
+
"smallvec",
|
|
3843
|
+
"static_assertions",
|
|
3844
|
+
"wasm-bindgen",
|
|
3845
|
+
"wasm-bindgen-futures",
|
|
3846
|
+
"web-sys",
|
|
3847
|
+
"wgpu-core",
|
|
3848
|
+
"wgpu-hal",
|
|
3849
|
+
"wgpu-types",
|
|
3850
|
+
]
|
|
3851
|
+
|
|
3852
|
+
[[package]]
|
|
3853
|
+
name = "wgpu-core"
|
|
3854
|
+
version = "23.0.1"
|
|
3855
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3856
|
+
checksum = "d63c3c478de8e7e01786479919c8769f62a22eec16788d8c2ac77ce2c132778a"
|
|
3857
|
+
dependencies = [
|
|
3858
|
+
"arrayvec",
|
|
3859
|
+
"bit-vec 0.8.0",
|
|
3860
|
+
"bitflags 2.10.0",
|
|
3861
|
+
"cfg_aliases 0.1.1",
|
|
3862
|
+
"document-features",
|
|
3863
|
+
"indexmap",
|
|
3864
|
+
"log",
|
|
3865
|
+
"naga",
|
|
3866
|
+
"once_cell",
|
|
3867
|
+
"parking_lot",
|
|
3868
|
+
"profiling",
|
|
3869
|
+
"raw-window-handle",
|
|
3870
|
+
"rustc-hash",
|
|
3871
|
+
"smallvec",
|
|
3872
|
+
"thiserror 1.0.69",
|
|
3873
|
+
"wgpu-hal",
|
|
3874
|
+
"wgpu-types",
|
|
3875
|
+
]
|
|
3876
|
+
|
|
3877
|
+
[[package]]
|
|
3878
|
+
name = "wgpu-hal"
|
|
3879
|
+
version = "23.0.1"
|
|
3880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
+
checksum = "89364b8a0b211adc7b16aeaf1bd5ad4a919c1154b44c9ce27838213ba05fd821"
|
|
3882
|
+
dependencies = [
|
|
3883
|
+
"android_system_properties",
|
|
3884
|
+
"arrayvec",
|
|
3885
|
+
"ash",
|
|
3886
|
+
"bit-set 0.8.0",
|
|
3887
|
+
"bitflags 2.10.0",
|
|
3888
|
+
"block",
|
|
3889
|
+
"bytemuck",
|
|
3890
|
+
"cfg_aliases 0.1.1",
|
|
3891
|
+
"core-graphics-types",
|
|
3892
|
+
"glow",
|
|
3893
|
+
"glutin_wgl_sys",
|
|
3894
|
+
"gpu-alloc",
|
|
3895
|
+
"gpu-allocator",
|
|
3896
|
+
"gpu-descriptor",
|
|
3897
|
+
"js-sys",
|
|
3898
|
+
"khronos-egl",
|
|
3899
|
+
"libc",
|
|
3900
|
+
"libloading",
|
|
3901
|
+
"log",
|
|
3902
|
+
"metal",
|
|
3903
|
+
"naga",
|
|
3904
|
+
"ndk-sys 0.5.0+25.2.9519653",
|
|
3905
|
+
"objc",
|
|
3906
|
+
"once_cell",
|
|
3907
|
+
"parking_lot",
|
|
3908
|
+
"profiling",
|
|
3909
|
+
"range-alloc",
|
|
3910
|
+
"raw-window-handle",
|
|
3911
|
+
"renderdoc-sys",
|
|
3912
|
+
"rustc-hash",
|
|
3913
|
+
"smallvec",
|
|
3914
|
+
"thiserror 1.0.69",
|
|
3915
|
+
"wasm-bindgen",
|
|
3916
|
+
"web-sys",
|
|
3917
|
+
"wgpu-types",
|
|
3918
|
+
"windows",
|
|
3919
|
+
"windows-core",
|
|
3920
|
+
]
|
|
3921
|
+
|
|
3922
|
+
[[package]]
|
|
3923
|
+
name = "wgpu-types"
|
|
3924
|
+
version = "23.0.0"
|
|
3925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3926
|
+
checksum = "610f6ff27778148c31093f3b03abc4840f9636d58d597ca2f5977433acfe0068"
|
|
3927
|
+
dependencies = [
|
|
3928
|
+
"bitflags 2.10.0",
|
|
3929
|
+
"js-sys",
|
|
3930
|
+
"web-sys",
|
|
3931
|
+
]
|
|
3932
|
+
|
|
3933
|
+
[[package]]
|
|
3934
|
+
name = "winapi-util"
|
|
3935
|
+
version = "0.1.11"
|
|
3936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3937
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3938
|
+
dependencies = [
|
|
3939
|
+
"windows-sys 0.61.2",
|
|
3940
|
+
]
|
|
3941
|
+
|
|
3942
|
+
[[package]]
|
|
3943
|
+
name = "windows"
|
|
3944
|
+
version = "0.58.0"
|
|
3945
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3946
|
+
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
3947
|
+
dependencies = [
|
|
3948
|
+
"windows-core",
|
|
3949
|
+
"windows-targets 0.52.6",
|
|
3950
|
+
]
|
|
3951
|
+
|
|
3952
|
+
[[package]]
|
|
3953
|
+
name = "windows-core"
|
|
3954
|
+
version = "0.58.0"
|
|
3955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3956
|
+
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
3957
|
+
dependencies = [
|
|
3958
|
+
"windows-implement",
|
|
3959
|
+
"windows-interface",
|
|
3960
|
+
"windows-result",
|
|
3961
|
+
"windows-strings",
|
|
3962
|
+
"windows-targets 0.52.6",
|
|
3963
|
+
]
|
|
3964
|
+
|
|
3965
|
+
[[package]]
|
|
3966
|
+
name = "windows-implement"
|
|
3967
|
+
version = "0.58.0"
|
|
3968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3969
|
+
checksum = "2bbd5b46c938e506ecbce286b6628a02171d56153ba733b6c741fc627ec9579b"
|
|
3970
|
+
dependencies = [
|
|
3971
|
+
"proc-macro2",
|
|
3972
|
+
"quote",
|
|
3973
|
+
"syn",
|
|
3974
|
+
]
|
|
3975
|
+
|
|
3976
|
+
[[package]]
|
|
3977
|
+
name = "windows-interface"
|
|
3978
|
+
version = "0.58.0"
|
|
3979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3980
|
+
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
3981
|
+
dependencies = [
|
|
3982
|
+
"proc-macro2",
|
|
3983
|
+
"quote",
|
|
3984
|
+
"syn",
|
|
3985
|
+
]
|
|
3986
|
+
|
|
3987
|
+
[[package]]
|
|
3988
|
+
name = "windows-link"
|
|
3989
|
+
version = "0.2.1"
|
|
3990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3991
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3992
|
+
|
|
3993
|
+
[[package]]
|
|
3994
|
+
name = "windows-result"
|
|
3995
|
+
version = "0.2.0"
|
|
3996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3997
|
+
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
3998
|
+
dependencies = [
|
|
3999
|
+
"windows-targets 0.52.6",
|
|
4000
|
+
]
|
|
4001
|
+
|
|
4002
|
+
[[package]]
|
|
4003
|
+
name = "windows-strings"
|
|
4004
|
+
version = "0.1.0"
|
|
4005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4006
|
+
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
4007
|
+
dependencies = [
|
|
4008
|
+
"windows-result",
|
|
4009
|
+
"windows-targets 0.52.6",
|
|
4010
|
+
]
|
|
4011
|
+
|
|
4012
|
+
[[package]]
|
|
4013
|
+
name = "windows-sys"
|
|
4014
|
+
version = "0.45.0"
|
|
4015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4016
|
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
4017
|
+
dependencies = [
|
|
4018
|
+
"windows-targets 0.42.2",
|
|
4019
|
+
]
|
|
4020
|
+
|
|
4021
|
+
[[package]]
|
|
4022
|
+
name = "windows-sys"
|
|
4023
|
+
version = "0.52.0"
|
|
4024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4025
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
4026
|
+
dependencies = [
|
|
4027
|
+
"windows-targets 0.52.6",
|
|
4028
|
+
]
|
|
4029
|
+
|
|
4030
|
+
[[package]]
|
|
4031
|
+
name = "windows-sys"
|
|
4032
|
+
version = "0.59.0"
|
|
4033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4034
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
4035
|
+
dependencies = [
|
|
4036
|
+
"windows-targets 0.52.6",
|
|
4037
|
+
]
|
|
4038
|
+
|
|
4039
|
+
[[package]]
|
|
4040
|
+
name = "windows-sys"
|
|
4041
|
+
version = "0.61.2"
|
|
4042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4043
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
4044
|
+
dependencies = [
|
|
4045
|
+
"windows-link",
|
|
4046
|
+
]
|
|
4047
|
+
|
|
4048
|
+
[[package]]
|
|
4049
|
+
name = "windows-targets"
|
|
4050
|
+
version = "0.42.2"
|
|
4051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4052
|
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
|
4053
|
+
dependencies = [
|
|
4054
|
+
"windows_aarch64_gnullvm 0.42.2",
|
|
4055
|
+
"windows_aarch64_msvc 0.42.2",
|
|
4056
|
+
"windows_i686_gnu 0.42.2",
|
|
4057
|
+
"windows_i686_msvc 0.42.2",
|
|
4058
|
+
"windows_x86_64_gnu 0.42.2",
|
|
4059
|
+
"windows_x86_64_gnullvm 0.42.2",
|
|
4060
|
+
"windows_x86_64_msvc 0.42.2",
|
|
4061
|
+
]
|
|
4062
|
+
|
|
4063
|
+
[[package]]
|
|
4064
|
+
name = "windows-targets"
|
|
4065
|
+
version = "0.52.6"
|
|
4066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4067
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
4068
|
+
dependencies = [
|
|
4069
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
4070
|
+
"windows_aarch64_msvc 0.52.6",
|
|
4071
|
+
"windows_i686_gnu 0.52.6",
|
|
4072
|
+
"windows_i686_gnullvm",
|
|
4073
|
+
"windows_i686_msvc 0.52.6",
|
|
4074
|
+
"windows_x86_64_gnu 0.52.6",
|
|
4075
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
4076
|
+
"windows_x86_64_msvc 0.52.6",
|
|
4077
|
+
]
|
|
4078
|
+
|
|
4079
|
+
[[package]]
|
|
4080
|
+
name = "windows_aarch64_gnullvm"
|
|
4081
|
+
version = "0.42.2"
|
|
4082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4083
|
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
|
4084
|
+
|
|
4085
|
+
[[package]]
|
|
4086
|
+
name = "windows_aarch64_gnullvm"
|
|
4087
|
+
version = "0.52.6"
|
|
4088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4089
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
4090
|
+
|
|
4091
|
+
[[package]]
|
|
4092
|
+
name = "windows_aarch64_msvc"
|
|
4093
|
+
version = "0.42.2"
|
|
4094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4095
|
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
|
4096
|
+
|
|
4097
|
+
[[package]]
|
|
4098
|
+
name = "windows_aarch64_msvc"
|
|
4099
|
+
version = "0.52.6"
|
|
4100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4101
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
4102
|
+
|
|
4103
|
+
[[package]]
|
|
4104
|
+
name = "windows_i686_gnu"
|
|
4105
|
+
version = "0.42.2"
|
|
4106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4107
|
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
|
4108
|
+
|
|
4109
|
+
[[package]]
|
|
4110
|
+
name = "windows_i686_gnu"
|
|
4111
|
+
version = "0.52.6"
|
|
4112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4113
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
4114
|
+
|
|
4115
|
+
[[package]]
|
|
4116
|
+
name = "windows_i686_gnullvm"
|
|
4117
|
+
version = "0.52.6"
|
|
4118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4119
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
4120
|
+
|
|
4121
|
+
[[package]]
|
|
4122
|
+
name = "windows_i686_msvc"
|
|
4123
|
+
version = "0.42.2"
|
|
4124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4125
|
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
|
4126
|
+
|
|
4127
|
+
[[package]]
|
|
4128
|
+
name = "windows_i686_msvc"
|
|
4129
|
+
version = "0.52.6"
|
|
4130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4131
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
4132
|
+
|
|
4133
|
+
[[package]]
|
|
4134
|
+
name = "windows_x86_64_gnu"
|
|
4135
|
+
version = "0.42.2"
|
|
4136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4137
|
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
|
4138
|
+
|
|
4139
|
+
[[package]]
|
|
4140
|
+
name = "windows_x86_64_gnu"
|
|
4141
|
+
version = "0.52.6"
|
|
4142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4143
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
4144
|
+
|
|
4145
|
+
[[package]]
|
|
4146
|
+
name = "windows_x86_64_gnullvm"
|
|
4147
|
+
version = "0.42.2"
|
|
4148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4149
|
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
|
4150
|
+
|
|
4151
|
+
[[package]]
|
|
4152
|
+
name = "windows_x86_64_gnullvm"
|
|
4153
|
+
version = "0.52.6"
|
|
4154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4155
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
4156
|
+
|
|
4157
|
+
[[package]]
|
|
4158
|
+
name = "windows_x86_64_msvc"
|
|
4159
|
+
version = "0.42.2"
|
|
4160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4161
|
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
|
4162
|
+
|
|
4163
|
+
[[package]]
|
|
4164
|
+
name = "windows_x86_64_msvc"
|
|
4165
|
+
version = "0.52.6"
|
|
4166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4167
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
4168
|
+
|
|
4169
|
+
[[package]]
|
|
4170
|
+
name = "winit"
|
|
4171
|
+
version = "0.30.12"
|
|
4172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4173
|
+
checksum = "c66d4b9ed69c4009f6321f762d6e61ad8a2389cd431b97cb1e146812e9e6c732"
|
|
4174
|
+
dependencies = [
|
|
4175
|
+
"android-activity",
|
|
4176
|
+
"atomic-waker",
|
|
4177
|
+
"bitflags 2.10.0",
|
|
4178
|
+
"block2 0.5.1",
|
|
4179
|
+
"calloop",
|
|
4180
|
+
"cfg_aliases 0.2.1",
|
|
4181
|
+
"concurrent-queue",
|
|
4182
|
+
"core-foundation",
|
|
4183
|
+
"core-graphics",
|
|
4184
|
+
"cursor-icon",
|
|
4185
|
+
"dpi",
|
|
4186
|
+
"js-sys",
|
|
4187
|
+
"libc",
|
|
4188
|
+
"ndk",
|
|
4189
|
+
"objc2 0.5.2",
|
|
4190
|
+
"objc2-app-kit",
|
|
4191
|
+
"objc2-foundation",
|
|
4192
|
+
"objc2-ui-kit",
|
|
4193
|
+
"orbclient",
|
|
4194
|
+
"pin-project",
|
|
4195
|
+
"raw-window-handle",
|
|
4196
|
+
"redox_syscall 0.4.1",
|
|
4197
|
+
"rustix 0.38.44",
|
|
4198
|
+
"smol_str",
|
|
4199
|
+
"tracing",
|
|
4200
|
+
"unicode-segmentation",
|
|
4201
|
+
"wasm-bindgen",
|
|
4202
|
+
"wasm-bindgen-futures",
|
|
4203
|
+
"web-sys",
|
|
4204
|
+
"web-time",
|
|
4205
|
+
"windows-sys 0.52.0",
|
|
4206
|
+
"xkbcommon-dl",
|
|
4207
|
+
]
|
|
4208
|
+
|
|
4209
|
+
[[package]]
|
|
4210
|
+
name = "winnow"
|
|
4211
|
+
version = "0.7.14"
|
|
4212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4213
|
+
checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
|
|
4214
|
+
dependencies = [
|
|
4215
|
+
"memchr",
|
|
4216
|
+
]
|
|
4217
|
+
|
|
4218
|
+
[[package]]
|
|
4219
|
+
name = "wit-bindgen"
|
|
4220
|
+
version = "0.46.0"
|
|
4221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4222
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
4223
|
+
|
|
4224
|
+
[[package]]
|
|
4225
|
+
name = "xkbcommon-dl"
|
|
4226
|
+
version = "0.4.2"
|
|
4227
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4228
|
+
checksum = "d039de8032a9a8856a6be89cea3e5d12fdd82306ab7c94d74e6deab2460651c5"
|
|
4229
|
+
dependencies = [
|
|
4230
|
+
"bitflags 2.10.0",
|
|
4231
|
+
"dlib",
|
|
4232
|
+
"log",
|
|
4233
|
+
"once_cell",
|
|
4234
|
+
"xkeysym",
|
|
4235
|
+
]
|
|
4236
|
+
|
|
4237
|
+
[[package]]
|
|
4238
|
+
name = "xkeysym"
|
|
4239
|
+
version = "0.2.1"
|
|
4240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4241
|
+
checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
|
|
4242
|
+
|
|
4243
|
+
[[package]]
|
|
4244
|
+
name = "xml-rs"
|
|
4245
|
+
version = "0.8.28"
|
|
4246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4247
|
+
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
|
4248
|
+
|
|
4249
|
+
[[package]]
|
|
4250
|
+
name = "yazi"
|
|
4251
|
+
version = "0.1.6"
|
|
4252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4253
|
+
checksum = "c94451ac9513335b5e23d7a8a2b61a7102398b8cca5160829d313e84c9d98be1"
|
|
4254
|
+
|
|
4255
|
+
[[package]]
|
|
4256
|
+
name = "zeno"
|
|
4257
|
+
version = "0.2.3"
|
|
4258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4259
|
+
checksum = "dd15f8e0dbb966fd9245e7498c7e9e5055d9e5c8b676b95bd67091cd11a1e697"
|
|
4260
|
+
|
|
4261
|
+
[[package]]
|
|
4262
|
+
name = "zerocopy"
|
|
4263
|
+
version = "0.8.31"
|
|
4264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4265
|
+
checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
|
|
4266
|
+
dependencies = [
|
|
4267
|
+
"zerocopy-derive",
|
|
4268
|
+
]
|
|
4269
|
+
|
|
4270
|
+
[[package]]
|
|
4271
|
+
name = "zerocopy-derive"
|
|
4272
|
+
version = "0.8.31"
|
|
4273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4274
|
+
checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
|
|
4275
|
+
dependencies = [
|
|
4276
|
+
"proc-macro2",
|
|
4277
|
+
"quote",
|
|
4278
|
+
"syn",
|
|
4279
|
+
]
|