cosmol-viewer 0.2.0.dev2__tar.gz → 0.2.0.dev3__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.
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/Cargo.lock +111 -1185
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/Cargo.toml +8 -9
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/PKG-INFO +21 -16
- {cosmol_viewer-0.2.0.dev2/crates/python → cosmol_viewer-0.2.0.dev3}/README.md +20 -16
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/Cargo.toml +5 -5
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shapes/molecules.rs +2 -2
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3/crates/python}/README.md +20 -16
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/python/src/lib.rs +52 -6
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/wasm/Cargo.toml +11 -9
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/wasm/src/lib.rs +81 -54
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/pyproject.toml +1 -1
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/lib.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/parser/dssp.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/parser/mmcif.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/parser/mod.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/parser/sdf.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/parser/utils.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/scene.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/bg_fragment.glsl +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/bg_vertex.glsl +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/canvas.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/fragment.glsl +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/mod.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/vertex.glsl +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/vertex_sphere.glsl +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shader/vertex_stick.glsl +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shapes/mod.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shapes/protein.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shapes/sphere.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/shapes/stick.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/core/src/utils.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/python/Cargo.toml +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/python/src/bin/stub_gen.rs +0 -0
- {cosmol_viewer-0.2.0.dev2 → cosmol_viewer-0.2.0.dev3}/crates/python/src/shapes.rs +0 -0
|
@@ -18,96 +18,6 @@ version = "0.1.10"
|
|
|
18
18
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
19
|
checksum = "366ffbaa4442f4684d91e2cd7c5ea7c4ed8add41959a31447066e279e432b618"
|
|
20
20
|
|
|
21
|
-
[[package]]
|
|
22
|
-
name = "accesskit"
|
|
23
|
-
version = "0.21.1"
|
|
24
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
25
|
-
checksum = "cf203f9d3bd8f29f98833d1fbef628df18f759248a547e7e01cfbf63cda36a99"
|
|
26
|
-
|
|
27
|
-
[[package]]
|
|
28
|
-
name = "accesskit_atspi_common"
|
|
29
|
-
version = "0.14.2"
|
|
30
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
31
|
-
checksum = "890d241cf51fc784f0ac5ac34dfc847421f8d39da6c7c91a0fcc987db62a8267"
|
|
32
|
-
dependencies = [
|
|
33
|
-
"accesskit",
|
|
34
|
-
"accesskit_consumer",
|
|
35
|
-
"atspi-common",
|
|
36
|
-
"serde",
|
|
37
|
-
"thiserror 1.0.69",
|
|
38
|
-
"zvariant",
|
|
39
|
-
]
|
|
40
|
-
|
|
41
|
-
[[package]]
|
|
42
|
-
name = "accesskit_consumer"
|
|
43
|
-
version = "0.31.0"
|
|
44
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "db81010a6895d8707f9072e6ce98070579b43b717193d2614014abd5cb17dd43"
|
|
46
|
-
dependencies = [
|
|
47
|
-
"accesskit",
|
|
48
|
-
"hashbrown 0.15.5",
|
|
49
|
-
]
|
|
50
|
-
|
|
51
|
-
[[package]]
|
|
52
|
-
name = "accesskit_macos"
|
|
53
|
-
version = "0.22.2"
|
|
54
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
55
|
-
checksum = "a0089e5c0ac0ca281e13ea374773898d9354cc28d15af9f0f7394d44a495b575"
|
|
56
|
-
dependencies = [
|
|
57
|
-
"accesskit",
|
|
58
|
-
"accesskit_consumer",
|
|
59
|
-
"hashbrown 0.15.5",
|
|
60
|
-
"objc2 0.5.2",
|
|
61
|
-
"objc2-app-kit 0.2.2",
|
|
62
|
-
"objc2-foundation 0.2.2",
|
|
63
|
-
]
|
|
64
|
-
|
|
65
|
-
[[package]]
|
|
66
|
-
name = "accesskit_unix"
|
|
67
|
-
version = "0.17.2"
|
|
68
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "301e55b39cfc15d9c48943ce5f572204a551646700d0e8efa424585f94fec528"
|
|
70
|
-
dependencies = [
|
|
71
|
-
"accesskit",
|
|
72
|
-
"accesskit_atspi_common",
|
|
73
|
-
"async-channel",
|
|
74
|
-
"async-executor",
|
|
75
|
-
"async-task",
|
|
76
|
-
"atspi",
|
|
77
|
-
"futures-lite",
|
|
78
|
-
"futures-util",
|
|
79
|
-
"serde",
|
|
80
|
-
"zbus",
|
|
81
|
-
]
|
|
82
|
-
|
|
83
|
-
[[package]]
|
|
84
|
-
name = "accesskit_windows"
|
|
85
|
-
version = "0.29.2"
|
|
86
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
87
|
-
checksum = "d2d63dd5041e49c363d83f5419a896ecb074d309c414036f616dc0b04faca971"
|
|
88
|
-
dependencies = [
|
|
89
|
-
"accesskit",
|
|
90
|
-
"accesskit_consumer",
|
|
91
|
-
"hashbrown 0.15.5",
|
|
92
|
-
"static_assertions",
|
|
93
|
-
"windows 0.61.3",
|
|
94
|
-
"windows-core 0.61.2",
|
|
95
|
-
]
|
|
96
|
-
|
|
97
|
-
[[package]]
|
|
98
|
-
name = "accesskit_winit"
|
|
99
|
-
version = "0.29.2"
|
|
100
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
101
|
-
checksum = "c8cfabe59d0eaca7412bfb1f70198dd31e3b0496fee7e15b066f9c36a1a140a0"
|
|
102
|
-
dependencies = [
|
|
103
|
-
"accesskit",
|
|
104
|
-
"accesskit_macos",
|
|
105
|
-
"accesskit_unix",
|
|
106
|
-
"accesskit_windows",
|
|
107
|
-
"raw-window-handle",
|
|
108
|
-
"winit",
|
|
109
|
-
]
|
|
110
|
-
|
|
111
21
|
[[package]]
|
|
112
22
|
name = "adler2"
|
|
113
23
|
version = "2.0.1"
|
|
@@ -239,12 +149,6 @@ version = "2.1.0"
|
|
|
239
149
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
150
|
checksum = "3d62b7694a562cdf5a74227903507c56ab2cc8bdd1f781ed5cb4cf9c9f810bfc"
|
|
241
151
|
|
|
242
|
-
[[package]]
|
|
243
|
-
name = "arrayref"
|
|
244
|
-
version = "0.3.9"
|
|
245
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
-
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
247
|
-
|
|
248
152
|
[[package]]
|
|
249
153
|
name = "arrayvec"
|
|
250
154
|
version = "0.7.6"
|
|
@@ -266,146 +170,6 @@ dependencies = [
|
|
|
266
170
|
"stable_deref_trait",
|
|
267
171
|
]
|
|
268
172
|
|
|
269
|
-
[[package]]
|
|
270
|
-
name = "ash"
|
|
271
|
-
version = "0.38.0+1.3.281"
|
|
272
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
273
|
-
checksum = "0bb44936d800fea8f016d7f2311c6a4f97aebd5dc86f09906139ec848cf3a46f"
|
|
274
|
-
dependencies = [
|
|
275
|
-
"libloading",
|
|
276
|
-
]
|
|
277
|
-
|
|
278
|
-
[[package]]
|
|
279
|
-
name = "async-broadcast"
|
|
280
|
-
version = "0.7.2"
|
|
281
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
-
checksum = "435a87a52755b8f27fcf321ac4f04b2802e337c8c4872923137471ec39c37532"
|
|
283
|
-
dependencies = [
|
|
284
|
-
"event-listener",
|
|
285
|
-
"event-listener-strategy",
|
|
286
|
-
"futures-core",
|
|
287
|
-
"pin-project-lite",
|
|
288
|
-
]
|
|
289
|
-
|
|
290
|
-
[[package]]
|
|
291
|
-
name = "async-channel"
|
|
292
|
-
version = "2.5.0"
|
|
293
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
-
checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
|
|
295
|
-
dependencies = [
|
|
296
|
-
"concurrent-queue",
|
|
297
|
-
"event-listener-strategy",
|
|
298
|
-
"futures-core",
|
|
299
|
-
"pin-project-lite",
|
|
300
|
-
]
|
|
301
|
-
|
|
302
|
-
[[package]]
|
|
303
|
-
name = "async-executor"
|
|
304
|
-
version = "1.13.3"
|
|
305
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
306
|
-
checksum = "497c00e0fd83a72a79a39fcbd8e3e2f055d6f6c7e025f3b3d91f4f8e76527fb8"
|
|
307
|
-
dependencies = [
|
|
308
|
-
"async-task",
|
|
309
|
-
"concurrent-queue",
|
|
310
|
-
"fastrand",
|
|
311
|
-
"futures-lite",
|
|
312
|
-
"pin-project-lite",
|
|
313
|
-
"slab",
|
|
314
|
-
]
|
|
315
|
-
|
|
316
|
-
[[package]]
|
|
317
|
-
name = "async-io"
|
|
318
|
-
version = "2.6.0"
|
|
319
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
320
|
-
checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
|
|
321
|
-
dependencies = [
|
|
322
|
-
"autocfg",
|
|
323
|
-
"cfg-if",
|
|
324
|
-
"concurrent-queue",
|
|
325
|
-
"futures-io",
|
|
326
|
-
"futures-lite",
|
|
327
|
-
"parking",
|
|
328
|
-
"polling",
|
|
329
|
-
"rustix 1.1.3",
|
|
330
|
-
"slab",
|
|
331
|
-
"windows-sys 0.61.2",
|
|
332
|
-
]
|
|
333
|
-
|
|
334
|
-
[[package]]
|
|
335
|
-
name = "async-lock"
|
|
336
|
-
version = "3.4.2"
|
|
337
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
|
|
339
|
-
dependencies = [
|
|
340
|
-
"event-listener",
|
|
341
|
-
"event-listener-strategy",
|
|
342
|
-
"pin-project-lite",
|
|
343
|
-
]
|
|
344
|
-
|
|
345
|
-
[[package]]
|
|
346
|
-
name = "async-process"
|
|
347
|
-
version = "2.5.0"
|
|
348
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
-
checksum = "fc50921ec0055cdd8a16de48773bfeec5c972598674347252c0399676be7da75"
|
|
350
|
-
dependencies = [
|
|
351
|
-
"async-channel",
|
|
352
|
-
"async-io",
|
|
353
|
-
"async-lock",
|
|
354
|
-
"async-signal",
|
|
355
|
-
"async-task",
|
|
356
|
-
"blocking",
|
|
357
|
-
"cfg-if",
|
|
358
|
-
"event-listener",
|
|
359
|
-
"futures-lite",
|
|
360
|
-
"rustix 1.1.3",
|
|
361
|
-
]
|
|
362
|
-
|
|
363
|
-
[[package]]
|
|
364
|
-
name = "async-recursion"
|
|
365
|
-
version = "1.1.1"
|
|
366
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
367
|
-
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
|
|
368
|
-
dependencies = [
|
|
369
|
-
"proc-macro2",
|
|
370
|
-
"quote",
|
|
371
|
-
"syn",
|
|
372
|
-
]
|
|
373
|
-
|
|
374
|
-
[[package]]
|
|
375
|
-
name = "async-signal"
|
|
376
|
-
version = "0.2.13"
|
|
377
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
-
checksum = "43c070bbf59cd3570b6b2dd54cd772527c7c3620fce8be898406dd3ed6adc64c"
|
|
379
|
-
dependencies = [
|
|
380
|
-
"async-io",
|
|
381
|
-
"async-lock",
|
|
382
|
-
"atomic-waker",
|
|
383
|
-
"cfg-if",
|
|
384
|
-
"futures-core",
|
|
385
|
-
"futures-io",
|
|
386
|
-
"rustix 1.1.3",
|
|
387
|
-
"signal-hook-registry",
|
|
388
|
-
"slab",
|
|
389
|
-
"windows-sys 0.61.2",
|
|
390
|
-
]
|
|
391
|
-
|
|
392
|
-
[[package]]
|
|
393
|
-
name = "async-task"
|
|
394
|
-
version = "4.7.1"
|
|
395
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
|
|
397
|
-
|
|
398
|
-
[[package]]
|
|
399
|
-
name = "async-trait"
|
|
400
|
-
version = "0.1.89"
|
|
401
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
-
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
403
|
-
dependencies = [
|
|
404
|
-
"proc-macro2",
|
|
405
|
-
"quote",
|
|
406
|
-
"syn",
|
|
407
|
-
]
|
|
408
|
-
|
|
409
173
|
[[package]]
|
|
410
174
|
name = "atomic-polyfill"
|
|
411
175
|
version = "1.0.3"
|
|
@@ -421,56 +185,6 @@ version = "1.1.2"
|
|
|
421
185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
186
|
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
423
187
|
|
|
424
|
-
[[package]]
|
|
425
|
-
name = "atspi"
|
|
426
|
-
version = "0.25.0"
|
|
427
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
-
checksum = "c83247582e7508838caf5f316c00791eee0e15c0bf743e6880585b867e16815c"
|
|
429
|
-
dependencies = [
|
|
430
|
-
"atspi-common",
|
|
431
|
-
"atspi-connection",
|
|
432
|
-
"atspi-proxies",
|
|
433
|
-
]
|
|
434
|
-
|
|
435
|
-
[[package]]
|
|
436
|
-
name = "atspi-common"
|
|
437
|
-
version = "0.9.0"
|
|
438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "33dfc05e7cdf90988a197803bf24f5788f94f7c94a69efa95683e8ffe76cfdfb"
|
|
440
|
-
dependencies = [
|
|
441
|
-
"enumflags2",
|
|
442
|
-
"serde",
|
|
443
|
-
"static_assertions",
|
|
444
|
-
"zbus",
|
|
445
|
-
"zbus-lockstep",
|
|
446
|
-
"zbus-lockstep-macros",
|
|
447
|
-
"zbus_names",
|
|
448
|
-
"zvariant",
|
|
449
|
-
]
|
|
450
|
-
|
|
451
|
-
[[package]]
|
|
452
|
-
name = "atspi-connection"
|
|
453
|
-
version = "0.9.0"
|
|
454
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
-
checksum = "4193d51303d8332304056ae0004714256b46b6635a5c556109b319c0d3784938"
|
|
456
|
-
dependencies = [
|
|
457
|
-
"atspi-common",
|
|
458
|
-
"atspi-proxies",
|
|
459
|
-
"futures-lite",
|
|
460
|
-
"zbus",
|
|
461
|
-
]
|
|
462
|
-
|
|
463
|
-
[[package]]
|
|
464
|
-
name = "atspi-proxies"
|
|
465
|
-
version = "0.9.0"
|
|
466
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
-
checksum = "d2eebcb9e7e76f26d0bcfd6f0295e1cd1e6f33bedbc5698a971db8dc43d7751c"
|
|
468
|
-
dependencies = [
|
|
469
|
-
"atspi-common",
|
|
470
|
-
"serde",
|
|
471
|
-
"zbus",
|
|
472
|
-
]
|
|
473
|
-
|
|
474
188
|
[[package]]
|
|
475
189
|
name = "autocfg"
|
|
476
190
|
version = "1.5.0"
|
|
@@ -492,7 +206,7 @@ dependencies = [
|
|
|
492
206
|
"num-traits",
|
|
493
207
|
"pastey",
|
|
494
208
|
"rayon",
|
|
495
|
-
"thiserror 2.0.
|
|
209
|
+
"thiserror 2.0.18",
|
|
496
210
|
"v_frame",
|
|
497
211
|
"y4m",
|
|
498
212
|
]
|
|
@@ -594,12 +308,6 @@ dependencies = [
|
|
|
594
308
|
"core2",
|
|
595
309
|
]
|
|
596
310
|
|
|
597
|
-
[[package]]
|
|
598
|
-
name = "block"
|
|
599
|
-
version = "0.1.6"
|
|
600
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
-
checksum = "0d8c1fef690941d3e7788d328517591fecc684c084084702d6ff1641e993699a"
|
|
602
|
-
|
|
603
311
|
[[package]]
|
|
604
312
|
name = "block2"
|
|
605
313
|
version = "0.5.1"
|
|
@@ -609,19 +317,6 @@ dependencies = [
|
|
|
609
317
|
"objc2 0.5.2",
|
|
610
318
|
]
|
|
611
319
|
|
|
612
|
-
[[package]]
|
|
613
|
-
name = "blocking"
|
|
614
|
-
version = "1.6.2"
|
|
615
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
616
|
-
checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
|
|
617
|
-
dependencies = [
|
|
618
|
-
"async-channel",
|
|
619
|
-
"async-task",
|
|
620
|
-
"futures-io",
|
|
621
|
-
"futures-lite",
|
|
622
|
-
"piper",
|
|
623
|
-
]
|
|
624
|
-
|
|
625
320
|
[[package]]
|
|
626
321
|
name = "built"
|
|
627
322
|
version = "0.8.0"
|
|
@@ -725,9 +420,9 @@ dependencies = [
|
|
|
725
420
|
|
|
726
421
|
[[package]]
|
|
727
422
|
name = "cc"
|
|
728
|
-
version = "1.2.
|
|
423
|
+
version = "1.2.53"
|
|
729
424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
730
|
-
checksum = "
|
|
425
|
+
checksum = "755d2fce177175ffca841e9a06afdb2c4ab0f593d53b4dee48147dfaade85932"
|
|
731
426
|
dependencies = [
|
|
732
427
|
"find-msvc-tools",
|
|
733
428
|
"jobserver",
|
|
@@ -772,7 +467,7 @@ dependencies = [
|
|
|
772
467
|
"js-sys",
|
|
773
468
|
"num-traits",
|
|
774
469
|
"wasm-bindgen",
|
|
775
|
-
"windows-link
|
|
470
|
+
"windows-link",
|
|
776
471
|
]
|
|
777
472
|
|
|
778
473
|
[[package]]
|
|
@@ -786,9 +481,9 @@ dependencies = [
|
|
|
786
481
|
|
|
787
482
|
[[package]]
|
|
788
483
|
name = "cmov"
|
|
789
|
-
version = "0.4.
|
|
484
|
+
version = "0.4.6"
|
|
790
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
-
checksum = "
|
|
486
|
+
checksum = "6d5ce5728ecb5285a5dd35f02a6a8e34e0828e0b38e8e632e249a3fe3f320211"
|
|
792
487
|
|
|
793
488
|
[[package]]
|
|
794
489
|
name = "cobs"
|
|
@@ -796,7 +491,7 @@ version = "0.3.0"
|
|
|
796
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
492
|
checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
|
|
798
493
|
dependencies = [
|
|
799
|
-
"thiserror 2.0.
|
|
494
|
+
"thiserror 2.0.18",
|
|
800
495
|
]
|
|
801
496
|
|
|
802
497
|
[[package]]
|
|
@@ -805,8 +500,6 @@ version = "0.12.0"
|
|
|
805
500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
501
|
checksum = "fe6d2e5af09e8c8ad56c969f2157a3d4238cebc7c55f0a517728c38f7b200f81"
|
|
807
502
|
dependencies = [
|
|
808
|
-
"serde",
|
|
809
|
-
"termcolor",
|
|
810
503
|
"unicode-width",
|
|
811
504
|
]
|
|
812
505
|
|
|
@@ -869,7 +562,7 @@ checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
|
|
|
869
562
|
dependencies = [
|
|
870
563
|
"bitflags 1.3.2",
|
|
871
564
|
"core-foundation 0.9.4",
|
|
872
|
-
"core-graphics-types
|
|
565
|
+
"core-graphics-types",
|
|
873
566
|
"foreign-types",
|
|
874
567
|
"libc",
|
|
875
568
|
]
|
|
@@ -885,17 +578,6 @@ dependencies = [
|
|
|
885
578
|
"libc",
|
|
886
579
|
]
|
|
887
580
|
|
|
888
|
-
[[package]]
|
|
889
|
-
name = "core-graphics-types"
|
|
890
|
-
version = "0.2.0"
|
|
891
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb"
|
|
893
|
-
dependencies = [
|
|
894
|
-
"bitflags 2.10.0",
|
|
895
|
-
"core-foundation 0.10.1",
|
|
896
|
-
"libc",
|
|
897
|
-
]
|
|
898
|
-
|
|
899
581
|
[[package]]
|
|
900
582
|
name = "core2"
|
|
901
583
|
version = "0.4.0"
|
|
@@ -907,14 +589,14 @@ dependencies = [
|
|
|
907
589
|
|
|
908
590
|
[[package]]
|
|
909
591
|
name = "cosmol_viewer"
|
|
910
|
-
version = "0.2.0-nightly.
|
|
592
|
+
version = "0.2.0-nightly.3"
|
|
911
593
|
dependencies = [
|
|
912
594
|
"cosmol_viewer_core",
|
|
913
595
|
]
|
|
914
596
|
|
|
915
597
|
[[package]]
|
|
916
598
|
name = "cosmol_viewer_core"
|
|
917
|
-
version = "0.2.0-nightly.
|
|
599
|
+
version = "0.2.0-nightly.3"
|
|
918
600
|
dependencies = [
|
|
919
601
|
"base64",
|
|
920
602
|
"bytemuck",
|
|
@@ -930,7 +612,7 @@ dependencies = [
|
|
|
930
612
|
"serde",
|
|
931
613
|
"serde_json",
|
|
932
614
|
"serde_repr",
|
|
933
|
-
"thiserror 2.0.
|
|
615
|
+
"thiserror 2.0.18",
|
|
934
616
|
"wide",
|
|
935
617
|
]
|
|
936
618
|
|
|
@@ -950,7 +632,7 @@ dependencies = [
|
|
|
950
632
|
|
|
951
633
|
[[package]]
|
|
952
634
|
name = "cosmol_viewer_wasm"
|
|
953
|
-
version = "0.2.0-nightly.
|
|
635
|
+
version = "0.2.0-nightly.3"
|
|
954
636
|
dependencies = [
|
|
955
637
|
"base64",
|
|
956
638
|
"cosmol_viewer_core",
|
|
@@ -962,6 +644,7 @@ dependencies = [
|
|
|
962
644
|
"pyo3",
|
|
963
645
|
"serde",
|
|
964
646
|
"serde_json",
|
|
647
|
+
"thiserror 2.0.18",
|
|
965
648
|
"uuid",
|
|
966
649
|
"wasm-bindgen",
|
|
967
650
|
"wasm-bindgen-futures",
|
|
@@ -1134,7 +817,6 @@ version = "0.33.3"
|
|
|
1134
817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
818
|
checksum = "6a9b567d356674e9a5121ed3fedfb0a7c31e059fe71f6972b691bcd0bfc284e3"
|
|
1136
819
|
dependencies = [
|
|
1137
|
-
"accesskit",
|
|
1138
820
|
"ahash",
|
|
1139
821
|
"bitflags 2.10.0",
|
|
1140
822
|
"emath",
|
|
@@ -1159,7 +841,7 @@ dependencies = [
|
|
|
1159
841
|
"epaint",
|
|
1160
842
|
"log",
|
|
1161
843
|
"profiling",
|
|
1162
|
-
"thiserror 2.0.
|
|
844
|
+
"thiserror 2.0.18",
|
|
1163
845
|
"type-map",
|
|
1164
846
|
"web-time",
|
|
1165
847
|
"wgpu",
|
|
@@ -1172,7 +854,6 @@ version = "0.33.3"
|
|
|
1172
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
855
|
checksum = "ec6687e5bb551702f4ad10ac428bab12acf9d53047ebb1082d4a0ed8c6251a29"
|
|
1174
856
|
dependencies = [
|
|
1175
|
-
"accesskit_winit",
|
|
1176
857
|
"arboard",
|
|
1177
858
|
"bytemuck",
|
|
1178
859
|
"egui",
|
|
@@ -1198,7 +879,6 @@ dependencies = [
|
|
|
1198
879
|
"egui",
|
|
1199
880
|
"enum-map",
|
|
1200
881
|
"log",
|
|
1201
|
-
"mime_guess2",
|
|
1202
882
|
"profiling",
|
|
1203
883
|
]
|
|
1204
884
|
|
|
@@ -1246,12 +926,6 @@ version = "0.6.1"
|
|
|
1246
926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1247
927
|
checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
|
|
1248
928
|
|
|
1249
|
-
[[package]]
|
|
1250
|
-
name = "endi"
|
|
1251
|
-
version = "1.1.1"
|
|
1252
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1253
|
-
checksum = "66b7e2430c6dff6a955451e2cfc438f09cea1965a9d6f87f7e3b90decc014099"
|
|
1254
|
-
|
|
1255
929
|
[[package]]
|
|
1256
930
|
name = "enum-map"
|
|
1257
931
|
version = "2.7.3"
|
|
@@ -1272,27 +946,6 @@ dependencies = [
|
|
|
1272
946
|
"syn",
|
|
1273
947
|
]
|
|
1274
948
|
|
|
1275
|
-
[[package]]
|
|
1276
|
-
name = "enumflags2"
|
|
1277
|
-
version = "0.7.12"
|
|
1278
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1279
|
-
checksum = "1027f7680c853e056ebcec683615fb6fbbc07dbaa13b4d5d9442b146ded4ecef"
|
|
1280
|
-
dependencies = [
|
|
1281
|
-
"enumflags2_derive",
|
|
1282
|
-
"serde",
|
|
1283
|
-
]
|
|
1284
|
-
|
|
1285
|
-
[[package]]
|
|
1286
|
-
name = "enumflags2_derive"
|
|
1287
|
-
version = "0.7.12"
|
|
1288
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "67c78a4d8fdf9953a5c9d458f9efe940fd97a0cab0941c075a813ac594733827"
|
|
1290
|
-
dependencies = [
|
|
1291
|
-
"proc-macro2",
|
|
1292
|
-
"quote",
|
|
1293
|
-
"syn",
|
|
1294
|
-
]
|
|
1295
|
-
|
|
1296
949
|
[[package]]
|
|
1297
950
|
name = "epaint"
|
|
1298
951
|
version = "0.33.3"
|
|
@@ -1304,19 +957,12 @@ dependencies = [
|
|
|
1304
957
|
"bytemuck",
|
|
1305
958
|
"ecolor",
|
|
1306
959
|
"emath",
|
|
1307
|
-
"epaint_default_fonts",
|
|
1308
960
|
"log",
|
|
1309
961
|
"nohash-hasher",
|
|
1310
962
|
"parking_lot",
|
|
1311
963
|
"profiling",
|
|
1312
964
|
]
|
|
1313
965
|
|
|
1314
|
-
[[package]]
|
|
1315
|
-
name = "epaint_default_fonts"
|
|
1316
|
-
version = "0.33.3"
|
|
1317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1318
|
-
checksum = "5c4fbe202b6578d3d56428fa185cdf114a05e49da05f477b3c7f0fbb221f1862"
|
|
1319
|
-
|
|
1320
966
|
[[package]]
|
|
1321
967
|
name = "equator"
|
|
1322
968
|
version = "0.4.2"
|
|
@@ -1359,27 +1005,6 @@ version = "3.3.2"
|
|
|
1359
1005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1360
1006
|
checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
|
|
1361
1007
|
|
|
1362
|
-
[[package]]
|
|
1363
|
-
name = "event-listener"
|
|
1364
|
-
version = "5.4.1"
|
|
1365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
-
checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
|
|
1367
|
-
dependencies = [
|
|
1368
|
-
"concurrent-queue",
|
|
1369
|
-
"parking",
|
|
1370
|
-
"pin-project-lite",
|
|
1371
|
-
]
|
|
1372
|
-
|
|
1373
|
-
[[package]]
|
|
1374
|
-
name = "event-listener-strategy"
|
|
1375
|
-
version = "0.5.4"
|
|
1376
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1377
|
-
checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
|
|
1378
|
-
dependencies = [
|
|
1379
|
-
"event-listener",
|
|
1380
|
-
"pin-project-lite",
|
|
1381
|
-
]
|
|
1382
|
-
|
|
1383
1008
|
[[package]]
|
|
1384
1009
|
name = "exr"
|
|
1385
1010
|
version = "1.74.0"
|
|
@@ -1395,12 +1020,6 @@ dependencies = [
|
|
|
1395
1020
|
"zune-inflate",
|
|
1396
1021
|
]
|
|
1397
1022
|
|
|
1398
|
-
[[package]]
|
|
1399
|
-
name = "fastrand"
|
|
1400
|
-
version = "2.3.0"
|
|
1401
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1402
|
-
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
1403
|
-
|
|
1404
1023
|
[[package]]
|
|
1405
1024
|
name = "fax"
|
|
1406
1025
|
version = "0.2.6"
|
|
@@ -1432,9 +1051,9 @@ dependencies = [
|
|
|
1432
1051
|
|
|
1433
1052
|
[[package]]
|
|
1434
1053
|
name = "find-msvc-tools"
|
|
1435
|
-
version = "0.1.
|
|
1054
|
+
version = "0.1.8"
|
|
1436
1055
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1437
|
-
checksum = "
|
|
1056
|
+
checksum = "8591b0bcc8a98a64310a2fae1bb3e9b8564dd10e381e6e28010fde8e8e8568db"
|
|
1438
1057
|
|
|
1439
1058
|
[[package]]
|
|
1440
1059
|
name = "fixed"
|
|
@@ -1451,20 +1070,14 @@ dependencies = [
|
|
|
1451
1070
|
|
|
1452
1071
|
[[package]]
|
|
1453
1072
|
name = "flate2"
|
|
1454
|
-
version = "1.1.
|
|
1073
|
+
version = "1.1.8"
|
|
1455
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
-
checksum = "
|
|
1075
|
+
checksum = "b375d6465b98090a5f25b1c7703f3859783755aa9a80433b36e0379a3ec2f369"
|
|
1457
1076
|
dependencies = [
|
|
1458
1077
|
"crc32fast",
|
|
1459
1078
|
"miniz_oxide",
|
|
1460
1079
|
]
|
|
1461
1080
|
|
|
1462
|
-
[[package]]
|
|
1463
|
-
name = "foldhash"
|
|
1464
|
-
version = "0.1.5"
|
|
1465
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1466
|
-
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
1467
|
-
|
|
1468
1081
|
[[package]]
|
|
1469
1082
|
name = "foldhash"
|
|
1470
1083
|
version = "0.2.0"
|
|
@@ -1522,36 +1135,6 @@ version = "0.3.31"
|
|
|
1522
1135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1523
1136
|
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
|
|
1524
1137
|
|
|
1525
|
-
[[package]]
|
|
1526
|
-
name = "futures-io"
|
|
1527
|
-
version = "0.3.31"
|
|
1528
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1529
|
-
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
|
|
1530
|
-
|
|
1531
|
-
[[package]]
|
|
1532
|
-
name = "futures-lite"
|
|
1533
|
-
version = "2.6.1"
|
|
1534
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
-
checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
|
|
1536
|
-
dependencies = [
|
|
1537
|
-
"fastrand",
|
|
1538
|
-
"futures-core",
|
|
1539
|
-
"futures-io",
|
|
1540
|
-
"parking",
|
|
1541
|
-
"pin-project-lite",
|
|
1542
|
-
]
|
|
1543
|
-
|
|
1544
|
-
[[package]]
|
|
1545
|
-
name = "futures-macro"
|
|
1546
|
-
version = "0.3.31"
|
|
1547
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
-
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
|
|
1549
|
-
dependencies = [
|
|
1550
|
-
"proc-macro2",
|
|
1551
|
-
"quote",
|
|
1552
|
-
"syn",
|
|
1553
|
-
]
|
|
1554
|
-
|
|
1555
1138
|
[[package]]
|
|
1556
1139
|
name = "futures-task"
|
|
1557
1140
|
version = "0.3.31"
|
|
@@ -1565,7 +1148,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1565
1148
|
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
|
|
1566
1149
|
dependencies = [
|
|
1567
1150
|
"futures-core",
|
|
1568
|
-
"futures-macro",
|
|
1569
1151
|
"futures-task",
|
|
1570
1152
|
"pin-project-lite",
|
|
1571
1153
|
"pin-utils",
|
|
@@ -1583,8 +1165,8 @@ dependencies = [
|
|
|
1583
1165
|
"libc",
|
|
1584
1166
|
"log",
|
|
1585
1167
|
"rustversion",
|
|
1586
|
-
"windows-link
|
|
1587
|
-
"windows-result
|
|
1168
|
+
"windows-link",
|
|
1169
|
+
"windows-result",
|
|
1588
1170
|
]
|
|
1589
1171
|
|
|
1590
1172
|
[[package]]
|
|
@@ -1594,7 +1176,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1594
1176
|
checksum = "1bd49230192a3797a9a4d6abe9b3eed6f7fa4c8a8a4947977c6f80025f92cbd8"
|
|
1595
1177
|
dependencies = [
|
|
1596
1178
|
"rustix 1.1.3",
|
|
1597
|
-
"windows-link
|
|
1179
|
+
"windows-link",
|
|
1598
1180
|
]
|
|
1599
1181
|
|
|
1600
1182
|
[[package]]
|
|
@@ -1652,9 +1234,9 @@ dependencies = [
|
|
|
1652
1234
|
|
|
1653
1235
|
[[package]]
|
|
1654
1236
|
name = "glam"
|
|
1655
|
-
version = "0.30.
|
|
1237
|
+
version = "0.30.10"
|
|
1656
1238
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1657
|
-
checksum = "
|
|
1239
|
+
checksum = "19fc433e8437a212d1b6f1e68c7824af3aed907da60afa994e7f542d18d12aa9"
|
|
1658
1240
|
dependencies = [
|
|
1659
1241
|
"bytemuck",
|
|
1660
1242
|
"serde_core",
|
|
@@ -1751,61 +1333,10 @@ dependencies = [
|
|
|
1751
1333
|
]
|
|
1752
1334
|
|
|
1753
1335
|
[[package]]
|
|
1754
|
-
name = "
|
|
1755
|
-
version = "
|
|
1336
|
+
name = "half"
|
|
1337
|
+
version = "2.7.1"
|
|
1756
1338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
-
checksum = "
|
|
1758
|
-
dependencies = [
|
|
1759
|
-
"bitflags 2.10.0",
|
|
1760
|
-
"gpu-alloc-types",
|
|
1761
|
-
]
|
|
1762
|
-
|
|
1763
|
-
[[package]]
|
|
1764
|
-
name = "gpu-alloc-types"
|
|
1765
|
-
version = "0.3.0"
|
|
1766
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1767
|
-
checksum = "98ff03b468aa837d70984d55f5d3f846f6ec31fe34bbb97c4f85219caeee1ca4"
|
|
1768
|
-
dependencies = [
|
|
1769
|
-
"bitflags 2.10.0",
|
|
1770
|
-
]
|
|
1771
|
-
|
|
1772
|
-
[[package]]
|
|
1773
|
-
name = "gpu-allocator"
|
|
1774
|
-
version = "0.27.0"
|
|
1775
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
-
checksum = "c151a2a5ef800297b4e79efa4f4bec035c5f51d5ae587287c9b952bdf734cacd"
|
|
1777
|
-
dependencies = [
|
|
1778
|
-
"log",
|
|
1779
|
-
"presser",
|
|
1780
|
-
"thiserror 1.0.69",
|
|
1781
|
-
"windows 0.58.0",
|
|
1782
|
-
]
|
|
1783
|
-
|
|
1784
|
-
[[package]]
|
|
1785
|
-
name = "gpu-descriptor"
|
|
1786
|
-
version = "0.3.2"
|
|
1787
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
-
checksum = "b89c83349105e3732062a895becfc71a8f921bb71ecbbdd8ff99263e3b53a0ca"
|
|
1789
|
-
dependencies = [
|
|
1790
|
-
"bitflags 2.10.0",
|
|
1791
|
-
"gpu-descriptor-types",
|
|
1792
|
-
"hashbrown 0.15.5",
|
|
1793
|
-
]
|
|
1794
|
-
|
|
1795
|
-
[[package]]
|
|
1796
|
-
name = "gpu-descriptor-types"
|
|
1797
|
-
version = "0.2.0"
|
|
1798
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
-
checksum = "fdf242682df893b86f33a73828fb09ca4b2d3bb6cc95249707fc684d27484b91"
|
|
1800
|
-
dependencies = [
|
|
1801
|
-
"bitflags 2.10.0",
|
|
1802
|
-
]
|
|
1803
|
-
|
|
1804
|
-
[[package]]
|
|
1805
|
-
name = "half"
|
|
1806
|
-
version = "2.7.1"
|
|
1807
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
-
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1339
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1809
1340
|
dependencies = [
|
|
1810
1341
|
"cfg-if",
|
|
1811
1342
|
"crunchy",
|
|
@@ -1822,22 +1353,13 @@ dependencies = [
|
|
|
1822
1353
|
"byteorder",
|
|
1823
1354
|
]
|
|
1824
1355
|
|
|
1825
|
-
[[package]]
|
|
1826
|
-
name = "hashbrown"
|
|
1827
|
-
version = "0.15.5"
|
|
1828
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1829
|
-
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
1830
|
-
dependencies = [
|
|
1831
|
-
"foldhash 0.1.5",
|
|
1832
|
-
]
|
|
1833
|
-
|
|
1834
1356
|
[[package]]
|
|
1835
1357
|
name = "hashbrown"
|
|
1836
1358
|
version = "0.16.1"
|
|
1837
1359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1838
1360
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
1839
1361
|
dependencies = [
|
|
1840
|
-
"foldhash
|
|
1362
|
+
"foldhash",
|
|
1841
1363
|
]
|
|
1842
1364
|
|
|
1843
1365
|
[[package]]
|
|
@@ -1866,12 +1388,6 @@ version = "0.5.2"
|
|
|
1866
1388
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1867
1389
|
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1868
1390
|
|
|
1869
|
-
[[package]]
|
|
1870
|
-
name = "hex"
|
|
1871
|
-
version = "0.4.3"
|
|
1872
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
-
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
1874
|
-
|
|
1875
1391
|
[[package]]
|
|
1876
1392
|
name = "hexf-parse"
|
|
1877
1393
|
version = "0.2.1"
|
|
@@ -1890,7 +1406,7 @@ dependencies = [
|
|
|
1890
1406
|
"js-sys",
|
|
1891
1407
|
"log",
|
|
1892
1408
|
"wasm-bindgen",
|
|
1893
|
-
"windows-core
|
|
1409
|
+
"windows-core",
|
|
1894
1410
|
]
|
|
1895
1411
|
|
|
1896
1412
|
[[package]]
|
|
@@ -2024,8 +1540,8 @@ dependencies = [
|
|
|
2024
1540
|
"rayon",
|
|
2025
1541
|
"rgb",
|
|
2026
1542
|
"tiff",
|
|
2027
|
-
"zune-core 0.5.
|
|
2028
|
-
"zune-jpeg 0.5.
|
|
1543
|
+
"zune-core 0.5.1",
|
|
1544
|
+
"zune-jpeg 0.5.10",
|
|
2029
1545
|
]
|
|
2030
1546
|
|
|
2031
1547
|
[[package]]
|
|
@@ -2046,12 +1562,12 @@ checksum = "e7c5cedc30da3a610cac6b4ba17597bdf7152cf974e8aab3afb3d54455e371c8"
|
|
|
2046
1562
|
|
|
2047
1563
|
[[package]]
|
|
2048
1564
|
name = "indexmap"
|
|
2049
|
-
version = "2.
|
|
1565
|
+
version = "2.13.0"
|
|
2050
1566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2051
|
-
checksum = "
|
|
1567
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
2052
1568
|
dependencies = [
|
|
2053
1569
|
"equivalent",
|
|
2054
|
-
"hashbrown
|
|
1570
|
+
"hashbrown",
|
|
2055
1571
|
]
|
|
2056
1572
|
|
|
2057
1573
|
[[package]]
|
|
@@ -2153,25 +1669,14 @@ dependencies = [
|
|
|
2153
1669
|
|
|
2154
1670
|
[[package]]
|
|
2155
1671
|
name = "js-sys"
|
|
2156
|
-
version = "0.3.
|
|
1672
|
+
version = "0.3.85"
|
|
2157
1673
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2158
|
-
checksum = "
|
|
1674
|
+
checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
|
|
2159
1675
|
dependencies = [
|
|
2160
1676
|
"once_cell",
|
|
2161
1677
|
"wasm-bindgen",
|
|
2162
1678
|
]
|
|
2163
1679
|
|
|
2164
|
-
[[package]]
|
|
2165
|
-
name = "khronos-egl"
|
|
2166
|
-
version = "6.0.0"
|
|
2167
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2168
|
-
checksum = "6aae1df220ece3c0ada96b8153459b67eebe9ae9212258bb0134ae60416fdf76"
|
|
2169
|
-
dependencies = [
|
|
2170
|
-
"libc",
|
|
2171
|
-
"libloading",
|
|
2172
|
-
"pkg-config",
|
|
2173
|
-
]
|
|
2174
|
-
|
|
2175
1680
|
[[package]]
|
|
2176
1681
|
name = "khronos_api"
|
|
2177
1682
|
version = "3.1.0"
|
|
@@ -2218,9 +1723,9 @@ checksum = "7a79a3332a6609480d7d0c9eab957bca6b455b91bb84e66d19f5ff66294b85b8"
|
|
|
2218
1723
|
|
|
2219
1724
|
[[package]]
|
|
2220
1725
|
name = "libc"
|
|
2221
|
-
version = "0.2.
|
|
1726
|
+
version = "0.2.180"
|
|
2222
1727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2223
|
-
checksum = "
|
|
1728
|
+
checksum = "bcc35a38544a891a5f7c865aca548a982ccb3b8650a5b06d0fd33a10283c56fc"
|
|
2224
1729
|
|
|
2225
1730
|
[[package]]
|
|
2226
1731
|
name = "libfuzzer-sys"
|
|
@@ -2239,7 +1744,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
2239
1744
|
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
2240
1745
|
dependencies = [
|
|
2241
1746
|
"cfg-if",
|
|
2242
|
-
"windows-link
|
|
1747
|
+
"windows-link",
|
|
2243
1748
|
]
|
|
2244
1749
|
|
|
2245
1750
|
[[package]]
|
|
@@ -2307,15 +1812,6 @@ dependencies = [
|
|
|
2307
1812
|
"imgref",
|
|
2308
1813
|
]
|
|
2309
1814
|
|
|
2310
|
-
[[package]]
|
|
2311
|
-
name = "malloc_buf"
|
|
2312
|
-
version = "0.0.6"
|
|
2313
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2314
|
-
checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
|
|
2315
|
-
dependencies = [
|
|
2316
|
-
"libc",
|
|
2317
|
-
]
|
|
2318
|
-
|
|
2319
1815
|
[[package]]
|
|
2320
1816
|
name = "maplit"
|
|
2321
1817
|
version = "1.0.2"
|
|
@@ -2356,39 +1852,6 @@ dependencies = [
|
|
|
2356
1852
|
"autocfg",
|
|
2357
1853
|
]
|
|
2358
1854
|
|
|
2359
|
-
[[package]]
|
|
2360
|
-
name = "metal"
|
|
2361
|
-
version = "0.32.0"
|
|
2362
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2363
|
-
checksum = "00c15a6f673ff72ddcc22394663290f870fb224c1bfce55734a75c414150e605"
|
|
2364
|
-
dependencies = [
|
|
2365
|
-
"bitflags 2.10.0",
|
|
2366
|
-
"block",
|
|
2367
|
-
"core-graphics-types 0.2.0",
|
|
2368
|
-
"foreign-types",
|
|
2369
|
-
"log",
|
|
2370
|
-
"objc",
|
|
2371
|
-
"paste",
|
|
2372
|
-
]
|
|
2373
|
-
|
|
2374
|
-
[[package]]
|
|
2375
|
-
name = "mime"
|
|
2376
|
-
version = "0.3.17"
|
|
2377
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
-
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
2379
|
-
|
|
2380
|
-
[[package]]
|
|
2381
|
-
name = "mime_guess2"
|
|
2382
|
-
version = "2.3.1"
|
|
2383
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2384
|
-
checksum = "1706dc14a2e140dec0a7a07109d9a3d5890b81e85bd6c60b906b249a77adf0ca"
|
|
2385
|
-
dependencies = [
|
|
2386
|
-
"mime",
|
|
2387
|
-
"phf",
|
|
2388
|
-
"phf_shared",
|
|
2389
|
-
"unicase",
|
|
2390
|
-
]
|
|
2391
|
-
|
|
2392
1855
|
[[package]]
|
|
2393
1856
|
name = "miniz_oxide"
|
|
2394
1857
|
version = "0.8.9"
|
|
@@ -2411,9 +1874,9 @@ dependencies = [
|
|
|
2411
1874
|
|
|
2412
1875
|
[[package]]
|
|
2413
1876
|
name = "na_seq"
|
|
2414
|
-
version = "0.3.
|
|
1877
|
+
version = "0.3.12"
|
|
2415
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2416
|
-
checksum = "
|
|
1879
|
+
checksum = "6daaba655f0a53bdd19487f4b776ea661ce80b16de9eaa387779626f3d14e0f9"
|
|
2417
1880
|
dependencies = [
|
|
2418
1881
|
"bincode",
|
|
2419
1882
|
"num_enum",
|
|
@@ -2432,7 +1895,7 @@ dependencies = [
|
|
|
2432
1895
|
"cfg_aliases",
|
|
2433
1896
|
"codespan-reporting",
|
|
2434
1897
|
"half",
|
|
2435
|
-
"hashbrown
|
|
1898
|
+
"hashbrown",
|
|
2436
1899
|
"hexf-parse",
|
|
2437
1900
|
"indexmap",
|
|
2438
1901
|
"libm",
|
|
@@ -2440,8 +1903,7 @@ dependencies = [
|
|
|
2440
1903
|
"num-traits",
|
|
2441
1904
|
"once_cell",
|
|
2442
1905
|
"rustc-hash 1.1.0",
|
|
2443
|
-
"
|
|
2444
|
-
"thiserror 2.0.17",
|
|
1906
|
+
"thiserror 2.0.18",
|
|
2445
1907
|
"unicode-ident",
|
|
2446
1908
|
]
|
|
2447
1909
|
|
|
@@ -2481,19 +1943,6 @@ version = "1.0.6"
|
|
|
2481
1943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2482
1944
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
2483
1945
|
|
|
2484
|
-
[[package]]
|
|
2485
|
-
name = "nix"
|
|
2486
|
-
version = "0.30.1"
|
|
2487
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2488
|
-
checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
|
|
2489
|
-
dependencies = [
|
|
2490
|
-
"bitflags 2.10.0",
|
|
2491
|
-
"cfg-if",
|
|
2492
|
-
"cfg_aliases",
|
|
2493
|
-
"libc",
|
|
2494
|
-
"memoffset",
|
|
2495
|
-
]
|
|
2496
|
-
|
|
2497
1946
|
[[package]]
|
|
2498
1947
|
name = "nohash-hasher"
|
|
2499
1948
|
version = "0.2.0"
|
|
@@ -2606,15 +2055,6 @@ dependencies = [
|
|
|
2606
2055
|
"syn",
|
|
2607
2056
|
]
|
|
2608
2057
|
|
|
2609
|
-
[[package]]
|
|
2610
|
-
name = "objc"
|
|
2611
|
-
version = "0.2.7"
|
|
2612
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2613
|
-
checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
|
|
2614
|
-
dependencies = [
|
|
2615
|
-
"malloc_buf",
|
|
2616
|
-
]
|
|
2617
|
-
|
|
2618
2058
|
[[package]]
|
|
2619
2059
|
name = "objc-sys"
|
|
2620
2060
|
version = "0.3.5"
|
|
@@ -2911,16 +2351,6 @@ dependencies = [
|
|
|
2911
2351
|
"num-traits",
|
|
2912
2352
|
]
|
|
2913
2353
|
|
|
2914
|
-
[[package]]
|
|
2915
|
-
name = "ordered-stream"
|
|
2916
|
-
version = "0.2.0"
|
|
2917
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2918
|
-
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
|
|
2919
|
-
dependencies = [
|
|
2920
|
-
"futures-core",
|
|
2921
|
-
"pin-project-lite",
|
|
2922
|
-
]
|
|
2923
|
-
|
|
2924
2354
|
[[package]]
|
|
2925
2355
|
name = "owned_ttf_parser"
|
|
2926
2356
|
version = "0.25.1"
|
|
@@ -2930,12 +2360,6 @@ dependencies = [
|
|
|
2930
2360
|
"ttf-parser",
|
|
2931
2361
|
]
|
|
2932
2362
|
|
|
2933
|
-
[[package]]
|
|
2934
|
-
name = "parking"
|
|
2935
|
-
version = "2.2.1"
|
|
2936
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2937
|
-
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
|
|
2938
|
-
|
|
2939
2363
|
[[package]]
|
|
2940
2364
|
name = "parking_lot"
|
|
2941
2365
|
version = "0.12.5"
|
|
@@ -2956,7 +2380,7 @@ dependencies = [
|
|
|
2956
2380
|
"libc",
|
|
2957
2381
|
"redox_syscall 0.5.18",
|
|
2958
2382
|
"smallvec",
|
|
2959
|
-
"windows-link
|
|
2383
|
+
"windows-link",
|
|
2960
2384
|
]
|
|
2961
2385
|
|
|
2962
2386
|
[[package]]
|
|
@@ -2983,7 +2407,6 @@ version = "0.11.3"
|
|
|
2983
2407
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2984
2408
|
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
2985
2409
|
dependencies = [
|
|
2986
|
-
"phf_macros",
|
|
2987
2410
|
"phf_shared",
|
|
2988
2411
|
]
|
|
2989
2412
|
|
|
@@ -3007,20 +2430,6 @@ dependencies = [
|
|
|
3007
2430
|
"rand 0.8.5",
|
|
3008
2431
|
]
|
|
3009
2432
|
|
|
3010
|
-
[[package]]
|
|
3011
|
-
name = "phf_macros"
|
|
3012
|
-
version = "0.11.3"
|
|
3013
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3014
|
-
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
3015
|
-
dependencies = [
|
|
3016
|
-
"phf_generator",
|
|
3017
|
-
"phf_shared",
|
|
3018
|
-
"proc-macro2",
|
|
3019
|
-
"quote",
|
|
3020
|
-
"syn",
|
|
3021
|
-
"unicase",
|
|
3022
|
-
]
|
|
3023
|
-
|
|
3024
2433
|
[[package]]
|
|
3025
2434
|
name = "phf_shared"
|
|
3026
2435
|
version = "0.11.3"
|
|
@@ -3028,7 +2437,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3028
2437
|
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
3029
2438
|
dependencies = [
|
|
3030
2439
|
"siphasher",
|
|
3031
|
-
"unicase",
|
|
3032
2440
|
]
|
|
3033
2441
|
|
|
3034
2442
|
[[package]]
|
|
@@ -3063,17 +2471,6 @@ version = "0.1.0"
|
|
|
3063
2471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3064
2472
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
3065
2473
|
|
|
3066
|
-
[[package]]
|
|
3067
|
-
name = "piper"
|
|
3068
|
-
version = "0.2.4"
|
|
3069
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3070
|
-
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
|
|
3071
|
-
dependencies = [
|
|
3072
|
-
"atomic-waker",
|
|
3073
|
-
"fastrand",
|
|
3074
|
-
"futures-io",
|
|
3075
|
-
]
|
|
3076
|
-
|
|
3077
2474
|
[[package]]
|
|
3078
2475
|
name = "pkg-config"
|
|
3079
2476
|
version = "0.3.32"
|
|
@@ -3153,12 +2550,6 @@ dependencies = [
|
|
|
3153
2550
|
"zerocopy",
|
|
3154
2551
|
]
|
|
3155
2552
|
|
|
3156
|
-
[[package]]
|
|
3157
|
-
name = "presser"
|
|
3158
|
-
version = "0.3.1"
|
|
3159
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3160
|
-
checksum = "e8cf8e6a8aa66ce33f63993ffc4ea4271eb5b0530a9002db8455ea6050c77bfa"
|
|
3161
|
-
|
|
3162
2553
|
[[package]]
|
|
3163
2554
|
name = "proc-macro-crate"
|
|
3164
2555
|
version = "3.4.0"
|
|
@@ -3170,9 +2561,9 @@ dependencies = [
|
|
|
3170
2561
|
|
|
3171
2562
|
[[package]]
|
|
3172
2563
|
name = "proc-macro2"
|
|
3173
|
-
version = "1.0.
|
|
2564
|
+
version = "1.0.105"
|
|
3174
2565
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3175
|
-
checksum = "
|
|
2566
|
+
checksum = "535d180e0ecab6268a3e718bb9fd44db66bbbc256257165fc699dadf70d16fe7"
|
|
3176
2567
|
dependencies = [
|
|
3177
2568
|
"unicode-ident",
|
|
3178
2569
|
]
|
|
@@ -3315,16 +2706,6 @@ version = "2.0.1"
|
|
|
3315
2706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3316
2707
|
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
3317
2708
|
|
|
3318
|
-
[[package]]
|
|
3319
|
-
name = "quick-xml"
|
|
3320
|
-
version = "0.36.2"
|
|
3321
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3322
|
-
checksum = "f7649a7b4df05aed9ea7ec6f628c67c9953a43869b8bc50929569b2999d443fe"
|
|
3323
|
-
dependencies = [
|
|
3324
|
-
"memchr",
|
|
3325
|
-
"serde",
|
|
3326
|
-
]
|
|
3327
|
-
|
|
3328
2709
|
[[package]]
|
|
3329
2710
|
name = "quick-xml"
|
|
3330
2711
|
version = "0.38.4"
|
|
@@ -3336,9 +2717,9 @@ dependencies = [
|
|
|
3336
2717
|
|
|
3337
2718
|
[[package]]
|
|
3338
2719
|
name = "quote"
|
|
3339
|
-
version = "1.0.
|
|
2720
|
+
version = "1.0.43"
|
|
3340
2721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3341
|
-
checksum = "
|
|
2722
|
+
checksum = "dc74d9a594b72ae6656596548f56f667211f8a97b3d4c3d467150794690dc40a"
|
|
3342
2723
|
dependencies = [
|
|
3343
2724
|
"proc-macro2",
|
|
3344
2725
|
]
|
|
@@ -3367,7 +2748,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3367
2748
|
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
3368
2749
|
dependencies = [
|
|
3369
2750
|
"rand_chacha 0.9.0",
|
|
3370
|
-
"rand_core 0.9.
|
|
2751
|
+
"rand_core 0.9.5",
|
|
3371
2752
|
]
|
|
3372
2753
|
|
|
3373
2754
|
[[package]]
|
|
@@ -3387,7 +2768,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
3387
2768
|
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
3388
2769
|
dependencies = [
|
|
3389
2770
|
"ppv-lite86",
|
|
3390
|
-
"rand_core 0.9.
|
|
2771
|
+
"rand_core 0.9.5",
|
|
3391
2772
|
]
|
|
3392
2773
|
|
|
3393
2774
|
[[package]]
|
|
@@ -3401,19 +2782,13 @@ dependencies = [
|
|
|
3401
2782
|
|
|
3402
2783
|
[[package]]
|
|
3403
2784
|
name = "rand_core"
|
|
3404
|
-
version = "0.9.
|
|
2785
|
+
version = "0.9.5"
|
|
3405
2786
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3406
|
-
checksum = "
|
|
2787
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
3407
2788
|
dependencies = [
|
|
3408
2789
|
"getrandom 0.3.4",
|
|
3409
2790
|
]
|
|
3410
2791
|
|
|
3411
|
-
[[package]]
|
|
3412
|
-
name = "range-alloc"
|
|
3413
|
-
version = "0.1.4"
|
|
3414
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3415
|
-
checksum = "c3d6831663a5098ea164f89cff59c6284e95f4e3c76ce9848d4529f5ccca9bde"
|
|
3416
|
-
|
|
3417
2792
|
[[package]]
|
|
3418
2793
|
name = "rav1e"
|
|
3419
2794
|
version = "0.8.1"
|
|
@@ -3444,7 +2819,7 @@ dependencies = [
|
|
|
3444
2819
|
"rand 0.9.2",
|
|
3445
2820
|
"rand_chacha 0.9.0",
|
|
3446
2821
|
"simd_helpers",
|
|
3447
|
-
"thiserror 2.0.
|
|
2822
|
+
"thiserror 2.0.18",
|
|
3448
2823
|
"v_frame",
|
|
3449
2824
|
"wasm-bindgen",
|
|
3450
2825
|
]
|
|
@@ -3698,19 +3073,6 @@ version = "1.2.0"
|
|
|
3698
3073
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3699
3074
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
3700
3075
|
|
|
3701
|
-
[[package]]
|
|
3702
|
-
name = "sctk-adwaita"
|
|
3703
|
-
version = "0.10.1"
|
|
3704
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3705
|
-
checksum = "b6277f0217056f77f1d8f49f2950ac6c278c0d607c45f5ee99328d792ede24ec"
|
|
3706
|
-
dependencies = [
|
|
3707
|
-
"ab_glyph",
|
|
3708
|
-
"log",
|
|
3709
|
-
"memmap2",
|
|
3710
|
-
"smithay-client-toolkit 0.19.2",
|
|
3711
|
-
"tiny-skia",
|
|
3712
|
-
]
|
|
3713
|
-
|
|
3714
3076
|
[[package]]
|
|
3715
3077
|
name = "semver"
|
|
3716
3078
|
version = "1.0.27"
|
|
@@ -3749,9 +3111,9 @@ dependencies = [
|
|
|
3749
3111
|
|
|
3750
3112
|
[[package]]
|
|
3751
3113
|
name = "serde_json"
|
|
3752
|
-
version = "1.0.
|
|
3114
|
+
version = "1.0.149"
|
|
3753
3115
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3754
|
-
checksum = "
|
|
3116
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
3755
3117
|
dependencies = [
|
|
3756
3118
|
"itoa",
|
|
3757
3119
|
"memchr",
|
|
@@ -3795,16 +3157,6 @@ version = "1.3.0"
|
|
|
3795
3157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3796
3158
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
3797
3159
|
|
|
3798
|
-
[[package]]
|
|
3799
|
-
name = "signal-hook-registry"
|
|
3800
|
-
version = "1.4.8"
|
|
3801
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3802
|
-
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
3803
|
-
dependencies = [
|
|
3804
|
-
"errno",
|
|
3805
|
-
"libc",
|
|
3806
|
-
]
|
|
3807
|
-
|
|
3808
3160
|
[[package]]
|
|
3809
3161
|
name = "simd-adler32"
|
|
3810
3162
|
version = "0.3.8"
|
|
@@ -3886,7 +3238,7 @@ dependencies = [
|
|
|
3886
3238
|
"log",
|
|
3887
3239
|
"memmap2",
|
|
3888
3240
|
"rustix 1.1.3",
|
|
3889
|
-
"thiserror 2.0.
|
|
3241
|
+
"thiserror 2.0.18",
|
|
3890
3242
|
"wayland-backend",
|
|
3891
3243
|
"wayland-client",
|
|
3892
3244
|
"wayland-csd-frame",
|
|
@@ -3934,15 +3286,6 @@ dependencies = [
|
|
|
3934
3286
|
"lock_api",
|
|
3935
3287
|
]
|
|
3936
3288
|
|
|
3937
|
-
[[package]]
|
|
3938
|
-
name = "spirv"
|
|
3939
|
-
version = "0.3.0+sdk-1.3.268.0"
|
|
3940
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3941
|
-
checksum = "eda41003dc44290527a59b13432d4a0379379fa074b70174882adfbdfd917844"
|
|
3942
|
-
dependencies = [
|
|
3943
|
-
"bitflags 2.10.0",
|
|
3944
|
-
]
|
|
3945
|
-
|
|
3946
3289
|
[[package]]
|
|
3947
3290
|
name = "stable_deref_trait"
|
|
3948
3291
|
version = "1.2.1"
|
|
@@ -3955,17 +3298,11 @@ version = "1.1.0"
|
|
|
3955
3298
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3956
3299
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
3957
3300
|
|
|
3958
|
-
[[package]]
|
|
3959
|
-
name = "strict-num"
|
|
3960
|
-
version = "0.1.1"
|
|
3961
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3962
|
-
checksum = "6637bab7722d379c8b41ba849228d680cc12d0a45ba1fa2b48f2a30577a06731"
|
|
3963
|
-
|
|
3964
3301
|
[[package]]
|
|
3965
3302
|
name = "syn"
|
|
3966
|
-
version = "2.0.
|
|
3303
|
+
version = "2.0.114"
|
|
3967
3304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3968
|
-
checksum = "
|
|
3305
|
+
checksum = "d4d107df263a3013ef9b1879b0df87d706ff80f65a86ea879bd9c31f9b307c2a"
|
|
3969
3306
|
dependencies = [
|
|
3970
3307
|
"proc-macro2",
|
|
3971
3308
|
"quote",
|
|
@@ -3989,28 +3326,6 @@ version = "0.13.4"
|
|
|
3989
3326
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3990
3327
|
checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
|
|
3991
3328
|
|
|
3992
|
-
[[package]]
|
|
3993
|
-
name = "tempfile"
|
|
3994
|
-
version = "3.24.0"
|
|
3995
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3996
|
-
checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
|
|
3997
|
-
dependencies = [
|
|
3998
|
-
"fastrand",
|
|
3999
|
-
"getrandom 0.3.4",
|
|
4000
|
-
"once_cell",
|
|
4001
|
-
"rustix 1.1.3",
|
|
4002
|
-
"windows-sys 0.61.2",
|
|
4003
|
-
]
|
|
4004
|
-
|
|
4005
|
-
[[package]]
|
|
4006
|
-
name = "termcolor"
|
|
4007
|
-
version = "1.4.1"
|
|
4008
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4009
|
-
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
4010
|
-
dependencies = [
|
|
4011
|
-
"winapi-util",
|
|
4012
|
-
]
|
|
4013
|
-
|
|
4014
3329
|
[[package]]
|
|
4015
3330
|
name = "thiserror"
|
|
4016
3331
|
version = "1.0.69"
|
|
@@ -4022,11 +3337,11 @@ dependencies = [
|
|
|
4022
3337
|
|
|
4023
3338
|
[[package]]
|
|
4024
3339
|
name = "thiserror"
|
|
4025
|
-
version = "2.0.
|
|
3340
|
+
version = "2.0.18"
|
|
4026
3341
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4027
|
-
checksum = "
|
|
3342
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
4028
3343
|
dependencies = [
|
|
4029
|
-
"thiserror-impl 2.0.
|
|
3344
|
+
"thiserror-impl 2.0.18",
|
|
4030
3345
|
]
|
|
4031
3346
|
|
|
4032
3347
|
[[package]]
|
|
@@ -4042,9 +3357,9 @@ dependencies = [
|
|
|
4042
3357
|
|
|
4043
3358
|
[[package]]
|
|
4044
3359
|
name = "thiserror-impl"
|
|
4045
|
-
version = "2.0.
|
|
3360
|
+
version = "2.0.18"
|
|
4046
3361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4047
|
-
checksum = "
|
|
3362
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
4048
3363
|
dependencies = [
|
|
4049
3364
|
"proc-macro2",
|
|
4050
3365
|
"quote",
|
|
@@ -4083,31 +3398,6 @@ dependencies = [
|
|
|
4083
3398
|
"crunchy",
|
|
4084
3399
|
]
|
|
4085
3400
|
|
|
4086
|
-
[[package]]
|
|
4087
|
-
name = "tiny-skia"
|
|
4088
|
-
version = "0.11.4"
|
|
4089
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4090
|
-
checksum = "83d13394d44dae3207b52a326c0c85a8bf87f1541f23b0d143811088497b09ab"
|
|
4091
|
-
dependencies = [
|
|
4092
|
-
"arrayref",
|
|
4093
|
-
"arrayvec",
|
|
4094
|
-
"bytemuck",
|
|
4095
|
-
"cfg-if",
|
|
4096
|
-
"log",
|
|
4097
|
-
"tiny-skia-path",
|
|
4098
|
-
]
|
|
4099
|
-
|
|
4100
|
-
[[package]]
|
|
4101
|
-
name = "tiny-skia-path"
|
|
4102
|
-
version = "0.11.4"
|
|
4103
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4104
|
-
checksum = "9c9e7fc0c2e86a30b117d0462aa261b72b7a99b7ebd7deb3a14ceda95c5bdc93"
|
|
4105
|
-
dependencies = [
|
|
4106
|
-
"arrayref",
|
|
4107
|
-
"bytemuck",
|
|
4108
|
-
"strict-num",
|
|
4109
|
-
]
|
|
4110
|
-
|
|
4111
3401
|
[[package]]
|
|
4112
3402
|
name = "tinystr"
|
|
4113
3403
|
version = "0.8.2"
|
|
@@ -4248,17 +3538,6 @@ version = "1.19.0"
|
|
|
4248
3538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4249
3539
|
checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
|
|
4250
3540
|
|
|
4251
|
-
[[package]]
|
|
4252
|
-
name = "uds_windows"
|
|
4253
|
-
version = "1.1.0"
|
|
4254
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4255
|
-
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
|
|
4256
|
-
dependencies = [
|
|
4257
|
-
"memoffset",
|
|
4258
|
-
"tempfile",
|
|
4259
|
-
"winapi",
|
|
4260
|
-
]
|
|
4261
|
-
|
|
4262
3541
|
[[package]]
|
|
4263
3542
|
name = "unic-char-property"
|
|
4264
3543
|
version = "0.9.0"
|
|
@@ -4311,12 +3590,6 @@ dependencies = [
|
|
|
4311
3590
|
"unic-common",
|
|
4312
3591
|
]
|
|
4313
3592
|
|
|
4314
|
-
[[package]]
|
|
4315
|
-
name = "unicase"
|
|
4316
|
-
version = "2.8.1"
|
|
4317
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4318
|
-
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
|
4319
|
-
|
|
4320
3593
|
[[package]]
|
|
4321
3594
|
name = "unicode-ident"
|
|
4322
3595
|
version = "1.0.22"
|
|
@@ -4371,9 +3644,9 @@ checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
|
|
|
4371
3644
|
|
|
4372
3645
|
[[package]]
|
|
4373
3646
|
name = "url"
|
|
4374
|
-
version = "2.5.
|
|
3647
|
+
version = "2.5.8"
|
|
4375
3648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4376
|
-
checksum = "
|
|
3649
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
4377
3650
|
dependencies = [
|
|
4378
3651
|
"form_urlencoded",
|
|
4379
3652
|
"idna",
|
|
@@ -4395,7 +3668,6 @@ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
|
|
|
4395
3668
|
dependencies = [
|
|
4396
3669
|
"getrandom 0.3.4",
|
|
4397
3670
|
"js-sys",
|
|
4398
|
-
"serde_core",
|
|
4399
3671
|
"wasm-bindgen",
|
|
4400
3672
|
]
|
|
4401
3673
|
|
|
@@ -4446,18 +3718,18 @@ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
|
4446
3718
|
|
|
4447
3719
|
[[package]]
|
|
4448
3720
|
name = "wasip2"
|
|
4449
|
-
version = "1.0.
|
|
3721
|
+
version = "1.0.2+wasi-0.2.9"
|
|
4450
3722
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4451
|
-
checksum = "
|
|
3723
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
4452
3724
|
dependencies = [
|
|
4453
3725
|
"wit-bindgen",
|
|
4454
3726
|
]
|
|
4455
3727
|
|
|
4456
3728
|
[[package]]
|
|
4457
3729
|
name = "wasm-bindgen"
|
|
4458
|
-
version = "0.2.
|
|
3730
|
+
version = "0.2.108"
|
|
4459
3731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4460
|
-
checksum = "
|
|
3732
|
+
checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
|
|
4461
3733
|
dependencies = [
|
|
4462
3734
|
"cfg-if",
|
|
4463
3735
|
"once_cell",
|
|
@@ -4468,11 +3740,12 @@ dependencies = [
|
|
|
4468
3740
|
|
|
4469
3741
|
[[package]]
|
|
4470
3742
|
name = "wasm-bindgen-futures"
|
|
4471
|
-
version = "0.4.
|
|
3743
|
+
version = "0.4.58"
|
|
4472
3744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4473
|
-
checksum = "
|
|
3745
|
+
checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
|
|
4474
3746
|
dependencies = [
|
|
4475
3747
|
"cfg-if",
|
|
3748
|
+
"futures-util",
|
|
4476
3749
|
"js-sys",
|
|
4477
3750
|
"once_cell",
|
|
4478
3751
|
"wasm-bindgen",
|
|
@@ -4481,9 +3754,9 @@ dependencies = [
|
|
|
4481
3754
|
|
|
4482
3755
|
[[package]]
|
|
4483
3756
|
name = "wasm-bindgen-macro"
|
|
4484
|
-
version = "0.2.
|
|
3757
|
+
version = "0.2.108"
|
|
4485
3758
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4486
|
-
checksum = "
|
|
3759
|
+
checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
|
|
4487
3760
|
dependencies = [
|
|
4488
3761
|
"quote",
|
|
4489
3762
|
"wasm-bindgen-macro-support",
|
|
@@ -4491,9 +3764,9 @@ dependencies = [
|
|
|
4491
3764
|
|
|
4492
3765
|
[[package]]
|
|
4493
3766
|
name = "wasm-bindgen-macro-support"
|
|
4494
|
-
version = "0.2.
|
|
3767
|
+
version = "0.2.108"
|
|
4495
3768
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4496
|
-
checksum = "
|
|
3769
|
+
checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
|
|
4497
3770
|
dependencies = [
|
|
4498
3771
|
"bumpalo",
|
|
4499
3772
|
"proc-macro2",
|
|
@@ -4504,9 +3777,9 @@ dependencies = [
|
|
|
4504
3777
|
|
|
4505
3778
|
[[package]]
|
|
4506
3779
|
name = "wasm-bindgen-shared"
|
|
4507
|
-
version = "0.2.
|
|
3780
|
+
version = "0.2.108"
|
|
4508
3781
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4509
|
-
checksum = "
|
|
3782
|
+
checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
|
|
4510
3783
|
dependencies = [
|
|
4511
3784
|
"unicode-ident",
|
|
4512
3785
|
]
|
|
@@ -4630,7 +3903,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
4630
3903
|
checksum = "5423e94b6a63e68e439803a3e153a9252d5ead12fd853334e2ad33997e3889e3"
|
|
4631
3904
|
dependencies = [
|
|
4632
3905
|
"proc-macro2",
|
|
4633
|
-
"quick-xml
|
|
3906
|
+
"quick-xml",
|
|
4634
3907
|
"quote",
|
|
4635
3908
|
]
|
|
4636
3909
|
|
|
@@ -4648,9 +3921,9 @@ dependencies = [
|
|
|
4648
3921
|
|
|
4649
3922
|
[[package]]
|
|
4650
3923
|
name = "web-sys"
|
|
4651
|
-
version = "0.3.
|
|
3924
|
+
version = "0.3.85"
|
|
4652
3925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4653
|
-
checksum = "
|
|
3926
|
+
checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
|
|
4654
3927
|
dependencies = [
|
|
4655
3928
|
"js-sys",
|
|
4656
3929
|
"wasm-bindgen",
|
|
@@ -4699,19 +3972,13 @@ dependencies = [
|
|
|
4699
3972
|
"cfg-if",
|
|
4700
3973
|
"cfg_aliases",
|
|
4701
3974
|
"document-features",
|
|
4702
|
-
"hashbrown
|
|
4703
|
-
"js-sys",
|
|
3975
|
+
"hashbrown",
|
|
4704
3976
|
"log",
|
|
4705
|
-
"naga",
|
|
4706
|
-
"parking_lot",
|
|
4707
3977
|
"portable-atomic",
|
|
4708
3978
|
"profiling",
|
|
4709
3979
|
"raw-window-handle",
|
|
4710
3980
|
"smallvec",
|
|
4711
3981
|
"static_assertions",
|
|
4712
|
-
"wasm-bindgen",
|
|
4713
|
-
"wasm-bindgen-futures",
|
|
4714
|
-
"web-sys",
|
|
4715
3982
|
"wgpu-core",
|
|
4716
3983
|
"wgpu-hal",
|
|
4717
3984
|
"wgpu-types",
|
|
@@ -4730,7 +3997,7 @@ dependencies = [
|
|
|
4730
3997
|
"bytemuck",
|
|
4731
3998
|
"cfg_aliases",
|
|
4732
3999
|
"document-features",
|
|
4733
|
-
"hashbrown
|
|
4000
|
+
"hashbrown",
|
|
4734
4001
|
"indexmap",
|
|
4735
4002
|
"log",
|
|
4736
4003
|
"naga",
|
|
@@ -4741,32 +4008,12 @@ dependencies = [
|
|
|
4741
4008
|
"raw-window-handle",
|
|
4742
4009
|
"rustc-hash 1.1.0",
|
|
4743
4010
|
"smallvec",
|
|
4744
|
-
"thiserror 2.0.
|
|
4745
|
-
"wgpu-core-deps-apple",
|
|
4746
|
-
"wgpu-core-deps-emscripten",
|
|
4011
|
+
"thiserror 2.0.18",
|
|
4747
4012
|
"wgpu-core-deps-windows-linux-android",
|
|
4748
4013
|
"wgpu-hal",
|
|
4749
4014
|
"wgpu-types",
|
|
4750
4015
|
]
|
|
4751
4016
|
|
|
4752
|
-
[[package]]
|
|
4753
|
-
name = "wgpu-core-deps-apple"
|
|
4754
|
-
version = "27.0.0"
|
|
4755
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4756
|
-
checksum = "0772ae958e9be0c729561d5e3fd9a19679bcdfb945b8b1a1969d9bfe8056d233"
|
|
4757
|
-
dependencies = [
|
|
4758
|
-
"wgpu-hal",
|
|
4759
|
-
]
|
|
4760
|
-
|
|
4761
|
-
[[package]]
|
|
4762
|
-
name = "wgpu-core-deps-emscripten"
|
|
4763
|
-
version = "27.0.0"
|
|
4764
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4765
|
-
checksum = "b06ac3444a95b0813ecfd81ddb2774b66220b264b3e2031152a4a29fda4da6b5"
|
|
4766
|
-
dependencies = [
|
|
4767
|
-
"wgpu-hal",
|
|
4768
|
-
]
|
|
4769
|
-
|
|
4770
4017
|
[[package]]
|
|
4771
4018
|
name = "wgpu-core-deps-windows-linux-android"
|
|
4772
4019
|
version = "27.0.0"
|
|
@@ -4782,47 +4029,18 @@ version = "27.0.4"
|
|
|
4782
4029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4783
4030
|
checksum = "5b21cb61c57ee198bc4aff71aeadff4cbb80b927beb912506af9c780d64313ce"
|
|
4784
4031
|
dependencies = [
|
|
4785
|
-
"android_system_properties",
|
|
4786
|
-
"arrayvec",
|
|
4787
|
-
"ash",
|
|
4788
|
-
"bit-set",
|
|
4789
4032
|
"bitflags 2.10.0",
|
|
4790
|
-
"block",
|
|
4791
|
-
"bytemuck",
|
|
4792
4033
|
"cfg-if",
|
|
4793
4034
|
"cfg_aliases",
|
|
4794
|
-
"core-graphics-types 0.2.0",
|
|
4795
|
-
"glow",
|
|
4796
|
-
"glutin_wgl_sys",
|
|
4797
|
-
"gpu-alloc",
|
|
4798
|
-
"gpu-allocator",
|
|
4799
|
-
"gpu-descriptor",
|
|
4800
|
-
"hashbrown 0.16.1",
|
|
4801
|
-
"js-sys",
|
|
4802
|
-
"khronos-egl",
|
|
4803
|
-
"libc",
|
|
4804
4035
|
"libloading",
|
|
4805
4036
|
"log",
|
|
4806
|
-
"metal",
|
|
4807
4037
|
"naga",
|
|
4808
|
-
"ndk-sys",
|
|
4809
|
-
"objc",
|
|
4810
|
-
"once_cell",
|
|
4811
|
-
"ordered-float",
|
|
4812
|
-
"parking_lot",
|
|
4813
4038
|
"portable-atomic",
|
|
4814
4039
|
"portable-atomic-util",
|
|
4815
|
-
"profiling",
|
|
4816
|
-
"range-alloc",
|
|
4817
4040
|
"raw-window-handle",
|
|
4818
4041
|
"renderdoc-sys",
|
|
4819
|
-
"
|
|
4820
|
-
"thiserror 2.0.17",
|
|
4821
|
-
"wasm-bindgen",
|
|
4822
|
-
"web-sys",
|
|
4042
|
+
"thiserror 2.0.18",
|
|
4823
4043
|
"wgpu-types",
|
|
4824
|
-
"windows 0.58.0",
|
|
4825
|
-
"windows-core 0.58.0",
|
|
4826
4044
|
]
|
|
4827
4045
|
|
|
4828
4046
|
[[package]]
|
|
@@ -4835,7 +4053,7 @@ dependencies = [
|
|
|
4835
4053
|
"bytemuck",
|
|
4836
4054
|
"js-sys",
|
|
4837
4055
|
"log",
|
|
4838
|
-
"thiserror 2.0.
|
|
4056
|
+
"thiserror 2.0.18",
|
|
4839
4057
|
"web-sys",
|
|
4840
4058
|
]
|
|
4841
4059
|
|
|
@@ -4849,22 +4067,6 @@ dependencies = [
|
|
|
4849
4067
|
"safe_arch",
|
|
4850
4068
|
]
|
|
4851
4069
|
|
|
4852
|
-
[[package]]
|
|
4853
|
-
name = "winapi"
|
|
4854
|
-
version = "0.3.9"
|
|
4855
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4856
|
-
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
4857
|
-
dependencies = [
|
|
4858
|
-
"winapi-i686-pc-windows-gnu",
|
|
4859
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
4860
|
-
]
|
|
4861
|
-
|
|
4862
|
-
[[package]]
|
|
4863
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
4864
|
-
version = "0.4.0"
|
|
4865
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4866
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
4867
|
-
|
|
4868
4070
|
[[package]]
|
|
4869
4071
|
name = "winapi-util"
|
|
4870
4072
|
version = "0.1.11"
|
|
@@ -4874,90 +4076,17 @@ dependencies = [
|
|
|
4874
4076
|
"windows-sys 0.61.2",
|
|
4875
4077
|
]
|
|
4876
4078
|
|
|
4877
|
-
[[package]]
|
|
4878
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
4879
|
-
version = "0.4.0"
|
|
4880
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4881
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
4882
|
-
|
|
4883
|
-
[[package]]
|
|
4884
|
-
name = "windows"
|
|
4885
|
-
version = "0.58.0"
|
|
4886
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4887
|
-
checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
|
|
4888
|
-
dependencies = [
|
|
4889
|
-
"windows-core 0.58.0",
|
|
4890
|
-
"windows-targets 0.52.6",
|
|
4891
|
-
]
|
|
4892
|
-
|
|
4893
|
-
[[package]]
|
|
4894
|
-
name = "windows"
|
|
4895
|
-
version = "0.61.3"
|
|
4896
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4897
|
-
checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
|
|
4898
|
-
dependencies = [
|
|
4899
|
-
"windows-collections",
|
|
4900
|
-
"windows-core 0.61.2",
|
|
4901
|
-
"windows-future",
|
|
4902
|
-
"windows-link 0.1.3",
|
|
4903
|
-
"windows-numerics",
|
|
4904
|
-
]
|
|
4905
|
-
|
|
4906
|
-
[[package]]
|
|
4907
|
-
name = "windows-collections"
|
|
4908
|
-
version = "0.2.0"
|
|
4909
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4910
|
-
checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
|
|
4911
|
-
dependencies = [
|
|
4912
|
-
"windows-core 0.61.2",
|
|
4913
|
-
]
|
|
4914
|
-
|
|
4915
|
-
[[package]]
|
|
4916
|
-
name = "windows-core"
|
|
4917
|
-
version = "0.58.0"
|
|
4918
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4919
|
-
checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
|
|
4920
|
-
dependencies = [
|
|
4921
|
-
"windows-implement 0.58.0",
|
|
4922
|
-
"windows-interface 0.58.0",
|
|
4923
|
-
"windows-result 0.2.0",
|
|
4924
|
-
"windows-strings 0.1.0",
|
|
4925
|
-
"windows-targets 0.52.6",
|
|
4926
|
-
]
|
|
4927
|
-
|
|
4928
4079
|
[[package]]
|
|
4929
4080
|
name = "windows-core"
|
|
4930
|
-
version = "0.
|
|
4931
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4932
|
-
checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
|
|
4933
|
-
dependencies = [
|
|
4934
|
-
"windows-implement 0.60.2",
|
|
4935
|
-
"windows-interface 0.59.3",
|
|
4936
|
-
"windows-link 0.1.3",
|
|
4937
|
-
"windows-result 0.3.4",
|
|
4938
|
-
"windows-strings 0.4.2",
|
|
4939
|
-
]
|
|
4940
|
-
|
|
4941
|
-
[[package]]
|
|
4942
|
-
name = "windows-future"
|
|
4943
|
-
version = "0.2.1"
|
|
4944
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4945
|
-
checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
|
|
4946
|
-
dependencies = [
|
|
4947
|
-
"windows-core 0.61.2",
|
|
4948
|
-
"windows-link 0.1.3",
|
|
4949
|
-
"windows-threading",
|
|
4950
|
-
]
|
|
4951
|
-
|
|
4952
|
-
[[package]]
|
|
4953
|
-
name = "windows-implement"
|
|
4954
|
-
version = "0.58.0"
|
|
4081
|
+
version = "0.62.2"
|
|
4955
4082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4956
|
-
checksum = "
|
|
4083
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
4957
4084
|
dependencies = [
|
|
4958
|
-
"
|
|
4959
|
-
"
|
|
4960
|
-
"
|
|
4085
|
+
"windows-implement",
|
|
4086
|
+
"windows-interface",
|
|
4087
|
+
"windows-link",
|
|
4088
|
+
"windows-result",
|
|
4089
|
+
"windows-strings",
|
|
4961
4090
|
]
|
|
4962
4091
|
|
|
4963
4092
|
[[package]]
|
|
@@ -4971,17 +4100,6 @@ dependencies = [
|
|
|
4971
4100
|
"syn",
|
|
4972
4101
|
]
|
|
4973
4102
|
|
|
4974
|
-
[[package]]
|
|
4975
|
-
name = "windows-interface"
|
|
4976
|
-
version = "0.58.0"
|
|
4977
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4978
|
-
checksum = "053c4c462dc91d3b1504c6fe5a726dd15e216ba718e84a0e46a88fbe5ded3515"
|
|
4979
|
-
dependencies = [
|
|
4980
|
-
"proc-macro2",
|
|
4981
|
-
"quote",
|
|
4982
|
-
"syn",
|
|
4983
|
-
]
|
|
4984
|
-
|
|
4985
4103
|
[[package]]
|
|
4986
4104
|
name = "windows-interface"
|
|
4987
4105
|
version = "0.59.3"
|
|
@@ -4993,72 +4111,28 @@ dependencies = [
|
|
|
4993
4111
|
"syn",
|
|
4994
4112
|
]
|
|
4995
4113
|
|
|
4996
|
-
[[package]]
|
|
4997
|
-
name = "windows-link"
|
|
4998
|
-
version = "0.1.3"
|
|
4999
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5000
|
-
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
5001
|
-
|
|
5002
4114
|
[[package]]
|
|
5003
4115
|
name = "windows-link"
|
|
5004
4116
|
version = "0.2.1"
|
|
5005
4117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5006
4118
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
5007
4119
|
|
|
5008
|
-
[[package]]
|
|
5009
|
-
name = "windows-numerics"
|
|
5010
|
-
version = "0.2.0"
|
|
5011
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5012
|
-
checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
|
|
5013
|
-
dependencies = [
|
|
5014
|
-
"windows-core 0.61.2",
|
|
5015
|
-
"windows-link 0.1.3",
|
|
5016
|
-
]
|
|
5017
|
-
|
|
5018
|
-
[[package]]
|
|
5019
|
-
name = "windows-result"
|
|
5020
|
-
version = "0.2.0"
|
|
5021
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5022
|
-
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
|
|
5023
|
-
dependencies = [
|
|
5024
|
-
"windows-targets 0.52.6",
|
|
5025
|
-
]
|
|
5026
|
-
|
|
5027
|
-
[[package]]
|
|
5028
|
-
name = "windows-result"
|
|
5029
|
-
version = "0.3.4"
|
|
5030
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5031
|
-
checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
|
|
5032
|
-
dependencies = [
|
|
5033
|
-
"windows-link 0.1.3",
|
|
5034
|
-
]
|
|
5035
|
-
|
|
5036
4120
|
[[package]]
|
|
5037
4121
|
name = "windows-result"
|
|
5038
4122
|
version = "0.4.1"
|
|
5039
4123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5040
4124
|
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
5041
4125
|
dependencies = [
|
|
5042
|
-
"windows-link
|
|
4126
|
+
"windows-link",
|
|
5043
4127
|
]
|
|
5044
4128
|
|
|
5045
4129
|
[[package]]
|
|
5046
4130
|
name = "windows-strings"
|
|
5047
|
-
version = "0.1
|
|
5048
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5049
|
-
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
|
|
5050
|
-
dependencies = [
|
|
5051
|
-
"windows-result 0.2.0",
|
|
5052
|
-
"windows-targets 0.52.6",
|
|
5053
|
-
]
|
|
5054
|
-
|
|
5055
|
-
[[package]]
|
|
5056
|
-
name = "windows-strings"
|
|
5057
|
-
version = "0.4.2"
|
|
4131
|
+
version = "0.5.1"
|
|
5058
4132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5059
|
-
checksum = "
|
|
4133
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
5060
4134
|
dependencies = [
|
|
5061
|
-
"windows-link
|
|
4135
|
+
"windows-link",
|
|
5062
4136
|
]
|
|
5063
4137
|
|
|
5064
4138
|
[[package]]
|
|
@@ -5103,7 +4177,7 @@ version = "0.61.2"
|
|
|
5103
4177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5104
4178
|
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
5105
4179
|
dependencies = [
|
|
5106
|
-
"windows-link
|
|
4180
|
+
"windows-link",
|
|
5107
4181
|
]
|
|
5108
4182
|
|
|
5109
4183
|
[[package]]
|
|
@@ -5143,7 +4217,7 @@ version = "0.53.5"
|
|
|
5143
4217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5144
4218
|
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
5145
4219
|
dependencies = [
|
|
5146
|
-
"windows-link
|
|
4220
|
+
"windows-link",
|
|
5147
4221
|
"windows_aarch64_gnullvm 0.53.1",
|
|
5148
4222
|
"windows_aarch64_msvc 0.53.1",
|
|
5149
4223
|
"windows_i686_gnu 0.53.1",
|
|
@@ -5154,15 +4228,6 @@ dependencies = [
|
|
|
5154
4228
|
"windows_x86_64_msvc 0.53.1",
|
|
5155
4229
|
]
|
|
5156
4230
|
|
|
5157
|
-
[[package]]
|
|
5158
|
-
name = "windows-threading"
|
|
5159
|
-
version = "0.1.0"
|
|
5160
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5161
|
-
checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
|
|
5162
|
-
dependencies = [
|
|
5163
|
-
"windows-link 0.1.3",
|
|
5164
|
-
]
|
|
5165
|
-
|
|
5166
4231
|
[[package]]
|
|
5167
4232
|
name = "windows_aarch64_gnullvm"
|
|
5168
4233
|
version = "0.42.2"
|
|
@@ -5334,7 +4399,6 @@ dependencies = [
|
|
|
5334
4399
|
"raw-window-handle",
|
|
5335
4400
|
"redox_syscall 0.4.1",
|
|
5336
4401
|
"rustix 0.38.44",
|
|
5337
|
-
"sctk-adwaita",
|
|
5338
4402
|
"smithay-client-toolkit 0.19.2",
|
|
5339
4403
|
"smol_str",
|
|
5340
4404
|
"tracing",
|
|
@@ -5364,9 +4428,9 @@ dependencies = [
|
|
|
5364
4428
|
|
|
5365
4429
|
[[package]]
|
|
5366
4430
|
name = "wit-bindgen"
|
|
5367
|
-
version = "0.
|
|
4431
|
+
version = "0.51.0"
|
|
5368
4432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5369
|
-
checksum = "
|
|
4433
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
5370
4434
|
|
|
5371
4435
|
[[package]]
|
|
5372
4436
|
name = "writeable"
|
|
@@ -5466,118 +4530,20 @@ dependencies = [
|
|
|
5466
4530
|
"synstructure",
|
|
5467
4531
|
]
|
|
5468
4532
|
|
|
5469
|
-
[[package]]
|
|
5470
|
-
name = "zbus"
|
|
5471
|
-
version = "5.12.0"
|
|
5472
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5473
|
-
checksum = "b622b18155f7a93d1cd2dc8c01d2d6a44e08fb9ebb7b3f9e6ed101488bad6c91"
|
|
5474
|
-
dependencies = [
|
|
5475
|
-
"async-broadcast",
|
|
5476
|
-
"async-executor",
|
|
5477
|
-
"async-io",
|
|
5478
|
-
"async-lock",
|
|
5479
|
-
"async-process",
|
|
5480
|
-
"async-recursion",
|
|
5481
|
-
"async-task",
|
|
5482
|
-
"async-trait",
|
|
5483
|
-
"blocking",
|
|
5484
|
-
"enumflags2",
|
|
5485
|
-
"event-listener",
|
|
5486
|
-
"futures-core",
|
|
5487
|
-
"futures-lite",
|
|
5488
|
-
"hex",
|
|
5489
|
-
"nix",
|
|
5490
|
-
"ordered-stream",
|
|
5491
|
-
"serde",
|
|
5492
|
-
"serde_repr",
|
|
5493
|
-
"tracing",
|
|
5494
|
-
"uds_windows",
|
|
5495
|
-
"uuid",
|
|
5496
|
-
"windows-sys 0.61.2",
|
|
5497
|
-
"winnow",
|
|
5498
|
-
"zbus_macros",
|
|
5499
|
-
"zbus_names",
|
|
5500
|
-
"zvariant",
|
|
5501
|
-
]
|
|
5502
|
-
|
|
5503
|
-
[[package]]
|
|
5504
|
-
name = "zbus-lockstep"
|
|
5505
|
-
version = "0.5.2"
|
|
5506
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5507
|
-
checksum = "6998de05217a084b7578728a9443d04ea4cd80f2a0839b8d78770b76ccd45863"
|
|
5508
|
-
dependencies = [
|
|
5509
|
-
"zbus_xml",
|
|
5510
|
-
"zvariant",
|
|
5511
|
-
]
|
|
5512
|
-
|
|
5513
|
-
[[package]]
|
|
5514
|
-
name = "zbus-lockstep-macros"
|
|
5515
|
-
version = "0.5.2"
|
|
5516
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5517
|
-
checksum = "10da05367f3a7b7553c8cdf8fa91aee6b64afebe32b51c95177957efc47ca3a0"
|
|
5518
|
-
dependencies = [
|
|
5519
|
-
"proc-macro2",
|
|
5520
|
-
"quote",
|
|
5521
|
-
"syn",
|
|
5522
|
-
"zbus-lockstep",
|
|
5523
|
-
"zbus_xml",
|
|
5524
|
-
"zvariant",
|
|
5525
|
-
]
|
|
5526
|
-
|
|
5527
|
-
[[package]]
|
|
5528
|
-
name = "zbus_macros"
|
|
5529
|
-
version = "5.12.0"
|
|
5530
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5531
|
-
checksum = "1cdb94821ca8a87ca9c298b5d1cbd80e2a8b67115d99f6e4551ac49e42b6a314"
|
|
5532
|
-
dependencies = [
|
|
5533
|
-
"proc-macro-crate",
|
|
5534
|
-
"proc-macro2",
|
|
5535
|
-
"quote",
|
|
5536
|
-
"syn",
|
|
5537
|
-
"zbus_names",
|
|
5538
|
-
"zvariant",
|
|
5539
|
-
"zvariant_utils",
|
|
5540
|
-
]
|
|
5541
|
-
|
|
5542
|
-
[[package]]
|
|
5543
|
-
name = "zbus_names"
|
|
5544
|
-
version = "4.2.0"
|
|
5545
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5546
|
-
checksum = "7be68e64bf6ce8db94f63e72f0c7eb9a60d733f7e0499e628dfab0f84d6bcb97"
|
|
5547
|
-
dependencies = [
|
|
5548
|
-
"serde",
|
|
5549
|
-
"static_assertions",
|
|
5550
|
-
"winnow",
|
|
5551
|
-
"zvariant",
|
|
5552
|
-
]
|
|
5553
|
-
|
|
5554
|
-
[[package]]
|
|
5555
|
-
name = "zbus_xml"
|
|
5556
|
-
version = "5.0.2"
|
|
5557
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5558
|
-
checksum = "589e9a02bfafb9754bb2340a9e3b38f389772684c63d9637e76b1870377bec29"
|
|
5559
|
-
dependencies = [
|
|
5560
|
-
"quick-xml 0.36.2",
|
|
5561
|
-
"serde",
|
|
5562
|
-
"static_assertions",
|
|
5563
|
-
"zbus_names",
|
|
5564
|
-
"zvariant",
|
|
5565
|
-
]
|
|
5566
|
-
|
|
5567
4533
|
[[package]]
|
|
5568
4534
|
name = "zerocopy"
|
|
5569
|
-
version = "0.8.
|
|
4535
|
+
version = "0.8.33"
|
|
5570
4536
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5571
|
-
checksum = "
|
|
4537
|
+
checksum = "668f5168d10b9ee831de31933dc111a459c97ec93225beb307aed970d1372dfd"
|
|
5572
4538
|
dependencies = [
|
|
5573
4539
|
"zerocopy-derive",
|
|
5574
4540
|
]
|
|
5575
4541
|
|
|
5576
4542
|
[[package]]
|
|
5577
4543
|
name = "zerocopy-derive"
|
|
5578
|
-
version = "0.8.
|
|
4544
|
+
version = "0.8.33"
|
|
5579
4545
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5580
|
-
checksum = "
|
|
4546
|
+
checksum = "2c7962b26b0a8685668b671ee4b54d007a67d4eaf05fda79ac0ecf41e32270f1"
|
|
5581
4547
|
dependencies = [
|
|
5582
4548
|
"proc-macro2",
|
|
5583
4549
|
"quote",
|
|
@@ -5640,9 +4606,9 @@ dependencies = [
|
|
|
5640
4606
|
|
|
5641
4607
|
[[package]]
|
|
5642
4608
|
name = "zmij"
|
|
5643
|
-
version = "1.0.
|
|
4609
|
+
version = "1.0.15"
|
|
5644
4610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5645
|
-
checksum = "
|
|
4611
|
+
checksum = "94f63c051f4fe3c1509da62131a678643c5b6fbdc9273b2b79d4378ebda003d2"
|
|
5646
4612
|
|
|
5647
4613
|
[[package]]
|
|
5648
4614
|
name = "zune-core"
|
|
@@ -5652,9 +4618,9 @@ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
|
|
|
5652
4618
|
|
|
5653
4619
|
[[package]]
|
|
5654
4620
|
name = "zune-core"
|
|
5655
|
-
version = "0.5.
|
|
4621
|
+
version = "0.5.1"
|
|
5656
4622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5657
|
-
checksum = "
|
|
4623
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
5658
4624
|
|
|
5659
4625
|
[[package]]
|
|
5660
4626
|
name = "zune-inflate"
|
|
@@ -5676,49 +4642,9 @@ dependencies = [
|
|
|
5676
4642
|
|
|
5677
4643
|
[[package]]
|
|
5678
4644
|
name = "zune-jpeg"
|
|
5679
|
-
version = "0.5.
|
|
4645
|
+
version = "0.5.10"
|
|
5680
4646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5681
|
-
checksum = "
|
|
4647
|
+
checksum = "ea2db9186c0a6ad1aa7012046f3fadc8db9001691b367c510f5867f17f975752"
|
|
5682
4648
|
dependencies = [
|
|
5683
|
-
"zune-core 0.5.
|
|
5684
|
-
]
|
|
5685
|
-
|
|
5686
|
-
[[package]]
|
|
5687
|
-
name = "zvariant"
|
|
5688
|
-
version = "5.8.0"
|
|
5689
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5690
|
-
checksum = "2be61892e4f2b1772727be11630a62664a1826b62efa43a6fe7449521cb8744c"
|
|
5691
|
-
dependencies = [
|
|
5692
|
-
"endi",
|
|
5693
|
-
"enumflags2",
|
|
5694
|
-
"serde",
|
|
5695
|
-
"winnow",
|
|
5696
|
-
"zvariant_derive",
|
|
5697
|
-
"zvariant_utils",
|
|
5698
|
-
]
|
|
5699
|
-
|
|
5700
|
-
[[package]]
|
|
5701
|
-
name = "zvariant_derive"
|
|
5702
|
-
version = "5.8.0"
|
|
5703
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5704
|
-
checksum = "da58575a1b2b20766513b1ec59d8e2e68db2745379f961f86650655e862d2006"
|
|
5705
|
-
dependencies = [
|
|
5706
|
-
"proc-macro-crate",
|
|
5707
|
-
"proc-macro2",
|
|
5708
|
-
"quote",
|
|
5709
|
-
"syn",
|
|
5710
|
-
"zvariant_utils",
|
|
5711
|
-
]
|
|
5712
|
-
|
|
5713
|
-
[[package]]
|
|
5714
|
-
name = "zvariant_utils"
|
|
5715
|
-
version = "3.2.1"
|
|
5716
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
5717
|
-
checksum = "c6949d142f89f6916deca2232cf26a8afacf2b9fdc35ce766105e104478be599"
|
|
5718
|
-
dependencies = [
|
|
5719
|
-
"proc-macro2",
|
|
5720
|
-
"quote",
|
|
5721
|
-
"serde",
|
|
5722
|
-
"syn",
|
|
5723
|
-
"winnow",
|
|
4649
|
+
"zune-core 0.5.1",
|
|
5724
4650
|
]
|