dynimg 0.1.11__tar.gz → 0.1.13__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 (47) hide show
  1. {dynimg-0.1.11 → dynimg-0.1.13}/Cargo.lock +669 -29
  2. {dynimg-0.1.11 → dynimg-0.1.13}/Cargo.toml +6 -6
  3. {dynimg-0.1.11 → dynimg-0.1.13}/Makefile +6 -0
  4. {dynimg-0.1.11 → dynimg-0.1.13}/PKG-INFO +13 -1
  5. {dynimg-0.1.11 → dynimg-0.1.13}/README.md +12 -0
  6. {dynimg-0.1.11 → dynimg-0.1.13}/pyproject.toml +1 -1
  7. dynimg-0.1.13/scripts/release.sh +122 -0
  8. {dynimg-0.1.11 → dynimg-0.1.13}/scripts/render-examples.sh +18 -7
  9. {dynimg-0.1.11 → dynimg-0.1.13}/src/lib.rs +9 -7
  10. {dynimg-0.1.11 → dynimg-0.1.13}/.claude/settings.local.json +0 -0
  11. {dynimg-0.1.11 → dynimg-0.1.13}/.github/workflows/build-wheels.yml +0 -0
  12. {dynimg-0.1.11 → dynimg-0.1.13}/.github/workflows/ci.yml +0 -0
  13. {dynimg-0.1.11 → dynimg-0.1.13}/.github/workflows/release.yml +0 -0
  14. {dynimg-0.1.11 → dynimg-0.1.13}/.gitignore +0 -0
  15. {dynimg-0.1.11 → dynimg-0.1.13}/.pearls/CLAUDE.md +0 -0
  16. {dynimg-0.1.11 → dynimg-0.1.13}/.pearls/issues.jsonl +0 -0
  17. {dynimg-0.1.11 → dynimg-0.1.13}/CLAUDE.md +0 -0
  18. {dynimg-0.1.11 → dynimg-0.1.13}/LICENSE +0 -0
  19. {dynimg-0.1.11 → dynimg-0.1.13}/codebook.toml +0 -0
  20. {dynimg-0.1.11 → dynimg-0.1.13}/examples/assets/PlaywriteINGuides-Regular.ttf +0 -0
  21. {dynimg-0.1.11 → dynimg-0.1.13}/examples/assets/RobotoMono-Bold.ttf +0 -0
  22. {dynimg-0.1.11 → dynimg-0.1.13}/examples/assets/RobotoMono-Bold.woff2 +0 -0
  23. {dynimg-0.1.11 → dynimg-0.1.13}/examples/assets/logo.svg +0 -0
  24. {dynimg-0.1.11 → dynimg-0.1.13}/examples/assets/servo.css +0 -0
  25. {dynimg-0.1.11 → dynimg-0.1.13}/examples/assets/style.css +0 -0
  26. {dynimg-0.1.11 → dynimg-0.1.13}/examples/google-fonts.html +0 -0
  27. {dynimg-0.1.11 → dynimg-0.1.13}/examples/inline-only.html +0 -0
  28. {dynimg-0.1.11 → dynimg-0.1.13}/examples/local-assets.html +0 -0
  29. {dynimg-0.1.11 → dynimg-0.1.13}/examples/local-font-woff2.html +0 -0
  30. {dynimg-0.1.11 → dynimg-0.1.13}/examples/local-font.html +0 -0
  31. {dynimg-0.1.11 → dynimg-0.1.13}/examples/mixed-assets.html +0 -0
  32. {dynimg-0.1.11 → dynimg-0.1.13}/examples/og-image.html +0 -0
  33. {dynimg-0.1.11 → dynimg-0.1.13}/examples/quote.html +0 -0
  34. {dynimg-0.1.11 → dynimg-0.1.13}/examples/remote-image.html +0 -0
  35. {dynimg-0.1.11 → dynimg-0.1.13}/examples/servo.html +0 -0
  36. {dynimg-0.1.11 → dynimg-0.1.13}/examples/social-card.html +0 -0
  37. {dynimg-0.1.11 → dynimg-0.1.13}/python/dynimg/__init__.py +0 -0
  38. {dynimg-0.1.11 → dynimg-0.1.13}/python/dynimg/__init__.pyi +0 -0
  39. {dynimg-0.1.11 → dynimg-0.1.13}/python/dynimg/py.typed +0 -0
  40. {dynimg-0.1.11 → dynimg-0.1.13}/src/main.rs +0 -0
  41. {dynimg-0.1.11 → dynimg-0.1.13}/src/python.rs +0 -0
  42. {dynimg-0.1.11 → dynimg-0.1.13}/test_wheels/.gitignore +0 -0
  43. {dynimg-0.1.11 → dynimg-0.1.13}/test_wheels/README.md +0 -0
  44. {dynimg-0.1.11 → dynimg-0.1.13}/test_wheels/debug_parser.py +0 -0
  45. {dynimg-0.1.11 → dynimg-0.1.13}/test_wheels/debug_verbose.py +0 -0
  46. {dynimg-0.1.11 → dynimg-0.1.13}/test_wheels/test_dynimg.py +0 -0
  47. {dynimg-0.1.11 → dynimg-0.1.13}/test_wheels/test_from_ci.sh +0 -0
@@ -124,7 +124,7 @@ dependencies = [
124
124
  "image",
125
125
  "kurbo",
126
126
  "peniko",
127
- "thiserror",
127
+ "thiserror 2.0.18",
128
128
  "usvg",
129
129
  ]
