cosmol-viewer 0.1.2.dev4__tar.gz → 0.1.3.dev1__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.
Files changed (31) hide show
  1. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/Cargo.lock +577 -66
  2. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/Cargo.toml +3 -5
  3. cosmol_viewer-0.1.3.dev1/PKG-INFO +6 -0
  4. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/Cargo.toml +1 -0
  5. cosmol_viewer-0.1.3.dev1/crates/core/src/lib.rs +359 -0
  6. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/scene.rs +3 -3
  7. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shader/canvas.rs +10 -17
  8. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shapes/molecules.rs +69 -25
  9. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/utils.rs +2 -1
  10. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/python/Cargo.toml +1 -0
  11. cosmol_viewer-0.1.2.dev4/PKG-INFO → cosmol_viewer-0.1.3.dev1/crates/python/README.md +17 -9
  12. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/python/src/lib.rs +150 -58
  13. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/python/src/shapes.rs +7 -7
  14. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/wasm/Cargo.toml +3 -2
  15. cosmol_viewer-0.1.3.dev1/crates/wasm/src/lib.rs +420 -0
  16. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/pyproject.toml +1 -1
  17. cosmol_viewer-0.1.2.dev4/crates/core/src/lib.rs +0 -147
  18. cosmol_viewer-0.1.2.dev4/crates/python/README.md +0 -49
  19. cosmol_viewer-0.1.2.dev4/crates/wasm/src/lib.rs +0 -245
  20. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/parser/mod.rs +0 -0
  21. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/parser/sdf.rs +0 -0
  22. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shader/bg_fragment.glsl +0 -0
  23. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shader/bg_vertex.glsl +0 -0
  24. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shader/fragment.glsl +0 -0
  25. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shader/mod.rs +0 -0
  26. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shader/vertex.glsl +0 -0
  27. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shapes/mod.rs +0 -0
  28. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shapes/sphere.rs +0 -0
  29. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/core/src/shapes/stick.rs +0 -0
  30. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/python/build.rs +0 -0
  31. {cosmol_viewer-0.1.2.dev4 → cosmol_viewer-0.1.3.dev1}/crates/python/src/parser.rs +0 -0
@@ -121,12 +121,21 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
121
121
  checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
122
122
  dependencies = [
123
123
  "cfg-if",
124
- "getrandom",
124
+ "getrandom 0.3.3",
125
125
  "once_cell",
126
126
  "version_check",
127
127
  "zerocopy",
128
128
  ]
129
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
+
130
139
  [[package]]
131
140
  name = "android-activity"
132
141
  version = "0.6.0"
@@ -154,6 +163,18 @@ version = "0.2.2"
154
163
  source = "registry+https://github.com/rust-lang/crates.io-index"
155
164
  checksum = "fc7eb209b1518d6bb87b283c20095f5228ecda460da70b44f0802523dea6da04"
156
165
 
166
+ [[package]]
167
+ name = "anyhow"
168
+ version = "1.0.98"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
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"
177
+
157
178
  [[package]]
158
179
  name = "arboard"
159
180
  version = "3.6.0"
@@ -174,6 +195,17 @@ dependencies = [
174
195
  "x11rb",
175
196
  ]
176
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
+
177
209
  [[package]]
178
210
  name = "arrayref"
179
211
  version = "0.3.9"
@@ -387,6 +419,29 @@ version = "1.5.0"
387
419
  source = "registry+https://github.com/rust-lang/crates.io-index"
388
420
  checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
389
421
 
