forge
login
or
join now
alephcubed.com
/
bevy_alchemy
star
0
fork
atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
An experimental, status effects-as-entities system for Bevy.
star
0
fork
atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
overview
issues
pulls
pipelines
Init.
AlephCubed
1 year ago
7afd2382
+2286
5 changed files
expand all
collapse all
unified
split
.gitignore
.idea
.gitignore
Cargo.lock
Cargo.toml
src
lib.rs
+1
.gitignore
reviewed
···
1
1
+
/target
+8
.idea/.gitignore
reviewed
···
1
1
+
# Default ignored files
2
2
+
/shelf/
3
3
+
/workspace.xml
4
4
+
# Editor-based HTTP Client requests
5
5
+
/httpRequests/
6
6
+
# Datasource local storage ignored files
7
7
+
/dataSources/
8
8
+
/dataSources.local.xml
+2214
Cargo.lock
reviewed
···
1
1
+
# This file is automatically @generated by Cargo.
2
2
+
# It is not intended for manual editing.
3
3
+
version = 4
4
4
+
5
5
+
[[package]]
6
6
+
name = "aho-corasick"
7
7
+
version = "1.1.3"
8
8
+
source = "registry+https://github.com/rust-lang/crates.io-index"
9
9
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
10
10
+
dependencies = [
11
11
+
"memchr",
12
12
+
]
13
13
+
14
14
+
[[package]]
15
15
+
name = "android-activity"
16
16
+
version = "0.6.0"
17
17
+
source = "registry+https://github.com/rust-lang/crates.io-index"
18
18
+
checksum = "ef6978589202a00cd7e118380c448a08b6ed394c3a8df3a430d0898e3a42d046"
19
19
+
dependencies = [
20
20
+
"android-properties",
21
21
+
"bitflags",
22
22
+
"cc",
23
23
+
"cesu8",
24
24
+
"jni",
25
25
+
"jni-sys",
26
26
+
"libc",
27
27
+
"log",
28
28
+
"ndk",
29
29
+
"ndk-context",
30
30
+
"ndk-sys",
31
31
+
"num_enum",
32
32
+
"thiserror 1.0.69",
33
33
+
]
34
34
+
35
35
+
[[package]]
36
36
+
name = "android-properties"
37
37
+
version = "0.2.2"
38
38
+
source = "registry+https://github.com/rust-lang/crates.io-index"
39
39
+
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
40
40
+
41
41
+
[[package]]
42
42
+
name = "android_log-sys"
43
43
+
version = "0.3.2"
44
44
+
source = "registry+https://github.com/rust-lang/crates.io-index"
45
45
+
checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
46
46
+
47
47
+
[[package]]
48
48
+
name = "approx"
49
49
+
version = "0.5.1"
50
50
+
source = "registry+https://github.com/rust-lang/crates.io-index"
51
51
+
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
52
52
+
dependencies = [
53
53
+
"num-traits",
54
54
+
]
55
55
+
56
56
+
[[package]]
57
57
+
name = "arrayref"
58
58
+
version = "0.3.9"
59
59
+
source = "registry+https://github.com/rust-lang/crates.io-index"
60
60
+
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
61
61
+
62
62
+
[[package]]
63
63
+
name = "arrayvec"
64
64
+
version = "0.7.6"
65
65
+
source = "registry+https://github.com/rust-lang/crates.io-index"
66
66
+
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
67
67
+
68
68
+
[[package]]
69
69
+
name = "assert_type_match"
70
70
+
version = "0.1.1"
71
71
+
source = "registry+https://github.com/rust-lang/crates.io-index"
72
72
+
checksum = "f548ad2c4031f2902e3edc1f29c29e835829437de49562d8eb5dc5584d3a1043"
73
73
+
dependencies = [
74
74
+
"proc-macro2",
75
75
+
"quote",
76
76
+
"syn",
77
77
+
]
78
78
+
79
79
+
[[package]]
80
80
+
name = "async-broadcast"
81
81
+
version = "0.7.2"
82
82
+
source = "registry+https://github.com/rust-lang/crates.io-index"
83
83
+
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
84
84
+
dependencies = [
85
85
+
"event-listener",
86
86
+
"event-listener-strategy",
87
87
+
"futures-core",
88
88
+
"pin-project-lite",
89
89
+
]
90
90
+
91
91
+
[[package]]
92
92
+
name = "async-channel"
93
93
+
version = "2.3.1"
94
94
+
source = "registry+https://github.com/rust-lang/crates.io-index"
95
95
+
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
96
96
+
dependencies = [
97
97
+
"concurrent-queue",
98
98
+
"event-listener-strategy",
99
99
+
"futures-core",
100
100
+
"pin-project-lite",
101
101
+
]
102
102
+
103
103
+
[[package]]
104
104
+
name = "async-executor"
105
105
+
version = "1.13.1"
106
106
+
source = "registry+https://github.com/rust-lang/crates.io-index"
107
107
+
checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
108
108
+
dependencies = [
109
109
+
"async-task",
110
110
+
"concurrent-queue",
111
111
+
"fastrand",
112
112
+
"futures-lite",
113
113
+
"slab",
114
114
+
]
115
115
+
116
116
+
[[package]]
117
117
+
name = "async-fs"
118
118
+
version = "2.1.2"
119
119
+
source = "registry+https://github.com/rust-lang/crates.io-index"
120
120
+
checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
121
121
+
dependencies = [
122
122
+
"async-lock",
123
123
+
"blocking",
124
124
+
"futures-lite",
125
125
+
]
126
126
+
127
127
+
[[package]]
128
128
+
name = "async-lock"
129
129
+
version = "3.4.0"
130
130
+
source = "registry+https://github.com/rust-lang/crates.io-index"
131
131
+
checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
132
132
+
dependencies = [
133
133
+
"event-listener",
134
134
+
"event-listener-strategy",
135
135
+
"pin-project-lite",
136
136
+
]
137
137
+
138
138
+
[[package]]
139
139
+
name = "async-task"
140
140
+
version = "4.7.1"
141
141
+
source = "registry+https://github.com/rust-lang/crates.io-index"
142
142
+
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
143
143
+
dependencies = [
144
144
+
"portable-atomic",
145
145
+
]
146
146
+
147
147
+
[[package]]
148
148
+
name = "atomic-waker"
149
149
+
version = "1.1.2"
150
150
+
source = "registry+https://github.com/rust-lang/crates.io-index"
151
151
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
152
152
+
dependencies = [
153
153
+
"portable-atomic",
154
154
+
]
155
155
+
156
156
+
[[package]]
157
157
+
name = "atomicow"
158
158
+
version = "1.1.0"
159
159
+
source = "registry+https://github.com/rust-lang/crates.io-index"
160
160
+
checksum = "f52e8890bb9844440d0c412fa74b67fd2f14e85248b6e00708059b6da9e5f8bf"
161
161
+
dependencies = [
162
162
+
"portable-atomic",
163
163
+
"portable-atomic-util",
164
164
+
]
165
165
+
166
166
+
[[package]]
167
167
+
name = "autocfg"
168
168
+
version = "1.4.0"
169
169
+
source = "registry+https://github.com/rust-lang/crates.io-index"
170
170
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
171
171
+
172
172
+
[[package]]
173
173
+
name = "base64"
174
174
+
version = "0.21.7"
175
175
+
source = "registry+https://github.com/rust-lang/crates.io-index"
176
176
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
177
177
+
178
178
+
[[package]]
179
179
+
name = "bevy_app"
180
180
+
version = "0.16.0-rc.1"
181
181
+
source = "registry+https://github.com/rust-lang/crates.io-index"
182
182
+
checksum = "0a17daf108094c7d40a86b2e30ca19351f0279ff755b6cb07a0833f981a44184"
183
183
+
dependencies = [
184
184
+
"bevy_derive",
185
185
+
"bevy_ecs",
186
186
+
"bevy_platform_support",
187
187
+
"bevy_reflect",
188
188
+
"bevy_tasks",
189
189
+
"bevy_utils",
190
190
+
"cfg-if",
191
191
+
"console_error_panic_hook",
192
192
+
"ctrlc",
193
193
+
"downcast-rs",
194
194
+
"log",
195
195
+
"thiserror 2.0.12",
196
196
+
"variadics_please",
197
197
+
"wasm-bindgen",
198
198
+
"web-sys",
199
199
+
]
200
200
+
201
201
+
[[package]]
202
202
+
name = "bevy_asset"
203
203
+
version = "0.16.0-rc.1"
204
204
+
source = "registry+https://github.com/rust-lang/crates.io-index"
205
205
+
checksum = "15cf53fbe4114a483e14a9b152b9f8698df5a94e054a938a015e0be2f8398f25"
206
206
+
dependencies = [
207
207
+
"async-broadcast",
208
208
+
"async-fs",
209
209
+
"async-lock",
210
210
+
"atomicow",
211
211
+
"bevy_app",
212
212
+
"bevy_asset_macros",
213
213
+
"bevy_ecs",
214
214
+
"bevy_log",
215
215
+
"bevy_platform_support",
216
216
+
"bevy_reflect",
217
217
+
"bevy_tasks",
218
218
+
"bevy_utils",
219
219
+
"bevy_window",
220
220
+
"bitflags",
221
221
+
"blake3",
222
222
+
"crossbeam-channel",
223
223
+
"derive_more",
224
224
+
"disqualified",
225
225
+
"downcast-rs",
226
226
+
"either",
227
227
+
"futures-io",
228
228
+
"futures-lite",
229
229
+
"js-sys",
230
230
+
"parking_lot",
231
231
+
"ron",
232
232
+
"serde",
233
233
+
"stackfuture",
234
234
+
"thiserror 2.0.12",
235
235
+
"tracing",
236
236
+
"uuid",
237
237
+
"wasm-bindgen",
238
238
+
"wasm-bindgen-futures",
239
239
+
"web-sys",
240
240
+
]
241
241
+
242
242
+
[[package]]
243
243
+
name = "bevy_asset_macros"
244
244
+
version = "0.16.0-rc.1"
245
245
+
source = "registry+https://github.com/rust-lang/crates.io-index"
246
246
+
checksum = "296fc46818e7f0afe5ef547969f22d649e1601a9445081a89042ebe10d5ae2ab"
247
247
+
dependencies = [
248
248
+
"bevy_macro_utils",
249
249
+
"proc-macro2",
250
250
+
"quote",
251
251
+
"syn",
252
252
+
]
253
253
+
254
254
+
[[package]]
255
255
+
name = "bevy_color"
256
256
+
version = "0.16.0-rc.1"
257
257
+
source = "registry+https://github.com/rust-lang/crates.io-index"
258
258
+
checksum = "6608e3ec8eeafecf2c9501775c24ef187dcb71884204656e267c8f1f43c591e7"
259
259
+
dependencies = [
260
260
+
"bevy_math",
261
261
+
"bevy_reflect",
262
262
+
"bytemuck",
263
263
+
"derive_more",
264
264
+
"encase",
265
265
+
"serde",
266
266
+
"thiserror 2.0.12",
267
267
+
"wgpu-types",
268
268
+
]
269
269
+
270
270
+
[[package]]
271
271
+
name = "bevy_derive"
272
272
+
version = "0.16.0-rc.1"
273
273
+
source = "registry+https://github.com/rust-lang/crates.io-index"
274
274
+
checksum = "45daaa1611f21578bdabaa0265cbe00442859c2eddd10aa85469834b79edf44a"
275
275
+
dependencies = [
276
276
+
"bevy_macro_utils",
277
277
+
"quote",
278
278
+
"syn",
279
279
+
]
280
280
+
281
281
+
[[package]]
282
282
+
name = "bevy_ecs"
283
283
+
version = "0.16.0-rc.1"
284
284
+
source = "registry+https://github.com/rust-lang/crates.io-index"
285
285
+
checksum = "337b93c47b70ee8fe25db5daa65af1ad0dccf0b7ec29c2957e96799d16f254e1"
286
286
+
dependencies = [
287
287
+
"arrayvec",
288
288
+
"bevy_ecs_macros",
289
289
+
"bevy_platform_support",
290
290
+
"bevy_ptr",
291
291
+
"bevy_reflect",
292
292
+
"bevy_tasks",
293
293
+
"bevy_utils",
294
294
+
"bitflags",
295
295
+
"bumpalo",
296
296
+
"concurrent-queue",
297
297
+
"derive_more",
298
298
+
"disqualified",
299
299
+
"fixedbitset",
300
300
+
"indexmap",
301
301
+
"log",
302
302
+
"nonmax",
303
303
+
"serde",
304
304
+
"smallvec",
305
305
+
"thiserror 2.0.12",
306
306
+
"variadics_please",
307
307
+
]
308
308
+
309
309
+
[[package]]
310
310
+
name = "bevy_ecs_macros"
311
311
+
version = "0.16.0-rc.1"
312
312
+
source = "registry+https://github.com/rust-lang/crates.io-index"
313
313
+
checksum = "9d34773175173c24c0d5ed1517505fdb1c7bc5575d9c512ac93c8d158b04fc30"
314
314
+
dependencies = [
315
315
+
"bevy_macro_utils",
316
316
+
"proc-macro2",
317
317
+
"quote",
318
318
+
"syn",
319
319
+
]
320
320
+
321
321
+
[[package]]
322
322
+
name = "bevy_image"
323
323
+
version = "0.16.0-rc.1"
324
324
+
source = "registry+https://github.com/rust-lang/crates.io-index"
325
325
+
checksum = "1349aec6635e0a92f8baf4e7e5dda7247c35c2539a91986a278ed52cc3835133"
326
326
+
dependencies = [
327
327
+
"bevy_app",
328
328
+
"bevy_asset",
329
329
+
"bevy_color",
330
330
+
"bevy_math",
331
331
+
"bevy_platform_support",
332
332
+
"bevy_reflect",
333
333
+
"bevy_utils",
334
334
+
"bitflags",
335
335
+
"bytemuck",
336
336
+
"futures-lite",
337
337
+
"guillotiere",
338
338
+
"half",
339
339
+
"image",
340
340
+
"rectangle-pack",
341
341
+
"serde",
342
342
+
"thiserror 2.0.12",
343
343
+
"tracing",
344
344
+
"wgpu-types",
345
345
+
]
346
346
+
347
347
+
[[package]]
348
348
+
name = "bevy_input"
349
349
+
version = "0.16.0-rc.1"
350
350
+
source = "registry+https://github.com/rust-lang/crates.io-index"
351
351
+
checksum = "8ca33309a6362718bb5eed05794df38240029d784485437c7fe1441a0874a268"
352
352
+
dependencies = [
353
353
+
"bevy_app",
354
354
+
"bevy_ecs",
355
355
+
"bevy_math",
356
356
+
"bevy_platform_support",
357
357
+
"bevy_reflect",
358
358
+
"bevy_utils",
359
359
+
"derive_more",
360
360
+
"log",
361
361
+
"thiserror 2.0.12",
362
362
+
]
363
363
+
364
364
+
[[package]]
365
365
+
name = "bevy_log"
366
366
+
version = "0.16.0-rc.1"
367
367
+
source = "registry+https://github.com/rust-lang/crates.io-index"
368
368
+
checksum = "e60a9c2e6e8665a2ba66e3068d867b23240cf0425c64114e11916af91a63a94d"
369
369
+
dependencies = [
370
370
+
"android_log-sys",
371
371
+
"bevy_app",
372
372
+
"bevy_ecs",
373
373
+
"bevy_utils",
374
374
+
"tracing",
375
375
+
"tracing-log",
376
376
+
"tracing-oslog",
377
377
+
"tracing-subscriber",
378
378
+
"tracing-wasm",
379
379
+
]
380
380
+
381
381
+
[[package]]
382
382
+
name = "bevy_macro_utils"
383
383
+
version = "0.16.0-rc.1"
384
384
+
source = "registry+https://github.com/rust-lang/crates.io-index"
385
385
+
checksum = "99fd4d07ca32a8ab9b5d220b90fb61b5e4eb6f78f3d37191ad7fc976c2f796d0"
386
386
+
dependencies = [
387
387
+
"parking_lot",
388
388
+
"proc-macro2",
389
389
+
"quote",
390
390
+
"syn",
391
391
+
"toml_edit",
392
392
+
]
393
393
+
394
394
+
[[package]]
395
395
+
name = "bevy_math"
396
396
+
version = "0.16.0-rc.1"
397
397
+
source = "registry+https://github.com/rust-lang/crates.io-index"
398
398
+
checksum = "ca2c73e8045d96a09e93f04cb0438c4c4a8a2d1d0ca6b449422bab8677ad2ba1"
399
399
+
dependencies = [
400
400
+
"approx",
401
401
+
"bevy_reflect",
402
402
+
"derive_more",
403
403
+
"glam",
404
404
+
"itertools 0.14.0",
405
405
+
"rand",
406
406
+
"rand_distr",
407
407
+
"serde",
408
408
+
"smallvec",
409
409
+
"thiserror 2.0.12",
410
410
+
"variadics_please",
411
411
+
]
412
412
+
413
413
+
[[package]]
414
414
+
name = "bevy_platform_support"
415
415
+
version = "0.16.0-rc.1"
416
416
+
source = "registry+https://github.com/rust-lang/crates.io-index"
417
417
+
checksum = "0087e138e1d88fa3ec93b015f0f47c4cabb47bcb4b81791f0d196674174501d5"
418
418
+
dependencies = [
419
419
+
"cfg-if",
420
420
+
"critical-section",
421
421
+
"foldhash",
422
422
+
"getrandom 0.2.15",
423
423
+
"hashbrown",
424
424
+
"portable-atomic",
425
425
+
"portable-atomic-util",
426
426
+
"spin",
427
427
+
"web-time",
428
428
+
]
429
429
+
430
430
+
[[package]]
431
431
+
name = "bevy_ptr"
432
432
+
version = "0.16.0-rc.1"
433
433
+
source = "registry+https://github.com/rust-lang/crates.io-index"
434
434
+
checksum = "8990d0411194a3b2afea96fd86905ad88134dffc1992cc9007bc3e069b3e66ce"
435
435
+
436
436
+
[[package]]
437
437
+
name = "bevy_reflect"
438
438
+
version = "0.16.0-rc.1"
439
439
+
source = "registry+https://github.com/rust-lang/crates.io-index"
440
440
+
checksum = "db44a6a28f5f162dfb707a38f6eebf6312509fa4d1b3b1e24c0fd8795720ef46"
441
441
+
dependencies = [
442
442
+
"assert_type_match",
443
443
+
"bevy_platform_support",
444
444
+
"bevy_ptr",
445
445
+
"bevy_reflect_derive",
446
446
+
"bevy_utils",
447
447
+
"derive_more",
448
448
+
"disqualified",
449
449
+
"downcast-rs",
450
450
+
"erased-serde",
451
451
+
"foldhash",
452
452
+
"glam",
453
453
+
"serde",
454
454
+
"smallvec",
455
455
+
"smol_str",
456
456
+
"thiserror 2.0.12",
457
457
+
"uuid",
458
458
+
"variadics_please",
459
459
+
"wgpu-types",
460
460
+
]
461
461
+
462
462
+
[[package]]
463
463
+
name = "bevy_reflect_derive"
464
464
+
version = "0.16.0-rc.1"
465
465
+
source = "registry+https://github.com/rust-lang/crates.io-index"
466
466
+
checksum = "ac5ad4482405f3580e78026335273f89f334137338846ccde59575191b30a4c4"
467
467
+
dependencies = [
468
468
+
"bevy_macro_utils",
469
469
+
"proc-macro2",
470
470
+
"quote",
471
471
+
"syn",
472
472
+
"uuid",
473
473
+
]
474
474
+
475
475
+
[[package]]
476
476
+
name = "bevy_status_effects"
477
477
+
version = "0.1.0"
478
478
+
dependencies = [
479
479
+
"bevy_app",
480
480
+
"bevy_asset",
481
481
+
"bevy_ecs",
482
482
+
"bevy_image",
483
483
+
"bevy_time",
484
484
+
]
485
485
+
486
486
+
[[package]]
487
487
+
name = "bevy_tasks"
488
488
+
version = "0.16.0-rc.1"
489
489
+
source = "registry+https://github.com/rust-lang/crates.io-index"
490
490
+
checksum = "e4c337ced099ea9c09d729c57d80512986804f10a6555c9e5418f8c3d3c11d1f"
491
491
+
dependencies = [
492
492
+
"async-executor",
493
493
+
"async-task",
494
494
+
"atomic-waker",
495
495
+
"bevy_platform_support",
496
496
+
"cfg-if",
497
497
+
"crossbeam-queue",
498
498
+
"derive_more",
499
499
+
"futures-channel",
500
500
+
"futures-lite",
501
501
+
"heapless",
502
502
+
"once_cell",
503
503
+
"pin-project",
504
504
+
"wasm-bindgen-futures",
505
505
+
]
506
506
+
507
507
+
[[package]]
508
508
+
name = "bevy_time"
509
509
+
version = "0.16.0-rc.1"
510
510
+
source = "registry+https://github.com/rust-lang/crates.io-index"
511
511
+
checksum = "d23936a645e1e090c5183ffecdcb26936fc381767f888badaef2adb09bb5020e"
512
512
+
dependencies = [
513
513
+
"bevy_app",
514
514
+
"bevy_ecs",
515
515
+
"bevy_platform_support",
516
516
+
"log",
517
517
+
]
518
518
+
519
519
+
[[package]]
520
520
+
name = "bevy_utils"
521
521
+
version = "0.16.0-rc.1"
522
522
+
source = "registry+https://github.com/rust-lang/crates.io-index"
523
523
+
checksum = "a17e89665e5f7338325ccf311429838f49d0fe6b8cadba826990adcd4d98deac"
524
524
+
dependencies = [
525
525
+
"bevy_platform_support",
526
526
+
"thread_local",
527
527
+
]
528
528
+
529
529
+
[[package]]
530
530
+
name = "bevy_window"
531
531
+
version = "0.16.0-rc.1"
532
532
+
source = "registry+https://github.com/rust-lang/crates.io-index"
533
533
+
checksum = "27528242a379d343182299c19889812780e52a69c7f9859362e181b874becece"
534
534
+
dependencies = [
535
535
+
"android-activity",
536
536
+
"bevy_app",
537
537
+
"bevy_ecs",
538
538
+
"bevy_input",
539
539
+
"bevy_math",
540
540
+
"bevy_platform_support",
541
541
+
"bevy_reflect",
542
542
+
"bevy_utils",
543
543
+
"log",
544
544
+
"raw-window-handle",
545
545
+
"serde",
546
546
+
"smol_str",
547
547
+
]
548
548
+
549
549
+
[[package]]
550
550
+
name = "bindgen"
551
551
+
version = "0.70.1"
552
552
+
source = "registry+https://github.com/rust-lang/crates.io-index"
553
553
+
checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
554
554
+
dependencies = [
555
555
+
"bitflags",
556
556
+
"cexpr",
557
557
+
"clang-sys",
558
558
+
"itertools 0.13.0",
559
559
+
"log",
560
560
+
"prettyplease",
561
561
+
"proc-macro2",
562
562
+
"quote",
563
563
+
"regex",
564
564
+
"rustc-hash",
565
565
+
"shlex",
566
566
+
"syn",
567
567
+
]
568
568
+
569
569
+
[[package]]
570
570
+
name = "bitflags"
571
571
+
version = "2.9.0"
572
572
+
source = "registry+https://github.com/rust-lang/crates.io-index"
573
573
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
574
574
+
dependencies = [
575
575
+
"serde",
576
576
+
]
577
577
+
578
578
+
[[package]]
579
579
+
name = "blake3"
580
580
+
version = "1.7.0"
581
581
+
source = "registry+https://github.com/rust-lang/crates.io-index"
582
582
+
checksum = "b17679a8d69b6d7fd9cd9801a536cec9fa5e5970b69f9d4747f70b39b031f5e7"
583
583
+
dependencies = [
584
584
+
"arrayref",
585
585
+
"arrayvec",
586
586
+
"cc",
587
587
+
"cfg-if",
588
588
+
"constant_time_eq",
589
589
+
]
590
590
+
591
591
+
[[package]]
592
592
+
name = "blocking"
593
593
+
version = "1.6.1"
594
594
+
source = "registry+https://github.com/rust-lang/crates.io-index"
595
595
+
checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
596
596
+
dependencies = [
597
597
+
"async-channel",
598
598
+
"async-task",
599
599
+
"futures-io",
600
600
+
"futures-lite",
601
601
+
"piper",
602
602
+
]
603
603
+
604
604
+
[[package]]
605
605
+
name = "bumpalo"
606
606
+
version = "3.17.0"
607
607
+
source = "registry+https://github.com/rust-lang/crates.io-index"
608
608
+
checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
609
609
+
610
610
+
[[package]]
611
611
+
name = "bytemuck"
612
612
+
version = "1.22.0"
613
613
+
source = "registry+https://github.com/rust-lang/crates.io-index"
614
614
+
checksum = "b6b1fc10dbac614ebc03540c9dbd60e83887fda27794998c6528f1782047d540"
615
615
+
dependencies = [
616
616
+
"bytemuck_derive",
617
617
+
]
618
618
+
619
619
+
[[package]]
620
620
+
name = "bytemuck_derive"
621
621
+
version = "1.9.2"
622
622
+
source = "registry+https://github.com/rust-lang/crates.io-index"
623
623
+
checksum = "2ff22c2722516255d1823ce3cc4bc0b154dbc9364be5c905d6baa6eccbbc8774"
624
624
+
dependencies = [
625
625
+
"proc-macro2",
626
626
+
"quote",
627
627
+
"syn",
628
628
+
]
629
629
+
630
630
+
[[package]]
631
631
+
name = "byteorder"
632
632
+
version = "1.5.0"
633
633
+
source = "registry+https://github.com/rust-lang/crates.io-index"
634
634
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
635
635
+
636
636
+
[[package]]
637
637
+
name = "byteorder-lite"
638
638
+
version = "0.1.0"
639
639
+
source = "registry+https://github.com/rust-lang/crates.io-index"
640
640
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
641
641
+
642
642
+
[[package]]
643
643
+
name = "bytes"
644
644
+
version = "1.10.1"
645
645
+
source = "registry+https://github.com/rust-lang/crates.io-index"
646
646
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
647
647
+
648
648
+
[[package]]
649
649
+
name = "cc"
650
650
+
version = "1.2.17"
651
651
+
source = "registry+https://github.com/rust-lang/crates.io-index"
652
652
+
checksum = "1fcb57c740ae1daf453ae85f16e37396f672b039e00d9d866e07ddb24e328e3a"
653
653
+
dependencies = [
654
654
+
"jobserver",
655
655
+
"libc",
656
656
+
"shlex",
657
657
+
]
658
658
+
659
659
+
[[package]]
660
660
+
name = "cesu8"
661
661
+
version = "1.1.0"
662
662
+
source = "registry+https://github.com/rust-lang/crates.io-index"
663
663
+
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
664
664
+
665
665
+
[[package]]
666
666
+
name = "cexpr"
667
667
+
version = "0.6.0"
668
668
+
source = "registry+https://github.com/rust-lang/crates.io-index"
669
669
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
670
670
+
dependencies = [
671
671
+
"nom",
672
672
+
]
673
673
+
674
674
+
[[package]]
675
675
+
name = "cfg-if"
676
676
+
version = "1.0.0"
677
677
+
source = "registry+https://github.com/rust-lang/crates.io-index"
678
678
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
679
679
+
680
680
+
[[package]]
681
681
+
name = "cfg_aliases"
682
682
+
version = "0.2.1"
683
683
+
source = "registry+https://github.com/rust-lang/crates.io-index"
684
684
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
685
685
+
686
686
+
[[package]]
687
687
+
name = "clang-sys"
688
688
+
version = "1.8.1"
689
689
+
source = "registry+https://github.com/rust-lang/crates.io-index"
690
690
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
691
691
+
dependencies = [
692
692
+
"glob",
693
693
+
"libc",
694
694
+
"libloading",
695
695
+
]
696
696
+
697
697
+
[[package]]
698
698
+
name = "combine"
699
699
+
version = "4.6.7"
700
700
+
source = "registry+https://github.com/rust-lang/crates.io-index"
701
701
+
checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
702
702
+
dependencies = [
703
703
+
"bytes",
704
704
+
"memchr",
705
705
+
]
706
706
+
707
707
+
[[package]]
708
708
+
name = "concurrent-queue"
709
709
+
version = "2.5.0"
710
710
+
source = "registry+https://github.com/rust-lang/crates.io-index"
711
711
+
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
712
712
+
dependencies = [
713
713
+
"crossbeam-utils",
714
714
+
"portable-atomic",
715
715
+
]
716
716
+
717
717
+
[[package]]
718
718
+
name = "console_error_panic_hook"
719
719
+
version = "0.1.7"
720
720
+
source = "registry+https://github.com/rust-lang/crates.io-index"
721
721
+
checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
722
722
+
dependencies = [
723
723
+
"cfg-if",
724
724
+
"wasm-bindgen",
725
725
+
]
726
726
+
727
727
+
[[package]]
728
728
+
name = "const_panic"
729
729
+
version = "0.2.12"
730
730
+
source = "registry+https://github.com/rust-lang/crates.io-index"
731
731
+
checksum = "2459fc9262a1aa204eb4b5764ad4f189caec88aea9634389c0a25f8be7f6265e"
732
732
+
733
733
+
[[package]]
734
734
+
name = "constant_time_eq"
735
735
+
version = "0.3.1"
736
736
+
source = "registry+https://github.com/rust-lang/crates.io-index"
737
737
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
738
738
+
739
739
+
[[package]]
740
740
+
name = "critical-section"
741
741
+
version = "1.2.0"
742
742
+
source = "registry+https://github.com/rust-lang/crates.io-index"
743
743
+
checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
744
744
+
745
745
+
[[package]]
746
746
+
name = "crossbeam-channel"
747
747
+
version = "0.5.14"
748
748
+
source = "registry+https://github.com/rust-lang/crates.io-index"
749
749
+
checksum = "06ba6d68e24814cb8de6bb986db8222d3a027d15872cabc0d18817bc3c0e4471"
750
750
+
dependencies = [
751
751
+
"crossbeam-utils",
752
752
+
]
753
753
+
754
754
+
[[package]]
755
755
+
name = "crossbeam-queue"
756
756
+
version = "0.3.12"
757
757
+
source = "registry+https://github.com/rust-lang/crates.io-index"
758
758
+
checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
759
759
+
dependencies = [
760
760
+
"crossbeam-utils",
761
761
+
]
762
762
+
763
763
+
[[package]]
764
764
+
name = "crossbeam-utils"
765
765
+
version = "0.8.21"
766
766
+
source = "registry+https://github.com/rust-lang/crates.io-index"
767
767
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
768
768
+
769
769
+
[[package]]
770
770
+
name = "crunchy"
771
771
+
version = "0.2.3"
772
772
+
source = "registry+https://github.com/rust-lang/crates.io-index"
773
773
+
checksum = "43da5946c66ffcc7745f48db692ffbb10a83bfe0afd96235c5c2a4fb23994929"
774
774
+
775
775
+
[[package]]
776
776
+
name = "ctrlc"
777
777
+
version = "3.4.5"
778
778
+
source = "registry+https://github.com/rust-lang/crates.io-index"
779
779
+
checksum = "90eeab0aa92f3f9b4e87f258c72b139c207d251f9cbc1080a0086b86a8870dd3"
780
780
+
dependencies = [
781
781
+
"nix",
782
782
+
"windows-sys 0.59.0",
783
783
+
]
784
784
+
785
785
+
[[package]]
786
786
+
name = "derive_more"
787
787
+
version = "1.0.0"
788
788
+
source = "registry+https://github.com/rust-lang/crates.io-index"
789
789
+
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
790
790
+
dependencies = [
791
791
+
"derive_more-impl",
792
792
+
]
793
793
+
794
794
+
[[package]]
795
795
+
name = "derive_more-impl"
796
796
+
version = "1.0.0"
797
797
+
source = "registry+https://github.com/rust-lang/crates.io-index"
798
798
+
checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
799
799
+
dependencies = [
800
800
+
"proc-macro2",
801
801
+
"quote",
802
802
+
"syn",
803
803
+
"unicode-xid",
804
804
+
]
805
805
+
806
806
+
[[package]]
807
807
+
name = "disqualified"
808
808
+
version = "1.0.0"
809
809
+
source = "registry+https://github.com/rust-lang/crates.io-index"
810
810
+
checksum = "c9c272297e804878a2a4b707cfcfc6d2328b5bb936944613b4fdf2b9269afdfd"
811
811
+
812
812
+
[[package]]
813
813
+
name = "downcast-rs"
814
814
+
version = "2.0.1"
815
815
+
source = "registry+https://github.com/rust-lang/crates.io-index"
816
816
+
checksum = "ea8a8b81cacc08888170eef4d13b775126db426d0b348bee9d18c2c1eaf123cf"
817
817
+
818
818
+
[[package]]
819
819
+
name = "either"
820
820
+
version = "1.15.0"
821
821
+
source = "registry+https://github.com/rust-lang/crates.io-index"
822
822
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
823
823
+
824
824
+
[[package]]
825
825
+
name = "encase"
826
826
+
version = "0.10.0"
827
827
+
source = "registry+https://github.com/rust-lang/crates.io-index"
828
828
+
checksum = "b0a05902cf601ed11d564128448097b98ebe3c6574bd7b6a653a3d56d54aa020"
829
829
+
dependencies = [
830
830
+
"const_panic",
831
831
+
"encase_derive",
832
832
+
"thiserror 1.0.69",
833
833
+
]
834
834
+
835
835
+
[[package]]
836
836
+
name = "encase_derive"
837
837
+
version = "0.10.0"
838
838
+
source = "registry+https://github.com/rust-lang/crates.io-index"
839
839
+
checksum = "181d475b694e2dd56ae919ce7699d344d1fd259292d590c723a50d1189a2ea85"
840
840
+
dependencies = [
841
841
+
"encase_derive_impl",
842
842
+
]
843
843
+
844
844
+
[[package]]
845
845
+
name = "encase_derive_impl"
846
846
+
version = "0.10.0"
847
847
+
source = "registry+https://github.com/rust-lang/crates.io-index"
848
848
+
checksum = "f97b51c5cc57ef7c5f7a0c57c250251c49ee4c28f819f87ac32f4aceabc36792"
849
849
+
dependencies = [
850
850
+
"proc-macro2",
851
851
+
"quote",
852
852
+
"syn",
853
853
+
]
854
854
+
855
855
+
[[package]]
856
856
+
name = "equivalent"
857
857
+
version = "1.0.2"
858
858
+
source = "registry+https://github.com/rust-lang/crates.io-index"
859
859
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
860
860
+
861
861
+
[[package]]
862
862
+
name = "erased-serde"
863
863
+
version = "0.4.6"
864
864
+
source = "registry+https://github.com/rust-lang/crates.io-index"
865
865
+
checksum = "e004d887f51fcb9fef17317a2f3525c887d8aa3f4f50fed920816a688284a5b7"
866
866
+
dependencies = [
867
867
+
"serde",
868
868
+
"typeid",
869
869
+
]
870
870
+
871
871
+
[[package]]
872
872
+
name = "euclid"
873
873
+
version = "0.22.11"
874
874
+
source = "registry+https://github.com/rust-lang/crates.io-index"
875
875
+
checksum = "ad9cdb4b747e485a12abb0e6566612956c7a1bafa3bdb8d682c5b6d403589e48"
876
876
+
dependencies = [
877
877
+
"num-traits",
878
878
+
]
879
879
+
880
880
+
[[package]]
881
881
+
name = "event-listener"
882
882
+
version = "5.4.0"
883
883
+
source = "registry+https://github.com/rust-lang/crates.io-index"
884
884
+
checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
885
885
+
dependencies = [
886
886
+
"concurrent-queue",
887
887
+
"parking",
888
888
+
"pin-project-lite",
889
889
+
]
890
890
+
891
891
+
[[package]]
892
892
+
name = "event-listener-strategy"
893
893
+
version = "0.5.3"
894
894
+
source = "registry+https://github.com/rust-lang/crates.io-index"
895
895
+
checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2"
896
896
+
dependencies = [
897
897
+
"event-listener",
898
898
+
"pin-project-lite",
899
899
+
]
900
900
+
901
901
+
[[package]]
902
902
+
name = "fastrand"
903
903
+
version = "2.3.0"
904
904
+
source = "registry+https://github.com/rust-lang/crates.io-index"
905
905
+
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
906
906
+
907
907
+
[[package]]
908
908
+
name = "fixedbitset"
909
909
+
version = "0.5.7"
910
910
+
source = "registry+https://github.com/rust-lang/crates.io-index"
911
911
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
912
912
+
913
913
+
[[package]]
914
914
+
name = "foldhash"
915
915
+
version = "0.1.5"
916
916
+
source = "registry+https://github.com/rust-lang/crates.io-index"
917
917
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
918
918
+
919
919
+
[[package]]
920
920
+
name = "futures-channel"
921
921
+
version = "0.3.31"
922
922
+
source = "registry+https://github.com/rust-lang/crates.io-index"
923
923
+
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
924
924
+
dependencies = [
925
925
+
"futures-core",
926
926
+
]
927
927
+
928
928
+
[[package]]
929
929
+
name = "futures-core"
930
930
+
version = "0.3.31"
931
931
+
source = "registry+https://github.com/rust-lang/crates.io-index"
932
932
+
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
933
933
+
934
934
+
[[package]]
935
935
+
name = "futures-io"
936
936
+
version = "0.3.31"
937
937
+
source = "registry+https://github.com/rust-lang/crates.io-index"
938
938
+
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
939
939
+
940
940
+
[[package]]
941
941
+
name = "futures-lite"
942
942
+
version = "2.6.0"
943
943
+
source = "registry+https://github.com/rust-lang/crates.io-index"
944
944
+
checksum = "f5edaec856126859abb19ed65f39e90fea3a9574b9707f13539acf4abf7eb532"
945
945
+
dependencies = [
946
946
+
"fastrand",
947
947
+
"futures-core",
948
948
+
"futures-io",
949
949
+
"parking",
950
950
+
"pin-project-lite",
951
951
+
]
952
952
+
953
953
+
[[package]]
954
954
+
name = "getrandom"
955
955
+
version = "0.2.15"
956
956
+
source = "registry+https://github.com/rust-lang/crates.io-index"
957
957
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
958
958
+
dependencies = [
959
959
+
"cfg-if",
960
960
+
"js-sys",
961
961
+
"libc",
962
962
+
"wasi 0.11.0+wasi-snapshot-preview1",
963
963
+
"wasm-bindgen",
964
964
+
]
965
965
+
966
966
+
[[package]]
967
967
+
name = "getrandom"
968
968
+
version = "0.3.2"
969
969
+
source = "registry+https://github.com/rust-lang/crates.io-index"
970
970
+
checksum = "73fea8450eea4bac3940448fb7ae50d91f034f941199fcd9d909a5a07aa455f0"
971
971
+
dependencies = [
972
972
+
"cfg-if",
973
973
+
"libc",
974
974
+
"r-efi",
975
975
+
"wasi 0.14.2+wasi-0.2.4",
976
976
+
]
977
977
+
978
978
+
[[package]]
979
979
+
name = "glam"
980
980
+
version = "0.29.2"
981
981
+
source = "registry+https://github.com/rust-lang/crates.io-index"
982
982
+
checksum = "dc46dd3ec48fdd8e693a98d2b8bafae273a2d54c1de02a2a7e3d57d501f39677"
983
983
+
dependencies = [
984
984
+
"bytemuck",
985
985
+
"rand",
986
986
+
"serde",
987
987
+
]
988
988
+
989
989
+
[[package]]
990
990
+
name = "glob"
991
991
+
version = "0.3.2"
992
992
+
source = "registry+https://github.com/rust-lang/crates.io-index"
993
993
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
994
994
+
995
995
+
[[package]]
996
996
+
name = "guillotiere"
997
997
+
version = "0.6.2"
998
998
+
source = "registry+https://github.com/rust-lang/crates.io-index"
999
999
+
checksum = "b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782"
1000
1000
+
dependencies = [
1001
1001
+
"euclid",
1002
1002
+
"svg_fmt",
1003
1003
+
]
1004
1004
+
1005
1005
+
[[package]]
1006
1006
+
name = "half"
1007
1007
+
version = "2.5.0"
1008
1008
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1009
1009
+
checksum = "7db2ff139bba50379da6aa0766b52fdcb62cb5b263009b09ed58ba604e14bbd1"
1010
1010
+
dependencies = [
1011
1011
+
"cfg-if",
1012
1012
+
"crunchy",
1013
1013
+
]
1014
1014
+
1015
1015
+
[[package]]
1016
1016
+
name = "hash32"
1017
1017
+
version = "0.3.1"
1018
1018
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1019
1019
+
checksum = "47d60b12902ba28e2730cd37e95b8c9223af2808df9e902d4df49588d1470606"
1020
1020
+
dependencies = [
1021
1021
+
"byteorder",
1022
1022
+
]
1023
1023
+
1024
1024
+
[[package]]
1025
1025
+
name = "hashbrown"
1026
1026
+
version = "0.15.2"
1027
1027
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1028
1028
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
1029
1029
+
dependencies = [
1030
1030
+
"equivalent",
1031
1031
+
"serde",
1032
1032
+
]
1033
1033
+
1034
1034
+
[[package]]
1035
1035
+
name = "heapless"
1036
1036
+
version = "0.8.0"
1037
1037
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1038
1038
+
checksum = "0bfb9eb618601c89945a70e254898da93b13be0388091d42117462b265bb3fad"
1039
1039
+
dependencies = [
1040
1040
+
"hash32",
1041
1041
+
"portable-atomic",
1042
1042
+
"stable_deref_trait",
1043
1043
+
]
1044
1044
+
1045
1045
+
[[package]]
1046
1046
+
name = "image"
1047
1047
+
version = "0.25.5"
1048
1048
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1049
1049
+
checksum = "cd6f44aed642f18953a158afeb30206f4d50da59fbc66ecb53c66488de73563b"
1050
1050
+
dependencies = [
1051
1051
+
"bytemuck",
1052
1052
+
"byteorder-lite",
1053
1053
+
"num-traits",
1054
1054
+
]
1055
1055
+
1056
1056
+
[[package]]
1057
1057
+
name = "indexmap"
1058
1058
+
version = "2.8.0"
1059
1059
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1060
1060
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
1061
1061
+
dependencies = [
1062
1062
+
"equivalent",
1063
1063
+
"hashbrown",
1064
1064
+
]
1065
1065
+
1066
1066
+
[[package]]
1067
1067
+
name = "itertools"
1068
1068
+
version = "0.13.0"
1069
1069
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1070
1070
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1071
1071
+
dependencies = [
1072
1072
+
"either",
1073
1073
+
]
1074
1074
+
1075
1075
+
[[package]]
1076
1076
+
name = "itertools"
1077
1077
+
version = "0.14.0"
1078
1078
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1079
1079
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1080
1080
+
dependencies = [
1081
1081
+
"either",
1082
1082
+
]
1083
1083
+
1084
1084
+
[[package]]
1085
1085
+
name = "jni"
1086
1086
+
version = "0.21.1"
1087
1087
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1088
1088
+
checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1089
1089
+
dependencies = [
1090
1090
+
"cesu8",
1091
1091
+
"cfg-if",
1092
1092
+
"combine",
1093
1093
+
"jni-sys",
1094
1094
+
"log",
1095
1095
+
"thiserror 1.0.69",
1096
1096
+
"walkdir",
1097
1097
+
"windows-sys 0.45.0",
1098
1098
+
]
1099
1099
+
1100
1100
+
[[package]]
1101
1101
+
name = "jni-sys"
1102
1102
+
version = "0.3.0"
1103
1103
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1104
1104
+
checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1105
1105
+
1106
1106
+
[[package]]
1107
1107
+
name = "jobserver"
1108
1108
+
version = "0.1.32"
1109
1109
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1110
1110
+
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1111
1111
+
dependencies = [
1112
1112
+
"libc",
1113
1113
+
]
1114
1114
+
1115
1115
+
[[package]]
1116
1116
+
name = "js-sys"
1117
1117
+
version = "0.3.77"
1118
1118
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1119
1119
+
checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1120
1120
+
dependencies = [
1121
1121
+
"once_cell",
1122
1122
+
"wasm-bindgen",
1123
1123
+
]
1124
1124
+
1125
1125
+
[[package]]
1126
1126
+
name = "lazy_static"
1127
1127
+
version = "1.5.0"
1128
1128
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1129
1129
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1130
1130
+
1131
1131
+
[[package]]
1132
1132
+
name = "libc"
1133
1133
+
version = "0.2.171"
1134
1134
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1135
1135
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1136
1136
+
1137
1137
+
[[package]]
1138
1138
+
name = "libloading"
1139
1139
+
version = "0.8.6"
1140
1140
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1141
1141
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1142
1142
+
dependencies = [
1143
1143
+
"cfg-if",
1144
1144
+
"windows-targets 0.52.6",
1145
1145
+
]
1146
1146
+
1147
1147
+
[[package]]
1148
1148
+
name = "libm"
1149
1149
+
version = "0.2.11"
1150
1150
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1151
1151
+
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1152
1152
+
1153
1153
+
[[package]]
1154
1154
+
name = "lock_api"
1155
1155
+
version = "0.4.12"
1156
1156
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1157
1157
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1158
1158
+
dependencies = [
1159
1159
+
"autocfg",
1160
1160
+
"scopeguard",
1161
1161
+
]
1162
1162
+
1163
1163
+
[[package]]
1164
1164
+
name = "log"
1165
1165
+
version = "0.4.27"
1166
1166
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1167
1167
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1168
1168
+
1169
1169
+
[[package]]
1170
1170
+
name = "matchers"
1171
1171
+
version = "0.1.0"
1172
1172
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1173
1173
+
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1174
1174
+
dependencies = [
1175
1175
+
"regex-automata 0.1.10",
1176
1176
+
]
1177
1177
+
1178
1178
+
[[package]]
1179
1179
+
name = "memchr"
1180
1180
+
version = "2.7.4"
1181
1181
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1182
1182
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1183
1183
+
1184
1184
+
[[package]]
1185
1185
+
name = "minimal-lexical"
1186
1186
+
version = "0.2.1"
1187
1187
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1188
1188
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1189
1189
+
1190
1190
+
[[package]]
1191
1191
+
name = "ndk"
1192
1192
+
version = "0.9.0"
1193
1193
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1194
1194
+
checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4"
1195
1195
+
dependencies = [
1196
1196
+
"bitflags",
1197
1197
+
"jni-sys",
1198
1198
+
"log",
1199
1199
+
"ndk-sys",
1200
1200
+
"num_enum",
1201
1201
+
"thiserror 1.0.69",
1202
1202
+
]
1203
1203
+
1204
1204
+
[[package]]
1205
1205
+
name = "ndk-context"
1206
1206
+
version = "0.1.1"
1207
1207
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1208
1208
+
checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1209
1209
+
1210
1210
+
[[package]]
1211
1211
+
name = "ndk-sys"
1212
1212
+
version = "0.6.0+11769913"
1213
1213
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1214
1214
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
1215
1215
+
dependencies = [
1216
1216
+
"jni-sys",
1217
1217
+
]
1218
1218
+
1219
1219
+
[[package]]
1220
1220
+
name = "nix"
1221
1221
+
version = "0.29.0"
1222
1222
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1223
1223
+
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
1224
1224
+
dependencies = [
1225
1225
+
"bitflags",
1226
1226
+
"cfg-if",
1227
1227
+
"cfg_aliases",
1228
1228
+
"libc",
1229
1229
+
]
1230
1230
+
1231
1231
+
[[package]]
1232
1232
+
name = "nom"
1233
1233
+
version = "7.1.3"
1234
1234
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1235
1235
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1236
1236
+
dependencies = [
1237
1237
+
"memchr",
1238
1238
+
"minimal-lexical",
1239
1239
+
]
1240
1240
+
1241
1241
+
[[package]]
1242
1242
+
name = "nonmax"
1243
1243
+
version = "0.5.5"
1244
1244
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1245
1245
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
1246
1246
+
1247
1247
+
[[package]]
1248
1248
+
name = "nu-ansi-term"
1249
1249
+
version = "0.46.0"
1250
1250
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1251
1251
+
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1252
1252
+
dependencies = [
1253
1253
+
"overload",
1254
1254
+
"winapi",
1255
1255
+
]
1256
1256
+
1257
1257
+
[[package]]
1258
1258
+
name = "num-traits"
1259
1259
+
version = "0.2.19"
1260
1260
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1261
1261
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1262
1262
+
dependencies = [
1263
1263
+
"autocfg",
1264
1264
+
"libm",
1265
1265
+
]
1266
1266
+
1267
1267
+
[[package]]
1268
1268
+
name = "num_enum"
1269
1269
+
version = "0.7.3"
1270
1270
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1271
1271
+
checksum = "4e613fc340b2220f734a8595782c551f1250e969d87d3be1ae0579e8d4065179"
1272
1272
+
dependencies = [
1273
1273
+
"num_enum_derive",
1274
1274
+
]
1275
1275
+
1276
1276
+
[[package]]
1277
1277
+
name = "num_enum_derive"
1278
1278
+
version = "0.7.3"
1279
1279
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1280
1280
+
checksum = "af1844ef2428cc3e1cb900be36181049ef3d3193c63e43026cfe202983b27a56"
1281
1281
+
dependencies = [
1282
1282
+
"proc-macro-crate",
1283
1283
+
"proc-macro2",
1284
1284
+
"quote",
1285
1285
+
"syn",
1286
1286
+
]
1287
1287
+
1288
1288
+
[[package]]
1289
1289
+
name = "once_cell"
1290
1290
+
version = "1.21.1"
1291
1291
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1292
1292
+
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
1293
1293
+
dependencies = [
1294
1294
+
"critical-section",
1295
1295
+
"portable-atomic",
1296
1296
+
]
1297
1297
+
1298
1298
+
[[package]]
1299
1299
+
name = "overload"
1300
1300
+
version = "0.1.1"
1301
1301
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1302
1302
+
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1303
1303
+
1304
1304
+
[[package]]
1305
1305
+
name = "parking"
1306
1306
+
version = "2.2.1"
1307
1307
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1308
1308
+
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1309
1309
+
1310
1310
+
[[package]]
1311
1311
+
name = "parking_lot"
1312
1312
+
version = "0.12.3"
1313
1313
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1314
1314
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1315
1315
+
dependencies = [
1316
1316
+
"lock_api",
1317
1317
+
"parking_lot_core",
1318
1318
+
]
1319
1319
+
1320
1320
+
[[package]]
1321
1321
+
name = "parking_lot_core"
1322
1322
+
version = "0.9.10"
1323
1323
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1324
1324
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1325
1325
+
dependencies = [
1326
1326
+
"cfg-if",
1327
1327
+
"libc",
1328
1328
+
"redox_syscall",
1329
1329
+
"smallvec",
1330
1330
+
"windows-targets 0.52.6",
1331
1331
+
]
1332
1332
+
1333
1333
+
[[package]]
1334
1334
+
name = "pin-project"
1335
1335
+
version = "1.1.10"
1336
1336
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1337
1337
+
checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1338
1338
+
dependencies = [
1339
1339
+
"pin-project-internal",
1340
1340
+
]
1341
1341
+
1342
1342
+
[[package]]
1343
1343
+
name = "pin-project-internal"
1344
1344
+
version = "1.1.10"
1345
1345
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1346
1346
+
checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1347
1347
+
dependencies = [
1348
1348
+
"proc-macro2",
1349
1349
+
"quote",
1350
1350
+
"syn",
1351
1351
+
]
1352
1352
+
1353
1353
+
[[package]]
1354
1354
+
name = "pin-project-lite"
1355
1355
+
version = "0.2.16"
1356
1356
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1357
1357
+
checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1358
1358
+
1359
1359
+
[[package]]
1360
1360
+
name = "piper"
1361
1361
+
version = "0.2.4"
1362
1362
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1363
1363
+
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
1364
1364
+
dependencies = [
1365
1365
+
"atomic-waker",
1366
1366
+
"fastrand",
1367
1367
+
"futures-io",
1368
1368
+
]
1369
1369
+
1370
1370
+
[[package]]
1371
1371
+
name = "portable-atomic"
1372
1372
+
version = "1.11.0"
1373
1373
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1374
1374
+
checksum = "350e9b48cbc6b0e028b0473b114454c6316e57336ee184ceab6e53f72c178b3e"
1375
1375
+
1376
1376
+
[[package]]
1377
1377
+
name = "portable-atomic-util"
1378
1378
+
version = "0.2.4"
1379
1379
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1380
1380
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
1381
1381
+
dependencies = [
1382
1382
+
"portable-atomic",
1383
1383
+
]
1384
1384
+
1385
1385
+
[[package]]
1386
1386
+
name = "ppv-lite86"
1387
1387
+
version = "0.2.21"
1388
1388
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1389
1389
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1390
1390
+
dependencies = [
1391
1391
+
"zerocopy",
1392
1392
+
]
1393
1393
+
1394
1394
+
[[package]]
1395
1395
+
name = "prettyplease"
1396
1396
+
version = "0.2.31"
1397
1397
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1398
1398
+
checksum = "5316f57387668042f561aae71480de936257848f9c43ce528e311d89a07cadeb"
1399
1399
+
dependencies = [
1400
1400
+
"proc-macro2",
1401
1401
+
"syn",
1402
1402
+
]
1403
1403
+
1404
1404
+
[[package]]
1405
1405
+
name = "proc-macro-crate"
1406
1406
+
version = "3.3.0"
1407
1407
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1408
1408
+
checksum = "edce586971a4dfaa28950c6f18ed55e0406c1ab88bbce2c6f6293a7aaba73d35"
1409
1409
+
dependencies = [
1410
1410
+
"toml_edit",
1411
1411
+
]
1412
1412
+
1413
1413
+
[[package]]
1414
1414
+
name = "proc-macro2"
1415
1415
+
version = "1.0.94"
1416
1416
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1417
1417
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
1418
1418
+
dependencies = [
1419
1419
+
"unicode-ident",
1420
1420
+
]
1421
1421
+
1422
1422
+
[[package]]
1423
1423
+
name = "quote"
1424
1424
+
version = "1.0.40"
1425
1425
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1426
1426
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1427
1427
+
dependencies = [
1428
1428
+
"proc-macro2",
1429
1429
+
]
1430
1430
+
1431
1431
+
[[package]]
1432
1432
+
name = "r-efi"
1433
1433
+
version = "5.2.0"
1434
1434
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1435
1435
+
checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1436
1436
+
1437
1437
+
[[package]]
1438
1438
+
name = "rand"
1439
1439
+
version = "0.8.5"
1440
1440
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1441
1441
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1442
1442
+
dependencies = [
1443
1443
+
"libc",
1444
1444
+
"rand_chacha",
1445
1445
+
"rand_core",
1446
1446
+
]
1447
1447
+
1448
1448
+
[[package]]
1449
1449
+
name = "rand_chacha"
1450
1450
+
version = "0.3.1"
1451
1451
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1452
1452
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1453
1453
+
dependencies = [
1454
1454
+
"ppv-lite86",
1455
1455
+
"rand_core",
1456
1456
+
]
1457
1457
+
1458
1458
+
[[package]]
1459
1459
+
name = "rand_core"
1460
1460
+
version = "0.6.4"
1461
1461
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1462
1462
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1463
1463
+
dependencies = [
1464
1464
+
"getrandom 0.2.15",
1465
1465
+
]
1466
1466
+
1467
1467
+
[[package]]
1468
1468
+
name = "rand_distr"
1469
1469
+
version = "0.4.3"
1470
1470
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1471
1471
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
1472
1472
+
dependencies = [
1473
1473
+
"num-traits",
1474
1474
+
"rand",
1475
1475
+
]
1476
1476
+
1477
1477
+
[[package]]
1478
1478
+
name = "raw-window-handle"
1479
1479
+
version = "0.6.2"
1480
1480
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1481
1481
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
1482
1482
+
1483
1483
+
[[package]]
1484
1484
+
name = "rectangle-pack"
1485
1485
+
version = "0.4.2"
1486
1486
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1487
1487
+
checksum = "a0d463f2884048e7153449a55166f91028d5b0ea53c79377099ce4e8cf0cf9bb"
1488
1488
+
1489
1489
+
[[package]]
1490
1490
+
name = "redox_syscall"
1491
1491
+
version = "0.5.10"
1492
1492
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1493
1493
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
1494
1494
+
dependencies = [
1495
1495
+
"bitflags",
1496
1496
+
]
1497
1497
+
1498
1498
+
[[package]]
1499
1499
+
name = "regex"
1500
1500
+
version = "1.11.1"
1501
1501
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1502
1502
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1503
1503
+
dependencies = [
1504
1504
+
"aho-corasick",
1505
1505
+
"memchr",
1506
1506
+
"regex-automata 0.4.9",
1507
1507
+
"regex-syntax 0.8.5",
1508
1508
+
]
1509
1509
+
1510
1510
+
[[package]]
1511
1511
+
name = "regex-automata"
1512
1512
+
version = "0.1.10"
1513
1513
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1514
1514
+
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1515
1515
+
dependencies = [
1516
1516
+
"regex-syntax 0.6.29",
1517
1517
+
]
1518
1518
+
1519
1519
+
[[package]]
1520
1520
+
name = "regex-automata"
1521
1521
+
version = "0.4.9"
1522
1522
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1523
1523
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1524
1524
+
dependencies = [
1525
1525
+
"aho-corasick",
1526
1526
+
"memchr",
1527
1527
+
"regex-syntax 0.8.5",
1528
1528
+
]
1529
1529
+
1530
1530
+
[[package]]
1531
1531
+
name = "regex-syntax"
1532
1532
+
version = "0.6.29"
1533
1533
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1534
1534
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1535
1535
+
1536
1536
+
[[package]]
1537
1537
+
name = "regex-syntax"
1538
1538
+
version = "0.8.5"
1539
1539
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1540
1540
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1541
1541
+
1542
1542
+
[[package]]
1543
1543
+
name = "ron"
1544
1544
+
version = "0.8.1"
1545
1545
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1546
1546
+
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
1547
1547
+
dependencies = [
1548
1548
+
"base64",
1549
1549
+
"bitflags",
1550
1550
+
"serde",
1551
1551
+
"serde_derive",
1552
1552
+
]
1553
1553
+
1554
1554
+
[[package]]
1555
1555
+
name = "rustc-hash"
1556
1556
+
version = "1.1.0"
1557
1557
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1558
1558
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
1559
1559
+
1560
1560
+
[[package]]
1561
1561
+
name = "rustversion"
1562
1562
+
version = "1.0.20"
1563
1563
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1564
1564
+
checksum = "eded382c5f5f786b989652c49544c4877d9f015cc22e145a5ea8ea66c2921cd2"
1565
1565
+
1566
1566
+
[[package]]
1567
1567
+
name = "same-file"
1568
1568
+
version = "1.0.6"
1569
1569
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1570
1570
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1571
1571
+
dependencies = [
1572
1572
+
"winapi-util",
1573
1573
+
]
1574
1574
+
1575
1575
+
[[package]]
1576
1576
+
name = "scopeguard"
1577
1577
+
version = "1.2.0"
1578
1578
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1579
1579
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1580
1580
+
1581
1581
+
[[package]]
1582
1582
+
name = "serde"
1583
1583
+
version = "1.0.219"
1584
1584
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1585
1585
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1586
1586
+
dependencies = [
1587
1587
+
"serde_derive",
1588
1588
+
]
1589
1589
+
1590
1590
+
[[package]]
1591
1591
+
name = "serde_derive"
1592
1592
+
version = "1.0.219"
1593
1593
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1594
1594
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1595
1595
+
dependencies = [
1596
1596
+
"proc-macro2",
1597
1597
+
"quote",
1598
1598
+
"syn",
1599
1599
+
]
1600
1600
+
1601
1601
+
[[package]]
1602
1602
+
name = "sharded-slab"
1603
1603
+
version = "0.1.7"
1604
1604
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1605
1605
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1606
1606
+
dependencies = [
1607
1607
+
"lazy_static",
1608
1608
+
]
1609
1609
+
1610
1610
+
[[package]]
1611
1611
+
name = "shlex"
1612
1612
+
version = "1.3.0"
1613
1613
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1614
1614
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1615
1615
+
1616
1616
+
[[package]]
1617
1617
+
name = "slab"
1618
1618
+
version = "0.4.9"
1619
1619
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1620
1620
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1621
1621
+
dependencies = [
1622
1622
+
"autocfg",
1623
1623
+
]
1624
1624
+
1625
1625
+
[[package]]
1626
1626
+
name = "smallvec"
1627
1627
+
version = "1.14.0"
1628
1628
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1629
1629
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
1630
1630
+
1631
1631
+
[[package]]
1632
1632
+
name = "smol_str"
1633
1633
+
version = "0.2.2"
1634
1634
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1635
1635
+
checksum = "dd538fb6910ac1099850255cf94a94df6551fbdd602454387d0adb2d1ca6dead"
1636
1636
+
dependencies = [
1637
1637
+
"serde",
1638
1638
+
]
1639
1639
+
1640
1640
+
[[package]]
1641
1641
+
name = "spin"
1642
1642
+
version = "0.9.8"
1643
1643
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1644
1644
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1645
1645
+
dependencies = [
1646
1646
+
"portable-atomic",
1647
1647
+
]
1648
1648
+
1649
1649
+
[[package]]
1650
1650
+
name = "stable_deref_trait"
1651
1651
+
version = "1.2.0"
1652
1652
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1653
1653
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1654
1654
+
1655
1655
+
[[package]]
1656
1656
+
name = "stackfuture"
1657
1657
+
version = "0.3.0"
1658
1658
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1659
1659
+
checksum = "6eae92052b72ef70dafa16eddbabffc77e5ca3574be2f7bc1127b36f0a7ad7f2"
1660
1660
+
1661
1661
+
[[package]]
1662
1662
+
name = "svg_fmt"
1663
1663
+
version = "0.4.4"
1664
1664
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1665
1665
+
checksum = "ce5d813d71d82c4cbc1742135004e4a79fd870214c155443451c139c9470a0aa"
1666
1666
+
1667
1667
+
[[package]]
1668
1668
+
name = "syn"
1669
1669
+
version = "2.0.100"
1670
1670
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1671
1671
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
1672
1672
+
dependencies = [
1673
1673
+
"proc-macro2",
1674
1674
+
"quote",
1675
1675
+
"unicode-ident",
1676
1676
+
]
1677
1677
+
1678
1678
+
[[package]]
1679
1679
+
name = "thiserror"
1680
1680
+
version = "1.0.69"
1681
1681
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1682
1682
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1683
1683
+
dependencies = [
1684
1684
+
"thiserror-impl 1.0.69",
1685
1685
+
]
1686
1686
+
1687
1687
+
[[package]]
1688
1688
+
name = "thiserror"
1689
1689
+
version = "2.0.12"
1690
1690
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1691
1691
+
checksum = "567b8a2dae586314f7be2a752ec7474332959c6460e02bde30d702a66d488708"
1692
1692
+
dependencies = [
1693
1693
+
"thiserror-impl 2.0.12",
1694
1694
+
]
1695
1695
+
1696
1696
+
[[package]]
1697
1697
+
name = "thiserror-impl"
1698
1698
+
version = "1.0.69"
1699
1699
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1700
1700
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1701
1701
+
dependencies = [
1702
1702
+
"proc-macro2",
1703
1703
+
"quote",
1704
1704
+
"syn",
1705
1705
+
]
1706
1706
+
1707
1707
+
[[package]]
1708
1708
+
name = "thiserror-impl"
1709
1709
+
version = "2.0.12"
1710
1710
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1711
1711
+
checksum = "7f7cf42b4507d8ea322120659672cf1b9dbb93f8f2d4ecfd6e51350ff5b17a1d"
1712
1712
+
dependencies = [
1713
1713
+
"proc-macro2",
1714
1714
+
"quote",
1715
1715
+
"syn",
1716
1716
+
]
1717
1717
+
1718
1718
+
[[package]]
1719
1719
+
name = "thread_local"
1720
1720
+
version = "1.1.8"
1721
1721
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1722
1722
+
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
1723
1723
+
dependencies = [
1724
1724
+
"cfg-if",
1725
1725
+
"once_cell",
1726
1726
+
]
1727
1727
+
1728
1728
+
[[package]]
1729
1729
+
name = "toml_datetime"
1730
1730
+
version = "0.6.8"
1731
1731
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1732
1732
+
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
1733
1733
+
1734
1734
+
[[package]]
1735
1735
+
name = "toml_edit"
1736
1736
+
version = "0.22.24"
1737
1737
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1738
1738
+
checksum = "17b4795ff5edd201c7cd6dca065ae59972ce77d1b80fa0a84d94950ece7d1474"
1739
1739
+
dependencies = [
1740
1740
+
"indexmap",
1741
1741
+
"toml_datetime",
1742
1742
+
"winnow",
1743
1743
+
]
1744
1744
+
1745
1745
+
[[package]]
1746
1746
+
name = "tracing"
1747
1747
+
version = "0.1.41"
1748
1748
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1749
1749
+
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1750
1750
+
dependencies = [
1751
1751
+
"pin-project-lite",
1752
1752
+
"tracing-attributes",
1753
1753
+
"tracing-core",
1754
1754
+
]
1755
1755
+
1756
1756
+
[[package]]
1757
1757
+
name = "tracing-attributes"
1758
1758
+
version = "0.1.28"
1759
1759
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1760
1760
+
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
1761
1761
+
dependencies = [
1762
1762
+
"proc-macro2",
1763
1763
+
"quote",
1764
1764
+
"syn",
1765
1765
+
]
1766
1766
+
1767
1767
+
[[package]]
1768
1768
+
name = "tracing-core"
1769
1769
+
version = "0.1.33"
1770
1770
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1771
1771
+
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
1772
1772
+
dependencies = [
1773
1773
+
"once_cell",
1774
1774
+
"valuable",
1775
1775
+
]
1776
1776
+
1777
1777
+
[[package]]
1778
1778
+
name = "tracing-log"
1779
1779
+
version = "0.2.0"
1780
1780
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1781
1781
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
1782
1782
+
dependencies = [
1783
1783
+
"log",
1784
1784
+
"once_cell",
1785
1785
+
"tracing-core",
1786
1786
+
]
1787
1787
+
1788
1788
+
[[package]]
1789
1789
+
name = "tracing-oslog"
1790
1790
+
version = "0.2.0"
1791
1791
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1792
1792
+
checksum = "528bdd1f0e27b5dd9a4ededf154e824b0532731e4af73bb531de46276e0aab1e"
1793
1793
+
dependencies = [
1794
1794
+
"bindgen",
1795
1795
+
"cc",
1796
1796
+
"cfg-if",
1797
1797
+
"once_cell",
1798
1798
+
"parking_lot",
1799
1799
+
"tracing-core",
1800
1800
+
"tracing-subscriber",
1801
1801
+
]
1802
1802
+
1803
1803
+
[[package]]
1804
1804
+
name = "tracing-subscriber"
1805
1805
+
version = "0.3.19"
1806
1806
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1807
1807
+
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
1808
1808
+
dependencies = [
1809
1809
+
"matchers",
1810
1810
+
"nu-ansi-term",
1811
1811
+
"once_cell",
1812
1812
+
"regex",
1813
1813
+
"sharded-slab",
1814
1814
+
"smallvec",
1815
1815
+
"thread_local",
1816
1816
+
"tracing",
1817
1817
+
"tracing-core",
1818
1818
+
"tracing-log",
1819
1819
+
]
1820
1820
+
1821
1821
+
[[package]]
1822
1822
+
name = "tracing-wasm"
1823
1823
+
version = "0.2.1"
1824
1824
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1825
1825
+
checksum = "4575c663a174420fa2d78f4108ff68f65bf2fbb7dd89f33749b6e826b3626e07"
1826
1826
+
dependencies = [
1827
1827
+
"tracing",
1828
1828
+
"tracing-subscriber",
1829
1829
+
"wasm-bindgen",
1830
1830
+
]
1831
1831
+
1832
1832
+
[[package]]
1833
1833
+
name = "typeid"
1834
1834
+
version = "1.0.3"
1835
1835
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1836
1836
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
1837
1837
+
1838
1838
+
[[package]]
1839
1839
+
name = "unicode-ident"
1840
1840
+
version = "1.0.18"
1841
1841
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1842
1842
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1843
1843
+
1844
1844
+
[[package]]
1845
1845
+
name = "unicode-xid"
1846
1846
+
version = "0.2.6"
1847
1847
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1848
1848
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1849
1849
+
1850
1850
+
[[package]]
1851
1851
+
name = "uuid"
1852
1852
+
version = "1.16.0"
1853
1853
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1854
1854
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
1855
1855
+
dependencies = [
1856
1856
+
"getrandom 0.3.2",
1857
1857
+
"js-sys",
1858
1858
+
"serde",
1859
1859
+
"wasm-bindgen",
1860
1860
+
]
1861
1861
+
1862
1862
+
[[package]]
1863
1863
+
name = "valuable"
1864
1864
+
version = "0.1.1"
1865
1865
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1866
1866
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
1867
1867
+
1868
1868
+
[[package]]
1869
1869
+
name = "variadics_please"
1870
1870
+
version = "1.1.0"
1871
1871
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1872
1872
+
checksum = "41b6d82be61465f97d42bd1d15bf20f3b0a3a0905018f38f9d6f6962055b0b5c"
1873
1873
+
dependencies = [
1874
1874
+
"proc-macro2",
1875
1875
+
"quote",
1876
1876
+
"syn",
1877
1877
+
]
1878
1878
+
1879
1879
+
[[package]]
1880
1880
+
name = "walkdir"
1881
1881
+
version = "2.5.0"
1882
1882
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1883
1883
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1884
1884
+
dependencies = [
1885
1885
+
"same-file",
1886
1886
+
"winapi-util",
1887
1887
+
]
1888
1888
+
1889
1889
+
[[package]]
1890
1890
+
name = "wasi"
1891
1891
+
version = "0.11.0+wasi-snapshot-preview1"
1892
1892
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1893
1893
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1894
1894
+
1895
1895
+
[[package]]
1896
1896
+
name = "wasi"
1897
1897
+
version = "0.14.2+wasi-0.2.4"
1898
1898
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1899
1899
+
checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
1900
1900
+
dependencies = [
1901
1901
+
"wit-bindgen-rt",
1902
1902
+
]
1903
1903
+
1904
1904
+
[[package]]
1905
1905
+
name = "wasm-bindgen"
1906
1906
+
version = "0.2.100"
1907
1907
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1908
1908
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
1909
1909
+
dependencies = [
1910
1910
+
"cfg-if",
1911
1911
+
"once_cell",
1912
1912
+
"rustversion",
1913
1913
+
"wasm-bindgen-macro",
1914
1914
+
]
1915
1915
+
1916
1916
+
[[package]]
1917
1917
+
name = "wasm-bindgen-backend"
1918
1918
+
version = "0.2.100"
1919
1919
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1920
1920
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
1921
1921
+
dependencies = [
1922
1922
+
"bumpalo",
1923
1923
+
"log",
1924
1924
+
"proc-macro2",
1925
1925
+
"quote",
1926
1926
+
"syn",
1927
1927
+
"wasm-bindgen-shared",
1928
1928
+
]
1929
1929
+
1930
1930
+
[[package]]
1931
1931
+
name = "wasm-bindgen-futures"
1932
1932
+
version = "0.4.50"
1933
1933
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1934
1934
+
checksum = "555d470ec0bc3bb57890405e5d4322cc9ea83cebb085523ced7be4144dac1e61"
1935
1935
+
dependencies = [
1936
1936
+
"cfg-if",
1937
1937
+
"js-sys",
1938
1938
+
"once_cell",
1939
1939
+
"wasm-bindgen",
1940
1940
+
"web-sys",
1941
1941
+
]
1942
1942
+
1943
1943
+
[[package]]
1944
1944
+
name = "wasm-bindgen-macro"
1945
1945
+
version = "0.2.100"
1946
1946
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1947
1947
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
1948
1948
+
dependencies = [
1949
1949
+
"quote",
1950
1950
+
"wasm-bindgen-macro-support",
1951
1951
+
]
1952
1952
+
1953
1953
+
[[package]]
1954
1954
+
name = "wasm-bindgen-macro-support"
1955
1955
+
version = "0.2.100"
1956
1956
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1957
1957
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
1958
1958
+
dependencies = [
1959
1959
+
"proc-macro2",
1960
1960
+
"quote",
1961
1961
+
"syn",
1962
1962
+
"wasm-bindgen-backend",
1963
1963
+
"wasm-bindgen-shared",
1964
1964
+
]
1965
1965
+
1966
1966
+
[[package]]
1967
1967
+
name = "wasm-bindgen-shared"
1968
1968
+
version = "0.2.100"
1969
1969
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1970
1970
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
1971
1971
+
dependencies = [
1972
1972
+
"unicode-ident",
1973
1973
+
]
1974
1974
+
1975
1975
+
[[package]]
1976
1976
+
name = "web-sys"
1977
1977
+
version = "0.3.77"
1978
1978
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1979
1979
+
checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
1980
1980
+
dependencies = [
1981
1981
+
"js-sys",
1982
1982
+
"wasm-bindgen",
1983
1983
+
]
1984
1984
+
1985
1985
+
[[package]]
1986
1986
+
name = "web-time"
1987
1987
+
version = "1.1.0"
1988
1988
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1989
1989
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1990
1990
+
dependencies = [
1991
1991
+
"js-sys",
1992
1992
+
"wasm-bindgen",
1993
1993
+
]
1994
1994
+
1995
1995
+
[[package]]
1996
1996
+
name = "wgpu-types"
1997
1997
+
version = "24.0.0"
1998
1998
+
source = "registry+https://github.com/rust-lang/crates.io-index"
1999
1999
+
checksum = "50ac044c0e76c03a0378e7786ac505d010a873665e2d51383dcff8dd227dc69c"
2000
2000
+
dependencies = [
2001
2001
+
"bitflags",
2002
2002
+
"js-sys",
2003
2003
+
"log",
2004
2004
+
"serde",
2005
2005
+
"web-sys",
2006
2006
+
]
2007
2007
+
2008
2008
+
[[package]]
2009
2009
+
name = "winapi"
2010
2010
+
version = "0.3.9"
2011
2011
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2012
2012
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2013
2013
+
dependencies = [
2014
2014
+
"winapi-i686-pc-windows-gnu",
2015
2015
+
"winapi-x86_64-pc-windows-gnu",
2016
2016
+
]
2017
2017
+
2018
2018
+
[[package]]
2019
2019
+
name = "winapi-i686-pc-windows-gnu"
2020
2020
+
version = "0.4.0"
2021
2021
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2022
2022
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2023
2023
+
2024
2024
+
[[package]]
2025
2025
+
name = "winapi-util"
2026
2026
+
version = "0.1.9"
2027
2027
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2028
2028
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2029
2029
+
dependencies = [
2030
2030
+
"windows-sys 0.59.0",
2031
2031
+
]
2032
2032
+
2033
2033
+
[[package]]
2034
2034
+
name = "winapi-x86_64-pc-windows-gnu"
2035
2035
+
version = "0.4.0"
2036
2036
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2037
2037
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2038
2038
+
2039
2039
+
[[package]]
2040
2040
+
name = "windows-sys"
2041
2041
+
version = "0.45.0"
2042
2042
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2043
2043
+
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
2044
2044
+
dependencies = [
2045
2045
+
"windows-targets 0.42.2",
2046
2046
+
]
2047
2047
+
2048
2048
+
[[package]]
2049
2049
+
name = "windows-sys"
2050
2050
+
version = "0.59.0"
2051
2051
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2052
2052
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2053
2053
+
dependencies = [
2054
2054
+
"windows-targets 0.52.6",
2055
2055
+
]
2056
2056
+
2057
2057
+
[[package]]
2058
2058
+
name = "windows-targets"
2059
2059
+
version = "0.42.2"
2060
2060
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2061
2061
+
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
2062
2062
+
dependencies = [
2063
2063
+
"windows_aarch64_gnullvm 0.42.2",
2064
2064
+
"windows_aarch64_msvc 0.42.2",
2065
2065
+
"windows_i686_gnu 0.42.2",
2066
2066
+
"windows_i686_msvc 0.42.2",
2067
2067
+
"windows_x86_64_gnu 0.42.2",
2068
2068
+
"windows_x86_64_gnullvm 0.42.2",
2069
2069
+
"windows_x86_64_msvc 0.42.2",
2070
2070
+
]
2071
2071
+
2072
2072
+
[[package]]
2073
2073
+
name = "windows-targets"
2074
2074
+
version = "0.52.6"
2075
2075
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2076
2076
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2077
2077
+
dependencies = [
2078
2078
+
"windows_aarch64_gnullvm 0.52.6",
2079
2079
+
"windows_aarch64_msvc 0.52.6",
2080
2080
+
"windows_i686_gnu 0.52.6",
2081
2081
+
"windows_i686_gnullvm",
2082
2082
+
"windows_i686_msvc 0.52.6",
2083
2083
+
"windows_x86_64_gnu 0.52.6",
2084
2084
+
"windows_x86_64_gnullvm 0.52.6",
2085
2085
+
"windows_x86_64_msvc 0.52.6",
2086
2086
+
]
2087
2087
+
2088
2088
+
[[package]]
2089
2089
+
name = "windows_aarch64_gnullvm"
2090
2090
+
version = "0.42.2"
2091
2091
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2092
2092
+
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
2093
2093
+
2094
2094
+
[[package]]
2095
2095
+
name = "windows_aarch64_gnullvm"
2096
2096
+
version = "0.52.6"
2097
2097
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2098
2098
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2099
2099
+
2100
2100
+
[[package]]
2101
2101
+
name = "windows_aarch64_msvc"
2102
2102
+
version = "0.42.2"
2103
2103
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2104
2104
+
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
2105
2105
+
2106
2106
+
[[package]]
2107
2107
+
name = "windows_aarch64_msvc"
2108
2108
+
version = "0.52.6"
2109
2109
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2110
2110
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2111
2111
+
2112
2112
+
[[package]]
2113
2113
+
name = "windows_i686_gnu"
2114
2114
+
version = "0.42.2"
2115
2115
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2116
2116
+
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
2117
2117
+
2118
2118
+
[[package]]
2119
2119
+
name = "windows_i686_gnu"
2120
2120
+
version = "0.52.6"
2121
2121
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2122
2122
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2123
2123
+
2124
2124
+
[[package]]
2125
2125
+
name = "windows_i686_gnullvm"
2126
2126
+
version = "0.52.6"
2127
2127
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2128
2128
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2129
2129
+
2130
2130
+
[[package]]
2131
2131
+
name = "windows_i686_msvc"
2132
2132
+
version = "0.42.2"
2133
2133
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2134
2134
+
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
2135
2135
+
2136
2136
+
[[package]]
2137
2137
+
name = "windows_i686_msvc"
2138
2138
+
version = "0.52.6"
2139
2139
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2140
2140
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2141
2141
+
2142
2142
+
[[package]]
2143
2143
+
name = "windows_x86_64_gnu"
2144
2144
+
version = "0.42.2"
2145
2145
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2146
2146
+
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
2147
2147
+
2148
2148
+
[[package]]
2149
2149
+
name = "windows_x86_64_gnu"
2150
2150
+
version = "0.52.6"
2151
2151
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2152
2152
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2153
2153
+
2154
2154
+
[[package]]
2155
2155
+
name = "windows_x86_64_gnullvm"
2156
2156
+
version = "0.42.2"
2157
2157
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2158
2158
+
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
2159
2159
+
2160
2160
+
[[package]]
2161
2161
+
name = "windows_x86_64_gnullvm"
2162
2162
+
version = "0.52.6"
2163
2163
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2164
2164
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2165
2165
+
2166
2166
+
[[package]]
2167
2167
+
name = "windows_x86_64_msvc"
2168
2168
+
version = "0.42.2"
2169
2169
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2170
2170
+
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
2171
2171
+
2172
2172
+
[[package]]
2173
2173
+
name = "windows_x86_64_msvc"
2174
2174
+
version = "0.52.6"
2175
2175
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2176
2176
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2177
2177
+
2178
2178
+
[[package]]
2179
2179
+
name = "winnow"
2180
2180
+
version = "0.7.4"
2181
2181
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2182
2182
+
checksum = "0e97b544156e9bebe1a0ffbc03484fc1ffe3100cbce3ffb17eac35f7cdd7ab36"
2183
2183
+
dependencies = [
2184
2184
+
"memchr",
2185
2185
+
]
2186
2186
+
2187
2187
+
[[package]]
2188
2188
+
name = "wit-bindgen-rt"
2189
2189
+
version = "0.39.0"
2190
2190
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2191
2191
+
checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2192
2192
+
dependencies = [
2193
2193
+
"bitflags",
2194
2194
+
]
2195
2195
+
2196
2196
+
[[package]]
2197
2197
+
name = "zerocopy"
2198
2198
+
version = "0.8.24"
2199
2199
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2200
2200
+
checksum = "2586fea28e186957ef732a5f8b3be2da217d65c5969d4b1e17f973ebbe876879"
2201
2201
+
dependencies = [
2202
2202
+
"zerocopy-derive",
2203
2203
+
]
2204
2204
+
2205
2205
+
[[package]]
2206
2206
+
name = "zerocopy-derive"
2207
2207
+
version = "0.8.24"
2208
2208
+
source = "registry+https://github.com/rust-lang/crates.io-index"
2209
2209
+
checksum = "a996a8f63c5c4448cd959ac1bab0aaa3306ccfd060472f85943ee0750f0169be"
2210
2210
+
dependencies = [
2211
2211
+
"proc-macro2",
2212
2212
+
"quote",
2213
2213
+
"syn",
2214
2214
+
]
+19
Cargo.toml
reviewed
···
1
1
+
[package]
2
2
+
name = "bevy_status_effects"
3
3
+
version = "0.1.0"
4
4
+
edition = "2024"
5
5
+
description = "A crate for adding status effects to entities using relations."
6
6
+
categories = ["game-development"]
7
7
+
keywords = ["game", "gamedev", "bevy", "relationship"]
8
8
+
repository = "https://github.com/AlephCubed/bevy_status_effects"
9
9
+
license = "MIT OR Apache-2.0"
10
10
+
authors = ["AlephCubed"]
11
11
+
12
12
+
[dependencies]
13
13
+
bevy_app = { version = "0.16.0-rc.1", default-features = false }
14
14
+
bevy_asset = { version = "0.16.0-rc.1", default-features = false }
15
15
+
bevy_ecs = { version = "0.16.0-rc.1", default-features = false }
16
16
+
bevy_image = { version = "0.16.0-rc.1", default-features = false, features = [
17
17
+
"bevy_reflect",
18
18
+
] }
19
19
+
bevy_time = { version = "0.16.0-rc.1", default-features = false }
+44
src/lib.rs
reviewed
···
1
1
+
use bevy_app::{App, Plugin, PreUpdate};
2
2
+
use bevy_asset::Handle;
3
3
+
use bevy_ecs::prelude::{Commands, Component, Entity, Query, Res};
4
4
+
use bevy_image::Image;
5
5
+
use bevy_time::{Time, Timer};
6
6
+
7
7
+
pub struct StatusEffectPlugin;
8
8
+
9
9
+
impl Plugin for StatusEffectPlugin {
10
10
+
fn build(&self, app: &mut App) {
11
11
+
app.add_systems(PreUpdate, despawn_finished_lifetimes);
12
12
+
}
13
13
+
}
14
14
+
15
15
+
/// Stores the entity that is being effected by this status effect.
16
16
+
#[derive(Component)]
17
17
+
#[relationship(relationship_target = EffectedBy)]
18
18
+
pub struct Effects(pub Entity);
19
19
+
20
20
+
/// Stores all the status effects that are effecting this entity.
21
21
+
#[derive(Component)]
22
22
+
#[relationship_target(relationship = Effects, linked_spawn)]
23
23
+
pub struct EffectedBy(Vec<Entity>);
24
24
+
25
25
+
/// Despawns the entity when the timer finishes.
26
26
+
#[derive(Component)]
27
27
+
pub struct Lifetime(pub Timer);
28
28
+
29
29
+
fn despawn_finished_lifetimes(
30
30
+
mut commands: Commands,
31
31
+
time: Res<Time>,
32
32
+
mut query: Query<(Entity, &mut Lifetime)>,
33
33
+
) {
34
34
+
for (entity, mut lifetime) in &mut query {
35
35
+
lifetime.0.tick(time.delta());
36
36
+
37
37
+
if lifetime.0.finished() {
38
38
+
commands.entity(entity).despawn();
39
39
+
}
40
40
+
}
41
41
+
}
42
42
+
43
43
+
/// The icon of a status effect.
44
44
+
pub struct Icon(pub Handle<Image>);