130
130
 
@@ -163,6 +163,17 @@ version = "0.7.6"
163
163
  source = "registry+https://github.com/rust-lang/crates.io-index"
164
164
  checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
165
165
 
166
+ [[package]]
167
+ name = "async-trait"
168
+ version = "0.1.89"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
171
+ dependencies = [
172
+ "proc-macro2",
173
+ "quote",
174
+ "syn",
175
+ ]
176
+
166
177
  [[package]]
167
178
  name = "atomic-waker"
168
179
  version = "1.1.2"
@@ -181,12 +192,27 @@ version = "1.5.0"
181
192
  source = "registry+https://github.com/rust-lang/crates.io-index"
182
193
  checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
183
194
 
195
+ [[package]]
196
+ name = "base64"
197
+ version = "0.21.7"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
200
+
184
201
  [[package]]
185
202
  name = "base64"
186
203
  version = "0.22.1"
187
204
  source = "registry+https://github.com/rust-lang/crates.io-index"
188
205
  checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
189
206
 
207
+ [[package]]
208
+ name = "bincode"
209
+ version = "1.3.3"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
212
+ dependencies = [
213
+ "serde",
214
+ ]
215
+
190
216
  [[package]]
191
217
  name = "bitflags"
192
218
  version = "1.3.2"
