eulumdat 0.2.2__tar.gz → 0.3.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {eulumdat-0.2.2 → eulumdat-0.3.0}/Cargo.lock +2981 -528
- {eulumdat-0.2.2 → eulumdat-0.3.0}/Cargo.toml +15 -3
- {eulumdat-0.2.2 → eulumdat-0.3.0}/PKG-INFO +79 -1
- eulumdat-0.3.0/README.md +150 -0
- eulumdat-0.3.0/crates/eulumdat/GLDF_INTEGRATION.md +331 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/bug_rating.rs +168 -0
- eulumdat-0.3.0/crates/eulumdat/src/calculations.rs +1741 -0
- eulumdat-0.3.0/crates/eulumdat/src/diagram/svg.rs +1616 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/lib.rs +4 -1
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/Cargo.toml +2 -2
- eulumdat-0.3.0/crates/eulumdat-py/README.md +150 -0
- eulumdat-0.3.0/crates/eulumdat-py/src/calculations.rs +789 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/src/lib.rs +11 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/src/types.rs +124 -3
- {eulumdat-0.2.2 → eulumdat-0.3.0}/pyproject.toml +1 -1
- eulumdat-0.2.2/README.md +0 -72
- eulumdat-0.2.2/crates/eulumdat/src/calculations.rs +0 -398
- eulumdat-0.2.2/crates/eulumdat/src/diagram/svg.rs +0 -820
- eulumdat-0.2.2/crates/eulumdat-py/README.md +0 -72
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/Cargo.toml +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/README.md +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/examples/generate_watchface.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/examples/parse_road.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/batch.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/butterfly.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/cartesian.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/color.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/heatmap.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/mod.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/polar.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/projection.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/diagram/watchface.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/error.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/eulumdat.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/ies.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/parser.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/symmetry.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/validation.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/src/writer.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat/tests/integration_test.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/src/batch.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/src/bug_rating.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/src/diagram.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/src/error.rs +0 -0
- {eulumdat-0.2.2 → eulumdat-0.3.0}/crates/eulumdat-py/src/validation.rs +0 -0
|
@@ -23,6 +23,16 @@ name = "accesskit"
|
|
|
23
23
|
version = "0.16.3"
|
|
24
24
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
25
|
checksum = "99b76d84ee70e30a4a7e39ab9018e2b17a6a09e31084176cc7c0b2dec036ba45"
|
|
26
|
+
dependencies = [
|
|
27
|
+
"enumn",
|
|
28
|
+
"serde",
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[[package]]
|
|
32
|
+
name = "accesskit"
|
|
33
|
+
version = "0.17.1"
|
|
34
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
+
checksum = "d3d3b8f9bae46a948369bc4a03e815d4ed6d616bd00de4051133a5019dc31c5a"
|
|
26
36
|
|
|
27
37
|
[[package]]
|
|
28
38
|
name = "accesskit_atspi_common"
|
|
@@ -30,8 +40,8 @@ version = "0.9.3"
|
|
|
30
40
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
41
|
checksum = "f5393c75d4666f580f4cac0a968bc97c36076bb536a129f28210dac54ee127ed"
|
|
32
42
|
dependencies = [
|
|
33
|
-
"accesskit",
|
|
34
|
-
"accesskit_consumer",
|
|
43
|
+
"accesskit 0.16.3",
|
|
44
|
+
"accesskit_consumer 0.24.3",
|
|
35
45
|
"atspi-common",
|
|
36
46
|
"serde",
|
|
37
47
|
"thiserror 1.0.69",
|
|
@@ -44,7 +54,18 @@ version = "0.24.3"
|
|
|
44
54
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
55
|
checksum = "7a12dc159d52233c43d9fe5415969433cbdd52c3d6e0df51bda7d447427b9986"
|
|
46
56
|
dependencies = [
|
|
47
|
-
"accesskit",
|
|
57
|
+
"accesskit 0.16.3",
|
|
58
|
+
"immutable-chunkmap",
|
|
59
|
+
]
|
|
60
|
+
|
|
61
|
+
[[package]]
|
|
62
|
+
name = "accesskit_consumer"
|
|
63
|
+
version = "0.26.0"
|
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
65
|
+
checksum = "f47983a1084940ba9a39c077a8c63e55c619388be5476ac04c804cfbd1e63459"
|
|
66
|
+
dependencies = [
|
|
67
|
+
"accesskit 0.17.1",
|
|
68
|
+
"hashbrown 0.15.5",
|
|
48
69
|
"immutable-chunkmap",
|
|
49
70
|
]
|
|
50
71
|
|
|
@@ -54,21 +75,35 @@ version = "0.17.4"
|
|
|
54
75
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
76
|
checksum = "bfc6c1ecd82053d127961ad80a8beaa6004fb851a3a5b96506d7a6bd462403f6"
|
|
56
77
|
dependencies = [
|
|
57
|
-
"accesskit",
|
|
58
|
-
"accesskit_consumer",
|
|
78
|
+
"accesskit 0.16.3",
|
|
79
|
+
"accesskit_consumer 0.24.3",
|
|
59
80
|
"objc2 0.5.2",
|
|
60
81
|
"objc2-app-kit 0.2.2",
|
|
61
82
|
"objc2-foundation 0.2.2",
|
|
62
83
|
"once_cell",
|
|
63
84
|
]
|
|
64
85
|
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "accesskit_macos"
|
|
88
|
+
version = "0.18.1"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "7329821f3bd1101e03a7d2e03bd339e3ac0dc64c70b4c9f9ae1949e3ba8dece1"
|
|
91
|
+
dependencies = [
|
|
92
|
+
"accesskit 0.17.1",
|
|
93
|
+
"accesskit_consumer 0.26.0",
|
|
94
|
+
"hashbrown 0.15.5",
|
|
95
|
+
"objc2 0.5.2",
|
|
96
|
+
"objc2-app-kit 0.2.2",
|
|
97
|
+
"objc2-foundation 0.2.2",
|
|
98
|
+
]
|
|
99
|
+
|
|
65
100
|
[[package]]
|
|
66
101
|
name = "accesskit_unix"
|
|
67
102
|
version = "0.12.3"
|
|
68
103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
104
|
checksum = "be7f5cf6165be10a54b2655fa2e0e12b2509f38ed6fc43e11c31fdb7ee6230bb"
|
|
70
105
|
dependencies = [
|
|
71
|
-
"accesskit",
|
|
106
|
+
"accesskit 0.16.3",
|
|
72
107
|
"accesskit_atspi_common",
|
|
73
108
|
"async-channel",
|
|
74
109
|
"async-executor",
|
|
@@ -86,8 +121,23 @@ version = "0.23.2"
|
|
|
86
121
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
122
|
checksum = "974e96c347384d9133427167fb8a58c340cb0496988dacceebdc1ed27071023b"
|
|
88
123
|
dependencies = [
|
|
89
|
-
"accesskit",
|
|
90
|
-
"accesskit_consumer",
|
|
124
|
+
"accesskit 0.16.3",
|
|
125
|
+
"accesskit_consumer 0.24.3",
|
|
126
|
+
"paste",
|
|
127
|
+
"static_assertions",
|
|
128
|
+
"windows 0.58.0",
|
|
129
|
+
"windows-core 0.58.0",
|
|
130
|
+
]
|
|
131
|
+
|
|
132
|
+
[[package]]
|
|
133
|
+
name = "accesskit_windows"
|
|
134
|
+
version = "0.24.1"
|
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
+
checksum = "24fcd5d23d70670992b823e735e859374d694a3d12bfd8dd32bd3bd8bedb5d81"
|
|
137
|
+
dependencies = [
|
|
138
|
+
"accesskit 0.17.1",
|
|
139
|
+
"accesskit_consumer 0.26.0",
|
|
140
|
+
"hashbrown 0.15.5",
|
|
91
141
|
"paste",
|
|
92
142
|
"static_assertions",
|
|
93
143
|
"windows 0.58.0",
|
|
@@ -100,10 +150,23 @@ version = "0.22.4"
|
|
|
100
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
151
|
checksum = "aea3522719f1c44564d03e9469a8e2f3a98b3a8a880bd66d0789c6b9c4a669dd"
|
|
102
152
|
dependencies = [
|
|
103
|
-
"accesskit",
|
|
104
|
-
"accesskit_macos",
|
|
153
|
+
"accesskit 0.16.3",
|
|
154
|
+
"accesskit_macos 0.17.4",
|
|
105
155
|
"accesskit_unix",
|
|
106
|
-
"accesskit_windows",
|
|
156
|
+
"accesskit_windows 0.23.2",
|
|
157
|
+
"raw-window-handle",
|
|
158
|
+
"winit",
|
|
159
|
+
]
|
|
160
|
+
|
|
161
|
+
[[package]]
|
|
162
|
+
name = "accesskit_winit"
|
|
163
|
+
version = "0.23.1"
|
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
165
|
+
checksum = "6a6a48dad5530b6deb9fc7a52cc6c3bf72cdd9eb8157ac9d32d69f2427a5e879"
|
|
166
|
+
dependencies = [
|
|
167
|
+
"accesskit 0.17.1",
|
|
168
|
+
"accesskit_macos 0.18.1",
|
|
169
|
+
"accesskit_windows 0.24.1",
|
|
107
170
|
"raw-window-handle",
|
|
108
171
|
"winit",
|
|
109
172
|
]
|
|
@@ -121,12 +184,29 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
121
184
|
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
122
185
|
dependencies = [
|
|
123
186
|
"cfg-if",
|
|
187
|
+
"const-random",
|
|
124
188
|
"getrandom 0.3.4",
|
|
125
189
|
"once_cell",
|
|
190
|
+
"serde",
|
|
126
191
|
"version_check",
|
|
127
192
|
"zerocopy",
|
|
128
193
|
]
|
|
129
194
|
|
|
195
|
+
[[package]]
|
|
196
|
+
name = "aho-corasick"
|
|
197
|
+
version = "1.1.4"
|
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
199
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
200
|
+
dependencies = [
|
|
201
|
+
"memchr",
|
|
202
|
+
]
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "allocator-api2"
|
|
206
|
+
version = "0.2.21"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
209
|
+
|
|
130
210
|
[[package]]
|
|
131
211
|
name = "android-activity"
|
|
132
212
|
version = "0.6.0"
|
|
@@ -154,6 +234,12 @@ version = "0.2.2"
|
|
|
154
234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
235
|
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|
156
236
|
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "android_log-sys"
|
|
239
|
+
version = "0.3.2"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "84521a3cf562bc62942e294181d9eef17eb38ceb8c68677bc49f144e4c3d4f8d"
|
|
242
|
+
|
|
157
243
|
[[package]]
|
|
158
244
|
name = "android_system_properties"
|
|
159
245
|
version = "0.1.5"
|
|
@@ -213,6 +299,17 @@ dependencies = [
|
|
|
213
299
|
"windows-sys 0.61.2",
|
|
214
300
|
]
|
|
215
301
|
|
|
302
|
+
[[package]]
|
|
303
|
+
name = "any_spawner"
|
|
304
|
+
version = "0.2.0"
|
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
+
checksum = "41058deaa38c9d9dd933d6d238d825227cffa668e2839b52879f6619c63eee3b"
|
|
307
|
+
dependencies = [
|
|
308
|
+
"futures",
|
|
309
|
+
"thiserror 2.0.17",
|
|
310
|
+
"wasm-bindgen-futures",
|
|
311
|
+
]
|
|
312
|
+
|
|
216
313
|
[[package]]
|
|
217
314
|
name = "anyhow"
|
|
218
315
|
version = "1.0.100"
|
|
@@ -220,10 +317,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
220
317
|
checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
|
|
221
318
|
|
|
222
319
|
[[package]]
|
|
223
|
-
name = "
|
|
224
|
-
version = "0.
|
|
320
|
+
name = "approx"
|
|
321
|
+
version = "0.4.0"
|
|
225
322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
-
checksum = "
|
|
323
|
+
checksum = "3f2a05fd1bd10b2527e20a2cd32d8873d115b8b39fe219ee25f42a8aca6ba278"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"num-traits",
|
|
326
|
+
]
|
|
227
327
|
|
|
228
328
|
[[package]]
|
|
229
329
|
name = "approx"
|
|
@@ -341,13 +441,34 @@ dependencies = [
|
|
|
341
441
|
"nom",
|
|
342
442
|
]
|
|
343
443
|
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "assert_type_match"
|
|
446
|
+
version = "0.1.1"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "f548ad2c4031f2902e3edc1f29c29e835829437de49562d8eb5dc5584d3a1043"
|
|
449
|
+
dependencies = [
|
|
450
|
+
"proc-macro2",
|
|
451
|
+
"quote",
|
|
452
|
+
"syn 2.0.111",
|
|
453
|
+
]
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "async-broadcast"
|
|
457
|
+
version = "0.5.1"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "7c48ccdbf6ca6b121e0f586cbc0e73ae440e56c67c30fa0873b4e110d9c26d2b"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"event-listener 2.5.3",
|
|
462
|
+
"futures-core",
|
|
463
|
+
]
|
|
464
|
+
|
|
344
465
|
[[package]]
|
|
345
466
|
name = "async-broadcast"
|
|
346
467
|
version = "0.7.2"
|
|
347
468
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
469
|
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
|
|
349
470
|
dependencies = [
|
|
350
|
-
"event-listener",
|
|
471
|
+
"event-listener 5.4.1",
|
|
351
472
|
"event-listener-strategy",
|
|
352
473
|
"futures-core",
|
|
353
474
|
"pin-project-lite",
|
|
@@ -414,7 +535,7 @@ version = "3.4.1"
|
|
|
414
535
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
415
536
|
checksum = "5fd03604047cee9b6ce9de9f70c6cd540a0520c813cbd49bae61f33ab80ed1dc"
|
|
416
537
|
dependencies = [
|
|
417
|
-
"event-listener",
|
|
538
|
+
"event-listener 5.4.1",
|
|
418
539
|
"event-listener-strategy",
|
|
419
540
|
"pin-project-lite",
|
|
420
541
|
]
|
|
@@ -443,7 +564,7 @@ dependencies = [
|
|
|
443
564
|
"async-task",
|
|
444
565
|
"blocking",
|
|
445
566
|
"cfg-if",
|
|
446
|
-
"event-listener",
|
|
567
|
+
"event-listener 5.4.1",
|
|
447
568
|
"futures-lite",
|
|
448
569
|
"rustix 1.1.2",
|
|
449
570
|
]
|
|
@@ -500,6 +621,16 @@ version = "1.1.2"
|
|
|
500
621
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
622
|
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
502
623
|
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "atomicow"
|
|
626
|
+
version = "1.1.0"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "f52e8890bb9844440d0c412fa74b67fd2f14e85248b6e00708059b6da9e5f8bf"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"portable-atomic",
|
|
631
|
+
"portable-atomic-util",
|
|
632
|
+
]
|
|
633
|
+
|
|
503
634
|
[[package]]
|
|
504
635
|
name = "atspi"
|
|
505
636
|
version = "0.22.0"
|
|
@@ -551,12 +682,48 @@ dependencies = [
|
|
|
551
682
|
"zvariant 4.2.0",
|
|
552
683
|
]
|
|
553
684
|
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "attribute-derive"
|
|
687
|
+
version = "0.10.5"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "05832cdddc8f2650cc2cc187cc2e952b8c133a48eb055f35211f61ee81502d77"
|
|
690
|
+
dependencies = [
|
|
691
|
+
"attribute-derive-macro",
|
|
692
|
+
"derive-where",
|
|
693
|
+
"manyhow",
|
|
694
|
+
"proc-macro2",
|
|
695
|
+
"quote",
|
|
696
|
+
"syn 2.0.111",
|
|
697
|
+
]
|
|
698
|
+
|
|
699
|
+
[[package]]
|
|
700
|
+
name = "attribute-derive-macro"
|
|
701
|
+
version = "0.10.5"
|
|
702
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
703
|
+
checksum = "0a7cdbbd4bd005c5d3e2e9c885e6fa575db4f4a3572335b974d8db853b6beb61"
|
|
704
|
+
dependencies = [
|
|
705
|
+
"collection_literals",
|
|
706
|
+
"interpolator",
|
|
707
|
+
"manyhow",
|
|
708
|
+
"proc-macro-utils",
|
|
709
|
+
"proc-macro2",
|
|
710
|
+
"quote",
|
|
711
|
+
"quote-use",
|
|
712
|
+
"syn 2.0.111",
|
|
713
|
+
]
|
|
714
|
+
|
|
554
715
|
[[package]]
|
|
555
716
|
name = "autocfg"
|
|
556
717
|
version = "1.5.0"
|
|
557
718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
719
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
559
720
|
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "base64"
|
|
723
|
+
version = "0.21.7"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
|
726
|
+
|
|
560
727
|
[[package]]
|
|
561
728
|
name = "base64"
|
|
562
729
|
version = "0.22.1"
|
|
@@ -573,139 +740,1022 @@ dependencies = [
|
|
|
573
740
|
]
|
|
574
741
|
|
|
575
742
|
[[package]]
|
|
576
|
-
name = "
|
|
577
|
-
version = "
|
|
743
|
+
name = "bevy"
|
|
744
|
+
version = "0.15.3"
|
|
578
745
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
746
|
+
checksum = "2eaad7fe854258047680c51c3cacb804468553c04241912f6254c841c67c0198"
|
|
580
747
|
dependencies = [
|
|
581
|
-
"
|
|
748
|
+
"bevy_internal",
|
|
582
749
|
]
|
|
583
750
|
|
|
584
751
|
[[package]]
|
|
585
|
-
name = "
|
|
586
|
-
version = "0.
|
|
752
|
+
name = "bevy_a11y"
|
|
753
|
+
version = "0.15.3"
|
|
587
754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
-
checksum = "
|
|
755
|
+
checksum = "245a938f754f70a380687b89f1c4dac75b62d58fae90ae969fcfb8ecd91ed879"
|
|
589
756
|
dependencies = [
|
|
590
|
-
"
|
|
757
|
+
"accesskit 0.17.1",
|
|
758
|
+
"bevy_app",
|
|
759
|
+
"bevy_derive",
|
|
760
|
+
"bevy_ecs",
|
|
761
|
+
"bevy_reflect",
|
|
591
762
|
]
|
|
592
763
|
|
|
593
764
|
[[package]]
|
|
594
|
-
name = "
|
|
595
|
-
version = "0.
|
|
765
|
+
name = "bevy_app"
|
|
766
|
+
version = "0.15.3"
|
|
596
767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
-
checksum = "
|
|
768
|
+
checksum = "a0ac033a388b8699d241499a43783a09e6a3bab2430f1297c6bd4974095efb3f"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"bevy_derive",
|
|
771
|
+
"bevy_ecs",
|
|
772
|
+
"bevy_reflect",
|
|
773
|
+
"bevy_tasks",
|
|
774
|
+
"bevy_utils",
|
|
775
|
+
"console_error_panic_hook",
|
|
776
|
+
"ctrlc",
|
|
777
|
+
"derive_more",
|
|
778
|
+
"downcast-rs",
|
|
779
|
+
"wasm-bindgen",
|
|
780
|
+
"web-sys",
|
|
781
|
+
]
|
|
598
782
|
|
|
599
783
|
[[package]]
|
|
600
|
-
name = "
|
|
601
|
-
version = "
|
|
784
|
+
name = "bevy_asset"
|
|
785
|
+
version = "0.15.3"
|
|
602
786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
603
|
-
checksum = "
|
|
787
|
+
checksum = "73fd901b3be016088c4dda2f628bda96b7cb578b9bc8ae684bbf30bec0a9483e"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"async-broadcast 0.5.1",
|
|
790
|
+
"async-fs",
|
|
791
|
+
"async-lock",
|
|
792
|
+
"atomicow",
|
|
793
|
+
"bevy_app",
|
|
794
|
+
"bevy_asset_macros",
|
|
795
|
+
"bevy_ecs",
|
|
796
|
+
"bevy_reflect",
|
|
797
|
+
"bevy_tasks",
|
|
798
|
+
"bevy_utils",
|
|
799
|
+
"bevy_window",
|
|
800
|
+
"bitflags 2.10.0",
|
|
801
|
+
"blake3",
|
|
802
|
+
"crossbeam-channel",
|
|
803
|
+
"derive_more",
|
|
804
|
+
"disqualified",
|
|
805
|
+
"downcast-rs",
|
|
806
|
+
"either",
|
|
807
|
+
"futures-io",
|
|
808
|
+
"futures-lite",
|
|
809
|
+
"js-sys",
|
|
810
|
+
"parking_lot",
|
|
811
|
+
"ron",
|
|
812
|
+
"serde",
|
|
813
|
+
"stackfuture",
|
|
814
|
+
"uuid",
|
|
815
|
+
"wasm-bindgen",
|
|
816
|
+
"wasm-bindgen-futures",
|
|
817
|
+
"web-sys",
|
|
818
|
+
]
|
|
604
819
|
|
|
605
820
|
[[package]]
|
|
606
|
-
name = "
|
|
607
|
-
version = "
|
|
821
|
+
name = "bevy_asset_macros"
|
|
822
|
+
version = "0.15.3"
|
|
608
823
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
-
checksum = "
|
|
824
|
+
checksum = "6725a785789ece8d8c73bba25fdac5e50494d959530e89565bbcea9f808b7181"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"bevy_macro_utils",
|
|
827
|
+
"proc-macro2",
|
|
828
|
+
"quote",
|
|
829
|
+
"syn 2.0.111",
|
|
830
|
+
]
|
|
610
831
|
|
|
611
832
|
[[package]]
|
|
612
|
-
name = "
|
|
613
|
-
version = "0.
|
|
833
|
+
name = "bevy_color"
|
|
834
|
+
version = "0.15.4"
|
|
614
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
-
checksum = "
|
|
836
|
+
checksum = "a87b7137ffa9844ae542043769fb98c35efbf2f8a8429ff2a73d8ef30e58baaa"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"bevy_math",
|
|
839
|
+
"bevy_reflect",
|
|
840
|
+
"bytemuck",
|
|
841
|
+
"derive_more",
|
|
842
|
+
"encase",
|
|
843
|
+
"serde",
|
|
844
|
+
"wgpu-types 23.0.0",
|
|
845
|
+
]
|
|
616
846
|
|
|
617
847
|
[[package]]
|
|
618
|
-
name = "
|
|
619
|
-
version = "0.
|
|
848
|
+
name = "bevy_core"
|
|
849
|
+
version = "0.15.3"
|
|
620
850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
-
checksum = "
|
|
851
|
+
checksum = "1e9ce8da8e4016f63c1d361b52e61aaf4348c569829c74f1a5bbedfd8d3d57a3"
|
|
622
852
|
dependencies = [
|
|
623
|
-
"
|
|
853
|
+
"bevy_app",
|
|
854
|
+
"bevy_ecs",
|
|
855
|
+
"bevy_reflect",
|
|
856
|
+
"bevy_tasks",
|
|
857
|
+
"bevy_utils",
|
|
858
|
+
"uuid",
|
|
624
859
|
]
|
|
625
860
|
|
|
626
861
|
[[package]]
|
|
627
|
-
name = "
|
|
628
|
-
version = "0.
|
|
862
|
+
name = "bevy_core_pipeline"
|
|
863
|
+
version = "0.15.3"
|
|
629
864
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "
|
|
631
|
-
dependencies = [
|
|
632
|
-
"
|
|
865
|
+
checksum = "ee0ff0f4723f30a5a6578915dbfe0129f2befaec8438dde70ac1fb363aee01f5"
|
|
866
|
+
dependencies = [
|
|
867
|
+
"bevy_app",
|
|
868
|
+
"bevy_asset",
|
|
869
|
+
"bevy_color",
|
|
870
|
+
"bevy_core",
|
|
871
|
+
"bevy_derive",
|
|
872
|
+
"bevy_ecs",
|
|
873
|
+
"bevy_image",
|
|
874
|
+
"bevy_math",
|
|
875
|
+
"bevy_reflect",
|
|
876
|
+
"bevy_render",
|
|
877
|
+
"bevy_transform",
|
|
878
|
+
"bevy_utils",
|
|
879
|
+
"bevy_window",
|
|
880
|
+
"bitflags 2.10.0",
|
|
881
|
+
"derive_more",
|
|
882
|
+
"nonmax",
|
|
883
|
+
"radsort",
|
|
884
|
+
"serde",
|
|
885
|
+
"smallvec",
|
|
633
886
|
]
|
|
634
887
|
|
|
635
888
|
[[package]]
|
|
636
|
-
name = "
|
|
637
|
-
version = "0.
|
|
889
|
+
name = "bevy_derive"
|
|
890
|
+
version = "0.15.3"
|
|
638
891
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
-
checksum = "
|
|
892
|
+
checksum = "57d94761ce947b0a2402fd949fe1e7a5b1535293130ba4cd9893be6295d4680a"
|
|
640
893
|
dependencies = [
|
|
641
|
-
"
|
|
894
|
+
"bevy_macro_utils",
|
|
895
|
+
"quote",
|
|
896
|
+
"syn 2.0.111",
|
|
642
897
|
]
|
|
643
898
|
|
|
644
899
|
[[package]]
|
|
645
|
-
name = "
|
|
646
|
-
version = "
|
|
900
|
+
name = "bevy_diagnostic"
|
|
901
|
+
version = "0.15.3"
|
|
647
902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
-
checksum = "
|
|
903
|
+
checksum = "5e83c65979f063b593917ab9b1d7328c5854dba4b6ddf1ab78156c0105831fdf"
|
|
649
904
|
dependencies = [
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
654
|
-
"
|
|
905
|
+
"bevy_app",
|
|
906
|
+
"bevy_core",
|
|
907
|
+
"bevy_ecs",
|
|
908
|
+
"bevy_tasks",
|
|
909
|
+
"bevy_time",
|
|
910
|
+
"bevy_utils",
|
|
911
|
+
"const-fnv1a-hash",
|
|
655
912
|
]
|
|
656
913
|
|
|
657
914
|
[[package]]
|
|
658
|
-
name = "
|
|
659
|
-
version = "
|
|
915
|
+
name = "bevy_ecs"
|
|
916
|
+
version = "0.15.4"
|
|
660
917
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
661
|
-
checksum = "
|
|
918
|
+
checksum = "ecb64e8f2fe95aa2f8b3e96d09acd23021257ce4a8c942f4c38dcbeaf721955c"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"arrayvec",
|
|
921
|
+
"bevy_ecs_macros",
|
|
922
|
+
"bevy_ptr",
|
|
923
|
+
"bevy_reflect",
|
|
924
|
+
"bevy_tasks",
|
|
925
|
+
"bevy_utils",
|
|
926
|
+
"bitflags 2.10.0",
|
|
927
|
+
"concurrent-queue",
|
|
928
|
+
"derive_more",
|
|
929
|
+
"disqualified",
|
|
930
|
+
"fixedbitset 0.5.7",
|
|
931
|
+
"nonmax",
|
|
932
|
+
"petgraph",
|
|
933
|
+
"serde",
|
|
934
|
+
"smallvec",
|
|
935
|
+
]
|
|
662
936
|
|
|
663
937
|
[[package]]
|
|
664
|
-
name = "
|
|
665
|
-
version = "
|
|
938
|
+
name = "bevy_ecs_macros"
|
|
939
|
+
version = "0.15.3"
|
|
666
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
-
checksum = "
|
|
941
|
+
checksum = "f453adf07712b39826bc5845e5b0887ce03204ee8359bbe6b40a9afda60564a1"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"bevy_macro_utils",
|
|
944
|
+
"proc-macro2",
|
|
945
|
+
"quote",
|
|
946
|
+
"syn 2.0.111",
|
|
947
|
+
]
|
|
668
948
|
|
|
669
949
|
[[package]]
|
|
670
|
-
name = "
|
|
671
|
-
version = "
|
|
950
|
+
name = "bevy_encase_derive"
|
|
951
|
+
version = "0.15.3"
|
|
672
952
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
673
|
-
checksum = "
|
|
953
|
+
checksum = "f37ad69d36bb9e8479a88d481ef9748f5d7ab676040531d751d3a44441dcede7"
|
|
674
954
|
dependencies = [
|
|
675
|
-
"
|
|
955
|
+
"bevy_macro_utils",
|
|
956
|
+
"encase_derive_impl",
|
|
676
957
|
]
|
|
677
958
|
|
|
678
959
|
[[package]]
|
|
679
|
-
name = "
|
|
680
|
-
version = "
|
|
960
|
+
name = "bevy_gizmos"
|
|
961
|
+
version = "0.15.3"
|
|
681
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
682
|
-
checksum = "
|
|
963
|
+
checksum = "c1614516d0922ad60e87cc39658422286ed684aaf4b3162d25051bc105eed814"
|
|
964
|
+
dependencies = [
|
|
965
|
+
"bevy_app",
|
|
966
|
+
"bevy_asset",
|
|
967
|
+
"bevy_color",
|
|
968
|
+
"bevy_core_pipeline",
|
|
969
|
+
"bevy_ecs",
|
|
970
|
+
"bevy_gizmos_macros",
|
|
971
|
+
"bevy_image",
|
|
972
|
+
"bevy_math",
|
|
973
|
+
"bevy_pbr",
|
|
974
|
+
"bevy_reflect",
|
|
975
|
+
"bevy_render",
|
|
976
|
+
"bevy_sprite",
|
|
977
|
+
"bevy_time",
|
|
978
|
+
"bevy_transform",
|
|
979
|
+
"bevy_utils",
|
|
980
|
+
"bytemuck",
|
|
981
|
+
]
|
|
982
|
+
|
|
983
|
+
[[package]]
|
|
984
|
+
name = "bevy_gizmos_macros"
|
|
985
|
+
version = "0.15.3"
|
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
+
checksum = "0edb9e0dca64e0fc9d6b1d9e6e2178396e339e3e2b9f751e2504e3ea4ddf4508"
|
|
683
988
|
dependencies = [
|
|
989
|
+
"bevy_macro_utils",
|
|
684
990
|
"proc-macro2",
|
|
685
991
|
"quote",
|
|
686
992
|
"syn 2.0.111",
|
|
687
993
|
]
|
|
688
994
|
|
|
689
995
|
[[package]]
|
|
690
|
-
name = "
|
|
691
|
-
version = "0.
|
|
692
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
-
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
694
|
-
|
|
695
|
-
[[package]]
|
|
696
|
-
name = "bytes"
|
|
697
|
-
version = "1.11.0"
|
|
996
|
+
name = "bevy_hierarchy"
|
|
997
|
+
version = "0.15.3"
|
|
698
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
-
checksum = "
|
|
999
|
+
checksum = "19ced04e04437d0a439fe4722544c2a4678c1fe3412b57ee489d817c11884045"
|
|
1000
|
+
dependencies = [
|
|
1001
|
+
"bevy_app",
|
|
1002
|
+
"bevy_core",
|
|
1003
|
+
"bevy_ecs",
|
|
1004
|
+
"bevy_reflect",
|
|
1005
|
+
"bevy_utils",
|
|
1006
|
+
"disqualified",
|
|
1007
|
+
"smallvec",
|
|
1008
|
+
]
|
|
700
1009
|
|
|
701
1010
|
[[package]]
|
|
702
|
-
name = "
|
|
703
|
-
version = "0.
|
|
1011
|
+
name = "bevy_image"
|
|
1012
|
+
version = "0.15.3"
|
|
704
1013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
-
checksum = "
|
|
1014
|
+
checksum = "4b384d1ce9c87f6151292a76233897a628c2a50b3560487c4d74472225d49826"
|
|
706
1015
|
dependencies = [
|
|
1016
|
+
"bevy_asset",
|
|
1017
|
+
"bevy_color",
|
|
1018
|
+
"bevy_math",
|
|
1019
|
+
"bevy_reflect",
|
|
1020
|
+
"bevy_utils",
|
|
707
1021
|
"bitflags 2.10.0",
|
|
708
|
-
"
|
|
1022
|
+
"bytemuck",
|
|
1023
|
+
"derive_more",
|
|
1024
|
+
"futures-lite",
|
|
1025
|
+
"image",
|
|
1026
|
+
"ktx2",
|
|
1027
|
+
"ruzstd",
|
|
1028
|
+
"serde",
|
|
1029
|
+
"wgpu 23.0.1",
|
|
1030
|
+
]
|
|
1031
|
+
|
|
1032
|
+
[[package]]
|
|
1033
|
+
name = "bevy_input"
|
|
1034
|
+
version = "0.15.3"
|
|
1035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
+
checksum = "d52589939ca09695c69d629d166c5edf1759feaaf8f2078904aae9c33d08f5c3"
|
|
1037
|
+
dependencies = [
|
|
1038
|
+
"bevy_app",
|
|
1039
|
+
"bevy_core",
|
|
1040
|
+
"bevy_ecs",
|
|
1041
|
+
"bevy_math",
|
|
1042
|
+
"bevy_reflect",
|
|
1043
|
+
"bevy_utils",
|
|
1044
|
+
"derive_more",
|
|
1045
|
+
"smol_str",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "bevy_internal"
|
|
1050
|
+
version = "0.15.3"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "f1e0c1d980d276e11558184d0627c8967ad8b70dab3e54a0f377bb53b98515b6"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"bevy_a11y",
|
|
1055
|
+
"bevy_app",
|
|
1056
|
+
"bevy_asset",
|
|
1057
|
+
"bevy_color",
|
|
1058
|
+
"bevy_core",
|
|
1059
|
+
"bevy_core_pipeline",
|
|
1060
|
+
"bevy_derive",
|
|
1061
|
+
"bevy_diagnostic",
|
|
1062
|
+
"bevy_ecs",
|
|
1063
|
+
"bevy_gizmos",
|
|
1064
|
+
"bevy_hierarchy",
|
|
1065
|
+
"bevy_image",
|
|
1066
|
+
"bevy_input",
|
|
1067
|
+
"bevy_log",
|
|
1068
|
+
"bevy_math",
|
|
1069
|
+
"bevy_pbr",
|
|
1070
|
+
"bevy_picking",
|
|
1071
|
+
"bevy_ptr",
|
|
1072
|
+
"bevy_reflect",
|
|
1073
|
+
"bevy_render",
|
|
1074
|
+
"bevy_scene",
|
|
1075
|
+
"bevy_sprite",
|
|
1076
|
+
"bevy_state",
|
|
1077
|
+
"bevy_tasks",
|
|
1078
|
+
"bevy_text",
|
|
1079
|
+
"bevy_time",
|
|
1080
|
+
"bevy_transform",
|
|
1081
|
+
"bevy_ui",
|
|
1082
|
+
"bevy_utils",
|
|
1083
|
+
"bevy_window",
|
|
1084
|
+
"bevy_winit",
|
|
1085
|
+
]
|
|
1086
|
+
|
|
1087
|
+
[[package]]
|
|
1088
|
+
name = "bevy_log"
|
|
1089
|
+
version = "0.15.3"
|
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1091
|
+
checksum = "b381a22e01f24af51536ef1eace94298dd555d06ffcf368125d16317f5f179cb"
|
|
1092
|
+
dependencies = [
|
|
1093
|
+
"android_log-sys",
|
|
1094
|
+
"bevy_app",
|
|
1095
|
+
"bevy_ecs",
|
|
1096
|
+
"bevy_utils",
|
|
1097
|
+
"tracing-log",
|
|
1098
|
+
"tracing-oslog",
|
|
1099
|
+
"tracing-subscriber",
|
|
1100
|
+
"tracing-wasm",
|
|
1101
|
+
]
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "bevy_macro_utils"
|
|
1105
|
+
version = "0.15.3"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "8bb6ded1ddc124ea214f6a2140e47a78d1fe79b0638dad39419cdeef2e1133f1"
|
|
1108
|
+
dependencies = [
|
|
1109
|
+
"proc-macro2",
|
|
1110
|
+
"quote",
|
|
1111
|
+
"syn 2.0.111",
|
|
1112
|
+
"toml_edit 0.22.27",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "bevy_math"
|
|
1117
|
+
version = "0.15.3"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "1c2650169161b64f9a93e41f13253701fdf971dc95265ed667d17bea6d2a334f"
|
|
1120
|
+
dependencies = [
|
|
1121
|
+
"bevy_reflect",
|
|
1122
|
+
"derive_more",
|
|
1123
|
+
"glam",
|
|
1124
|
+
"itertools 0.13.0",
|
|
1125
|
+
"rand 0.8.5",
|
|
1126
|
+
"rand_distr",
|
|
1127
|
+
"serde",
|
|
1128
|
+
"smallvec",
|
|
1129
|
+
]
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "bevy_mesh"
|
|
1133
|
+
version = "0.15.3"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "760f3c41b4c61a5f0d956537f454c49f79b8ed0fd0781b1a879ead8e69d95283"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"bevy_asset",
|
|
1138
|
+
"bevy_derive",
|
|
1139
|
+
"bevy_ecs",
|
|
1140
|
+
"bevy_image",
|
|
1141
|
+
"bevy_math",
|
|
1142
|
+
"bevy_mikktspace",
|
|
1143
|
+
"bevy_reflect",
|
|
1144
|
+
"bevy_transform",
|
|
1145
|
+
"bevy_utils",
|
|
1146
|
+
"bitflags 2.10.0",
|
|
1147
|
+
"bytemuck",
|
|
1148
|
+
"derive_more",
|
|
1149
|
+
"hexasphere",
|
|
1150
|
+
"serde",
|
|
1151
|
+
"wgpu 23.0.1",
|
|
1152
|
+
]
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "bevy_mikktspace"
|
|
1156
|
+
version = "0.15.3"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "226f663401069ded4352ed1472a85bb1f43e2b7305d6a50e53a4f6508168e380"
|
|
1159
|
+
dependencies = [
|
|
1160
|
+
"glam",
|
|
1161
|
+
]
|
|
1162
|
+
|
|
1163
|
+
[[package]]
|
|
1164
|
+
name = "bevy_pbr"
|
|
1165
|
+
version = "0.15.3"
|
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
+
checksum = "a4d54c840d4352dac51f2a27cf915ac99b2f93db008d8fb1be8d23b09d522acf"
|
|
1168
|
+
dependencies = [
|
|
1169
|
+
"bevy_app",
|
|
1170
|
+
"bevy_asset",
|
|
1171
|
+
"bevy_color",
|
|
1172
|
+
"bevy_core_pipeline",
|
|
1173
|
+
"bevy_derive",
|
|
1174
|
+
"bevy_ecs",
|
|
1175
|
+
"bevy_image",
|
|
1176
|
+
"bevy_math",
|
|
1177
|
+
"bevy_reflect",
|
|
1178
|
+
"bevy_render",
|
|
1179
|
+
"bevy_transform",
|
|
1180
|
+
"bevy_utils",
|
|
1181
|
+
"bevy_window",
|
|
1182
|
+
"bitflags 2.10.0",
|
|
1183
|
+
"bytemuck",
|
|
1184
|
+
"derive_more",
|
|
1185
|
+
"fixedbitset 0.5.7",
|
|
1186
|
+
"nonmax",
|
|
1187
|
+
"radsort",
|
|
1188
|
+
"smallvec",
|
|
1189
|
+
"static_assertions",
|
|
1190
|
+
]
|
|
1191
|
+
|
|
1192
|
+
[[package]]
|
|
1193
|
+
name = "bevy_picking"
|
|
1194
|
+
version = "0.15.3"
|
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1196
|
+
checksum = "2091a495c0f9c8962abb1e30f9d99696296c332b407e1f6fe1fe28aab96a8629"
|
|
1197
|
+
dependencies = [
|
|
1198
|
+
"bevy_app",
|
|
1199
|
+
"bevy_asset",
|
|
1200
|
+
"bevy_derive",
|
|
1201
|
+
"bevy_ecs",
|
|
1202
|
+
"bevy_hierarchy",
|
|
1203
|
+
"bevy_input",
|
|
1204
|
+
"bevy_math",
|
|
1205
|
+
"bevy_reflect",
|
|
1206
|
+
"bevy_render",
|
|
1207
|
+
"bevy_time",
|
|
1208
|
+
"bevy_transform",
|
|
1209
|
+
"bevy_utils",
|
|
1210
|
+
"bevy_window",
|
|
1211
|
+
"uuid",
|
|
1212
|
+
]
|
|
1213
|
+
|
|
1214
|
+
[[package]]
|
|
1215
|
+
name = "bevy_ptr"
|
|
1216
|
+
version = "0.15.3"
|
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1218
|
+
checksum = "89fe0b0b919146939481a3a7c38864face2c6d0fd2c73ab3d430dc693ecd9b11"
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "bevy_reflect"
|
|
1222
|
+
version = "0.15.3"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "3ddbca0a39e88eff2c301dc794ee9d73a53f4b08d47b2c9b5a6aac182fae6217"
|
|
1225
|
+
dependencies = [
|
|
1226
|
+
"assert_type_match",
|
|
1227
|
+
"bevy_ptr",
|
|
1228
|
+
"bevy_reflect_derive",
|
|
1229
|
+
"bevy_utils",
|
|
1230
|
+
"derive_more",
|
|
1231
|
+
"disqualified",
|
|
1232
|
+
"downcast-rs",
|
|
1233
|
+
"erased-serde",
|
|
1234
|
+
"glam",
|
|
1235
|
+
"serde",
|
|
1236
|
+
"smallvec",
|
|
1237
|
+
"smol_str",
|
|
1238
|
+
"uuid",
|
|
1239
|
+
]
|
|
1240
|
+
|
|
1241
|
+
[[package]]
|
|
1242
|
+
name = "bevy_reflect_derive"
|
|
1243
|
+
version = "0.15.3"
|
|
1244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1245
|
+
checksum = "d62affb769db17d34ad0b75ff27eca94867e2acc8ea350c5eca97d102bd98709"
|
|
1246
|
+
dependencies = [
|
|
1247
|
+
"bevy_macro_utils",
|
|
1248
|
+
"proc-macro2",
|
|
1249
|
+
"quote",
|
|
1250
|
+
"syn 2.0.111",
|
|
1251
|
+
"uuid",
|
|
1252
|
+
]
|
|
1253
|
+
|
|
1254
|
+
[[package]]
|
|
1255
|
+
name = "bevy_render"
|
|
1256
|
+
version = "0.15.3"
|
|
1257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1258
|
+
checksum = "c4aa9d7df5c2b65540093b8402aceec0a55d67b54606e57ce2969abe280b4c48"
|
|
1259
|
+
dependencies = [
|
|
1260
|
+
"async-channel",
|
|
1261
|
+
"bevy_app",
|
|
1262
|
+
"bevy_asset",
|
|
1263
|
+
"bevy_color",
|
|
1264
|
+
"bevy_core",
|
|
1265
|
+
"bevy_derive",
|
|
1266
|
+
"bevy_diagnostic",
|
|
1267
|
+
"bevy_ecs",
|
|
1268
|
+
"bevy_encase_derive",
|
|
1269
|
+
"bevy_hierarchy",
|
|
1270
|
+
"bevy_image",
|
|
1271
|
+
"bevy_math",
|
|
1272
|
+
"bevy_mesh",
|
|
1273
|
+
"bevy_reflect",
|
|
1274
|
+
"bevy_render_macros",
|
|
1275
|
+
"bevy_tasks",
|
|
1276
|
+
"bevy_time",
|
|
1277
|
+
"bevy_transform",
|
|
1278
|
+
"bevy_utils",
|
|
1279
|
+
"bevy_window",
|
|
1280
|
+
"bytemuck",
|
|
1281
|
+
"codespan-reporting",
|
|
1282
|
+
"derive_more",
|
|
1283
|
+
"downcast-rs",
|
|
1284
|
+
"encase",
|
|
1285
|
+
"futures-lite",
|
|
1286
|
+
"image",
|
|
1287
|
+
"js-sys",
|
|
1288
|
+
"ktx2",
|
|
1289
|
+
"naga 23.1.0",
|
|
1290
|
+
"naga_oil",
|
|
1291
|
+
"nonmax",
|
|
1292
|
+
"offset-allocator",
|
|
1293
|
+
"send_wrapper",
|
|
1294
|
+
"serde",
|
|
1295
|
+
"smallvec",
|
|
1296
|
+
"wasm-bindgen",
|
|
1297
|
+
"web-sys",
|
|
1298
|
+
"wgpu 23.0.1",
|
|
1299
|
+
]
|
|
1300
|
+
|
|
1301
|
+
[[package]]
|
|
1302
|
+
name = "bevy_render_macros"
|
|
1303
|
+
version = "0.15.3"
|
|
1304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1305
|
+
checksum = "3469307d1b5ca5c37b7f9269be033845357412ebad33eace46826e59da592f66"
|
|
1306
|
+
dependencies = [
|
|
1307
|
+
"bevy_macro_utils",
|
|
1308
|
+
"proc-macro2",
|
|
1309
|
+
"quote",
|
|
1310
|
+
"syn 2.0.111",
|
|
1311
|
+
]
|
|
1312
|
+
|
|
1313
|
+
[[package]]
|
|
1314
|
+
name = "bevy_scene"
|
|
1315
|
+
version = "0.15.3"
|
|
1316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1317
|
+
checksum = "bdfe819202aa97bbb206d79fef83504b34d45529810563aafc2fe02cc10e3ee4"
|
|
1318
|
+
dependencies = [
|
|
1319
|
+
"bevy_app",
|
|
1320
|
+
"bevy_asset",
|
|
1321
|
+
"bevy_derive",
|
|
1322
|
+
"bevy_ecs",
|
|
1323
|
+
"bevy_hierarchy",
|
|
1324
|
+
"bevy_reflect",
|
|
1325
|
+
"bevy_render",
|
|
1326
|
+
"bevy_transform",
|
|
1327
|
+
"bevy_utils",
|
|
1328
|
+
"derive_more",
|
|
1329
|
+
"serde",
|
|
1330
|
+
"uuid",
|
|
1331
|
+
]
|
|
1332
|
+
|
|
1333
|
+
[[package]]
|
|
1334
|
+
name = "bevy_sprite"
|
|
1335
|
+
version = "0.15.3"
|
|
1336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1337
|
+
checksum = "27411a31704117002787c9e8cc1f2f89babf5e67572508aa029366d4643f8d01"
|
|
1338
|
+
dependencies = [
|
|
1339
|
+
"bevy_app",
|
|
1340
|
+
"bevy_asset",
|
|
1341
|
+
"bevy_color",
|
|
1342
|
+
"bevy_core_pipeline",
|
|
1343
|
+
"bevy_derive",
|
|
1344
|
+
"bevy_ecs",
|
|
1345
|
+
"bevy_image",
|
|
1346
|
+
"bevy_math",
|
|
1347
|
+
"bevy_picking",
|
|
1348
|
+
"bevy_reflect",
|
|
1349
|
+
"bevy_render",
|
|
1350
|
+
"bevy_transform",
|
|
1351
|
+
"bevy_utils",
|
|
1352
|
+
"bevy_window",
|
|
1353
|
+
"bitflags 2.10.0",
|
|
1354
|
+
"bytemuck",
|
|
1355
|
+
"derive_more",
|
|
1356
|
+
"fixedbitset 0.5.7",
|
|
1357
|
+
"guillotiere",
|
|
1358
|
+
"nonmax",
|
|
1359
|
+
"radsort",
|
|
1360
|
+
"rectangle-pack",
|
|
1361
|
+
]
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "bevy_state"
|
|
1365
|
+
version = "0.15.3"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "243a72266f81452412f7a3859e5d11473952a25767dc29c8d285660330f007ba"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"bevy_app",
|
|
1370
|
+
"bevy_ecs",
|
|
1371
|
+
"bevy_hierarchy",
|
|
1372
|
+
"bevy_reflect",
|
|
1373
|
+
"bevy_state_macros",
|
|
1374
|
+
"bevy_utils",
|
|
1375
|
+
]
|
|
1376
|
+
|
|
1377
|
+
[[package]]
|
|
1378
|
+
name = "bevy_state_macros"
|
|
1379
|
+
version = "0.15.3"
|
|
1380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1381
|
+
checksum = "022eb069dfd64090fd92ba4a7f235383e49aa1c0f4320dab4999b23f67843b36"
|
|
1382
|
+
dependencies = [
|
|
1383
|
+
"bevy_macro_utils",
|
|
1384
|
+
"proc-macro2",
|
|
1385
|
+
"quote",
|
|
1386
|
+
"syn 2.0.111",
|
|
1387
|
+
]
|
|
1388
|
+
|
|
1389
|
+
[[package]]
|
|
1390
|
+
name = "bevy_tasks"
|
|
1391
|
+
version = "0.15.3"
|
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1393
|
+
checksum = "028630ddc355563bd567df1076db3515858aa26715ddf7467d2086f9b40e5ab1"
|
|
1394
|
+
dependencies = [
|
|
1395
|
+
"async-channel",
|
|
1396
|
+
"async-executor",
|
|
1397
|
+
"concurrent-queue",
|
|
1398
|
+
"futures-channel",
|
|
1399
|
+
"futures-lite",
|
|
1400
|
+
"pin-project",
|
|
1401
|
+
"wasm-bindgen-futures",
|
|
1402
|
+
]
|
|
1403
|
+
|
|
1404
|
+
[[package]]
|
|
1405
|
+
name = "bevy_text"
|
|
1406
|
+
version = "0.15.3"
|
|
1407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1408
|
+
checksum = "872b0b627cedf6d1bd97b75bc4d59c16f67afdd4f2fed8f7d808a258d6cb982e"
|
|
1409
|
+
dependencies = [
|
|
1410
|
+
"bevy_app",
|
|
1411
|
+
"bevy_asset",
|
|
1412
|
+
"bevy_color",
|
|
1413
|
+
"bevy_derive",
|
|
1414
|
+
"bevy_ecs",
|
|
1415
|
+
"bevy_hierarchy",
|
|
1416
|
+
"bevy_image",
|
|
1417
|
+
"bevy_math",
|
|
1418
|
+
"bevy_reflect",
|
|
1419
|
+
"bevy_render",
|
|
1420
|
+
"bevy_sprite",
|
|
1421
|
+
"bevy_transform",
|
|
1422
|
+
"bevy_utils",
|
|
1423
|
+
"bevy_window",
|
|
1424
|
+
"cosmic-text",
|
|
1425
|
+
"derive_more",
|
|
1426
|
+
"serde",
|
|
1427
|
+
"smallvec",
|
|
1428
|
+
"sys-locale",
|
|
1429
|
+
"unicode-bidi",
|
|
1430
|
+
]
|
|
1431
|
+
|
|
1432
|
+
[[package]]
|
|
1433
|
+
name = "bevy_time"
|
|
1434
|
+
version = "0.15.3"
|
|
1435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1436
|
+
checksum = "1b2051ec56301b994f7c182a2a6eb1490038149ad46d95eee715e1a922acdfd9"
|
|
1437
|
+
dependencies = [
|
|
1438
|
+
"bevy_app",
|
|
1439
|
+
"bevy_ecs",
|
|
1440
|
+
"bevy_reflect",
|
|
1441
|
+
"bevy_utils",
|
|
1442
|
+
"crossbeam-channel",
|
|
1443
|
+
]
|
|
1444
|
+
|
|
1445
|
+
[[package]]
|
|
1446
|
+
name = "bevy_transform"
|
|
1447
|
+
version = "0.15.3"
|
|
1448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1449
|
+
checksum = "a8109b1234b0e58931f51df12bc8895daa69298575cf92da408848f79a4ce201"
|
|
1450
|
+
dependencies = [
|
|
1451
|
+
"bevy_app",
|
|
1452
|
+
"bevy_ecs",
|
|
1453
|
+
"bevy_hierarchy",
|
|
1454
|
+
"bevy_math",
|
|
1455
|
+
"bevy_reflect",
|
|
1456
|
+
"derive_more",
|
|
1457
|
+
]
|
|
1458
|
+
|
|
1459
|
+
[[package]]
|
|
1460
|
+
name = "bevy_ui"
|
|
1461
|
+
version = "0.15.3"
|
|
1462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
+
checksum = "e534590222d044c875bf3511e5d0b3da78889bb21ad797953484ce011af77b46"
|
|
1464
|
+
dependencies = [
|
|
1465
|
+
"accesskit 0.17.1",
|
|
1466
|
+
"bevy_a11y",
|
|
1467
|
+
"bevy_app",
|
|
1468
|
+
"bevy_asset",
|
|
1469
|
+
"bevy_color",
|
|
1470
|
+
"bevy_core_pipeline",
|
|
1471
|
+
"bevy_derive",
|
|
1472
|
+
"bevy_ecs",
|
|
1473
|
+
"bevy_hierarchy",
|
|
1474
|
+
"bevy_image",
|
|
1475
|
+
"bevy_input",
|
|
1476
|
+
"bevy_math",
|
|
1477
|
+
"bevy_picking",
|
|
1478
|
+
"bevy_reflect",
|
|
1479
|
+
"bevy_render",
|
|
1480
|
+
"bevy_sprite",
|
|
1481
|
+
"bevy_text",
|
|
1482
|
+
"bevy_transform",
|
|
1483
|
+
"bevy_utils",
|
|
1484
|
+
"bevy_window",
|
|
1485
|
+
"bytemuck",
|
|
1486
|
+
"derive_more",
|
|
1487
|
+
"nonmax",
|
|
1488
|
+
"smallvec",
|
|
1489
|
+
"taffy",
|
|
1490
|
+
]
|
|
1491
|
+
|
|
1492
|
+
[[package]]
|
|
1493
|
+
name = "bevy_utils"
|
|
1494
|
+
version = "0.15.3"
|
|
1495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1496
|
+
checksum = "63c2174d43a0de99f863c98a472370047a2bfa7d1e5cec8d9d647fb500905d9d"
|
|
1497
|
+
dependencies = [
|
|
1498
|
+
"ahash",
|
|
1499
|
+
"bevy_utils_proc_macros",
|
|
1500
|
+
"getrandom 0.2.16",
|
|
1501
|
+
"hashbrown 0.14.5",
|
|
1502
|
+
"thread_local",
|
|
1503
|
+
"tracing",
|
|
1504
|
+
"web-time",
|
|
1505
|
+
]
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "bevy_utils_proc_macros"
|
|
1509
|
+
version = "0.15.3"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "94847541f6dd2e28f54a9c2b0e857da5f2631e2201ebc25ce68781cdcb721391"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"proc-macro2",
|
|
1514
|
+
"quote",
|
|
1515
|
+
"syn 2.0.111",
|
|
1516
|
+
]
|
|
1517
|
+
|
|
1518
|
+
[[package]]
|
|
1519
|
+
name = "bevy_window"
|
|
1520
|
+
version = "0.15.3"
|
|
1521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1522
|
+
checksum = "c1e1e7c6713c04404a3e7cede48a9c47b76c30efc764664ec1246147f6fb9878"
|
|
1523
|
+
dependencies = [
|
|
1524
|
+
"android-activity",
|
|
1525
|
+
"bevy_a11y",
|
|
1526
|
+
"bevy_app",
|
|
1527
|
+
"bevy_ecs",
|
|
1528
|
+
"bevy_input",
|
|
1529
|
+
"bevy_math",
|
|
1530
|
+
"bevy_reflect",
|
|
1531
|
+
"bevy_utils",
|
|
1532
|
+
"raw-window-handle",
|
|
1533
|
+
"smol_str",
|
|
1534
|
+
]
|
|
1535
|
+
|
|
1536
|
+
[[package]]
|
|
1537
|
+
name = "bevy_winit"
|
|
1538
|
+
version = "0.15.3"
|
|
1539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1540
|
+
checksum = "e158a73d6d896b1600a61bc115017707ecb467d1a5ad49231c5e58294f6f6e13"
|
|
1541
|
+
dependencies = [
|
|
1542
|
+
"accesskit 0.17.1",
|
|
1543
|
+
"accesskit_winit 0.23.1",
|
|
1544
|
+
"approx 0.5.1",
|
|
1545
|
+
"bevy_a11y",
|
|
1546
|
+
"bevy_app",
|
|
1547
|
+
"bevy_derive",
|
|
1548
|
+
"bevy_ecs",
|
|
1549
|
+
"bevy_hierarchy",
|
|
1550
|
+
"bevy_input",
|
|
1551
|
+
"bevy_log",
|
|
1552
|
+
"bevy_math",
|
|
1553
|
+
"bevy_reflect",
|
|
1554
|
+
"bevy_tasks",
|
|
1555
|
+
"bevy_utils",
|
|
1556
|
+
"bevy_window",
|
|
1557
|
+
"cfg-if",
|
|
1558
|
+
"crossbeam-channel",
|
|
1559
|
+
"raw-window-handle",
|
|
1560
|
+
"wasm-bindgen",
|
|
1561
|
+
"web-sys",
|
|
1562
|
+
"winit",
|
|
1563
|
+
]
|
|
1564
|
+
|
|
1565
|
+
[[package]]
|
|
1566
|
+
name = "bincode"
|
|
1567
|
+
version = "1.3.3"
|
|
1568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1569
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
1570
|
+
dependencies = [
|
|
1571
|
+
"serde",
|
|
1572
|
+
]
|
|
1573
|
+
|
|
1574
|
+
[[package]]
|
|
1575
|
+
name = "bindgen"
|
|
1576
|
+
version = "0.70.1"
|
|
1577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1578
|
+
checksum = "f49d8fed880d473ea71efb9bf597651e77201bdd4893efe54c9e5d65ae04ce6f"
|
|
1579
|
+
dependencies = [
|
|
1580
|
+
"bitflags 2.10.0",
|
|
1581
|
+
"cexpr",
|
|
1582
|
+
"clang-sys",
|
|
1583
|
+
"itertools 0.13.0",
|
|
1584
|
+
"log",
|
|
1585
|
+
"prettyplease",
|
|
1586
|
+
"proc-macro2",
|
|
1587
|
+
"quote",
|
|
1588
|
+
"regex",
|
|
1589
|
+
"rustc-hash 1.1.0",
|
|
1590
|
+
"shlex",
|
|
1591
|
+
"syn 2.0.111",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "bit-set"
|
|
1596
|
+
version = "0.5.3"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
|
1599
|
+
dependencies = [
|
|
1600
|
+
"bit-vec 0.6.3",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "bit-set"
|
|
1605
|
+
version = "0.6.0"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "f0481a0e032742109b1133a095184ee93d88f3dc9e0d28a5d033dc77a073f44f"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"bit-vec 0.7.0",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "bit-set"
|
|
1614
|
+
version = "0.8.0"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"bit-vec 0.8.0",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "bit-vec"
|
|
1623
|
+
version = "0.6.3"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "bit-vec"
|
|
1629
|
+
version = "0.7.0"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "d2c54ff287cfc0a34f38a6b832ea1bd8e448a330b3e40a50859e6488bee07f22"
|
|
1632
|
+
|
|
1633
|
+
[[package]]
|
|
1634
|
+
name = "bit-vec"
|
|
1635
|
+
version = "0.8.0"
|
|
1636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1637
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
1638
|
+
|
|
1639
|
+
[[package]]
|
|
1640
|
+
name = "bitflags"
|
|
1641
|
+
version = "1.3.2"
|
|
1642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
1644
|
+
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "bitflags"
|
|
1647
|
+
version = "2.10.0"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"serde_core",
|
|
1652
|
+
]
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "blake3"
|
|
1656
|
+
version = "1.8.2"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "3888aaa89e4b2a40fca9848e400f6a658a5a3978de7be858e209cafa8be9a4a0"
|
|
1659
|
+
dependencies = [
|
|
1660
|
+
"arrayref",
|
|
1661
|
+
"arrayvec",
|
|
1662
|
+
"cc",
|
|
1663
|
+
"cfg-if",
|
|
1664
|
+
"constant_time_eq",
|
|
1665
|
+
]
|
|
1666
|
+
|
|
1667
|
+
[[package]]
|
|
1668
|
+
name = "block"
|
|
1669
|
+
version = "0.1.6"
|
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1671
|
+
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
1672
|
+
|
|
1673
|
+
[[package]]
|
|
1674
|
+
name = "block-buffer"
|
|
1675
|
+
version = "0.10.4"
|
|
1676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1677
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
1678
|
+
dependencies = [
|
|
1679
|
+
"generic-array",
|
|
1680
|
+
]
|
|
1681
|
+
|
|
1682
|
+
[[package]]
|
|
1683
|
+
name = "block2"
|
|
1684
|
+
version = "0.5.1"
|
|
1685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1686
|
+
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
|
|
1687
|
+
dependencies = [
|
|
1688
|
+
"objc2 0.5.2",
|
|
1689
|
+
]
|
|
1690
|
+
|
|
1691
|
+
[[package]]
|
|
1692
|
+
name = "block2"
|
|
1693
|
+
version = "0.6.2"
|
|
1694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1695
|
+
checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
|
|
1696
|
+
dependencies = [
|
|
1697
|
+
"objc2 0.6.3",
|
|
1698
|
+
]
|
|
1699
|
+
|
|
1700
|
+
[[package]]
|
|
1701
|
+
name = "blocking"
|
|
1702
|
+
version = "1.6.2"
|
|
1703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1704
|
+
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
1705
|
+
dependencies = [
|
|
1706
|
+
"async-channel",
|
|
1707
|
+
"async-task",
|
|
1708
|
+
"futures-io",
|
|
1709
|
+
"futures-lite",
|
|
1710
|
+
"piper",
|
|
1711
|
+
]
|
|
1712
|
+
|
|
1713
|
+
[[package]]
|
|
1714
|
+
name = "bumpalo"
|
|
1715
|
+
version = "3.19.0"
|
|
1716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1717
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
1718
|
+
|
|
1719
|
+
[[package]]
|
|
1720
|
+
name = "bytemuck"
|
|
1721
|
+
version = "1.24.0"
|
|
1722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1723
|
+
checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
|
|
1724
|
+
dependencies = [
|
|
1725
|
+
"bytemuck_derive",
|
|
1726
|
+
]
|
|
1727
|
+
|
|
1728
|
+
[[package]]
|
|
1729
|
+
name = "bytemuck_derive"
|
|
1730
|
+
version = "1.10.2"
|
|
1731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1732
|
+
checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
|
|
1733
|
+
dependencies = [
|
|
1734
|
+
"proc-macro2",
|
|
1735
|
+
"quote",
|
|
1736
|
+
"syn 2.0.111",
|
|
1737
|
+
]
|
|
1738
|
+
|
|
1739
|
+
[[package]]
|
|
1740
|
+
name = "byteorder-lite"
|
|
1741
|
+
version = "0.1.0"
|
|
1742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1743
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
1744
|
+
|
|
1745
|
+
[[package]]
|
|
1746
|
+
name = "bytes"
|
|
1747
|
+
version = "1.11.0"
|
|
1748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1749
|
+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
|
|
1750
|
+
|
|
1751
|
+
[[package]]
|
|
1752
|
+
name = "calloop"
|
|
1753
|
+
version = "0.13.0"
|
|
1754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1755
|
+
checksum = "b99da2f8558ca23c71f4fd15dc57c906239752dd27ff3c00a1d56b685b7cbfec"
|
|
1756
|
+
dependencies = [
|
|
1757
|
+
"bitflags 2.10.0",
|
|
1758
|
+
"log",
|
|
709
1759
|
"polling",
|
|
710
1760
|
"rustix 0.38.44",
|
|
711
1761
|
"slab",
|
|
@@ -805,6 +1855,15 @@ version = "1.1.0"
|
|
|
805
1855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
1856
|
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
807
1857
|
|
|
1858
|
+
[[package]]
|
|
1859
|
+
name = "cexpr"
|
|
1860
|
+
version = "0.6.0"
|
|
1861
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1862
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
1863
|
+
dependencies = [
|
|
1864
|
+
"nom",
|
|
1865
|
+
]
|
|
1866
|
+
|
|
808
1867
|
[[package]]
|
|
809
1868
|
name = "cfg-if"
|
|
810
1869
|
version = "1.0.4"
|
|
@@ -832,6 +1891,27 @@ dependencies = [
|
|
|
832
1891
|
"libc",
|
|
833
1892
|
]
|
|
834
1893
|
|
|
1894
|
+
[[package]]
|
|
1895
|
+
name = "cgmath"
|
|
1896
|
+
version = "0.18.0"
|
|
1897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1898
|
+
checksum = "1a98d30140e3296250832bbaaff83b27dcd6fa3cc70fb6f1f3e5c9c0023b5317"
|
|
1899
|
+
dependencies = [
|
|
1900
|
+
"approx 0.4.0",
|
|
1901
|
+
"num-traits",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "clang-sys"
|
|
1906
|
+
version = "1.8.1"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"glob",
|
|
1911
|
+
"libc",
|
|
1912
|
+
"libloading",
|
|
1913
|
+
]
|
|
1914
|
+
|
|
835
1915
|
[[package]]
|
|
836
1916
|
name = "clap"
|
|
837
1917
|
version = "4.5.53"
|
|
@@ -881,6 +1961,17 @@ dependencies = [
|
|
|
881
1961
|
"error-code",
|
|
882
1962
|
]
|
|
883
1963
|
|
|
1964
|
+
[[package]]
|
|
1965
|
+
name = "codee"
|
|
1966
|
+
version = "0.3.5"
|
|
1967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1968
|
+
checksum = "a9dbbdc4b4d349732bc6690de10a9de952bd39ba6a065c586e26600b6b0b91f5"
|
|
1969
|
+
dependencies = [
|
|
1970
|
+
"serde",
|
|
1971
|
+
"serde_json",
|
|
1972
|
+
"thiserror 2.0.17",
|
|
1973
|
+
]
|
|
1974
|
+
|
|
884
1975
|
[[package]]
|
|
885
1976
|
name = "codespan-reporting"
|
|
886
1977
|
version = "0.11.1"
|
|
@@ -891,6 +1982,12 @@ dependencies = [
|
|
|
891
1982
|
"unicode-width",
|
|
892
1983
|
]
|
|
893
1984
|
|
|
1985
|
+
[[package]]
|
|
1986
|
+
name = "collection_literals"
|
|
1987
|
+
version = "1.0.3"
|
|
1988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
+
checksum = "2550f75b8cfac212855f6b1885455df8eaee8fe8e246b647d69146142e016084"
|
|
1990
|
+
|
|
894
1991
|
[[package]]
|
|
895
1992
|
name = "color_quant"
|
|
896
1993
|
version = "1.1.0"
|
|
@@ -953,6 +2050,19 @@ dependencies = [
|
|
|
953
2050
|
"crossbeam-utils",
|
|
954
2051
|
]
|
|
955
2052
|
|
|
2053
|
+
[[package]]
|
|
2054
|
+
name = "config"
|
|
2055
|
+
version = "0.15.19"
|
|
2056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2057
|
+
checksum = "b30fa8254caad766fc03cb0ccae691e14bf3bd72bfff27f72802ce729551b3d6"
|
|
2058
|
+
dependencies = [
|
|
2059
|
+
"convert_case 0.6.0",
|
|
2060
|
+
"pathdiff",
|
|
2061
|
+
"serde_core",
|
|
2062
|
+
"toml 0.9.8",
|
|
2063
|
+
"winnow 0.7.14",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
956
2066
|
[[package]]
|
|
957
2067
|
name = "console_error_panic_hook"
|
|
958
2068
|
version = "0.1.7"
|
|
@@ -963,6 +2073,106 @@ dependencies = [
|
|
|
963
2073
|
"wasm-bindgen",
|
|
964
2074
|
]
|
|
965
2075
|
|
|
2076
|
+
[[package]]
|
|
2077
|
+
name = "const-fnv1a-hash"
|
|
2078
|
+
version = "1.1.0"
|
|
2079
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
+
checksum = "32b13ea120a812beba79e34316b3942a857c86ec1593cb34f27bb28272ce2cca"
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "const-random"
|
|
2084
|
+
version = "0.1.18"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
2087
|
+
dependencies = [
|
|
2088
|
+
"const-random-macro",
|
|
2089
|
+
]
|
|
2090
|
+
|
|
2091
|
+
[[package]]
|
|
2092
|
+
name = "const-random-macro"
|
|
2093
|
+
version = "0.1.16"
|
|
2094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
2096
|
+
dependencies = [
|
|
2097
|
+
"getrandom 0.2.16",
|
|
2098
|
+
"once_cell",
|
|
2099
|
+
"tiny-keccak",
|
|
2100
|
+
]
|
|
2101
|
+
|
|
2102
|
+
[[package]]
|
|
2103
|
+
name = "const_format"
|
|
2104
|
+
version = "0.2.35"
|
|
2105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2106
|
+
checksum = "7faa7469a93a566e9ccc1c73fe783b4a65c274c5ace346038dca9c39fe0030ad"
|
|
2107
|
+
dependencies = [
|
|
2108
|
+
"const_format_proc_macros",
|
|
2109
|
+
]
|
|
2110
|
+
|
|
2111
|
+
[[package]]
|
|
2112
|
+
name = "const_format_proc_macros"
|
|
2113
|
+
version = "0.2.34"
|
|
2114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2115
|
+
checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
|
|
2116
|
+
dependencies = [
|
|
2117
|
+
"proc-macro2",
|
|
2118
|
+
"quote",
|
|
2119
|
+
"unicode-xid",
|
|
2120
|
+
]
|
|
2121
|
+
|
|
2122
|
+
[[package]]
|
|
2123
|
+
name = "const_panic"
|
|
2124
|
+
version = "0.2.15"
|
|
2125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2126
|
+
checksum = "e262cdaac42494e3ae34c43969f9cdeb7da178bdb4b66fa6a1ea2edb4c8ae652"
|
|
2127
|
+
dependencies = [
|
|
2128
|
+
"typewit",
|
|
2129
|
+
]
|
|
2130
|
+
|
|
2131
|
+
[[package]]
|
|
2132
|
+
name = "const_soft_float"
|
|
2133
|
+
version = "0.1.4"
|
|
2134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2135
|
+
checksum = "87ca1caa64ef4ed453e68bb3db612e51cf1b2f5b871337f0fcab1c8f87cc3dff"
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "const_str_slice_concat"
|
|
2139
|
+
version = "0.1.0"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "f67855af358fcb20fac58f9d714c94e2b228fe5694c1c9b4ead4a366343eda1b"
|
|
2142
|
+
|
|
2143
|
+
[[package]]
|
|
2144
|
+
name = "constant_time_eq"
|
|
2145
|
+
version = "0.3.1"
|
|
2146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2147
|
+
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
|
|
2148
|
+
|
|
2149
|
+
[[package]]
|
|
2150
|
+
name = "constgebra"
|
|
2151
|
+
version = "0.1.4"
|
|
2152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2153
|
+
checksum = "e1aaf9b65849a68662ac6c0810c8893a765c960b907dd7cfab9c4a50bf764fbc"
|
|
2154
|
+
dependencies = [
|
|
2155
|
+
"const_soft_float",
|
|
2156
|
+
]
|
|
2157
|
+
|
|
2158
|
+
[[package]]
|
|
2159
|
+
name = "convert_case"
|
|
2160
|
+
version = "0.6.0"
|
|
2161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2162
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
2163
|
+
dependencies = [
|
|
2164
|
+
"unicode-segmentation",
|
|
2165
|
+
]
|
|
2166
|
+
|
|
2167
|
+
[[package]]
|
|
2168
|
+
name = "convert_case"
|
|
2169
|
+
version = "0.7.1"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
|
|
2172
|
+
dependencies = [
|
|
2173
|
+
"unicode-segmentation",
|
|
2174
|
+
]
|
|
2175
|
+
|
|
966
2176
|
[[package]]
|
|
967
2177
|
name = "core-foundation"
|
|
968
2178
|
version = "0.9.4"
|
|
@@ -1022,6 +2232,29 @@ dependencies = [
|
|
|
1022
2232
|
"libm",
|
|
1023
2233
|
]
|
|
1024
2234
|
|
|
2235
|
+
[[package]]
|
|
2236
|
+
name = "cosmic-text"
|
|
2237
|
+
version = "0.12.1"
|
|
2238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2239
|
+
checksum = "59fd57d82eb4bfe7ffa9b1cec0c05e2fd378155b47f255a67983cb4afe0e80c2"
|
|
2240
|
+
dependencies = [
|
|
2241
|
+
"bitflags 2.10.0",
|
|
2242
|
+
"fontdb 0.16.2",
|
|
2243
|
+
"log",
|
|
2244
|
+
"rangemap",
|
|
2245
|
+
"rayon",
|
|
2246
|
+
"rustc-hash 1.1.0",
|
|
2247
|
+
"rustybuzz 0.14.1",
|
|
2248
|
+
"self_cell",
|
|
2249
|
+
"swash",
|
|
2250
|
+
"sys-locale",
|
|
2251
|
+
"ttf-parser 0.21.1",
|
|
2252
|
+
"unicode-bidi",
|
|
2253
|
+
"unicode-linebreak",
|
|
2254
|
+
"unicode-script",
|
|
2255
|
+
"unicode-segmentation",
|
|
2256
|
+
]
|
|
2257
|
+
|
|
1025
2258
|
[[package]]
|
|
1026
2259
|
name = "cpufeatures"
|
|
1027
2260
|
version = "0.2.17"
|
|
@@ -1040,12 +2273,46 @@ dependencies = [
|
|
|
1040
2273
|
"cfg-if",
|
|
1041
2274
|
]
|
|
1042
2275
|
|
|
2276
|
+
[[package]]
|
|
2277
|
+
name = "crossbeam-channel"
|
|
2278
|
+
version = "0.5.15"
|
|
2279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2280
|
+
checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
|
|
2281
|
+
dependencies = [
|
|
2282
|
+
"crossbeam-utils",
|
|
2283
|
+
]
|
|
2284
|
+
|
|
2285
|
+
[[package]]
|
|
2286
|
+
name = "crossbeam-deque"
|
|
2287
|
+
version = "0.8.6"
|
|
2288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2289
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
2290
|
+
dependencies = [
|
|
2291
|
+
"crossbeam-epoch",
|
|
2292
|
+
"crossbeam-utils",
|
|
2293
|
+
]
|
|
2294
|
+
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "crossbeam-epoch"
|
|
2297
|
+
version = "0.9.18"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
2300
|
+
dependencies = [
|
|
2301
|
+
"crossbeam-utils",
|
|
2302
|
+
]
|
|
2303
|
+
|
|
1043
2304
|
[[package]]
|
|
1044
2305
|
name = "crossbeam-utils"
|
|
1045
2306
|
version = "0.8.21"
|
|
1046
2307
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1047
2308
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
1048
2309
|
|
|
2310
|
+
[[package]]
|
|
2311
|
+
name = "crunchy"
|
|
2312
|
+
version = "0.2.4"
|
|
2313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
2315
|
+
|
|
1049
2316
|
[[package]]
|
|
1050
2317
|
name = "crypto-common"
|
|
1051
2318
|
version = "0.1.7"
|
|
@@ -1056,18 +2323,81 @@ dependencies = [
|
|
|
1056
2323
|
"typenum",
|
|
1057
2324
|
]
|
|
1058
2325
|
|
|
2326
|
+
[[package]]
|
|
2327
|
+
name = "ctrlc"
|
|
2328
|
+
version = "3.5.1"
|
|
2329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2330
|
+
checksum = "73736a89c4aff73035ba2ed2e565061954da00d4970fc9ac25dcc85a2a20d790"
|
|
2331
|
+
dependencies = [
|
|
2332
|
+
"dispatch2",
|
|
2333
|
+
"nix 0.30.1",
|
|
2334
|
+
"windows-sys 0.61.2",
|
|
2335
|
+
]
|
|
2336
|
+
|
|
1059
2337
|
[[package]]
|
|
1060
2338
|
name = "cursor-icon"
|
|
1061
2339
|
version = "1.2.0"
|
|
1062
2340
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
2341
|
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
|
1064
2342
|
|
|
2343
|
+
[[package]]
|
|
2344
|
+
name = "dashmap"
|
|
2345
|
+
version = "6.1.0"
|
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2347
|
+
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
|
|
2348
|
+
dependencies = [
|
|
2349
|
+
"cfg-if",
|
|
2350
|
+
"crossbeam-utils",
|
|
2351
|
+
"hashbrown 0.14.5",
|
|
2352
|
+
"lock_api",
|
|
2353
|
+
"once_cell",
|
|
2354
|
+
"parking_lot_core",
|
|
2355
|
+
]
|
|
2356
|
+
|
|
2357
|
+
[[package]]
|
|
2358
|
+
name = "data-encoding"
|
|
2359
|
+
version = "2.9.0"
|
|
2360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2361
|
+
checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
|
|
2362
|
+
|
|
1065
2363
|
[[package]]
|
|
1066
2364
|
name = "data-url"
|
|
1067
2365
|
version = "0.3.2"
|
|
1068
2366
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
2367
|
checksum = "be1e0bca6c3637f992fc1cc7cbc52a78c1ef6db076dbf1059c4323d6a2048376"
|
|
1070
2368
|
|
|
2369
|
+
[[package]]
|
|
2370
|
+
name = "derive-where"
|
|
2371
|
+
version = "1.6.0"
|
|
2372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2373
|
+
checksum = "ef941ded77d15ca19b40374869ac6000af1c9f2a4c0f3d4c70926287e6364a8f"
|
|
2374
|
+
dependencies = [
|
|
2375
|
+
"proc-macro2",
|
|
2376
|
+
"quote",
|
|
2377
|
+
"syn 2.0.111",
|
|
2378
|
+
]
|
|
2379
|
+
|
|
2380
|
+
[[package]]
|
|
2381
|
+
name = "derive_more"
|
|
2382
|
+
version = "1.0.0"
|
|
2383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
+
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
|
|
2385
|
+
dependencies = [
|
|
2386
|
+
"derive_more-impl",
|
|
2387
|
+
]
|
|
2388
|
+
|
|
2389
|
+
[[package]]
|
|
2390
|
+
name = "derive_more-impl"
|
|
2391
|
+
version = "1.0.0"
|
|
2392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2393
|
+
checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
|
|
2394
|
+
dependencies = [
|
|
2395
|
+
"proc-macro2",
|
|
2396
|
+
"quote",
|
|
2397
|
+
"syn 2.0.111",
|
|
2398
|
+
"unicode-xid",
|
|
2399
|
+
]
|
|
2400
|
+
|
|
1071
2401
|
[[package]]
|
|
1072
2402
|
name = "digest"
|
|
1073
2403
|
version = "0.10.7"
|
|
@@ -1107,6 +2437,12 @@ dependencies = [
|
|
|
1107
2437
|
"syn 2.0.111",
|
|
1108
2438
|
]
|
|
1109
2439
|
|
|
2440
|
+
[[package]]
|
|
2441
|
+
name = "disqualified"
|
|
2442
|
+
version = "1.0.0"
|
|
2443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2444
|
+
checksum = "c9c272297e804878a2a4b707cfcfc6d2328b5bb936944613b4fdf2b9269afdfd"
|
|
2445
|
+
|
|
1110
2446
|
[[package]]
|
|
1111
2447
|
name = "dlib"
|
|
1112
2448
|
version = "0.5.2"
|
|
@@ -1137,6 +2473,18 @@ version = "0.1.2"
|
|
|
1137
2473
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
2474
|
checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
1139
2475
|
|
|
2476
|
+
[[package]]
|
|
2477
|
+
name = "drain_filter_polyfill"
|
|
2478
|
+
version = "0.1.3"
|
|
2479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
+
checksum = "669a445ee724c5c69b1b06fe0b63e70a1c84bc9bb7d9696cd4f4e3ec45050408"
|
|
2481
|
+
|
|
2482
|
+
[[package]]
|
|
2483
|
+
name = "dyn-clone"
|
|
2484
|
+
version = "1.0.20"
|
|
2485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2486
|
+
checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
|
|
2487
|
+
|
|
1140
2488
|
[[package]]
|
|
1141
2489
|
name = "ecolor"
|
|
1142
2490
|
version = "0.29.1"
|
|
@@ -1145,6 +2493,7 @@ checksum = "775cfde491852059e386c4e1deb4aef381c617dc364184c6f6afee99b87c402b"
|
|
|
1145
2493
|
dependencies = [
|
|
1146
2494
|
"bytemuck",
|
|
1147
2495
|
"emath",
|
|
2496
|
+
"serde",
|
|
1148
2497
|
]
|
|
1149
2498
|
|
|
1150
2499
|
[[package]]
|
|
@@ -1188,12 +2537,14 @@ version = "0.29.1"
|
|
|
1188
2537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1189
2538
|
checksum = "53eafabcce0cb2325a59a98736efe0bf060585b437763f8c476957fb274bb974"
|
|
1190
2539
|
dependencies = [
|
|
1191
|
-
"accesskit",
|
|
2540
|
+
"accesskit 0.16.3",
|
|
1192
2541
|
"ahash",
|
|
1193
2542
|
"emath",
|
|
1194
2543
|
"epaint",
|
|
1195
2544
|
"log",
|
|
1196
2545
|
"nohash-hasher",
|
|
2546
|
+
"ron",
|
|
2547
|
+
"serde",
|
|
1197
2548
|
]
|
|
1198
2549
|
|
|
1199
2550
|
[[package]]
|
|
@@ -1211,7 +2562,7 @@ dependencies = [
|
|
|
1211
2562
|
"thiserror 1.0.69",
|
|
1212
2563
|
"type-map",
|
|
1213
2564
|
"web-time",
|
|
1214
|
-
"wgpu",
|
|
2565
|
+
"wgpu 22.1.0",
|
|
1215
2566
|
"winit",
|
|
1216
2567
|
]
|
|
1217
2568
|
|
|
@@ -1221,7 +2572,7 @@ version = "0.29.1"
|
|
|
1221
2572
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1222
2573
|
checksum = "0a9c430f4f816340e8e8c1b20eec274186b1be6bc4c7dfc467ed50d57abc36c6"
|
|
1223
2574
|
dependencies = [
|
|
1224
|
-
"accesskit_winit",
|
|
2575
|
+
"accesskit_winit 0.22.4",
|
|
1225
2576
|
"ahash",
|
|
1226
2577
|
"arboard",
|
|
1227
2578
|
"egui",
|
|
@@ -1264,6 +2615,22 @@ dependencies = [
|
|
|
1264
2615
|
"winit",
|
|
1265
2616
|
]
|
|
1266
2617
|
|
|
2618
|
+
[[package]]
|
|
2619
|
+
name = "either"
|
|
2620
|
+
version = "1.15.0"
|
|
2621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2622
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "either_of"
|
|
2626
|
+
version = "0.1.6"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "216d23e0ec69759a17f05e1c553f3a6870e5ec73420fbb07807a6f34d5d1d5a4"
|
|
2629
|
+
dependencies = [
|
|
2630
|
+
"paste",
|
|
2631
|
+
"pin-project-lite",
|
|
2632
|
+
]
|
|
2633
|
+
|
|
1267
2634
|
[[package]]
|
|
1268
2635
|
name = "emath"
|
|
1269
2636
|
version = "0.29.1"
|
|
@@ -1271,6 +2638,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1271
2638
|
checksum = "b1fe0049ce51d0fb414d029e668dd72eb30bc2b739bf34296ed97bd33df544f3"
|
|
1272
2639
|
dependencies = [
|
|
1273
2640
|
"bytemuck",
|
|
2641
|
+
"serde",
|
|
1274
2642
|
]
|
|
1275
2643
|
|
|
1276
2644
|
[[package]]
|
|
@@ -1287,6 +2655,38 @@ dependencies = [
|
|
|
1287
2655
|
"winreg",
|
|
1288
2656
|
]
|
|
1289
2657
|
|
|
2658
|
+
[[package]]
|
|
2659
|
+
name = "encase"
|
|
2660
|
+
version = "0.10.0"
|
|
2661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2662
|
+
checksum = "b0a05902cf601ed11d564128448097b98ebe3c6574bd7b6a653a3d56d54aa020"
|
|
2663
|
+
dependencies = [
|
|
2664
|
+
"const_panic",
|
|
2665
|
+
"encase_derive",
|
|
2666
|
+
"glam",
|
|
2667
|
+
"thiserror 1.0.69",
|
|
2668
|
+
]
|
|
2669
|
+
|
|
2670
|
+
[[package]]
|
|
2671
|
+
name = "encase_derive"
|
|
2672
|
+
version = "0.10.0"
|
|
2673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2674
|
+
checksum = "181d475b694e2dd56ae919ce7699d344d1fd259292d590c723a50d1189a2ea85"
|
|
2675
|
+
dependencies = [
|
|
2676
|
+
"encase_derive_impl",
|
|
2677
|
+
]
|
|
2678
|
+
|
|
2679
|
+
[[package]]
|
|
2680
|
+
name = "encase_derive_impl"
|
|
2681
|
+
version = "0.10.0"
|
|
2682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
+
checksum = "f97b51c5cc57ef7c5f7a0c57c250251c49ee4c28f819f87ac32f4aceabc36792"
|
|
2684
|
+
dependencies = [
|
|
2685
|
+
"proc-macro2",
|
|
2686
|
+
"quote",
|
|
2687
|
+
"syn 2.0.111",
|
|
2688
|
+
]
|
|
2689
|
+
|
|
1290
2690
|
[[package]]
|
|
1291
2691
|
name = "encoding_rs"
|
|
1292
2692
|
version = "0.8.35"
|
|
@@ -1334,10 +2734,21 @@ dependencies = [
|
|
|
1334
2734
|
]
|
|
1335
2735
|
|
|
1336
2736
|
[[package]]
|
|
1337
|
-
name = "enumflags2_derive"
|
|
1338
|
-
version = "0.7.12"
|
|
2737
|
+
name = "enumflags2_derive"
|
|
2738
|
+
version = "0.7.12"
|
|
2739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2740
|
+
checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
|
|
2741
|
+
dependencies = [
|
|
2742
|
+
"proc-macro2",
|
|
2743
|
+
"quote",
|
|
2744
|
+
"syn 2.0.111",
|
|
2745
|
+
]
|
|
2746
|
+
|
|
2747
|
+
[[package]]
|
|
2748
|
+
name = "enumn"
|
|
2749
|
+
version = "0.1.14"
|
|
1339
2750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
-
checksum = "
|
|
2751
|
+
checksum = "2f9ed6b3789237c8a0c1c505af1c7eb2c560df6186f01b098c3a1064ea532f38"
|
|
1341
2752
|
dependencies = [
|
|
1342
2753
|
"proc-macro2",
|
|
1343
2754
|
"quote",
|
|
@@ -1359,6 +2770,7 @@ dependencies = [
|
|
|
1359
2770
|
"log",
|
|
1360
2771
|
"nohash-hasher",
|
|
1361
2772
|
"parking_lot",
|
|
2773
|
+
"serde",
|
|
1362
2774
|
]
|
|
1363
2775
|
|
|
1364
2776
|
[[package]]
|
|
@@ -1373,6 +2785,17 @@ version = "1.0.2"
|
|
|
1373
2785
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1374
2786
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
1375
2787
|
|
|
2788
|
+
[[package]]
|
|
2789
|
+
name = "erased-serde"
|
|
2790
|
+
version = "0.4.9"
|
|
2791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2792
|
+
checksum = "89e8918065695684b2b0702da20382d5ae6065cf3327bc2d6436bd49a71ce9f3"
|
|
2793
|
+
dependencies = [
|
|
2794
|
+
"serde",
|
|
2795
|
+
"serde_core",
|
|
2796
|
+
"typeid",
|
|
2797
|
+
]
|
|
2798
|
+
|
|
1376
2799
|
[[package]]
|
|
1377
2800
|
name = "errno"
|
|
1378
2801
|
version = "0.3.14"
|
|
@@ -1400,16 +2823,30 @@ dependencies = [
|
|
|
1400
2823
|
|
|
1401
2824
|
[[package]]
|
|
1402
2825
|
name = "eulumdat"
|
|
1403
|
-
version = "0.
|
|
2826
|
+
version = "0.3.0"
|
|
1404
2827
|
dependencies = [
|
|
1405
2828
|
"anyhow",
|
|
1406
|
-
"approx",
|
|
2829
|
+
"approx 0.5.1",
|
|
2830
|
+
"serde",
|
|
2831
|
+
]
|
|
2832
|
+
|
|
2833
|
+
[[package]]
|
|
2834
|
+
name = "eulumdat-bevy"
|
|
2835
|
+
version = "0.3.0"
|
|
2836
|
+
dependencies = [
|
|
2837
|
+
"bevy",
|
|
2838
|
+
"eulumdat",
|
|
2839
|
+
"getrandom 0.3.4",
|
|
2840
|
+
"rfd",
|
|
1407
2841
|
"serde",
|
|
2842
|
+
"wasm-bindgen",
|
|
2843
|
+
"wasm-bindgen-futures",
|
|
2844
|
+
"web-sys",
|
|
1408
2845
|
]
|
|
1409
2846
|
|
|
1410
2847
|
[[package]]
|
|
1411
2848
|
name = "eulumdat-cli"
|
|
1412
|
-
version = "0.
|
|
2849
|
+
version = "0.3.0"
|
|
1413
2850
|
dependencies = [
|
|
1414
2851
|
"anyhow",
|
|
1415
2852
|
"clap",
|
|
@@ -1419,7 +2856,7 @@ dependencies = [
|
|
|
1419
2856
|
|
|
1420
2857
|
[[package]]
|
|
1421
2858
|
name = "eulumdat-egui"
|
|
1422
|
-
version = "0.
|
|
2859
|
+
version = "0.3.0"
|
|
1423
2860
|
dependencies = [
|
|
1424
2861
|
"anyhow",
|
|
1425
2862
|
"eframe",
|
|
@@ -1434,7 +2871,7 @@ dependencies = [
|
|
|
1434
2871
|
|
|
1435
2872
|
[[package]]
|
|
1436
2873
|
name = "eulumdat-ffi"
|
|
1437
|
-
version = "0.
|
|
2874
|
+
version = "0.3.0"
|
|
1438
2875
|
dependencies = [
|
|
1439
2876
|
"eulumdat",
|
|
1440
2877
|
"thiserror 1.0.69",
|
|
@@ -1443,7 +2880,7 @@ dependencies = [
|
|
|
1443
2880
|
|
|
1444
2881
|
[[package]]
|
|
1445
2882
|
name = "eulumdat-harmonyos-ffi"
|
|
1446
|
-
version = "0.
|
|
2883
|
+
version = "0.3.0"
|
|
1447
2884
|
dependencies = [
|
|
1448
2885
|
"eulumdat",
|
|
1449
2886
|
"eulumdat-photweb",
|
|
@@ -1451,39 +2888,53 @@ dependencies = [
|
|
|
1451
2888
|
|
|
1452
2889
|
[[package]]
|
|
1453
2890
|
name = "eulumdat-photweb"
|
|
1454
|
-
version = "0.
|
|
2891
|
+
version = "0.3.0"
|
|
1455
2892
|
dependencies = [
|
|
1456
|
-
"approx",
|
|
2893
|
+
"approx 0.5.1",
|
|
1457
2894
|
"eulumdat",
|
|
1458
2895
|
]
|
|
1459
2896
|
|
|
1460
2897
|
[[package]]
|
|
1461
2898
|
name = "eulumdat-py"
|
|
1462
|
-
version = "0.
|
|
2899
|
+
version = "0.3.0"
|
|
1463
2900
|
dependencies = [
|
|
1464
2901
|
"eulumdat",
|
|
1465
2902
|
"pyo3",
|
|
1466
2903
|
]
|
|
1467
2904
|
|
|
2905
|
+
[[package]]
|
|
2906
|
+
name = "eulumdat-ui"
|
|
2907
|
+
version = "0.3.0"
|
|
2908
|
+
dependencies = [
|
|
2909
|
+
"approx 0.5.1",
|
|
2910
|
+
"egui",
|
|
2911
|
+
"eulumdat",
|
|
2912
|
+
"serde",
|
|
2913
|
+
"three-d",
|
|
2914
|
+
]
|
|
2915
|
+
|
|
1468
2916
|
[[package]]
|
|
1469
2917
|
name = "eulumdat-wasm"
|
|
1470
|
-
version = "0.
|
|
2918
|
+
version = "0.3.0"
|
|
1471
2919
|
dependencies = [
|
|
1472
|
-
"base64",
|
|
2920
|
+
"base64 0.22.1",
|
|
2921
|
+
"console_error_panic_hook",
|
|
1473
2922
|
"eulumdat",
|
|
1474
|
-
"
|
|
1475
|
-
"gloo
|
|
2923
|
+
"eulumdat-bevy",
|
|
2924
|
+
"gloo",
|
|
2925
|
+
"gloo-file",
|
|
1476
2926
|
"js-sys",
|
|
2927
|
+
"leptos",
|
|
2928
|
+
"leptos_router",
|
|
1477
2929
|
"wasm-bindgen",
|
|
1478
2930
|
"wasm-bindgen-futures",
|
|
1479
2931
|
"wasm-bindgen-test",
|
|
1480
2932
|
"web-sys",
|
|
1481
|
-
"yew",
|
|
1482
2933
|
]
|
|
1483
2934
|
|
|
1484
2935
|
[[package]]
|
|
1485
2936
|
name = "eulumdat-windows-preview"
|
|
1486
|
-
version = "0.
|
|
2937
|
+
version = "0.3.0"
|
|
1487
2938
|
dependencies = [
|
|
1488
2939
|
"anyhow",
|
|
1489
2940
|
"embed-resource",
|
|
@@ -1495,6 +2946,12 @@ dependencies = [
|
|
|
1495
2946
|
"windows-core 0.58.0",
|
|
1496
2947
|
]
|
|
1497
2948
|
|
|
2949
|
+
[[package]]
|
|
2950
|
+
name = "event-listener"
|
|
2951
|
+
version = "2.5.3"
|
|
2952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2953
|
+
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
|
2954
|
+
|
|
1498
2955
|
[[package]]
|
|
1499
2956
|
name = "event-listener"
|
|
1500
2957
|
version = "5.4.1"
|
|
@@ -1512,7 +2969,7 @@ version = "0.5.4"
|
|
|
1512
2969
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1513
2970
|
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
1514
2971
|
dependencies = [
|
|
1515
|
-
"event-listener",
|
|
2972
|
+
"event-listener 5.4.1",
|
|
1516
2973
|
"pin-project-lite",
|
|
1517
2974
|
]
|
|
1518
2975
|
|
|
@@ -1537,6 +2994,18 @@ version = "0.1.5"
|
|
|
1537
2994
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1538
2995
|
checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
|
|
1539
2996
|
|
|
2997
|
+
[[package]]
|
|
2998
|
+
name = "fixedbitset"
|
|
2999
|
+
version = "0.4.2"
|
|
3000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3001
|
+
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
|
|
3002
|
+
|
|
3003
|
+
[[package]]
|
|
3004
|
+
name = "fixedbitset"
|
|
3005
|
+
version = "0.5.7"
|
|
3006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3007
|
+
checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
|
|
3008
|
+
|
|
1540
3009
|
[[package]]
|
|
1541
3010
|
name = "flate2"
|
|
1542
3011
|
version = "1.1.5"
|
|
@@ -1565,6 +3034,15 @@ version = "0.1.5"
|
|
|
1565
3034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1566
3035
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1567
3036
|
|
|
3037
|
+
[[package]]
|
|
3038
|
+
name = "font-types"
|
|
3039
|
+
version = "0.7.3"
|
|
3040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3041
|
+
checksum = "b3971f9a5ca983419cdc386941ba3b9e1feba01a0ab888adf78739feb2798492"
|
|
3042
|
+
dependencies = [
|
|
3043
|
+
"bytemuck",
|
|
3044
|
+
]
|
|
3045
|
+
|
|
1568
3046
|
[[package]]
|
|
1569
3047
|
name = "fontconfig-parser"
|
|
1570
3048
|
version = "0.5.8"
|
|
@@ -1574,6 +3052,20 @@ dependencies = [
|
|
|
1574
3052
|
"roxmltree",
|
|
1575
3053
|
]
|
|
1576
3054
|
|
|
3055
|
+
[[package]]
|
|
3056
|
+
name = "fontdb"
|
|
3057
|
+
version = "0.16.2"
|
|
3058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3059
|
+
checksum = "b0299020c3ef3f60f526a4f64ab4a3d4ce116b1acbf24cdd22da0068e5d81dc3"
|
|
3060
|
+
dependencies = [
|
|
3061
|
+
"fontconfig-parser",
|
|
3062
|
+
"log",
|
|
3063
|
+
"memmap2",
|
|
3064
|
+
"slotmap",
|
|
3065
|
+
"tinyvec",
|
|
3066
|
+
"ttf-parser 0.20.0",
|
|
3067
|
+
]
|
|
3068
|
+
|
|
1577
3069
|
[[package]]
|
|
1578
3070
|
name = "fontdb"
|
|
1579
3071
|
version = "0.18.0"
|
|
@@ -1655,6 +3147,7 @@ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
|
|
|
1655
3147
|
dependencies = [
|
|
1656
3148
|
"futures-channel",
|
|
1657
3149
|
"futures-core",
|
|
3150
|
+
"futures-executor",
|
|
1658
3151
|
"futures-io",
|
|
1659
3152
|
"futures-sink",
|
|
1660
3153
|
"futures-task",
|
|
@@ -1677,6 +3170,18 @@ version = "0.3.31"
|
|
|
1677
3170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1678
3171
|
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1679
3172
|
|
|
3173
|
+
[[package]]
|
|
3174
|
+
name = "futures-executor"
|
|
3175
|
+
version = "0.3.31"
|
|
3176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
+
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
|
|
3178
|
+
dependencies = [
|
|
3179
|
+
"futures-core",
|
|
3180
|
+
"futures-task",
|
|
3181
|
+
"futures-util",
|
|
3182
|
+
"num_cpus",
|
|
3183
|
+
]
|
|
3184
|
+
|
|
1680
3185
|
[[package]]
|
|
1681
3186
|
name = "futures-io"
|
|
1682
3187
|
version = "0.3.31"
|
|
@@ -1777,9 +3282,11 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1777
3282
|
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1778
3283
|
dependencies = [
|
|
1779
3284
|
"cfg-if",
|
|
3285
|
+
"js-sys",
|
|
1780
3286
|
"libc",
|
|
1781
3287
|
"r-efi",
|
|
1782
3288
|
"wasip2",
|
|
3289
|
+
"wasm-bindgen",
|
|
1783
3290
|
]
|
|
1784
3291
|
|
|
1785
3292
|
[[package]]
|
|
@@ -1804,48 +3311,21 @@ dependencies = [
|
|
|
1804
3311
|
]
|
|
1805
3312
|
|
|
1806
3313
|
[[package]]
|
|
1807
|
-
name = "
|
|
1808
|
-
version = "0.
|
|
1809
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
-
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1811
|
-
|
|
1812
|
-
[[package]]
|
|
1813
|
-
name = "gloo"
|
|
1814
|
-
version = "0.8.1"
|
|
3314
|
+
name = "glam"
|
|
3315
|
+
version = "0.29.3"
|
|
1815
3316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1816
|
-
checksum = "
|
|
3317
|
+
checksum = "8babf46d4c1c9d92deac9f7be466f76dfc4482b6452fc5024b5e8daf6ffeb3ee"
|
|
1817
3318
|
dependencies = [
|
|
1818
|
-
"
|
|
1819
|
-
"
|
|
1820
|
-
"
|
|
1821
|
-
"gloo-file 0.2.3",
|
|
1822
|
-
"gloo-history 0.1.5",
|
|
1823
|
-
"gloo-net 0.3.1",
|
|
1824
|
-
"gloo-render 0.1.1",
|
|
1825
|
-
"gloo-storage 0.2.2",
|
|
1826
|
-
"gloo-timers 0.2.6",
|
|
1827
|
-
"gloo-utils 0.1.7",
|
|
1828
|
-
"gloo-worker 0.2.1",
|
|
3319
|
+
"bytemuck",
|
|
3320
|
+
"rand 0.8.5",
|
|
3321
|
+
"serde",
|
|
1829
3322
|
]
|
|
1830
3323
|
|
|
1831
3324
|
[[package]]
|
|
1832
|
-
name = "
|
|
1833
|
-
version = "0.
|
|
3325
|
+
name = "glob"
|
|
3326
|
+
version = "0.3.3"
|
|
1834
3327
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1835
|
-
checksum = "
|
|
1836
|
-
dependencies = [
|
|
1837
|
-
"gloo-console 0.3.0",
|
|
1838
|
-
"gloo-dialogs 0.2.0",
|
|
1839
|
-
"gloo-events 0.2.0",
|
|
1840
|
-
"gloo-file 0.3.0",
|
|
1841
|
-
"gloo-history 0.2.2",
|
|
1842
|
-
"gloo-net 0.4.0",
|
|
1843
|
-
"gloo-render 0.2.0",
|
|
1844
|
-
"gloo-storage 0.3.0",
|
|
1845
|
-
"gloo-timers 0.3.0",
|
|
1846
|
-
"gloo-utils 0.2.0",
|
|
1847
|
-
"gloo-worker 0.4.0",
|
|
1848
|
-
]
|
|
3328
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1849
3329
|
|
|
1850
3330
|
[[package]]
|
|
1851
3331
|
name = "gloo"
|
|
@@ -1853,30 +3333,17 @@ version = "0.11.0"
|
|
|
1853
3333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
3334
|
checksum = "d15282ece24eaf4bd338d73ef580c6714c8615155c4190c781290ee3fa0fd372"
|
|
1855
3335
|
dependencies = [
|
|
1856
|
-
"gloo-console
|
|
1857
|
-
"gloo-dialogs
|
|
1858
|
-
"gloo-events
|
|
1859
|
-
"gloo-file
|
|
1860
|
-
"gloo-history
|
|
3336
|
+
"gloo-console",
|
|
3337
|
+
"gloo-dialogs",
|
|
3338
|
+
"gloo-events",
|
|
3339
|
+
"gloo-file",
|
|
3340
|
+
"gloo-history",
|
|
1861
3341
|
"gloo-net 0.5.0",
|
|
1862
|
-
"gloo-render
|
|
1863
|
-
"gloo-storage
|
|
1864
|
-
"gloo-timers
|
|
1865
|
-
"gloo-utils
|
|
1866
|
-
"gloo-worker
|
|
1867
|
-
]
|
|
1868
|
-
|
|
1869
|
-
[[package]]
|
|
1870
|
-
name = "gloo-console"
|
|
1871
|
-
version = "0.2.3"
|
|
1872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "82b7ce3c05debe147233596904981848862b068862e9ec3e34be446077190d3f"
|
|
1874
|
-
dependencies = [
|
|
1875
|
-
"gloo-utils 0.1.7",
|
|
1876
|
-
"js-sys",
|
|
1877
|
-
"serde",
|
|
1878
|
-
"wasm-bindgen",
|
|
1879
|
-
"web-sys",
|
|
3342
|
+
"gloo-render",
|
|
3343
|
+
"gloo-storage",
|
|
3344
|
+
"gloo-timers",
|
|
3345
|
+
"gloo-utils",
|
|
3346
|
+
"gloo-worker",
|
|
1880
3347
|
]
|
|
1881
3348
|
|
|
1882
3349
|
[[package]]
|
|
@@ -1885,23 +3352,13 @@ version = "0.3.0"
|
|
|
1885
3352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
3353
|
checksum = "2a17868f56b4a24f677b17c8cb69958385102fa879418052d60b50bc1727e261"
|
|
1887
3354
|
dependencies = [
|
|
1888
|
-
"gloo-utils
|
|
3355
|
+
"gloo-utils",
|
|
1889
3356
|
"js-sys",
|
|
1890
3357
|
"serde",
|
|
1891
3358
|
"wasm-bindgen",
|
|
1892
3359
|
"web-sys",
|
|
1893
3360
|
]
|
|
1894
3361
|
|
|
1895
|
-
[[package]]
|
|
1896
|
-
name = "gloo-dialogs"
|
|
1897
|
-
version = "0.1.1"
|
|
1898
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1899
|
-
checksum = "67062364ac72d27f08445a46cab428188e2e224ec9e37efdba48ae8c289002e6"
|
|
1900
|
-
dependencies = [
|
|
1901
|
-
"wasm-bindgen",
|
|
1902
|
-
"web-sys",
|
|
1903
|
-
]
|
|
1904
|
-
|
|
1905
3362
|
[[package]]
|
|
1906
3363
|
name = "gloo-dialogs"
|
|
1907
3364
|
version = "0.2.0"
|
|
@@ -1912,16 +3369,6 @@ dependencies = [
|
|
|
1912
3369
|
"web-sys",
|
|
1913
3370
|
]
|
|
1914
3371
|
|
|
1915
|
-
[[package]]
|
|
1916
|
-
name = "gloo-events"
|
|
1917
|
-
version = "0.1.2"
|
|
1918
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
-
checksum = "68b107f8abed8105e4182de63845afcc7b69c098b7852a813ea7462a320992fc"
|
|
1920
|
-
dependencies = [
|
|
1921
|
-
"wasm-bindgen",
|
|
1922
|
-
"web-sys",
|
|
1923
|
-
]
|
|
1924
|
-
|
|
1925
3372
|
[[package]]
|
|
1926
3373
|
name = "gloo-events"
|
|
1927
3374
|
version = "0.2.0"
|
|
@@ -1932,18 +3379,6 @@ dependencies = [
|
|
|
1932
3379
|
"web-sys",
|
|
1933
3380
|
]
|
|
1934
3381
|
|
|
1935
|
-
[[package]]
|
|
1936
|
-
name = "gloo-file"
|
|
1937
|
-
version = "0.2.3"
|
|
1938
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1939
|
-
checksum = "a8d5564e570a38b43d78bdc063374a0c3098c4f0d64005b12f9bbe87e869b6d7"
|
|
1940
|
-
dependencies = [
|
|
1941
|
-
"gloo-events 0.1.2",
|
|
1942
|
-
"js-sys",
|
|
1943
|
-
"wasm-bindgen",
|
|
1944
|
-
"web-sys",
|
|
1945
|
-
]
|
|
1946
|
-
|
|
1947
3382
|
[[package]]
|
|
1948
3383
|
name = "gloo-file"
|
|
1949
3384
|
version = "0.3.0"
|
|
@@ -1951,28 +3386,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1951
3386
|
checksum = "97563d71863fb2824b2e974e754a81d19c4a7ec47b09ced8a0e6656b6d54bd1f"
|
|
1952
3387
|
dependencies = [
|
|
1953
3388
|
"futures-channel",
|
|
1954
|
-
"gloo-events
|
|
3389
|
+
"gloo-events",
|
|
1955
3390
|
"js-sys",
|
|
1956
3391
|
"wasm-bindgen",
|
|
1957
3392
|
"web-sys",
|
|
1958
3393
|
]
|
|
1959
3394
|
|
|
1960
|
-
[[package]]
|
|
1961
|
-
name = "gloo-history"
|
|
1962
|
-
version = "0.1.5"
|
|
1963
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1964
|
-
checksum = "85725d90bf0ed47063b3930ef28e863658a7905989e9929a8708aab74a1d5e7f"
|
|
1965
|
-
dependencies = [
|
|
1966
|
-
"gloo-events 0.1.2",
|
|
1967
|
-
"gloo-utils 0.1.7",
|
|
1968
|
-
"serde",
|
|
1969
|
-
"serde-wasm-bindgen 0.5.0",
|
|
1970
|
-
"serde_urlencoded",
|
|
1971
|
-
"thiserror 1.0.69",
|
|
1972
|
-
"wasm-bindgen",
|
|
1973
|
-
"web-sys",
|
|
1974
|
-
]
|
|
1975
|
-
|
|
1976
3395
|
[[package]]
|
|
1977
3396
|
name = "gloo-history"
|
|
1978
3397
|
version = "0.2.2"
|
|
@@ -1980,58 +3399,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1980
3399
|
checksum = "903f432be5ba34427eac5e16048ef65604a82061fe93789f2212afc73d8617d6"
|
|
1981
3400
|
dependencies = [
|
|
1982
3401
|
"getrandom 0.2.16",
|
|
1983
|
-
"gloo-events
|
|
1984
|
-
"gloo-utils
|
|
3402
|
+
"gloo-events",
|
|
3403
|
+
"gloo-utils",
|
|
1985
3404
|
"serde",
|
|
1986
|
-
"serde-wasm-bindgen
|
|
3405
|
+
"serde-wasm-bindgen",
|
|
1987
3406
|
"serde_urlencoded",
|
|
1988
3407
|
"thiserror 1.0.69",
|
|
1989
3408
|
"wasm-bindgen",
|
|
1990
3409
|
"web-sys",
|
|
1991
3410
|
]
|
|
1992
3411
|
|
|
1993
|
-
[[package]]
|
|
1994
|
-
name = "gloo-net"
|
|
1995
|
-
version = "0.3.1"
|
|
1996
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
-
checksum = "a66b4e3c7d9ed8d315fd6b97c8b1f74a7c6ecbbc2320e65ae7ed38b7068cc620"
|
|
1998
|
-
dependencies = [
|
|
1999
|
-
"futures-channel",
|
|
2000
|
-
"futures-core",
|
|
2001
|
-
"futures-sink",
|
|
2002
|
-
"gloo-utils 0.1.7",
|
|
2003
|
-
"http",
|
|
2004
|
-
"js-sys",
|
|
2005
|
-
"pin-project",
|
|
2006
|
-
"serde",
|
|
2007
|
-
"serde_json",
|
|
2008
|
-
"thiserror 1.0.69",
|
|
2009
|
-
"wasm-bindgen",
|
|
2010
|
-
"wasm-bindgen-futures",
|
|
2011
|
-
"web-sys",
|
|
2012
|
-
]
|
|
2013
|
-
|
|
2014
|
-
[[package]]
|
|
2015
|
-
name = "gloo-net"
|
|
2016
|
-
version = "0.4.0"
|
|
2017
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2018
|
-
checksum = "8ac9e8288ae2c632fa9f8657ac70bfe38a1530f345282d7ba66a1f70b72b7dc4"
|
|
2019
|
-
dependencies = [
|
|
2020
|
-
"futures-channel",
|
|
2021
|
-
"futures-core",
|
|
2022
|
-
"futures-sink",
|
|
2023
|
-
"gloo-utils 0.2.0",
|
|
2024
|
-
"http",
|
|
2025
|
-
"js-sys",
|
|
2026
|
-
"pin-project",
|
|
2027
|
-
"serde",
|
|
2028
|
-
"serde_json",
|
|
2029
|
-
"thiserror 1.0.69",
|
|
2030
|
-
"wasm-bindgen",
|
|
2031
|
-
"wasm-bindgen-futures",
|
|
2032
|
-
"web-sys",
|
|
2033
|
-
]
|
|
2034
|
-
|
|
2035
3412
|
[[package]]
|
|
2036
3413
|
name = "gloo-net"
|
|
2037
3414
|
version = "0.5.0"
|
|
@@ -2041,8 +3418,8 @@ dependencies = [
|
|
|
2041
3418
|
"futures-channel",
|
|
2042
3419
|
"futures-core",
|
|
2043
3420
|
"futures-sink",
|
|
2044
|
-
"gloo-utils
|
|
2045
|
-
"http",
|
|
3421
|
+
"gloo-utils",
|
|
3422
|
+
"http 0.2.12",
|
|
2046
3423
|
"js-sys",
|
|
2047
3424
|
"pin-project",
|
|
2048
3425
|
"serde",
|
|
@@ -2054,134 +3431,71 @@ dependencies = [
|
|
|
2054
3431
|
]
|
|
2055
3432
|
|
|
2056
3433
|
[[package]]
|
|
2057
|
-
name = "gloo-
|
|
2058
|
-
version = "0.
|
|
2059
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2060
|
-
checksum = "2fd9306aef67cfd4449823aadcd14e3958e0800aa2183955a309112a84ec7764"
|
|
2061
|
-
dependencies = [
|
|
2062
|
-
"wasm-bindgen",
|
|
2063
|
-
"web-sys",
|
|
2064
|
-
]
|
|
2065
|
-
|
|
2066
|
-
[[package]]
|
|
2067
|
-
name = "gloo-render"
|
|
2068
|
-
version = "0.2.0"
|
|
2069
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
-
checksum = "56008b6744713a8e8d98ac3dcb7d06543d5662358c9c805b4ce2167ad4649833"
|
|
2071
|
-
dependencies = [
|
|
2072
|
-
"wasm-bindgen",
|
|
2073
|
-
"web-sys",
|
|
2074
|
-
]
|
|
2075
|
-
|
|
2076
|
-
[[package]]
|
|
2077
|
-
name = "gloo-storage"
|
|
2078
|
-
version = "0.2.2"
|
|
2079
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2080
|
-
checksum = "5d6ab60bf5dbfd6f0ed1f7843da31b41010515c745735c970e821945ca91e480"
|
|
2081
|
-
dependencies = [
|
|
2082
|
-
"gloo-utils 0.1.7",
|
|
2083
|
-
"js-sys",
|
|
2084
|
-
"serde",
|
|
2085
|
-
"serde_json",
|
|
2086
|
-
"thiserror 1.0.69",
|
|
2087
|
-
"wasm-bindgen",
|
|
2088
|
-
"web-sys",
|
|
2089
|
-
]
|
|
2090
|
-
|
|
2091
|
-
[[package]]
|
|
2092
|
-
name = "gloo-storage"
|
|
2093
|
-
version = "0.3.0"
|
|
2094
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2095
|
-
checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a"
|
|
2096
|
-
dependencies = [
|
|
2097
|
-
"gloo-utils 0.2.0",
|
|
2098
|
-
"js-sys",
|
|
2099
|
-
"serde",
|
|
2100
|
-
"serde_json",
|
|
2101
|
-
"thiserror 1.0.69",
|
|
2102
|
-
"wasm-bindgen",
|
|
2103
|
-
"web-sys",
|
|
2104
|
-
]
|
|
2105
|
-
|
|
2106
|
-
[[package]]
|
|
2107
|
-
name = "gloo-timers"
|
|
2108
|
-
version = "0.2.6"
|
|
2109
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2110
|
-
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
|
|
2111
|
-
dependencies = [
|
|
2112
|
-
"js-sys",
|
|
2113
|
-
"wasm-bindgen",
|
|
2114
|
-
]
|
|
2115
|
-
|
|
2116
|
-
[[package]]
|
|
2117
|
-
name = "gloo-timers"
|
|
2118
|
-
version = "0.3.0"
|
|
3434
|
+
name = "gloo-net"
|
|
3435
|
+
version = "0.6.0"
|
|
2119
3436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2120
|
-
checksum = "
|
|
3437
|
+
checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580"
|
|
2121
3438
|
dependencies = [
|
|
3439
|
+
"futures-channel",
|
|
3440
|
+
"futures-core",
|
|
3441
|
+
"futures-sink",
|
|
3442
|
+
"gloo-utils",
|
|
3443
|
+
"http 1.4.0",
|
|
2122
3444
|
"js-sys",
|
|
3445
|
+
"pin-project",
|
|
3446
|
+
"serde",
|
|
3447
|
+
"serde_json",
|
|
3448
|
+
"thiserror 1.0.69",
|
|
2123
3449
|
"wasm-bindgen",
|
|
3450
|
+
"wasm-bindgen-futures",
|
|
3451
|
+
"web-sys",
|
|
2124
3452
|
]
|
|
2125
3453
|
|
|
2126
3454
|
[[package]]
|
|
2127
|
-
name = "gloo-
|
|
2128
|
-
version = "0.
|
|
3455
|
+
name = "gloo-render"
|
|
3456
|
+
version = "0.2.0"
|
|
2129
3457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2130
|
-
checksum = "
|
|
3458
|
+
checksum = "56008b6744713a8e8d98ac3dcb7d06543d5662358c9c805b4ce2167ad4649833"
|
|
2131
3459
|
dependencies = [
|
|
2132
|
-
"js-sys",
|
|
2133
|
-
"serde",
|
|
2134
|
-
"serde_json",
|
|
2135
3460
|
"wasm-bindgen",
|
|
2136
3461
|
"web-sys",
|
|
2137
3462
|
]
|
|
2138
3463
|
|
|
2139
3464
|
[[package]]
|
|
2140
|
-
name = "gloo-
|
|
2141
|
-
version = "0.
|
|
3465
|
+
name = "gloo-storage"
|
|
3466
|
+
version = "0.3.0"
|
|
2142
3467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2143
|
-
checksum = "
|
|
3468
|
+
checksum = "fbc8031e8c92758af912f9bc08fbbadd3c6f3cfcbf6b64cdf3d6a81f0139277a"
|
|
2144
3469
|
dependencies = [
|
|
3470
|
+
"gloo-utils",
|
|
2145
3471
|
"js-sys",
|
|
2146
3472
|
"serde",
|
|
2147
3473
|
"serde_json",
|
|
3474
|
+
"thiserror 1.0.69",
|
|
2148
3475
|
"wasm-bindgen",
|
|
2149
3476
|
"web-sys",
|
|
2150
3477
|
]
|
|
2151
3478
|
|
|
2152
3479
|
[[package]]
|
|
2153
|
-
name = "gloo-
|
|
2154
|
-
version = "0.
|
|
3480
|
+
name = "gloo-timers"
|
|
3481
|
+
version = "0.3.0"
|
|
2155
3482
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2156
|
-
checksum = "
|
|
3483
|
+
checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
|
|
2157
3484
|
dependencies = [
|
|
2158
|
-
"anymap2",
|
|
2159
|
-
"bincode",
|
|
2160
|
-
"gloo-console 0.2.3",
|
|
2161
|
-
"gloo-utils 0.1.7",
|
|
2162
3485
|
"js-sys",
|
|
2163
|
-
"serde",
|
|
2164
3486
|
"wasm-bindgen",
|
|
2165
|
-
"wasm-bindgen-futures",
|
|
2166
|
-
"web-sys",
|
|
2167
3487
|
]
|
|
2168
3488
|
|
|
2169
3489
|
[[package]]
|
|
2170
|
-
name = "gloo-
|
|
2171
|
-
version = "0.
|
|
3490
|
+
name = "gloo-utils"
|
|
3491
|
+
version = "0.2.0"
|
|
2172
3492
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2173
|
-
checksum = "
|
|
3493
|
+
checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa"
|
|
2174
3494
|
dependencies = [
|
|
2175
|
-
"bincode",
|
|
2176
|
-
"futures",
|
|
2177
|
-
"gloo-utils 0.2.0",
|
|
2178
|
-
"gloo-worker-macros",
|
|
2179
3495
|
"js-sys",
|
|
2180
|
-
"pinned",
|
|
2181
3496
|
"serde",
|
|
2182
|
-
"
|
|
3497
|
+
"serde_json",
|
|
2183
3498
|
"wasm-bindgen",
|
|
2184
|
-
"wasm-bindgen-futures",
|
|
2185
3499
|
"web-sys",
|
|
2186
3500
|
]
|
|
2187
3501
|
|
|
@@ -2193,7 +3507,7 @@ checksum = "085f262d7604911c8150162529cefab3782e91adb20202e8658f7275d2aefe5d"
|
|
|
2193
3507
|
dependencies = [
|
|
2194
3508
|
"bincode",
|
|
2195
3509
|
"futures",
|
|
2196
|
-
"gloo-utils
|
|
3510
|
+
"gloo-utils",
|
|
2197
3511
|
"gloo-worker-macros",
|
|
2198
3512
|
"js-sys",
|
|
2199
3513
|
"pinned",
|
|
@@ -2349,6 +3663,18 @@ dependencies = [
|
|
|
2349
3663
|
"windows 0.52.0",
|
|
2350
3664
|
]
|
|
2351
3665
|
|
|
3666
|
+
[[package]]
|
|
3667
|
+
name = "gpu-allocator"
|
|
3668
|
+
version = "0.27.0"
|
|
3669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3670
|
+
checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
|
|
3671
|
+
dependencies = [
|
|
3672
|
+
"log",
|
|
3673
|
+
"presser",
|
|
3674
|
+
"thiserror 1.0.69",
|
|
3675
|
+
"windows 0.58.0",
|
|
3676
|
+
]
|
|
3677
|
+
|
|
2352
3678
|
[[package]]
|
|
2353
3679
|
name = "gpu-descriptor"
|
|
2354
3680
|
version = "0.3.2"
|
|
@@ -2369,6 +3695,51 @@ dependencies = [
|
|
|
2369
3695
|
"bitflags 2.10.0",
|
|
2370
3696
|
]
|
|
2371
3697
|
|
|
3698
|
+
[[package]]
|
|
3699
|
+
name = "grid"
|
|
3700
|
+
version = "0.14.0"
|
|
3701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3702
|
+
checksum = "be136d9dacc2a13cc70bb6c8f902b414fb2641f8db1314637c6b7933411a8f82"
|
|
3703
|
+
|
|
3704
|
+
[[package]]
|
|
3705
|
+
name = "guardian"
|
|
3706
|
+
version = "1.3.0"
|
|
3707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3708
|
+
checksum = "17e2ac29387b1aa07a1e448f7bb4f35b500787971e965b02842b900afa5c8f6f"
|
|
3709
|
+
|
|
3710
|
+
[[package]]
|
|
3711
|
+
name = "guillotiere"
|
|
3712
|
+
version = "0.6.2"
|
|
3713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3714
|
+
checksum = "b62d5865c036cb1393e23c50693df631d3f5d7bcca4c04fe4cc0fd592e74a782"
|
|
3715
|
+
dependencies = [
|
|
3716
|
+
"euclid",
|
|
3717
|
+
"svg_fmt",
|
|
3718
|
+
]
|
|
3719
|
+
|
|
3720
|
+
[[package]]
|
|
3721
|
+
name = "half"
|
|
3722
|
+
version = "2.7.1"
|
|
3723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3724
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
3725
|
+
dependencies = [
|
|
3726
|
+
"cfg-if",
|
|
3727
|
+
"crunchy",
|
|
3728
|
+
"num-traits",
|
|
3729
|
+
"zerocopy",
|
|
3730
|
+
]
|
|
3731
|
+
|
|
3732
|
+
[[package]]
|
|
3733
|
+
name = "hashbrown"
|
|
3734
|
+
version = "0.14.5"
|
|
3735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3736
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
3737
|
+
dependencies = [
|
|
3738
|
+
"ahash",
|
|
3739
|
+
"allocator-api2",
|
|
3740
|
+
"serde",
|
|
3741
|
+
]
|
|
3742
|
+
|
|
2372
3743
|
[[package]]
|
|
2373
3744
|
name = "hashbrown"
|
|
2374
3745
|
version = "0.15.5"
|
|
@@ -2417,12 +3788,32 @@ version = "0.4.3"
|
|
|
2417
3788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
3789
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
2419
3790
|
|
|
3791
|
+
[[package]]
|
|
3792
|
+
name = "hexasphere"
|
|
3793
|
+
version = "15.1.0"
|
|
3794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3795
|
+
checksum = "d9c9e718d32b6e6b2b32354e1b0367025efdd0b11d6a740b905ddf5db1074679"
|
|
3796
|
+
dependencies = [
|
|
3797
|
+
"constgebra",
|
|
3798
|
+
"glam",
|
|
3799
|
+
"tinyvec",
|
|
3800
|
+
]
|
|
3801
|
+
|
|
2420
3802
|
[[package]]
|
|
2421
3803
|
name = "hexf-parse"
|
|
2422
3804
|
version = "0.2.1"
|
|
2423
3805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2424
3806
|
checksum = "dfa686283ad6dd069f105e5ab091b04c62850d3e4cf5d67debad1933f55023df"
|
|
2425
3807
|
|
|
3808
|
+
[[package]]
|
|
3809
|
+
name = "html-escape"
|
|
3810
|
+
version = "0.2.13"
|
|
3811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3812
|
+
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
|
3813
|
+
dependencies = [
|
|
3814
|
+
"utf8-width",
|
|
3815
|
+
]
|
|
3816
|
+
|
|
2426
3817
|
[[package]]
|
|
2427
3818
|
name = "http"
|
|
2428
3819
|
version = "0.2.12"
|
|
@@ -2434,6 +3825,32 @@ dependencies = [
|
|
|
2434
3825
|
"itoa",
|
|
2435
3826
|
]
|
|
2436
3827
|
|
|
3828
|
+
[[package]]
|
|
3829
|
+
name = "http"
|
|
3830
|
+
version = "1.4.0"
|
|
3831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3832
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
3833
|
+
dependencies = [
|
|
3834
|
+
"bytes",
|
|
3835
|
+
"itoa",
|
|
3836
|
+
]
|
|
3837
|
+
|
|
3838
|
+
[[package]]
|
|
3839
|
+
name = "hydration_context"
|
|
3840
|
+
version = "0.2.1"
|
|
3841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3842
|
+
checksum = "d35485b3dcbf7e044b8f28c73f04f13e7b509c2466fd10cb2a8a447e38f8a93a"
|
|
3843
|
+
dependencies = [
|
|
3844
|
+
"futures",
|
|
3845
|
+
"js-sys",
|
|
3846
|
+
"once_cell",
|
|
3847
|
+
"or_poisoned",
|
|
3848
|
+
"pin-project-lite",
|
|
3849
|
+
"serde",
|
|
3850
|
+
"throw_error",
|
|
3851
|
+
"wasm-bindgen",
|
|
3852
|
+
]
|
|
3853
|
+
|
|
2437
3854
|
[[package]]
|
|
2438
3855
|
name = "icu_collections"
|
|
2439
3856
|
version = "2.1.1"
|
|
@@ -2581,40 +3998,44 @@ dependencies = [
|
|
|
2581
3998
|
]
|
|
2582
3999
|
|
|
2583
4000
|
[[package]]
|
|
2584
|
-
name = "
|
|
2585
|
-
version = "
|
|
4001
|
+
name = "indexmap"
|
|
4002
|
+
version = "2.12.1"
|
|
2586
4003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2587
|
-
checksum = "
|
|
4004
|
+
checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
|
|
2588
4005
|
dependencies = [
|
|
2589
|
-
"
|
|
2590
|
-
"
|
|
4006
|
+
"equivalent",
|
|
4007
|
+
"hashbrown 0.16.1",
|
|
2591
4008
|
]
|
|
2592
4009
|
|
|
2593
4010
|
[[package]]
|
|
2594
|
-
name = "
|
|
2595
|
-
version = "0.
|
|
4011
|
+
name = "indoc"
|
|
4012
|
+
version = "2.0.7"
|
|
2596
4013
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
-
checksum = "
|
|
4014
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
2598
4015
|
dependencies = [
|
|
2599
|
-
"
|
|
2600
|
-
"syn 2.0.111",
|
|
4016
|
+
"rustversion",
|
|
2601
4017
|
]
|
|
2602
4018
|
|
|
2603
4019
|
[[package]]
|
|
2604
|
-
name = "
|
|
2605
|
-
version = "
|
|
4020
|
+
name = "instant"
|
|
4021
|
+
version = "0.1.13"
|
|
2606
4022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2607
|
-
checksum = "
|
|
4023
|
+
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
|
|
2608
4024
|
dependencies = [
|
|
2609
|
-
"
|
|
2610
|
-
"hashbrown 0.16.1",
|
|
4025
|
+
"cfg-if",
|
|
2611
4026
|
]
|
|
2612
4027
|
|
|
2613
4028
|
[[package]]
|
|
2614
|
-
name = "
|
|
2615
|
-
version = "
|
|
4029
|
+
name = "interpolator"
|
|
4030
|
+
version = "0.5.0"
|
|
2616
4031
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2617
|
-
checksum = "
|
|
4032
|
+
checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
|
|
4033
|
+
|
|
4034
|
+
[[package]]
|
|
4035
|
+
name = "inventory"
|
|
4036
|
+
version = "0.3.21"
|
|
4037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4038
|
+
checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
|
|
2618
4039
|
dependencies = [
|
|
2619
4040
|
"rustversion",
|
|
2620
4041
|
]
|
|
@@ -2625,6 +4046,24 @@ version = "1.70.2"
|
|
|
2625
4046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2626
4047
|
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
2627
4048
|
|
|
4049
|
+
[[package]]
|
|
4050
|
+
name = "itertools"
|
|
4051
|
+
version = "0.13.0"
|
|
4052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4053
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
4054
|
+
dependencies = [
|
|
4055
|
+
"either",
|
|
4056
|
+
]
|
|
4057
|
+
|
|
4058
|
+
[[package]]
|
|
4059
|
+
name = "itertools"
|
|
4060
|
+
version = "0.14.0"
|
|
4061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4062
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
4063
|
+
dependencies = [
|
|
4064
|
+
"either",
|
|
4065
|
+
]
|
|
4066
|
+
|
|
2628
4067
|
[[package]]
|
|
2629
4068
|
name = "itoa"
|
|
2630
4069
|
version = "1.0.15"
|
|
@@ -2696,15 +4135,189 @@ version = "3.1.0"
|
|
|
2696
4135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2697
4136
|
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
2698
4137
|
|
|
4138
|
+
[[package]]
|
|
4139
|
+
name = "ktx2"
|
|
4140
|
+
version = "0.3.0"
|
|
4141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4142
|
+
checksum = "87d65e08a9ec02e409d27a0139eaa6b9756b4d81fe7cde71f6941a83730ce838"
|
|
4143
|
+
dependencies = [
|
|
4144
|
+
"bitflags 1.3.2",
|
|
4145
|
+
]
|
|
4146
|
+
|
|
2699
4147
|
[[package]]
|
|
2700
4148
|
name = "kurbo"
|
|
2701
4149
|
version = "0.11.3"
|
|
2702
4150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
-
checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
|
|
4151
|
+
checksum = "c62026ae44756f8a599ba21140f350303d4f08dcdcc71b5ad9c9bb8128c13c62"
|
|
4152
|
+
dependencies = [
|
|
4153
|
+
"arrayvec",
|
|
4154
|
+
"euclid",
|
|
4155
|
+
"smallvec",
|
|
4156
|
+
]
|
|
4157
|
+
|
|
4158
|
+
[[package]]
|
|
4159
|
+
name = "lazy_static"
|
|
4160
|
+
version = "1.5.0"
|
|
4161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4162
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
4163
|
+
|
|
4164
|
+
[[package]]
|
|
4165
|
+
name = "leptos"
|
|
4166
|
+
version = "0.7.8"
|
|
4167
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4168
|
+
checksum = "26b8731cb00f3f0894058155410b95c8955b17273181d2bc72600ab84edd24f1"
|
|
4169
|
+
dependencies = [
|
|
4170
|
+
"any_spawner",
|
|
4171
|
+
"cfg-if",
|
|
4172
|
+
"either_of",
|
|
4173
|
+
"futures",
|
|
4174
|
+
"hydration_context",
|
|
4175
|
+
"leptos_config",
|
|
4176
|
+
"leptos_dom",
|
|
4177
|
+
"leptos_hot_reload",
|
|
4178
|
+
"leptos_macro",
|
|
4179
|
+
"leptos_server",
|
|
4180
|
+
"oco_ref",
|
|
4181
|
+
"or_poisoned",
|
|
4182
|
+
"paste",
|
|
4183
|
+
"reactive_graph",
|
|
4184
|
+
"rustc-hash 2.1.1",
|
|
4185
|
+
"send_wrapper",
|
|
4186
|
+
"serde",
|
|
4187
|
+
"serde_qs",
|
|
4188
|
+
"server_fn",
|
|
4189
|
+
"slotmap",
|
|
4190
|
+
"tachys",
|
|
4191
|
+
"thiserror 2.0.17",
|
|
4192
|
+
"throw_error",
|
|
4193
|
+
"typed-builder",
|
|
4194
|
+
"typed-builder-macro",
|
|
4195
|
+
"wasm-bindgen",
|
|
4196
|
+
"web-sys",
|
|
4197
|
+
]
|
|
4198
|
+
|
|
4199
|
+
[[package]]
|
|
4200
|
+
name = "leptos_config"
|
|
4201
|
+
version = "0.7.8"
|
|
4202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4203
|
+
checksum = "5bae3e0ead5a7a814c8340eef7cb8b6cba364125bd8174b15dc9fe1b3cab7e03"
|
|
4204
|
+
dependencies = [
|
|
4205
|
+
"config",
|
|
4206
|
+
"regex",
|
|
4207
|
+
"serde",
|
|
4208
|
+
"thiserror 2.0.17",
|
|
4209
|
+
"typed-builder",
|
|
4210
|
+
]
|
|
4211
|
+
|
|
4212
|
+
[[package]]
|
|
4213
|
+
name = "leptos_dom"
|
|
4214
|
+
version = "0.7.8"
|
|
4215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4216
|
+
checksum = "f89d4eb263bd5a9e7c49f780f17063f15aca56fd638c90b9dfd5f4739152e87d"
|
|
4217
|
+
dependencies = [
|
|
4218
|
+
"js-sys",
|
|
4219
|
+
"or_poisoned",
|
|
4220
|
+
"reactive_graph",
|
|
4221
|
+
"send_wrapper",
|
|
4222
|
+
"tachys",
|
|
4223
|
+
"wasm-bindgen",
|
|
4224
|
+
"web-sys",
|
|
4225
|
+
]
|
|
4226
|
+
|
|
4227
|
+
[[package]]
|
|
4228
|
+
name = "leptos_hot_reload"
|
|
4229
|
+
version = "0.7.8"
|
|
4230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4231
|
+
checksum = "e80219388501d99b246f43b6e7d08a28f327cdd34ba630a35654d917f3e1788e"
|
|
4232
|
+
dependencies = [
|
|
4233
|
+
"anyhow",
|
|
4234
|
+
"camino",
|
|
4235
|
+
"indexmap",
|
|
4236
|
+
"parking_lot",
|
|
4237
|
+
"proc-macro2",
|
|
4238
|
+
"quote",
|
|
4239
|
+
"rstml",
|
|
4240
|
+
"serde",
|
|
4241
|
+
"syn 2.0.111",
|
|
4242
|
+
"walkdir",
|
|
4243
|
+
]
|
|
4244
|
+
|
|
4245
|
+
[[package]]
|
|
4246
|
+
name = "leptos_macro"
|
|
4247
|
+
version = "0.7.9"
|
|
4248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4249
|
+
checksum = "e621f8f5342b9bdc93bb263b839cee7405027a74560425a2dabea9de7952b1fd"
|
|
4250
|
+
dependencies = [
|
|
4251
|
+
"attribute-derive",
|
|
4252
|
+
"cfg-if",
|
|
4253
|
+
"convert_case 0.7.1",
|
|
4254
|
+
"html-escape",
|
|
4255
|
+
"itertools 0.14.0",
|
|
4256
|
+
"leptos_hot_reload",
|
|
4257
|
+
"prettyplease",
|
|
4258
|
+
"proc-macro-error2",
|
|
4259
|
+
"proc-macro2",
|
|
4260
|
+
"quote",
|
|
4261
|
+
"rstml",
|
|
4262
|
+
"server_fn_macro",
|
|
4263
|
+
"syn 2.0.111",
|
|
4264
|
+
"uuid",
|
|
4265
|
+
]
|
|
4266
|
+
|
|
4267
|
+
[[package]]
|
|
4268
|
+
name = "leptos_router"
|
|
4269
|
+
version = "0.7.8"
|
|
4270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4271
|
+
checksum = "4168ead6a9715daba953aa842795cb2ad81b6e011a15745bd3d1baf86f76de95"
|
|
4272
|
+
dependencies = [
|
|
4273
|
+
"any_spawner",
|
|
4274
|
+
"either_of",
|
|
4275
|
+
"futures",
|
|
4276
|
+
"gloo-net 0.6.0",
|
|
4277
|
+
"js-sys",
|
|
4278
|
+
"leptos",
|
|
4279
|
+
"leptos_router_macro",
|
|
4280
|
+
"once_cell",
|
|
4281
|
+
"or_poisoned",
|
|
4282
|
+
"reactive_graph",
|
|
4283
|
+
"send_wrapper",
|
|
4284
|
+
"tachys",
|
|
4285
|
+
"thiserror 2.0.17",
|
|
4286
|
+
"url",
|
|
4287
|
+
"wasm-bindgen",
|
|
4288
|
+
"web-sys",
|
|
4289
|
+
]
|
|
4290
|
+
|
|
4291
|
+
[[package]]
|
|
4292
|
+
name = "leptos_router_macro"
|
|
4293
|
+
version = "0.7.8"
|
|
4294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4295
|
+
checksum = "e31197af38d209ffc5d9f89715381c415a1570176f8d23455fbe00d148e79640"
|
|
4296
|
+
dependencies = [
|
|
4297
|
+
"proc-macro-error2",
|
|
4298
|
+
"proc-macro2",
|
|
4299
|
+
"quote",
|
|
4300
|
+
"syn 2.0.111",
|
|
4301
|
+
]
|
|
4302
|
+
|
|
4303
|
+
[[package]]
|
|
4304
|
+
name = "leptos_server"
|
|
4305
|
+
version = "0.7.8"
|
|
4306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4307
|
+
checksum = "66985242812ec95e224fb48effe651ba02728beca92c461a9464c811a71aab11"
|
|
2704
4308
|
dependencies = [
|
|
2705
|
-
"
|
|
2706
|
-
"
|
|
2707
|
-
"
|
|
4309
|
+
"any_spawner",
|
|
4310
|
+
"base64 0.22.1",
|
|
4311
|
+
"codee",
|
|
4312
|
+
"futures",
|
|
4313
|
+
"hydration_context",
|
|
4314
|
+
"or_poisoned",
|
|
4315
|
+
"reactive_graph",
|
|
4316
|
+
"send_wrapper",
|
|
4317
|
+
"serde",
|
|
4318
|
+
"serde_json",
|
|
4319
|
+
"server_fn",
|
|
4320
|
+
"tachys",
|
|
2708
4321
|
]
|
|
2709
4322
|
|
|
2710
4323
|
[[package]]
|
|
@@ -2740,6 +4353,12 @@ dependencies = [
|
|
|
2740
4353
|
"redox_syscall 0.5.18",
|
|
2741
4354
|
]
|
|
2742
4355
|
|
|
4356
|
+
[[package]]
|
|
4357
|
+
name = "linear-map"
|
|
4358
|
+
version = "1.2.0"
|
|
4359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4360
|
+
checksum = "bfae20f6b19ad527b550c223fddc3077a547fc70cda94b9b566575423fd303ee"
|
|
4361
|
+
|
|
2743
4362
|
[[package]]
|
|
2744
4363
|
name = "linux-raw-sys"
|
|
2745
4364
|
version = "0.4.15"
|
|
@@ -2788,6 +4407,38 @@ dependencies = [
|
|
|
2788
4407
|
"libc",
|
|
2789
4408
|
]
|
|
2790
4409
|
|
|
4410
|
+
[[package]]
|
|
4411
|
+
name = "manyhow"
|
|
4412
|
+
version = "0.11.4"
|
|
4413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4414
|
+
checksum = "b33efb3ca6d3b07393750d4030418d594ab1139cee518f0dc88db70fec873587"
|
|
4415
|
+
dependencies = [
|
|
4416
|
+
"manyhow-macros",
|
|
4417
|
+
"proc-macro2",
|
|
4418
|
+
"quote",
|
|
4419
|
+
"syn 2.0.111",
|
|
4420
|
+
]
|
|
4421
|
+
|
|
4422
|
+
[[package]]
|
|
4423
|
+
name = "manyhow-macros"
|
|
4424
|
+
version = "0.11.4"
|
|
4425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4426
|
+
checksum = "46fce34d199b78b6e6073abf984c9cf5fd3e9330145a93ee0738a7443e371495"
|
|
4427
|
+
dependencies = [
|
|
4428
|
+
"proc-macro-utils",
|
|
4429
|
+
"proc-macro2",
|
|
4430
|
+
"quote",
|
|
4431
|
+
]
|
|
4432
|
+
|
|
4433
|
+
[[package]]
|
|
4434
|
+
name = "matchers"
|
|
4435
|
+
version = "0.2.0"
|
|
4436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4437
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
4438
|
+
dependencies = [
|
|
4439
|
+
"regex-automata",
|
|
4440
|
+
]
|
|
4441
|
+
|
|
2791
4442
|
[[package]]
|
|
2792
4443
|
name = "memchr"
|
|
2793
4444
|
version = "2.7.6"
|
|
@@ -2898,13 +4549,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2898
4549
|
checksum = "8bd5a652b6faf21496f2cfd88fc49989c8db0825d1f6746b1a71a6ede24a63ad"
|
|
2899
4550
|
dependencies = [
|
|
2900
4551
|
"arrayvec",
|
|
2901
|
-
"bit-set",
|
|
4552
|
+
"bit-set 0.6.0",
|
|
4553
|
+
"bitflags 2.10.0",
|
|
4554
|
+
"cfg_aliases 0.1.1",
|
|
4555
|
+
"codespan-reporting",
|
|
4556
|
+
"hexf-parse",
|
|
4557
|
+
"indexmap",
|
|
4558
|
+
"log",
|
|
4559
|
+
"rustc-hash 1.1.0",
|
|
4560
|
+
"spirv",
|
|
4561
|
+
"termcolor",
|
|
4562
|
+
"thiserror 1.0.69",
|
|
4563
|
+
"unicode-xid",
|
|
4564
|
+
]
|
|
4565
|
+
|
|
4566
|
+
[[package]]
|
|
4567
|
+
name = "naga"
|
|
4568
|
+
version = "23.1.0"
|
|
4569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4570
|
+
checksum = "364f94bc34f61332abebe8cad6f6cd82a5b65cff22c828d05d0968911462ca4f"
|
|
4571
|
+
dependencies = [
|
|
4572
|
+
"arrayvec",
|
|
4573
|
+
"bit-set 0.8.0",
|
|
2902
4574
|
"bitflags 2.10.0",
|
|
2903
4575
|
"cfg_aliases 0.1.1",
|
|
2904
4576
|
"codespan-reporting",
|
|
2905
4577
|
"hexf-parse",
|
|
2906
4578
|
"indexmap",
|
|
2907
4579
|
"log",
|
|
4580
|
+
"pp-rs",
|
|
2908
4581
|
"rustc-hash 1.1.0",
|
|
2909
4582
|
"spirv",
|
|
2910
4583
|
"termcolor",
|
|
@@ -2912,6 +4585,26 @@ dependencies = [
|
|
|
2912
4585
|
"unicode-xid",
|
|
2913
4586
|
]
|
|
2914
4587
|
|
|
4588
|
+
[[package]]
|
|
4589
|
+
name = "naga_oil"
|
|
4590
|
+
version = "0.16.0"
|
|
4591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4592
|
+
checksum = "31ea1f080bb359927cd5404d0af1e5e6758f4f2d82ecfbebb0a0c434764e40f1"
|
|
4593
|
+
dependencies = [
|
|
4594
|
+
"bit-set 0.5.3",
|
|
4595
|
+
"codespan-reporting",
|
|
4596
|
+
"data-encoding",
|
|
4597
|
+
"indexmap",
|
|
4598
|
+
"naga 23.1.0",
|
|
4599
|
+
"once_cell",
|
|
4600
|
+
"regex",
|
|
4601
|
+
"regex-syntax",
|
|
4602
|
+
"rustc-hash 1.1.0",
|
|
4603
|
+
"thiserror 1.0.69",
|
|
4604
|
+
"tracing",
|
|
4605
|
+
"unicode-ident",
|
|
4606
|
+
]
|
|
4607
|
+
|
|
2915
4608
|
[[package]]
|
|
2916
4609
|
name = "ndk"
|
|
2917
4610
|
version = "0.9.0"
|
|
@@ -2951,6 +4644,12 @@ dependencies = [
|
|
|
2951
4644
|
"jni-sys",
|
|
2952
4645
|
]
|
|
2953
4646
|
|
|
4647
|
+
[[package]]
|
|
4648
|
+
name = "next_tuple"
|
|
4649
|
+
version = "0.1.0"
|
|
4650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4651
|
+
checksum = "60993920e071b0c9b66f14e2b32740a4e27ffc82854dcd72035887f336a09a28"
|
|
4652
|
+
|
|
2954
4653
|
[[package]]
|
|
2955
4654
|
name = "nix"
|
|
2956
4655
|
version = "0.29.0"
|
|
@@ -2993,6 +4692,12 @@ dependencies = [
|
|
|
2993
4692
|
"minimal-lexical",
|
|
2994
4693
|
]
|
|
2995
4694
|
|
|
4695
|
+
[[package]]
|
|
4696
|
+
name = "nonmax"
|
|
4697
|
+
version = "0.5.5"
|
|
4698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4699
|
+
checksum = "610a5acd306ec67f907abe5567859a3c693fb9886eb1f012ab8f2a47bef3db51"
|
|
4700
|
+
|
|
2996
4701
|
[[package]]
|
|
2997
4702
|
name = "nu-ansi-term"
|
|
2998
4703
|
version = "0.50.3"
|
|
@@ -3325,6 +5030,26 @@ dependencies = [
|
|
|
3325
5030
|
"objc2-foundation 0.2.2",
|
|
3326
5031
|
]
|
|
3327
5032
|
|
|
5033
|
+
[[package]]
|
|
5034
|
+
name = "oco_ref"
|
|
5035
|
+
version = "0.2.1"
|
|
5036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5037
|
+
checksum = "ed0423ff9973dea4d6bd075934fdda86ebb8c05bdf9d6b0507067d4a1226371d"
|
|
5038
|
+
dependencies = [
|
|
5039
|
+
"serde",
|
|
5040
|
+
"thiserror 2.0.17",
|
|
5041
|
+
]
|
|
5042
|
+
|
|
5043
|
+
[[package]]
|
|
5044
|
+
name = "offset-allocator"
|
|
5045
|
+
version = "0.2.0"
|
|
5046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5047
|
+
checksum = "e234d535da3521eb95106f40f0b73483d80bfb3aacf27c40d7e2b72f1a3e00a2"
|
|
5048
|
+
dependencies = [
|
|
5049
|
+
"log",
|
|
5050
|
+
"nonmax",
|
|
5051
|
+
]
|
|
5052
|
+
|
|
3328
5053
|
[[package]]
|
|
3329
5054
|
name = "once_cell"
|
|
3330
5055
|
version = "1.21.3"
|
|
@@ -3343,6 +5068,32 @@ version = "11.1.5"
|
|
|
3343
5068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3344
5069
|
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
3345
5070
|
|
|
5071
|
+
[[package]]
|
|
5072
|
+
name = "open-enum"
|
|
5073
|
+
version = "0.5.2"
|
|
5074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5075
|
+
checksum = "2eb2508143a400b3361812094d987dd5adc81f0f5294a46491be648d6c94cab5"
|
|
5076
|
+
dependencies = [
|
|
5077
|
+
"open-enum-derive",
|
|
5078
|
+
]
|
|
5079
|
+
|
|
5080
|
+
[[package]]
|
|
5081
|
+
name = "open-enum-derive"
|
|
5082
|
+
version = "0.5.2"
|
|
5083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5084
|
+
checksum = "8d1296fab5231654a5aec8bf9e87ba4e3938c502fc4c3c0425a00084c78944be"
|
|
5085
|
+
dependencies = [
|
|
5086
|
+
"proc-macro2",
|
|
5087
|
+
"quote",
|
|
5088
|
+
"syn 2.0.111",
|
|
5089
|
+
]
|
|
5090
|
+
|
|
5091
|
+
[[package]]
|
|
5092
|
+
name = "or_poisoned"
|
|
5093
|
+
version = "0.1.0"
|
|
5094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5095
|
+
checksum = "8c04f5d74368e4d0dfe06c45c8627c81bd7c317d52762d118fb9b3076f6420fd"
|
|
5096
|
+
|
|
3346
5097
|
[[package]]
|
|
3347
5098
|
name = "orbclient"
|
|
3348
5099
|
version = "0.3.49"
|
|
@@ -3406,12 +5157,28 @@ version = "1.0.15"
|
|
|
3406
5157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
5158
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
3408
5159
|
|
|
5160
|
+
[[package]]
|
|
5161
|
+
name = "pathdiff"
|
|
5162
|
+
version = "0.2.3"
|
|
5163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5164
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
5165
|
+
|
|
3409
5166
|
[[package]]
|
|
3410
5167
|
name = "percent-encoding"
|
|
3411
5168
|
version = "2.3.2"
|
|
3412
5169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3413
5170
|
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
3414
5171
|
|
|
5172
|
+
[[package]]
|
|
5173
|
+
name = "petgraph"
|
|
5174
|
+
version = "0.6.5"
|
|
5175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5176
|
+
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
|
|
5177
|
+
dependencies = [
|
|
5178
|
+
"fixedbitset 0.4.2",
|
|
5179
|
+
"indexmap",
|
|
5180
|
+
]
|
|
5181
|
+
|
|
3415
5182
|
[[package]]
|
|
3416
5183
|
name = "phf"
|
|
3417
5184
|
version = "0.11.3"
|
|
@@ -3580,6 +5347,15 @@ version = "1.11.1"
|
|
|
3580
5347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3581
5348
|
checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
|
|
3582
5349
|
|
|
5350
|
+
[[package]]
|
|
5351
|
+
name = "portable-atomic-util"
|
|
5352
|
+
version = "0.2.4"
|
|
5353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5354
|
+
checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
|
|
5355
|
+
dependencies = [
|
|
5356
|
+
"portable-atomic",
|
|
5357
|
+
]
|
|
5358
|
+
|
|
3583
5359
|
[[package]]
|
|
3584
5360
|
name = "potential_utf"
|
|
3585
5361
|
version = "0.1.4"
|
|
@@ -3589,6 +5365,15 @@ dependencies = [
|
|
|
3589
5365
|
"zerovec",
|
|
3590
5366
|
]
|
|
3591
5367
|
|
|
5368
|
+
[[package]]
|
|
5369
|
+
name = "pp-rs"
|
|
5370
|
+
version = "0.2.1"
|
|
5371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5372
|
+
checksum = "bb458bb7f6e250e6eb79d5026badc10a3ebb8f9a15d1fff0f13d17c71f4d6dee"
|
|
5373
|
+
dependencies = [
|
|
5374
|
+
"unicode-xid",
|
|
5375
|
+
]
|
|
5376
|
+
|
|
3592
5377
|
[[package]]
|
|
3593
5378
|
name = "ppv-lite86"
|
|
3594
5379
|
version = "0.2.21"
|
|
@@ -3634,27 +5419,36 @@ dependencies = [
|
|
|
3634
5419
|
]
|
|
3635
5420
|
|
|
3636
5421
|
[[package]]
|
|
3637
|
-
name = "proc-macro-error"
|
|
3638
|
-
version = "
|
|
5422
|
+
name = "proc-macro-error-attr2"
|
|
5423
|
+
version = "2.0.0"
|
|
3639
5424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3640
|
-
checksum = "
|
|
5425
|
+
checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
|
|
3641
5426
|
dependencies = [
|
|
3642
|
-
"proc-macro-error-attr",
|
|
3643
5427
|
"proc-macro2",
|
|
3644
5428
|
"quote",
|
|
3645
|
-
"syn 1.0.109",
|
|
3646
|
-
"version_check",
|
|
3647
5429
|
]
|
|
3648
5430
|
|
|
3649
5431
|
[[package]]
|
|
3650
|
-
name = "proc-macro-
|
|
3651
|
-
version = "
|
|
5432
|
+
name = "proc-macro-error2"
|
|
5433
|
+
version = "2.0.1"
|
|
3652
5434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3653
|
-
checksum = "
|
|
5435
|
+
checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
|
|
3654
5436
|
dependencies = [
|
|
5437
|
+
"proc-macro-error-attr2",
|
|
3655
5438
|
"proc-macro2",
|
|
3656
5439
|
"quote",
|
|
3657
|
-
"
|
|
5440
|
+
"syn 2.0.111",
|
|
5441
|
+
]
|
|
5442
|
+
|
|
5443
|
+
[[package]]
|
|
5444
|
+
name = "proc-macro-utils"
|
|
5445
|
+
version = "0.10.0"
|
|
5446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5447
|
+
checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
|
|
5448
|
+
dependencies = [
|
|
5449
|
+
"proc-macro2",
|
|
5450
|
+
"quote",
|
|
5451
|
+
"smallvec",
|
|
3658
5452
|
]
|
|
3659
5453
|
|
|
3660
5454
|
[[package]]
|
|
@@ -3667,27 +5461,23 @@ dependencies = [
|
|
|
3667
5461
|
]
|
|
3668
5462
|
|
|
3669
5463
|
[[package]]
|
|
3670
|
-
name = "
|
|
3671
|
-
version = "
|
|
5464
|
+
name = "proc-macro2-diagnostics"
|
|
5465
|
+
version = "0.10.1"
|
|
3672
5466
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3673
|
-
checksum = "
|
|
5467
|
+
checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
|
|
5468
|
+
dependencies = [
|
|
5469
|
+
"proc-macro2",
|
|
5470
|
+
"quote",
|
|
5471
|
+
"syn 2.0.111",
|
|
5472
|
+
"version_check",
|
|
5473
|
+
"yansi",
|
|
5474
|
+
]
|
|
3674
5475
|
|
|
3675
5476
|
[[package]]
|
|
3676
|
-
name = "
|
|
3677
|
-
version = "
|
|
5477
|
+
name = "profiling"
|
|
5478
|
+
version = "1.0.17"
|
|
3678
5479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3679
|
-
checksum = "
|
|
3680
|
-
dependencies = [
|
|
3681
|
-
"futures",
|
|
3682
|
-
"gloo 0.8.1",
|
|
3683
|
-
"num_cpus",
|
|
3684
|
-
"once_cell",
|
|
3685
|
-
"pin-project",
|
|
3686
|
-
"pinned",
|
|
3687
|
-
"tokio",
|
|
3688
|
-
"tokio-stream",
|
|
3689
|
-
"wasm-bindgen-futures",
|
|
3690
|
-
]
|
|
5480
|
+
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
|
|
3691
5481
|
|
|
3692
5482
|
[[package]]
|
|
3693
5483
|
name = "pxfm"
|
|
@@ -3793,12 +5583,40 @@ dependencies = [
|
|
|
3793
5583
|
"proc-macro2",
|
|
3794
5584
|
]
|
|
3795
5585
|
|
|
5586
|
+
[[package]]
|
|
5587
|
+
name = "quote-use"
|
|
5588
|
+
version = "0.8.4"
|
|
5589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5590
|
+
checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
|
|
5591
|
+
dependencies = [
|
|
5592
|
+
"quote",
|
|
5593
|
+
"quote-use-macros",
|
|
5594
|
+
]
|
|
5595
|
+
|
|
5596
|
+
[[package]]
|
|
5597
|
+
name = "quote-use-macros"
|
|
5598
|
+
version = "0.8.4"
|
|
5599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5600
|
+
checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
|
|
5601
|
+
dependencies = [
|
|
5602
|
+
"proc-macro-utils",
|
|
5603
|
+
"proc-macro2",
|
|
5604
|
+
"quote",
|
|
5605
|
+
"syn 2.0.111",
|
|
5606
|
+
]
|
|
5607
|
+
|
|
3796
5608
|
[[package]]
|
|
3797
5609
|
name = "r-efi"
|
|
3798
5610
|
version = "5.3.0"
|
|
3799
5611
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3800
5612
|
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
3801
5613
|
|
|
5614
|
+
[[package]]
|
|
5615
|
+
name = "radsort"
|
|
5616
|
+
version = "0.1.1"
|
|
5617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5618
|
+
checksum = "019b4b213425016d7d84a153c4c73afb0946fbb4840e4eece7ba8848b9d6da22"
|
|
5619
|
+
|
|
3802
5620
|
[[package]]
|
|
3803
5621
|
name = "rand"
|
|
3804
5622
|
version = "0.8.5"
|
|
@@ -3824,45 +5642,152 @@ dependencies = [
|
|
|
3824
5642
|
name = "rand_chacha"
|
|
3825
5643
|
version = "0.3.1"
|
|
3826
5644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3827
|
-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
5645
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
5646
|
+
dependencies = [
|
|
5647
|
+
"ppv-lite86",
|
|
5648
|
+
"rand_core 0.6.4",
|
|
5649
|
+
]
|
|
5650
|
+
|
|
5651
|
+
[[package]]
|
|
5652
|
+
name = "rand_chacha"
|
|
5653
|
+
version = "0.9.0"
|
|
5654
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5655
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
5656
|
+
dependencies = [
|
|
5657
|
+
"ppv-lite86",
|
|
5658
|
+
"rand_core 0.9.3",
|
|
5659
|
+
]
|
|
5660
|
+
|
|
5661
|
+
[[package]]
|
|
5662
|
+
name = "rand_core"
|
|
5663
|
+
version = "0.6.4"
|
|
5664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5665
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
5666
|
+
dependencies = [
|
|
5667
|
+
"getrandom 0.2.16",
|
|
5668
|
+
]
|
|
5669
|
+
|
|
5670
|
+
[[package]]
|
|
5671
|
+
name = "rand_core"
|
|
5672
|
+
version = "0.9.3"
|
|
5673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5674
|
+
checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
|
|
5675
|
+
dependencies = [
|
|
5676
|
+
"getrandom 0.3.4",
|
|
5677
|
+
]
|
|
5678
|
+
|
|
5679
|
+
[[package]]
|
|
5680
|
+
name = "rand_distr"
|
|
5681
|
+
version = "0.4.3"
|
|
5682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5683
|
+
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
|
|
5684
|
+
dependencies = [
|
|
5685
|
+
"num-traits",
|
|
5686
|
+
"rand 0.8.5",
|
|
5687
|
+
]
|
|
5688
|
+
|
|
5689
|
+
[[package]]
|
|
5690
|
+
name = "range-alloc"
|
|
5691
|
+
version = "0.1.4"
|
|
5692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5693
|
+
checksum = "c3d6831663a5098ea164f89cff59c6284e95f4e3c76ce9848d4529f5ccca9bde"
|
|
5694
|
+
|
|
5695
|
+
[[package]]
|
|
5696
|
+
name = "rangemap"
|
|
5697
|
+
version = "1.7.0"
|
|
5698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5699
|
+
checksum = "acbbbbea733ec66275512d0b9694f34102e7d5406fdbe2ad8d21b28dce92887c"
|
|
5700
|
+
|
|
5701
|
+
[[package]]
|
|
5702
|
+
name = "raw-window-handle"
|
|
5703
|
+
version = "0.6.2"
|
|
5704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5705
|
+
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
5706
|
+
|
|
5707
|
+
[[package]]
|
|
5708
|
+
name = "rayon"
|
|
5709
|
+
version = "1.11.0"
|
|
5710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5711
|
+
checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
|
|
5712
|
+
dependencies = [
|
|
5713
|
+
"either",
|
|
5714
|
+
"rayon-core",
|
|
5715
|
+
]
|
|
5716
|
+
|
|
5717
|
+
[[package]]
|
|
5718
|
+
name = "rayon-core"
|
|
5719
|
+
version = "1.13.0"
|
|
5720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5721
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
5722
|
+
dependencies = [
|
|
5723
|
+
"crossbeam-deque",
|
|
5724
|
+
"crossbeam-utils",
|
|
5725
|
+
]
|
|
5726
|
+
|
|
5727
|
+
[[package]]
|
|
5728
|
+
name = "reactive_graph"
|
|
5729
|
+
version = "0.1.8"
|
|
5730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5731
|
+
checksum = "76a0ccddbc11a648bd09761801dac9e3f246ef7641130987d6120fced22515e6"
|
|
3828
5732
|
dependencies = [
|
|
3829
|
-
"
|
|
3830
|
-
"
|
|
5733
|
+
"any_spawner",
|
|
5734
|
+
"async-lock",
|
|
5735
|
+
"futures",
|
|
5736
|
+
"guardian",
|
|
5737
|
+
"hydration_context",
|
|
5738
|
+
"or_poisoned",
|
|
5739
|
+
"pin-project-lite",
|
|
5740
|
+
"rustc-hash 2.1.1",
|
|
5741
|
+
"send_wrapper",
|
|
5742
|
+
"serde",
|
|
5743
|
+
"slotmap",
|
|
5744
|
+
"thiserror 2.0.17",
|
|
5745
|
+
"web-sys",
|
|
3831
5746
|
]
|
|
3832
5747
|
|
|
3833
5748
|
[[package]]
|
|
3834
|
-
name = "
|
|
3835
|
-
version = "0.
|
|
5749
|
+
name = "reactive_stores"
|
|
5750
|
+
version = "0.1.8"
|
|
3836
5751
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3837
|
-
checksum = "
|
|
5752
|
+
checksum = "aadc7c19e3a360bf19cd595d2dc8b58ce67b9240b95a103fbc1317a8ff194237"
|
|
3838
5753
|
dependencies = [
|
|
3839
|
-
"
|
|
3840
|
-
"
|
|
5754
|
+
"guardian",
|
|
5755
|
+
"itertools 0.14.0",
|
|
5756
|
+
"or_poisoned",
|
|
5757
|
+
"paste",
|
|
5758
|
+
"reactive_graph",
|
|
5759
|
+
"reactive_stores_macro",
|
|
5760
|
+
"rustc-hash 2.1.1",
|
|
3841
5761
|
]
|
|
3842
5762
|
|
|
3843
5763
|
[[package]]
|
|
3844
|
-
name = "
|
|
3845
|
-
version = "0.
|
|
5764
|
+
name = "reactive_stores_macro"
|
|
5765
|
+
version = "0.1.8"
|
|
3846
5766
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3847
|
-
checksum = "
|
|
5767
|
+
checksum = "221095cb028dc51fbc2833743ea8b1a585da1a2af19b440b3528027495bf1f2d"
|
|
3848
5768
|
dependencies = [
|
|
3849
|
-
"
|
|
5769
|
+
"convert_case 0.7.1",
|
|
5770
|
+
"proc-macro-error2",
|
|
5771
|
+
"proc-macro2",
|
|
5772
|
+
"quote",
|
|
5773
|
+
"syn 2.0.111",
|
|
3850
5774
|
]
|
|
3851
5775
|
|
|
3852
5776
|
[[package]]
|
|
3853
|
-
name = "
|
|
3854
|
-
version = "0.
|
|
5777
|
+
name = "read-fonts"
|
|
5778
|
+
version = "0.22.7"
|
|
3855
5779
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3856
|
-
checksum = "
|
|
5780
|
+
checksum = "69aacb76b5c29acfb7f90155d39759a29496aebb49395830e928a9703d2eec2f"
|
|
3857
5781
|
dependencies = [
|
|
3858
|
-
"
|
|
5782
|
+
"bytemuck",
|
|
5783
|
+
"font-types",
|
|
3859
5784
|
]
|
|
3860
5785
|
|
|
3861
5786
|
[[package]]
|
|
3862
|
-
name = "
|
|
3863
|
-
version = "0.
|
|
5787
|
+
name = "rectangle-pack"
|
|
5788
|
+
version = "0.4.2"
|
|
3864
5789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3865
|
-
checksum = "
|
|
5790
|
+
checksum = "a0d463f2884048e7153449a55166f91028d5b0ea53c79377099ce4e8cf0cf9bb"
|
|
3866
5791
|
|
|
3867
5792
|
[[package]]
|
|
3868
5793
|
name = "redox_syscall"
|
|
@@ -3882,6 +5807,35 @@ dependencies = [
|
|
|
3882
5807
|
"bitflags 2.10.0",
|
|
3883
5808
|
]
|
|
3884
5809
|
|
|
5810
|
+
[[package]]
|
|
5811
|
+
name = "regex"
|
|
5812
|
+
version = "1.12.2"
|
|
5813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5814
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
5815
|
+
dependencies = [
|
|
5816
|
+
"aho-corasick",
|
|
5817
|
+
"memchr",
|
|
5818
|
+
"regex-automata",
|
|
5819
|
+
"regex-syntax",
|
|
5820
|
+
]
|
|
5821
|
+
|
|
5822
|
+
[[package]]
|
|
5823
|
+
name = "regex-automata"
|
|
5824
|
+
version = "0.4.13"
|
|
5825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5826
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
5827
|
+
dependencies = [
|
|
5828
|
+
"aho-corasick",
|
|
5829
|
+
"memchr",
|
|
5830
|
+
"regex-syntax",
|
|
5831
|
+
]
|
|
5832
|
+
|
|
5833
|
+
[[package]]
|
|
5834
|
+
name = "regex-syntax"
|
|
5835
|
+
version = "0.8.8"
|
|
5836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5837
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
5838
|
+
|
|
3885
5839
|
[[package]]
|
|
3886
5840
|
name = "renderdoc-sys"
|
|
3887
5841
|
version = "1.1.0"
|
|
@@ -3954,12 +5908,39 @@ dependencies = [
|
|
|
3954
5908
|
"bytemuck",
|
|
3955
5909
|
]
|
|
3956
5910
|
|
|
5911
|
+
[[package]]
|
|
5912
|
+
name = "ron"
|
|
5913
|
+
version = "0.8.1"
|
|
5914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5915
|
+
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
|
|
5916
|
+
dependencies = [
|
|
5917
|
+
"base64 0.21.7",
|
|
5918
|
+
"bitflags 2.10.0",
|
|
5919
|
+
"serde",
|
|
5920
|
+
"serde_derive",
|
|
5921
|
+
]
|
|
5922
|
+
|
|
3957
5923
|
[[package]]
|
|
3958
5924
|
name = "roxmltree"
|
|
3959
5925
|
version = "0.20.0"
|
|
3960
5926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3961
5927
|
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
3962
5928
|
|
|
5929
|
+
[[package]]
|
|
5930
|
+
name = "rstml"
|
|
5931
|
+
version = "0.12.1"
|
|
5932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5933
|
+
checksum = "61cf4616de7499fc5164570d40ca4e1b24d231c6833a88bff0fe00725080fd56"
|
|
5934
|
+
dependencies = [
|
|
5935
|
+
"derive-where",
|
|
5936
|
+
"proc-macro2",
|
|
5937
|
+
"proc-macro2-diagnostics",
|
|
5938
|
+
"quote",
|
|
5939
|
+
"syn 2.0.111",
|
|
5940
|
+
"syn_derive",
|
|
5941
|
+
"thiserror 2.0.17",
|
|
5942
|
+
]
|
|
5943
|
+
|
|
3963
5944
|
[[package]]
|
|
3964
5945
|
name = "rustc-hash"
|
|
3965
5946
|
version = "1.1.0"
|
|
@@ -4021,6 +6002,7 @@ checksum = "cfb9cf8877777222e4a3bc7eb247e398b56baba500c38c1c46842431adc8b55c"
|
|
|
4021
6002
|
dependencies = [
|
|
4022
6003
|
"bitflags 2.10.0",
|
|
4023
6004
|
"bytemuck",
|
|
6005
|
+
"libm",
|
|
4024
6006
|
"smallvec",
|
|
4025
6007
|
"ttf-parser 0.21.1",
|
|
4026
6008
|
"unicode-bidi-mirroring 0.2.0",
|
|
@@ -4047,6 +6029,15 @@ dependencies = [
|
|
|
4047
6029
|
"unicode-script",
|
|
4048
6030
|
]
|
|
4049
6031
|
|
|
6032
|
+
[[package]]
|
|
6033
|
+
name = "ruzstd"
|
|
6034
|
+
version = "0.7.3"
|
|
6035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6036
|
+
checksum = "fad02996bfc73da3e301efe90b1837be9ed8f4a462b6ed410aa35d00381de89f"
|
|
6037
|
+
dependencies = [
|
|
6038
|
+
"twox-hash",
|
|
6039
|
+
]
|
|
6040
|
+
|
|
4050
6041
|
[[package]]
|
|
4051
6042
|
name = "ryu"
|
|
4052
6043
|
version = "1.0.20"
|
|
@@ -4107,6 +6098,12 @@ dependencies = [
|
|
|
4107
6098
|
"tiny-skia",
|
|
4108
6099
|
]
|
|
4109
6100
|
|
|
6101
|
+
[[package]]
|
|
6102
|
+
name = "self_cell"
|
|
6103
|
+
version = "1.2.1"
|
|
6104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6105
|
+
checksum = "16c2f82143577edb4921b71ede051dac62ca3c16084e918bf7b40c96ae10eb33"
|
|
6106
|
+
|
|
4110
6107
|
[[package]]
|
|
4111
6108
|
name = "semver"
|
|
4112
6109
|
version = "1.0.27"
|
|
@@ -4118,24 +6115,22 @@ dependencies = [
|
|
|
4118
6115
|
]
|
|
4119
6116
|
|
|
4120
6117
|
[[package]]
|
|
4121
|
-
name = "
|
|
4122
|
-
version = "
|
|
6118
|
+
name = "send_wrapper"
|
|
6119
|
+
version = "0.6.0"
|
|
4123
6120
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4124
|
-
checksum = "
|
|
6121
|
+
checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
|
|
4125
6122
|
dependencies = [
|
|
4126
|
-
"
|
|
4127
|
-
"serde_derive",
|
|
6123
|
+
"futures-core",
|
|
4128
6124
|
]
|
|
4129
6125
|
|
|
4130
6126
|
[[package]]
|
|
4131
|
-
name = "serde
|
|
4132
|
-
version = "0.
|
|
6127
|
+
name = "serde"
|
|
6128
|
+
version = "1.0.228"
|
|
4133
6129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4134
|
-
checksum = "
|
|
6130
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
4135
6131
|
dependencies = [
|
|
4136
|
-
"
|
|
4137
|
-
"
|
|
4138
|
-
"wasm-bindgen",
|
|
6132
|
+
"serde_core",
|
|
6133
|
+
"serde_derive",
|
|
4139
6134
|
]
|
|
4140
6135
|
|
|
4141
6136
|
[[package]]
|
|
@@ -4182,6 +6177,17 @@ dependencies = [
|
|
|
4182
6177
|
"serde_core",
|
|
4183
6178
|
]
|
|
4184
6179
|
|
|
6180
|
+
[[package]]
|
|
6181
|
+
name = "serde_qs"
|
|
6182
|
+
version = "0.13.0"
|
|
6183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6184
|
+
checksum = "cd34f36fe4c5ba9654417139a9b3a20d2e1de6012ee678ad14d240c22c78d8d6"
|
|
6185
|
+
dependencies = [
|
|
6186
|
+
"percent-encoding",
|
|
6187
|
+
"serde",
|
|
6188
|
+
"thiserror 1.0.69",
|
|
6189
|
+
]
|
|
6190
|
+
|
|
4185
6191
|
[[package]]
|
|
4186
6192
|
name = "serde_repr"
|
|
4187
6193
|
version = "0.1.20"
|
|
@@ -4202,6 +6208,15 @@ dependencies = [
|
|
|
4202
6208
|
"serde",
|
|
4203
6209
|
]
|
|
4204
6210
|
|
|
6211
|
+
[[package]]
|
|
6212
|
+
name = "serde_spanned"
|
|
6213
|
+
version = "1.0.3"
|
|
6214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6215
|
+
checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
|
|
6216
|
+
dependencies = [
|
|
6217
|
+
"serde_core",
|
|
6218
|
+
]
|
|
6219
|
+
|
|
4205
6220
|
[[package]]
|
|
4206
6221
|
name = "serde_urlencoded"
|
|
4207
6222
|
version = "0.7.1"
|
|
@@ -4214,6 +6229,61 @@ dependencies = [
|
|
|
4214
6229
|
"serde",
|
|
4215
6230
|
]
|
|
4216
6231
|
|
|
6232
|
+
[[package]]
|
|
6233
|
+
name = "server_fn"
|
|
6234
|
+
version = "0.7.8"
|
|
6235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6236
|
+
checksum = "8d05a9e3fd8d7404985418db38c6617cc793a1a27f398d4fbc9dfe8e41b804e6"
|
|
6237
|
+
dependencies = [
|
|
6238
|
+
"bytes",
|
|
6239
|
+
"const_format",
|
|
6240
|
+
"dashmap",
|
|
6241
|
+
"futures",
|
|
6242
|
+
"gloo-net 0.6.0",
|
|
6243
|
+
"http 1.4.0",
|
|
6244
|
+
"inventory",
|
|
6245
|
+
"js-sys",
|
|
6246
|
+
"once_cell",
|
|
6247
|
+
"pin-project-lite",
|
|
6248
|
+
"send_wrapper",
|
|
6249
|
+
"serde",
|
|
6250
|
+
"serde_json",
|
|
6251
|
+
"serde_qs",
|
|
6252
|
+
"server_fn_macro_default",
|
|
6253
|
+
"thiserror 2.0.17",
|
|
6254
|
+
"throw_error",
|
|
6255
|
+
"url",
|
|
6256
|
+
"wasm-bindgen",
|
|
6257
|
+
"wasm-bindgen-futures",
|
|
6258
|
+
"wasm-streams",
|
|
6259
|
+
"web-sys",
|
|
6260
|
+
"xxhash-rust",
|
|
6261
|
+
]
|
|
6262
|
+
|
|
6263
|
+
[[package]]
|
|
6264
|
+
name = "server_fn_macro"
|
|
6265
|
+
version = "0.7.8"
|
|
6266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6267
|
+
checksum = "504b35e883267b3206317b46d02952ed7b8bf0e11b2e209e2eb453b609a5e052"
|
|
6268
|
+
dependencies = [
|
|
6269
|
+
"const_format",
|
|
6270
|
+
"convert_case 0.6.0",
|
|
6271
|
+
"proc-macro2",
|
|
6272
|
+
"quote",
|
|
6273
|
+
"syn 2.0.111",
|
|
6274
|
+
"xxhash-rust",
|
|
6275
|
+
]
|
|
6276
|
+
|
|
6277
|
+
[[package]]
|
|
6278
|
+
name = "server_fn_macro_default"
|
|
6279
|
+
version = "0.7.8"
|
|
6280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6281
|
+
checksum = "eb8b274f568c94226a8045668554aace8142a59b8bca5414ac5a79627c825568"
|
|
6282
|
+
dependencies = [
|
|
6283
|
+
"server_fn_macro",
|
|
6284
|
+
"syn 2.0.111",
|
|
6285
|
+
]
|
|
6286
|
+
|
|
4217
6287
|
[[package]]
|
|
4218
6288
|
name = "sha1"
|
|
4219
6289
|
version = "0.10.6"
|
|
@@ -4225,6 +6295,15 @@ dependencies = [
|
|
|
4225
6295
|
"digest",
|
|
4226
6296
|
]
|
|
4227
6297
|
|
|
6298
|
+
[[package]]
|
|
6299
|
+
name = "sharded-slab"
|
|
6300
|
+
version = "0.1.7"
|
|
6301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6302
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
6303
|
+
dependencies = [
|
|
6304
|
+
"lazy_static",
|
|
6305
|
+
]
|
|
6306
|
+
|
|
4228
6307
|
[[package]]
|
|
4229
6308
|
name = "shlex"
|
|
4230
6309
|
version = "1.3.0"
|
|
@@ -4267,6 +6346,16 @@ version = "1.0.1"
|
|
|
4267
6346
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4268
6347
|
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
4269
6348
|
|
|
6349
|
+
[[package]]
|
|
6350
|
+
name = "skrifa"
|
|
6351
|
+
version = "0.22.3"
|
|
6352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6353
|
+
checksum = "8e1c44ad1f6c5bdd4eefed8326711b7dbda9ea45dfd36068c427d332aa382cbe"
|
|
6354
|
+
dependencies = [
|
|
6355
|
+
"bytemuck",
|
|
6356
|
+
"read-fonts",
|
|
6357
|
+
]
|
|
6358
|
+
|
|
4270
6359
|
[[package]]
|
|
4271
6360
|
name = "slab"
|
|
4272
6361
|
version = "0.4.11"
|
|
@@ -4381,6 +6470,15 @@ version = "1.2.1"
|
|
|
4381
6470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4382
6471
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
4383
6472
|
|
|
6473
|
+
[[package]]
|
|
6474
|
+
name = "stackfuture"
|
|
6475
|
+
version = "0.3.1"
|
|
6476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6477
|
+
checksum = "115beb9c69db2393ff10b75a1b8587a51716e5551d015001e55320ed279d32f9"
|
|
6478
|
+
dependencies = [
|
|
6479
|
+
"const_panic",
|
|
6480
|
+
]
|
|
6481
|
+
|
|
4384
6482
|
[[package]]
|
|
4385
6483
|
name = "static_assertions"
|
|
4386
6484
|
version = "1.1.0"
|
|
@@ -4402,6 +6500,12 @@ version = "0.11.1"
|
|
|
4402
6500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4403
6501
|
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
4404
6502
|
|
|
6503
|
+
[[package]]
|
|
6504
|
+
name = "svg_fmt"
|
|
6505
|
+
version = "0.4.5"
|
|
6506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6507
|
+
checksum = "0193cc4331cfd2f3d2011ef287590868599a2f33c3e69bc22c1a3d3acf9e02fb"
|
|
6508
|
+
|
|
4405
6509
|
[[package]]
|
|
4406
6510
|
name = "svgtypes"
|
|
4407
6511
|
version = "0.15.3"
|
|
@@ -4412,6 +6516,17 @@ dependencies = [
|
|
|
4412
6516
|
"siphasher 1.0.1",
|
|
4413
6517
|
]
|
|
4414
6518
|
|
|
6519
|
+
[[package]]
|
|
6520
|
+
name = "swash"
|
|
6521
|
+
version = "0.1.19"
|
|
6522
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6523
|
+
checksum = "cbd59f3f359ddd2c95af4758c18270eddd9c730dde98598023cdabff472c2ca2"
|
|
6524
|
+
dependencies = [
|
|
6525
|
+
"skrifa",
|
|
6526
|
+
"yazi",
|
|
6527
|
+
"zeno",
|
|
6528
|
+
]
|
|
6529
|
+
|
|
4415
6530
|
[[package]]
|
|
4416
6531
|
name = "syn"
|
|
4417
6532
|
version = "1.0.109"
|
|
@@ -4434,6 +6549,18 @@ dependencies = [
|
|
|
4434
6549
|
"unicode-ident",
|
|
4435
6550
|
]
|
|
4436
6551
|
|
|
6552
|
+
[[package]]
|
|
6553
|
+
name = "syn_derive"
|
|
6554
|
+
version = "0.2.0"
|
|
6555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6556
|
+
checksum = "cdb066a04799e45f5d582e8fc6ec8e6d6896040d00898eb4e6a835196815b219"
|
|
6557
|
+
dependencies = [
|
|
6558
|
+
"proc-macro-error2",
|
|
6559
|
+
"proc-macro2",
|
|
6560
|
+
"quote",
|
|
6561
|
+
"syn 2.0.111",
|
|
6562
|
+
]
|
|
6563
|
+
|
|
4437
6564
|
[[package]]
|
|
4438
6565
|
name = "synstructure"
|
|
4439
6566
|
version = "0.13.2"
|
|
@@ -4445,6 +6572,62 @@ dependencies = [
|
|
|
4445
6572
|
"syn 2.0.111",
|
|
4446
6573
|
]
|
|
4447
6574
|
|
|
6575
|
+
[[package]]
|
|
6576
|
+
name = "sys-locale"
|
|
6577
|
+
version = "0.3.2"
|
|
6578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6579
|
+
checksum = "8eab9a99a024a169fe8a903cf9d4a3b3601109bcc13bd9e3c6fff259138626c4"
|
|
6580
|
+
dependencies = [
|
|
6581
|
+
"libc",
|
|
6582
|
+
]
|
|
6583
|
+
|
|
6584
|
+
[[package]]
|
|
6585
|
+
name = "tachys"
|
|
6586
|
+
version = "0.1.9"
|
|
6587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6588
|
+
checksum = "f66c3b70c32844a6f1e2943c72a33ebb777ad6acbeb20d1329d62e3a7806d6ec"
|
|
6589
|
+
dependencies = [
|
|
6590
|
+
"any_spawner",
|
|
6591
|
+
"async-trait",
|
|
6592
|
+
"const_str_slice_concat",
|
|
6593
|
+
"drain_filter_polyfill",
|
|
6594
|
+
"dyn-clone",
|
|
6595
|
+
"either_of",
|
|
6596
|
+
"futures",
|
|
6597
|
+
"html-escape",
|
|
6598
|
+
"indexmap",
|
|
6599
|
+
"itertools 0.14.0",
|
|
6600
|
+
"js-sys",
|
|
6601
|
+
"linear-map",
|
|
6602
|
+
"next_tuple",
|
|
6603
|
+
"oco_ref",
|
|
6604
|
+
"once_cell",
|
|
6605
|
+
"or_poisoned",
|
|
6606
|
+
"parking_lot",
|
|
6607
|
+
"paste",
|
|
6608
|
+
"reactive_graph",
|
|
6609
|
+
"reactive_stores",
|
|
6610
|
+
"rustc-hash 2.1.1",
|
|
6611
|
+
"send_wrapper",
|
|
6612
|
+
"slotmap",
|
|
6613
|
+
"throw_error",
|
|
6614
|
+
"wasm-bindgen",
|
|
6615
|
+
"web-sys",
|
|
6616
|
+
]
|
|
6617
|
+
|
|
6618
|
+
[[package]]
|
|
6619
|
+
name = "taffy"
|
|
6620
|
+
version = "0.5.2"
|
|
6621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6622
|
+
checksum = "9cb893bff0f80ae17d3a57e030622a967b8dbc90e38284d9b4b1442e23873c94"
|
|
6623
|
+
dependencies = [
|
|
6624
|
+
"arrayvec",
|
|
6625
|
+
"grid",
|
|
6626
|
+
"num-traits",
|
|
6627
|
+
"serde",
|
|
6628
|
+
"slotmap",
|
|
6629
|
+
]
|
|
6630
|
+
|
|
4448
6631
|
[[package]]
|
|
4449
6632
|
name = "target-lexicon"
|
|
4450
6633
|
version = "0.13.3"
|
|
@@ -4492,34 +6675,87 @@ dependencies = [
|
|
|
4492
6675
|
]
|
|
4493
6676
|
|
|
4494
6677
|
[[package]]
|
|
4495
|
-
name = "thiserror"
|
|
4496
|
-
version = "2.0.17"
|
|
6678
|
+
name = "thiserror"
|
|
6679
|
+
version = "2.0.17"
|
|
6680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6681
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
6682
|
+
dependencies = [
|
|
6683
|
+
"thiserror-impl 2.0.17",
|
|
6684
|
+
]
|
|
6685
|
+
|
|
6686
|
+
[[package]]
|
|
6687
|
+
name = "thiserror-impl"
|
|
6688
|
+
version = "1.0.69"
|
|
6689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6690
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
6691
|
+
dependencies = [
|
|
6692
|
+
"proc-macro2",
|
|
6693
|
+
"quote",
|
|
6694
|
+
"syn 2.0.111",
|
|
6695
|
+
]
|
|
6696
|
+
|
|
6697
|
+
[[package]]
|
|
6698
|
+
name = "thiserror-impl"
|
|
6699
|
+
version = "2.0.17"
|
|
6700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6701
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
6702
|
+
dependencies = [
|
|
6703
|
+
"proc-macro2",
|
|
6704
|
+
"quote",
|
|
6705
|
+
"syn 2.0.111",
|
|
6706
|
+
]
|
|
6707
|
+
|
|
6708
|
+
[[package]]
|
|
6709
|
+
name = "thread_local"
|
|
6710
|
+
version = "1.1.9"
|
|
6711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6712
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
6713
|
+
dependencies = [
|
|
6714
|
+
"cfg-if",
|
|
6715
|
+
]
|
|
6716
|
+
|
|
6717
|
+
[[package]]
|
|
6718
|
+
name = "three-d"
|
|
6719
|
+
version = "0.18.2"
|
|
6720
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6721
|
+
checksum = "cc12d8d28760b88e595b77c11c074f91e7c9f7a7db4e7321f1bf0174e511ac4f"
|
|
6722
|
+
dependencies = [
|
|
6723
|
+
"cgmath",
|
|
6724
|
+
"glow 0.14.2",
|
|
6725
|
+
"instant",
|
|
6726
|
+
"open-enum",
|
|
6727
|
+
"thiserror 2.0.17",
|
|
6728
|
+
"three-d-asset",
|
|
6729
|
+
]
|
|
6730
|
+
|
|
6731
|
+
[[package]]
|
|
6732
|
+
name = "three-d-asset"
|
|
6733
|
+
version = "0.9.2"
|
|
4497
6734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4498
|
-
checksum = "
|
|
6735
|
+
checksum = "95c40cd76bbe3751f6a286dd09c9971766d37b3a9c222e926f622d098bdcc424"
|
|
4499
6736
|
dependencies = [
|
|
4500
|
-
"
|
|
6737
|
+
"cgmath",
|
|
6738
|
+
"half",
|
|
6739
|
+
"thiserror 2.0.17",
|
|
6740
|
+
"web-sys",
|
|
4501
6741
|
]
|
|
4502
6742
|
|
|
4503
6743
|
[[package]]
|
|
4504
|
-
name = "
|
|
4505
|
-
version = "
|
|
6744
|
+
name = "throw_error"
|
|
6745
|
+
version = "0.2.0"
|
|
4506
6746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4507
|
-
checksum = "
|
|
6747
|
+
checksum = "e4ef8bf264c6ae02a065a4a16553283f0656bd6266fc1fcb09fd2e6b5e91427b"
|
|
4508
6748
|
dependencies = [
|
|
4509
|
-
"
|
|
4510
|
-
"quote",
|
|
4511
|
-
"syn 2.0.111",
|
|
6749
|
+
"pin-project-lite",
|
|
4512
6750
|
]
|
|
4513
6751
|
|
|
4514
6752
|
[[package]]
|
|
4515
|
-
name = "
|
|
4516
|
-
version = "2.0.
|
|
6753
|
+
name = "tiny-keccak"
|
|
6754
|
+
version = "2.0.2"
|
|
4517
6755
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4518
|
-
checksum = "
|
|
6756
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
4519
6757
|
dependencies = [
|
|
4520
|
-
"
|
|
4521
|
-
"quote",
|
|
4522
|
-
"syn 2.0.111",
|
|
6758
|
+
"crunchy",
|
|
4523
6759
|
]
|
|
4524
6760
|
|
|
4525
6761
|
[[package]]
|
|
@@ -4573,26 +6809,6 @@ version = "0.1.1"
|
|
|
4573
6809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4574
6810
|
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
4575
6811
|
|
|
4576
|
-
[[package]]
|
|
4577
|
-
name = "tokio"
|
|
4578
|
-
version = "1.48.0"
|
|
4579
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4580
|
-
checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
|
|
4581
|
-
dependencies = [
|
|
4582
|
-
"pin-project-lite",
|
|
4583
|
-
]
|
|
4584
|
-
|
|
4585
|
-
[[package]]
|
|
4586
|
-
name = "tokio-stream"
|
|
4587
|
-
version = "0.1.17"
|
|
4588
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4589
|
-
checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
|
|
4590
|
-
dependencies = [
|
|
4591
|
-
"futures-core",
|
|
4592
|
-
"pin-project-lite",
|
|
4593
|
-
"tokio",
|
|
4594
|
-
]
|
|
4595
|
-
|
|
4596
6812
|
[[package]]
|
|
4597
6813
|
name = "toml"
|
|
4598
6814
|
version = "0.5.11"
|
|
@@ -4609,11 +6825,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4609
6825
|
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
4610
6826
|
dependencies = [
|
|
4611
6827
|
"serde",
|
|
4612
|
-
"serde_spanned",
|
|
6828
|
+
"serde_spanned 0.6.9",
|
|
4613
6829
|
"toml_datetime 0.6.11",
|
|
4614
6830
|
"toml_edit 0.22.27",
|
|
4615
6831
|
]
|
|
4616
6832
|
|
|
6833
|
+
[[package]]
|
|
6834
|
+
name = "toml"
|
|
6835
|
+
version = "0.9.8"
|
|
6836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6837
|
+
checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
|
|
6838
|
+
dependencies = [
|
|
6839
|
+
"serde_core",
|
|
6840
|
+
"serde_spanned 1.0.3",
|
|
6841
|
+
"toml_datetime 0.7.3",
|
|
6842
|
+
"toml_parser",
|
|
6843
|
+
"winnow 0.7.14",
|
|
6844
|
+
]
|
|
6845
|
+
|
|
4617
6846
|
[[package]]
|
|
4618
6847
|
name = "toml_datetime"
|
|
4619
6848
|
version = "0.6.11"
|
|
@@ -4651,7 +6880,7 @@ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
|
4651
6880
|
dependencies = [
|
|
4652
6881
|
"indexmap",
|
|
4653
6882
|
"serde",
|
|
4654
|
-
"serde_spanned",
|
|
6883
|
+
"serde_spanned 0.6.9",
|
|
4655
6884
|
"toml_datetime 0.6.11",
|
|
4656
6885
|
"toml_write",
|
|
4657
6886
|
"winnow 0.7.14",
|
|
@@ -4714,8 +6943,70 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4714
6943
|
checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
|
|
4715
6944
|
dependencies = [
|
|
4716
6945
|
"once_cell",
|
|
6946
|
+
"valuable",
|
|
6947
|
+
]
|
|
6948
|
+
|
|
6949
|
+
[[package]]
|
|
6950
|
+
name = "tracing-log"
|
|
6951
|
+
version = "0.2.0"
|
|
6952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6953
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
6954
|
+
dependencies = [
|
|
6955
|
+
"log",
|
|
6956
|
+
"once_cell",
|
|
6957
|
+
"tracing-core",
|
|
6958
|
+
]
|
|
6959
|
+
|
|
6960
|
+
[[package]]
|
|
6961
|
+
name = "tracing-oslog"
|
|
6962
|
+
version = "0.2.0"
|
|
6963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6964
|
+
checksum = "528bdd1f0e27b5dd9a4ededf154e824b0532731e4af73bb531de46276e0aab1e"
|
|
6965
|
+
dependencies = [
|
|
6966
|
+
"bindgen",
|
|
6967
|
+
"cc",
|
|
6968
|
+
"cfg-if",
|
|
6969
|
+
"once_cell",
|
|
6970
|
+
"parking_lot",
|
|
6971
|
+
"tracing-core",
|
|
6972
|
+
"tracing-subscriber",
|
|
6973
|
+
]
|
|
6974
|
+
|
|
6975
|
+
[[package]]
|
|
6976
|
+
name = "tracing-subscriber"
|
|
6977
|
+
version = "0.3.22"
|
|
6978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6979
|
+
checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
|
|
6980
|
+
dependencies = [
|
|
6981
|
+
"matchers",
|
|
6982
|
+
"nu-ansi-term",
|
|
6983
|
+
"once_cell",
|
|
6984
|
+
"regex-automata",
|
|
6985
|
+
"sharded-slab",
|
|
6986
|
+
"smallvec",
|
|
6987
|
+
"thread_local",
|
|
6988
|
+
"tracing",
|
|
6989
|
+
"tracing-core",
|
|
6990
|
+
"tracing-log",
|
|
6991
|
+
]
|
|
6992
|
+
|
|
6993
|
+
[[package]]
|
|
6994
|
+
name = "tracing-wasm"
|
|
6995
|
+
version = "0.2.1"
|
|
6996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6997
|
+
checksum = "4575c663a174420fa2d78f4108ff68f65bf2fbb7dd89f33749b6e826b3626e07"
|
|
6998
|
+
dependencies = [
|
|
6999
|
+
"tracing",
|
|
7000
|
+
"tracing-subscriber",
|
|
7001
|
+
"wasm-bindgen",
|
|
4717
7002
|
]
|
|
4718
7003
|
|
|
7004
|
+
[[package]]
|
|
7005
|
+
name = "ttf-parser"
|
|
7006
|
+
version = "0.20.0"
|
|
7007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7008
|
+
checksum = "17f77d76d837a7830fe1d4f12b7b4ba4192c1888001c7164257e4bc6d21d96b4"
|
|
7009
|
+
|
|
4719
7010
|
[[package]]
|
|
4720
7011
|
name = "ttf-parser"
|
|
4721
7012
|
version = "0.21.1"
|
|
@@ -4737,6 +7028,16 @@ version = "0.25.1"
|
|
|
4737
7028
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4738
7029
|
checksum = "d2df906b07856748fa3f6e0ad0cbaa047052d4a7dd609e231c4f72cee8c36f31"
|
|
4739
7030
|
|
|
7031
|
+
[[package]]
|
|
7032
|
+
name = "twox-hash"
|
|
7033
|
+
version = "1.6.3"
|
|
7034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7035
|
+
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
|
|
7036
|
+
dependencies = [
|
|
7037
|
+
"cfg-if",
|
|
7038
|
+
"static_assertions",
|
|
7039
|
+
]
|
|
7040
|
+
|
|
4740
7041
|
[[package]]
|
|
4741
7042
|
name = "type-map"
|
|
4742
7043
|
version = "0.5.1"
|
|
@@ -4746,12 +7047,44 @@ dependencies = [
|
|
|
4746
7047
|
"rustc-hash 2.1.1",
|
|
4747
7048
|
]
|
|
4748
7049
|
|
|
7050
|
+
[[package]]
|
|
7051
|
+
name = "typed-builder"
|
|
7052
|
+
version = "0.20.1"
|
|
7053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7054
|
+
checksum = "cd9d30e3a08026c78f246b173243cf07b3696d274debd26680773b6773c2afc7"
|
|
7055
|
+
dependencies = [
|
|
7056
|
+
"typed-builder-macro",
|
|
7057
|
+
]
|
|
7058
|
+
|
|
7059
|
+
[[package]]
|
|
7060
|
+
name = "typed-builder-macro"
|
|
7061
|
+
version = "0.20.1"
|
|
7062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7063
|
+
checksum = "3c36781cc0e46a83726d9879608e4cf6c2505237e263a8eb8c24502989cfdb28"
|
|
7064
|
+
dependencies = [
|
|
7065
|
+
"proc-macro2",
|
|
7066
|
+
"quote",
|
|
7067
|
+
"syn 2.0.111",
|
|
7068
|
+
]
|
|
7069
|
+
|
|
7070
|
+
[[package]]
|
|
7071
|
+
name = "typeid"
|
|
7072
|
+
version = "1.0.3"
|
|
7073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7074
|
+
checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c"
|
|
7075
|
+
|
|
4749
7076
|
[[package]]
|
|
4750
7077
|
name = "typenum"
|
|
4751
7078
|
version = "1.19.0"
|
|
4752
7079
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4753
7080
|
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
4754
7081
|
|
|
7082
|
+
[[package]]
|
|
7083
|
+
name = "typewit"
|
|
7084
|
+
version = "1.14.2"
|
|
7085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7086
|
+
checksum = "f8c1ae7cc0fdb8b842d65d127cb981574b0d2b249b74d1c7a2986863dc134f71"
|
|
7087
|
+
|
|
4755
7088
|
[[package]]
|
|
4756
7089
|
name = "uds_windows"
|
|
4757
7090
|
version = "1.1.0"
|
|
@@ -4805,6 +7138,12 @@ version = "1.0.22"
|
|
|
4805
7138
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4806
7139
|
checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
|
|
4807
7140
|
|
|
7141
|
+
[[package]]
|
|
7142
|
+
name = "unicode-linebreak"
|
|
7143
|
+
version = "0.1.5"
|
|
7144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7145
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
7146
|
+
|
|
4808
7147
|
[[package]]
|
|
4809
7148
|
name = "unicode-properties"
|
|
4810
7149
|
version = "0.1.4"
|
|
@@ -4989,7 +7328,7 @@ version = "0.42.0"
|
|
|
4989
7328
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4990
7329
|
checksum = "b84ea542ae85c715f07b082438a4231c3760539d902e11d093847a0b22963032"
|
|
4991
7330
|
dependencies = [
|
|
4992
|
-
"base64",
|
|
7331
|
+
"base64 0.22.1",
|
|
4993
7332
|
"data-url",
|
|
4994
7333
|
"flate2",
|
|
4995
7334
|
"fontdb 0.18.0",
|
|
@@ -5016,7 +7355,7 @@ version = "0.44.0"
|
|
|
5016
7355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5017
7356
|
checksum = "7447e703d7223b067607655e625e0dbca80822880248937da65966194c4864e6"
|
|
5018
7357
|
dependencies = [
|
|
5019
|
-
"base64",
|
|
7358
|
+
"base64 0.22.1",
|
|
5020
7359
|
"data-url",
|
|
5021
7360
|
"flate2",
|
|
5022
7361
|
"fontdb 0.22.0",
|
|
@@ -5037,6 +7376,12 @@ dependencies = [
|
|
|
5037
7376
|
"xmlwriter",
|
|
5038
7377
|
]
|
|
5039
7378
|
|
|
7379
|
+
[[package]]
|
|
7380
|
+
name = "utf8-width"
|
|
7381
|
+
version = "0.1.8"
|
|
7382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7383
|
+
checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
|
|
7384
|
+
|
|
5040
7385
|
[[package]]
|
|
5041
7386
|
name = "utf8_iter"
|
|
5042
7387
|
version = "1.0.4"
|
|
@@ -5051,15 +7396,20 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
|
5051
7396
|
|
|
5052
7397
|
[[package]]
|
|
5053
7398
|
name = "uuid"
|
|
5054
|
-
version = "1.
|
|
7399
|
+
version = "1.12.1"
|
|
5055
7400
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5056
|
-
checksum = "
|
|
7401
|
+
checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
|
|
5057
7402
|
dependencies = [
|
|
5058
|
-
"
|
|
5059
|
-
"
|
|
5060
|
-
"wasm-bindgen",
|
|
7403
|
+
"getrandom 0.2.16",
|
|
7404
|
+
"serde",
|
|
5061
7405
|
]
|
|
5062
7406
|
|
|
7407
|
+
[[package]]
|
|
7408
|
+
name = "valuable"
|
|
7409
|
+
version = "0.1.1"
|
|
7410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7411
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
7412
|
+
|
|
5063
7413
|
[[package]]
|
|
5064
7414
|
name = "version_check"
|
|
5065
7415
|
version = "0.9.5"
|
|
@@ -5201,6 +7551,19 @@ dependencies = [
|
|
|
5201
7551
|
"syn 2.0.111",
|
|
5202
7552
|
]
|
|
5203
7553
|
|
|
7554
|
+
[[package]]
|
|
7555
|
+
name = "wasm-streams"
|
|
7556
|
+
version = "0.4.2"
|
|
7557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7558
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
7559
|
+
dependencies = [
|
|
7560
|
+
"futures-util",
|
|
7561
|
+
"js-sys",
|
|
7562
|
+
"wasm-bindgen",
|
|
7563
|
+
"wasm-bindgen-futures",
|
|
7564
|
+
"web-sys",
|
|
7565
|
+
]
|
|
7566
|
+
|
|
5204
7567
|
[[package]]
|
|
5205
7568
|
name = "wayland-backend"
|
|
5206
7569
|
version = "0.3.11"
|
|
@@ -5406,9 +7769,34 @@ dependencies = [
|
|
|
5406
7769
|
"wasm-bindgen",
|
|
5407
7770
|
"wasm-bindgen-futures",
|
|
5408
7771
|
"web-sys",
|
|
5409
|
-
"wgpu-core",
|
|
5410
|
-
"wgpu-hal",
|
|
5411
|
-
"wgpu-types",
|
|
7772
|
+
"wgpu-core 22.1.0",
|
|
7773
|
+
"wgpu-hal 22.0.0",
|
|
7774
|
+
"wgpu-types 22.0.0",
|
|
7775
|
+
]
|
|
7776
|
+
|
|
7777
|
+
[[package]]
|
|
7778
|
+
name = "wgpu"
|
|
7779
|
+
version = "23.0.1"
|
|
7780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7781
|
+
checksum = "80f70000db37c469ea9d67defdc13024ddf9a5f1b89cb2941b812ad7cde1735a"
|
|
7782
|
+
dependencies = [
|
|
7783
|
+
"arrayvec",
|
|
7784
|
+
"cfg_aliases 0.1.1",
|
|
7785
|
+
"document-features",
|
|
7786
|
+
"js-sys",
|
|
7787
|
+
"log",
|
|
7788
|
+
"naga 23.1.0",
|
|
7789
|
+
"parking_lot",
|
|
7790
|
+
"profiling",
|
|
7791
|
+
"raw-window-handle",
|
|
7792
|
+
"smallvec",
|
|
7793
|
+
"static_assertions",
|
|
7794
|
+
"wasm-bindgen",
|
|
7795
|
+
"wasm-bindgen-futures",
|
|
7796
|
+
"web-sys",
|
|
7797
|
+
"wgpu-core 23.0.1",
|
|
7798
|
+
"wgpu-hal 23.0.1",
|
|
7799
|
+
"wgpu-types 23.0.0",
|
|
5412
7800
|
]
|
|
5413
7801
|
|
|
5414
7802
|
[[package]]
|
|
@@ -5418,13 +7806,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
5418
7806
|
checksum = "0348c840d1051b8e86c3bcd31206080c5e71e5933dabd79be1ce732b0b2f089a"
|
|
5419
7807
|
dependencies = [
|
|
5420
7808
|
"arrayvec",
|
|
5421
|
-
"bit-vec",
|
|
7809
|
+
"bit-vec 0.7.0",
|
|
5422
7810
|
"bitflags 2.10.0",
|
|
5423
7811
|
"cfg_aliases 0.1.1",
|
|
5424
7812
|
"document-features",
|
|
5425
7813
|
"indexmap",
|
|
5426
7814
|
"log",
|
|
5427
|
-
"naga",
|
|
7815
|
+
"naga 22.1.0",
|
|
5428
7816
|
"once_cell",
|
|
5429
7817
|
"parking_lot",
|
|
5430
7818
|
"profiling",
|
|
@@ -5432,8 +7820,33 @@ dependencies = [
|
|
|
5432
7820
|
"rustc-hash 1.1.0",
|
|
5433
7821
|
"smallvec",
|
|
5434
7822
|
"thiserror 1.0.69",
|
|
5435
|
-
"wgpu-hal",
|
|
5436
|
-
"wgpu-types",
|
|
7823
|
+
"wgpu-hal 22.0.0",
|
|
7824
|
+
"wgpu-types 22.0.0",
|
|
7825
|
+
]
|
|
7826
|
+
|
|
7827
|
+
[[package]]
|
|
7828
|
+
name = "wgpu-core"
|
|
7829
|
+
version = "23.0.1"
|
|
7830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7831
|
+
checksum = "d63c3c478de8e7e01786479919c8769f62a22eec16788d8c2ac77ce2c132778a"
|
|
7832
|
+
dependencies = [
|
|
7833
|
+
"arrayvec",
|
|
7834
|
+
"bit-vec 0.8.0",
|
|
7835
|
+
"bitflags 2.10.0",
|
|
7836
|
+
"cfg_aliases 0.1.1",
|
|
7837
|
+
"document-features",
|
|
7838
|
+
"indexmap",
|
|
7839
|
+
"log",
|
|
7840
|
+
"naga 23.1.0",
|
|
7841
|
+
"once_cell",
|
|
7842
|
+
"parking_lot",
|
|
7843
|
+
"profiling",
|
|
7844
|
+
"raw-window-handle",
|
|
7845
|
+
"rustc-hash 1.1.0",
|
|
7846
|
+
"smallvec",
|
|
7847
|
+
"thiserror 1.0.69",
|
|
7848
|
+
"wgpu-hal 23.0.1",
|
|
7849
|
+
"wgpu-types 23.0.0",
|
|
5437
7850
|
]
|
|
5438
7851
|
|
|
5439
7852
|
[[package]]
|
|
@@ -5451,7 +7864,7 @@ dependencies = [
|
|
|
5451
7864
|
"glow 0.13.1",
|
|
5452
7865
|
"glutin_wgl_sys",
|
|
5453
7866
|
"gpu-alloc",
|
|
5454
|
-
"gpu-allocator",
|
|
7867
|
+
"gpu-allocator 0.26.0",
|
|
5455
7868
|
"gpu-descriptor",
|
|
5456
7869
|
"hassle-rs",
|
|
5457
7870
|
"js-sys",
|
|
@@ -5460,7 +7873,7 @@ dependencies = [
|
|
|
5460
7873
|
"libloading",
|
|
5461
7874
|
"log",
|
|
5462
7875
|
"metal",
|
|
5463
|
-
"naga",
|
|
7876
|
+
"naga 22.1.0",
|
|
5464
7877
|
"ndk-sys 0.5.0+25.2.9519653",
|
|
5465
7878
|
"objc",
|
|
5466
7879
|
"once_cell",
|
|
@@ -5473,10 +7886,55 @@ dependencies = [
|
|
|
5473
7886
|
"thiserror 1.0.69",
|
|
5474
7887
|
"wasm-bindgen",
|
|
5475
7888
|
"web-sys",
|
|
5476
|
-
"wgpu-types",
|
|
7889
|
+
"wgpu-types 22.0.0",
|
|
5477
7890
|
"winapi",
|
|
5478
7891
|
]
|
|
5479
7892
|
|
|
7893
|
+
[[package]]
|
|
7894
|
+
name = "wgpu-hal"
|
|
7895
|
+
version = "23.0.1"
|
|
7896
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7897
|
+
checksum = "89364b8a0b211adc7b16aeaf1bd5ad4a919c1154b44c9ce27838213ba05fd821"
|
|
7898
|
+
dependencies = [
|
|
7899
|
+
"android_system_properties",
|
|
7900
|
+
"arrayvec",
|
|
7901
|
+
"ash",
|
|
7902
|
+
"bit-set 0.8.0",
|
|
7903
|
+
"bitflags 2.10.0",
|
|
7904
|
+
"block",
|
|
7905
|
+
"bytemuck",
|
|
7906
|
+
"cfg_aliases 0.1.1",
|
|
7907
|
+
"core-graphics-types",
|
|
7908
|
+
"glow 0.14.2",
|
|
7909
|
+
"glutin_wgl_sys",
|
|
7910
|
+
"gpu-alloc",
|
|
7911
|
+
"gpu-allocator 0.27.0",
|
|
7912
|
+
"gpu-descriptor",
|
|
7913
|
+
"js-sys",
|
|
7914
|
+
"khronos-egl",
|
|
7915
|
+
"libc",
|
|
7916
|
+
"libloading",
|
|
7917
|
+
"log",
|
|
7918
|
+
"metal",
|
|
7919
|
+
"naga 23.1.0",
|
|
7920
|
+
"ndk-sys 0.5.0+25.2.9519653",
|
|
7921
|
+
"objc",
|
|
7922
|
+
"once_cell",
|
|
7923
|
+
"parking_lot",
|
|
7924
|
+
"profiling",
|
|
7925
|
+
"range-alloc",
|
|
7926
|
+
"raw-window-handle",
|
|
7927
|
+
"renderdoc-sys",
|
|
7928
|
+
"rustc-hash 1.1.0",
|
|
7929
|
+
"smallvec",
|
|
7930
|
+
"thiserror 1.0.69",
|
|
7931
|
+
"wasm-bindgen",
|
|
7932
|
+
"web-sys",
|
|
7933
|
+
"wgpu-types 23.0.0",
|
|
7934
|
+
"windows 0.58.0",
|
|
7935
|
+
"windows-core 0.58.0",
|
|
7936
|
+
]
|
|
7937
|
+
|
|
5480
7938
|
[[package]]
|
|
5481
7939
|
name = "wgpu-types"
|
|
5482
7940
|
version = "22.0.0"
|
|
@@ -5488,6 +7946,17 @@ dependencies = [
|
|
|
5488
7946
|
"web-sys",
|
|
5489
7947
|
]
|
|
5490
7948
|
|
|
7949
|
+
[[package]]
|
|
7950
|
+
name = "wgpu-types"
|
|
7951
|
+
version = "23.0.0"
|
|
7952
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
7953
|
+
checksum = "610f6ff27778148c31093f3b03abc4840f9636d58d597ca2f5977433acfe0068"
|
|
7954
|
+
dependencies = [
|
|
7955
|
+
"bitflags 2.10.0",
|
|
7956
|
+
"js-sys",
|
|
7957
|
+
"web-sys",
|
|
7958
|
+
]
|
|
7959
|
+
|
|
5491
7960
|
[[package]]
|
|
5492
7961
|
name = "widestring"
|
|
5493
7962
|
version = "1.2.1"
|
|
@@ -6083,44 +8552,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
6083
8552
|
checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
|
|
6084
8553
|
|
|
6085
8554
|
[[package]]
|
|
6086
|
-
name = "
|
|
6087
|
-
version = "0.
|
|
8555
|
+
name = "xxhash-rust"
|
|
8556
|
+
version = "0.8.15"
|
|
6088
8557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6089
|
-
checksum = "
|
|
6090
|
-
dependencies = [
|
|
6091
|
-
"console_error_panic_hook",
|
|
6092
|
-
"futures",
|
|
6093
|
-
"gloo 0.10.0",
|
|
6094
|
-
"implicit-clone",
|
|
6095
|
-
"indexmap",
|
|
6096
|
-
"js-sys",
|
|
6097
|
-
"prokio",
|
|
6098
|
-
"rustversion",
|
|
6099
|
-
"serde",
|
|
6100
|
-
"slab",
|
|
6101
|
-
"thiserror 1.0.69",
|
|
6102
|
-
"tokio",
|
|
6103
|
-
"tracing",
|
|
6104
|
-
"wasm-bindgen",
|
|
6105
|
-
"wasm-bindgen-futures",
|
|
6106
|
-
"web-sys",
|
|
6107
|
-
"yew-macro",
|
|
6108
|
-
]
|
|
8558
|
+
checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
|
|
6109
8559
|
|
|
6110
8560
|
[[package]]
|
|
6111
|
-
name = "
|
|
6112
|
-
version = "0.
|
|
8561
|
+
name = "yansi"
|
|
8562
|
+
version = "1.0.1"
|
|
6113
8563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6114
|
-
checksum = "
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
"
|
|
6118
|
-
"
|
|
6119
|
-
"
|
|
6120
|
-
"
|
|
6121
|
-
"quote",
|
|
6122
|
-
"syn 2.0.111",
|
|
6123
|
-
]
|
|
8564
|
+
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
8565
|
+
|
|
8566
|
+
[[package]]
|
|
8567
|
+
name = "yazi"
|
|
8568
|
+
version = "0.1.6"
|
|
8569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8570
|
+
checksum = "c94451ac9513335b5e23d7a8a2b61a7102398b8cca5160829d313e84c9d98be1"
|
|
6124
8571
|
|
|
6125
8572
|
[[package]]
|
|
6126
8573
|
name = "yoke"
|
|
@@ -6151,7 +8598,7 @@ version = "4.4.0"
|
|
|
6151
8598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6152
8599
|
checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725"
|
|
6153
8600
|
dependencies = [
|
|
6154
|
-
"async-broadcast",
|
|
8601
|
+
"async-broadcast 0.7.2",
|
|
6155
8602
|
"async-executor",
|
|
6156
8603
|
"async-fs",
|
|
6157
8604
|
"async-io",
|
|
@@ -6162,7 +8609,7 @@ dependencies = [
|
|
|
6162
8609
|
"async-trait",
|
|
6163
8610
|
"blocking",
|
|
6164
8611
|
"enumflags2",
|
|
6165
|
-
"event-listener",
|
|
8612
|
+
"event-listener 5.4.1",
|
|
6166
8613
|
"futures-core",
|
|
6167
8614
|
"futures-sink",
|
|
6168
8615
|
"futures-util",
|
|
@@ -6189,7 +8636,7 @@ version = "5.12.0"
|
|
|
6189
8636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
6190
8637
|
checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91"
|
|
6191
8638
|
dependencies = [
|
|
6192
|
-
"async-broadcast",
|
|
8639
|
+
"async-broadcast 0.7.2",
|
|
6193
8640
|
"async-executor",
|
|
6194
8641
|
"async-io",
|
|
6195
8642
|
"async-lock",
|
|
@@ -6199,7 +8646,7 @@ dependencies = [
|
|
|
6199
8646
|
"async-trait",
|
|
6200
8647
|
"blocking",
|
|
6201
8648
|
"enumflags2",
|
|
6202
|
-
"event-listener",
|
|
8649
|
+
"event-listener 5.4.1",
|
|
6203
8650
|
"futures-core",
|
|
6204
8651
|
"futures-lite",
|
|
6205
8652
|
"hex",
|
|
@@ -6305,6 +8752,12 @@ dependencies = [
|
|
|
6305
8752
|
"zvariant 4.2.0",
|
|
6306
8753
|
]
|
|
6307
8754
|
|
|
8755
|
+
[[package]]
|
|
8756
|
+
name = "zeno"
|
|
8757
|
+
version = "0.2.3"
|
|
8758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
8759
|
+
checksum = "dd15f8e0dbb966fd9245e7498c7e9e5055d9e5c8b676b95bd67091cd11a1e697"
|
|
8760
|
+
|
|
6308
8761
|
[[package]]
|
|
6309
8762
|
name = "zerocopy"
|
|
6310
8763
|
version = "0.8.31"
|