cosmol-viewer 0.1.1.dev4__tar.gz → 0.1.2__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.
Potentially problematic release.
This version of cosmol-viewer might be problematic. Click here for more details.
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/Cargo.lock +696 -643
- cosmol_viewer-0.1.2/Cargo.toml +24 -0
- cosmol_viewer-0.1.2/PKG-INFO +6 -0
- cosmol_viewer-0.1.2/crates/core/Cargo.toml +27 -0
- cosmol_viewer-0.1.2/crates/core/src/lib.rs +247 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/scene.rs +22 -9
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/shader/canvas.rs +31 -43
- cosmol_viewer-0.1.2/crates/core/src/shader/fragment.glsl +34 -0
- cosmol_viewer-0.1.2/crates/core/src/shapes/mod.rs +6 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/shapes/molecules.rs +100 -48
- cosmol_viewer-0.1.2/crates/core/src/shapes/sphere.rs +173 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/shapes/stick.rs +16 -17
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/utils.rs +3 -2
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/python/Cargo.toml +8 -10
- cosmol_viewer-0.1.1.dev4/PKG-INFO → cosmol_viewer-0.1.2/crates/python/README.md +19 -12
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/python/build.rs +1 -1
- cosmol_viewer-0.1.2/crates/python/src/lib.rs +396 -0
- cosmol_viewer-0.1.2/crates/python/src/shapes.rs +287 -0
- cosmol_viewer-0.1.2/crates/wasm/Cargo.toml +42 -0
- cosmol_viewer-0.1.2/crates/wasm/src/lib.rs +254 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/pyproject.toml +4 -2
- cosmol_viewer-0.1.1.dev4/Cargo.toml +0 -22
- cosmol_viewer-0.1.1.dev4/crates/core/Cargo.toml +0 -15
- cosmol_viewer-0.1.1.dev4/crates/core/src/lib.rs +0 -72
- cosmol_viewer-0.1.1.dev4/crates/core/src/shader/fragment.glsl +0 -28
- cosmol_viewer-0.1.1.dev4/crates/core/src/shapes/mod.rs +0 -3
- cosmol_viewer-0.1.1.dev4/crates/core/src/shapes/sphere.rs +0 -136
- cosmol_viewer-0.1.1.dev4/crates/python/README.md +0 -51
- cosmol_viewer-0.1.1.dev4/crates/python/src/lib.rs +0 -340
- cosmol_viewer-0.1.1.dev4/crates/python/src/shapes.rs +0 -102
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/parser/mod.rs +0 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/parser/sdf.rs +0 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/shader/bg_fragment.glsl +0 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/shader/bg_vertex.glsl +0 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/shader/mod.rs +0 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/core/src/shader/vertex.glsl +0 -0
- {cosmol_viewer-0.1.1.dev4 → cosmol_viewer-0.1.2}/crates/python/src/parser.rs +0 -0
|
@@ -4,9 +4,9 @@ version = 4
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "ab_glyph"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.31"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "e074464580a518d16a7126262fffaaa47af89d4099d4cb403f8ed938ba12ee7d"
|
|
10
10
|
dependencies = [
|
|
11
11
|
"ab_glyph_rasterizer",
|
|
12
12
|
"owned_ttf_parser",
|
|
@@ -14,21 +14,21 @@ dependencies = [
|
|
|
14
14
|
|
|
15
15
|
[[package]]
|
|
16
16
|
name = "ab_glyph_rasterizer"
|
|
17
|
-
version = "0.1.
|
|
17
|
+
version = "0.1.9"
|
|
18
18
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
-
checksum = "
|
|
19
|
+
checksum = "b2187590a23ab1e3df8681afdf0987c48504d80291f002fcdb651f0ef5e25169"
|
|
20
20
|
|
|
21
21
|
[[package]]
|
|
22
22
|
name = "accesskit"
|
|
23
|
-
version = "0.
|
|
23
|
+
version = "0.19.0"
|
|
24
24
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
-
checksum = "
|
|
25
|
+
checksum = "e25ae84c0260bdf5df07796d7cc4882460de26a2b406ec0e6c42461a723b271b"
|
|
26
26
|
|
|
27
27
|
[[package]]
|
|
28
28
|
name = "accesskit_atspi_common"
|
|
29
|
-
version = "0.
|
|
29
|
+
version = "0.12.0"
|
|
30
30
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
-
checksum = "
|
|
31
|
+
checksum = "29bd41de2e54451a8ca0dd95ebf45b54d349d29ebceb7f20be264eee14e3d477"
|
|
32
32
|
dependencies = [
|
|
33
33
|
"accesskit",
|
|
34
34
|
"accesskit_consumer",
|
|
@@ -40,20 +40,19 @@ dependencies = [
|
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "accesskit_consumer"
|
|
43
|
-
version = "0.
|
|
43
|
+
version = "0.28.0"
|
|
44
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
45
|
+
checksum = "8bfae7c152994a31dc7d99b8eeac7784a919f71d1b306f4b83217e110fd3824c"
|
|
46
46
|
dependencies = [
|
|
47
47
|
"accesskit",
|
|
48
48
|
"hashbrown",
|
|
49
|
-
"immutable-chunkmap",
|
|
50
49
|
]
|
|
51
50
|
|
|
52
51
|
[[package]]
|
|
53
52
|
name = "accesskit_macos"
|
|
54
|
-
version = "0.
|
|
53
|
+
version = "0.20.0"
|
|
55
54
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
56
|
-
checksum = "
|
|
55
|
+
checksum = "692dd318ff8a7a0ffda67271c4bd10cf32249656f4e49390db0b26ca92b095f2"
|
|
57
56
|
dependencies = [
|
|
58
57
|
"accesskit",
|
|
59
58
|
"accesskit_consumer",
|
|
@@ -65,9 +64,9 @@ dependencies = [
|
|
|
65
64
|
|
|
66
65
|
[[package]]
|
|
67
66
|
name = "accesskit_unix"
|
|
68
|
-
version = "0.
|
|
67
|
+
version = "0.15.0"
|
|
69
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
-
checksum = "
|
|
69
|
+
checksum = "c5f7474c36606d0fe4f438291d667bae7042ea2760f506650ad2366926358fc8"
|
|
71
70
|
dependencies = [
|
|
72
71
|
"accesskit",
|
|
73
72
|
"accesskit_atspi_common",
|
|
@@ -83,14 +82,13 @@ dependencies = [
|
|
|
83
82
|
|
|
84
83
|
[[package]]
|
|
85
84
|
name = "accesskit_windows"
|
|
86
|
-
version = "0.
|
|
85
|
+
version = "0.27.0"
|
|
87
86
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
-
checksum = "
|
|
87
|
+
checksum = "70a042b62c9c05bf7b616f015515c17d2813f3ba89978d6f4fc369735d60700a"
|
|
89
88
|
dependencies = [
|
|
90
89
|
"accesskit",
|
|
91
90
|
"accesskit_consumer",
|
|
92
91
|
"hashbrown",
|
|
93
|
-
"paste",
|
|
94
92
|
"static_assertions",
|
|
95
93
|
"windows",
|
|
96
94
|
"windows-core",
|
|
@@ -98,9 +96,9 @@ dependencies = [
|
|
|
98
96
|
|
|
99
97
|
[[package]]
|
|
100
98
|
name = "accesskit_winit"
|
|
101
|
-
version = "0.
|
|
99
|
+
version = "0.27.0"
|
|
102
100
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
-
checksum = "
|
|
101
|
+
checksum = "5c1f0d3d13113d8857542a4f8d1a1c24d1dc1527b77aee8426127f4901588708"
|
|
104
102
|
dependencies = [
|
|
105
103
|
"accesskit",
|
|
106
104
|
"accesskit_macos",
|
|
@@ -129,6 +127,15 @@ dependencies = [
|
|
|
129
127
|
"zerocopy",
|
|
130
128
|
]
|
|
131
129
|
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "aligned-vec"
|
|
132
|
+
version = "0.6.4"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "dc890384c8602f339876ded803c97ad529f3842aba97f6392b3dba0dd171769b"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"equator",
|
|
137
|
+
]
|
|
138
|
+
|
|
132
139
|
[[package]]
|
|
133
140
|
name = "android-activity"
|
|
134
141
|
version = "0.6.0"
|
|
@@ -145,7 +152,7 @@ dependencies = [
|
|
|
145
152
|
"log",
|
|
146
153
|
"ndk",
|
|
147
154
|
"ndk-context",
|
|
148
|
-
"ndk-sys
|
|
155
|
+
"ndk-sys",
|
|
149
156
|
"num_enum",
|
|
150
157
|
"thiserror 1.0.69",
|
|
151
158
|
]
|
|
@@ -157,19 +164,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
157
164
|
checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
|
|
158
165
|
|
|
159
166
|
[[package]]
|
|
160
|
-
name = "
|
|
161
|
-
version = "0.
|
|
167
|
+
name = "anyhow"
|
|
168
|
+
version = "1.0.98"
|
|
162
169
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
-
checksum = "
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
170
|
+
checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
|
|
171
|
+
|
|
172
|
+
[[package]]
|
|
173
|
+
name = "arbitrary"
|
|
174
|
+
version = "1.4.1"
|
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
+
checksum = "dde20b3d026af13f561bdd0f15edf01fc734f0dafcedbaf42bba506a9517f223"
|
|
167
177
|
|
|
168
178
|
[[package]]
|
|
169
179
|
name = "arboard"
|
|
170
|
-
version = "3.
|
|
180
|
+
version = "3.6.0"
|
|
171
181
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
-
checksum = "
|
|
182
|
+
checksum = "55f533f8e0af236ffe5eb979b99381df3258853f00ba2e44b6e1955292c75227"
|
|
173
183
|
dependencies = [
|
|
174
184
|
"clipboard-win",
|
|
175
185
|
"image",
|
|
@@ -185,6 +195,17 @@ dependencies = [
|
|
|
185
195
|
"x11rb",
|
|
186
196
|
]
|
|
187
197
|
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "arg_enum_proc_macro"
|
|
200
|
+
version = "0.3.4"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "0ae92a5119aa49cdbcf6b9f893fe4e1d98b04ccbf82ee0584ad948a44a734dea"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"proc-macro2",
|
|
205
|
+
"quote",
|
|
206
|
+
"syn",
|
|
207
|
+
]
|
|
208
|
+
|
|
188
209
|
[[package]]
|
|
189
210
|
name = "arrayref"
|
|
190
211
|
version = "0.3.9"
|
|
@@ -203,15 +224,6 @@ version = "1.0.1"
|
|
|
203
224
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
225
|
checksum = "175571dd1d178ced59193a6fc02dde1b972eb0bc56c892cde9beeceac5bf0f6b"
|
|
205
226
|
|
|
206
|
-
[[package]]
|
|
207
|
-
name = "ash"
|
|
208
|
-
version = "0.38.0+1.3.281"
|
|
209
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
-
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
|
211
|
-
dependencies = [
|
|
212
|
-
"libloading",
|
|
213
|
-
]
|
|
214
|
-
|
|
215
227
|
[[package]]
|
|
216
228
|
name = "async-broadcast"
|
|
217
229
|
version = "0.7.2"
|
|
@@ -226,9 +238,9 @@ dependencies = [
|
|
|
226
238
|
|
|
227
239
|
[[package]]
|
|
228
240
|
name = "async-channel"
|
|
229
|
-
version = "2.
|
|
241
|
+
version = "2.5.0"
|
|
230
242
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
-
checksum = "
|
|
243
|
+
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
|
232
244
|
dependencies = [
|
|
233
245
|
"concurrent-queue",
|
|
234
246
|
"event-listener-strategy",
|
|
@@ -250,17 +262,6 @@ dependencies = [
|
|
|
250
262
|
"slab",
|
|
251
263
|
]
|
|
252
264
|
|
|
253
|
-
[[package]]
|
|
254
|
-
name = "async-fs"
|
|
255
|
-
version = "2.1.2"
|
|
256
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
257
|
-
checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
|
|
258
|
-
dependencies = [
|
|
259
|
-
"async-lock",
|
|
260
|
-
"blocking",
|
|
261
|
-
"futures-lite",
|
|
262
|
-
]
|
|
263
|
-
|
|
264
265
|
[[package]]
|
|
265
266
|
name = "async-io"
|
|
266
267
|
version = "2.4.1"
|
|
@@ -274,7 +275,7 @@ dependencies = [
|
|
|
274
275
|
"futures-lite",
|
|
275
276
|
"parking",
|
|
276
277
|
"polling",
|
|
277
|
-
"rustix 1.0.
|
|
278
|
+
"rustix 1.0.8",
|
|
278
279
|
"slab",
|
|
279
280
|
"tracing",
|
|
280
281
|
"windows-sys 0.59.0",
|
|
@@ -306,7 +307,7 @@ dependencies = [
|
|
|
306
307
|
"cfg-if",
|
|
307
308
|
"event-listener",
|
|
308
309
|
"futures-lite",
|
|
309
|
-
"rustix 1.0.
|
|
310
|
+
"rustix 1.0.8",
|
|
310
311
|
"tracing",
|
|
311
312
|
]
|
|
312
313
|
|
|
@@ -333,7 +334,7 @@ dependencies = [
|
|
|
333
334
|
"cfg-if",
|
|
334
335
|
"futures-core",
|
|
335
336
|
"futures-io",
|
|
336
|
-
"rustix 1.0.
|
|
337
|
+
"rustix 1.0.8",
|
|
337
338
|
"signal-hook-registry",
|
|
338
339
|
"slab",
|
|
339
340
|
"windows-sys 0.59.0",
|
|
@@ -364,9 +365,9 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
|
364
365
|
|
|
365
366
|
[[package]]
|
|
366
367
|
name = "atspi"
|
|
367
|
-
version = "0.
|
|
368
|
+
version = "0.25.0"
|
|
368
369
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
-
checksum = "
|
|
370
|
+
checksum = "c83247582e7508838caf5f316c00791eee0e15c0bf743e6880585b867e16815c"
|
|
370
371
|
dependencies = [
|
|
371
372
|
"atspi-common",
|
|
372
373
|
"atspi-connection",
|
|
@@ -375,9 +376,9 @@ dependencies = [
|
|
|
375
376
|
|
|
376
377
|
[[package]]
|
|
377
378
|
name = "atspi-common"
|
|
378
|
-
version = "0.
|
|
379
|
+
version = "0.9.0"
|
|
379
380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
-
checksum = "
|
|
381
|
+
checksum = "33dfc05e7cdf90988a197803bf24f5788f94f7c94a69efa95683e8ffe76cfdfb"
|
|
381
382
|
dependencies = [
|
|
382
383
|
"enumflags2",
|
|
383
384
|
"serde",
|
|
@@ -391,9 +392,9 @@ dependencies = [
|
|
|
391
392
|
|
|
392
393
|
[[package]]
|
|
393
394
|
name = "atspi-connection"
|
|
394
|
-
version = "0.
|
|
395
|
+
version = "0.9.0"
|
|
395
396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "
|
|
397
|
+
checksum = "4193d51303d8332304056ae0004714256b46b6635a5c556109b319c0d3784938"
|
|
397
398
|
dependencies = [
|
|
398
399
|
"atspi-common",
|
|
399
400
|
"atspi-proxies",
|
|
@@ -403,14 +404,13 @@ dependencies = [
|
|
|
403
404
|
|
|
404
405
|
[[package]]
|
|
405
406
|
name = "atspi-proxies"
|
|
406
|
-
version = "0.
|
|
407
|
+
version = "0.9.0"
|
|
407
408
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
-
checksum = "
|
|
409
|
+
checksum = "d2eebcb9e7e76f26d0bcfd6f0295e1cd1e6f33bedbc5698a971db8dc43d7751c"
|
|
409
410
|
dependencies = [
|
|
410
411
|
"atspi-common",
|
|
411
412
|
"serde",
|
|
412
413
|
"zbus",
|
|
413
|
-
"zvariant",
|
|
414
414
|
]
|
|
415
415
|
|
|
416
416
|
[[package]]
|
|
@@ -420,25 +420,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
420
420
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
421
421
|
|
|
422
422
|
[[package]]
|
|
423
|
-
name = "
|
|
424
|
-
version = "0.
|
|
423
|
+
name = "av1-grain"
|
|
424
|
+
version = "0.2.4"
|
|
425
425
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
-
checksum = "
|
|
426
|
+
checksum = "4f3efb2ca85bc610acfa917b5aaa36f3fcbebed5b3182d7f877b02531c4b80c8"
|
|
427
|
+
dependencies = [
|
|
428
|
+
"anyhow",
|
|
429
|
+
"arrayvec",
|
|
430
|
+
"log",
|
|
431
|
+
"nom",
|
|
432
|
+
"num-rational",
|
|
433
|
+
"v_frame",
|
|
434
|
+
]
|
|
427
435
|
|
|
428
436
|
[[package]]
|
|
429
|
-
name = "
|
|
430
|
-
version = "0.
|
|
437
|
+
name = "avif-serialize"
|
|
438
|
+
version = "0.8.5"
|
|
431
439
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
-
checksum = "
|
|
440
|
+
checksum = "2ea8ef51aced2b9191c08197f55450d830876d9933f8f48a429b354f1d496b42"
|
|
441
|
+
dependencies = [
|
|
442
|
+
"arrayvec",
|
|
443
|
+
]
|
|
433
444
|
|
|
434
445
|
[[package]]
|
|
435
|
-
name = "
|
|
436
|
-
version = "
|
|
446
|
+
name = "base64"
|
|
447
|
+
version = "0.22.1"
|
|
437
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
-
checksum = "
|
|
439
|
-
dependencies = [
|
|
440
|
-
"serde",
|
|
441
|
-
]
|
|
449
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
442
450
|
|
|
443
451
|
[[package]]
|
|
444
452
|
name = "bit-set"
|
|
@@ -455,6 +463,12 @@ version = "0.8.0"
|
|
|
455
463
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
456
464
|
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
457
465
|
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "bit_field"
|
|
468
|
+
version = "0.10.2"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "dc827186963e592360843fb5ba4b973e145841266c1357f7180c43526f2e5b61"
|
|
471
|
+
|
|
458
472
|
[[package]]
|
|
459
473
|
name = "bitflags"
|
|
460
474
|
version = "1.3.2"
|
|
@@ -471,19 +485,10 @@ dependencies = [
|
|
|
471
485
|
]
|
|
472
486
|
|
|
473
487
|
[[package]]
|
|
474
|
-
name = "
|
|
475
|
-
version = "
|
|
488
|
+
name = "bitstream-io"
|
|
489
|
+
version = "2.6.0"
|
|
476
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
-
checksum = "
|
|
478
|
-
|
|
479
|
-
[[package]]
|
|
480
|
-
name = "block-buffer"
|
|
481
|
-
version = "0.10.4"
|
|
482
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
-
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
484
|
-
dependencies = [
|
|
485
|
-
"generic-array",
|
|
486
|
-
]
|
|
491
|
+
checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
|
|
487
492
|
|
|
488
493
|
[[package]]
|
|
489
494
|
name = "block2"
|
|
@@ -496,9 +501,9 @@ dependencies = [
|
|
|
496
501
|
|
|
497
502
|
[[package]]
|
|
498
503
|
name = "blocking"
|
|
499
|
-
version = "1.6.
|
|
504
|
+
version = "1.6.2"
|
|
500
505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
506
|
+
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
502
507
|
dependencies = [
|
|
503
508
|
"async-channel",
|
|
504
509
|
"async-task",
|
|
@@ -507,6 +512,12 @@ dependencies = [
|
|
|
507
512
|
"piper",
|
|
508
513
|
]
|
|
509
514
|
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "built"
|
|
517
|
+
version = "0.7.7"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
|
|
520
|
+
|
|
510
521
|
[[package]]
|
|
511
522
|
name = "bumpalo"
|
|
512
523
|
version = "3.19.0"
|
|
@@ -573,9 +584,9 @@ dependencies = [
|
|
|
573
584
|
|
|
574
585
|
[[package]]
|
|
575
586
|
name = "cc"
|
|
576
|
-
version = "1.2.
|
|
587
|
+
version = "1.2.29"
|
|
577
588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
-
checksum = "
|
|
589
|
+
checksum = "5c1599538de2394445747c8cf7935946e3cc27e9625f889d979bfb2aaf569362"
|
|
579
590
|
dependencies = [
|
|
580
591
|
"jobserver",
|
|
581
592
|
"libc",
|
|
@@ -588,6 +599,16 @@ version = "1.1.0"
|
|
|
588
599
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
600
|
checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
|
|
590
601
|
|
|
602
|
+
[[package]]
|
|
603
|
+
name = "cfg-expr"
|
|
604
|
+
version = "0.15.8"
|
|
605
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
+
checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02"
|
|
607
|
+
dependencies = [
|
|
608
|
+
"smallvec",
|
|
609
|
+
"target-lexicon 0.12.16",
|
|
610
|
+
]
|
|
611
|
+
|
|
591
612
|
[[package]]
|
|
592
613
|
name = "cfg-if"
|
|
593
614
|
version = "1.0.1"
|
|
@@ -611,23 +632,30 @@ dependencies = [
|
|
|
611
632
|
|
|
612
633
|
[[package]]
|
|
613
634
|
name = "clipboard-win"
|
|
614
|
-
version = "5.4.
|
|
635
|
+
version = "5.4.1"
|
|
615
636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
-
checksum = "
|
|
637
|
+
checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
|
|
617
638
|
dependencies = [
|
|
618
639
|
"error-code",
|
|
619
640
|
]
|
|
620
641
|
|
|
621
642
|
[[package]]
|
|
622
643
|
name = "codespan-reporting"
|
|
623
|
-
version = "0.
|
|
644
|
+
version = "0.12.0"
|
|
624
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
-
checksum = "
|
|
646
|
+
checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
|
|
626
647
|
dependencies = [
|
|
648
|
+
"serde",
|
|
627
649
|
"termcolor",
|
|
628
650
|
"unicode-width",
|
|
629
651
|
]
|
|
630
652
|
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "color_quant"
|
|
655
|
+
version = "1.1.0"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
658
|
+
|
|
631
659
|
[[package]]
|
|
632
660
|
name = "combine"
|
|
633
661
|
version = "4.6.7"
|
|
@@ -699,108 +727,88 @@ dependencies = [
|
|
|
699
727
|
|
|
700
728
|
[[package]]
|
|
701
729
|
name = "cosmol_viewer"
|
|
702
|
-
version = "0.1.
|
|
730
|
+
version = "0.1.2"
|
|
703
731
|
dependencies = [
|
|
704
732
|
"bytemuck",
|
|
705
733
|
"cosmol_viewer_core",
|
|
706
734
|
"eframe",
|
|
707
735
|
"egui_extras",
|
|
708
|
-
"glam",
|
|
709
|
-
"hex",
|
|
710
|
-
"ipc-channel",
|
|
711
736
|
"serde",
|
|
712
737
|
"serde_json",
|
|
713
|
-
"sha2",
|
|
714
738
|
"wasm-bindgen-futures",
|
|
715
|
-
"web-sys",
|
|
716
739
|
]
|
|
717
740
|
|
|
718
741
|
[[package]]
|
|
719
742
|
name = "cosmol_viewer_core"
|
|
720
|
-
version = "0.1.
|
|
721
|
-
dependencies = [
|
|
722
|
-
"bytemuck",
|
|
723
|
-
"eframe",
|
|
724
|
-
"egui_extras",
|
|
725
|
-
"glam",
|
|
726
|
-
"serde",
|
|
727
|
-
"serde_json",
|
|
728
|
-
"wasm-bindgen-futures",
|
|
729
|
-
"web-sys",
|
|
730
|
-
]
|
|
731
|
-
|
|
732
|
-
[[package]]
|
|
733
|
-
name = "cosmol_viewer_gui"
|
|
734
|
-
version = "0.1.1-nightly.4"
|
|
743
|
+
version = "0.1.2"
|
|
735
744
|
dependencies = [
|
|
736
745
|
"bytemuck",
|
|
737
|
-
"cosmol_viewer_core",
|
|
738
746
|
"eframe",
|
|
747
|
+
"egui-winit",
|
|
739
748
|
"egui_extras",
|
|
740
749
|
"glam",
|
|
741
|
-
"
|
|
750
|
+
"image",
|
|
751
|
+
"once_cell",
|
|
742
752
|
"serde",
|
|
743
753
|
"serde_json",
|
|
754
|
+
"serde_repr",
|
|
744
755
|
"wasm-bindgen-futures",
|
|
745
|
-
"web-sys",
|
|
746
756
|
]
|
|
747
757
|
|
|
748
758
|
[[package]]
|
|
749
759
|
name = "cosmol_viewer_python"
|
|
750
760
|
version = "0.0.0"
|
|
751
761
|
dependencies = [
|
|
752
|
-
"base64
|
|
762
|
+
"base64",
|
|
753
763
|
"cosmol_viewer_core",
|
|
764
|
+
"cosmol_viewer_wasm",
|
|
754
765
|
"eframe",
|
|
755
766
|
"egui_extras",
|
|
756
|
-
"glam",
|
|
757
|
-
"hex",
|
|
758
|
-
"ipc-channel",
|
|
759
767
|
"pyo3",
|
|
760
768
|
"serde_json",
|
|
761
|
-
"sha2",
|
|
762
|
-
"uuid",
|
|
763
|
-
"wasm-bindgen",
|
|
764
769
|
]
|
|
765
770
|
|
|
766
771
|
[[package]]
|
|
767
772
|
name = "cosmol_viewer_wasm"
|
|
768
|
-
version = "0.1.
|
|
773
|
+
version = "0.1.2"
|
|
769
774
|
dependencies = [
|
|
775
|
+
"base64",
|
|
770
776
|
"cosmol_viewer_core",
|
|
771
777
|
"eframe",
|
|
772
|
-
"egui_extras",
|
|
773
|
-
"glam",
|
|
774
778
|
"log",
|
|
779
|
+
"pyo3",
|
|
780
|
+
"serde",
|
|
775
781
|
"serde_json",
|
|
782
|
+
"uuid",
|
|
776
783
|
"wasm-bindgen",
|
|
777
784
|
"wasm-bindgen-futures",
|
|
778
785
|
"web-sys",
|
|
779
786
|
]
|
|
780
787
|
|
|
781
788
|
[[package]]
|
|
782
|
-
name = "
|
|
783
|
-
version = "
|
|
789
|
+
name = "crc32fast"
|
|
790
|
+
version = "1.5.0"
|
|
784
791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
-
checksum = "
|
|
792
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
786
793
|
dependencies = [
|
|
787
|
-
"
|
|
794
|
+
"cfg-if",
|
|
788
795
|
]
|
|
789
796
|
|
|
790
797
|
[[package]]
|
|
791
|
-
name = "
|
|
792
|
-
version = "
|
|
798
|
+
name = "crossbeam-deque"
|
|
799
|
+
version = "0.8.6"
|
|
793
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "
|
|
801
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
795
802
|
dependencies = [
|
|
796
|
-
"
|
|
803
|
+
"crossbeam-epoch",
|
|
804
|
+
"crossbeam-utils",
|
|
797
805
|
]
|
|
798
806
|
|
|
799
807
|
[[package]]
|
|
800
|
-
name = "crossbeam-
|
|
801
|
-
version = "0.
|
|
808
|
+
name = "crossbeam-epoch"
|
|
809
|
+
version = "0.9.18"
|
|
802
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
-
checksum = "
|
|
811
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
804
812
|
dependencies = [
|
|
805
813
|
"crossbeam-utils",
|
|
806
814
|
]
|
|
@@ -812,14 +820,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
812
820
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
813
821
|
|
|
814
822
|
[[package]]
|
|
815
|
-
name = "
|
|
816
|
-
version = "0.
|
|
823
|
+
name = "crunchy"
|
|
824
|
+
version = "0.2.4"
|
|
817
825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
818
|
-
checksum = "
|
|
819
|
-
dependencies = [
|
|
820
|
-
"generic-array",
|
|
821
|
-
"typenum",
|
|
822
|
-
]
|
|
826
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
823
827
|
|
|
824
828
|
[[package]]
|
|
825
829
|
name = "cursor-icon"
|
|
@@ -827,22 +831,6 @@ version = "1.2.0"
|
|
|
827
831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
832
|
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
|
829
833
|
|
|
830
|
-
[[package]]
|
|
831
|
-
name = "data-url"
|
|
832
|
-
version = "0.3.1"
|
|
833
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
-
checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
|
|
835
|
-
|
|
836
|
-
[[package]]
|
|
837
|
-
name = "digest"
|
|
838
|
-
version = "0.10.7"
|
|
839
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
841
|
-
dependencies = [
|
|
842
|
-
"block-buffer",
|
|
843
|
-
"crypto-common",
|
|
844
|
-
]
|
|
845
|
-
|
|
846
834
|
[[package]]
|
|
847
835
|
name = "dispatch"
|
|
848
836
|
version = "0.2.0"
|
|
@@ -902,9 +890,9 @@ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
|
902
890
|
|
|
903
891
|
[[package]]
|
|
904
892
|
name = "ecolor"
|
|
905
|
-
version = "0.
|
|
893
|
+
version = "0.32.0"
|
|
906
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
-
checksum = "
|
|
895
|
+
checksum = "4a631732d995184114016fab22fc7e3faf73d6841c2d7650395fe251fbcd9285"
|
|
908
896
|
dependencies = [
|
|
909
897
|
"bytemuck",
|
|
910
898
|
"emath",
|
|
@@ -912,9 +900,9 @@ dependencies = [
|
|
|
912
900
|
|
|
913
901
|
[[package]]
|
|
914
902
|
name = "eframe"
|
|
915
|
-
version = "0.
|
|
903
|
+
version = "0.32.0"
|
|
916
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
917
|
-
checksum = "
|
|
905
|
+
checksum = "0c790ccfbb3dd556588342463454b2b2b13909e5fdce5bc2a1432a8aa69c8b7a"
|
|
918
906
|
dependencies = [
|
|
919
907
|
"ahash",
|
|
920
908
|
"bytemuck",
|
|
@@ -948,9 +936,9 @@ dependencies = [
|
|
|
948
936
|
|
|
949
937
|
[[package]]
|
|
950
938
|
name = "egui"
|
|
951
|
-
version = "0.
|
|
939
|
+
version = "0.32.0"
|
|
952
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
-
checksum = "
|
|
941
|
+
checksum = "8470210c95a42cc985d9ffebfd5067eea55bdb1c3f7611484907db9639675e28"
|
|
954
942
|
dependencies = [
|
|
955
943
|
"accesskit",
|
|
956
944
|
"ahash",
|
|
@@ -960,13 +948,15 @@ dependencies = [
|
|
|
960
948
|
"log",
|
|
961
949
|
"nohash-hasher",
|
|
962
950
|
"profiling",
|
|
951
|
+
"smallvec",
|
|
952
|
+
"unicode-segmentation",
|
|
963
953
|
]
|
|
964
954
|
|
|
965
955
|
[[package]]
|
|
966
956
|
name = "egui-wgpu"
|
|
967
|
-
version = "0.
|
|
957
|
+
version = "0.32.0"
|
|
968
958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
969
|
-
checksum = "
|
|
959
|
+
checksum = "14de9942d8b9e99e2d830403c208ab1a6e052e925a7456a4f6f66d567d90de1d"
|
|
970
960
|
dependencies = [
|
|
971
961
|
"ahash",
|
|
972
962
|
"bytemuck",
|
|
@@ -984,9 +974,9 @@ dependencies = [
|
|
|
984
974
|
|
|
985
975
|
[[package]]
|
|
986
976
|
name = "egui-winit"
|
|
987
|
-
version = "0.
|
|
977
|
+
version = "0.32.0"
|
|
988
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
989
|
-
checksum = "
|
|
979
|
+
checksum = "c490804a035cec9c826082894a3e1ecf4198accd3817deb10f7919108ebafab0"
|
|
990
980
|
dependencies = [
|
|
991
981
|
"accesskit_winit",
|
|
992
982
|
"ahash",
|
|
@@ -1004,9 +994,9 @@ dependencies = [
|
|
|
1004
994
|
|
|
1005
995
|
[[package]]
|
|
1006
996
|
name = "egui_extras"
|
|
1007
|
-
version = "0.
|
|
997
|
+
version = "0.32.0"
|
|
1008
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
-
checksum = "
|
|
999
|
+
checksum = "0f791a5937f518249016b276b3639ad2aa3824048b6f2161ec2b431ab325880a"
|
|
1010
1000
|
dependencies = [
|
|
1011
1001
|
"ahash",
|
|
1012
1002
|
"egui",
|
|
@@ -1014,14 +1004,13 @@ dependencies = [
|
|
|
1014
1004
|
"log",
|
|
1015
1005
|
"mime_guess2",
|
|
1016
1006
|
"profiling",
|
|
1017
|
-
"resvg",
|
|
1018
1007
|
]
|
|
1019
1008
|
|
|
1020
1009
|
[[package]]
|
|
1021
1010
|
name = "egui_glow"
|
|
1022
|
-
version = "0.
|
|
1011
|
+
version = "0.32.0"
|
|
1023
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
-
checksum = "
|
|
1013
|
+
checksum = "d44f3fd4fdc5f960c9e9ef7327c26647edc3141abf96102980647129d49358e6"
|
|
1025
1014
|
dependencies = [
|
|
1026
1015
|
"ahash",
|
|
1027
1016
|
"bytemuck",
|
|
@@ -1035,11 +1024,17 @@ dependencies = [
|
|
|
1035
1024
|
"winit",
|
|
1036
1025
|
]
|
|
1037
1026
|
|
|
1027
|
+
[[package]]
|
|
1028
|
+
name = "either"
|
|
1029
|
+
version = "1.15.0"
|
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1031
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
1032
|
+
|
|
1038
1033
|
[[package]]
|
|
1039
1034
|
name = "emath"
|
|
1040
|
-
version = "0.
|
|
1035
|
+
version = "0.32.0"
|
|
1041
1036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
|
-
checksum = "
|
|
1037
|
+
checksum = "45f057b141e7e46340c321400be74b793543b1b213036f0f989c35d35957c32e"
|
|
1043
1038
|
dependencies = [
|
|
1044
1039
|
"bytemuck",
|
|
1045
1040
|
]
|
|
@@ -1057,7 +1052,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1057
1052
|
checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9"
|
|
1058
1053
|
dependencies = [
|
|
1059
1054
|
"enum-map-derive",
|
|
1060
|
-
"serde",
|
|
1061
1055
|
]
|
|
1062
1056
|
|
|
1063
1057
|
[[package]]
|
|
@@ -1094,9 +1088,9 @@ dependencies = [
|
|
|
1094
1088
|
|
|
1095
1089
|
[[package]]
|
|
1096
1090
|
name = "epaint"
|
|
1097
|
-
version = "0.
|
|
1091
|
+
version = "0.32.0"
|
|
1098
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1093
|
+
checksum = "94cca02195f0552c17cabdc02f39aa9ab6fbd815dac60ab1cd3d5b0aa6f9551c"
|
|
1100
1094
|
dependencies = [
|
|
1101
1095
|
"ab_glyph",
|
|
1102
1096
|
"ahash",
|
|
@@ -1112,9 +1106,29 @@ dependencies = [
|
|
|
1112
1106
|
|
|
1113
1107
|
[[package]]
|
|
1114
1108
|
name = "epaint_default_fonts"
|
|
1115
|
-
version = "0.
|
|
1109
|
+
version = "0.32.0"
|
|
1116
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
-
checksum = "
|
|
1111
|
+
checksum = "e8495e11ed527dff39663b8c36b6c2b2799d7e4287fb90556e455d72eca0b4d3"
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "equator"
|
|
1115
|
+
version = "0.4.2"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"equator-macro",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "equator-macro"
|
|
1124
|
+
version = "0.4.2"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"proc-macro2",
|
|
1129
|
+
"quote",
|
|
1130
|
+
"syn",
|
|
1131
|
+
]
|
|
1118
1132
|
|
|
1119
1133
|
[[package]]
|
|
1120
1134
|
name = "equivalent"
|
|
@@ -1159,6 +1173,21 @@ dependencies = [
|
|
|
1159
1173
|
"pin-project-lite",
|
|
1160
1174
|
]
|
|
1161
1175
|
|
|
1176
|
+
[[package]]
|
|
1177
|
+
name = "exr"
|
|
1178
|
+
version = "1.73.0"
|
|
1179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1180
|
+
checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0"
|
|
1181
|
+
dependencies = [
|
|
1182
|
+
"bit_field",
|
|
1183
|
+
"half",
|
|
1184
|
+
"lebe",
|
|
1185
|
+
"miniz_oxide",
|
|
1186
|
+
"rayon-core",
|
|
1187
|
+
"smallvec",
|
|
1188
|
+
"zune-inflate",
|
|
1189
|
+
]
|
|
1190
|
+
|
|
1162
1191
|
[[package]]
|
|
1163
1192
|
name = "fastrand"
|
|
1164
1193
|
version = "2.3.0"
|
|
@@ -1184,18 +1213,6 @@ dependencies = [
|
|
|
1184
1213
|
"miniz_oxide",
|
|
1185
1214
|
]
|
|
1186
1215
|
|
|
1187
|
-
[[package]]
|
|
1188
|
-
name = "float-cmp"
|
|
1189
|
-
version = "0.9.0"
|
|
1190
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
-
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
1192
|
-
|
|
1193
|
-
[[package]]
|
|
1194
|
-
name = "fnv"
|
|
1195
|
-
version = "1.0.7"
|
|
1196
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1198
|
-
|
|
1199
1216
|
[[package]]
|
|
1200
1217
|
name = "foldhash"
|
|
1201
1218
|
version = "0.1.5"
|
|
@@ -1274,12 +1291,6 @@ dependencies = [
|
|
|
1274
1291
|
"syn",
|
|
1275
1292
|
]
|
|
1276
1293
|
|
|
1277
|
-
[[package]]
|
|
1278
|
-
name = "futures-sink"
|
|
1279
|
-
version = "0.3.31"
|
|
1280
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1281
|
-
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1282
|
-
|
|
1283
1294
|
[[package]]
|
|
1284
1295
|
name = "futures-task"
|
|
1285
1296
|
version = "0.3.31"
|
|
@@ -1293,26 +1304,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1293
1304
|
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1294
1305
|
dependencies = [
|
|
1295
1306
|
"futures-core",
|
|
1296
|
-
"futures-io",
|
|
1297
1307
|
"futures-macro",
|
|
1298
|
-
"futures-sink",
|
|
1299
1308
|
"futures-task",
|
|
1300
|
-
"memchr",
|
|
1301
1309
|
"pin-project-lite",
|
|
1302
1310
|
"pin-utils",
|
|
1303
1311
|
"slab",
|
|
1304
1312
|
]
|
|
1305
1313
|
|
|
1306
|
-
[[package]]
|
|
1307
|
-
name = "generic-array"
|
|
1308
|
-
version = "0.14.7"
|
|
1309
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
-
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1311
|
-
dependencies = [
|
|
1312
|
-
"typenum",
|
|
1313
|
-
"version_check",
|
|
1314
|
-
]
|
|
1315
|
-
|
|
1316
1314
|
[[package]]
|
|
1317
1315
|
name = "gethostname"
|
|
1318
1316
|
version = "0.4.3"
|
|
@@ -1346,6 +1344,16 @@ dependencies = [
|
|
|
1346
1344
|
"wasi 0.14.2+wasi-0.2.4",
|
|
1347
1345
|
]
|
|
1348
1346
|
|
|
1347
|
+
[[package]]
|
|
1348
|
+
name = "gif"
|
|
1349
|
+
version = "0.13.3"
|
|
1350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1351
|
+
checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
|
|
1352
|
+
dependencies = [
|
|
1353
|
+
"color_quant",
|
|
1354
|
+
"weezl",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1349
1357
|
[[package]]
|
|
1350
1358
|
name = "gl_generator"
|
|
1351
1359
|
version = "0.14.0"
|
|
@@ -1445,42 +1453,14 @@ dependencies = [
|
|
|
1445
1453
|
]
|
|
1446
1454
|
|
|
1447
1455
|
[[package]]
|
|
1448
|
-
name = "
|
|
1449
|
-
version = "
|
|
1450
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1451
|
-
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
|
|
1452
|
-
dependencies = [
|
|
1453
|
-
"bitflags 2.9.1",
|
|
1454
|
-
"gpu-alloc-types",
|
|
1455
|
-
]
|
|
1456
|
-
|
|
1457
|
-
[[package]]
|
|
1458
|
-
name = "gpu-alloc-types"
|
|
1459
|
-
version = "0.3.0"
|
|
1460
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1461
|
-
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
|
|
1462
|
-
dependencies = [
|
|
1463
|
-
"bitflags 2.9.1",
|
|
1464
|
-
]
|
|
1465
|
-
|
|
1466
|
-
[[package]]
|
|
1467
|
-
name = "gpu-descriptor"
|
|
1468
|
-
version = "0.3.2"
|
|
1469
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1470
|
-
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
1471
|
-
dependencies = [
|
|
1472
|
-
"bitflags 2.9.1",
|
|
1473
|
-
"gpu-descriptor-types",
|
|
1474
|
-
"hashbrown",
|
|
1475
|
-
]
|
|
1476
|
-
|
|
1477
|
-
[[package]]
|
|
1478
|
-
name = "gpu-descriptor-types"
|
|
1479
|
-
version = "0.2.0"
|
|
1456
|
+
name = "half"
|
|
1457
|
+
version = "2.6.0"
|
|
1480
1458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1481
|
-
checksum = "
|
|
1459
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
1482
1460
|
dependencies = [
|
|
1483
|
-
"
|
|
1461
|
+
"cfg-if",
|
|
1462
|
+
"crunchy",
|
|
1463
|
+
"num-traits",
|
|
1484
1464
|
]
|
|
1485
1465
|
|
|
1486
1466
|
[[package]]
|
|
@@ -1631,31 +1611,42 @@ checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
|
|
|
1631
1611
|
dependencies = [
|
|
1632
1612
|
"bytemuck",
|
|
1633
1613
|
"byteorder-lite",
|
|
1614
|
+
"color_quant",
|
|
1615
|
+
"exr",
|
|
1616
|
+
"gif",
|
|
1617
|
+
"image-webp",
|
|
1634
1618
|
"num-traits",
|
|
1635
1619
|
"png",
|
|
1620
|
+
"qoi",
|
|
1621
|
+
"ravif",
|
|
1622
|
+
"rayon",
|
|
1623
|
+
"rgb",
|
|
1636
1624
|
"tiff",
|
|
1625
|
+
"zune-core",
|
|
1626
|
+
"zune-jpeg",
|
|
1637
1627
|
]
|
|
1638
1628
|
|
|
1639
1629
|
[[package]]
|
|
1640
|
-
name = "
|
|
1641
|
-
version = "0.
|
|
1630
|
+
name = "image-webp"
|
|
1631
|
+
version = "0.2.3"
|
|
1642
1632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1643
|
-
checksum = "
|
|
1633
|
+
checksum = "f6970fe7a5300b4b42e62c52efa0187540a5bef546c60edaf554ef595d2e6f0b"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"byteorder-lite",
|
|
1636
|
+
"quick-error",
|
|
1637
|
+
]
|
|
1644
1638
|
|
|
1645
1639
|
[[package]]
|
|
1646
|
-
name = "
|
|
1647
|
-
version = "
|
|
1640
|
+
name = "imgref"
|
|
1641
|
+
version = "1.11.0"
|
|
1648
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
-
checksum = "
|
|
1650
|
-
dependencies = [
|
|
1651
|
-
"arrayvec",
|
|
1652
|
-
]
|
|
1643
|
+
checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408"
|
|
1653
1644
|
|
|
1654
1645
|
[[package]]
|
|
1655
1646
|
name = "indexmap"
|
|
1656
|
-
version = "2.
|
|
1647
|
+
version = "2.10.0"
|
|
1657
1648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
-
checksum = "
|
|
1649
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
1659
1650
|
dependencies = [
|
|
1660
1651
|
"equivalent",
|
|
1661
1652
|
"hashbrown",
|
|
@@ -1668,21 +1659,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1668
1659
|
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1669
1660
|
|
|
1670
1661
|
[[package]]
|
|
1671
|
-
name = "
|
|
1672
|
-
version = "0.
|
|
1662
|
+
name = "interpolate_name"
|
|
1663
|
+
version = "0.2.4"
|
|
1673
1664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1665
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
1675
1666
|
dependencies = [
|
|
1676
|
-
"
|
|
1677
|
-
"
|
|
1678
|
-
"
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
"
|
|
1683
|
-
"
|
|
1684
|
-
"
|
|
1685
|
-
"
|
|
1667
|
+
"proc-macro2",
|
|
1668
|
+
"quote",
|
|
1669
|
+
"syn",
|
|
1670
|
+
]
|
|
1671
|
+
|
|
1672
|
+
[[package]]
|
|
1673
|
+
name = "itertools"
|
|
1674
|
+
version = "0.12.1"
|
|
1675
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
1677
|
+
dependencies = [
|
|
1678
|
+
"either",
|
|
1686
1679
|
]
|
|
1687
1680
|
|
|
1688
1681
|
[[package]]
|
|
@@ -1739,17 +1732,6 @@ dependencies = [
|
|
|
1739
1732
|
"wasm-bindgen",
|
|
1740
1733
|
]
|
|
1741
1734
|
|
|
1742
|
-
[[package]]
|
|
1743
|
-
name = "khronos-egl"
|
|
1744
|
-
version = "6.0.0"
|
|
1745
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1746
|
-
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
1747
|
-
dependencies = [
|
|
1748
|
-
"libc",
|
|
1749
|
-
"libloading",
|
|
1750
|
-
"pkg-config",
|
|
1751
|
-
]
|
|
1752
|
-
|
|
1753
1735
|
[[package]]
|
|
1754
1736
|
name = "khronos_api"
|
|
1755
1737
|
version = "3.1.0"
|
|
@@ -1757,13 +1739,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1757
1739
|
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
1758
1740
|
|
|
1759
1741
|
[[package]]
|
|
1760
|
-
name = "
|
|
1761
|
-
version = "0.
|
|
1742
|
+
name = "lebe"
|
|
1743
|
+
version = "0.5.2"
|
|
1762
1744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1763
|
-
checksum = "
|
|
1764
|
-
dependencies = [
|
|
1765
|
-
"arrayvec",
|
|
1766
|
-
]
|
|
1745
|
+
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
|
|
1767
1746
|
|
|
1768
1747
|
[[package]]
|
|
1769
1748
|
name = "libc"
|
|
@@ -1771,6 +1750,16 @@ version = "0.2.174"
|
|
|
1771
1750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
1751
|
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
1773
1752
|
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "libfuzzer-sys"
|
|
1755
|
+
version = "0.4.10"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"arbitrary",
|
|
1760
|
+
"cc",
|
|
1761
|
+
]
|
|
1762
|
+
|
|
1774
1763
|
[[package]]
|
|
1775
1764
|
name = "libloading"
|
|
1776
1765
|
version = "0.8.8"
|
|
@@ -1781,6 +1770,12 @@ dependencies = [
|
|
|
1781
1770
|
"windows-targets 0.53.2",
|
|
1782
1771
|
]
|
|
1783
1772
|
|
|
1773
|
+
[[package]]
|
|
1774
|
+
name = "libm"
|
|
1775
|
+
version = "0.2.15"
|
|
1776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1777
|
+
checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
|
|
1778
|
+
|
|
1784
1779
|
[[package]]
|
|
1785
1780
|
name = "libredox"
|
|
1786
1781
|
version = "0.1.4"
|
|
@@ -1833,12 +1828,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1833
1828
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1834
1829
|
|
|
1835
1830
|
[[package]]
|
|
1836
|
-
name = "
|
|
1837
|
-
version = "0.
|
|
1831
|
+
name = "loop9"
|
|
1832
|
+
version = "0.1.5"
|
|
1838
1833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1839
|
-
checksum = "
|
|
1834
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
1840
1835
|
dependencies = [
|
|
1841
|
-
"
|
|
1836
|
+
"imgref",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "maybe-rayon"
|
|
1841
|
+
version = "0.1.1"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
|
|
1844
|
+
dependencies = [
|
|
1845
|
+
"cfg-if",
|
|
1846
|
+
"rayon",
|
|
1842
1847
|
]
|
|
1843
1848
|
|
|
1844
1849
|
[[package]]
|
|
@@ -1849,9 +1854,9 @@ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
|
1849
1854
|
|
|
1850
1855
|
[[package]]
|
|
1851
1856
|
name = "memmap2"
|
|
1852
|
-
version = "0.9.
|
|
1857
|
+
version = "0.9.7"
|
|
1853
1858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1854
|
-
checksum = "
|
|
1859
|
+
checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
|
|
1855
1860
|
dependencies = [
|
|
1856
1861
|
"libc",
|
|
1857
1862
|
]
|
|
@@ -1865,21 +1870,6 @@ dependencies = [
|
|
|
1865
1870
|
"autocfg",
|
|
1866
1871
|
]
|
|
1867
1872
|
|
|
1868
|
-
[[package]]
|
|
1869
|
-
name = "metal"
|
|
1870
|
-
version = "0.31.0"
|
|
1871
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1872
|
-
checksum = "f569fb946490b5743ad69813cb19629130ce9374034abe31614a36402d18f99e"
|
|
1873
|
-
dependencies = [
|
|
1874
|
-
"bitflags 2.9.1",
|
|
1875
|
-
"block",
|
|
1876
|
-
"core-graphics-types",
|
|
1877
|
-
"foreign-types",
|
|
1878
|
-
"log",
|
|
1879
|
-
"objc",
|
|
1880
|
-
"paste",
|
|
1881
|
-
]
|
|
1882
|
-
|
|
1883
1873
|
[[package]]
|
|
1884
1874
|
name = "mime"
|
|
1885
1875
|
version = "0.3.17"
|
|
@@ -1898,6 +1888,12 @@ dependencies = [
|
|
|
1898
1888
|
"unicase",
|
|
1899
1889
|
]
|
|
1900
1890
|
|
|
1891
|
+
[[package]]
|
|
1892
|
+
name = "minimal-lexical"
|
|
1893
|
+
version = "0.2.1"
|
|
1894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1895
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1896
|
+
|
|
1901
1897
|
[[package]]
|
|
1902
1898
|
name = "miniz_oxide"
|
|
1903
1899
|
version = "0.8.9"
|
|
@@ -1908,37 +1904,28 @@ dependencies = [
|
|
|
1908
1904
|
"simd-adler32",
|
|
1909
1905
|
]
|
|
1910
1906
|
|
|
1911
|
-
[[package]]
|
|
1912
|
-
name = "mio"
|
|
1913
|
-
version = "1.0.4"
|
|
1914
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1915
|
-
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
1916
|
-
dependencies = [
|
|
1917
|
-
"libc",
|
|
1918
|
-
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1919
|
-
"windows-sys 0.59.0",
|
|
1920
|
-
]
|
|
1921
|
-
|
|
1922
1907
|
[[package]]
|
|
1923
1908
|
name = "naga"
|
|
1924
|
-
version = "
|
|
1909
|
+
version = "25.0.1"
|
|
1925
1910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1926
|
-
checksum = "
|
|
1911
|
+
checksum = "2b977c445f26e49757f9aca3631c3b8b836942cb278d69a92e7b80d3b24da632"
|
|
1927
1912
|
dependencies = [
|
|
1928
1913
|
"arrayvec",
|
|
1929
1914
|
"bit-set",
|
|
1930
1915
|
"bitflags 2.9.1",
|
|
1931
1916
|
"cfg_aliases",
|
|
1932
1917
|
"codespan-reporting",
|
|
1918
|
+
"half",
|
|
1919
|
+
"hashbrown",
|
|
1933
1920
|
"hexf-parse",
|
|
1934
1921
|
"indexmap",
|
|
1935
1922
|
"log",
|
|
1923
|
+
"num-traits",
|
|
1924
|
+
"once_cell",
|
|
1936
1925
|
"rustc-hash 1.1.0",
|
|
1937
|
-
"spirv",
|
|
1938
1926
|
"strum",
|
|
1939
|
-
"termcolor",
|
|
1940
1927
|
"thiserror 2.0.12",
|
|
1941
|
-
"unicode-
|
|
1928
|
+
"unicode-ident",
|
|
1942
1929
|
]
|
|
1943
1930
|
|
|
1944
1931
|
[[package]]
|
|
@@ -1950,7 +1937,7 @@ dependencies = [
|
|
|
1950
1937
|
"bitflags 2.9.1",
|
|
1951
1938
|
"jni-sys",
|
|
1952
1939
|
"log",
|
|
1953
|
-
"ndk-sys
|
|
1940
|
+
"ndk-sys",
|
|
1954
1941
|
"num_enum",
|
|
1955
1942
|
"raw-window-handle",
|
|
1956
1943
|
"thiserror 1.0.69",
|
|
@@ -1964,27 +1951,24 @@ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
|
1964
1951
|
|
|
1965
1952
|
[[package]]
|
|
1966
1953
|
name = "ndk-sys"
|
|
1967
|
-
version = "0.
|
|
1954
|
+
version = "0.6.0+11769913"
|
|
1968
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1969
|
-
checksum = "
|
|
1956
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
1970
1957
|
dependencies = [
|
|
1971
1958
|
"jni-sys",
|
|
1972
1959
|
]
|
|
1973
1960
|
|
|
1974
1961
|
[[package]]
|
|
1975
|
-
name = "
|
|
1976
|
-
version = "0.6
|
|
1962
|
+
name = "new_debug_unreachable"
|
|
1963
|
+
version = "1.0.6"
|
|
1977
1964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
-
checksum = "
|
|
1979
|
-
dependencies = [
|
|
1980
|
-
"jni-sys",
|
|
1981
|
-
]
|
|
1965
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1982
1966
|
|
|
1983
1967
|
[[package]]
|
|
1984
1968
|
name = "nix"
|
|
1985
|
-
version = "0.
|
|
1969
|
+
version = "0.30.1"
|
|
1986
1970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
-
checksum = "
|
|
1971
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
1988
1972
|
dependencies = [
|
|
1989
1973
|
"bitflags 2.9.1",
|
|
1990
1974
|
"cfg-if",
|
|
@@ -1999,6 +1983,63 @@ version = "0.2.0"
|
|
|
1999
1983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
1984
|
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
2001
1985
|
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "nom"
|
|
1988
|
+
version = "7.1.3"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"memchr",
|
|
1993
|
+
"minimal-lexical",
|
|
1994
|
+
]
|
|
1995
|
+
|
|
1996
|
+
[[package]]
|
|
1997
|
+
name = "noop_proc_macro"
|
|
1998
|
+
version = "0.3.0"
|
|
1999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2000
|
+
checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
|
|
2001
|
+
|
|
2002
|
+
[[package]]
|
|
2003
|
+
name = "num-bigint"
|
|
2004
|
+
version = "0.4.6"
|
|
2005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2006
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
2007
|
+
dependencies = [
|
|
2008
|
+
"num-integer",
|
|
2009
|
+
"num-traits",
|
|
2010
|
+
]
|
|
2011
|
+
|
|
2012
|
+
[[package]]
|
|
2013
|
+
name = "num-derive"
|
|
2014
|
+
version = "0.4.2"
|
|
2015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
+
checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
|
|
2017
|
+
dependencies = [
|
|
2018
|
+
"proc-macro2",
|
|
2019
|
+
"quote",
|
|
2020
|
+
"syn",
|
|
2021
|
+
]
|
|
2022
|
+
|
|
2023
|
+
[[package]]
|
|
2024
|
+
name = "num-integer"
|
|
2025
|
+
version = "0.1.46"
|
|
2026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2027
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
2028
|
+
dependencies = [
|
|
2029
|
+
"num-traits",
|
|
2030
|
+
]
|
|
2031
|
+
|
|
2032
|
+
[[package]]
|
|
2033
|
+
name = "num-rational"
|
|
2034
|
+
version = "0.4.2"
|
|
2035
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2036
|
+
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
|
|
2037
|
+
dependencies = [
|
|
2038
|
+
"num-bigint",
|
|
2039
|
+
"num-integer",
|
|
2040
|
+
"num-traits",
|
|
2041
|
+
]
|
|
2042
|
+
|
|
2002
2043
|
[[package]]
|
|
2003
2044
|
name = "num-traits"
|
|
2004
2045
|
version = "0.2.19"
|
|
@@ -2006,6 +2047,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2006
2047
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2007
2048
|
dependencies = [
|
|
2008
2049
|
"autocfg",
|
|
2050
|
+
"libm",
|
|
2009
2051
|
]
|
|
2010
2052
|
|
|
2011
2053
|
[[package]]
|
|
@@ -2030,15 +2072,6 @@ dependencies = [
|
|
|
2030
2072
|
"syn",
|
|
2031
2073
|
]
|
|
2032
2074
|
|
|
2033
|
-
[[package]]
|
|
2034
|
-
name = "objc"
|
|
2035
|
-
version = "0.2.7"
|
|
2036
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2037
|
-
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
2038
|
-
dependencies = [
|
|
2039
|
-
"malloc_buf",
|
|
2040
|
-
]
|
|
2041
|
-
|
|
2042
2075
|
[[package]]
|
|
2043
2076
|
name = "objc-sys"
|
|
2044
2077
|
version = "0.3.5"
|
|
@@ -2325,15 +2358,6 @@ dependencies = [
|
|
|
2325
2358
|
"libredox",
|
|
2326
2359
|
]
|
|
2327
2360
|
|
|
2328
|
-
[[package]]
|
|
2329
|
-
name = "ordered-float"
|
|
2330
|
-
version = "4.6.0"
|
|
2331
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
-
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
2333
|
-
dependencies = [
|
|
2334
|
-
"num-traits",
|
|
2335
|
-
]
|
|
2336
|
-
|
|
2337
2361
|
[[package]]
|
|
2338
2362
|
name = "ordered-stream"
|
|
2339
2363
|
version = "0.2.0"
|
|
@@ -2411,7 +2435,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2411
2435
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2412
2436
|
dependencies = [
|
|
2413
2437
|
"phf_shared",
|
|
2414
|
-
"rand
|
|
2438
|
+
"rand",
|
|
2415
2439
|
]
|
|
2416
2440
|
|
|
2417
2441
|
[[package]]
|
|
@@ -2434,16 +2458,10 @@ version = "0.11.3"
|
|
|
2434
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
2459
|
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2436
2460
|
dependencies = [
|
|
2437
|
-
"siphasher
|
|
2461
|
+
"siphasher",
|
|
2438
2462
|
"unicase",
|
|
2439
2463
|
]
|
|
2440
2464
|
|
|
2441
|
-
[[package]]
|
|
2442
|
-
name = "pico-args"
|
|
2443
|
-
version = "0.5.0"
|
|
2444
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2445
|
-
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
2446
|
-
|
|
2447
2465
|
[[package]]
|
|
2448
2466
|
name = "pin-project"
|
|
2449
2467
|
version = "1.1.10"
|
|
@@ -2516,7 +2534,7 @@ dependencies = [
|
|
|
2516
2534
|
"concurrent-queue",
|
|
2517
2535
|
"hermit-abi",
|
|
2518
2536
|
"pin-project-lite",
|
|
2519
|
-
"rustix 1.0.
|
|
2537
|
+
"rustix 1.0.8",
|
|
2520
2538
|
"tracing",
|
|
2521
2539
|
"windows-sys 0.59.0",
|
|
2522
2540
|
]
|
|
@@ -2568,6 +2586,19 @@ name = "profiling"
|
|
|
2568
2586
|
version = "1.0.17"
|
|
2569
2587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2570
2588
|
checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
|
|
2589
|
+
dependencies = [
|
|
2590
|
+
"profiling-procmacros",
|
|
2591
|
+
]
|
|
2592
|
+
|
|
2593
|
+
[[package]]
|
|
2594
|
+
name = "profiling-procmacros"
|
|
2595
|
+
version = "1.0.17"
|
|
2596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2597
|
+
checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
|
|
2598
|
+
dependencies = [
|
|
2599
|
+
"quote",
|
|
2600
|
+
"syn",
|
|
2601
|
+
]
|
|
2571
2602
|
|
|
2572
2603
|
[[package]]
|
|
2573
2604
|
name = "pyo3"
|
|
@@ -2593,7 +2624,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2593
2624
|
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
2594
2625
|
dependencies = [
|
|
2595
2626
|
"once_cell",
|
|
2596
|
-
"target-lexicon",
|
|
2627
|
+
"target-lexicon 0.13.2",
|
|
2597
2628
|
]
|
|
2598
2629
|
|
|
2599
2630
|
[[package]]
|
|
@@ -2631,11 +2662,26 @@ dependencies = [
|
|
|
2631
2662
|
"syn",
|
|
2632
2663
|
]
|
|
2633
2664
|
|
|
2665
|
+
[[package]]
|
|
2666
|
+
name = "qoi"
|
|
2667
|
+
version = "0.4.1"
|
|
2668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2669
|
+
checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
|
|
2670
|
+
dependencies = [
|
|
2671
|
+
"bytemuck",
|
|
2672
|
+
]
|
|
2673
|
+
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "quick-error"
|
|
2676
|
+
version = "2.0.1"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
2679
|
+
|
|
2634
2680
|
[[package]]
|
|
2635
2681
|
name = "quick-xml"
|
|
2636
|
-
version = "0.
|
|
2682
|
+
version = "0.36.2"
|
|
2637
2683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2638
|
-
checksum = "
|
|
2684
|
+
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
|
|
2639
2685
|
dependencies = [
|
|
2640
2686
|
"memchr",
|
|
2641
2687
|
"serde",
|
|
@@ -2672,18 +2718,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2672
2718
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2673
2719
|
dependencies = [
|
|
2674
2720
|
"libc",
|
|
2675
|
-
"rand_chacha
|
|
2676
|
-
"rand_core
|
|
2677
|
-
]
|
|
2678
|
-
|
|
2679
|
-
[[package]]
|
|
2680
|
-
name = "rand"
|
|
2681
|
-
version = "0.9.1"
|
|
2682
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2683
|
-
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2684
|
-
dependencies = [
|
|
2685
|
-
"rand_chacha 0.9.0",
|
|
2686
|
-
"rand_core 0.9.3",
|
|
2721
|
+
"rand_chacha",
|
|
2722
|
+
"rand_core",
|
|
2687
2723
|
]
|
|
2688
2724
|
|
|
2689
2725
|
[[package]]
|
|
@@ -2693,35 +2729,66 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2693
2729
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2694
2730
|
dependencies = [
|
|
2695
2731
|
"ppv-lite86",
|
|
2696
|
-
"rand_core
|
|
2732
|
+
"rand_core",
|
|
2697
2733
|
]
|
|
2698
2734
|
|
|
2699
2735
|
[[package]]
|
|
2700
|
-
name = "
|
|
2701
|
-
version = "0.
|
|
2736
|
+
name = "rand_core"
|
|
2737
|
+
version = "0.6.4"
|
|
2702
2738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2703
|
-
checksum = "
|
|
2739
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2704
2740
|
dependencies = [
|
|
2705
|
-
"
|
|
2706
|
-
"rand_core 0.9.3",
|
|
2741
|
+
"getrandom 0.2.16",
|
|
2707
2742
|
]
|
|
2708
2743
|
|
|
2709
2744
|
[[package]]
|
|
2710
|
-
name = "
|
|
2711
|
-
version = "0.
|
|
2745
|
+
name = "rav1e"
|
|
2746
|
+
version = "0.7.1"
|
|
2712
2747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2713
|
-
checksum = "
|
|
2748
|
+
checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
|
|
2714
2749
|
dependencies = [
|
|
2715
|
-
"
|
|
2750
|
+
"arbitrary",
|
|
2751
|
+
"arg_enum_proc_macro",
|
|
2752
|
+
"arrayvec",
|
|
2753
|
+
"av1-grain",
|
|
2754
|
+
"bitstream-io",
|
|
2755
|
+
"built",
|
|
2756
|
+
"cfg-if",
|
|
2757
|
+
"interpolate_name",
|
|
2758
|
+
"itertools",
|
|
2759
|
+
"libc",
|
|
2760
|
+
"libfuzzer-sys",
|
|
2761
|
+
"log",
|
|
2762
|
+
"maybe-rayon",
|
|
2763
|
+
"new_debug_unreachable",
|
|
2764
|
+
"noop_proc_macro",
|
|
2765
|
+
"num-derive",
|
|
2766
|
+
"num-traits",
|
|
2767
|
+
"once_cell",
|
|
2768
|
+
"paste",
|
|
2769
|
+
"profiling",
|
|
2770
|
+
"rand",
|
|
2771
|
+
"rand_chacha",
|
|
2772
|
+
"simd_helpers",
|
|
2773
|
+
"system-deps",
|
|
2774
|
+
"thiserror 1.0.69",
|
|
2775
|
+
"v_frame",
|
|
2776
|
+
"wasm-bindgen",
|
|
2716
2777
|
]
|
|
2717
2778
|
|
|
2718
2779
|
[[package]]
|
|
2719
|
-
name = "
|
|
2720
|
-
version = "0.
|
|
2780
|
+
name = "ravif"
|
|
2781
|
+
version = "0.11.20"
|
|
2721
2782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2722
|
-
checksum = "
|
|
2783
|
+
checksum = "5825c26fddd16ab9f515930d49028a630efec172e903483c94796cfe31893e6b"
|
|
2723
2784
|
dependencies = [
|
|
2724
|
-
"
|
|
2785
|
+
"avif-serialize",
|
|
2786
|
+
"imgref",
|
|
2787
|
+
"loop9",
|
|
2788
|
+
"quick-error",
|
|
2789
|
+
"rav1e",
|
|
2790
|
+
"rayon",
|
|
2791
|
+
"rgb",
|
|
2725
2792
|
]
|
|
2726
2793
|
|
|
2727
2794
|
[[package]]
|
|
@@ -2731,10 +2798,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2731
2798
|
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
2732
2799
|
|
|
2733
2800
|
[[package]]
|
|
2734
|
-
name = "
|
|
2735
|
-
version = "
|
|
2801
|
+
name = "rayon"
|
|
2802
|
+
version = "1.10.0"
|
|
2803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2804
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
2805
|
+
dependencies = [
|
|
2806
|
+
"either",
|
|
2807
|
+
"rayon-core",
|
|
2808
|
+
]
|
|
2809
|
+
|
|
2810
|
+
[[package]]
|
|
2811
|
+
name = "rayon-core"
|
|
2812
|
+
version = "1.12.1"
|
|
2736
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2737
|
-
checksum = "
|
|
2814
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
2815
|
+
dependencies = [
|
|
2816
|
+
"crossbeam-deque",
|
|
2817
|
+
"crossbeam-utils",
|
|
2818
|
+
]
|
|
2738
2819
|
|
|
2739
2820
|
[[package]]
|
|
2740
2821
|
name = "redox_syscall"
|
|
@@ -2760,34 +2841,11 @@ version = "1.1.0"
|
|
|
2760
2841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2761
2842
|
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
2762
2843
|
|
|
2763
|
-
[[package]]
|
|
2764
|
-
name = "resvg"
|
|
2765
|
-
version = "0.37.0"
|
|
2766
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2767
|
-
checksum = "cadccb3d99a9efb8e5e00c16fbb732cbe400db2ec7fc004697ee7d97d86cf1f4"
|
|
2768
|
-
dependencies = [
|
|
2769
|
-
"log",
|
|
2770
|
-
"pico-args",
|
|
2771
|
-
"rgb",
|
|
2772
|
-
"svgtypes",
|
|
2773
|
-
"tiny-skia",
|
|
2774
|
-
"usvg",
|
|
2775
|
-
]
|
|
2776
|
-
|
|
2777
2844
|
[[package]]
|
|
2778
2845
|
name = "rgb"
|
|
2779
|
-
version = "0.8.
|
|
2780
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2781
|
-
checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
|
|
2782
|
-
dependencies = [
|
|
2783
|
-
"bytemuck",
|
|
2784
|
-
]
|
|
2785
|
-
|
|
2786
|
-
[[package]]
|
|
2787
|
-
name = "roxmltree"
|
|
2788
|
-
version = "0.19.0"
|
|
2846
|
+
version = "0.8.52"
|
|
2789
2847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2790
|
-
checksum = "
|
|
2848
|
+
checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
|
|
2791
2849
|
|
|
2792
2850
|
[[package]]
|
|
2793
2851
|
name = "rustc-hash"
|
|
@@ -2816,15 +2874,15 @@ dependencies = [
|
|
|
2816
2874
|
|
|
2817
2875
|
[[package]]
|
|
2818
2876
|
name = "rustix"
|
|
2819
|
-
version = "1.0.
|
|
2877
|
+
version = "1.0.8"
|
|
2820
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2821
|
-
checksum = "
|
|
2879
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
|
2822
2880
|
dependencies = [
|
|
2823
2881
|
"bitflags 2.9.1",
|
|
2824
2882
|
"errno",
|
|
2825
2883
|
"libc",
|
|
2826
2884
|
"linux-raw-sys 0.9.4",
|
|
2827
|
-
"windows-sys 0.
|
|
2885
|
+
"windows-sys 0.60.2",
|
|
2828
2886
|
]
|
|
2829
2887
|
|
|
2830
2888
|
[[package]]
|
|
@@ -2917,25 +2975,12 @@ dependencies = [
|
|
|
2917
2975
|
]
|
|
2918
2976
|
|
|
2919
2977
|
[[package]]
|
|
2920
|
-
name = "
|
|
2921
|
-
version = "0.
|
|
2922
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2923
|
-
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2924
|
-
dependencies = [
|
|
2925
|
-
"cfg-if",
|
|
2926
|
-
"cpufeatures",
|
|
2927
|
-
"digest",
|
|
2928
|
-
]
|
|
2929
|
-
|
|
2930
|
-
[[package]]
|
|
2931
|
-
name = "sha2"
|
|
2932
|
-
version = "0.10.9"
|
|
2978
|
+
name = "serde_spanned"
|
|
2979
|
+
version = "0.6.9"
|
|
2933
2980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2934
|
-
checksum = "
|
|
2981
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2935
2982
|
dependencies = [
|
|
2936
|
-
"
|
|
2937
|
-
"cpufeatures",
|
|
2938
|
-
"digest",
|
|
2983
|
+
"serde",
|
|
2939
2984
|
]
|
|
2940
2985
|
|
|
2941
2986
|
[[package]]
|
|
@@ -2960,20 +3005,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2960
3005
|
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2961
3006
|
|
|
2962
3007
|
[[package]]
|
|
2963
|
-
name = "
|
|
2964
|
-
version = "0.
|
|
3008
|
+
name = "simd_helpers"
|
|
3009
|
+
version = "0.1.0"
|
|
2965
3010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2966
|
-
checksum = "
|
|
3011
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
2967
3012
|
dependencies = [
|
|
2968
|
-
"
|
|
3013
|
+
"quote",
|
|
2969
3014
|
]
|
|
2970
3015
|
|
|
2971
|
-
[[package]]
|
|
2972
|
-
name = "siphasher"
|
|
2973
|
-
version = "0.3.11"
|
|
2974
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2975
|
-
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
2976
|
-
|
|
2977
3016
|
[[package]]
|
|
2978
3017
|
name = "siphasher"
|
|
2979
3018
|
version = "1.0.1"
|
|
@@ -3046,15 +3085,6 @@ dependencies = [
|
|
|
3046
3085
|
"serde",
|
|
3047
3086
|
]
|
|
3048
3087
|
|
|
3049
|
-
[[package]]
|
|
3050
|
-
name = "spirv"
|
|
3051
|
-
version = "0.3.0+sdk-1.3.268.0"
|
|
3052
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3053
|
-
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
3054
|
-
dependencies = [
|
|
3055
|
-
"bitflags 2.9.1",
|
|
3056
|
-
]
|
|
3057
|
-
|
|
3058
3088
|
[[package]]
|
|
3059
3089
|
name = "stable_deref_trait"
|
|
3060
3090
|
version = "1.2.0"
|
|
@@ -3072,9 +3102,6 @@ name = "strict-num"
|
|
|
3072
3102
|
version = "0.1.1"
|
|
3073
3103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3074
3104
|
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
3075
|
-
dependencies = [
|
|
3076
|
-
"float-cmp",
|
|
3077
|
-
]
|
|
3078
3105
|
|
|
3079
3106
|
[[package]]
|
|
3080
3107
|
name = "strum"
|
|
@@ -3098,16 +3125,6 @@ dependencies = [
|
|
|
3098
3125
|
"syn",
|
|
3099
3126
|
]
|
|
3100
3127
|
|
|
3101
|
-
[[package]]
|
|
3102
|
-
name = "svgtypes"
|
|
3103
|
-
version = "0.13.0"
|
|
3104
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
-
checksum = "6e44e288cd960318917cbd540340968b90becc8bc81f171345d706e7a89d9d70"
|
|
3106
|
-
dependencies = [
|
|
3107
|
-
"kurbo",
|
|
3108
|
-
"siphasher 0.3.11",
|
|
3109
|
-
]
|
|
3110
|
-
|
|
3111
3128
|
[[package]]
|
|
3112
3129
|
name = "syn"
|
|
3113
3130
|
version = "2.0.104"
|
|
@@ -3130,6 +3147,25 @@ dependencies = [
|
|
|
3130
3147
|
"syn",
|
|
3131
3148
|
]
|
|
3132
3149
|
|
|
3150
|
+
[[package]]
|
|
3151
|
+
name = "system-deps"
|
|
3152
|
+
version = "6.2.2"
|
|
3153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3154
|
+
checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
|
|
3155
|
+
dependencies = [
|
|
3156
|
+
"cfg-expr",
|
|
3157
|
+
"heck",
|
|
3158
|
+
"pkg-config",
|
|
3159
|
+
"toml",
|
|
3160
|
+
"version-compare",
|
|
3161
|
+
]
|
|
3162
|
+
|
|
3163
|
+
[[package]]
|
|
3164
|
+
name = "target-lexicon"
|
|
3165
|
+
version = "0.12.16"
|
|
3166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3167
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
3168
|
+
|
|
3133
3169
|
[[package]]
|
|
3134
3170
|
name = "target-lexicon"
|
|
3135
3171
|
version = "0.13.2"
|
|
@@ -3145,7 +3181,7 @@ dependencies = [
|
|
|
3145
3181
|
"fastrand",
|
|
3146
3182
|
"getrandom 0.3.3",
|
|
3147
3183
|
"once_cell",
|
|
3148
|
-
"rustix 1.0.
|
|
3184
|
+
"rustix 1.0.8",
|
|
3149
3185
|
"windows-sys 0.59.0",
|
|
3150
3186
|
]
|
|
3151
3187
|
|
|
@@ -3158,17 +3194,6 @@ dependencies = [
|
|
|
3158
3194
|
"winapi-util",
|
|
3159
3195
|
]
|
|
3160
3196
|
|
|
3161
|
-
[[package]]
|
|
3162
|
-
name = "test"
|
|
3163
|
-
version = "0.1.1-nightly.4"
|
|
3164
|
-
dependencies = [
|
|
3165
|
-
"cosmol_viewer",
|
|
3166
|
-
"cosmol_viewer_core",
|
|
3167
|
-
"eframe",
|
|
3168
|
-
"egui_extras",
|
|
3169
|
-
"glam",
|
|
3170
|
-
]
|
|
3171
|
-
|
|
3172
3197
|
[[package]]
|
|
3173
3198
|
name = "thiserror"
|
|
3174
3199
|
version = "1.0.69"
|
|
@@ -3231,7 +3256,6 @@ dependencies = [
|
|
|
3231
3256
|
"bytemuck",
|
|
3232
3257
|
"cfg-if",
|
|
3233
3258
|
"log",
|
|
3234
|
-
"png",
|
|
3235
3259
|
"tiny-skia-path",
|
|
3236
3260
|
]
|
|
3237
3261
|
|
|
@@ -3256,11 +3280,26 @@ dependencies = [
|
|
|
3256
3280
|
"zerovec",
|
|
3257
3281
|
]
|
|
3258
3282
|
|
|
3283
|
+
[[package]]
|
|
3284
|
+
name = "toml"
|
|
3285
|
+
version = "0.8.23"
|
|
3286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3287
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
3288
|
+
dependencies = [
|
|
3289
|
+
"serde",
|
|
3290
|
+
"serde_spanned",
|
|
3291
|
+
"toml_datetime",
|
|
3292
|
+
"toml_edit",
|
|
3293
|
+
]
|
|
3294
|
+
|
|
3259
3295
|
[[package]]
|
|
3260
3296
|
name = "toml_datetime"
|
|
3261
3297
|
version = "0.6.11"
|
|
3262
3298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3263
3299
|
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3300
|
+
dependencies = [
|
|
3301
|
+
"serde",
|
|
3302
|
+
]
|
|
3264
3303
|
|
|
3265
3304
|
[[package]]
|
|
3266
3305
|
name = "toml_edit"
|
|
@@ -3269,6 +3308,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3269
3308
|
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3270
3309
|
dependencies = [
|
|
3271
3310
|
"indexmap",
|
|
3311
|
+
"serde",
|
|
3312
|
+
"serde_spanned",
|
|
3272
3313
|
"toml_datetime",
|
|
3273
3314
|
"winnow",
|
|
3274
3315
|
]
|
|
@@ -3319,12 +3360,6 @@ dependencies = [
|
|
|
3319
3360
|
"rustc-hash 2.1.1",
|
|
3320
3361
|
]
|
|
3321
3362
|
|
|
3322
|
-
[[package]]
|
|
3323
|
-
name = "typenum"
|
|
3324
|
-
version = "1.18.0"
|
|
3325
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3326
|
-
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3327
|
-
|
|
3328
3363
|
[[package]]
|
|
3329
3364
|
name = "uds_windows"
|
|
3330
3365
|
version = "1.1.0"
|
|
@@ -3356,15 +3391,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
|
3356
3391
|
|
|
3357
3392
|
[[package]]
|
|
3358
3393
|
name = "unicode-width"
|
|
3359
|
-
version = "0.1
|
|
3360
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3361
|
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3362
|
-
|
|
3363
|
-
[[package]]
|
|
3364
|
-
name = "unicode-xid"
|
|
3365
|
-
version = "0.2.6"
|
|
3394
|
+
version = "0.2.1"
|
|
3366
3395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3367
|
-
checksum = "
|
|
3396
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
3368
3397
|
|
|
3369
3398
|
[[package]]
|
|
3370
3399
|
name = "unindent"
|
|
@@ -3383,50 +3412,6 @@ dependencies = [
|
|
|
3383
3412
|
"percent-encoding",
|
|
3384
3413
|
]
|
|
3385
3414
|
|
|
3386
|
-
[[package]]
|
|
3387
|
-
name = "usvg"
|
|
3388
|
-
version = "0.37.0"
|
|
3389
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3390
|
-
checksum = "38b0a51b72ab80ca511d126b77feeeb4fb1e972764653e61feac30adc161a756"
|
|
3391
|
-
dependencies = [
|
|
3392
|
-
"base64 0.21.7",
|
|
3393
|
-
"log",
|
|
3394
|
-
"pico-args",
|
|
3395
|
-
"usvg-parser",
|
|
3396
|
-
"usvg-tree",
|
|
3397
|
-
"xmlwriter",
|
|
3398
|
-
]
|
|
3399
|
-
|
|
3400
|
-
[[package]]
|
|
3401
|
-
name = "usvg-parser"
|
|
3402
|
-
version = "0.37.0"
|
|
3403
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3404
|
-
checksum = "9bd4e3c291f45d152929a31f0f6c819245e2921bfd01e7bd91201a9af39a2bdc"
|
|
3405
|
-
dependencies = [
|
|
3406
|
-
"data-url",
|
|
3407
|
-
"flate2",
|
|
3408
|
-
"imagesize",
|
|
3409
|
-
"kurbo",
|
|
3410
|
-
"log",
|
|
3411
|
-
"roxmltree",
|
|
3412
|
-
"simplecss",
|
|
3413
|
-
"siphasher 0.3.11",
|
|
3414
|
-
"svgtypes",
|
|
3415
|
-
"usvg-tree",
|
|
3416
|
-
]
|
|
3417
|
-
|
|
3418
|
-
[[package]]
|
|
3419
|
-
name = "usvg-tree"
|
|
3420
|
-
version = "0.37.0"
|
|
3421
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3422
|
-
checksum = "8ee3d202ebdb97a6215604b8f5b4d6ef9024efd623cf2e373a6416ba976ec7d3"
|
|
3423
|
-
dependencies = [
|
|
3424
|
-
"rctree",
|
|
3425
|
-
"strict-num",
|
|
3426
|
-
"svgtypes",
|
|
3427
|
-
"tiny-skia-path",
|
|
3428
|
-
]
|
|
3429
|
-
|
|
3430
3415
|
[[package]]
|
|
3431
3416
|
name = "utf8_iter"
|
|
3432
3417
|
version = "1.0.4"
|
|
@@ -3444,6 +3429,23 @@ dependencies = [
|
|
|
3444
3429
|
"wasm-bindgen",
|
|
3445
3430
|
]
|
|
3446
3431
|
|
|
3432
|
+
[[package]]
|
|
3433
|
+
name = "v_frame"
|
|
3434
|
+
version = "0.3.9"
|
|
3435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3436
|
+
checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
|
|
3437
|
+
dependencies = [
|
|
3438
|
+
"aligned-vec",
|
|
3439
|
+
"num-traits",
|
|
3440
|
+
"wasm-bindgen",
|
|
3441
|
+
]
|
|
3442
|
+
|
|
3443
|
+
[[package]]
|
|
3444
|
+
name = "version-compare"
|
|
3445
|
+
version = "0.2.0"
|
|
3446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3447
|
+
checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
|
|
3448
|
+
|
|
3447
3449
|
[[package]]
|
|
3448
3450
|
name = "version_check"
|
|
3449
3451
|
version = "0.9.5"
|
|
@@ -3699,23 +3701,24 @@ checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
|
|
|
3699
3701
|
|
|
3700
3702
|
[[package]]
|
|
3701
3703
|
name = "wgpu"
|
|
3702
|
-
version = "
|
|
3704
|
+
version = "25.0.2"
|
|
3703
3705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3704
|
-
checksum = "
|
|
3706
|
+
checksum = "ec8fb398f119472be4d80bc3647339f56eb63b2a331f6a3d16e25d8144197dd9"
|
|
3705
3707
|
dependencies = [
|
|
3706
3708
|
"arrayvec",
|
|
3707
3709
|
"bitflags 2.9.1",
|
|
3708
3710
|
"cfg_aliases",
|
|
3709
3711
|
"document-features",
|
|
3712
|
+
"hashbrown",
|
|
3710
3713
|
"js-sys",
|
|
3711
3714
|
"log",
|
|
3712
3715
|
"parking_lot",
|
|
3716
|
+
"portable-atomic",
|
|
3713
3717
|
"profiling",
|
|
3714
3718
|
"raw-window-handle",
|
|
3715
3719
|
"smallvec",
|
|
3716
3720
|
"static_assertions",
|
|
3717
3721
|
"wasm-bindgen",
|
|
3718
|
-
"wasm-bindgen-futures",
|
|
3719
3722
|
"web-sys",
|
|
3720
3723
|
"wgpu-core",
|
|
3721
3724
|
"wgpu-hal",
|
|
@@ -3724,79 +3727,72 @@ dependencies = [
|
|
|
3724
3727
|
|
|
3725
3728
|
[[package]]
|
|
3726
3729
|
name = "wgpu-core"
|
|
3727
|
-
version = "
|
|
3730
|
+
version = "25.0.2"
|
|
3728
3731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3729
|
-
checksum = "
|
|
3732
|
+
checksum = "f7b882196f8368511d613c6aeec80655160db6646aebddf8328879a88d54e500"
|
|
3730
3733
|
dependencies = [
|
|
3731
3734
|
"arrayvec",
|
|
3735
|
+
"bit-set",
|
|
3732
3736
|
"bit-vec",
|
|
3733
3737
|
"bitflags 2.9.1",
|
|
3734
3738
|
"cfg_aliases",
|
|
3735
3739
|
"document-features",
|
|
3740
|
+
"hashbrown",
|
|
3736
3741
|
"indexmap",
|
|
3737
3742
|
"log",
|
|
3738
3743
|
"naga",
|
|
3739
3744
|
"once_cell",
|
|
3740
3745
|
"parking_lot",
|
|
3746
|
+
"portable-atomic",
|
|
3741
3747
|
"profiling",
|
|
3742
3748
|
"raw-window-handle",
|
|
3743
3749
|
"rustc-hash 1.1.0",
|
|
3744
3750
|
"smallvec",
|
|
3745
3751
|
"thiserror 2.0.12",
|
|
3752
|
+
"wgpu-core-deps-windows-linux-android",
|
|
3746
3753
|
"wgpu-hal",
|
|
3747
3754
|
"wgpu-types",
|
|
3748
3755
|
]
|
|
3749
3756
|
|
|
3757
|
+
[[package]]
|
|
3758
|
+
name = "wgpu-core-deps-windows-linux-android"
|
|
3759
|
+
version = "25.0.0"
|
|
3760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3761
|
+
checksum = "cba5fb5f7f9c98baa7c889d444f63ace25574833df56f5b817985f641af58e46"
|
|
3762
|
+
dependencies = [
|
|
3763
|
+
"wgpu-hal",
|
|
3764
|
+
]
|
|
3765
|
+
|
|
3750
3766
|
[[package]]
|
|
3751
3767
|
name = "wgpu-hal"
|
|
3752
|
-
version = "
|
|
3768
|
+
version = "25.0.2"
|
|
3753
3769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3754
|
-
checksum = "
|
|
3770
|
+
checksum = "f968767fe4d3d33747bbd1473ccd55bf0f6451f55d733b5597e67b5deab4ad17"
|
|
3755
3771
|
dependencies = [
|
|
3756
|
-
"android_system_properties",
|
|
3757
|
-
"arrayvec",
|
|
3758
|
-
"ash",
|
|
3759
3772
|
"bitflags 2.9.1",
|
|
3760
|
-
"bytemuck",
|
|
3761
3773
|
"cfg_aliases",
|
|
3762
|
-
"core-graphics-types",
|
|
3763
|
-
"glow",
|
|
3764
|
-
"glutin_wgl_sys",
|
|
3765
|
-
"gpu-alloc",
|
|
3766
|
-
"gpu-descriptor",
|
|
3767
|
-
"js-sys",
|
|
3768
|
-
"khronos-egl",
|
|
3769
|
-
"libc",
|
|
3770
3774
|
"libloading",
|
|
3771
3775
|
"log",
|
|
3772
|
-
"metal",
|
|
3773
3776
|
"naga",
|
|
3774
|
-
"ndk-sys 0.5.0+25.2.9519653",
|
|
3775
|
-
"objc",
|
|
3776
|
-
"once_cell",
|
|
3777
|
-
"ordered-float",
|
|
3778
3777
|
"parking_lot",
|
|
3779
|
-
"
|
|
3778
|
+
"portable-atomic",
|
|
3780
3779
|
"raw-window-handle",
|
|
3781
3780
|
"renderdoc-sys",
|
|
3782
|
-
"rustc-hash 1.1.0",
|
|
3783
|
-
"smallvec",
|
|
3784
3781
|
"thiserror 2.0.12",
|
|
3785
|
-
"wasm-bindgen",
|
|
3786
|
-
"web-sys",
|
|
3787
3782
|
"wgpu-types",
|
|
3788
|
-
"windows",
|
|
3789
3783
|
]
|
|
3790
3784
|
|
|
3791
3785
|
[[package]]
|
|
3792
3786
|
name = "wgpu-types"
|
|
3793
|
-
version = "
|
|
3787
|
+
version = "25.0.0"
|
|
3794
3788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3795
|
-
checksum = "
|
|
3789
|
+
checksum = "2aa49460c2a8ee8edba3fca54325540d904dd85b2e086ada762767e17d06e8bc"
|
|
3796
3790
|
dependencies = [
|
|
3797
3791
|
"bitflags 2.9.1",
|
|
3792
|
+
"bytemuck",
|
|
3798
3793
|
"js-sys",
|
|
3799
3794
|
"log",
|
|
3795
|
+
"thiserror 2.0.12",
|
|
3800
3796
|
"web-sys",
|
|
3801
3797
|
]
|
|
3802
3798
|
|
|
@@ -3833,32 +3829,55 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
3833
3829
|
|
|
3834
3830
|
[[package]]
|
|
3835
3831
|
name = "windows"
|
|
3836
|
-
version = "0.
|
|
3832
|
+
version = "0.61.3"
|
|
3837
3833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3838
|
-
checksum = "
|
|
3834
|
+
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
3835
|
+
dependencies = [
|
|
3836
|
+
"windows-collections",
|
|
3837
|
+
"windows-core",
|
|
3838
|
+
"windows-future",
|
|
3839
|
+
"windows-link",
|
|
3840
|
+
"windows-numerics",
|
|
3841
|
+
]
|
|
3842
|
+
|
|
3843
|
+
[[package]]
|
|
3844
|
+
name = "windows-collections"
|
|
3845
|
+
version = "0.2.0"
|
|
3846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3847
|
+
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
3839
3848
|
dependencies = [
|
|
3840
3849
|
"windows-core",
|
|
3841
|
-
"windows-targets 0.52.6",
|
|
3842
3850
|
]
|
|
3843
3851
|
|
|
3844
3852
|
[[package]]
|
|
3845
3853
|
name = "windows-core"
|
|
3846
|
-
version = "0.
|
|
3854
|
+
version = "0.61.2"
|
|
3847
3855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3848
|
-
checksum = "
|
|
3856
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
3849
3857
|
dependencies = [
|
|
3850
3858
|
"windows-implement",
|
|
3851
3859
|
"windows-interface",
|
|
3860
|
+
"windows-link",
|
|
3852
3861
|
"windows-result",
|
|
3853
3862
|
"windows-strings",
|
|
3854
|
-
|
|
3863
|
+
]
|
|
3864
|
+
|
|
3865
|
+
[[package]]
|
|
3866
|
+
name = "windows-future"
|
|
3867
|
+
version = "0.2.1"
|
|
3868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3869
|
+
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
3870
|
+
dependencies = [
|
|
3871
|
+
"windows-core",
|
|
3872
|
+
"windows-link",
|
|
3873
|
+
"windows-threading",
|
|
3855
3874
|
]
|
|
3856
3875
|
|
|
3857
3876
|
[[package]]
|
|
3858
3877
|
name = "windows-implement"
|
|
3859
|
-
version = "0.
|
|
3878
|
+
version = "0.60.0"
|
|
3860
3879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3861
|
-
checksum = "
|
|
3880
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
3862
3881
|
dependencies = [
|
|
3863
3882
|
"proc-macro2",
|
|
3864
3883
|
"quote",
|
|
@@ -3867,9 +3886,9 @@ dependencies = [
|
|
|
3867
3886
|
|
|
3868
3887
|
[[package]]
|
|
3869
3888
|
name = "windows-interface"
|
|
3870
|
-
version = "0.
|
|
3889
|
+
version = "0.59.1"
|
|
3871
3890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3872
|
-
checksum = "
|
|
3891
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
3873
3892
|
dependencies = [
|
|
3874
3893
|
"proc-macro2",
|
|
3875
3894
|
"quote",
|
|
@@ -3877,22 +3896,37 @@ dependencies = [
|
|
|
3877
3896
|
]
|
|
3878
3897
|
|
|
3879
3898
|
[[package]]
|
|
3880
|
-
name = "windows-
|
|
3899
|
+
name = "windows-link"
|
|
3900
|
+
version = "0.1.3"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
3903
|
+
|
|
3904
|
+
[[package]]
|
|
3905
|
+
name = "windows-numerics"
|
|
3881
3906
|
version = "0.2.0"
|
|
3882
3907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3883
|
-
checksum = "
|
|
3908
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
3884
3909
|
dependencies = [
|
|
3885
|
-
"windows-
|
|
3910
|
+
"windows-core",
|
|
3911
|
+
"windows-link",
|
|
3912
|
+
]
|
|
3913
|
+
|
|
3914
|
+
[[package]]
|
|
3915
|
+
name = "windows-result"
|
|
3916
|
+
version = "0.3.4"
|
|
3917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3918
|
+
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
3919
|
+
dependencies = [
|
|
3920
|
+
"windows-link",
|
|
3886
3921
|
]
|
|
3887
3922
|
|
|
3888
3923
|
[[package]]
|
|
3889
3924
|
name = "windows-strings"
|
|
3890
|
-
version = "0.
|
|
3925
|
+
version = "0.4.2"
|
|
3891
3926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3892
|
-
checksum = "
|
|
3927
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
3893
3928
|
dependencies = [
|
|
3894
|
-
"windows-
|
|
3895
|
-
"windows-targets 0.52.6",
|
|
3929
|
+
"windows-link",
|
|
3896
3930
|
]
|
|
3897
3931
|
|
|
3898
3932
|
[[package]]
|
|
@@ -3993,6 +4027,15 @@ dependencies = [
|
|
|
3993
4027
|
"windows_x86_64_msvc 0.53.0",
|
|
3994
4028
|
]
|
|
3995
4029
|
|
|
4030
|
+
[[package]]
|
|
4031
|
+
name = "windows-threading"
|
|
4032
|
+
version = "0.1.0"
|
|
4033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4034
|
+
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
4035
|
+
dependencies = [
|
|
4036
|
+
"windows-link",
|
|
4037
|
+
]
|
|
4038
|
+
|
|
3996
4039
|
[[package]]
|
|
3997
4040
|
name = "windows_aarch64_gnullvm"
|
|
3998
4041
|
version = "0.42.2"
|
|
@@ -4227,9 +4270,9 @@ dependencies = [
|
|
|
4227
4270
|
|
|
4228
4271
|
[[package]]
|
|
4229
4272
|
name = "winnow"
|
|
4230
|
-
version = "0.7.
|
|
4273
|
+
version = "0.7.12"
|
|
4231
4274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4232
|
-
checksum = "
|
|
4275
|
+
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
|
|
4233
4276
|
dependencies = [
|
|
4234
4277
|
"memchr",
|
|
4235
4278
|
]
|
|
@@ -4287,16 +4330,6 @@ version = "0.3.10"
|
|
|
4287
4330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4288
4331
|
checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
|
|
4289
4332
|
|
|
4290
|
-
[[package]]
|
|
4291
|
-
name = "xdg-home"
|
|
4292
|
-
version = "1.3.0"
|
|
4293
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4294
|
-
checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
|
|
4295
|
-
dependencies = [
|
|
4296
|
-
"libc",
|
|
4297
|
-
"windows-sys 0.59.0",
|
|
4298
|
-
]
|
|
4299
|
-
|
|
4300
4333
|
[[package]]
|
|
4301
4334
|
name = "xkbcommon-dl"
|
|
4302
4335
|
version = "0.4.2"
|
|
@@ -4318,15 +4351,9 @@ checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
|
|
|
4318
4351
|
|
|
4319
4352
|
[[package]]
|
|
4320
4353
|
name = "xml-rs"
|
|
4321
|
-
version = "0.8.
|
|
4322
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4323
|
-
checksum = "a62ce76d9b56901b19a74f19431b0d8b3bc7ca4ad685a746dfd78ca8f4fc6bda"
|
|
4324
|
-
|
|
4325
|
-
[[package]]
|
|
4326
|
-
name = "xmlwriter"
|
|
4327
|
-
version = "0.1.0"
|
|
4354
|
+
version = "0.8.27"
|
|
4328
4355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4329
|
-
checksum = "
|
|
4356
|
+
checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7"
|
|
4330
4357
|
|
|
4331
4358
|
[[package]]
|
|
4332
4359
|
name = "yoke"
|
|
@@ -4354,13 +4381,12 @@ dependencies = [
|
|
|
4354
4381
|
|
|
4355
4382
|
[[package]]
|
|
4356
4383
|
name = "zbus"
|
|
4357
|
-
version = "
|
|
4384
|
+
version = "5.9.0"
|
|
4358
4385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4359
|
-
checksum = "
|
|
4386
|
+
checksum = "4bb4f9a464286d42851d18a605f7193b8febaf5b0919d71c6399b7b26e5b0aad"
|
|
4360
4387
|
dependencies = [
|
|
4361
4388
|
"async-broadcast",
|
|
4362
4389
|
"async-executor",
|
|
4363
|
-
"async-fs",
|
|
4364
4390
|
"async-io",
|
|
4365
4391
|
"async-lock",
|
|
4366
4392
|
"async-process",
|
|
@@ -4371,20 +4397,16 @@ dependencies = [
|
|
|
4371
4397
|
"enumflags2",
|
|
4372
4398
|
"event-listener",
|
|
4373
4399
|
"futures-core",
|
|
4374
|
-
"futures-
|
|
4375
|
-
"futures-util",
|
|
4400
|
+
"futures-lite",
|
|
4376
4401
|
"hex",
|
|
4377
4402
|
"nix",
|
|
4378
4403
|
"ordered-stream",
|
|
4379
|
-
"rand 0.8.5",
|
|
4380
4404
|
"serde",
|
|
4381
4405
|
"serde_repr",
|
|
4382
|
-
"sha1",
|
|
4383
|
-
"static_assertions",
|
|
4384
4406
|
"tracing",
|
|
4385
4407
|
"uds_windows",
|
|
4386
|
-
"windows-sys 0.
|
|
4387
|
-
"
|
|
4408
|
+
"windows-sys 0.59.0",
|
|
4409
|
+
"winnow",
|
|
4388
4410
|
"zbus_macros",
|
|
4389
4411
|
"zbus_names",
|
|
4390
4412
|
"zvariant",
|
|
@@ -4392,9 +4414,9 @@ dependencies = [
|
|
|
4392
4414
|
|
|
4393
4415
|
[[package]]
|
|
4394
4416
|
name = "zbus-lockstep"
|
|
4395
|
-
version = "0.
|
|
4417
|
+
version = "0.5.1"
|
|
4396
4418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4397
|
-
checksum = "
|
|
4419
|
+
checksum = "29e96e38ded30eeab90b6ba88cb888d70aef4e7489b6cd212c5e5b5ec38045b6"
|
|
4398
4420
|
dependencies = [
|
|
4399
4421
|
"zbus_xml",
|
|
4400
4422
|
"zvariant",
|
|
@@ -4402,9 +4424,9 @@ dependencies = [
|
|
|
4402
4424
|
|
|
4403
4425
|
[[package]]
|
|
4404
4426
|
name = "zbus-lockstep-macros"
|
|
4405
|
-
version = "0.
|
|
4427
|
+
version = "0.5.1"
|
|
4406
4428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4407
|
-
checksum = "
|
|
4429
|
+
checksum = "dc6821851fa840b708b4cbbaf6241868cabc85a2dc22f426361b0292bfc0b836"
|
|
4408
4430
|
dependencies = [
|
|
4409
4431
|
"proc-macro2",
|
|
4410
4432
|
"quote",
|
|
@@ -4416,35 +4438,38 @@ dependencies = [
|
|
|
4416
4438
|
|
|
4417
4439
|
[[package]]
|
|
4418
4440
|
name = "zbus_macros"
|
|
4419
|
-
version = "
|
|
4441
|
+
version = "5.9.0"
|
|
4420
4442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4421
|
-
checksum = "
|
|
4443
|
+
checksum = "ef9859f68ee0c4ee2e8cde84737c78e3f4c54f946f2a38645d0d4c7a95327659"
|
|
4422
4444
|
dependencies = [
|
|
4423
4445
|
"proc-macro-crate",
|
|
4424
4446
|
"proc-macro2",
|
|
4425
4447
|
"quote",
|
|
4426
4448
|
"syn",
|
|
4449
|
+
"zbus_names",
|
|
4450
|
+
"zvariant",
|
|
4427
4451
|
"zvariant_utils",
|
|
4428
4452
|
]
|
|
4429
4453
|
|
|
4430
4454
|
[[package]]
|
|
4431
4455
|
name = "zbus_names"
|
|
4432
|
-
version = "
|
|
4456
|
+
version = "4.2.0"
|
|
4433
4457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4434
|
-
checksum = "
|
|
4458
|
+
checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
|
|
4435
4459
|
dependencies = [
|
|
4436
4460
|
"serde",
|
|
4437
4461
|
"static_assertions",
|
|
4462
|
+
"winnow",
|
|
4438
4463
|
"zvariant",
|
|
4439
4464
|
]
|
|
4440
4465
|
|
|
4441
4466
|
[[package]]
|
|
4442
4467
|
name = "zbus_xml"
|
|
4443
|
-
version = "
|
|
4468
|
+
version = "5.0.2"
|
|
4444
4469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4445
|
-
checksum = "
|
|
4470
|
+
checksum = "589e9a02bfafb9754bb2340a9e3b38f389772684c63d9637e76b1870377bec29"
|
|
4446
4471
|
dependencies = [
|
|
4447
|
-
"quick-xml 0.
|
|
4472
|
+
"quick-xml 0.36.2",
|
|
4448
4473
|
"serde",
|
|
4449
4474
|
"static_assertions",
|
|
4450
4475
|
"zbus_names",
|
|
@@ -4525,24 +4550,49 @@ dependencies = [
|
|
|
4525
4550
|
"syn",
|
|
4526
4551
|
]
|
|
4527
4552
|
|
|
4553
|
+
[[package]]
|
|
4554
|
+
name = "zune-core"
|
|
4555
|
+
version = "0.4.12"
|
|
4556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4557
|
+
checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
4558
|
+
|
|
4559
|
+
[[package]]
|
|
4560
|
+
name = "zune-inflate"
|
|
4561
|
+
version = "0.2.54"
|
|
4562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4563
|
+
checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
|
|
4564
|
+
dependencies = [
|
|
4565
|
+
"simd-adler32",
|
|
4566
|
+
]
|
|
4567
|
+
|
|
4568
|
+
[[package]]
|
|
4569
|
+
name = "zune-jpeg"
|
|
4570
|
+
version = "0.4.19"
|
|
4571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4572
|
+
checksum = "2c9e525af0a6a658e031e95f14b7f889976b74a11ba0eca5a5fc9ac8a1c43a6a"
|
|
4573
|
+
dependencies = [
|
|
4574
|
+
"zune-core",
|
|
4575
|
+
]
|
|
4576
|
+
|
|
4528
4577
|
[[package]]
|
|
4529
4578
|
name = "zvariant"
|
|
4530
|
-
version = "
|
|
4579
|
+
version = "5.6.0"
|
|
4531
4580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4532
|
-
checksum = "
|
|
4581
|
+
checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f"
|
|
4533
4582
|
dependencies = [
|
|
4534
4583
|
"endi",
|
|
4535
4584
|
"enumflags2",
|
|
4536
4585
|
"serde",
|
|
4537
|
-
"
|
|
4586
|
+
"winnow",
|
|
4538
4587
|
"zvariant_derive",
|
|
4588
|
+
"zvariant_utils",
|
|
4539
4589
|
]
|
|
4540
4590
|
|
|
4541
4591
|
[[package]]
|
|
4542
4592
|
name = "zvariant_derive"
|
|
4543
|
-
version = "
|
|
4593
|
+
version = "5.6.0"
|
|
4544
4594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4545
|
-
checksum = "
|
|
4595
|
+
checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208"
|
|
4546
4596
|
dependencies = [
|
|
4547
4597
|
"proc-macro-crate",
|
|
4548
4598
|
"proc-macro2",
|
|
@@ -4553,11 +4603,14 @@ dependencies = [
|
|
|
4553
4603
|
|
|
4554
4604
|
[[package]]
|
|
4555
4605
|
name = "zvariant_utils"
|
|
4556
|
-
version = "2.
|
|
4606
|
+
version = "3.2.0"
|
|
4557
4607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4558
|
-
checksum = "
|
|
4608
|
+
checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34"
|
|
4559
4609
|
dependencies = [
|
|
4560
4610
|
"proc-macro2",
|
|
4561
4611
|
"quote",
|
|
4612
|
+
"serde",
|
|
4613
|
+
"static_assertions",
|
|
4562
4614
|
"syn",
|
|
4615
|
+
"winnow",
|
|
4563
4616
|
]
|