cosmol-viewer 0.1.1.dev5__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.dev5 → cosmol_viewer-0.1.2}/Cargo.lock +694 -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.dev5 → cosmol_viewer-0.1.2}/crates/core/src/scene.rs +22 -9
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shader/canvas.rs +11 -18
- cosmol_viewer-0.1.2/crates/core/src/shapes/mod.rs +6 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shapes/molecules.rs +92 -40
- cosmol_viewer-0.1.2/crates/core/src/shapes/sphere.rs +173 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shapes/stick.rs +12 -12
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/utils.rs +3 -2
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/python/Cargo.toml +8 -10
- cosmol_viewer-0.1.1.dev5/PKG-INFO → cosmol_viewer-0.1.2/crates/python/README.md +18 -10
- 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.dev5 → cosmol_viewer-0.1.2}/pyproject.toml +1 -1
- cosmol_viewer-0.1.1.dev5/Cargo.toml +0 -22
- cosmol_viewer-0.1.1.dev5/crates/core/Cargo.toml +0 -17
- cosmol_viewer-0.1.1.dev5/crates/core/src/lib.rs +0 -72
- cosmol_viewer-0.1.1.dev5/crates/core/src/shapes/mod.rs +0 -3
- cosmol_viewer-0.1.1.dev5/crates/core/src/shapes/sphere.rs +0 -246
- cosmol_viewer-0.1.1.dev5/crates/python/README.md +0 -49
- cosmol_viewer-0.1.1.dev5/crates/python/src/lib.rs +0 -340
- cosmol_viewer-0.1.1.dev5/crates/python/src/shapes.rs +0 -102
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/parser/mod.rs +0 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/parser/sdf.rs +0 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shader/bg_fragment.glsl +0 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shader/bg_vertex.glsl +0 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shader/fragment.glsl +0 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shader/mod.rs +0 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/core/src/shader/vertex.glsl +0 -0
- {cosmol_viewer-0.1.1.dev5 → cosmol_viewer-0.1.2}/crates/python/build.rs +0 -0
- {cosmol_viewer-0.1.1.dev5 → 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 = "
|
|
476
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
-
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
478
|
-
|
|
479
|
-
[[package]]
|
|
480
|
-
name = "block-buffer"
|
|
481
|
-
version = "0.10.4"
|
|
488
|
+
name = "bitstream-io"
|
|
489
|
+
version = "2.6.0"
|
|
482
490
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
483
|
-
checksum = "
|
|
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,110 +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.
|
|
743
|
+
version = "0.1.2"
|
|
721
744
|
dependencies = [
|
|
722
745
|
"bytemuck",
|
|
723
746
|
"eframe",
|
|
747
|
+
"egui-winit",
|
|
724
748
|
"egui_extras",
|
|
725
749
|
"glam",
|
|
750
|
+
"image",
|
|
726
751
|
"once_cell",
|
|
727
752
|
"serde",
|
|
728
753
|
"serde_json",
|
|
729
754
|
"serde_repr",
|
|
730
755
|
"wasm-bindgen-futures",
|
|
731
|
-
"web-sys",
|
|
732
|
-
]
|
|
733
|
-
|
|
734
|
-
[[package]]
|
|
735
|
-
name = "cosmol_viewer_gui"
|
|
736
|
-
version = "0.1.1-nightly.5"
|
|
737
|
-
dependencies = [
|
|
738
|
-
"bytemuck",
|
|
739
|
-
"cosmol_viewer_core",
|
|
740
|
-
"eframe",
|
|
741
|
-
"egui_extras",
|
|
742
|
-
"glam",
|
|
743
|
-
"ipc-channel",
|
|
744
|
-
"serde",
|
|
745
|
-
"serde_json",
|
|
746
|
-
"wasm-bindgen-futures",
|
|
747
|
-
"web-sys",
|
|
748
756
|
]
|
|
749
757
|
|
|
750
758
|
[[package]]
|
|
751
759
|
name = "cosmol_viewer_python"
|
|
752
760
|
version = "0.0.0"
|
|
753
761
|
dependencies = [
|
|
754
|
-
"base64
|
|
762
|
+
"base64",
|
|
755
763
|
"cosmol_viewer_core",
|
|
764
|
+
"cosmol_viewer_wasm",
|
|
756
765
|
"eframe",
|
|
757
766
|
"egui_extras",
|
|
758
|
-
"glam",
|
|
759
|
-
"hex",
|
|
760
|
-
"ipc-channel",
|
|
761
767
|
"pyo3",
|
|
762
768
|
"serde_json",
|
|
763
|
-
"sha2",
|
|
764
|
-
"uuid",
|
|
765
|
-
"wasm-bindgen",
|
|
766
769
|
]
|
|
767
770
|
|
|
768
771
|
[[package]]
|
|
769
772
|
name = "cosmol_viewer_wasm"
|
|
770
|
-
version = "0.1.
|
|
773
|
+
version = "0.1.2"
|
|
771
774
|
dependencies = [
|
|
775
|
+
"base64",
|
|
772
776
|
"cosmol_viewer_core",
|
|
773
777
|
"eframe",
|
|
774
|
-
"egui_extras",
|
|
775
|
-
"glam",
|
|
776
778
|
"log",
|
|
779
|
+
"pyo3",
|
|
780
|
+
"serde",
|
|
777
781
|
"serde_json",
|
|
782
|
+
"uuid",
|
|
778
783
|
"wasm-bindgen",
|
|
779
784
|
"wasm-bindgen-futures",
|
|
780
785
|
"web-sys",
|
|
781
786
|
]
|
|
782
787
|
|
|
783
788
|
[[package]]
|
|
784
|
-
name = "
|
|
785
|
-
version = "
|
|
789
|
+
name = "crc32fast"
|
|
790
|
+
version = "1.5.0"
|
|
786
791
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
-
checksum = "
|
|
792
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
788
793
|
dependencies = [
|
|
789
|
-
"
|
|
794
|
+
"cfg-if",
|
|
790
795
|
]
|
|
791
796
|
|
|
792
797
|
[[package]]
|
|
793
|
-
name = "
|
|
794
|
-
version = "
|
|
798
|
+
name = "crossbeam-deque"
|
|
799
|
+
version = "0.8.6"
|
|
795
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
-
checksum = "
|
|
801
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
797
802
|
dependencies = [
|
|
798
|
-
"
|
|
803
|
+
"crossbeam-epoch",
|
|
804
|
+
"crossbeam-utils",
|
|
799
805
|
]
|
|
800
806
|
|
|
801
807
|
[[package]]
|
|
802
|
-
name = "crossbeam-
|
|
803
|
-
version = "0.
|
|
808
|
+
name = "crossbeam-epoch"
|
|
809
|
+
version = "0.9.18"
|
|
804
810
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
805
|
-
checksum = "
|
|
811
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
806
812
|
dependencies = [
|
|
807
813
|
"crossbeam-utils",
|
|
808
814
|
]
|
|
@@ -814,14 +820,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
814
820
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
815
821
|
|
|
816
822
|
[[package]]
|
|
817
|
-
name = "
|
|
818
|
-
version = "0.
|
|
823
|
+
name = "crunchy"
|
|
824
|
+
version = "0.2.4"
|
|
819
825
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
-
checksum = "
|
|
821
|
-
dependencies = [
|
|
822
|
-
"generic-array",
|
|
823
|
-
"typenum",
|
|
824
|
-
]
|
|
826
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
825
827
|
|
|
826
828
|
[[package]]
|
|
827
829
|
name = "cursor-icon"
|
|
@@ -829,22 +831,6 @@ version = "1.2.0"
|
|
|
829
831
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
832
|
checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
|
|
831
833
|
|
|
832
|
-
[[package]]
|
|
833
|
-
name = "data-url"
|
|
834
|
-
version = "0.3.1"
|
|
835
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
-
checksum = "5c297a1c74b71ae29df00c3e22dd9534821d60eb9af5a0192823fa2acea70c2a"
|
|
837
|
-
|
|
838
|
-
[[package]]
|
|
839
|
-
name = "digest"
|
|
840
|
-
version = "0.10.7"
|
|
841
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
-
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
843
|
-
dependencies = [
|
|
844
|
-
"block-buffer",
|
|
845
|
-
"crypto-common",
|
|
846
|
-
]
|
|
847
|
-
|
|
848
834
|
[[package]]
|
|
849
835
|
name = "dispatch"
|
|
850
836
|
version = "0.2.0"
|
|
@@ -904,9 +890,9 @@ checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76"
|
|
|
904
890
|
|
|
905
891
|
[[package]]
|
|
906
892
|
name = "ecolor"
|
|
907
|
-
version = "0.
|
|
893
|
+
version = "0.32.0"
|
|
908
894
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
909
|
-
checksum = "
|
|
895
|
+
checksum = "4a631732d995184114016fab22fc7e3faf73d6841c2d7650395fe251fbcd9285"
|
|
910
896
|
dependencies = [
|
|
911
897
|
"bytemuck",
|
|
912
898
|
"emath",
|
|
@@ -914,9 +900,9 @@ dependencies = [
|
|
|
914
900
|
|
|
915
901
|
[[package]]
|
|
916
902
|
name = "eframe"
|
|
917
|
-
version = "0.
|
|
903
|
+
version = "0.32.0"
|
|
918
904
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
-
checksum = "
|
|
905
|
+
checksum = "0c790ccfbb3dd556588342463454b2b2b13909e5fdce5bc2a1432a8aa69c8b7a"
|
|
920
906
|
dependencies = [
|
|
921
907
|
"ahash",
|
|
922
908
|
"bytemuck",
|
|
@@ -950,9 +936,9 @@ dependencies = [
|
|
|
950
936
|
|
|
951
937
|
[[package]]
|
|
952
938
|
name = "egui"
|
|
953
|
-
version = "0.
|
|
939
|
+
version = "0.32.0"
|
|
954
940
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
-
checksum = "
|
|
941
|
+
checksum = "8470210c95a42cc985d9ffebfd5067eea55bdb1c3f7611484907db9639675e28"
|
|
956
942
|
dependencies = [
|
|
957
943
|
"accesskit",
|
|
958
944
|
"ahash",
|
|
@@ -962,13 +948,15 @@ dependencies = [
|
|
|
962
948
|
"log",
|
|
963
949
|
"nohash-hasher",
|
|
964
950
|
"profiling",
|
|
951
|
+
"smallvec",
|
|
952
|
+
"unicode-segmentation",
|
|
965
953
|
]
|
|
966
954
|
|
|
967
955
|
[[package]]
|
|
968
956
|
name = "egui-wgpu"
|
|
969
|
-
version = "0.
|
|
957
|
+
version = "0.32.0"
|
|
970
958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
-
checksum = "
|
|
959
|
+
checksum = "14de9942d8b9e99e2d830403c208ab1a6e052e925a7456a4f6f66d567d90de1d"
|
|
972
960
|
dependencies = [
|
|
973
961
|
"ahash",
|
|
974
962
|
"bytemuck",
|
|
@@ -986,9 +974,9 @@ dependencies = [
|
|
|
986
974
|
|
|
987
975
|
[[package]]
|
|
988
976
|
name = "egui-winit"
|
|
989
|
-
version = "0.
|
|
977
|
+
version = "0.32.0"
|
|
990
978
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
-
checksum = "
|
|
979
|
+
checksum = "c490804a035cec9c826082894a3e1ecf4198accd3817deb10f7919108ebafab0"
|
|
992
980
|
dependencies = [
|
|
993
981
|
"accesskit_winit",
|
|
994
982
|
"ahash",
|
|
@@ -1006,9 +994,9 @@ dependencies = [
|
|
|
1006
994
|
|
|
1007
995
|
[[package]]
|
|
1008
996
|
name = "egui_extras"
|
|
1009
|
-
version = "0.
|
|
997
|
+
version = "0.32.0"
|
|
1010
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
999
|
+
checksum = "0f791a5937f518249016b276b3639ad2aa3824048b6f2161ec2b431ab325880a"
|
|
1012
1000
|
dependencies = [
|
|
1013
1001
|
"ahash",
|
|
1014
1002
|
"egui",
|
|
@@ -1016,14 +1004,13 @@ dependencies = [
|
|
|
1016
1004
|
"log",
|
|
1017
1005
|
"mime_guess2",
|
|
1018
1006
|
"profiling",
|
|
1019
|
-
"resvg",
|
|
1020
1007
|
]
|
|
1021
1008
|
|
|
1022
1009
|
[[package]]
|
|
1023
1010
|
name = "egui_glow"
|
|
1024
|
-
version = "0.
|
|
1011
|
+
version = "0.32.0"
|
|
1025
1012
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1026
|
-
checksum = "
|
|
1013
|
+
checksum = "d44f3fd4fdc5f960c9e9ef7327c26647edc3141abf96102980647129d49358e6"
|
|
1027
1014
|
dependencies = [
|
|
1028
1015
|
"ahash",
|
|
1029
1016
|
"bytemuck",
|
|
@@ -1037,11 +1024,17 @@ dependencies = [
|
|
|
1037
1024
|
"winit",
|
|
1038
1025
|
]
|
|
1039
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
|
+
|
|
1040
1033
|
[[package]]
|
|
1041
1034
|
name = "emath"
|
|
1042
|
-
version = "0.
|
|
1035
|
+
version = "0.32.0"
|
|
1043
1036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
-
checksum = "
|
|
1037
|
+
checksum = "45f057b141e7e46340c321400be74b793543b1b213036f0f989c35d35957c32e"
|
|
1045
1038
|
dependencies = [
|
|
1046
1039
|
"bytemuck",
|
|
1047
1040
|
]
|
|
@@ -1059,7 +1052,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1059
1052
|
checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9"
|
|
1060
1053
|
dependencies = [
|
|
1061
1054
|
"enum-map-derive",
|
|
1062
|
-
"serde",
|
|
1063
1055
|
]
|
|
1064
1056
|
|
|
1065
1057
|
[[package]]
|
|
@@ -1096,9 +1088,9 @@ dependencies = [
|
|
|
1096
1088
|
|
|
1097
1089
|
[[package]]
|
|
1098
1090
|
name = "epaint"
|
|
1099
|
-
version = "0.
|
|
1091
|
+
version = "0.32.0"
|
|
1100
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
-
checksum = "
|
|
1093
|
+
checksum = "94cca02195f0552c17cabdc02f39aa9ab6fbd815dac60ab1cd3d5b0aa6f9551c"
|
|
1102
1094
|
dependencies = [
|
|
1103
1095
|
"ab_glyph",
|
|
1104
1096
|
"ahash",
|
|
@@ -1114,9 +1106,29 @@ dependencies = [
|
|
|
1114
1106
|
|
|
1115
1107
|
[[package]]
|
|
1116
1108
|
name = "epaint_default_fonts"
|
|
1117
|
-
version = "0.
|
|
1109
|
+
version = "0.32.0"
|
|
1118
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
-
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
|
+
]
|
|
1120
1132
|
|
|
1121
1133
|
[[package]]
|
|
1122
1134
|
name = "equivalent"
|
|
@@ -1161,6 +1173,21 @@ dependencies = [
|
|
|
1161
1173
|
"pin-project-lite",
|
|
1162
1174
|
]
|
|
1163
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
|
+
|
|
1164
1191
|
[[package]]
|
|
1165
1192
|
name = "fastrand"
|
|
1166
1193
|
version = "2.3.0"
|
|
@@ -1186,18 +1213,6 @@ dependencies = [
|
|
|
1186
1213
|
"miniz_oxide",
|
|
1187
1214
|
]
|
|
1188
1215
|
|
|
1189
|
-
[[package]]
|
|
1190
|
-
name = "float-cmp"
|
|
1191
|
-
version = "0.9.0"
|
|
1192
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
-
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
|
1194
|
-
|
|
1195
|
-
[[package]]
|
|
1196
|
-
name = "fnv"
|
|
1197
|
-
version = "1.0.7"
|
|
1198
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1199
|
-
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
1200
|
-
|
|
1201
1216
|
[[package]]
|
|
1202
1217
|
name = "foldhash"
|
|
1203
1218
|
version = "0.1.5"
|
|
@@ -1276,12 +1291,6 @@ dependencies = [
|
|
|
1276
1291
|
"syn",
|
|
1277
1292
|
]
|
|
1278
1293
|
|
|
1279
|
-
[[package]]
|
|
1280
|
-
name = "futures-sink"
|
|
1281
|
-
version = "0.3.31"
|
|
1282
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
-
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
|
|
1284
|
-
|
|
1285
1294
|
[[package]]
|
|
1286
1295
|
name = "futures-task"
|
|
1287
1296
|
version = "0.3.31"
|
|
@@ -1295,26 +1304,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1295
1304
|
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1296
1305
|
dependencies = [
|
|
1297
1306
|
"futures-core",
|
|
1298
|
-
"futures-io",
|
|
1299
1307
|
"futures-macro",
|
|
1300
|
-
"futures-sink",
|
|
1301
1308
|
"futures-task",
|
|
1302
|
-
"memchr",
|
|
1303
1309
|
"pin-project-lite",
|
|
1304
1310
|
"pin-utils",
|
|
1305
1311
|
"slab",
|
|
1306
1312
|
]
|
|
1307
1313
|
|
|
1308
|
-
[[package]]
|
|
1309
|
-
name = "generic-array"
|
|
1310
|
-
version = "0.14.7"
|
|
1311
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1312
|
-
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1313
|
-
dependencies = [
|
|
1314
|
-
"typenum",
|
|
1315
|
-
"version_check",
|
|
1316
|
-
]
|
|
1317
|
-
|
|
1318
1314
|
[[package]]
|
|
1319
1315
|
name = "gethostname"
|
|
1320
1316
|
version = "0.4.3"
|
|
@@ -1348,6 +1344,16 @@ dependencies = [
|
|
|
1348
1344
|
"wasi 0.14.2+wasi-0.2.4",
|
|
1349
1345
|
]
|
|
1350
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
|
+
|
|
1351
1357
|
[[package]]
|
|
1352
1358
|
name = "gl_generator"
|
|
1353
1359
|
version = "0.14.0"
|
|
@@ -1447,42 +1453,14 @@ dependencies = [
|
|
|
1447
1453
|
]
|
|
1448
1454
|
|
|
1449
1455
|
[[package]]
|
|
1450
|
-
name = "
|
|
1451
|
-
version = "
|
|
1452
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
-
checksum = "fbcd2dba93594b227a1f57ee09b8b9da8892c34d55aa332e034a228d0fe6a171"
|
|
1454
|
-
dependencies = [
|
|
1455
|
-
"bitflags 2.9.1",
|
|
1456
|
-
"gpu-alloc-types",
|
|
1457
|
-
]
|
|
1458
|
-
|
|
1459
|
-
[[package]]
|
|
1460
|
-
name = "gpu-alloc-types"
|
|
1461
|
-
version = "0.3.0"
|
|
1462
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1463
|
-
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
|
|
1464
|
-
dependencies = [
|
|
1465
|
-
"bitflags 2.9.1",
|
|
1466
|
-
]
|
|
1467
|
-
|
|
1468
|
-
[[package]]
|
|
1469
|
-
name = "gpu-descriptor"
|
|
1470
|
-
version = "0.3.2"
|
|
1471
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1472
|
-
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
1473
|
-
dependencies = [
|
|
1474
|
-
"bitflags 2.9.1",
|
|
1475
|
-
"gpu-descriptor-types",
|
|
1476
|
-
"hashbrown",
|
|
1477
|
-
]
|
|
1478
|
-
|
|
1479
|
-
[[package]]
|
|
1480
|
-
name = "gpu-descriptor-types"
|
|
1481
|
-
version = "0.2.0"
|
|
1456
|
+
name = "half"
|
|
1457
|
+
version = "2.6.0"
|
|
1482
1458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1483
|
-
checksum = "
|
|
1459
|
+
checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
|
|
1484
1460
|
dependencies = [
|
|
1485
|
-
"
|
|
1461
|
+
"cfg-if",
|
|
1462
|
+
"crunchy",
|
|
1463
|
+
"num-traits",
|
|
1486
1464
|
]
|
|
1487
1465
|
|
|
1488
1466
|
[[package]]
|
|
@@ -1633,31 +1611,42 @@ checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
|
|
|
1633
1611
|
dependencies = [
|
|
1634
1612
|
"bytemuck",
|
|
1635
1613
|
"byteorder-lite",
|
|
1614
|
+
"color_quant",
|
|
1615
|
+
"exr",
|
|
1616
|
+
"gif",
|
|
1617
|
+
"image-webp",
|
|
1636
1618
|
"num-traits",
|
|
1637
1619
|
"png",
|
|
1620
|
+
"qoi",
|
|
1621
|
+
"ravif",
|
|
1622
|
+
"rayon",
|
|
1623
|
+
"rgb",
|
|
1638
1624
|
"tiff",
|
|
1625
|
+
"zune-core",
|
|
1626
|
+
"zune-jpeg",
|
|
1639
1627
|
]
|
|
1640
1628
|
|
|
1641
1629
|
[[package]]
|
|
1642
|
-
name = "
|
|
1643
|
-
version = "0.
|
|
1630
|
+
name = "image-webp"
|
|
1631
|
+
version = "0.2.3"
|
|
1644
1632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
-
checksum = "
|
|
1633
|
+
checksum = "f6970fe7a5300b4b42e62c52efa0187540a5bef546c60edaf554ef595d2e6f0b"
|
|
1634
|
+
dependencies = [
|
|
1635
|
+
"byteorder-lite",
|
|
1636
|
+
"quick-error",
|
|
1637
|
+
]
|
|
1646
1638
|
|
|
1647
1639
|
[[package]]
|
|
1648
|
-
name = "
|
|
1649
|
-
version = "
|
|
1640
|
+
name = "imgref"
|
|
1641
|
+
version = "1.11.0"
|
|
1650
1642
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1651
|
-
checksum = "
|
|
1652
|
-
dependencies = [
|
|
1653
|
-
"arrayvec",
|
|
1654
|
-
]
|
|
1643
|
+
checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408"
|
|
1655
1644
|
|
|
1656
1645
|
[[package]]
|
|
1657
1646
|
name = "indexmap"
|
|
1658
|
-
version = "2.
|
|
1647
|
+
version = "2.10.0"
|
|
1659
1648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1660
|
-
checksum = "
|
|
1649
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
|
1661
1650
|
dependencies = [
|
|
1662
1651
|
"equivalent",
|
|
1663
1652
|
"hashbrown",
|
|
@@ -1670,21 +1659,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1670
1659
|
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
|
|
1671
1660
|
|
|
1672
1661
|
[[package]]
|
|
1673
|
-
name = "
|
|
1674
|
-
version = "0.
|
|
1662
|
+
name = "interpolate_name"
|
|
1663
|
+
version = "0.2.4"
|
|
1675
1664
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1676
|
-
checksum = "
|
|
1665
|
+
checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
|
|
1677
1666
|
dependencies = [
|
|
1678
|
-
"
|
|
1679
|
-
"
|
|
1680
|
-
"
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
"
|
|
1685
|
-
"
|
|
1686
|
-
"
|
|
1687
|
-
"
|
|
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",
|
|
1688
1679
|
]
|
|
1689
1680
|
|
|
1690
1681
|
[[package]]
|
|
@@ -1741,17 +1732,6 @@ dependencies = [
|
|
|
1741
1732
|
"wasm-bindgen",
|
|
1742
1733
|
]
|
|
1743
1734
|
|
|
1744
|
-
[[package]]
|
|
1745
|
-
name = "khronos-egl"
|
|
1746
|
-
version = "6.0.0"
|
|
1747
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
-
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
1749
|
-
dependencies = [
|
|
1750
|
-
"libc",
|
|
1751
|
-
"libloading",
|
|
1752
|
-
"pkg-config",
|
|
1753
|
-
]
|
|
1754
|
-
|
|
1755
1735
|
[[package]]
|
|
1756
1736
|
name = "khronos_api"
|
|
1757
1737
|
version = "3.1.0"
|
|
@@ -1759,13 +1739,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1759
1739
|
checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
|
|
1760
1740
|
|
|
1761
1741
|
[[package]]
|
|
1762
|
-
name = "
|
|
1763
|
-
version = "0.
|
|
1742
|
+
name = "lebe"
|
|
1743
|
+
version = "0.5.2"
|
|
1764
1744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1765
|
-
checksum = "
|
|
1766
|
-
dependencies = [
|
|
1767
|
-
"arrayvec",
|
|
1768
|
-
]
|
|
1745
|
+
checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
|
|
1769
1746
|
|
|
1770
1747
|
[[package]]
|
|
1771
1748
|
name = "libc"
|
|
@@ -1773,6 +1750,16 @@ version = "0.2.174"
|
|
|
1773
1750
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1774
1751
|
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
|
1775
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
|
+
|
|
1776
1763
|
[[package]]
|
|
1777
1764
|
name = "libloading"
|
|
1778
1765
|
version = "0.8.8"
|
|
@@ -1783,6 +1770,12 @@ dependencies = [
|
|
|
1783
1770
|
"windows-targets 0.53.2",
|
|
1784
1771
|
]
|
|
1785
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
|
+
|
|
1786
1779
|
[[package]]
|
|
1787
1780
|
name = "libredox"
|
|
1788
1781
|
version = "0.1.4"
|
|
@@ -1835,12 +1828,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1835
1828
|
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
|
1836
1829
|
|
|
1837
1830
|
[[package]]
|
|
1838
|
-
name = "
|
|
1839
|
-
version = "0.
|
|
1831
|
+
name = "loop9"
|
|
1832
|
+
version = "0.1.5"
|
|
1840
1833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
-
checksum = "
|
|
1834
|
+
checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
|
|
1842
1835
|
dependencies = [
|
|
1843
|
-
"
|
|
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",
|
|
1844
1847
|
]
|
|
1845
1848
|
|
|
1846
1849
|
[[package]]
|
|
@@ -1851,9 +1854,9 @@ checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
|
1851
1854
|
|
|
1852
1855
|
[[package]]
|
|
1853
1856
|
name = "memmap2"
|
|
1854
|
-
version = "0.9.
|
|
1857
|
+
version = "0.9.7"
|
|
1855
1858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1856
|
-
checksum = "
|
|
1859
|
+
checksum = "483758ad303d734cec05e5c12b41d7e93e6a6390c5e9dae6bdeb7c1259012d28"
|
|
1857
1860
|
dependencies = [
|
|
1858
1861
|
"libc",
|
|
1859
1862
|
]
|
|
@@ -1867,21 +1870,6 @@ dependencies = [
|
|
|
1867
1870
|
"autocfg",
|
|
1868
1871
|
]
|
|
1869
1872
|
|
|
1870
|
-
[[package]]
|
|
1871
|
-
name = "metal"
|
|
1872
|
-
version = "0.31.0"
|
|
1873
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1874
|
-
checksum = "f569fb946490b5743ad69813cb19629130ce9374034abe31614a36402d18f99e"
|
|
1875
|
-
dependencies = [
|
|
1876
|
-
"bitflags 2.9.1",
|
|
1877
|
-
"block",
|
|
1878
|
-
"core-graphics-types",
|
|
1879
|
-
"foreign-types",
|
|
1880
|
-
"log",
|
|
1881
|
-
"objc",
|
|
1882
|
-
"paste",
|
|
1883
|
-
]
|
|
1884
|
-
|
|
1885
1873
|
[[package]]
|
|
1886
1874
|
name = "mime"
|
|
1887
1875
|
version = "0.3.17"
|
|
@@ -1900,6 +1888,12 @@ dependencies = [
|
|
|
1900
1888
|
"unicase",
|
|
1901
1889
|
]
|
|
1902
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
|
+
|
|
1903
1897
|
[[package]]
|
|
1904
1898
|
name = "miniz_oxide"
|
|
1905
1899
|
version = "0.8.9"
|
|
@@ -1910,37 +1904,28 @@ dependencies = [
|
|
|
1910
1904
|
"simd-adler32",
|
|
1911
1905
|
]
|
|
1912
1906
|
|
|
1913
|
-
[[package]]
|
|
1914
|
-
name = "mio"
|
|
1915
|
-
version = "1.0.4"
|
|
1916
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1917
|
-
checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
|
|
1918
|
-
dependencies = [
|
|
1919
|
-
"libc",
|
|
1920
|
-
"wasi 0.11.1+wasi-snapshot-preview1",
|
|
1921
|
-
"windows-sys 0.59.0",
|
|
1922
|
-
]
|
|
1923
|
-
|
|
1924
1907
|
[[package]]
|
|
1925
1908
|
name = "naga"
|
|
1926
|
-
version = "
|
|
1909
|
+
version = "25.0.1"
|
|
1927
1910
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1928
|
-
checksum = "
|
|
1911
|
+
checksum = "2b977c445f26e49757f9aca3631c3b8b836942cb278d69a92e7b80d3b24da632"
|
|
1929
1912
|
dependencies = [
|
|
1930
1913
|
"arrayvec",
|
|
1931
1914
|
"bit-set",
|
|
1932
1915
|
"bitflags 2.9.1",
|
|
1933
1916
|
"cfg_aliases",
|
|
1934
1917
|
"codespan-reporting",
|
|
1918
|
+
"half",
|
|
1919
|
+
"hashbrown",
|
|
1935
1920
|
"hexf-parse",
|
|
1936
1921
|
"indexmap",
|
|
1937
1922
|
"log",
|
|
1923
|
+
"num-traits",
|
|
1924
|
+
"once_cell",
|
|
1938
1925
|
"rustc-hash 1.1.0",
|
|
1939
|
-
"spirv",
|
|
1940
1926
|
"strum",
|
|
1941
|
-
"termcolor",
|
|
1942
1927
|
"thiserror 2.0.12",
|
|
1943
|
-
"unicode-
|
|
1928
|
+
"unicode-ident",
|
|
1944
1929
|
]
|
|
1945
1930
|
|
|
1946
1931
|
[[package]]
|
|
@@ -1952,7 +1937,7 @@ dependencies = [
|
|
|
1952
1937
|
"bitflags 2.9.1",
|
|
1953
1938
|
"jni-sys",
|
|
1954
1939
|
"log",
|
|
1955
|
-
"ndk-sys
|
|
1940
|
+
"ndk-sys",
|
|
1956
1941
|
"num_enum",
|
|
1957
1942
|
"raw-window-handle",
|
|
1958
1943
|
"thiserror 1.0.69",
|
|
@@ -1966,27 +1951,24 @@ checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
|
|
|
1966
1951
|
|
|
1967
1952
|
[[package]]
|
|
1968
1953
|
name = "ndk-sys"
|
|
1969
|
-
version = "0.
|
|
1954
|
+
version = "0.6.0+11769913"
|
|
1970
1955
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1971
|
-
checksum = "
|
|
1956
|
+
checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873"
|
|
1972
1957
|
dependencies = [
|
|
1973
1958
|
"jni-sys",
|
|
1974
1959
|
]
|
|
1975
1960
|
|
|
1976
1961
|
[[package]]
|
|
1977
|
-
name = "
|
|
1978
|
-
version = "0.6
|
|
1962
|
+
name = "new_debug_unreachable"
|
|
1963
|
+
version = "1.0.6"
|
|
1979
1964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1980
|
-
checksum = "
|
|
1981
|
-
dependencies = [
|
|
1982
|
-
"jni-sys",
|
|
1983
|
-
]
|
|
1965
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1984
1966
|
|
|
1985
1967
|
[[package]]
|
|
1986
1968
|
name = "nix"
|
|
1987
|
-
version = "0.
|
|
1969
|
+
version = "0.30.1"
|
|
1988
1970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1989
|
-
checksum = "
|
|
1971
|
+
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
1990
1972
|
dependencies = [
|
|
1991
1973
|
"bitflags 2.9.1",
|
|
1992
1974
|
"cfg-if",
|
|
@@ -2001,6 +1983,63 @@ version = "0.2.0"
|
|
|
2001
1983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2002
1984
|
checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
|
|
2003
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
|
+
|
|
2004
2043
|
[[package]]
|
|
2005
2044
|
name = "num-traits"
|
|
2006
2045
|
version = "0.2.19"
|
|
@@ -2008,6 +2047,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2008
2047
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
2009
2048
|
dependencies = [
|
|
2010
2049
|
"autocfg",
|
|
2050
|
+
"libm",
|
|
2011
2051
|
]
|
|
2012
2052
|
|
|
2013
2053
|
[[package]]
|
|
@@ -2032,15 +2072,6 @@ dependencies = [
|
|
|
2032
2072
|
"syn",
|
|
2033
2073
|
]
|
|
2034
2074
|
|
|
2035
|
-
[[package]]
|
|
2036
|
-
name = "objc"
|
|
2037
|
-
version = "0.2.7"
|
|
2038
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2039
|
-
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
2040
|
-
dependencies = [
|
|
2041
|
-
"malloc_buf",
|
|
2042
|
-
]
|
|
2043
|
-
|
|
2044
2075
|
[[package]]
|
|
2045
2076
|
name = "objc-sys"
|
|
2046
2077
|
version = "0.3.5"
|
|
@@ -2327,15 +2358,6 @@ dependencies = [
|
|
|
2327
2358
|
"libredox",
|
|
2328
2359
|
]
|
|
2329
2360
|
|
|
2330
|
-
[[package]]
|
|
2331
|
-
name = "ordered-float"
|
|
2332
|
-
version = "4.6.0"
|
|
2333
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
|
-
checksum = "7bb71e1b3fa6ca1c61f383464aaf2bb0e2f8e772a1f01d486832464de363b951"
|
|
2335
|
-
dependencies = [
|
|
2336
|
-
"num-traits",
|
|
2337
|
-
]
|
|
2338
|
-
|
|
2339
2361
|
[[package]]
|
|
2340
2362
|
name = "ordered-stream"
|
|
2341
2363
|
version = "0.2.0"
|
|
@@ -2413,7 +2435,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2413
2435
|
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
2414
2436
|
dependencies = [
|
|
2415
2437
|
"phf_shared",
|
|
2416
|
-
"rand
|
|
2438
|
+
"rand",
|
|
2417
2439
|
]
|
|
2418
2440
|
|
|
2419
2441
|
[[package]]
|
|
@@ -2436,16 +2458,10 @@ version = "0.11.3"
|
|
|
2436
2458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2437
2459
|
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
2438
2460
|
dependencies = [
|
|
2439
|
-
"siphasher
|
|
2461
|
+
"siphasher",
|
|
2440
2462
|
"unicase",
|
|
2441
2463
|
]
|
|
2442
2464
|
|
|
2443
|
-
[[package]]
|
|
2444
|
-
name = "pico-args"
|
|
2445
|
-
version = "0.5.0"
|
|
2446
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2447
|
-
checksum = "5be167a7af36ee22fe3115051bc51f6e6c7054c9348e28deb4f49bd6f705a315"
|
|
2448
|
-
|
|
2449
2465
|
[[package]]
|
|
2450
2466
|
name = "pin-project"
|
|
2451
2467
|
version = "1.1.10"
|
|
@@ -2518,7 +2534,7 @@ dependencies = [
|
|
|
2518
2534
|
"concurrent-queue",
|
|
2519
2535
|
"hermit-abi",
|
|
2520
2536
|
"pin-project-lite",
|
|
2521
|
-
"rustix 1.0.
|
|
2537
|
+
"rustix 1.0.8",
|
|
2522
2538
|
"tracing",
|
|
2523
2539
|
"windows-sys 0.59.0",
|
|
2524
2540
|
]
|
|
@@ -2570,6 +2586,19 @@ name = "profiling"
|
|
|
2570
2586
|
version = "1.0.17"
|
|
2571
2587
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
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
|
+
]
|
|
2573
2602
|
|
|
2574
2603
|
[[package]]
|
|
2575
2604
|
name = "pyo3"
|
|
@@ -2595,7 +2624,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2595
2624
|
checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
|
|
2596
2625
|
dependencies = [
|
|
2597
2626
|
"once_cell",
|
|
2598
|
-
"target-lexicon",
|
|
2627
|
+
"target-lexicon 0.13.2",
|
|
2599
2628
|
]
|
|
2600
2629
|
|
|
2601
2630
|
[[package]]
|
|
@@ -2633,11 +2662,26 @@ dependencies = [
|
|
|
2633
2662
|
"syn",
|
|
2634
2663
|
]
|
|
2635
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
|
+
|
|
2636
2680
|
[[package]]
|
|
2637
2681
|
name = "quick-xml"
|
|
2638
|
-
version = "0.
|
|
2682
|
+
version = "0.36.2"
|
|
2639
2683
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2640
|
-
checksum = "
|
|
2684
|
+
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
|
|
2641
2685
|
dependencies = [
|
|
2642
2686
|
"memchr",
|
|
2643
2687
|
"serde",
|
|
@@ -2674,18 +2718,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2674
2718
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
2675
2719
|
dependencies = [
|
|
2676
2720
|
"libc",
|
|
2677
|
-
"rand_chacha
|
|
2678
|
-
"rand_core
|
|
2679
|
-
]
|
|
2680
|
-
|
|
2681
|
-
[[package]]
|
|
2682
|
-
name = "rand"
|
|
2683
|
-
version = "0.9.1"
|
|
2684
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2685
|
-
checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
|
|
2686
|
-
dependencies = [
|
|
2687
|
-
"rand_chacha 0.9.0",
|
|
2688
|
-
"rand_core 0.9.3",
|
|
2721
|
+
"rand_chacha",
|
|
2722
|
+
"rand_core",
|
|
2689
2723
|
]
|
|
2690
2724
|
|
|
2691
2725
|
[[package]]
|
|
@@ -2695,35 +2729,66 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2695
2729
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
2696
2730
|
dependencies = [
|
|
2697
2731
|
"ppv-lite86",
|
|
2698
|
-
"rand_core
|
|
2732
|
+
"rand_core",
|
|
2699
2733
|
]
|
|
2700
2734
|
|
|
2701
2735
|
[[package]]
|
|
2702
|
-
name = "
|
|
2703
|
-
version = "0.
|
|
2736
|
+
name = "rand_core"
|
|
2737
|
+
version = "0.6.4"
|
|
2704
2738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2705
|
-
checksum = "
|
|
2739
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2706
2740
|
dependencies = [
|
|
2707
|
-
"
|
|
2708
|
-
"rand_core 0.9.3",
|
|
2741
|
+
"getrandom 0.2.16",
|
|
2709
2742
|
]
|
|
2710
2743
|
|
|
2711
2744
|
[[package]]
|
|
2712
|
-
name = "
|
|
2713
|
-
version = "0.
|
|
2745
|
+
name = "rav1e"
|
|
2746
|
+
version = "0.7.1"
|
|
2714
2747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2715
|
-
checksum = "
|
|
2748
|
+
checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
|
|
2716
2749
|
dependencies = [
|
|
2717
|
-
"
|
|
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",
|
|
2718
2777
|
]
|
|
2719
2778
|
|
|
2720
2779
|
[[package]]
|
|
2721
|
-
name = "
|
|
2722
|
-
version = "0.
|
|
2780
|
+
name = "ravif"
|
|
2781
|
+
version = "0.11.20"
|
|
2723
2782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2724
|
-
checksum = "
|
|
2783
|
+
checksum = "5825c26fddd16ab9f515930d49028a630efec172e903483c94796cfe31893e6b"
|
|
2725
2784
|
dependencies = [
|
|
2726
|
-
"
|
|
2785
|
+
"avif-serialize",
|
|
2786
|
+
"imgref",
|
|
2787
|
+
"loop9",
|
|
2788
|
+
"quick-error",
|
|
2789
|
+
"rav1e",
|
|
2790
|
+
"rayon",
|
|
2791
|
+
"rgb",
|
|
2727
2792
|
]
|
|
2728
2793
|
|
|
2729
2794
|
[[package]]
|
|
@@ -2733,10 +2798,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2733
2798
|
checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
|
|
2734
2799
|
|
|
2735
2800
|
[[package]]
|
|
2736
|
-
name = "
|
|
2737
|
-
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"
|
|
2738
2813
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2739
|
-
checksum = "
|
|
2814
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
2815
|
+
dependencies = [
|
|
2816
|
+
"crossbeam-deque",
|
|
2817
|
+
"crossbeam-utils",
|
|
2818
|
+
]
|
|
2740
2819
|
|
|
2741
2820
|
[[package]]
|
|
2742
2821
|
name = "redox_syscall"
|
|
@@ -2762,34 +2841,11 @@ version = "1.1.0"
|
|
|
2762
2841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2763
2842
|
checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
|
|
2764
2843
|
|
|
2765
|
-
[[package]]
|
|
2766
|
-
name = "resvg"
|
|
2767
|
-
version = "0.37.0"
|
|
2768
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2769
|
-
checksum = "cadccb3d99a9efb8e5e00c16fbb732cbe400db2ec7fc004697ee7d97d86cf1f4"
|
|
2770
|
-
dependencies = [
|
|
2771
|
-
"log",
|
|
2772
|
-
"pico-args",
|
|
2773
|
-
"rgb",
|
|
2774
|
-
"svgtypes",
|
|
2775
|
-
"tiny-skia",
|
|
2776
|
-
"usvg",
|
|
2777
|
-
]
|
|
2778
|
-
|
|
2779
2844
|
[[package]]
|
|
2780
2845
|
name = "rgb"
|
|
2781
|
-
version = "0.8.
|
|
2782
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2783
|
-
checksum = "57397d16646700483b67d2dd6511d79318f9d057fdbd21a4066aeac8b41d310a"
|
|
2784
|
-
dependencies = [
|
|
2785
|
-
"bytemuck",
|
|
2786
|
-
]
|
|
2787
|
-
|
|
2788
|
-
[[package]]
|
|
2789
|
-
name = "roxmltree"
|
|
2790
|
-
version = "0.19.0"
|
|
2846
|
+
version = "0.8.52"
|
|
2791
2847
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2792
|
-
checksum = "
|
|
2848
|
+
checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
|
|
2793
2849
|
|
|
2794
2850
|
[[package]]
|
|
2795
2851
|
name = "rustc-hash"
|
|
@@ -2818,15 +2874,15 @@ dependencies = [
|
|
|
2818
2874
|
|
|
2819
2875
|
[[package]]
|
|
2820
2876
|
name = "rustix"
|
|
2821
|
-
version = "1.0.
|
|
2877
|
+
version = "1.0.8"
|
|
2822
2878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2823
|
-
checksum = "
|
|
2879
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
|
2824
2880
|
dependencies = [
|
|
2825
2881
|
"bitflags 2.9.1",
|
|
2826
2882
|
"errno",
|
|
2827
2883
|
"libc",
|
|
2828
2884
|
"linux-raw-sys 0.9.4",
|
|
2829
|
-
"windows-sys 0.
|
|
2885
|
+
"windows-sys 0.60.2",
|
|
2830
2886
|
]
|
|
2831
2887
|
|
|
2832
2888
|
[[package]]
|
|
@@ -2919,25 +2975,12 @@ dependencies = [
|
|
|
2919
2975
|
]
|
|
2920
2976
|
|
|
2921
2977
|
[[package]]
|
|
2922
|
-
name = "
|
|
2923
|
-
version = "0.
|
|
2924
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
-
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2926
|
-
dependencies = [
|
|
2927
|
-
"cfg-if",
|
|
2928
|
-
"cpufeatures",
|
|
2929
|
-
"digest",
|
|
2930
|
-
]
|
|
2931
|
-
|
|
2932
|
-
[[package]]
|
|
2933
|
-
name = "sha2"
|
|
2934
|
-
version = "0.10.9"
|
|
2978
|
+
name = "serde_spanned"
|
|
2979
|
+
version = "0.6.9"
|
|
2935
2980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2936
|
-
checksum = "
|
|
2981
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
2937
2982
|
dependencies = [
|
|
2938
|
-
"
|
|
2939
|
-
"cpufeatures",
|
|
2940
|
-
"digest",
|
|
2983
|
+
"serde",
|
|
2941
2984
|
]
|
|
2942
2985
|
|
|
2943
2986
|
[[package]]
|
|
@@ -2962,20 +3005,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2962
3005
|
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
2963
3006
|
|
|
2964
3007
|
[[package]]
|
|
2965
|
-
name = "
|
|
2966
|
-
version = "0.
|
|
3008
|
+
name = "simd_helpers"
|
|
3009
|
+
version = "0.1.0"
|
|
2967
3010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2968
|
-
checksum = "
|
|
3011
|
+
checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
|
|
2969
3012
|
dependencies = [
|
|
2970
|
-
"
|
|
3013
|
+
"quote",
|
|
2971
3014
|
]
|
|
2972
3015
|
|
|
2973
|
-
[[package]]
|
|
2974
|
-
name = "siphasher"
|
|
2975
|
-
version = "0.3.11"
|
|
2976
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2977
|
-
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
2978
|
-
|
|
2979
3016
|
[[package]]
|
|
2980
3017
|
name = "siphasher"
|
|
2981
3018
|
version = "1.0.1"
|
|
@@ -3048,15 +3085,6 @@ dependencies = [
|
|
|
3048
3085
|
"serde",
|
|
3049
3086
|
]
|
|
3050
3087
|
|
|
3051
|
-
[[package]]
|
|
3052
|
-
name = "spirv"
|
|
3053
|
-
version = "0.3.0+sdk-1.3.268.0"
|
|
3054
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3055
|
-
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
3056
|
-
dependencies = [
|
|
3057
|
-
"bitflags 2.9.1",
|
|
3058
|
-
]
|
|
3059
|
-
|
|
3060
3088
|
[[package]]
|
|
3061
3089
|
name = "stable_deref_trait"
|
|
3062
3090
|
version = "1.2.0"
|
|
@@ -3074,9 +3102,6 @@ name = "strict-num"
|
|
|
3074
3102
|
version = "0.1.1"
|
|
3075
3103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3076
3104
|
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
3077
|
-
dependencies = [
|
|
3078
|
-
"float-cmp",
|
|
3079
|
-
]
|
|
3080
3105
|
|
|
3081
3106
|
[[package]]
|
|
3082
3107
|
name = "strum"
|
|
@@ -3100,16 +3125,6 @@ dependencies = [
|
|
|
3100
3125
|
"syn",
|
|
3101
3126
|
]
|
|
3102
3127
|
|
|
3103
|
-
[[package]]
|
|
3104
|
-
name = "svgtypes"
|
|
3105
|
-
version = "0.13.0"
|
|
3106
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3107
|
-
checksum = "6e44e288cd960318917cbd540340968b90becc8bc81f171345d706e7a89d9d70"
|
|
3108
|
-
dependencies = [
|
|
3109
|
-
"kurbo",
|
|
3110
|
-
"siphasher 0.3.11",
|
|
3111
|
-
]
|
|
3112
|
-
|
|
3113
3128
|
[[package]]
|
|
3114
3129
|
name = "syn"
|
|
3115
3130
|
version = "2.0.104"
|
|
@@ -3132,6 +3147,25 @@ dependencies = [
|
|
|
3132
3147
|
"syn",
|
|
3133
3148
|
]
|
|
3134
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
|
+
|
|
3135
3169
|
[[package]]
|
|
3136
3170
|
name = "target-lexicon"
|
|
3137
3171
|
version = "0.13.2"
|
|
@@ -3147,7 +3181,7 @@ dependencies = [
|
|
|
3147
3181
|
"fastrand",
|
|
3148
3182
|
"getrandom 0.3.3",
|
|
3149
3183
|
"once_cell",
|
|
3150
|
-
"rustix 1.0.
|
|
3184
|
+
"rustix 1.0.8",
|
|
3151
3185
|
"windows-sys 0.59.0",
|
|
3152
3186
|
]
|
|
3153
3187
|
|
|
@@ -3160,17 +3194,6 @@ dependencies = [
|
|
|
3160
3194
|
"winapi-util",
|
|
3161
3195
|
]
|
|
3162
3196
|
|
|
3163
|
-
[[package]]
|
|
3164
|
-
name = "test"
|
|
3165
|
-
version = "0.1.1-nightly.5"
|
|
3166
|
-
dependencies = [
|
|
3167
|
-
"cosmol_viewer",
|
|
3168
|
-
"cosmol_viewer_core",
|
|
3169
|
-
"eframe",
|
|
3170
|
-
"egui_extras",
|
|
3171
|
-
"glam",
|
|
3172
|
-
]
|
|
3173
|
-
|
|
3174
3197
|
[[package]]
|
|
3175
3198
|
name = "thiserror"
|
|
3176
3199
|
version = "1.0.69"
|
|
@@ -3233,7 +3256,6 @@ dependencies = [
|
|
|
3233
3256
|
"bytemuck",
|
|
3234
3257
|
"cfg-if",
|
|
3235
3258
|
"log",
|
|
3236
|
-
"png",
|
|
3237
3259
|
"tiny-skia-path",
|
|
3238
3260
|
]
|
|
3239
3261
|
|
|
@@ -3258,11 +3280,26 @@ dependencies = [
|
|
|
3258
3280
|
"zerovec",
|
|
3259
3281
|
]
|
|
3260
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
|
+
|
|
3261
3295
|
[[package]]
|
|
3262
3296
|
name = "toml_datetime"
|
|
3263
3297
|
version = "0.6.11"
|
|
3264
3298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3265
3299
|
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
3300
|
+
dependencies = [
|
|
3301
|
+
"serde",
|
|
3302
|
+
]
|
|
3266
3303
|
|
|
3267
3304
|
[[package]]
|
|
3268
3305
|
name = "toml_edit"
|
|
@@ -3271,6 +3308,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3271
3308
|
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
3272
3309
|
dependencies = [
|
|
3273
3310
|
"indexmap",
|
|
3311
|
+
"serde",
|
|
3312
|
+
"serde_spanned",
|
|
3274
3313
|
"toml_datetime",
|
|
3275
3314
|
"winnow",
|
|
3276
3315
|
]
|
|
@@ -3321,12 +3360,6 @@ dependencies = [
|
|
|
3321
3360
|
"rustc-hash 2.1.1",
|
|
3322
3361
|
]
|
|
3323
3362
|
|
|
3324
|
-
[[package]]
|
|
3325
|
-
name = "typenum"
|
|
3326
|
-
version = "1.18.0"
|
|
3327
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3328
|
-
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
3329
|
-
|
|
3330
3363
|
[[package]]
|
|
3331
3364
|
name = "uds_windows"
|
|
3332
3365
|
version = "1.1.0"
|
|
@@ -3358,15 +3391,9 @@ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
|
3358
3391
|
|
|
3359
3392
|
[[package]]
|
|
3360
3393
|
name = "unicode-width"
|
|
3361
|
-
version = "0.1
|
|
3362
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3363
|
-
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
3364
|
-
|
|
3365
|
-
[[package]]
|
|
3366
|
-
name = "unicode-xid"
|
|
3367
|
-
version = "0.2.6"
|
|
3394
|
+
version = "0.2.1"
|
|
3368
3395
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3369
|
-
checksum = "
|
|
3396
|
+
checksum = "4a1a07cc7db3810833284e8d372ccdc6da29741639ecc70c9ec107df0fa6154c"
|
|
3370
3397
|
|
|
3371
3398
|
[[package]]
|
|
3372
3399
|
name = "unindent"
|
|
@@ -3385,50 +3412,6 @@ dependencies = [
|
|
|
3385
3412
|
"percent-encoding",
|
|
3386
3413
|
]
|
|
3387
3414
|
|
|
3388
|
-
[[package]]
|
|
3389
|
-
name = "usvg"
|
|
3390
|
-
version = "0.37.0"
|
|
3391
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3392
|
-
checksum = "38b0a51b72ab80ca511d126b77feeeb4fb1e972764653e61feac30adc161a756"
|
|
3393
|
-
dependencies = [
|
|
3394
|
-
"base64 0.21.7",
|
|
3395
|
-
"log",
|
|
3396
|
-
"pico-args",
|
|
3397
|
-
"usvg-parser",
|
|
3398
|
-
"usvg-tree",
|
|
3399
|
-
"xmlwriter",
|
|
3400
|
-
]
|
|
3401
|
-
|
|
3402
|
-
[[package]]
|
|
3403
|
-
name = "usvg-parser"
|
|
3404
|
-
version = "0.37.0"
|
|
3405
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
-
checksum = "9bd4e3c291f45d152929a31f0f6c819245e2921bfd01e7bd91201a9af39a2bdc"
|
|
3407
|
-
dependencies = [
|
|
3408
|
-
"data-url",
|
|
3409
|
-
"flate2",
|
|
3410
|
-
"imagesize",
|
|
3411
|
-
"kurbo",
|
|
3412
|
-
"log",
|
|
3413
|
-
"roxmltree",
|
|
3414
|
-
"simplecss",
|
|
3415
|
-
"siphasher 0.3.11",
|
|
3416
|
-
"svgtypes",
|
|
3417
|
-
"usvg-tree",
|
|
3418
|
-
]
|
|
3419
|
-
|
|
3420
|
-
[[package]]
|
|
3421
|
-
name = "usvg-tree"
|
|
3422
|
-
version = "0.37.0"
|
|
3423
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3424
|
-
checksum = "8ee3d202ebdb97a6215604b8f5b4d6ef9024efd623cf2e373a6416ba976ec7d3"
|
|
3425
|
-
dependencies = [
|
|
3426
|
-
"rctree",
|
|
3427
|
-
"strict-num",
|
|
3428
|
-
"svgtypes",
|
|
3429
|
-
"tiny-skia-path",
|
|
3430
|
-
]
|
|
3431
|
-
|
|
3432
3415
|
[[package]]
|
|
3433
3416
|
name = "utf8_iter"
|
|
3434
3417
|
version = "1.0.4"
|
|
@@ -3446,6 +3429,23 @@ dependencies = [
|
|
|
3446
3429
|
"wasm-bindgen",
|
|
3447
3430
|
]
|
|
3448
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
|
+
|
|
3449
3449
|
[[package]]
|
|
3450
3450
|
name = "version_check"
|
|
3451
3451
|
version = "0.9.5"
|
|
@@ -3701,23 +3701,24 @@ checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
|
|
|
3701
3701
|
|
|
3702
3702
|
[[package]]
|
|
3703
3703
|
name = "wgpu"
|
|
3704
|
-
version = "
|
|
3704
|
+
version = "25.0.2"
|
|
3705
3705
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3706
|
-
checksum = "
|
|
3706
|
+
checksum = "ec8fb398f119472be4d80bc3647339f56eb63b2a331f6a3d16e25d8144197dd9"
|
|
3707
3707
|
dependencies = [
|
|
3708
3708
|
"arrayvec",
|
|
3709
3709
|
"bitflags 2.9.1",
|
|
3710
3710
|
"cfg_aliases",
|
|
3711
3711
|
"document-features",
|
|
3712
|
+
"hashbrown",
|
|
3712
3713
|
"js-sys",
|
|
3713
3714
|
"log",
|
|
3714
3715
|
"parking_lot",
|
|
3716
|
+
"portable-atomic",
|
|
3715
3717
|
"profiling",
|
|
3716
3718
|
"raw-window-handle",
|
|
3717
3719
|
"smallvec",
|
|
3718
3720
|
"static_assertions",
|
|
3719
3721
|
"wasm-bindgen",
|
|
3720
|
-
"wasm-bindgen-futures",
|
|
3721
3722
|
"web-sys",
|
|
3722
3723
|
"wgpu-core",
|
|
3723
3724
|
"wgpu-hal",
|
|
@@ -3726,79 +3727,72 @@ dependencies = [
|
|
|
3726
3727
|
|
|
3727
3728
|
[[package]]
|
|
3728
3729
|
name = "wgpu-core"
|
|
3729
|
-
version = "
|
|
3730
|
+
version = "25.0.2"
|
|
3730
3731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3731
|
-
checksum = "
|
|
3732
|
+
checksum = "f7b882196f8368511d613c6aeec80655160db6646aebddf8328879a88d54e500"
|
|
3732
3733
|
dependencies = [
|
|
3733
3734
|
"arrayvec",
|
|
3735
|
+
"bit-set",
|
|
3734
3736
|
"bit-vec",
|
|
3735
3737
|
"bitflags 2.9.1",
|
|
3736
3738
|
"cfg_aliases",
|
|
3737
3739
|
"document-features",
|
|
3740
|
+
"hashbrown",
|
|
3738
3741
|
"indexmap",
|
|
3739
3742
|
"log",
|
|
3740
3743
|
"naga",
|
|
3741
3744
|
"once_cell",
|
|
3742
3745
|
"parking_lot",
|
|
3746
|
+
"portable-atomic",
|
|
3743
3747
|
"profiling",
|
|
3744
3748
|
"raw-window-handle",
|
|
3745
3749
|
"rustc-hash 1.1.0",
|
|
3746
3750
|
"smallvec",
|
|
3747
3751
|
"thiserror 2.0.12",
|
|
3752
|
+
"wgpu-core-deps-windows-linux-android",
|
|
3748
3753
|
"wgpu-hal",
|
|
3749
3754
|
"wgpu-types",
|
|
3750
3755
|
]
|
|
3751
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
|
+
|
|
3752
3766
|
[[package]]
|
|
3753
3767
|
name = "wgpu-hal"
|
|
3754
|
-
version = "
|
|
3768
|
+
version = "25.0.2"
|
|
3755
3769
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3756
|
-
checksum = "
|
|
3770
|
+
checksum = "f968767fe4d3d33747bbd1473ccd55bf0f6451f55d733b5597e67b5deab4ad17"
|
|
3757
3771
|
dependencies = [
|
|
3758
|
-
"android_system_properties",
|
|
3759
|
-
"arrayvec",
|
|
3760
|
-
"ash",
|
|
3761
3772
|
"bitflags 2.9.1",
|
|
3762
|
-
"bytemuck",
|
|
3763
3773
|
"cfg_aliases",
|
|
3764
|
-
"core-graphics-types",
|
|
3765
|
-
"glow",
|
|
3766
|
-
"glutin_wgl_sys",
|
|
3767
|
-
"gpu-alloc",
|
|
3768
|
-
"gpu-descriptor",
|
|
3769
|
-
"js-sys",
|
|
3770
|
-
"khronos-egl",
|
|
3771
|
-
"libc",
|
|
3772
3774
|
"libloading",
|
|
3773
3775
|
"log",
|
|
3774
|
-
"metal",
|
|
3775
3776
|
"naga",
|
|
3776
|
-
"ndk-sys 0.5.0+25.2.9519653",
|
|
3777
|
-
"objc",
|
|
3778
|
-
"once_cell",
|
|
3779
|
-
"ordered-float",
|
|
3780
3777
|
"parking_lot",
|
|
3781
|
-
"
|
|
3778
|
+
"portable-atomic",
|
|
3782
3779
|
"raw-window-handle",
|
|
3783
3780
|
"renderdoc-sys",
|
|
3784
|
-
"rustc-hash 1.1.0",
|
|
3785
|
-
"smallvec",
|
|
3786
3781
|
"thiserror 2.0.12",
|
|
3787
|
-
"wasm-bindgen",
|
|
3788
|
-
"web-sys",
|
|
3789
3782
|
"wgpu-types",
|
|
3790
|
-
"windows",
|
|
3791
3783
|
]
|
|
3792
3784
|
|
|
3793
3785
|
[[package]]
|
|
3794
3786
|
name = "wgpu-types"
|
|
3795
|
-
version = "
|
|
3787
|
+
version = "25.0.0"
|
|
3796
3788
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3797
|
-
checksum = "
|
|
3789
|
+
checksum = "2aa49460c2a8ee8edba3fca54325540d904dd85b2e086ada762767e17d06e8bc"
|
|
3798
3790
|
dependencies = [
|
|
3799
3791
|
"bitflags 2.9.1",
|
|
3792
|
+
"bytemuck",
|
|
3800
3793
|
"js-sys",
|
|
3801
3794
|
"log",
|
|
3795
|
+
"thiserror 2.0.12",
|
|
3802
3796
|
"web-sys",
|
|
3803
3797
|
]
|
|
3804
3798
|
|
|
@@ -3835,32 +3829,55 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
3835
3829
|
|
|
3836
3830
|
[[package]]
|
|
3837
3831
|
name = "windows"
|
|
3838
|
-
version = "0.
|
|
3832
|
+
version = "0.61.3"
|
|
3839
3833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3840
|
-
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"
|
|
3841
3848
|
dependencies = [
|
|
3842
3849
|
"windows-core",
|
|
3843
|
-
"windows-targets 0.52.6",
|
|
3844
3850
|
]
|
|
3845
3851
|
|
|
3846
3852
|
[[package]]
|
|
3847
3853
|
name = "windows-core"
|
|
3848
|
-
version = "0.
|
|
3854
|
+
version = "0.61.2"
|
|
3849
3855
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3850
|
-
checksum = "
|
|
3856
|
+
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
3851
3857
|
dependencies = [
|
|
3852
3858
|
"windows-implement",
|
|
3853
3859
|
"windows-interface",
|
|
3860
|
+
"windows-link",
|
|
3854
3861
|
"windows-result",
|
|
3855
3862
|
"windows-strings",
|
|
3856
|
-
|
|
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",
|
|
3857
3874
|
]
|
|
3858
3875
|
|
|
3859
3876
|
[[package]]
|
|
3860
3877
|
name = "windows-implement"
|
|
3861
|
-
version = "0.
|
|
3878
|
+
version = "0.60.0"
|
|
3862
3879
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3863
|
-
checksum = "
|
|
3880
|
+
checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
|
|
3864
3881
|
dependencies = [
|
|
3865
3882
|
"proc-macro2",
|
|
3866
3883
|
"quote",
|
|
@@ -3869,9 +3886,9 @@ dependencies = [
|
|
|
3869
3886
|
|
|
3870
3887
|
[[package]]
|
|
3871
3888
|
name = "windows-interface"
|
|
3872
|
-
version = "0.
|
|
3889
|
+
version = "0.59.1"
|
|
3873
3890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3874
|
-
checksum = "
|
|
3891
|
+
checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
|
|
3875
3892
|
dependencies = [
|
|
3876
3893
|
"proc-macro2",
|
|
3877
3894
|
"quote",
|
|
@@ -3879,22 +3896,37 @@ dependencies = [
|
|
|
3879
3896
|
]
|
|
3880
3897
|
|
|
3881
3898
|
[[package]]
|
|
3882
|
-
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"
|
|
3883
3906
|
version = "0.2.0"
|
|
3884
3907
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3885
|
-
checksum = "
|
|
3908
|
+
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
3886
3909
|
dependencies = [
|
|
3887
|
-
"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",
|
|
3888
3921
|
]
|
|
3889
3922
|
|
|
3890
3923
|
[[package]]
|
|
3891
3924
|
name = "windows-strings"
|
|
3892
|
-
version = "0.
|
|
3925
|
+
version = "0.4.2"
|
|
3893
3926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3894
|
-
checksum = "
|
|
3927
|
+
checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
|
|
3895
3928
|
dependencies = [
|
|
3896
|
-
"windows-
|
|
3897
|
-
"windows-targets 0.52.6",
|
|
3929
|
+
"windows-link",
|
|
3898
3930
|
]
|
|
3899
3931
|
|
|
3900
3932
|
[[package]]
|
|
@@ -3995,6 +4027,15 @@ dependencies = [
|
|
|
3995
4027
|
"windows_x86_64_msvc 0.53.0",
|
|
3996
4028
|
]
|
|
3997
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
|
+
|
|
3998
4039
|
[[package]]
|
|
3999
4040
|
name = "windows_aarch64_gnullvm"
|
|
4000
4041
|
version = "0.42.2"
|
|
@@ -4229,9 +4270,9 @@ dependencies = [
|
|
|
4229
4270
|
|
|
4230
4271
|
[[package]]
|
|
4231
4272
|
name = "winnow"
|
|
4232
|
-
version = "0.7.
|
|
4273
|
+
version = "0.7.12"
|
|
4233
4274
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4234
|
-
checksum = "
|
|
4275
|
+
checksum = "f3edebf492c8125044983378ecb5766203ad3b4c2f7a922bd7dd207f6d443e95"
|
|
4235
4276
|
dependencies = [
|
|
4236
4277
|
"memchr",
|
|
4237
4278
|
]
|
|
@@ -4289,16 +4330,6 @@ version = "0.3.10"
|
|
|
4289
4330
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4290
4331
|
checksum = "bec9e4a500ca8864c5b47b8b482a73d62e4237670e5b5f1d6b9e3cae50f28f2b"
|
|
4291
4332
|
|
|
4292
|
-
[[package]]
|
|
4293
|
-
name = "xdg-home"
|
|
4294
|
-
version = "1.3.0"
|
|
4295
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4296
|
-
checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
|
|
4297
|
-
dependencies = [
|
|
4298
|
-
"libc",
|
|
4299
|
-
"windows-sys 0.59.0",
|
|
4300
|
-
]
|
|
4301
|
-
|
|
4302
4333
|
[[package]]
|
|
4303
4334
|
name = "xkbcommon-dl"
|
|
4304
4335
|
version = "0.4.2"
|
|
@@ -4320,15 +4351,9 @@ checksum = "b9cc00251562a284751c9973bace760d86c0276c471b4be569fe6b068ee97a56"
|
|
|
4320
4351
|
|
|
4321
4352
|
[[package]]
|
|
4322
4353
|
name = "xml-rs"
|
|
4323
|
-
version = "0.8.
|
|
4324
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4325
|
-
checksum = "a62ce76d9b56901b19a74f19431b0d8b3bc7ca4ad685a746dfd78ca8f4fc6bda"
|
|
4326
|
-
|
|
4327
|
-
[[package]]
|
|
4328
|
-
name = "xmlwriter"
|
|
4329
|
-
version = "0.1.0"
|
|
4354
|
+
version = "0.8.27"
|
|
4330
4355
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4331
|
-
checksum = "
|
|
4356
|
+
checksum = "6fd8403733700263c6eb89f192880191f1b83e332f7a20371ddcf421c4a337c7"
|
|
4332
4357
|
|
|
4333
4358
|
[[package]]
|
|
4334
4359
|
name = "yoke"
|
|
@@ -4356,13 +4381,12 @@ dependencies = [
|
|
|
4356
4381
|
|
|
4357
4382
|
[[package]]
|
|
4358
4383
|
name = "zbus"
|
|
4359
|
-
version = "
|
|
4384
|
+
version = "5.9.0"
|
|
4360
4385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4361
|
-
checksum = "
|
|
4386
|
+
checksum = "4bb4f9a464286d42851d18a605f7193b8febaf5b0919d71c6399b7b26e5b0aad"
|
|
4362
4387
|
dependencies = [
|
|
4363
4388
|
"async-broadcast",
|
|
4364
4389
|
"async-executor",
|
|
4365
|
-
"async-fs",
|
|
4366
4390
|
"async-io",
|
|
4367
4391
|
"async-lock",
|
|
4368
4392
|
"async-process",
|
|
@@ -4373,20 +4397,16 @@ dependencies = [
|
|
|
4373
4397
|
"enumflags2",
|
|
4374
4398
|
"event-listener",
|
|
4375
4399
|
"futures-core",
|
|
4376
|
-
"futures-
|
|
4377
|
-
"futures-util",
|
|
4400
|
+
"futures-lite",
|
|
4378
4401
|
"hex",
|
|
4379
4402
|
"nix",
|
|
4380
4403
|
"ordered-stream",
|
|
4381
|
-
"rand 0.8.5",
|
|
4382
4404
|
"serde",
|
|
4383
4405
|
"serde_repr",
|
|
4384
|
-
"sha1",
|
|
4385
|
-
"static_assertions",
|
|
4386
4406
|
"tracing",
|
|
4387
4407
|
"uds_windows",
|
|
4388
|
-
"windows-sys 0.
|
|
4389
|
-
"
|
|
4408
|
+
"windows-sys 0.59.0",
|
|
4409
|
+
"winnow",
|
|
4390
4410
|
"zbus_macros",
|
|
4391
4411
|
"zbus_names",
|
|
4392
4412
|
"zvariant",
|
|
@@ -4394,9 +4414,9 @@ dependencies = [
|
|
|
4394
4414
|
|
|
4395
4415
|
[[package]]
|
|
4396
4416
|
name = "zbus-lockstep"
|
|
4397
|
-
version = "0.
|
|
4417
|
+
version = "0.5.1"
|
|
4398
4418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4399
|
-
checksum = "
|
|
4419
|
+
checksum = "29e96e38ded30eeab90b6ba88cb888d70aef4e7489b6cd212c5e5b5ec38045b6"
|
|
4400
4420
|
dependencies = [
|
|
4401
4421
|
"zbus_xml",
|
|
4402
4422
|
"zvariant",
|
|
@@ -4404,9 +4424,9 @@ dependencies = [
|
|
|
4404
4424
|
|
|
4405
4425
|
[[package]]
|
|
4406
4426
|
name = "zbus-lockstep-macros"
|
|
4407
|
-
version = "0.
|
|
4427
|
+
version = "0.5.1"
|
|
4408
4428
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4409
|
-
checksum = "
|
|
4429
|
+
checksum = "dc6821851fa840b708b4cbbaf6241868cabc85a2dc22f426361b0292bfc0b836"
|
|
4410
4430
|
dependencies = [
|
|
4411
4431
|
"proc-macro2",
|
|
4412
4432
|
"quote",
|
|
@@ -4418,35 +4438,38 @@ dependencies = [
|
|
|
4418
4438
|
|
|
4419
4439
|
[[package]]
|
|
4420
4440
|
name = "zbus_macros"
|
|
4421
|
-
version = "
|
|
4441
|
+
version = "5.9.0"
|
|
4422
4442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4423
|
-
checksum = "
|
|
4443
|
+
checksum = "ef9859f68ee0c4ee2e8cde84737c78e3f4c54f946f2a38645d0d4c7a95327659"
|
|
4424
4444
|
dependencies = [
|
|
4425
4445
|
"proc-macro-crate",
|
|
4426
4446
|
"proc-macro2",
|
|
4427
4447
|
"quote",
|
|
4428
4448
|
"syn",
|
|
4449
|
+
"zbus_names",
|
|
4450
|
+
"zvariant",
|
|
4429
4451
|
"zvariant_utils",
|
|
4430
4452
|
]
|
|
4431
4453
|
|
|
4432
4454
|
[[package]]
|
|
4433
4455
|
name = "zbus_names"
|
|
4434
|
-
version = "
|
|
4456
|
+
version = "4.2.0"
|
|
4435
4457
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4436
|
-
checksum = "
|
|
4458
|
+
checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
|
|
4437
4459
|
dependencies = [
|
|
4438
4460
|
"serde",
|
|
4439
4461
|
"static_assertions",
|
|
4462
|
+
"winnow",
|
|
4440
4463
|
"zvariant",
|
|
4441
4464
|
]
|
|
4442
4465
|
|
|
4443
4466
|
[[package]]
|
|
4444
4467
|
name = "zbus_xml"
|
|
4445
|
-
version = "
|
|
4468
|
+
version = "5.0.2"
|
|
4446
4469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4447
|
-
checksum = "
|
|
4470
|
+
checksum = "589e9a02bfafb9754bb2340a9e3b38f389772684c63d9637e76b1870377bec29"
|
|
4448
4471
|
dependencies = [
|
|
4449
|
-
"quick-xml 0.
|
|
4472
|
+
"quick-xml 0.36.2",
|
|
4450
4473
|
"serde",
|
|
4451
4474
|
"static_assertions",
|
|
4452
4475
|
"zbus_names",
|
|
@@ -4527,24 +4550,49 @@ dependencies = [
|
|
|
4527
4550
|
"syn",
|
|
4528
4551
|
]
|
|
4529
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
|
+
|
|
4530
4577
|
[[package]]
|
|
4531
4578
|
name = "zvariant"
|
|
4532
|
-
version = "
|
|
4579
|
+
version = "5.6.0"
|
|
4533
4580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4534
|
-
checksum = "
|
|
4581
|
+
checksum = "d91b3680bb339216abd84714172b5138a4edac677e641ef17e1d8cb1b3ca6e6f"
|
|
4535
4582
|
dependencies = [
|
|
4536
4583
|
"endi",
|
|
4537
4584
|
"enumflags2",
|
|
4538
4585
|
"serde",
|
|
4539
|
-
"
|
|
4586
|
+
"winnow",
|
|
4540
4587
|
"zvariant_derive",
|
|
4588
|
+
"zvariant_utils",
|
|
4541
4589
|
]
|
|
4542
4590
|
|
|
4543
4591
|
[[package]]
|
|
4544
4592
|
name = "zvariant_derive"
|
|
4545
|
-
version = "
|
|
4593
|
+
version = "5.6.0"
|
|
4546
4594
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4547
|
-
checksum = "
|
|
4595
|
+
checksum = "3a8c68501be459a8dbfffbe5d792acdd23b4959940fc87785fb013b32edbc208"
|
|
4548
4596
|
dependencies = [
|
|
4549
4597
|
"proc-macro-crate",
|
|
4550
4598
|
"proc-macro2",
|
|
@@ -4555,11 +4603,14 @@ dependencies = [
|
|
|
4555
4603
|
|
|
4556
4604
|
[[package]]
|
|
4557
4605
|
name = "zvariant_utils"
|
|
4558
|
-
version = "2.
|
|
4606
|
+
version = "3.2.0"
|
|
4559
4607
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4560
|
-
checksum = "
|
|
4608
|
+
checksum = "e16edfee43e5d7b553b77872d99bc36afdda75c223ca7ad5e3fbecd82ca5fc34"
|
|
4561
4609
|
dependencies = [
|
|
4562
4610
|
"proc-macro2",
|
|
4563
4611
|
"quote",
|
|
4612
|
+
"serde",
|
|
4613
|
+
"static_assertions",
|
|
4564
4614
|
"syn",
|
|
4615
|
+
"winnow",
|
|
4565
4616
|
]
|