422
+ [[package]]
423
+ name = "av1-grain"
424
+ version = "0.2.4"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "4f3efb2ca85bc610acfa917b5aaa36f3fcbebed5b3182d7f877b02531c4b80c8"
427
+ dependencies = [
428
+ "anyhow",
429
+ "arrayvec",
430
+ "log",
431
+ "nom",
432
+ "num-rational",
433
+ "v_frame",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "avif-serialize"
438
+ version = "0.8.5"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "2ea8ef51aced2b9191c08197f55450d830876d9933f8f48a429b354f1d496b42"
441
+ dependencies = [
442
+ "arrayvec",
443
+ ]
444
+
390
445
  [[package]]
391
446
  name = "base64"
392
447
  version = "0.22.1"
@@ -408,6 +463,12 @@ version = "0.8.0"
408
463
  source = "registry+https://github.com/rust-lang/crates.io-index"
409
464
  checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
410
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
+
411
472
  [[package]]
412
473
  name = "bitflags"
413
474
  version = "1.3.2"
@@ -424,13 +485,10 @@ dependencies = [
424
485
  ]
425
486
 
426
487
  [[package]]
427
- name = "block-buffer"
428
- version = "0.10.4"
488
+ name = "bitstream-io"
489
+ version = "2.6.0"
429
490
  source = "registry+https://github.com/rust-lang/crates.io-index"
430
- checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
431
- dependencies = [
432
- "generic-array",
433
- ]
491
+ checksum = "6099cdc01846bc367c4e7dd630dc5966dccf36b652fae7a74e17b640411a91b2"
434
492
 
435
493
  [[package]]
436
494
  name = "block2"
@@ -454,6 +512,12 @@ dependencies = [
454
512
  "piper",
455
513
  ]
456
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
+
457
521
  [[package]]
458
522
  name = "bumpalo"
459
523
  version = "3.19.0"
@@ -535,6 +599,16 @@ version = "1.1.0"
535
599
  source = "registry+https://github.com/rust-lang/crates.io-index"
536
600
  checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
537
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
+
538
612
  [[package]]
539
613
  name = "cfg-if"
540
614
  version = "1.0.1"
@@ -576,6 +650,12 @@ dependencies = [
576
650
  "unicode-width",
577
651
  ]
578
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
+
579
659
  [[package]]
580
660
  name = "combine"
581
661
  version = "4.6.7"
@@ -647,28 +727,27 @@ dependencies = [
647
727
 
648
728
  [[package]]
649
729
  name = "cosmol_viewer"
650
- version = "0.1.2-nightly.4"
730
+ version = "0.1.3-nightly.1"
651
731
  dependencies = [
652
732
  "bytemuck",
653
733
  "cosmol_viewer_core",
654
734
  "eframe",
655
735
  "egui_extras",
656
- "hex",
657
736
  "serde",
658
737
  "serde_json",
659
- "sha2",
660
738
  "wasm-bindgen-futures",
661
739
  ]
662
740
 
663
741
  [[package]]
664
742
  name = "cosmol_viewer_core"
665
- version = "0.1.2-nightly.4"
743
+ version = "0.1.3-nightly.1"
666
744
  dependencies = [
667
745
  "bytemuck",
668
746
  "eframe",
669
747
  "egui-winit",
670
748
  "egui_extras",
671
749
  "glam",
750
+ "image",
672
751
  "once_cell",
673
752
  "serde",
674
753
  "serde_json",
@@ -691,11 +770,12 @@ dependencies = [
691
770
 
692
771
  [[package]]
693
772
  name = "cosmol_viewer_wasm"
694
- version = "0.1.2-nightly.4"
773
+ version = "0.1.3-nightly.1"
695
774
  dependencies = [
696
775
  "base64",
697
776
  "cosmol_viewer_core",
698
777
  "eframe",
778
+ "gloo-timers",
699
779
  "log",
700
780
  "pyo3",
701
781
  "serde",
@@ -707,21 +787,31 @@ dependencies = [
707
787
  ]
708
788
 
709
789
  [[package]]
710
- name = "cpufeatures"
711
- version = "0.2.17"
790
+ name = "crc32fast"
791
+ version = "1.5.0"
712
792
  source = "registry+https://github.com/rust-lang/crates.io-index"
713
- checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
793
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
714
794
  dependencies = [
715
- "libc",
795
+ "cfg-if",
716
796
  ]
717
797
 
718
798
  [[package]]
719
- name = "crc32fast"
720
- version = "1.5.0"
799
+ name = "crossbeam-deque"
800
+ version = "0.8.6"
721
801
  source = "registry+https://github.com/rust-lang/crates.io-index"
722
- checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
802
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
723
803
  dependencies = [
724
- "cfg-if",
804
+ "crossbeam-epoch",
805
+ "crossbeam-utils",
806
+ ]
807
+
808
+ [[package]]
809
+ name = "crossbeam-epoch"
810
+ version = "0.9.18"
811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
812
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
813
+ dependencies = [
814
+ "crossbeam-utils",
725
815
  ]
726
816
 
727
817
  [[package]]
@@ -736,32 +826,12 @@ version = "0.2.4"
736
826
  source = "registry+https://github.com/rust-lang/crates.io-index"
737
827
  checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
738
828
 
739
- [[package]]
740
- name = "crypto-common"
741
- version = "0.1.6"
742
- source = "registry+https://github.com/rust-lang/crates.io-index"
743
- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
744
- dependencies = [
745
- "generic-array",
746
- "typenum",
747
- ]
748
-
749
829
  [[package]]
750
830
  name = "cursor-icon"
751
831
  version = "1.2.0"
752
832
  source = "registry+https://github.com/rust-lang/crates.io-index"
753
833
  checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
754
834
 
755
- [[package]]
756
- name = "digest"
757
- version = "0.10.7"
758
- source = "registry+https://github.com/rust-lang/crates.io-index"
759
- checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
760
- dependencies = [
761
- "block-buffer",
762
- "crypto-common",
763
- ]
764
-
765
835
  [[package]]
766
836
  name = "dispatch"
767
837
  version = "0.2.0"
@@ -955,6 +1025,12 @@ dependencies = [
955
1025
  "winit",
956
1026
  ]
957
1027
 
1028
+ [[package]]
1029
+ name = "either"
1030
+ version = "1.15.0"
1031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1032
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1033
+
958
1034
  [[package]]
959
1035
  name = "emath"
960
1036
  version = "0.32.0"
@@ -1035,6 +1111,26 @@ version = "0.32.0"
1035
1111
  source = "registry+https://github.com/rust-lang/crates.io-index"
1036
1112
  checksum = "e8495e11ed527dff39663b8c36b6c2b2799d7e4287fb90556e455d72eca0b4d3"
1037
1113
 
1114
+ [[package]]
1115
+ name = "equator"
1116
+ version = "0.4.2"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "4711b213838dfee0117e3be6ac926007d7f433d7bbe33595975d4190cb07e6fc"
1119
+ dependencies = [
1120
+ "equator-macro",
1121
+ ]
1122
+
1123
+ [[package]]
1124
+ name = "equator-macro"
1125
+ version = "0.4.2"
1126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1127
+ checksum = "44f23cf4b44bfce11a86ace86f8a73ffdec849c9fd00a386a53d278bd9e81fb3"
1128
+ dependencies = [
1129
+ "proc-macro2",
1130
+ "quote",
1131
+ "syn",
1132
+ ]
1133
+
1038
1134
  [[package]]
1039
1135
  name = "equivalent"
1040
1136
  version = "1.0.2"
@@ -1078,6 +1174,21 @@ dependencies = [
1078
1174
  "pin-project-lite",
1079
1175
  ]
1080
1176
 
1177
+ [[package]]
1178
+ name = "exr"
1179
+ version = "1.73.0"
1180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1181
+ checksum = "f83197f59927b46c04a183a619b7c29df34e63e63c7869320862268c0ef687e0"
1182
+ dependencies = [
1183
+ "bit_field",
1184
+ "half",
1185
+ "lebe",
1186
+ "miniz_oxide",
1187
+ "rayon-core",
1188
+ "smallvec",
1189
+ "zune-inflate",
1190
+ ]
1191
+
1081
1192
  [[package]]
1082
1193
  name = "fastrand"
1083
1194
  version = "2.3.0"
@@ -1145,6 +1256,15 @@ dependencies = [
1145
1256
  "percent-encoding",
1146
1257
  ]
1147
1258
 
1259
+ [[package]]
1260
+ name = "futures-channel"
1261
+ version = "0.3.31"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1264
+ dependencies = [
1265
+ "futures-core",
1266
+ ]
1267
+
1148
1268
  [[package]]
1149
1269
  name = "futures-core"
1150
1270
  version = "0.3.31"
@@ -1202,23 +1322,24 @@ dependencies = [
1202
1322
  ]
1203
1323
 
1204
1324
  [[package]]
1205
- name = "generic-array"
1206
- version = "0.14.7"
1325
+ name = "gethostname"
1326
+ version = "0.4.3"
1207
1327
  source = "registry+https://github.com/rust-lang/crates.io-index"
1208
- checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1328
+ checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
1209
1329
  dependencies = [
1210
- "typenum",
1211
- "version_check",
1330
+ "libc",
1331
+ "windows-targets 0.48.5",
1212
1332
  ]
1213
1333
 
1214
1334
  [[package]]
1215
- name = "gethostname"
1216
- version = "0.4.3"
1335
+ name = "getrandom"
1336
+ version = "0.2.16"
1217
1337
  source = "registry+https://github.com/rust-lang/crates.io-index"
1218
- checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
1338
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1219
1339
  dependencies = [
1340
+ "cfg-if",
1220
1341
  "libc",
1221
- "windows-targets 0.48.5",
1342
+ "wasi 0.11.1+wasi-snapshot-preview1",
1222
1343
  ]
1223
1344
 
1224
1345
  [[package]]
@@ -1230,7 +1351,17 @@ dependencies = [
1230
1351
  "cfg-if",
1231
1352
  "libc",
1232
1353
  "r-efi",
1233
- "wasi",
1354
+ "wasi 0.14.2+wasi-0.2.4",
1355
+ ]
1356
+
1357
+ [[package]]
1358
+ name = "gif"
1359
+ version = "0.13.3"
1360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1361
+ checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
1362
+ dependencies = [
1363
+ "color_quant",
1364
+ "weezl",
1234
1365
  ]
1235
1366
 
1236
1367
  [[package]]
@@ -1253,6 +1384,18 @@ dependencies = [
1253
1384
  "serde",
1254
1385
  ]
1255
1386
 
1387
+ [[package]]
1388
+ name = "gloo-timers"
1389
+ version = "0.3.0"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
1392
+ dependencies = [
1393
+ "futures-channel",
1394
+ "futures-core",
1395
+ "js-sys",
1396
+ "wasm-bindgen",
1397
+ ]
1398
+
1256
1399
  [[package]]
1257
1400
  name = "glow"
1258
1401
  version = "0.16.0"
@@ -1490,11 +1633,37 @@ checksum = "db35664ce6b9810857a38a906215e75a9c879f0696556a39f59c62829710251a"
1490
1633
  dependencies = [
1491
1634
  "bytemuck",
1492
1635
  "byteorder-lite",
1636
+ "color_quant",
1637
+ "exr",
1638
+ "gif",
1639
+ "image-webp",
1493
1640
  "num-traits",
1494
1641
  "png",
1642
+ "qoi",
1643
+ "ravif",
1644
+ "rayon",
1645
+ "rgb",
1495
1646
  "tiff",
1647
+ "zune-core",
1648
+ "zune-jpeg",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "image-webp"
1653
+ version = "0.2.3"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "f6970fe7a5300b4b42e62c52efa0187540a5bef546c60edaf554ef595d2e6f0b"
1656
+ dependencies = [
1657
+ "byteorder-lite",
1658
+ "quick-error",
1496
1659
  ]
1497
1660
 
1661
+ [[package]]
1662
+ name = "imgref"
1663
+ version = "1.11.0"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "d0263a3d970d5c054ed9312c0057b4f3bde9c0b33836d3637361d4a9e6e7a408"
1666
+
1498
1667
  [[package]]
1499
1668
  name = "indexmap"
1500
1669
  version = "2.10.0"
@@ -1511,6 +1680,26 @@ version = "2.0.6"
1511
1680
  source = "registry+https://github.com/rust-lang/crates.io-index"
1512
1681
  checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1513
1682
 
1683
+ [[package]]
1684
+ name = "interpolate_name"
1685
+ version = "0.2.4"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "c34819042dc3d3971c46c2190835914dfbe0c3c13f61449b2997f4e9722dfa60"
1688
+ dependencies = [
1689
+ "proc-macro2",
1690
+ "quote",
1691
+ "syn",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "itertools"
1696
+ version = "0.12.1"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1699
+ dependencies = [
1700
+ "either",
1701
+ ]
1702
+
1514
1703
  [[package]]
1515
1704
  name = "itoa"
1516
1705
  version = "1.0.15"
@@ -1545,7 +1734,7 @@ version = "0.1.33"
1545
1734
  source = "registry+https://github.com/rust-lang/crates.io-index"
1546
1735
  checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1547
1736
  dependencies = [
1548
- "getrandom",
1737
+ "getrandom 0.3.3",
1549
1738
  "libc",
1550
1739
  ]
1551
1740
 
@@ -1571,12 +1760,28 @@ version = "3.1.0"
1571
1760
  source = "registry+https://github.com/rust-lang/crates.io-index"
1572
1761
  checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc"
1573
1762
 
1763
+ [[package]]
1764
+ name = "lebe"
1765
+ version = "0.5.2"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "03087c2bad5e1034e8cace5926dec053fb3790248370865f5117a7d0213354c8"
1768
+
1574
1769
  [[package]]
1575
1770
  name = "libc"
1576
1771
  version = "0.2.174"
1577
1772
  source = "registry+https://github.com/rust-lang/crates.io-index"
1578
1773
  checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
1579
1774
 
1775
+ [[package]]
1776
+ name = "libfuzzer-sys"
1777
+ version = "0.4.10"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "5037190e1f70cbeef565bd267599242926f724d3b8a9f510fd7e0b540cfa4404"
1780
+ dependencies = [
1781
+ "arbitrary",
1782
+ "cc",
1783
+ ]
1784
+
1580
1785
  [[package]]
1581
1786
  name = "libloading"
1582
1787
  version = "0.8.8"
@@ -1644,6 +1849,25 @@ version = "0.4.27"
1644
1849
  source = "registry+https://github.com/rust-lang/crates.io-index"
1645
1850
  checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1646
1851
 
1852
+ [[package]]
1853
+ name = "loop9"
1854
+ version = "0.1.5"
1855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1856
+ checksum = "0fae87c125b03c1d2c0150c90365d7d6bcc53fb73a9acaef207d2d065860f062"
1857
+ dependencies = [
1858
+ "imgref",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "maybe-rayon"
1863
+ version = "0.1.1"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "8ea1f30cedd69f0a2954655f7188c6a834246d2bcf1e315e2ac40c4b24dc9519"
1866
+ dependencies = [
1867
+ "cfg-if",
1868
+ "rayon",
1869
+ ]
1870
+
1647
1871
  [[package]]
1648
1872
  name = "memchr"
1649
1873
  version = "2.7.5"
@@ -1686,6 +1910,12 @@ dependencies = [
1686
1910
  "unicase",
1687
1911
  ]
1688
1912
 
1913
+ [[package]]
1914
+ name = "minimal-lexical"
1915
+ version = "0.2.1"
1916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1917
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1918
+
1689
1919
  [[package]]
1690
1920
  name = "miniz_oxide"
1691
1921
  version = "0.8.9"
@@ -1750,6 +1980,12 @@ dependencies = [
1750
1980
  "jni-sys",
1751
1981
  ]
1752
1982
 
1983
+ [[package]]
1984
+ name = "new_debug_unreachable"
1985
+ version = "1.0.6"
1986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1987
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1988
+
1753
1989
  [[package]]
1754
1990
  name = "nix"
1755
1991
  version = "0.30.1"
@@ -1769,6 +2005,63 @@ version = "0.2.0"
1769
2005
  source = "registry+https://github.com/rust-lang/crates.io-index"
1770
2006
  checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1771
2007
 
2008
+ [[package]]
2009
+ name = "nom"
2010
+ version = "7.1.3"
2011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2012
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2013
+ dependencies = [
2014
+ "memchr",
2015
+ "minimal-lexical",
2016
+ ]
2017
+
2018
+ [[package]]
2019
+ name = "noop_proc_macro"
2020
+ version = "0.3.0"
2021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2022
+ checksum = "0676bb32a98c1a483ce53e500a81ad9c3d5b3f7c920c28c24e9cb0980d0b5bc8"
2023
+
2024
+ [[package]]
2025
+ name = "num-bigint"
2026
+ version = "0.4.6"
2027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2028
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2029
+ dependencies = [
2030
+ "num-integer",
2031
+ "num-traits",
2032
+ ]
2033
+
2034
+ [[package]]
2035
+ name = "num-derive"
2036
+ version = "0.4.2"
2037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2038
+ checksum = "ed3955f1a9c7c0c15e092f9c887db08b1fc683305fdf6eb6684f22555355e202"
2039
+ dependencies = [
2040
+ "proc-macro2",
2041
+ "quote",
2042
+ "syn",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "num-integer"
2047
+ version = "0.1.46"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2050
+ dependencies = [
2051
+ "num-traits",
2052
+ ]
2053
+
2054
+ [[package]]
2055
+ name = "num-rational"
2056
+ version = "0.4.2"
2057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2058
+ checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2059
+ dependencies = [
2060
+ "num-bigint",
2061
+ "num-integer",
2062
+ "num-traits",
2063
+ ]
2064
+
1772
2065
  [[package]]
1773
2066
  name = "num-traits"
1774
2067
  version = "0.2.19"
@@ -2135,6 +2428,12 @@ dependencies = [
2135
2428
  "windows-targets 0.52.6",
2136
2429
  ]
2137
2430
 
2431
+ [[package]]
2432
+ name = "paste"
2433
+ version = "1.0.15"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2436
+
2138
2437
  [[package]]
2139
2438
  name = "percent-encoding"
2140
2439
  version = "2.3.1"
@@ -2277,6 +2576,15 @@ dependencies = [
2277
2576
  "zerovec",
2278
2577
  ]
2279
2578
 
2579
+ [[package]]
2580
+ name = "ppv-lite86"
2581
+ version = "0.2.21"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2584
+ dependencies = [
2585
+ "zerocopy",
2586
+ ]
2587
+
2280
2588
  [[package]]
2281
2589
  name = "proc-macro-crate"
2282
2590
  version = "3.3.0"
@@ -2300,6 +2608,19 @@ name = "profiling"
2300
2608
  version = "1.0.17"
2301
2609
  source = "registry+https://github.com/rust-lang/crates.io-index"
2302
2610
  checksum = "3eb8486b569e12e2c32ad3e204dbaba5e4b5b216e9367044f25f1dba42341773"
2611
+ dependencies = [
2612
+ "profiling-procmacros",
2613
+ ]
2614
+
2615
+ [[package]]
2616
+ name = "profiling-procmacros"
2617
+ version = "1.0.17"
2618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2619
+ checksum = "52717f9a02b6965224f95ca2a81e2e0c5c43baacd28ca057577988930b6c3d5b"
2620
+ dependencies = [
2621
+ "quote",
2622
+ "syn",
2623
+ ]
2303
2624
 
2304
2625
  [[package]]
2305
2626
  name = "pyo3"
@@ -2325,7 +2646,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
2646
  checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
2326
2647
  dependencies = [
2327
2648
  "once_cell",
2328
- "target-lexicon",
2649
+ "target-lexicon 0.13.2",
2329
2650
  ]
2330
2651
 
2331
2652
  [[package]]
@@ -2363,6 +2684,21 @@ dependencies = [
2363
2684
  "syn",
2364
2685
  ]
2365
2686
 
2687
+ [[package]]
2688
+ name = "qoi"
2689
+ version = "0.4.1"
2690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2691
+ checksum = "7f6d64c71eb498fe9eae14ce4ec935c555749aef511cca85b5568910d6e48001"
2692
+ dependencies = [
2693
+ "bytemuck",
2694
+ ]
2695
+
2696
+ [[package]]
2697
+ name = "quick-error"
2698
+ version = "2.0.1"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2701
+
2366
2702
  [[package]]
2367
2703
  name = "quick-xml"
2368
2704
  version = "0.36.2"
@@ -2403,6 +2739,18 @@ version = "0.8.5"
2403
2739
  source = "registry+https://github.com/rust-lang/crates.io-index"
2404
2740
  checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2405
2741
  dependencies = [
2742
+ "libc",
2743
+ "rand_chacha",
2744
+ "rand_core",
2745
+ ]
2746
+
2747
+ [[package]]
2748
+ name = "rand_chacha"
2749
+ version = "0.3.1"
2750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2751
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2752
+ dependencies = [
2753
+ "ppv-lite86",
2406
2754
  "rand_core",
2407
2755
  ]
2408
2756
 
@@ -2411,6 +2759,59 @@ name = "rand_core"
2411
2759
  version = "0.6.4"
2412
2760
  source = "registry+https://github.com/rust-lang/crates.io-index"
2413
2761
  checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2762
+ dependencies = [
2763
+ "getrandom 0.2.16",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "rav1e"
2768
+ version = "0.7.1"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "cd87ce80a7665b1cce111f8a16c1f3929f6547ce91ade6addf4ec86a8dda5ce9"
2771
+ dependencies = [
2772
+ "arbitrary",
2773
+ "arg_enum_proc_macro",
2774
+ "arrayvec",
2775
+ "av1-grain",
2776
+ "bitstream-io",
2777
+ "built",
2778
+ "cfg-if",
2779
+ "interpolate_name",
2780
+ "itertools",
2781
+ "libc",
2782
+ "libfuzzer-sys",
2783
+ "log",
2784
+ "maybe-rayon",
2785
+ "new_debug_unreachable",
2786
+ "noop_proc_macro",
2787
+ "num-derive",
2788
+ "num-traits",
2789
+ "once_cell",
2790
+ "paste",
2791
+ "profiling",
2792
+ "rand",
2793
+ "rand_chacha",
2794
+ "simd_helpers",
2795
+ "system-deps",
2796
+ "thiserror 1.0.69",
2797
+ "v_frame",
2798
+ "wasm-bindgen",
2799
+ ]
2800
+
2801
+ [[package]]
2802
+ name = "ravif"
2803
+ version = "0.11.20"
2804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2805
+ checksum = "5825c26fddd16ab9f515930d49028a630efec172e903483c94796cfe31893e6b"
2806
+ dependencies = [
2807
+ "avif-serialize",
2808
+ "imgref",
2809
+ "loop9",
2810
+ "quick-error",
2811
+ "rav1e",
2812
+ "rayon",
2813
+ "rgb",
2814
+ ]
2414
2815
 
2415
2816
  [[package]]
2416
2817
  name = "raw-window-handle"
@@ -2418,6 +2819,26 @@ version = "0.6.2"
2418
2819
  source = "registry+https://github.com/rust-lang/crates.io-index"
2419
2820
  checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539"
2420
2821
 
2822
+ [[package]]
2823
+ name = "rayon"
2824
+ version = "1.10.0"
2825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2826
+ checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
2827
+ dependencies = [
2828
+ "either",
2829
+ "rayon-core",
2830
+ ]
2831
+
2832
+ [[package]]
2833
+ name = "rayon-core"
2834
+ version = "1.12.1"
2835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2836
+ checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
2837
+ dependencies = [
2838
+ "crossbeam-deque",
2839
+ "crossbeam-utils",
2840
+ ]
2841
+
2421
2842
  [[package]]
2422
2843
  name = "redox_syscall"
2423
2844
  version = "0.4.1"
@@ -2442,6 +2863,12 @@ version = "1.1.0"
2442
2863
  source = "registry+https://github.com/rust-lang/crates.io-index"
2443
2864
  checksum = "19b30a45b0cd0bcca8037f3d0dc3421eaf95327a17cad11964fb8179b4fc4832"
2444
2865
 
2866
+ [[package]]
2867
+ name = "rgb"
2868
+ version = "0.8.52"
2869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2870
+ checksum = "0c6a884d2998352bb4daf0183589aec883f16a6da1f4dde84d8e2e9a5409a1ce"
2871
+
2445
2872
  [[package]]
2446
2873
  name = "rustc-hash"
2447
2874
  version = "1.1.0"
@@ -2570,14 +2997,12 @@ dependencies = [
2570
2997
  ]
2571
2998
 
2572
2999
  [[package]]
2573
- name = "sha2"
2574
- version = "0.10.9"
3000
+ name = "serde_spanned"
3001
+ version = "0.6.9"
2575
3002
  source = "registry+https://github.com/rust-lang/crates.io-index"
2576
- checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3003
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2577
3004
  dependencies = [
2578
- "cfg-if",
2579
- "cpufeatures",
2580
- "digest",
3005
+ "serde",
2581
3006
  ]
2582
3007
 
2583
3008
  [[package]]
@@ -2601,6 +3026,15 @@ version = "0.3.7"
2601
3026
  source = "registry+https://github.com/rust-lang/crates.io-index"
2602
3027
  checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2603
3028
 
3029
+ [[package]]
3030
+ name = "simd_helpers"
3031
+ version = "0.1.0"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "95890f873bec569a0362c235787f3aca6e1e887302ba4840839bcc6459c42da6"
3034
+ dependencies = [
3035
+ "quote",
3036
+ ]
3037
+
2604
3038
  [[package]]
2605
3039
  name = "siphasher"
2606
3040
  version = "1.0.1"
@@ -2735,6 +3169,25 @@ dependencies = [
2735
3169
  "syn",
2736
3170
  ]
2737
3171
 
3172
+ [[package]]
3173
+ name = "system-deps"
3174
+ version = "6.2.2"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349"
3177
+ dependencies = [
3178
+ "cfg-expr",
3179
+ "heck",
3180
+ "pkg-config",
3181
+ "toml",
3182
+ "version-compare",
3183
+ ]
3184
+
3185
+ [[package]]
3186
+ name = "target-lexicon"
3187
+ version = "0.12.16"
3188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3189
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
3190
+
2738
3191
  [[package]]
2739
3192
  name = "target-lexicon"
2740
3193
  version = "0.13.2"
@@ -2748,7 +3201,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
3201
  checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
2749
3202
  dependencies = [
2750
3203
  "fastrand",
2751
- "getrandom",
3204
+ "getrandom 0.3.3",
2752
3205
  "once_cell",
2753
3206
  "rustix 1.0.8",
2754
3207
  "windows-sys 0.59.0",
@@ -2849,11 +3302,26 @@ dependencies = [
2849
3302
  "zerovec",
2850
3303
  ]
2851
3304
 
3305
+ [[package]]
3306
+ name = "toml"
3307
+ version = "0.8.23"
3308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3309
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
3310
+ dependencies = [
3311
+ "serde",
3312
+ "serde_spanned",
3313
+ "toml_datetime",
3314
+ "toml_edit",
3315
+ ]
3316
+
2852
3317
  [[package]]
2853
3318
  name = "toml_datetime"
2854
3319
  version = "0.6.11"
2855
3320
  source = "registry+https://github.com/rust-lang/crates.io-index"
2856
3321
  checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
3322
+ dependencies = [
3323
+ "serde",
3324
+ ]
2857
3325
 
2858
3326
  [[package]]
2859
3327
  name = "toml_edit"
@@ -2862,6 +3330,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
3330
  checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2863
3331
  dependencies = [
2864
3332
  "indexmap",
3333
+ "serde",
3334
+ "serde_spanned",
2865
3335
  "toml_datetime",
2866
3336
  "winnow",
2867
3337
  ]
@@ -2912,12 +3382,6 @@ dependencies = [
2912
3382
  "rustc-hash 2.1.1",
2913
3383
  ]
2914
3384
 
2915
- [[package]]
2916
- name = "typenum"
2917
- version = "1.18.0"
2918
- source = "registry+https://github.com/rust-lang/crates.io-index"
2919
- checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2920
-
2921
3385
  [[package]]
2922
3386
  name = "uds_windows"
2923
3387
  version = "1.1.0"
@@ -2982,11 +3446,28 @@ version = "1.17.0"
2982
3446
  source = "registry+https://github.com/rust-lang/crates.io-index"
2983
3447
  checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
2984
3448
  dependencies = [
2985
- "getrandom",
3449
+ "getrandom 0.3.3",
2986
3450
  "js-sys",
2987
3451
  "wasm-bindgen",
2988
3452
  ]
2989
3453
 
3454
+ [[package]]
3455
+ name = "v_frame"
3456
+ version = "0.3.9"
3457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3458
+ checksum = "666b7727c8875d6ab5db9533418d7c764233ac9c0cff1d469aec8fa127597be2"
3459
+ dependencies = [
3460
+ "aligned-vec",
3461
+ "num-traits",
3462
+ "wasm-bindgen",
3463
+ ]
3464
+
3465
+ [[package]]
3466
+ name = "version-compare"
3467
+ version = "0.2.0"
3468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3469
+ checksum = "852e951cb7832cb45cb1169900d19760cfa39b82bc0ea9c0e5a14ae88411c98b"
3470
+
2990
3471
  [[package]]
2991
3472
  name = "version_check"
2992
3473
  version = "0.9.5"
@@ -3003,6 +3484,12 @@ dependencies = [
3003
3484
  "winapi-util",
3004
3485
  ]
3005
3486
 
3487
+ [[package]]
3488
+ name = "wasi"
3489
+ version = "0.11.1+wasi-snapshot-preview1"
3490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3491
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3492
+
3006
3493
  [[package]]
3007
3494
  name = "wasi"
3008
3495
  version = "0.14.2+wasi-0.2.4"
@@ -4085,6 +4572,30 @@ dependencies = [
4085
4572
  "syn",
4086
4573
  ]
4087
4574
 
4575
+ [[package]]
4576
+ name = "zune-core"
4577
+ version = "0.4.12"
4578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4579
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
4580
+
4581
+ [[package]]
4582
+ name = "zune-inflate"
4583
+ version = "0.2.54"
4584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4585
+ checksum = "73ab332fe2f6680068f3582b16a24f90ad7096d5d39b974d1c0aff0125116f02"
4586
+ dependencies = [
4587
+ "simd-adler32",
4588
+ ]
4589
+
4590
+ [[package]]
4591
+ name = "zune-jpeg"
4592
+ version = "0.4.19"
4593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4594
+ checksum = "2c9e525af0a6a658e031e95f14b7f889976b74a11ba0eca5a5fc9ac8a1c43a6a"
4595
+ dependencies = [
4596
+ "zune-core",
4597
+ ]
4598
+
4088
4599
  [[package]]
4089
4600
  name = "zvariant"
4090
4601
  version = "5.6.0"