@@ -205,7 +231,7 @@ dependencies = [
205
231
  [[package]]
206
232
  name = "blitz-dom"
207
233
  version = "0.2.2"
208
- source = "git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3#4a98ed37da0ef2d4ba57ff978fb5603e1ee3dbf1"
234
+ source = "git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8#15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8"
209
235
  dependencies = [
210
236
  "accesskit",
211
237
  "app_units",
@@ -215,7 +241,7 @@ dependencies = [
215
241
  "color",
216
242
  "cssparser",
217
243
  "cursor-icon",
218
- "debug_timer 0.1.3 (git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3)",
244
+ "debug_timer 0.1.3 (git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8)",
219
245
  "euclid",
220
246
  "fastrand",
221
247
  "html-escape",
@@ -247,7 +273,7 @@ dependencies = [
247
273
  [[package]]
248
274
  name = "blitz-html"
249
275
  version = "0.2.0"
250
- source = "git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3#4a98ed37da0ef2d4ba57ff978fb5603e1ee3dbf1"
276
+ source = "git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8#15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8"
251
277
  dependencies = [
252
278
  "blitz-dom",
253
279
  "blitz-traits",
@@ -258,18 +284,21 @@ dependencies = [
258
284
  [[package]]
259
285
  name = "blitz-net"
260
286
  version = "0.2.1"
261
- source = "git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3#4a98ed37da0ef2d4ba57ff978fb5603e1ee3dbf1"
287
+ source = "git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8#15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8"
262
288
  dependencies = [
263
289
  "blitz-traits",
264
290
  "data-url",
291
+ "directories",
292
+ "http-cache-reqwest",
265
293
  "reqwest",
294
+ "reqwest-middleware",
266
295
  "tokio",
267
296
  ]
268
297
 
269
298
  [[package]]
270
299
  name = "blitz-paint"
271
300
  version = "0.2.1"
272
- source = "git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3#4a98ed37da0ef2d4ba57ff978fb5603e1ee3dbf1"
301
+ source = "git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8#15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8"
273
302
  dependencies = [
274
303
  "anyrender",
275
304
  "anyrender_svg",
@@ -288,7 +317,7 @@ dependencies = [
288
317
  [[package]]
289
318
  name = "blitz-traits"
290
319
  version = "0.2.0"
291
- source = "git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3#4a98ed37da0ef2d4ba57ff978fb5603e1ee3dbf1"
320
+ source = "git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8#15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8"
292
321
  dependencies = [
293
322
  "bitflags 2.10.0",
294
323
  "bytes",
@@ -300,6 +329,15 @@ dependencies = [
300
329
  "url",
301
330
  ]
302
331
 
332
+ [[package]]
333
+ name = "block-buffer"
334
+ version = "0.10.4"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
337
+ dependencies = [
338
+ "generic-array",
339
+ ]
340
+
303
341
  [[package]]
304
342
  name = "borsh"
305
343
  version = "1.6.0"
@@ -363,6 +401,33 @@ version = "1.11.0"
363
401
  source = "registry+https://github.com/rust-lang/crates.io-index"
364
402
  checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
365
403
 
404
+ [[package]]
405
+ name = "cacache"
406
+ version = "13.1.0"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "5c5063741c7b2e260bbede781cf4679632dd90e2718e99f7715e46824b65670b"
409
+ dependencies = [
410
+ "digest",
411
+ "either",
412
+ "futures",
413
+ "hex",
414
+ "libc",
415
+ "memmap2 0.5.10",
416
+ "miette",
417
+ "reflink-copy",
418
+ "serde",
419
+ "serde_derive",
420
+ "serde_json",
421
+ "sha1",
422
+ "sha2",
423
+ "ssri",
424
+ "tempfile",
425
+ "thiserror 1.0.69",
426
+ "tokio",
427
+ "tokio-stream",
428
+ "walkdir",
429
+ ]
430
+
366
431
  [[package]]
367
432
  name = "cc"
368
433
  version = "1.2.54"
@@ -457,6 +522,15 @@ dependencies = [
457
522
  "libm",
458
523
  ]
459
524
 
525
+ [[package]]
526
+ name = "cpufeatures"
527
+ version = "0.2.17"
528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
529
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
530
+ dependencies = [
531
+ "libc",
532
+ ]
533
+
460
534
  [[package]]
461
535
  name = "crc32fast"
462
536
  version = "1.5.0"
@@ -491,6 +565,16 @@ version = "0.8.21"
491
565
  source = "registry+https://github.com/rust-lang/crates.io-index"
492
566
  checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
493
567
 
568
+ [[package]]
569
+ name = "crypto-common"
570
+ version = "0.1.7"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
573
+ dependencies = [
574
+ "generic-array",
575
+ "typenum",
576
+ ]
577
+
494
578
  [[package]]
495
579
  name = "cssparser"
496
580
  version = "0.36.0"
@@ -570,7 +654,16 @@ checksum = "da220af51a1a335e9a930beaaef53d261e41ea9eecfb3d973a3ddae1a7284b9c"
570
654
  [[package]]
571
655
  name = "debug_timer"
572
656
  version = "0.1.3"
573
- source = "git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3#4a98ed37da0ef2d4ba57ff978fb5603e1ee3dbf1"
657
+ source = "git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8#15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8"
658
+
659
+ [[package]]
660
+ name = "deranged"
661
+ version = "0.5.5"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
664
+ dependencies = [
665
+ "powerfmt",
666
+ ]
574
667
 
575
668
  [[package]]
576
669
  name = "derive_more"
@@ -593,6 +686,37 @@ dependencies = [
593
686
  "syn",
594
687
  ]
595
688
 
689
+ [[package]]
690
+ name = "digest"
691
+ version = "0.10.7"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
694
+ dependencies = [
695
+ "block-buffer",
696
+ "crypto-common",
697
+ ]
698
+
699
+ [[package]]
700
+ name = "directories"
701
+ version = "6.0.0"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "16f5094c54661b38d03bd7e50df373292118db60b585c08a411c6d840017fe7d"
704
+ dependencies = [
705
+ "dirs-sys",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "dirs-sys"
710
+ version = "0.5.0"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
713
+ dependencies = [
714
+ "libc",
715
+ "option-ext",
716
+ "redox_users",
717
+ "windows-sys 0.60.2",
718
+ ]
719
+
596
720
  [[package]]
597
721
  name = "displaydoc"
598
722
  version = "0.2.5"
@@ -630,7 +754,7 @@ dependencies = [
630
754
 
631
755
  [[package]]
632
756
  name = "dynimg"
633
- version = "0.1.11"
757
+ version = "0.1.13"
634
758
  dependencies = [
635
759
  "anyhow",
636
760
  "anyrender",
@@ -648,7 +772,7 @@ dependencies = [
648
772
  "peniko",
649
773
  "png 0.18.0",
650
774
  "pyo3",
651
- "thiserror",
775
+ "thiserror 2.0.18",
652
776
  "tokio",
653
777
  "tracing-subscriber",
654
778
  "webp",
@@ -675,6 +799,16 @@ version = "1.0.2"
675
799
  source = "registry+https://github.com/rust-lang/crates.io-index"
676
800
  checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
677
801
 
802
+ [[package]]
803
+ name = "errno"
804
+ version = "0.3.14"
805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
806
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
807
+ dependencies = [
808
+ "libc",
809
+ "windows-sys 0.52.0",
810
+ ]
811
+
678
812
  [[package]]
679
813
  name = "euclid"
680
814
  version = "0.22.13"
@@ -784,7 +918,7 @@ checksum = "457e789b3d1202543297a350643cf459f836cade38934e7a4cf6a39e7cde2905"
784
918
  dependencies = [
785
919
  "fontconfig-parser",
786
920
  "log",
787
- "memmap2",
921
+ "memmap2 0.9.9",
788
922
  "slotmap",
789
923
  "tinyvec",
790
924
  "ttf-parser",
@@ -793,13 +927,13 @@ dependencies = [
793
927
  [[package]]
794
928
  name = "fontique"
795
929
  version = "0.7.0"
796
- source = "git+https://github.com/linebender/parley?rev=f6a8485c35367b581b03bd6da55c8465f24e16ef#f6a8485c35367b581b03bd6da55c8465f24e16ef"
930
+ source = "git+https://github.com/linebender/parley?rev=4f1bedf08c9d98a646975806adccc6ca41a08841#4f1bedf08c9d98a646975806adccc6ca41a08841"
797
931
  dependencies = [
798
932
  "bytemuck",
799
933
  "hashbrown",
800
934
  "icu_locale_core",
801
935
  "linebender_resource_handle",
802
- "memmap2",
936
+ "memmap2 0.9.9",
803
937
  "objc2",
804
938
  "objc2-core-foundation",
805
939
  "objc2-core-text",
@@ -807,8 +941,8 @@ dependencies = [
807
941
  "read-fonts 0.35.0",
808
942
  "roxmltree 0.21.1",
809
943
  "smallvec",
810
- "windows",
811
- "windows-core",
944
+ "windows 0.58.0",
945
+ "windows-core 0.58.0",
812
946
  "yeslogic-fontconfig-sys",
813
947
  ]
814
948
 
@@ -821,6 +955,21 @@ dependencies = [
821
955
  "percent-encoding",
822
956
  ]
823
957
 
958
+ [[package]]
959
+ name = "futures"
960
+ version = "0.3.31"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
963
+ dependencies = [
964
+ "futures-channel",
965
+ "futures-core",
966
+ "futures-executor",
967
+ "futures-io",
968
+ "futures-sink",
969
+ "futures-task",
970
+ "futures-util",
971
+ ]
972
+
824
973
  [[package]]
825
974
  name = "futures-channel"
826
975
  version = "0.3.31"
@@ -828,6 +977,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
828
977
  checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
829
978
  dependencies = [
830
979
  "futures-core",
980
+ "futures-sink",
831
981
  ]
832
982
 
833
983
  [[package]]
@@ -836,6 +986,40 @@ version = "0.3.31"
836
986
  source = "registry+https://github.com/rust-lang/crates.io-index"
837
987
  checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
838
988
 
989
+ [[package]]
990
+ name = "futures-executor"
991
+ version = "0.3.31"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
994
+ dependencies = [
995
+ "futures-core",
996
+ "futures-task",
997
+ "futures-util",
998
+ ]
999
+
1000
+ [[package]]
1001
+ name = "futures-io"
1002
+ version = "0.3.31"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1005
+
1006
+ [[package]]
1007
+ name = "futures-macro"
1008
+ version = "0.3.31"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1011
+ dependencies = [
1012
+ "proc-macro2",
1013
+ "quote",
1014
+ "syn",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "futures-sink"
1019
+ version = "0.3.31"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1022
+
839
1023
  [[package]]
840
1024
  name = "futures-task"
841
1025
  version = "0.3.31"
@@ -848,13 +1032,28 @@ version = "0.3.31"
848
1032
  source = "registry+https://github.com/rust-lang/crates.io-index"
849
1033
  checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
850
1034
  dependencies = [
1035
+ "futures-channel",
851
1036
  "futures-core",
1037
+ "futures-io",
1038
+ "futures-macro",
1039
+ "futures-sink",
852
1040
  "futures-task",
1041
+ "memchr",
853
1042
  "pin-project-lite",
854
1043
  "pin-utils",
855
1044
  "slab",
856
1045
  ]
857
1046
 
1047
+ [[package]]
1048
+ name = "generic-array"
1049
+ version = "0.14.7"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1052
+ dependencies = [
1053
+ "typenum",
1054
+ "version_check",
1055
+ ]
1056
+
858
1057
  [[package]]
859
1058
  name = "getrandom"
860
1059
  version = "0.2.17"
@@ -940,6 +1139,12 @@ version = "0.5.2"
940
1139
  source = "registry+https://github.com/rust-lang/crates.io-index"
941
1140
  checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
942
1141
 
1142
+ [[package]]
1143
+ name = "hex"
1144
+ version = "0.4.3"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1147
+
943
1148
  [[package]]
944
1149
  name = "html-escape"
945
1150
  version = "0.2.13"
@@ -992,12 +1197,83 @@ dependencies = [
992
1197
  "pin-project-lite",
993
1198
  ]
994
1199
 
1200
+ [[package]]
1201
+ name = "http-cache"
1202
+ version = "1.0.0-alpha.2"
1203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1204
+ checksum = "d9f6320639f30b7e6ec9921b238b2557c5f382b5ea8549487dbdb412198e7466"
1205
+ dependencies = [
1206
+ "async-trait",
1207
+ "bincode",
1208
+ "bytes",
1209
+ "cacache",
1210
+ "futures",
1211
+ "hex",
1212
+ "http",
1213
+ "http-body",
1214
+ "http-body-util",
1215
+ "http-cache-semantics",
1216
+ "httpdate",
1217
+ "log",
1218
+ "pin-project-lite",
1219
+ "serde",
1220
+ "tokio",
1221
+ "url",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "http-cache-reqwest"
1226
+ version = "1.0.0-alpha.2"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "e9b152d1f3245599d00f9703e5373730936c2d59335182620e0aa22eb0b7ba9c"
1229
+ dependencies = [
1230
+ "anyhow",
1231
+ "async-trait",
1232
+ "bytes",
1233
+ "http",
1234
+ "http-body",
1235
+ "http-body-util",
1236
+ "http-cache",
1237
+ "http-cache-semantics",
1238
+ "reqwest",
1239
+ "reqwest-middleware",
1240
+ "url",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "http-cache-semantics"
1245
+ version = "2.1.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "92baf25cf0b8c9246baecf3a444546360a97b569168fdf92563ee6a47829920c"
1248
+ dependencies = [
1249
+ "http",
1250
+ "http-serde",
1251
+ "serde",
1252
+ "time",
1253
+ ]
1254
+
1255
+ [[package]]
1256
+ name = "http-serde"
1257
+ version = "2.1.1"
1258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1259
+ checksum = "0f056c8559e3757392c8d091e796416e4649d8e49e88b8d76df6c002f05027fd"
1260
+ dependencies = [
1261
+ "http",
1262
+ "serde",
1263
+ ]
1264
+
995
1265
  [[package]]
996
1266
  name = "httparse"
997
1267
  version = "1.10.1"
998
1268
  source = "registry+https://github.com/rust-lang/crates.io-index"
999
1269
  checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1000
1270
 
1271
+ [[package]]
1272
+ name = "httpdate"
1273
+ version = "1.0.3"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1276
+
1001
1277
  [[package]]
1002
1278
  name = "hyper"
1003
1279
  version = "1.8.1"
@@ -1042,7 +1318,7 @@ version = "0.1.19"
1042
1318
  source = "registry+https://github.com/rust-lang/crates.io-index"
1043
1319
  checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1044
1320
  dependencies = [
1045
- "base64",
1321
+ "base64 0.22.1",
1046
1322
  "bytes",
1047
1323
  "futures-channel",
1048
1324
  "futures-core",
@@ -1373,6 +1649,16 @@ version = "0.2.16"
1373
1649
  source = "registry+https://github.com/rust-lang/crates.io-index"
1374
1650
  checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1375
1651
 
1652
+ [[package]]
1653
+ name = "libredox"
1654
+ version = "0.1.12"
1655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1656
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1657
+ dependencies = [
1658
+ "bitflags 2.10.0",
1659
+ "libc",
1660
+ ]
1661
+
1376
1662
  [[package]]
1377
1663
  name = "libwebp-sys"
1378
1664
  version = "0.9.6"
@@ -1389,6 +1675,12 @@ version = "0.1.1"
1389
1675
  source = "registry+https://github.com/rust-lang/crates.io-index"
1390
1676
  checksum = "d4a5ff6bcca6c4867b1c4fd4ef63e4db7436ef363e0ad7531d1558856bae64f4"
1391
1677
 
1678
+ [[package]]
1679
+ name = "linux-raw-sys"
1680
+ version = "0.11.0"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1683
+
1392
1684
  [[package]]
1393
1685
  name = "litemap"
1394
1686
  version = "0.8.1"
@@ -1453,6 +1745,15 @@ version = "2.7.6"
1453
1745
  source = "registry+https://github.com/rust-lang/crates.io-index"
1454
1746
  checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1455
1747
 
1748
+ [[package]]
1749
+ name = "memmap2"
1750
+ version = "0.5.10"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "83faa42c0a078c393f6b29d5db232d8be22776a891f8f56e5284faee4a20b327"
1753
+ dependencies = [
1754
+ "libc",
1755
+ ]
1756
+
1456
1757
  [[package]]
1457
1758
  name = "memmap2"
1458
1759
  version = "0.9.9"
@@ -1471,6 +1772,29 @@ dependencies = [
1471
1772
  "autocfg",
1472
1773
  ]
1473
1774
 
1775
+ [[package]]
1776
+ name = "miette"
1777
+ version = "5.10.0"
1778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1779
+ checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e"
1780
+ dependencies = [
1781
+ "miette-derive",
1782
+ "once_cell",
1783
+ "thiserror 1.0.69",
1784
+ "unicode-width",
1785
+ ]
1786
+
1787
+ [[package]]
1788
+ name = "miette-derive"
1789
+ version = "5.10.0"
1790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1791
+ checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
1792
+ dependencies = [
1793
+ "proc-macro2",
1794
+ "quote",
1795
+ "syn",
1796
+ ]
1797
+
1474
1798
  [[package]]
1475
1799
  name = "mime"
1476
1800
  version = "0.3.17"
@@ -1513,6 +1837,12 @@ dependencies = [
1513
1837
  "windows-sys 0.61.2",
1514
1838
  ]
1515
1839
 
1840
+ [[package]]
1841
+ name = "num-conv"
1842
+ version = "0.2.0"
1843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1844
+ checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
1845
+
1516
1846
  [[package]]
1517
1847
  name = "num-derive"
1518
1848
  version = "0.4.2"
@@ -1608,6 +1938,12 @@ version = "1.70.2"
1608
1938
  source = "registry+https://github.com/rust-lang/crates.io-index"
1609
1939
  checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1610
1940
 
1941
+ [[package]]
1942
+ name = "option-ext"
1943
+ version = "0.2.0"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1946
+
1611
1947
  [[package]]
1612
1948
  name = "parking_lot"
1613
1949
  version = "0.12.5"
@@ -1634,7 +1970,7 @@ dependencies = [
1634
1970
  [[package]]
1635
1971
  name = "parley"
1636
1972
  version = "0.7.0"
1637
- source = "git+https://github.com/linebender/parley?rev=f6a8485c35367b581b03bd6da55c8465f24e16ef#f6a8485c35367b581b03bd6da55c8465f24e16ef"
1973
+ source = "git+https://github.com/linebender/parley?rev=4f1bedf08c9d98a646975806adccc6ca41a08841#4f1bedf08c9d98a646975806adccc6ca41a08841"
1638
1974
  dependencies = [
1639
1975
  "fontique",
1640
1976
  "harfrust",
@@ -1783,6 +2119,12 @@ dependencies = [
1783
2119
  "zerovec",
1784
2120
  ]
1785
2121
 
2122
+ [[package]]
2123
+ name = "powerfmt"
2124
+ version = "0.2.0"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2127
+
1786
2128
  [[package]]
1787
2129
  name = "ppv-lite86"
1788
2130
  version = "0.2.21"
@@ -1888,7 +2230,7 @@ dependencies = [
1888
2230
  "rustc-hash",
1889
2231
  "rustls",
1890
2232
  "socket2",
1891
- "thiserror",
2233
+ "thiserror 2.0.18",
1892
2234
  "tokio",
1893
2235
  "tracing",
1894
2236
  "web-time",
@@ -1909,7 +2251,7 @@ dependencies = [
1909
2251
  "rustls",
1910
2252
  "rustls-pki-types",
1911
2253
  "slab",
1912
- "thiserror",
2254
+ "thiserror 2.0.18",
1913
2255
  "tinyvec",
1914
2256
  "tracing",
1915
2257
  "web-time",
@@ -2029,6 +2371,29 @@ dependencies = [
2029
2371
  "bitflags 2.10.0",
2030
2372
  ]
2031
2373
 
2374
+ [[package]]
2375
+ name = "redox_users"
2376
+ version = "0.5.2"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2379
+ dependencies = [
2380
+ "getrandom 0.2.17",
2381
+ "libredox",
2382
+ "thiserror 2.0.18",
2383
+ ]
2384
+
2385
+ [[package]]
2386
+ name = "reflink-copy"
2387
+ version = "0.1.28"
2388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2389
+ checksum = "23bbed272e39c47a095a5242218a67412a220006842558b03fe2935e8f3d7b92"
2390
+ dependencies = [
2391
+ "cfg-if",
2392
+ "libc",
2393
+ "rustix",
2394
+ "windows 0.62.2",
2395
+ ]
2396
+
2032
2397
  [[package]]
2033
2398
  name = "regex-automata"
2034
2399
  version = "0.4.13"
@@ -2052,7 +2417,7 @@ version = "0.12.28"
2052
2417
  source = "registry+https://github.com/rust-lang/crates.io-index"
2053
2418
  checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2054
2419
  dependencies = [
2055
- "base64",
2420
+ "base64 0.22.1",
2056
2421
  "bytes",
2057
2422
  "encoding_rs",
2058
2423
  "futures-core",
@@ -2086,6 +2451,21 @@ dependencies = [
2086
2451
  "webpki-roots",
2087
2452
  ]
2088
2453
 
2454
+ [[package]]
2455
+ name = "reqwest-middleware"
2456
+ version = "0.4.2"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e"
2459
+ dependencies = [
2460
+ "anyhow",
2461
+ "async-trait",
2462
+ "http",
2463
+ "reqwest",
2464
+ "serde",
2465
+ "thiserror 1.0.69",
2466
+ "tower-service",
2467
+ ]
2468
+
2089
2469
  [[package]]
2090
2470
  name = "ring"
2091
2471
  version = "0.17.14"
@@ -2130,6 +2510,19 @@ dependencies = [
2130
2510
  "semver",
2131
2511
  ]
2132
2512
 
2513
+ [[package]]
2514
+ name = "rustix"
2515
+ version = "1.1.3"
2516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2517
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2518
+ dependencies = [
2519
+ "bitflags 2.10.0",
2520
+ "errno",
2521
+ "libc",
2522
+ "linux-raw-sys",
2523
+ "windows-sys 0.52.0",
2524
+ ]
2525
+
2133
2526
  [[package]]
2134
2527
  name = "rustls"
2135
2528
  version = "0.23.36"
@@ -2302,6 +2695,39 @@ dependencies = [
2302
2695
  "stable_deref_trait",
2303
2696
  ]
2304
2697
 
2698
+ [[package]]
2699
+ name = "sha-1"
2700
+ version = "0.10.1"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
2703
+ dependencies = [
2704
+ "cfg-if",
2705
+ "cpufeatures",
2706
+ "digest",
2707
+ ]
2708
+
2709
+ [[package]]
2710
+ name = "sha1"
2711
+ version = "0.10.6"
2712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2713
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2714
+ dependencies = [
2715
+ "cfg-if",
2716
+ "cpufeatures",
2717
+ "digest",
2718
+ ]
2719
+
2720
+ [[package]]
2721
+ name = "sha2"
2722
+ version = "0.10.9"
2723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2724
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2725
+ dependencies = [
2726
+ "cfg-if",
2727
+ "cpufeatures",
2728
+ "digest",
2729
+ ]
2730
+
2305
2731
  [[package]]
2306
2732
  name = "sharded-slab"
2307
2733
  version = "0.1.7"
@@ -2405,6 +2831,23 @@ dependencies = [
2405
2831
  "windows-sys 0.60.2",
2406
2832
  ]
2407
2833
 
2834
+ [[package]]
2835
+ name = "ssri"
2836
+ version = "9.2.0"
2837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2838
+ checksum = "da7a2b3c2bc9693bcb40870c4e9b5bf0d79f9cb46273321bf855ec513e919082"
2839
+ dependencies = [
2840
+ "base64 0.21.7",
2841
+ "digest",
2842
+ "hex",
2843
+ "miette",
2844
+ "serde",
2845
+ "sha-1",
2846
+ "sha2",
2847
+ "thiserror 1.0.69",
2848
+ "xxhash-rust",
2849
+ ]
2850
+
2408
2851
  [[package]]
2409
2852
  name = "stable_deref_trait"
2410
2853
  version = "1.2.1"
@@ -2579,7 +3022,7 @@ checksum = "fd15301b4756455af51fda9835655e48812dd4175e80947fd5d6a4b57ee30e89"
2579
3022
  [[package]]
2580
3023
  name = "stylo_taffy"
2581
3024
  version = "0.2.0"
2582
- source = "git+https://github.com/DioxusLabs/blitz.git?rev=4a98ed3#4a98ed37da0ef2d4ba57ff978fb5603e1ee3dbf1"
3025
+ source = "git+https://github.com/DioxusLabs/blitz.git?rev=15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8#15fe8ccfbc99cf7254ccfaa6c46e5a1c3a2c1cb8"
2583
3026
  dependencies = [
2584
3027
  "stylo",
2585
3028
  "stylo_atoms",
@@ -2683,6 +3126,19 @@ version = "0.13.4"
2683
3126
  source = "registry+https://github.com/rust-lang/crates.io-index"
2684
3127
  checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
2685
3128
 
3129
+ [[package]]
3130
+ name = "tempfile"
3131
+ version = "3.24.0"
3132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3133
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
3134
+ dependencies = [
3135
+ "fastrand",
3136
+ "getrandom 0.3.4",
3137
+ "once_cell",
3138
+ "rustix",
3139
+ "windows-sys 0.52.0",
3140
+ ]
3141
+
2686
3142
  [[package]]
2687
3143
  name = "tendril"
2688
3144
  version = "0.5.0"
@@ -2699,13 +3155,33 @@ version = "0.2.14"
2699
3155
  source = "registry+https://github.com/rust-lang/crates.io-index"
2700
3156
  checksum = "144f754d318415ac792f9d69fc87abbbfc043ce2ef041c60f16ad828f638717d"
2701
3157
 
3158
+ [[package]]
3159
+ name = "thiserror"
3160
+ version = "1.0.69"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3163
+ dependencies = [
3164
+ "thiserror-impl 1.0.69",
3165
+ ]
3166
+
2702
3167
  [[package]]
2703
3168
  name = "thiserror"
2704
3169
  version = "2.0.18"
2705
3170
  source = "registry+https://github.com/rust-lang/crates.io-index"
2706
3171
  checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2707
3172
  dependencies = [
2708
- "thiserror-impl",
3173
+ "thiserror-impl 2.0.18",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "thiserror-impl"
3178
+ version = "1.0.69"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3181
+ dependencies = [
3182
+ "proc-macro2",
3183
+ "quote",
3184
+ "syn",
2709
3185
  ]
2710
3186
 
2711
3187
  [[package]]
@@ -2728,6 +3204,37 @@ dependencies = [
2728
3204
  "cfg-if",
2729
3205
  ]
2730
3206
 
3207
+ [[package]]
3208
+ name = "time"
3209
+ version = "0.3.46"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "9da98b7d9b7dad93488a84b8248efc35352b0b2657397d4167e7ad67e5d535e5"
3212
+ dependencies = [
3213
+ "deranged",
3214
+ "itoa",
3215
+ "num-conv",
3216
+ "powerfmt",
3217
+ "serde_core",
3218
+ "time-core",
3219
+ "time-macros",
3220
+ ]
3221
+
3222
+ [[package]]
3223
+ name = "time-core"
3224
+ version = "0.1.8"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
3227
+
3228
+ [[package]]
3229
+ name = "time-macros"
3230
+ version = "0.2.26"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "78cc610bac2dcee56805c99642447d4c5dbde4d01f752ffea0199aee1f601dc4"
3233
+ dependencies = [
3234
+ "num-conv",
3235
+ "time-core",
3236
+ ]
3237
+
2731
3238
  [[package]]
2732
3239
  name = "tiny-skia-path"
2733
3240
  version = "0.11.4"
@@ -2828,6 +3335,17 @@ dependencies = [
2828
3335
  "tokio",
2829
3336
  ]
2830
3337
 
3338
+ [[package]]
3339
+ name = "tokio-stream"
3340
+ version = "0.1.18"
3341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3342
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
3343
+ dependencies = [
3344
+ "futures-core",
3345
+ "pin-project-lite",
3346
+ "tokio",
3347
+ ]
3348
+
2831
3349
  [[package]]
2832
3350
  name = "tower"
2833
3351
  version = "0.5.3"
@@ -2949,6 +3467,12 @@ dependencies = [
2949
3467
  "core_maths",
2950
3468
  ]
2951
3469
 
3470
+ [[package]]
3471
+ name = "typenum"
3472
+ version = "1.19.0"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3475
+
2952
3476
  [[package]]
2953
3477
  name = "uluru"
2954
3478
  version = "3.1.0"
@@ -3006,6 +3530,12 @@ version = "0.1.0"
3006
3530
  source = "registry+https://github.com/rust-lang/crates.io-index"
3007
3531
  checksum = "b1d386ff53b415b7fe27b50bb44679e2cc4660272694b7b6f3326d8480823a94"
3008
3532
 
3533
+ [[package]]
3534
+ name = "unicode-width"
3535
+ version = "0.1.14"
3536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3537
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3538
+
3009
3539
  [[package]]
3010
3540
  name = "unindent"
3011
3541
  version = "0.2.4"
@@ -3037,7 +3567,7 @@ version = "0.46.0"
3037
3567
  source = "registry+https://github.com/rust-lang/crates.io-index"
3038
3568
  checksum = "e419dff010bb12512b0ae9e3d2f318dfbdf0167fde7eb05465134d4e8756076f"
3039
3569
  dependencies = [
3040
- "base64",
3570
+ "base64 0.22.1",
3041
3571
  "data-url",
3042
3572
  "flate2",
3043
3573
  "fontdb",
@@ -3297,23 +3827,68 @@ version = "0.58.0"
3297
3827
  source = "registry+https://github.com/rust-lang/crates.io-index"
3298
3828
  checksum = "dd04d41d93c4992d421894c18c8b43496aa748dd4c081bac0dc93eb0489272b6"
3299
3829
  dependencies = [
3300
- "windows-core",
3830
+ "windows-core 0.58.0",
3301
3831
  "windows-targets 0.52.6",
3302
3832
  ]
3303
3833
 
3834
+ [[package]]
3835
+ name = "windows"
3836
+ version = "0.62.2"
3837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3838
+ checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
3839
+ dependencies = [
3840
+ "windows-collections",
3841
+ "windows-core 0.62.2",
3842
+ "windows-future",
3843
+ "windows-numerics",
3844
+ ]
3845
+
3846
+ [[package]]
3847
+ name = "windows-collections"
3848
+ version = "0.3.2"
3849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3850
+ checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
3851
+ dependencies = [
3852
+ "windows-core 0.62.2",
3853
+ ]
3854
+
3304
3855
  [[package]]
3305
3856
  name = "windows-core"
3306
3857
  version = "0.58.0"
3307
3858
  source = "registry+https://github.com/rust-lang/crates.io-index"
3308
3859
  checksum = "6ba6d44ec8c2591c134257ce647b7ea6b20335bf6379a27dac5f1641fcf59f99"
3309
3860
  dependencies = [
3310
- "windows-implement",
3311
- "windows-interface",
3312
- "windows-result",
3313
- "windows-strings",
3861
+ "windows-implement 0.58.0",
3862
+ "windows-interface 0.58.0",
3863
+ "windows-result 0.2.0",
3864
+ "windows-strings 0.1.0",
3314
3865
  "windows-targets 0.52.6",
3315
3866
  ]
3316
3867
 
3868
+ [[package]]
3869
+ name = "windows-core"
3870
+ version = "0.62.2"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3873
+ dependencies = [
3874
+ "windows-implement 0.60.2",
3875
+ "windows-interface 0.59.3",
3876
+ "windows-link",
3877
+ "windows-result 0.4.1",
3878
+ "windows-strings 0.5.1",
3879
+ ]
3880
+
3881
+ [[package]]
3882
+ name = "windows-future"
3883
+ version = "0.3.2"
3884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3885
+ checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
3886
+ dependencies = [
3887
+ "windows-core 0.62.2",
3888
+ "windows-link",
3889
+ "windows-threading",
3890
+ ]
3891
+
3317
3892
  [[package]]
3318
3893
  name = "windows-implement"
3319
3894
  version = "0.58.0"
@@ -3325,6 +3900,17 @@ dependencies = [
3325
3900
  "syn",
3326
3901
  ]
3327
3902
 
3903
+ [[package]]
3904
+ name = "windows-implement"
3905
+ version = "0.60.2"
3906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3907
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3908
+ dependencies = [
3909
+ "proc-macro2",
3910
+ "quote",
3911
+ "syn",
3912
+ ]
3913
+
3328
3914
  [[package]]
3329
3915
  name = "windows-interface"
3330
3916
  version = "0.58.0"
@@ -3336,12 +3922,33 @@ dependencies = [
3336
3922
  "syn",
3337
3923
  ]
3338
3924
 
3925
+ [[package]]
3926
+ name = "windows-interface"
3927
+ version = "0.59.3"
3928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3929
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3930
+ dependencies = [
3931
+ "proc-macro2",
3932
+ "quote",
3933
+ "syn",
3934
+ ]
3935
+
3339
3936
  [[package]]
3340
3937
  name = "windows-link"
3341
3938
  version = "0.2.1"
3342
3939
  source = "registry+https://github.com/rust-lang/crates.io-index"
3343
3940
  checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3344
3941
 
3942
+ [[package]]
3943
+ name = "windows-numerics"
3944
+ version = "0.3.1"
3945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3946
+ checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
3947
+ dependencies = [
3948
+ "windows-core 0.62.2",
3949
+ "windows-link",
3950
+ ]
3951
+
3345
3952
  [[package]]
3346
3953
  name = "windows-result"
3347
3954
  version = "0.2.0"
@@ -3351,16 +3958,34 @@ dependencies = [
3351
3958
  "windows-targets 0.52.6",
3352
3959
  ]
3353
3960
 
3961
+ [[package]]
3962
+ name = "windows-result"
3963
+ version = "0.4.1"
3964
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3965
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3966
+ dependencies = [
3967
+ "windows-link",
3968
+ ]
3969
+
3354
3970
  [[package]]
3355
3971
  name = "windows-strings"
3356
3972
  version = "0.1.0"
3357
3973
  source = "registry+https://github.com/rust-lang/crates.io-index"
3358
3974
  checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
3359
3975
  dependencies = [
3360
- "windows-result",
3976
+ "windows-result 0.2.0",
3361
3977
  "windows-targets 0.52.6",
3362
3978
  ]
3363
3979
 
3980
+ [[package]]
3981
+ name = "windows-strings"
3982
+ version = "0.5.1"
3983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3984
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3985
+ dependencies = [
3986
+ "windows-link",
3987
+ ]
3988
+
3364
3989
  [[package]]
3365
3990
  name = "windows-sys"
3366
3991
  version = "0.52.0"
@@ -3421,6 +4046,15 @@ dependencies = [
3421
4046
  "windows_x86_64_msvc 0.53.1",
3422
4047
  ]
3423
4048
 
4049
+ [[package]]
4050
+ name = "windows-threading"
4051
+ version = "0.2.1"
4052
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4053
+ checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
4054
+ dependencies = [
4055
+ "windows-link",
4056
+ ]
4057
+
3424
4058
  [[package]]
3425
4059
  name = "windows_aarch64_gnullvm"
3426
4060
  version = "0.52.6"
@@ -3558,6 +4192,12 @@ version = "0.1.0"
3558
4192
  source = "registry+https://github.com/rust-lang/crates.io-index"
3559
4193
  checksum = "ec7a2a501ed189703dba8b08142f057e887dfc4b2cc4db2d343ac6376ba3e0b9"
3560
4194
 
4195
+ [[package]]
4196
+ name = "xxhash-rust"
4197
+ version = "0.8.15"
4198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4199
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
4200
+
3561
4201
  [[package]]
3562
4202
  name = "yazi"
3563
4203
  version = "0.2.1"