html-to-markdown 2.7.1__tar.gz → 2.14.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (75) hide show
  1. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/Cargo.lock +2379 -268
  2. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/Cargo.toml +7 -11
  3. html_to_markdown-2.14.2/PKG-INFO +634 -0
  4. html_to_markdown-2.14.2/README.md +600 -0
  5. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/Cargo.toml +7 -2
  6. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/README.md +2 -2
  7. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/converter.rs +956 -205
  8. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/error.rs +4 -0
  9. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/hocr/converter.rs +3 -46
  10. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/hocr/extractor.rs +1 -12
  11. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/hocr/parser.rs +0 -7
  12. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/hocr/types.rs +1 -13
  13. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/inline_images.rs +0 -1
  14. html_to_markdown-2.14.2/crates/html-to-markdown/src/lib.rs +391 -0
  15. html_to_markdown-2.14.2/crates/html-to-markdown/src/metadata.rs +1352 -0
  16. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/options.rs +1 -1
  17. html_to_markdown-2.14.2/crates/html-to-markdown/src/safety.rs +60 -0
  18. html_to_markdown-2.14.2/crates/html-to-markdown/src/wrapper.rs +538 -0
  19. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/tests/br_in_inline_test.rs +4 -2
  20. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/tests/commonmark_compliance_test.rs +0 -4
  21. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/tests/hocr_compliance_test.rs +0 -16
  22. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/tests/integration_test.rs +18 -8
  23. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_121_regressions.rs +40 -0
  24. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_127_regressions.rs +50 -0
  25. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_128_regressions.rs +10 -0
  26. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_131_regressions.rs +32 -0
  27. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_134_regressions.rs +31 -0
  28. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_139_regressions.rs +17 -0
  29. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_140_regressions.rs +168 -0
  30. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_143_regressions.rs +38 -0
  31. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_145_regressions.rs +141 -0
  32. html_to_markdown-2.14.2/crates/html-to-markdown/tests/issue_146_regressions.rs +148 -0
  33. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/tests/lists_test.rs +13 -11
  34. html_to_markdown-2.14.2/crates/html-to-markdown/tests/preprocessing_tests.rs +54 -0
  35. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/tests/tables_test.rs +8 -6
  36. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown-py/Cargo.toml +1 -0
  37. html_to_markdown-2.14.2/crates/html-to-markdown-py/README.md +670 -0
  38. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown-py/src/lib.rs +432 -6
  39. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/__init__.py +8 -1
  40. html_to_markdown-2.14.2/html_to_markdown/_html_to_markdown.pyi +196 -0
  41. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/api.py +53 -8
  42. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/v1_compat.py +0 -1
  43. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/pyproject.toml +6 -1
  44. html_to_markdown-2.7.1/PKG-INFO +0 -271
  45. html_to_markdown-2.7.1/README.md +0 -237
  46. html_to_markdown-2.7.1/crates/html-to-markdown/src/lib.rs +0 -112
  47. html_to_markdown-2.7.1/crates/html-to-markdown/src/wrapper.rs +0 -214
  48. html_to_markdown-2.7.1/crates/html-to-markdown-py/README.md +0 -229
  49. html_to_markdown-2.7.1/html_to_markdown/_html_to_markdown.pyi +0 -22
  50. html_to_markdown-2.7.1/html_to_markdown/bin/html-to-markdown +0 -0
  51. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/LICENSE +0 -0
  52. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/benches/conversion_benchmark.rs +0 -0
  53. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/benches/micro_benchmark.rs +0 -0
  54. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/benches/profiling_benchmark.rs +0 -0
  55. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/basic.rs +0 -0
  56. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/table.rs +0 -0
  57. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/test_escape.rs +0 -0
  58. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/test_inline_formatting.rs +0 -0
  59. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/test_lists.rs +0 -0
  60. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/test_semantic_tags.rs +0 -0
  61. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/test_tables.rs +0 -0
  62. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/test_task_lists.rs +0 -0
  63. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/examples/test_whitespace.rs +0 -0
  64. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/hocr/mod.rs +0 -0
  65. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/hocr/spatial.rs +0 -0
  66. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown/src/text.rs +0 -0
  67. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +0 -0
  68. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +0 -0
  69. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/crates/html-to-markdown-py/uv.lock +0 -0
  70. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/__main__.py +0 -0
  71. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/cli.py +0 -0
  72. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/cli_proxy.py +0 -0
  73. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/exceptions.py +0 -0
  74. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/options.py +0 -0
  75. {html_to_markdown-2.7.1 → html_to_markdown-2.14.2}/html_to_markdown/py.typed +0 -0
@@ -35,7 +35,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
35
35
  checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
36
36
  dependencies = [
37
37
  "cfg-if",
38
- "getrandom",
38
+ "getrandom 0.3.4",
39
39
  "once_cell",
40
40
  "version_check",
41
41
  "zerocopy",
@@ -59,6 +59,27 @@ dependencies = [
59
59
  "equator",
60
60
  ]
61
61
 
62
+ [[package]]
63
+ name = "alloc-no-stdlib"
64
+ version = "2.0.4"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
67
+
68
+ [[package]]
69
+ name = "alloc-stdlib"
70
+ version = "0.2.2"
71
+ source = "registry+https://github.com/rust-lang/crates.io-index"
72
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
73
+ dependencies = [
74
+ "alloc-no-stdlib",
75
+ ]
76
+
77
+ [[package]]
78
+ name = "allocator-api2"
79
+ version = "0.2.21"
80
+ source = "registry+https://github.com/rust-lang/crates.io-index"
81
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
82
+
62
83
  [[package]]
63
84
  name = "anes"
64
85
  version = "0.1.6"
@@ -97,22 +118,22 @@ dependencies = [
97
118
 
98
119
  [[package]]
99
120
  name = "anstyle-query"
100
- version = "1.1.4"
121
+ version = "1.1.5"
101
122
  source = "registry+https://github.com/rust-lang/crates.io-index"
102
- checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
123
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
103
124
  dependencies = [
104
- "windows-sys 0.60.2",
125
+ "windows-sys 0.61.2",
105
126
  ]
106
127
 
107
128
  [[package]]
108
129
  name = "anstyle-wincon"
109
- version = "3.0.10"
130
+ version = "3.0.11"
110
131
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
- checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
132
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
112
133
  dependencies = [
113
134
  "anstyle",
114
135
  "once_cell_polyfill",
115
- "windows-sys 0.60.2",
136
+ "windows-sys 0.61.2",
116
137
  ]
117
138
 
118
139
  [[package]]
@@ -151,6 +172,45 @@ dependencies = [
151
172
  "wait-timeout",
152
173
  ]
153
174
 
175
+ [[package]]
176
+ name = "astral-tl"
177
+ version = "0.7.11"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "d90933ffb0f97e2fc2e0de21da9d3f20597b804012d199843a6fe7c2810d28f3"
180
+ dependencies = [
181
+ "memchr",
182
+ ]
183
+
184
+ [[package]]
185
+ name = "async-compression"
186
+ version = "0.4.36"
187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
188
+ checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37"
189
+ dependencies = [
190
+ "compression-codecs",
191
+ "compression-core",
192
+ "futures-core",
193
+ "pin-project-lite",
194
+ "tokio",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "async-trait"
199
+ version = "0.1.89"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
202
+ dependencies = [
203
+ "proc-macro2",
204
+ "quote",
205
+ "syn",
206
+ ]
207
+
208
+ [[package]]
209
+ name = "atomic-waker"
210
+ version = "1.1.2"
211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
212
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
213
+
154
214
  [[package]]
155
215
  name = "autocfg"
156
216
  version = "1.5.0"
@@ -180,9 +240,9 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
180
240
 
181
241
  [[package]]
182
242
  name = "base64ct"
183
- version = "1.8.0"
243
+ version = "1.8.1"
184
244
  source = "registry+https://github.com/rust-lang/crates.io-index"
185
- checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
245
+ checksum = "0e050f626429857a27ddccb31e0aca21356bfa709c04041aefddac081a8f068a"
186
246
 
187
247
  [[package]]
188
248
  name = "bindgen"
@@ -236,6 +296,15 @@ version = "2.10.0"
236
296
  source = "registry+https://github.com/rust-lang/crates.io-index"
237
297
  checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
238
298
 
299
+ [[package]]
300
+ name = "bitmaps"
301
+ version = "2.1.0"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
304
+ dependencies = [
305
+ "typenum",
306
+ ]
307
+
239
308
  [[package]]
240
309
  name = "block-buffer"
241
310
  version = "0.10.4"
@@ -245,6 +314,27 @@ dependencies = [
245
314
  "generic-array",
246
315
  ]
247
316
 
317
+ [[package]]
318
+ name = "brotli"
319
+ version = "8.0.2"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
322
+ dependencies = [
323
+ "alloc-no-stdlib",
324
+ "alloc-stdlib",
325
+ "brotli-decompressor",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "brotli-decompressor"
330
+ version = "5.0.0"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
333
+ dependencies = [
334
+ "alloc-no-stdlib",
335
+ "alloc-stdlib",
336
+ ]
337
+
248
338
  [[package]]
249
339
  name = "bstr"
250
340
  version = "1.12.1"
@@ -261,6 +351,9 @@ name = "bumpalo"
261
351
  version = "3.19.0"
262
352
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
353
  checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
354
+ dependencies = [
355
+ "allocator-api2",
356
+ ]
264
357
 
265
358
  [[package]]
266
359
  name = "bytecount"
@@ -282,9 +375,9 @@ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
282
375
 
283
376
  [[package]]
284
377
  name = "bytes"
285
- version = "1.10.1"
378
+ version = "1.11.0"
286
379
  source = "registry+https://github.com/rust-lang/crates.io-index"
287
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
380
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
288
381
 
289
382
  [[package]]
290
383
  name = "bzip2"
@@ -332,11 +425,30 @@ version = "0.3.0"
332
425
  source = "registry+https://github.com/rust-lang/crates.io-index"
333
426
  checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
334
427
 
428
+ [[package]]
429
+ name = "cbindgen"
430
+ version = "0.29.2"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
433
+ dependencies = [
434
+ "clap",
435
+ "heck 0.5.0",
436
+ "indexmap",
437
+ "log",
438
+ "proc-macro2",
439
+ "quote",
440
+ "serde",
441
+ "serde_json",
442
+ "syn",
443
+ "tempfile",
444
+ "toml",
445
+ ]
446
+
335
447
  [[package]]
336
448
  name = "cc"
337
- version = "1.2.45"
449
+ version = "1.2.49"
338
450
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
- checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
451
+ checksum = "90583009037521a116abf44494efecd645ba48b6622457080f080b85544e2215"
340
452
  dependencies = [
341
453
  "find-msvc-tools",
342
454
  "jobserver",
@@ -359,6 +471,12 @@ version = "1.0.4"
359
471
  source = "registry+https://github.com/rust-lang/crates.io-index"
360
472
  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
361
473
 
474
+ [[package]]
475
+ name = "cfg_aliases"
476
+ version = "0.2.1"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
479
+
362
480
  [[package]]
363
481
  name = "ciborium"
364
482
  version = "0.2.2"
@@ -409,9 +527,9 @@ dependencies = [
409
527
 
410
528
  [[package]]
411
529
  name = "clap"
412
- version = "4.5.51"
530
+ version = "4.5.53"
413
531
  source = "registry+https://github.com/rust-lang/crates.io-index"
414
- checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
532
+ checksum = "c9e340e012a1bf4935f5282ed1436d1489548e8f72308207ea5df0e23d2d03f8"
415
533
  dependencies = [
416
534
  "clap_builder",
417
535
  "clap_derive",
@@ -419,9 +537,9 @@ dependencies = [
419
537
 
420
538
  [[package]]
421
539
  name = "clap_builder"
422
- version = "4.5.51"
540
+ version = "4.5.53"
423
541
  source = "registry+https://github.com/rust-lang/crates.io-index"
424
- checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
542
+ checksum = "d76b5d13eaa18c901fd2f7fca939fefe3a0727a953561fefdf3b2922b8569d00"
425
543
  dependencies = [
426
544
  "anstream",
427
545
  "anstyle",
@@ -431,9 +549,9 @@ dependencies = [
431
549
 
432
550
  [[package]]
433
551
  name = "clap_complete"
434
- version = "4.5.60"
552
+ version = "4.5.61"
435
553
  source = "registry+https://github.com/rust-lang/crates.io-index"
436
- checksum = "8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971"
554
+ checksum = "39615915e2ece2550c0149addac32fb5bd312c657f43845bb9088cb9c8a7c992"
437
555
  dependencies = [
438
556
  "clap",
439
557
  ]
@@ -444,7 +562,7 @@ version = "4.5.49"
444
562
  source = "registry+https://github.com/rust-lang/crates.io-index"
445
563
  checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
446
564
  dependencies = [
447
- "heck",
565
+ "heck 0.5.0",
448
566
  "proc-macro2",
449
567
  "quote",
450
568
  "syn",
@@ -466,6 +584,15 @@ dependencies = [
466
584
  "roff",
467
585
  ]
468
586
 
587
+ [[package]]
588
+ name = "cobs"
589
+ version = "0.3.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
592
+ dependencies = [
593
+ "thiserror 2.0.17",
594
+ ]
595
+
469
596
  [[package]]
470
597
  name = "color_quant"
471
598
  version = "1.1.0"
@@ -478,6 +605,24 @@ version = "1.0.4"
478
605
  source = "registry+https://github.com/rust-lang/crates.io-index"
479
606
  checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
480
607
 
608
+ [[package]]
609
+ name = "compression-codecs"
610
+ version = "0.4.35"
611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
612
+ checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2"
613
+ dependencies = [
614
+ "brotli",
615
+ "compression-core",
616
+ "flate2",
617
+ "memchr",
618
+ ]
619
+
620
+ [[package]]
621
+ name = "compression-core"
622
+ version = "0.4.31"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
625
+
481
626
  [[package]]
482
627
  name = "console_error_panic_hook"
483
628
  version = "0.1.7"
@@ -496,27 +641,28 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
496
641
 
497
642
  [[package]]
498
643
  name = "convert_case"
499
- version = "0.8.0"
644
+ version = "0.10.0"
500
645
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
646
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
502
647
  dependencies = [
503
648
  "unicode-segmentation",
504
649
  ]
505
650
 
506
651
  [[package]]
507
- name = "convert_case"
508
- version = "0.9.0"
652
+ name = "core-foundation"
653
+ version = "0.9.4"
509
654
  source = "registry+https://github.com/rust-lang/crates.io-index"
510
- checksum = "db05ffb6856bf0ecdf6367558a76a0e8a77b1713044eb92845c692100ed50190"
655
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
511
656
  dependencies = [
512
- "unicode-segmentation",
657
+ "core-foundation-sys",
658
+ "libc",
513
659
  ]
514
660
 
515
661
  [[package]]
516
662
  name = "core-foundation"
517
- version = "0.9.4"
663
+ version = "0.10.1"
518
664
  source = "registry+https://github.com/rust-lang/crates.io-index"
519
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
665
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
520
666
  dependencies = [
521
667
  "core-foundation-sys",
522
668
  "libc",
@@ -546,11 +692,149 @@ dependencies = [
546
692
  "libc",
547
693
  ]
548
694
 
695
+ [[package]]
696
+ name = "cranelift-assembler-x64"
697
+ version = "0.126.1"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "30054f4aef4d614d37f27d5b77e36e165f0b27a71563be348e7c9fcfac41eed8"
700
+ dependencies = [
701
+ "cranelift-assembler-x64-meta",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "cranelift-assembler-x64-meta"
706
+ version = "0.126.1"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "0beab56413879d4f515e08bcf118b1cb85f294129bb117057f573d37bfbb925a"
709
+ dependencies = [
710
+ "cranelift-srcgen",
711
+ ]
712
+
713
+ [[package]]
714
+ name = "cranelift-bforest"
715
+ version = "0.126.1"
716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
717
+ checksum = "6d054747549a69b264d5299c8ca1b0dd45dc6bd0ee43f1edfcc42a8b12952c7a"
718
+ dependencies = [
719
+ "cranelift-entity",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "cranelift-bitset"
724
+ version = "0.126.1"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "98b92d481b77a7dc9d07c96e24a16f29e0c9c27d042828fdf7e49e54ee9819bf"
727
+ dependencies = [
728
+ "serde",
729
+ "serde_derive",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "cranelift-codegen"
734
+ version = "0.126.1"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "6eeccfc043d599b0ef1806942707fc51cdd1c3965c343956dc975a55d82a920f"
737
+ dependencies = [
738
+ "bumpalo",
739
+ "cranelift-assembler-x64",
740
+ "cranelift-bforest",
741
+ "cranelift-bitset",
742
+ "cranelift-codegen-meta",
743
+ "cranelift-codegen-shared",
744
+ "cranelift-control",
745
+ "cranelift-entity",
746
+ "cranelift-isle",
747
+ "gimli",
748
+ "hashbrown 0.15.5",
749
+ "log",
750
+ "pulley-interpreter",
751
+ "regalloc2",
752
+ "rustc-hash 2.1.1",
753
+ "serde",
754
+ "smallvec",
755
+ "target-lexicon",
756
+ "wasmtime-internal-math",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "cranelift-codegen-meta"
761
+ version = "0.126.1"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "1174cdb9d9d43b2bdaa612a07ed82af13db9b95526bc2c286c2aec4689bcc038"
764
+ dependencies = [
765
+ "cranelift-assembler-x64-meta",
766
+ "cranelift-codegen-shared",
767
+ "cranelift-srcgen",
768
+ "heck 0.5.0",
769
+ "pulley-interpreter",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "cranelift-codegen-shared"
774
+ version = "0.126.1"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "7d572be73fae802eb115f45e7e67a9ed16acb4ee683b67c4086768786545419a"
777
+
778
+ [[package]]
779
+ name = "cranelift-control"
780
+ version = "0.126.1"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "e1587465cc84c5cc793b44add928771945f3132bbf6b3621ee9473c631a87156"
783
+ dependencies = [
784
+ "arbitrary",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "cranelift-entity"
789
+ version = "0.126.1"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "063b83448b1343e79282c3c7cbda7ed5f0816f0b763a4c15f7cecb0a17d87ea6"
792
+ dependencies = [
793
+ "cranelift-bitset",
794
+ "serde",
795
+ "serde_derive",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "cranelift-frontend"
800
+ version = "0.126.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "aa4461c2d2ca48bc72883f5f5c3129d9aefac832df1db824af9db8db3efee109"
803
+ dependencies = [
804
+ "cranelift-codegen",
805
+ "log",
806
+ "smallvec",
807
+ "target-lexicon",
808
+ ]
809
+
810
+ [[package]]
811
+ name = "cranelift-isle"
812
+ version = "0.126.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "acd811b25e18f14810d09c504e06098acc1d9dbfa24879bf0d6b6fb44415fc66"
815
+
816
+ [[package]]
817
+ name = "cranelift-native"
818
+ version = "0.126.1"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "2417046989d8d6367a55bbab2e406a9195d176f4779be4aa484d645887217d37"
821
+ dependencies = [
822
+ "cranelift-codegen",
823
+ "libc",
824
+ "target-lexicon",
825
+ ]
826
+
827
+ [[package]]
828
+ name = "cranelift-srcgen"
829
+ version = "0.126.1"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "8d039de901c8d928222b8128e1b9a9ab27b82a7445cb749a871c75d9cb25c57d"
832
+
549
833
  [[package]]
550
834
  name = "crc"
551
- version = "3.3.0"
835
+ version = "3.4.0"
552
836
  source = "registry+https://github.com/rust-lang/crates.io-index"
553
- checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
837
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
554
838
  dependencies = [
555
839
  "crc-catalog",
556
840
  ]
@@ -636,9 +920,9 @@ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
636
920
 
637
921
  [[package]]
638
922
  name = "crypto-common"
639
- version = "0.1.6"
923
+ version = "0.1.7"
640
924
  source = "registry+https://github.com/rust-lang/crates.io-index"
641
- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
925
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
642
926
  dependencies = [
643
927
  "generic-array",
644
928
  "typenum",
@@ -646,9 +930,9 @@ dependencies = [
646
930
 
647
931
  [[package]]
648
932
  name = "ctor"
649
- version = "0.6.1"
933
+ version = "0.6.3"
650
934
  source = "registry+https://github.com/rust-lang/crates.io-index"
651
- checksum = "3ffc71fcdcdb40d6f087edddf7f8f1f8f79e6cf922f555a9ee8779752d4819bd"
935
+ checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
652
936
  dependencies = [
653
937
  "ctor-proc-macro",
654
938
  "dtor",
@@ -769,6 +1053,38 @@ dependencies = [
769
1053
  "subtle",
770
1054
  ]
771
1055
 
1056
+ [[package]]
1057
+ name = "directories-next"
1058
+ version = "2.0.0"
1059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1060
+ checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
1061
+ dependencies = [
1062
+ "cfg-if",
1063
+ "dirs-sys-next",
1064
+ ]
1065
+
1066
+ [[package]]
1067
+ name = "dirs-sys-next"
1068
+ version = "0.1.2"
1069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1070
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
1071
+ dependencies = [
1072
+ "libc",
1073
+ "redox_users",
1074
+ "winapi",
1075
+ ]
1076
+
1077
+ [[package]]
1078
+ name = "displaydoc"
1079
+ version = "0.2.5"
1080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1081
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1082
+ dependencies = [
1083
+ "proc-macro2",
1084
+ "quote",
1085
+ "syn",
1086
+ ]
1087
+
772
1088
  [[package]]
773
1089
  name = "dtor"
774
1090
  version = "0.1.1"
@@ -790,6 +1106,18 @@ version = "1.15.0"
790
1106
  source = "registry+https://github.com/rust-lang/crates.io-index"
791
1107
  checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
792
1108
 
1109
+ [[package]]
1110
+ name = "embedded-io"
1111
+ version = "0.4.0"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
1114
+
1115
+ [[package]]
1116
+ name = "embedded-io"
1117
+ version = "0.6.1"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
1120
+
793
1121
  [[package]]
794
1122
  name = "encoding_rs"
795
1123
  version = "0.8.35"
@@ -846,9 +1174,9 @@ dependencies = [
846
1174
 
847
1175
  [[package]]
848
1176
  name = "ext-php-rs"
849
- version = "0.15.1"
1177
+ version = "0.15.2"
850
1178
  source = "registry+https://github.com/rust-lang/crates.io-index"
851
- checksum = "94962f42ccc5d45651088311de8d8b20be42b42fe522135ee856f81bd886f0fc"
1179
+ checksum = "feb2e956267898c7b81d0dab7d17cd7f6ca17fd5cf5ba25866f4052cf86b0935"
852
1180
  dependencies = [
853
1181
  "anyhow",
854
1182
  "bindgen 0.72.1",
@@ -866,11 +1194,11 @@ dependencies = [
866
1194
 
867
1195
  [[package]]
868
1196
  name = "ext-php-rs-derive"
869
- version = "0.11.4"
1197
+ version = "0.11.5"
870
1198
  source = "registry+https://github.com/rust-lang/crates.io-index"
871
- checksum = "16cf7b2c829ca0d0b358c002e77b9aad452b2846bf8c6549c28a43aefbca2046"
1199
+ checksum = "231921568cc6937b7f4d22a5feaf7f28b263288297835cf4ba76671989545b67"
872
1200
  dependencies = [
873
- "convert_case 0.8.0",
1201
+ "convert_case",
874
1202
  "darling",
875
1203
  "itertools 0.14.0",
876
1204
  "proc-macro2",
@@ -878,6 +1206,12 @@ dependencies = [
878
1206
  "syn",
879
1207
  ]
880
1208
 
1209
+ [[package]]
1210
+ name = "fallible-iterator"
1211
+ version = "0.3.0"
1212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1213
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1214
+
881
1215
  [[package]]
882
1216
  name = "fastrand"
883
1217
  version = "2.3.0"
@@ -895,9 +1229,9 @@ dependencies = [
895
1229
 
896
1230
  [[package]]
897
1231
  name = "find-msvc-tools"
898
- version = "0.1.4"
1232
+ version = "0.1.5"
899
1233
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
- checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
1234
+ checksum = "3a3076410a55c90011c298b04d0cfa770b00fa04e1e3c97d3f6c9de105a03844"
901
1235
 
902
1236
  [[package]]
903
1237
  name = "findshlibs"
@@ -911,6 +1245,12 @@ dependencies = [
911
1245
  "winapi",
912
1246
  ]
913
1247
 
1248
+ [[package]]
1249
+ name = "fixedbitset"
1250
+ version = "0.4.2"
1251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1252
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1253
+
914
1254
  [[package]]
915
1255
  name = "flate2"
916
1256
  version = "1.1.5"
@@ -937,6 +1277,12 @@ version = "1.0.7"
937
1277
  source = "registry+https://github.com/rust-lang/crates.io-index"
938
1278
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
939
1279
 
1280
+ [[package]]
1281
+ name = "foldhash"
1282
+ version = "0.1.5"
1283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1284
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1285
+
940
1286
  [[package]]
941
1287
  name = "foreign-types"
942
1288
  version = "0.3.2"
@@ -952,6 +1298,25 @@ version = "0.1.1"
952
1298
  source = "registry+https://github.com/rust-lang/crates.io-index"
953
1299
  checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
954
1300
 
1301
+ [[package]]
1302
+ name = "form_urlencoded"
1303
+ version = "1.2.2"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1306
+ dependencies = [
1307
+ "percent-encoding",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "futf"
1312
+ version = "0.1.5"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
1315
+ dependencies = [
1316
+ "mac",
1317
+ "new_debug_unreachable",
1318
+ ]
1319
+
955
1320
  [[package]]
956
1321
  name = "futures"
957
1322
  version = "0.3.31"
@@ -1041,11 +1406,25 @@ dependencies = [
1041
1406
  "slab",
1042
1407
  ]
1043
1408
 
1409
+ [[package]]
1410
+ name = "fxprof-processed-profile"
1411
+ version = "0.8.1"
1412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1413
+ checksum = "25234f20a3ec0a962a61770cfe39ecf03cb529a6e474ad8cff025ed497eda557"
1414
+ dependencies = [
1415
+ "bitflags 2.10.0",
1416
+ "debugid",
1417
+ "rustc-hash 2.1.1",
1418
+ "serde",
1419
+ "serde_derive",
1420
+ "serde_json",
1421
+ ]
1422
+
1044
1423
  [[package]]
1045
1424
  name = "generic-array"
1046
- version = "0.14.9"
1425
+ version = "0.14.7"
1047
1426
  source = "registry+https://github.com/rust-lang/crates.io-index"
1048
- checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1427
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1049
1428
  dependencies = [
1050
1429
  "typenum",
1051
1430
  "version_check",
@@ -1053,21 +1432,36 @@ dependencies = [
1053
1432
 
1054
1433
  [[package]]
1055
1434
  name = "getrandom"
1056
- version = "0.3.4"
1435
+ version = "0.2.16"
1057
1436
  source = "registry+https://github.com/rust-lang/crates.io-index"
1058
- checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1437
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1059
1438
  dependencies = [
1060
1439
  "cfg-if",
1440
+ "js-sys",
1441
+ "libc",
1442
+ "wasi",
1443
+ "wasm-bindgen",
1444
+ ]
1445
+
1446
+ [[package]]
1447
+ name = "getrandom"
1448
+ version = "0.3.4"
1449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1450
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1451
+ dependencies = [
1452
+ "cfg-if",
1453
+ "js-sys",
1061
1454
  "libc",
1062
1455
  "r-efi",
1063
1456
  "wasip2",
1457
+ "wasm-bindgen",
1064
1458
  ]
1065
1459
 
1066
1460
  [[package]]
1067
1461
  name = "gif"
1068
- version = "0.13.3"
1462
+ version = "0.14.1"
1069
1463
  source = "registry+https://github.com/rust-lang/crates.io-index"
1070
- checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
1464
+ checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
1071
1465
  dependencies = [
1072
1466
  "color_quant",
1073
1467
  "weezl",
@@ -1078,6 +1472,11 @@ name = "gimli"
1078
1472
  version = "0.32.3"
1079
1473
  source = "registry+https://github.com/rust-lang/crates.io-index"
1080
1474
  checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1475
+ dependencies = [
1476
+ "fallible-iterator",
1477
+ "indexmap",
1478
+ "stable_deref_trait",
1479
+ ]
1081
1480
 
1082
1481
  [[package]]
1083
1482
  name = "glob"
@@ -1098,9 +1497,25 @@ dependencies = [
1098
1497
 
1099
1498
  [[package]]
1100
1499
  name = "hashbrown"
1101
- version = "0.16.0"
1500
+ version = "0.15.5"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1503
+ dependencies = [
1504
+ "foldhash",
1505
+ "serde",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "hashbrown"
1510
+ version = "0.16.1"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1513
+
1514
+ [[package]]
1515
+ name = "heck"
1516
+ version = "0.4.1"
1102
1517
  source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1518
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1104
1519
 
1105
1520
  [[package]]
1106
1521
  name = "heck"
@@ -1134,7 +1549,7 @@ dependencies = [
1134
1549
 
1135
1550
  [[package]]
1136
1551
  name = "html-to-markdown-cli"
1137
- version = "2.7.1"
1552
+ version = "2.14.2"
1138
1553
  dependencies = [
1139
1554
  "assert_cmd",
1140
1555
  "clap",
@@ -1143,12 +1558,23 @@ dependencies = [
1143
1558
  "encoding_rs",
1144
1559
  "html-to-markdown-rs",
1145
1560
  "predicates",
1561
+ "reqwest",
1562
+ "serde_json",
1146
1563
  "tempfile",
1147
1564
  ]
1148
1565
 
1566
+ [[package]]
1567
+ name = "html-to-markdown-ffi"
1568
+ version = "2.14.2"
1569
+ dependencies = [
1570
+ "cbindgen",
1571
+ "html-to-markdown-rs",
1572
+ "serde_json",
1573
+ ]
1574
+
1149
1575
  [[package]]
1150
1576
  name = "html-to-markdown-node"
1151
- version = "2.7.1"
1577
+ version = "2.14.2"
1152
1578
  dependencies = [
1153
1579
  "html-to-markdown-rs",
1154
1580
  "mimalloc-rust",
@@ -1159,7 +1585,7 @@ dependencies = [
1159
1585
 
1160
1586
  [[package]]
1161
1587
  name = "html-to-markdown-php"
1162
- version = "2.7.1"
1588
+ version = "2.14.2"
1163
1589
  dependencies = [
1164
1590
  "ext-php-rs",
1165
1591
  "html-to-markdown-rs",
@@ -1167,7 +1593,7 @@ dependencies = [
1167
1593
 
1168
1594
  [[package]]
1169
1595
  name = "html-to-markdown-py"
1170
- version = "2.7.1"
1596
+ version = "2.14.2"
1171
1597
  dependencies = [
1172
1598
  "base64",
1173
1599
  "html-to-markdown-rs",
@@ -1177,7 +1603,7 @@ dependencies = [
1177
1603
 
1178
1604
  [[package]]
1179
1605
  name = "html-to-markdown-rb"
1180
- version = "2.7.1"
1606
+ version = "2.14.2"
1181
1607
  dependencies = [
1182
1608
  "html-to-markdown-rs",
1183
1609
  "magnus",
@@ -1186,44 +1612,96 @@ dependencies = [
1186
1612
 
1187
1613
  [[package]]
1188
1614
  name = "html-to-markdown-rs"
1189
- version = "2.7.1"
1615
+ version = "2.14.2"
1190
1616
  dependencies = [
1617
+ "astral-tl",
1191
1618
  "base64",
1192
1619
  "criterion",
1193
1620
  "html-escape",
1621
+ "html5ever",
1194
1622
  "image",
1623
+ "markup5ever_rcdom",
1195
1624
  "once_cell",
1196
1625
  "regex",
1197
1626
  "serde",
1198
1627
  "serde_json",
1199
- "thiserror",
1200
- "tl",
1628
+ "thiserror 2.0.17",
1201
1629
  ]
1202
1630
 
1203
1631
  [[package]]
1204
1632
  name = "html-to-markdown-wasm"
1205
- version = "2.7.1"
1633
+ version = "2.14.2"
1206
1634
  dependencies = [
1207
1635
  "console_error_panic_hook",
1208
1636
  "html-to-markdown-rs",
1209
1637
  "js-sys",
1210
1638
  "serde",
1211
1639
  "serde-wasm-bindgen",
1640
+ "serde_json",
1212
1641
  "wasm-bindgen",
1213
1642
  "wasm-bindgen-test",
1214
1643
  ]
1215
1644
 
1645
+ [[package]]
1646
+ name = "html-to-markdown-wasm-wasmtime-tests"
1647
+ version = "2.14.2"
1648
+ dependencies = [
1649
+ "anyhow",
1650
+ "html-to-markdown-rs",
1651
+ "wasmtime",
1652
+ ]
1653
+
1654
+ [[package]]
1655
+ name = "html5ever"
1656
+ version = "0.36.1"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "6452c4751a24e1b99c3260d505eaeee76a050573e61f30ac2c924ddc7236f01e"
1659
+ dependencies = [
1660
+ "log",
1661
+ "markup5ever",
1662
+ ]
1663
+
1664
+ [[package]]
1665
+ name = "html_to_markdown_elixir"
1666
+ version = "2.14.2"
1667
+ dependencies = [
1668
+ "html-to-markdown-rs",
1669
+ "rustler",
1670
+ ]
1671
+
1216
1672
  [[package]]
1217
1673
  name = "http"
1218
- version = "1.3.1"
1674
+ version = "1.4.0"
1219
1675
  source = "registry+https://github.com/rust-lang/crates.io-index"
1220
- checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1676
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1221
1677
  dependencies = [
1222
1678
  "bytes",
1223
- "fnv",
1224
1679
  "itoa",
1225
1680
  ]
1226
1681
 
1682
+ [[package]]
1683
+ name = "http-body"
1684
+ version = "1.0.1"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1687
+ dependencies = [
1688
+ "bytes",
1689
+ "http",
1690
+ ]
1691
+
1692
+ [[package]]
1693
+ name = "http-body-util"
1694
+ version = "0.1.3"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1697
+ dependencies = [
1698
+ "bytes",
1699
+ "futures-core",
1700
+ "http",
1701
+ "http-body",
1702
+ "pin-project-lite",
1703
+ ]
1704
+
1227
1705
  [[package]]
1228
1706
  name = "httparse"
1229
1707
  version = "1.10.1"
@@ -1239,17 +1717,201 @@ dependencies = [
1239
1717
  "libm",
1240
1718
  ]
1241
1719
 
1720
+ [[package]]
1721
+ name = "hyper"
1722
+ version = "1.8.1"
1723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1724
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1725
+ dependencies = [
1726
+ "atomic-waker",
1727
+ "bytes",
1728
+ "futures-channel",
1729
+ "futures-core",
1730
+ "http",
1731
+ "http-body",
1732
+ "httparse",
1733
+ "itoa",
1734
+ "pin-project-lite",
1735
+ "pin-utils",
1736
+ "smallvec",
1737
+ "tokio",
1738
+ "want",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "hyper-rustls"
1743
+ version = "0.27.7"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1746
+ dependencies = [
1747
+ "http",
1748
+ "hyper",
1749
+ "hyper-util",
1750
+ "rustls",
1751
+ "rustls-native-certs",
1752
+ "rustls-pki-types",
1753
+ "tokio",
1754
+ "tokio-rustls",
1755
+ "tower-service",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "hyper-util"
1760
+ version = "0.1.19"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1763
+ dependencies = [
1764
+ "base64",
1765
+ "bytes",
1766
+ "futures-channel",
1767
+ "futures-core",
1768
+ "futures-util",
1769
+ "http",
1770
+ "http-body",
1771
+ "hyper",
1772
+ "ipnet",
1773
+ "libc",
1774
+ "percent-encoding",
1775
+ "pin-project-lite",
1776
+ "socket2",
1777
+ "tokio",
1778
+ "tower-service",
1779
+ "tracing",
1780
+ ]
1781
+
1782
+ [[package]]
1783
+ name = "icu_collections"
1784
+ version = "2.1.1"
1785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1786
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1787
+ dependencies = [
1788
+ "displaydoc",
1789
+ "potential_utf",
1790
+ "yoke",
1791
+ "zerofrom",
1792
+ "zerovec",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "icu_locale_core"
1797
+ version = "2.1.1"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1800
+ dependencies = [
1801
+ "displaydoc",
1802
+ "litemap",
1803
+ "tinystr",
1804
+ "writeable",
1805
+ "zerovec",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "icu_normalizer"
1810
+ version = "2.1.1"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1813
+ dependencies = [
1814
+ "icu_collections",
1815
+ "icu_normalizer_data",
1816
+ "icu_properties",
1817
+ "icu_provider",
1818
+ "smallvec",
1819
+ "zerovec",
1820
+ ]
1821
+
1822
+ [[package]]
1823
+ name = "icu_normalizer_data"
1824
+ version = "2.1.1"
1825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1826
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1827
+
1828
+ [[package]]
1829
+ name = "icu_properties"
1830
+ version = "2.1.2"
1831
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1832
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1833
+ dependencies = [
1834
+ "icu_collections",
1835
+ "icu_locale_core",
1836
+ "icu_properties_data",
1837
+ "icu_provider",
1838
+ "zerotrie",
1839
+ "zerovec",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "icu_properties_data"
1844
+ version = "2.1.2"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1847
+
1848
+ [[package]]
1849
+ name = "icu_provider"
1850
+ version = "2.1.1"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1853
+ dependencies = [
1854
+ "displaydoc",
1855
+ "icu_locale_core",
1856
+ "writeable",
1857
+ "yoke",
1858
+ "zerofrom",
1859
+ "zerotrie",
1860
+ "zerovec",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "id-arena"
1865
+ version = "2.2.1"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
1868
+
1242
1869
  [[package]]
1243
1870
  name = "ident_case"
1244
1871
  version = "1.0.1"
1245
1872
  source = "registry+https://github.com/rust-lang/crates.io-index"
1246
1873
  checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1247
1874
 
1875
+ [[package]]
1876
+ name = "idna"
1877
+ version = "1.1.0"
1878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1880
+ dependencies = [
1881
+ "idna_adapter",
1882
+ "smallvec",
1883
+ "utf8_iter",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "idna_adapter"
1888
+ version = "1.2.1"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1891
+ dependencies = [
1892
+ "icu_normalizer",
1893
+ "icu_properties",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "im-rc"
1898
+ version = "15.1.0"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe"
1901
+ dependencies = [
1902
+ "bitmaps",
1903
+ "rand_core 0.6.4",
1904
+ "rand_xoshiro",
1905
+ "sized-chunks",
1906
+ "typenum",
1907
+ "version_check",
1908
+ ]
1909
+
1248
1910
  [[package]]
1249
1911
  name = "image"
1250
- version = "0.25.8"
1912
+ version = "0.25.9"
1251
1913
  source = "registry+https://github.com/rust-lang/crates.io-index"
1252
- checksum = "529feb3e6769d234375c4cf1ee2ce713682b8e76538cb13f9fc23e1400a591e7"
1914
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
1253
1915
  dependencies = [
1254
1916
  "bytemuck",
1255
1917
  "byteorder-lite",
@@ -1275,12 +1937,14 @@ dependencies = [
1275
1937
 
1276
1938
  [[package]]
1277
1939
  name = "indexmap"
1278
- version = "2.12.0"
1940
+ version = "2.12.1"
1279
1941
  source = "registry+https://github.com/rust-lang/crates.io-index"
1280
- checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1942
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1281
1943
  dependencies = [
1282
1944
  "equivalent",
1283
- "hashbrown",
1945
+ "hashbrown 0.16.1",
1946
+ "serde",
1947
+ "serde_core",
1284
1948
  ]
1285
1949
 
1286
1950
  [[package]]
@@ -1319,6 +1983,31 @@ dependencies = [
1319
1983
  "generic-array",
1320
1984
  ]
1321
1985
 
1986
+ [[package]]
1987
+ name = "inventory"
1988
+ version = "0.3.21"
1989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1990
+ checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1991
+ dependencies = [
1992
+ "rustversion",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "ipnet"
1997
+ version = "2.11.0"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
2000
+
2001
+ [[package]]
2002
+ name = "iri-string"
2003
+ version = "0.7.9"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
2006
+ dependencies = [
2007
+ "memchr",
2008
+ "serde",
2009
+ ]
2010
+
1322
2011
  [[package]]
1323
2012
  name = "is-terminal"
1324
2013
  version = "0.4.17"
@@ -1369,21 +2058,41 @@ version = "1.0.15"
1369
2058
  source = "registry+https://github.com/rust-lang/crates.io-index"
1370
2059
  checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1371
2060
 
2061
+ [[package]]
2062
+ name = "ittapi"
2063
+ version = "0.4.0"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
2066
+ dependencies = [
2067
+ "anyhow",
2068
+ "ittapi-sys",
2069
+ "log",
2070
+ ]
2071
+
2072
+ [[package]]
2073
+ name = "ittapi-sys"
2074
+ version = "0.4.0"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
2077
+ dependencies = [
2078
+ "cc",
2079
+ ]
2080
+
1372
2081
  [[package]]
1373
2082
  name = "jobserver"
1374
2083
  version = "0.1.34"
1375
2084
  source = "registry+https://github.com/rust-lang/crates.io-index"
1376
2085
  checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1377
2086
  dependencies = [
1378
- "getrandom",
2087
+ "getrandom 0.3.4",
1379
2088
  "libc",
1380
2089
  ]
1381
2090
 
1382
2091
  [[package]]
1383
2092
  name = "js-sys"
1384
- version = "0.3.82"
2093
+ version = "0.3.83"
1385
2094
  source = "registry+https://github.com/rust-lang/crates.io-index"
1386
- checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
2095
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1387
2096
  dependencies = [
1388
2097
  "once_cell",
1389
2098
  "wasm-bindgen",
@@ -1401,6 +2110,12 @@ version = "1.3.0"
1401
2110
  source = "registry+https://github.com/rust-lang/crates.io-index"
1402
2111
  checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1403
2112
 
2113
+ [[package]]
2114
+ name = "leb128fmt"
2115
+ version = "0.1.0"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2118
+
1404
2119
  [[package]]
1405
2120
  name = "libbz2-rs-sys"
1406
2121
  version = "0.2.2"
@@ -1409,9 +2124,9 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
1409
2124
 
1410
2125
  [[package]]
1411
2126
  name = "libc"
1412
- version = "0.2.177"
2127
+ version = "0.2.178"
1413
2128
  source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
2129
+ checksum = "37c93d8daa9d8a012fd8ab92f088405fb202ea0b6ab73ee2482ae66af4f42091"
1415
2130
 
1416
2131
  [[package]]
1417
2132
  name = "libloading"
@@ -1439,11 +2154,21 @@ version = "0.2.15"
1439
2154
  source = "registry+https://github.com/rust-lang/crates.io-index"
1440
2155
  checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1441
2156
 
2157
+ [[package]]
2158
+ name = "libredox"
2159
+ version = "0.1.10"
2160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2161
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
2162
+ dependencies = [
2163
+ "bitflags 2.10.0",
2164
+ "libc",
2165
+ ]
2166
+
1442
2167
  [[package]]
1443
2168
  name = "libz-rs-sys"
1444
- version = "0.5.2"
2169
+ version = "0.5.4"
1445
2170
  source = "registry+https://github.com/rust-lang/crates.io-index"
1446
- checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
2171
+ checksum = "15413ef615ad868d4d65dce091cb233b229419c7c0c4bcaa746c0901c49ff39c"
1447
2172
  dependencies = [
1448
2173
  "zlib-rs",
1449
2174
  ]
@@ -1454,6 +2179,12 @@ version = "0.11.0"
1454
2179
  source = "registry+https://github.com/rust-lang/crates.io-index"
1455
2180
  checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1456
2181
 
2182
+ [[package]]
2183
+ name = "litemap"
2184
+ version = "0.8.1"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2187
+
1457
2188
  [[package]]
1458
2189
  name = "lock_api"
1459
2190
  version = "0.4.14"
@@ -1465,9 +2196,15 @@ dependencies = [
1465
2196
 
1466
2197
  [[package]]
1467
2198
  name = "log"
1468
- version = "0.4.28"
2199
+ version = "0.4.29"
1469
2200
  source = "registry+https://github.com/rust-lang/crates.io-index"
1470
- checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2201
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2202
+
2203
+ [[package]]
2204
+ name = "lru-slab"
2205
+ version = "0.1.2"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1471
2208
 
1472
2209
  [[package]]
1473
2210
  name = "lzma-rust2"
@@ -1479,6 +2216,21 @@ dependencies = [
1479
2216
  "sha2",
1480
2217
  ]
1481
2218
 
2219
+ [[package]]
2220
+ name = "mac"
2221
+ version = "0.1.1"
2222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2223
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2224
+
2225
+ [[package]]
2226
+ name = "mach2"
2227
+ version = "0.4.3"
2228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2229
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
2230
+ dependencies = [
2231
+ "libc",
2232
+ ]
2233
+
1482
2234
  [[package]]
1483
2235
  name = "magnus"
1484
2236
  version = "0.9.0"
@@ -1501,27 +2253,59 @@ dependencies = [
1501
2253
  ]
1502
2254
 
1503
2255
  [[package]]
1504
- name = "memchr"
1505
- version = "2.7.6"
1506
- source = "registry+https://github.com/rust-lang/crates.io-index"
1507
- checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1508
-
1509
- [[package]]
1510
- name = "memmap2"
1511
- version = "0.9.9"
2256
+ name = "markup5ever"
2257
+ version = "0.36.1"
1512
2258
  source = "registry+https://github.com/rust-lang/crates.io-index"
1513
- checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
2259
+ checksum = "6c3294c4d74d0742910f8c7b466f44dda9eb2d5742c1e430138df290a1e8451c"
1514
2260
  dependencies = [
1515
- "libc",
2261
+ "log",
2262
+ "tendril",
2263
+ "web_atoms",
1516
2264
  ]
1517
2265
 
1518
2266
  [[package]]
1519
- name = "memoffset"
1520
- version = "0.9.1"
2267
+ name = "markup5ever_rcdom"
2268
+ version = "0.36.0+unofficial"
1521
2269
  source = "registry+https://github.com/rust-lang/crates.io-index"
1522
- checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2270
+ checksum = "3e5fc8802e8797c0dfdd2ce5c21aa0aee21abbc7b3b18559100651b3352a7b63"
1523
2271
  dependencies = [
1524
- "autocfg",
2272
+ "html5ever",
2273
+ "markup5ever",
2274
+ "tendril",
2275
+ "xml5ever",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "memchr"
2280
+ version = "2.7.6"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2283
+
2284
+ [[package]]
2285
+ name = "memfd"
2286
+ version = "0.6.5"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
2289
+ dependencies = [
2290
+ "rustix",
2291
+ ]
2292
+
2293
+ [[package]]
2294
+ name = "memmap2"
2295
+ version = "0.9.9"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "744133e4a0e0a658e1374cf3bf8e415c4052a15a111acd372764c55b4177d490"
2298
+ dependencies = [
2299
+ "libc",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "memoffset"
2304
+ version = "0.9.1"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2307
+ dependencies = [
2308
+ "autocfg",
1525
2309
  ]
1526
2310
 
1527
2311
  [[package]]
@@ -1544,11 +2328,17 @@ dependencies = [
1544
2328
  "cty",
1545
2329
  ]
1546
2330
 
2331
+ [[package]]
2332
+ name = "mime"
2333
+ version = "0.3.17"
2334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2335
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2336
+
1547
2337
  [[package]]
1548
2338
  name = "minicov"
1549
- version = "0.3.7"
2339
+ version = "0.3.8"
1550
2340
  source = "registry+https://github.com/rust-lang/crates.io-index"
1551
- checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
2341
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1552
2342
  dependencies = [
1553
2343
  "cc",
1554
2344
  "walkdir",
@@ -1570,11 +2360,22 @@ dependencies = [
1570
2360
  "simd-adler32",
1571
2361
  ]
1572
2362
 
2363
+ [[package]]
2364
+ name = "mio"
2365
+ version = "1.1.1"
2366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2367
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
2368
+ dependencies = [
2369
+ "libc",
2370
+ "wasi",
2371
+ "windows-sys 0.61.2",
2372
+ ]
2373
+
1573
2374
  [[package]]
1574
2375
  name = "moxcms"
1575
- version = "0.7.9"
2376
+ version = "0.7.10"
1576
2377
  source = "registry+https://github.com/rust-lang/crates.io-index"
1577
- checksum = "0fbdd3d7436f8b5e892b8b7ea114271ff0fa00bc5acae845d53b07d498616ef6"
2378
+ checksum = "80986bbbcf925ebd3be54c26613d861255284584501595cf418320c078945608"
1578
2379
  dependencies = [
1579
2380
  "num-traits",
1580
2381
  "pxfm",
@@ -1582,9 +2383,9 @@ dependencies = [
1582
2383
 
1583
2384
  [[package]]
1584
2385
  name = "napi"
1585
- version = "3.5.2"
2386
+ version = "3.7.0"
1586
2387
  source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "4e917a98ac74187a5d486604a269ed69cd7901dd4824453d5573fb051f69b1b3"
2388
+ checksum = "f27a163b545fd2184d2efdccf3d3df56acdb63465f2fcfebcaee0463c1e91783"
1588
2389
  dependencies = [
1589
2390
  "bitflags 2.10.0",
1590
2391
  "ctor",
@@ -1603,11 +2404,11 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1603
2404
 
1604
2405
  [[package]]
1605
2406
  name = "napi-derive"
1606
- version = "3.3.3"
2407
+ version = "3.4.0"
1607
2408
  source = "registry+https://github.com/rust-lang/crates.io-index"
1608
- checksum = "a258a6521951715e00568b258b8fb7a44c6087f588c371dc6b84a413f2728fdb"
2409
+ checksum = "47cffa09ea668c4cc5d7b1198780882e28780ed1804a903b80680725426223d9"
1609
2410
  dependencies = [
1610
- "convert_case 0.9.0",
2411
+ "convert_case",
1611
2412
  "ctor",
1612
2413
  "napi-derive-backend",
1613
2414
  "proc-macro2",
@@ -1617,11 +2418,11 @@ dependencies = [
1617
2418
 
1618
2419
  [[package]]
1619
2420
  name = "napi-derive-backend"
1620
- version = "3.0.2"
2421
+ version = "4.0.0"
1621
2422
  source = "registry+https://github.com/rust-lang/crates.io-index"
1622
- checksum = "77c36636292fe04366a1eec028adc25bc72f4fd7cce35bdcc310499ef74fb7de"
2423
+ checksum = "5e186227ec22f4675267a176d98dffecb27e6cc88926cbb7efb5427268565c0f"
1623
2424
  dependencies = [
1624
- "convert_case 0.9.0",
2425
+ "convert_case",
1625
2426
  "proc-macro2",
1626
2427
  "quote",
1627
2428
  "semver",
@@ -1630,9 +2431,9 @@ dependencies = [
1630
2431
 
1631
2432
  [[package]]
1632
2433
  name = "napi-sys"
1633
- version = "3.1.1"
2434
+ version = "3.2.1"
1634
2435
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "50ef9c1086f16aea2417c3788dbefed7591c3bccd800b827f4dfb271adff1149"
2436
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
1636
2437
  dependencies = [
1637
2438
  "libloading 0.9.0",
1638
2439
  ]
@@ -1649,11 +2450,17 @@ dependencies = [
1649
2450
  "openssl-probe",
1650
2451
  "openssl-sys",
1651
2452
  "schannel",
1652
- "security-framework",
2453
+ "security-framework 2.11.1",
1653
2454
  "security-framework-sys",
1654
2455
  "tempfile",
1655
2456
  ]
1656
2457
 
2458
+ [[package]]
2459
+ name = "new_debug_unreachable"
2460
+ version = "1.0.6"
2461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2462
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
2463
+
1657
2464
  [[package]]
1658
2465
  name = "nix"
1659
2466
  version = "0.26.4"
@@ -1696,6 +2503,15 @@ dependencies = [
1696
2503
  "winapi",
1697
2504
  ]
1698
2505
 
2506
+ [[package]]
2507
+ name = "nu-ansi-term"
2508
+ version = "0.50.3"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2511
+ dependencies = [
2512
+ "windows-sys 0.61.2",
2513
+ ]
2514
+
1699
2515
  [[package]]
1700
2516
  name = "num-conv"
1701
2517
  version = "0.1.0"
@@ -1719,6 +2535,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
2535
  checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1720
2536
  dependencies = [
1721
2537
  "autocfg",
2538
+ "libm",
1722
2539
  ]
1723
2540
 
1724
2541
  [[package]]
@@ -1746,6 +2563,9 @@ version = "0.37.3"
1746
2563
  source = "registry+https://github.com/rust-lang/crates.io-index"
1747
2564
  checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1748
2565
  dependencies = [
2566
+ "crc32fast",
2567
+ "hashbrown 0.15.5",
2568
+ "indexmap",
1749
2569
  "memchr",
1750
2570
  ]
1751
2571
 
@@ -1859,6 +2679,55 @@ version = "2.3.2"
1859
2679
  source = "registry+https://github.com/rust-lang/crates.io-index"
1860
2680
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1861
2681
 
2682
+ [[package]]
2683
+ name = "petgraph"
2684
+ version = "0.6.5"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
2687
+ dependencies = [
2688
+ "fixedbitset",
2689
+ "indexmap",
2690
+ ]
2691
+
2692
+ [[package]]
2693
+ name = "phf"
2694
+ version = "0.13.1"
2695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2696
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
2697
+ dependencies = [
2698
+ "phf_shared",
2699
+ "serde",
2700
+ ]
2701
+
2702
+ [[package]]
2703
+ name = "phf_codegen"
2704
+ version = "0.13.1"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
2707
+ dependencies = [
2708
+ "phf_generator",
2709
+ "phf_shared",
2710
+ ]
2711
+
2712
+ [[package]]
2713
+ name = "phf_generator"
2714
+ version = "0.13.1"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
2717
+ dependencies = [
2718
+ "fastrand",
2719
+ "phf_shared",
2720
+ ]
2721
+
2722
+ [[package]]
2723
+ name = "phf_shared"
2724
+ version = "0.13.1"
2725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2726
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
2727
+ dependencies = [
2728
+ "siphasher",
2729
+ ]
2730
+
1862
2731
  [[package]]
1863
2732
  name = "pin-project-lite"
1864
2733
  version = "0.2.16"
@@ -1924,6 +2793,27 @@ version = "1.11.1"
1924
2793
  source = "registry+https://github.com/rust-lang/crates.io-index"
1925
2794
  checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1926
2795
 
2796
+ [[package]]
2797
+ name = "postcard"
2798
+ version = "1.1.3"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
2801
+ dependencies = [
2802
+ "cobs",
2803
+ "embedded-io 0.4.0",
2804
+ "embedded-io 0.6.1",
2805
+ "serde",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "potential_utf"
2810
+ version = "0.1.4"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2813
+ dependencies = [
2814
+ "zerovec",
2815
+ ]
2816
+
1927
2817
  [[package]]
1928
2818
  name = "powerfmt"
1929
2819
  version = "0.2.0"
@@ -1955,9 +2845,24 @@ dependencies = [
1955
2845
  "spin",
1956
2846
  "symbolic-demangle",
1957
2847
  "tempfile",
1958
- "thiserror",
2848
+ "thiserror 2.0.17",
2849
+ ]
2850
+
2851
+ [[package]]
2852
+ name = "ppv-lite86"
2853
+ version = "0.2.21"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2856
+ dependencies = [
2857
+ "zerocopy",
1959
2858
  ]
1960
2859
 
2860
+ [[package]]
2861
+ name = "precomputed-hash"
2862
+ version = "0.1.1"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2865
+
1961
2866
  [[package]]
1962
2867
  name = "predicates"
1963
2868
  version = "3.1.3"
@@ -2028,20 +2933,43 @@ dependencies = [
2028
2933
  "unicase",
2029
2934
  ]
2030
2935
 
2936
+ [[package]]
2937
+ name = "pulley-interpreter"
2938
+ version = "39.0.1"
2939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2940
+ checksum = "0a09eb45f768f3a0396e85822790d867000c8b5f11551e7268c279e991457b16"
2941
+ dependencies = [
2942
+ "cranelift-bitset",
2943
+ "log",
2944
+ "pulley-macros",
2945
+ "wasmtime-internal-math",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "pulley-macros"
2950
+ version = "39.0.1"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "e29368432b8b7a8a343b75a6914621fad905c95d5c5297449a6546c127224f7a"
2953
+ dependencies = [
2954
+ "proc-macro2",
2955
+ "quote",
2956
+ "syn",
2957
+ ]
2958
+
2031
2959
  [[package]]
2032
2960
  name = "pxfm"
2033
- version = "0.1.25"
2961
+ version = "0.1.27"
2034
2962
  source = "registry+https://github.com/rust-lang/crates.io-index"
2035
- checksum = "a3cbdf373972bf78df4d3b518d07003938e2c7d1fb5891e55f9cb6df57009d84"
2963
+ checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
2036
2964
  dependencies = [
2037
2965
  "num-traits",
2038
2966
  ]
2039
2967
 
2040
2968
  [[package]]
2041
2969
  name = "pyo3"
2042
- version = "0.27.1"
2970
+ version = "0.27.2"
2043
2971
  source = "registry+https://github.com/rust-lang/crates.io-index"
2044
- checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
2972
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
2045
2973
  dependencies = [
2046
2974
  "indoc",
2047
2975
  "libc",
@@ -2056,18 +2984,18 @@ dependencies = [
2056
2984
 
2057
2985
  [[package]]
2058
2986
  name = "pyo3-build-config"
2059
- version = "0.27.1"
2987
+ version = "0.27.2"
2060
2988
  source = "registry+https://github.com/rust-lang/crates.io-index"
2061
- checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
2989
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
2062
2990
  dependencies = [
2063
2991
  "target-lexicon",
2064
2992
  ]
2065
2993
 
2066
2994
  [[package]]
2067
2995
  name = "pyo3-ffi"
2068
- version = "0.27.1"
2996
+ version = "0.27.2"
2069
2997
  source = "registry+https://github.com/rust-lang/crates.io-index"
2070
- checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
2998
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
2071
2999
  dependencies = [
2072
3000
  "libc",
2073
3001
  "pyo3-build-config",
@@ -2075,9 +3003,9 @@ dependencies = [
2075
3003
 
2076
3004
  [[package]]
2077
3005
  name = "pyo3-macros"
2078
- version = "0.27.1"
3006
+ version = "0.27.2"
2079
3007
  source = "registry+https://github.com/rust-lang/crates.io-index"
2080
- checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
3008
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
2081
3009
  dependencies = [
2082
3010
  "proc-macro2",
2083
3011
  "pyo3-macros-backend",
@@ -2087,11 +3015,11 @@ dependencies = [
2087
3015
 
2088
3016
  [[package]]
2089
3017
  name = "pyo3-macros-backend"
2090
- version = "0.27.1"
3018
+ version = "0.27.2"
2091
3019
  source = "registry+https://github.com/rust-lang/crates.io-index"
2092
- checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
3020
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
2093
3021
  dependencies = [
2094
- "heck",
3022
+ "heck 0.5.0",
2095
3023
  "proc-macro2",
2096
3024
  "pyo3-build-config",
2097
3025
  "quote",
@@ -2113,6 +3041,61 @@ dependencies = [
2113
3041
  "memchr",
2114
3042
  ]
2115
3043
 
3044
+ [[package]]
3045
+ name = "quinn"
3046
+ version = "0.11.9"
3047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3048
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
3049
+ dependencies = [
3050
+ "bytes",
3051
+ "cfg_aliases",
3052
+ "pin-project-lite",
3053
+ "quinn-proto",
3054
+ "quinn-udp",
3055
+ "rustc-hash 2.1.1",
3056
+ "rustls",
3057
+ "socket2",
3058
+ "thiserror 2.0.17",
3059
+ "tokio",
3060
+ "tracing",
3061
+ "web-time",
3062
+ ]
3063
+
3064
+ [[package]]
3065
+ name = "quinn-proto"
3066
+ version = "0.11.13"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
3069
+ dependencies = [
3070
+ "bytes",
3071
+ "getrandom 0.3.4",
3072
+ "lru-slab",
3073
+ "rand",
3074
+ "ring",
3075
+ "rustc-hash 2.1.1",
3076
+ "rustls",
3077
+ "rustls-pki-types",
3078
+ "slab",
3079
+ "thiserror 2.0.17",
3080
+ "tinyvec",
3081
+ "tracing",
3082
+ "web-time",
3083
+ ]
3084
+
3085
+ [[package]]
3086
+ name = "quinn-udp"
3087
+ version = "0.5.14"
3088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3089
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3090
+ dependencies = [
3091
+ "cfg_aliases",
3092
+ "libc",
3093
+ "once_cell",
3094
+ "socket2",
3095
+ "tracing",
3096
+ "windows-sys 0.60.2",
3097
+ ]
3098
+
2116
3099
  [[package]]
2117
3100
  name = "quote"
2118
3101
  version = "1.0.42"
@@ -2128,6 +3111,50 @@ version = "5.3.0"
2128
3111
  source = "registry+https://github.com/rust-lang/crates.io-index"
2129
3112
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2130
3113
 
3114
+ [[package]]
3115
+ name = "rand"
3116
+ version = "0.9.2"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3119
+ dependencies = [
3120
+ "rand_chacha",
3121
+ "rand_core 0.9.3",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "rand_chacha"
3126
+ version = "0.9.0"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3129
+ dependencies = [
3130
+ "ppv-lite86",
3131
+ "rand_core 0.9.3",
3132
+ ]
3133
+
3134
+ [[package]]
3135
+ name = "rand_core"
3136
+ version = "0.6.4"
3137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3138
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3139
+
3140
+ [[package]]
3141
+ name = "rand_core"
3142
+ version = "0.9.3"
3143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3144
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3145
+ dependencies = [
3146
+ "getrandom 0.3.4",
3147
+ ]
3148
+
3149
+ [[package]]
3150
+ name = "rand_xoshiro"
3151
+ version = "0.6.0"
3152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3153
+ checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
3154
+ dependencies = [
3155
+ "rand_core 0.6.4",
3156
+ ]
3157
+
2131
3158
  [[package]]
2132
3159
  name = "rayon"
2133
3160
  version = "1.11.0"
@@ -2150,18 +3177,18 @@ dependencies = [
2150
3177
 
2151
3178
  [[package]]
2152
3179
  name = "rb-sys"
2153
- version = "0.9.117"
3180
+ version = "0.9.119"
2154
3181
  source = "registry+https://github.com/rust-lang/crates.io-index"
2155
- checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
3182
+ checksum = "4519fc8de033923105f512c504a8f27714ef38648ccc30969362194c50b2ed08"
2156
3183
  dependencies = [
2157
3184
  "rb-sys-build",
2158
3185
  ]
2159
3186
 
2160
3187
  [[package]]
2161
3188
  name = "rb-sys-build"
2162
- version = "0.9.117"
3189
+ version = "0.9.119"
2163
3190
  source = "registry+https://github.com/rust-lang/crates.io-index"
2164
- checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
3191
+ checksum = "2e0109499e06c85f56df4abad7d9c642ea8a2dd821d1d7132b4d1b69534677f3"
2165
3192
  dependencies = [
2166
3193
  "bindgen 0.69.5",
2167
3194
  "lazy_static",
@@ -2187,6 +3214,31 @@ dependencies = [
2187
3214
  "bitflags 2.10.0",
2188
3215
  ]
2189
3216
 
3217
+ [[package]]
3218
+ name = "redox_users"
3219
+ version = "0.4.6"
3220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3221
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
3222
+ dependencies = [
3223
+ "getrandom 0.2.16",
3224
+ "libredox",
3225
+ "thiserror 1.0.69",
3226
+ ]
3227
+
3228
+ [[package]]
3229
+ name = "regalloc2"
3230
+ version = "0.13.3"
3231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3232
+ checksum = "4e249c660440317032a71ddac302f25f1d5dff387667bcc3978d1f77aa31ac34"
3233
+ dependencies = [
3234
+ "allocator-api2",
3235
+ "bumpalo",
3236
+ "hashbrown 0.15.5",
3237
+ "log",
3238
+ "rustc-hash 2.1.1",
3239
+ "smallvec",
3240
+ ]
3241
+
2190
3242
  [[package]]
2191
3243
  name = "regex"
2192
3244
  version = "1.12.2"
@@ -2210,12 +3262,60 @@ dependencies = [
2210
3262
  "regex-syntax",
2211
3263
  ]
2212
3264
 
3265
+ [[package]]
3266
+ name = "regex-lite"
3267
+ version = "0.1.8"
3268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3269
+ checksum = "8d942b98df5e658f56f20d592c7f868833fe38115e65c33003d8cd224b0155da"
3270
+
2213
3271
  [[package]]
2214
3272
  name = "regex-syntax"
2215
3273
  version = "0.8.8"
2216
3274
  source = "registry+https://github.com/rust-lang/crates.io-index"
2217
3275
  checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2218
3276
 
3277
+ [[package]]
3278
+ name = "reqwest"
3279
+ version = "0.12.25"
3280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3281
+ checksum = "b6eff9328d40131d43bd911d42d79eb6a47312002a4daefc9e37f17e74a7701a"
3282
+ dependencies = [
3283
+ "base64",
3284
+ "bytes",
3285
+ "encoding_rs",
3286
+ "futures-channel",
3287
+ "futures-core",
3288
+ "futures-util",
3289
+ "http",
3290
+ "http-body",
3291
+ "http-body-util",
3292
+ "hyper",
3293
+ "hyper-rustls",
3294
+ "hyper-util",
3295
+ "js-sys",
3296
+ "log",
3297
+ "mime",
3298
+ "percent-encoding",
3299
+ "pin-project-lite",
3300
+ "quinn",
3301
+ "rustls",
3302
+ "rustls-native-certs",
3303
+ "rustls-pki-types",
3304
+ "serde",
3305
+ "serde_json",
3306
+ "serde_urlencoded",
3307
+ "sync_wrapper",
3308
+ "tokio",
3309
+ "tokio-rustls",
3310
+ "tower",
3311
+ "tower-http",
3312
+ "tower-service",
3313
+ "url",
3314
+ "wasm-bindgen",
3315
+ "wasm-bindgen-futures",
3316
+ "web-sys",
3317
+ ]
3318
+
2219
3319
  [[package]]
2220
3320
  name = "rgb"
2221
3321
  version = "0.8.52"
@@ -2225,6 +3325,20 @@ dependencies = [
2225
3325
  "bytemuck",
2226
3326
  ]
2227
3327
 
3328
+ [[package]]
3329
+ name = "ring"
3330
+ version = "0.17.14"
3331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3332
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3333
+ dependencies = [
3334
+ "cc",
3335
+ "cfg-if",
3336
+ "getrandom 0.2.16",
3337
+ "libc",
3338
+ "untrusted",
3339
+ "windows-sys 0.52.0",
3340
+ ]
3341
+
2228
3342
  [[package]]
2229
3343
  name = "roff"
2230
3344
  version = "0.2.2"
@@ -2233,7 +3347,7 @@ checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
2233
3347
 
2234
3348
  [[package]]
2235
3349
  name = "runtime-bench"
2236
- version = "2.7.1"
3350
+ version = "2.14.2"
2237
3351
  dependencies = [
2238
3352
  "anyhow",
2239
3353
  "clap",
@@ -2243,7 +3357,7 @@ dependencies = [
2243
3357
  "serde",
2244
3358
  "serde_json",
2245
3359
  "sysinfo",
2246
- "thiserror",
3360
+ "thiserror 2.0.17",
2247
3361
  "toml",
2248
3362
  ]
2249
3363
 
@@ -2279,40 +3393,103 @@ dependencies = [
2279
3393
  ]
2280
3394
 
2281
3395
  [[package]]
2282
- name = "rustls-pki-types"
2283
- version = "1.13.0"
3396
+ name = "rustler"
3397
+ version = "0.37.2"
2284
3398
  source = "registry+https://github.com/rust-lang/crates.io-index"
2285
- checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
3399
+ checksum = "a5c708d8b686a8d426681908369f835af90349f7ebb92ab87ddf14a851efd556"
2286
3400
  dependencies = [
2287
- "zeroize",
3401
+ "inventory",
3402
+ "libloading 0.9.0",
3403
+ "regex-lite",
3404
+ "rustler_codegen",
2288
3405
  ]
2289
3406
 
2290
3407
  [[package]]
2291
- name = "rustversion"
2292
- version = "1.0.22"
3408
+ name = "rustler_codegen"
3409
+ version = "0.37.2"
2293
3410
  source = "registry+https://github.com/rust-lang/crates.io-index"
2294
- checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3411
+ checksum = "da3f478ec72581782a7dd62a5adb406aa076af7cedd7de63fa3676c927eb216a"
3412
+ dependencies = [
3413
+ "heck 0.5.0",
3414
+ "inventory",
3415
+ "proc-macro2",
3416
+ "quote",
3417
+ "syn",
3418
+ ]
2295
3419
 
2296
3420
  [[package]]
2297
- name = "ryu"
2298
- version = "1.0.20"
3421
+ name = "rustls"
3422
+ version = "0.23.35"
2299
3423
  source = "registry+https://github.com/rust-lang/crates.io-index"
2300
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3424
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
3425
+ dependencies = [
3426
+ "once_cell",
3427
+ "ring",
3428
+ "rustls-pki-types",
3429
+ "rustls-webpki",
3430
+ "subtle",
3431
+ "zeroize",
3432
+ ]
2301
3433
 
2302
3434
  [[package]]
2303
- name = "same-file"
2304
- version = "1.0.6"
3435
+ name = "rustls-native-certs"
3436
+ version = "0.8.2"
2305
3437
  source = "registry+https://github.com/rust-lang/crates.io-index"
2306
- checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3438
+ checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
2307
3439
  dependencies = [
2308
- "winapi-util",
3440
+ "openssl-probe",
3441
+ "rustls-pki-types",
3442
+ "schannel",
3443
+ "security-framework 3.5.1",
2309
3444
  ]
2310
3445
 
2311
3446
  [[package]]
2312
- name = "schannel"
2313
- version = "0.1.28"
3447
+ name = "rustls-pki-types"
3448
+ version = "1.13.1"
2314
3449
  source = "registry+https://github.com/rust-lang/crates.io-index"
2315
- checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3450
+ checksum = "708c0f9d5f54ba0272468c1d306a52c495b31fa155e91bc25371e6df7996908c"
3451
+ dependencies = [
3452
+ "web-time",
3453
+ "zeroize",
3454
+ ]
3455
+
3456
+ [[package]]
3457
+ name = "rustls-webpki"
3458
+ version = "0.103.8"
3459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3460
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
3461
+ dependencies = [
3462
+ "ring",
3463
+ "rustls-pki-types",
3464
+ "untrusted",
3465
+ ]
3466
+
3467
+ [[package]]
3468
+ name = "rustversion"
3469
+ version = "1.0.22"
3470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3471
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3472
+
3473
+ [[package]]
3474
+ name = "ryu"
3475
+ version = "1.0.20"
3476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3477
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3478
+
3479
+ [[package]]
3480
+ name = "same-file"
3481
+ version = "1.0.6"
3482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3483
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3484
+ dependencies = [
3485
+ "winapi-util",
3486
+ ]
3487
+
3488
+ [[package]]
3489
+ name = "schannel"
3490
+ version = "0.1.28"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2316
3493
  dependencies = [
2317
3494
  "windows-sys 0.61.2",
2318
3495
  ]
@@ -2330,7 +3507,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
3507
  checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2331
3508
  dependencies = [
2332
3509
  "bitflags 2.10.0",
2333
- "core-foundation",
3510
+ "core-foundation 0.9.4",
3511
+ "core-foundation-sys",
3512
+ "libc",
3513
+ "security-framework-sys",
3514
+ ]
3515
+
3516
+ [[package]]
3517
+ name = "security-framework"
3518
+ version = "3.5.1"
3519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3520
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3521
+ dependencies = [
3522
+ "bitflags 2.10.0",
3523
+ "core-foundation 0.10.1",
2334
3524
  "core-foundation-sys",
2335
3525
  "libc",
2336
3526
  "security-framework-sys",
@@ -2425,6 +3615,31 @@ dependencies = [
2425
3615
  "serde_core",
2426
3616
  ]
2427
3617
 
3618
+ [[package]]
3619
+ name = "serde_urlencoded"
3620
+ version = "0.7.1"
3621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3622
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3623
+ dependencies = [
3624
+ "form_urlencoded",
3625
+ "itoa",
3626
+ "ryu",
3627
+ "serde",
3628
+ ]
3629
+
3630
+ [[package]]
3631
+ name = "serde_yaml"
3632
+ version = "0.9.34+deprecated"
3633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3634
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3635
+ dependencies = [
3636
+ "indexmap",
3637
+ "itoa",
3638
+ "ryu",
3639
+ "serde",
3640
+ "unsafe-libyaml",
3641
+ ]
3642
+
2428
3643
  [[package]]
2429
3644
  name = "sha1"
2430
3645
  version = "0.10.6"
@@ -2449,9 +3664,9 @@ dependencies = [
2449
3664
 
2450
3665
  [[package]]
2451
3666
  name = "shell-words"
2452
- version = "1.1.0"
3667
+ version = "1.1.1"
2453
3668
  source = "registry+https://github.com/rust-lang/crates.io-index"
2454
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
3669
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2455
3670
 
2456
3671
  [[package]]
2457
3672
  name = "shlex"
@@ -2461,9 +3676,25 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2461
3676
 
2462
3677
  [[package]]
2463
3678
  name = "simd-adler32"
2464
- version = "0.3.7"
3679
+ version = "0.3.8"
3680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3681
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3682
+
3683
+ [[package]]
3684
+ name = "siphasher"
3685
+ version = "1.0.1"
3686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3687
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3688
+
3689
+ [[package]]
3690
+ name = "sized-chunks"
3691
+ version = "0.6.5"
2465
3692
  source = "registry+https://github.com/rust-lang/crates.io-index"
2466
- checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
3693
+ checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
3694
+ dependencies = [
3695
+ "bitmaps",
3696
+ "typenum",
3697
+ ]
2467
3698
 
2468
3699
  [[package]]
2469
3700
  name = "skeptic"
@@ -2491,6 +3722,19 @@ name = "smallvec"
2491
3722
  version = "1.15.1"
2492
3723
  source = "registry+https://github.com/rust-lang/crates.io-index"
2493
3724
  checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3725
+ dependencies = [
3726
+ "serde",
3727
+ ]
3728
+
3729
+ [[package]]
3730
+ name = "socket2"
3731
+ version = "0.6.1"
3732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3733
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3734
+ dependencies = [
3735
+ "libc",
3736
+ "windows-sys 0.60.2",
3737
+ ]
2494
3738
 
2495
3739
  [[package]]
2496
3740
  name = "spin"
@@ -2513,6 +3757,31 @@ version = "0.1.0"
2513
3757
  source = "registry+https://github.com/rust-lang/crates.io-index"
2514
3758
  checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
2515
3759
 
3760
+ [[package]]
3761
+ name = "string_cache"
3762
+ version = "0.9.0"
3763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3764
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
3765
+ dependencies = [
3766
+ "new_debug_unreachable",
3767
+ "parking_lot",
3768
+ "phf_shared",
3769
+ "precomputed-hash",
3770
+ "serde",
3771
+ ]
3772
+
3773
+ [[package]]
3774
+ name = "string_cache_codegen"
3775
+ version = "0.6.1"
3776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3777
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
3778
+ dependencies = [
3779
+ "phf_generator",
3780
+ "phf_shared",
3781
+ "proc-macro2",
3782
+ "quote",
3783
+ ]
3784
+
2516
3785
  [[package]]
2517
3786
  name = "strsim"
2518
3787
  version = "0.11.1"
@@ -2527,9 +3796,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2527
3796
 
2528
3797
  [[package]]
2529
3798
  name = "symbolic-common"
2530
- version = "12.16.3"
3799
+ version = "12.17.0"
2531
3800
  source = "registry+https://github.com/rust-lang/crates.io-index"
2532
- checksum = "d03f433c9befeea460a01d750e698aa86caf86dcfbd77d552885cd6c89d52f50"
3801
+ checksum = "b3d8046c5674ab857104bc4559d505f4809b8060d57806e45d49737c97afeb60"
2533
3802
  dependencies = [
2534
3803
  "debugid",
2535
3804
  "memmap2",
@@ -2539,9 +3808,9 @@ dependencies = [
2539
3808
 
2540
3809
  [[package]]
2541
3810
  name = "symbolic-demangle"
2542
- version = "12.16.3"
3811
+ version = "12.17.0"
2543
3812
  source = "registry+https://github.com/rust-lang/crates.io-index"
2544
- checksum = "13d359ef6192db1760a34321ec4f089245ede4342c27e59be99642f12a859de8"
3813
+ checksum = "1accb6e5c4b0f682de907623912e616b44be1c9e725775155546669dbff720ec"
2545
3814
  dependencies = [
2546
3815
  "cpp_demangle",
2547
3816
  "rustc-demangle",
@@ -2550,15 +3819,35 @@ dependencies = [
2550
3819
 
2551
3820
  [[package]]
2552
3821
  name = "syn"
2553
- version = "2.0.110"
3822
+ version = "2.0.111"
2554
3823
  source = "registry+https://github.com/rust-lang/crates.io-index"
2555
- checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
3824
+ checksum = "390cc9a294ab71bdb1aa2e99d13be9c753cd2d7bd6560c77118597410c4d2e87"
2556
3825
  dependencies = [
2557
3826
  "proc-macro2",
2558
3827
  "quote",
2559
3828
  "unicode-ident",
2560
3829
  ]
2561
3830
 
3831
+ [[package]]
3832
+ name = "sync_wrapper"
3833
+ version = "1.0.2"
3834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3835
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3836
+ dependencies = [
3837
+ "futures-core",
3838
+ ]
3839
+
3840
+ [[package]]
3841
+ name = "synstructure"
3842
+ version = "0.13.2"
3843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3844
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3845
+ dependencies = [
3846
+ "proc-macro2",
3847
+ "quote",
3848
+ "syn",
3849
+ ]
3850
+
2562
3851
  [[package]]
2563
3852
  name = "sysinfo"
2564
3853
  version = "0.37.2"
@@ -2586,25 +3875,65 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
3875
  checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2587
3876
  dependencies = [
2588
3877
  "fastrand",
2589
- "getrandom",
3878
+ "getrandom 0.3.4",
2590
3879
  "once_cell",
2591
3880
  "rustix",
2592
3881
  "windows-sys 0.61.2",
2593
3882
  ]
2594
3883
 
3884
+ [[package]]
3885
+ name = "tendril"
3886
+ version = "0.4.3"
3887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3888
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3889
+ dependencies = [
3890
+ "futf",
3891
+ "mac",
3892
+ "utf-8",
3893
+ ]
3894
+
3895
+ [[package]]
3896
+ name = "termcolor"
3897
+ version = "1.4.1"
3898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3899
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3900
+ dependencies = [
3901
+ "winapi-util",
3902
+ ]
3903
+
2595
3904
  [[package]]
2596
3905
  name = "termtree"
2597
3906
  version = "0.5.1"
2598
3907
  source = "registry+https://github.com/rust-lang/crates.io-index"
2599
3908
  checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2600
3909
 
3910
+ [[package]]
3911
+ name = "thiserror"
3912
+ version = "1.0.69"
3913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3914
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3915
+ dependencies = [
3916
+ "thiserror-impl 1.0.69",
3917
+ ]
3918
+
2601
3919
  [[package]]
2602
3920
  name = "thiserror"
2603
3921
  version = "2.0.17"
2604
3922
  source = "registry+https://github.com/rust-lang/crates.io-index"
2605
3923
  checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2606
3924
  dependencies = [
2607
- "thiserror-impl",
3925
+ "thiserror-impl 2.0.17",
3926
+ ]
3927
+
3928
+ [[package]]
3929
+ name = "thiserror-impl"
3930
+ version = "1.0.69"
3931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3932
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3933
+ dependencies = [
3934
+ "proc-macro2",
3935
+ "quote",
3936
+ "syn",
2608
3937
  ]
2609
3938
 
2610
3939
  [[package]]
@@ -2637,6 +3966,16 @@ version = "0.1.6"
2637
3966
  source = "registry+https://github.com/rust-lang/crates.io-index"
2638
3967
  checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
2639
3968
 
3969
+ [[package]]
3970
+ name = "tinystr"
3971
+ version = "0.8.2"
3972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3973
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3974
+ dependencies = [
3975
+ "displaydoc",
3976
+ "zerovec",
3977
+ ]
3978
+
2640
3979
  [[package]]
2641
3980
  name = "tinytemplate"
2642
3981
  version = "1.2.1"
@@ -2648,10 +3987,56 @@ dependencies = [
2648
3987
  ]
2649
3988
 
2650
3989
  [[package]]
2651
- name = "tl"
2652
- version = "0.7.8"
3990
+ name = "tinyvec"
3991
+ version = "1.10.0"
3992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3993
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3994
+ dependencies = [
3995
+ "tinyvec_macros",
3996
+ ]
3997
+
3998
+ [[package]]
3999
+ name = "tinyvec_macros"
4000
+ version = "0.1.1"
4001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4002
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
4003
+
4004
+ [[package]]
4005
+ name = "tokio"
4006
+ version = "1.48.0"
2653
4007
  source = "registry+https://github.com/rust-lang/crates.io-index"
2654
- checksum = "b130bd8a58c163224b44e217b4239ca7b927d82bf6cc2fea1fc561d15056e3f7"
4008
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
4009
+ dependencies = [
4010
+ "bytes",
4011
+ "libc",
4012
+ "mio",
4013
+ "pin-project-lite",
4014
+ "socket2",
4015
+ "windows-sys 0.61.2",
4016
+ ]
4017
+
4018
+ [[package]]
4019
+ name = "tokio-rustls"
4020
+ version = "0.26.4"
4021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4022
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
4023
+ dependencies = [
4024
+ "rustls",
4025
+ "tokio",
4026
+ ]
4027
+
4028
+ [[package]]
4029
+ name = "tokio-util"
4030
+ version = "0.7.17"
4031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4032
+ checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
4033
+ dependencies = [
4034
+ "bytes",
4035
+ "futures-core",
4036
+ "futures-sink",
4037
+ "pin-project-lite",
4038
+ "tokio",
4039
+ ]
2655
4040
 
2656
4041
  [[package]]
2657
4042
  name = "toml"
@@ -2692,6 +4077,81 @@ version = "1.0.4"
2692
4077
  source = "registry+https://github.com/rust-lang/crates.io-index"
2693
4078
  checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
2694
4079
 
4080
+ [[package]]
4081
+ name = "tower"
4082
+ version = "0.5.2"
4083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4084
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4085
+ dependencies = [
4086
+ "futures-core",
4087
+ "futures-util",
4088
+ "pin-project-lite",
4089
+ "sync_wrapper",
4090
+ "tokio",
4091
+ "tower-layer",
4092
+ "tower-service",
4093
+ ]
4094
+
4095
+ [[package]]
4096
+ name = "tower-http"
4097
+ version = "0.6.8"
4098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4099
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
4100
+ dependencies = [
4101
+ "async-compression",
4102
+ "bitflags 2.10.0",
4103
+ "bytes",
4104
+ "futures-core",
4105
+ "futures-util",
4106
+ "http",
4107
+ "http-body",
4108
+ "http-body-util",
4109
+ "iri-string",
4110
+ "pin-project-lite",
4111
+ "tokio",
4112
+ "tokio-util",
4113
+ "tower",
4114
+ "tower-layer",
4115
+ "tower-service",
4116
+ ]
4117
+
4118
+ [[package]]
4119
+ name = "tower-layer"
4120
+ version = "0.3.3"
4121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4122
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4123
+
4124
+ [[package]]
4125
+ name = "tower-service"
4126
+ version = "0.3.3"
4127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4128
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4129
+
4130
+ [[package]]
4131
+ name = "tracing"
4132
+ version = "0.1.43"
4133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4134
+ checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647"
4135
+ dependencies = [
4136
+ "pin-project-lite",
4137
+ "tracing-core",
4138
+ ]
4139
+
4140
+ [[package]]
4141
+ name = "tracing-core"
4142
+ version = "0.1.35"
4143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4144
+ checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c"
4145
+ dependencies = [
4146
+ "once_cell",
4147
+ ]
4148
+
4149
+ [[package]]
4150
+ name = "try-lock"
4151
+ version = "0.2.5"
4152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4153
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4154
+
2695
4155
  [[package]]
2696
4156
  name = "typenum"
2697
4157
  version = "1.19.0"
@@ -2716,12 +4176,36 @@ version = "1.12.0"
2716
4176
  source = "registry+https://github.com/rust-lang/crates.io-index"
2717
4177
  checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2718
4178
 
4179
+ [[package]]
4180
+ name = "unicode-width"
4181
+ version = "0.2.2"
4182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4183
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
4184
+
4185
+ [[package]]
4186
+ name = "unicode-xid"
4187
+ version = "0.2.6"
4188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4189
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4190
+
2719
4191
  [[package]]
2720
4192
  name = "unindent"
2721
4193
  version = "0.2.4"
2722
4194
  source = "registry+https://github.com/rust-lang/crates.io-index"
2723
4195
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2724
4196
 
4197
+ [[package]]
4198
+ name = "unsafe-libyaml"
4199
+ version = "0.2.11"
4200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4201
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
4202
+
4203
+ [[package]]
4204
+ name = "untrusted"
4205
+ version = "0.9.0"
4206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4207
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4208
+
2725
4209
  [[package]]
2726
4210
  name = "ureq"
2727
4211
  version = "3.1.4"
@@ -2741,175 +4225,598 @@ dependencies = [
2741
4225
  ]
2742
4226
 
2743
4227
  [[package]]
2744
- name = "ureq-proto"
2745
- version = "0.5.2"
4228
+ name = "ureq-proto"
4229
+ version = "0.5.3"
4230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4231
+ checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f"
4232
+ dependencies = [
4233
+ "base64",
4234
+ "http",
4235
+ "httparse",
4236
+ "log",
4237
+ ]
4238
+
4239
+ [[package]]
4240
+ name = "url"
4241
+ version = "2.5.7"
4242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4243
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
4244
+ dependencies = [
4245
+ "form_urlencoded",
4246
+ "idna",
4247
+ "percent-encoding",
4248
+ "serde",
4249
+ ]
4250
+
4251
+ [[package]]
4252
+ name = "utf-8"
4253
+ version = "0.7.6"
4254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4255
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
4256
+
4257
+ [[package]]
4258
+ name = "utf8-width"
4259
+ version = "0.1.8"
4260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4261
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
4262
+
4263
+ [[package]]
4264
+ name = "utf8_iter"
4265
+ version = "1.0.4"
4266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4267
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4268
+
4269
+ [[package]]
4270
+ name = "utf8parse"
4271
+ version = "0.2.2"
4272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4273
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4274
+
4275
+ [[package]]
4276
+ name = "uuid"
4277
+ version = "1.19.0"
4278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4279
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
4280
+ dependencies = [
4281
+ "js-sys",
4282
+ "wasm-bindgen",
4283
+ ]
4284
+
4285
+ [[package]]
4286
+ name = "vcpkg"
4287
+ version = "0.2.15"
4288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4289
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4290
+
4291
+ [[package]]
4292
+ name = "version_check"
4293
+ version = "0.9.5"
4294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4295
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4296
+
4297
+ [[package]]
4298
+ name = "wait-timeout"
4299
+ version = "0.2.1"
4300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4301
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4302
+ dependencies = [
4303
+ "libc",
4304
+ ]
4305
+
4306
+ [[package]]
4307
+ name = "walkdir"
4308
+ version = "2.5.0"
4309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4310
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4311
+ dependencies = [
4312
+ "same-file",
4313
+ "winapi-util",
4314
+ ]
4315
+
4316
+ [[package]]
4317
+ name = "want"
4318
+ version = "0.3.1"
4319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4320
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4321
+ dependencies = [
4322
+ "try-lock",
4323
+ ]
4324
+
4325
+ [[package]]
4326
+ name = "wasi"
4327
+ version = "0.11.1+wasi-snapshot-preview1"
4328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4329
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4330
+
4331
+ [[package]]
4332
+ name = "wasip2"
4333
+ version = "1.0.1+wasi-0.2.4"
4334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4335
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4336
+ dependencies = [
4337
+ "wit-bindgen",
4338
+ ]
4339
+
4340
+ [[package]]
4341
+ name = "wasm-bindgen"
4342
+ version = "0.2.106"
4343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4344
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
4345
+ dependencies = [
4346
+ "cfg-if",
4347
+ "once_cell",
4348
+ "rustversion",
4349
+ "wasm-bindgen-macro",
4350
+ "wasm-bindgen-shared",
4351
+ ]
4352
+
4353
+ [[package]]
4354
+ name = "wasm-bindgen-futures"
4355
+ version = "0.4.56"
4356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4357
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
4358
+ dependencies = [
4359
+ "cfg-if",
4360
+ "js-sys",
4361
+ "once_cell",
4362
+ "wasm-bindgen",
4363
+ "web-sys",
4364
+ ]
4365
+
4366
+ [[package]]
4367
+ name = "wasm-bindgen-macro"
4368
+ version = "0.2.106"
4369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4370
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
4371
+ dependencies = [
4372
+ "quote",
4373
+ "wasm-bindgen-macro-support",
4374
+ ]
4375
+
4376
+ [[package]]
4377
+ name = "wasm-bindgen-macro-support"
4378
+ version = "0.2.106"
4379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4380
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
4381
+ dependencies = [
4382
+ "bumpalo",
4383
+ "proc-macro2",
4384
+ "quote",
4385
+ "syn",
4386
+ "wasm-bindgen-shared",
4387
+ ]
4388
+
4389
+ [[package]]
4390
+ name = "wasm-bindgen-shared"
4391
+ version = "0.2.106"
4392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4393
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
4394
+ dependencies = [
4395
+ "unicode-ident",
4396
+ ]
4397
+
4398
+ [[package]]
4399
+ name = "wasm-bindgen-test"
4400
+ version = "0.3.56"
4401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4402
+ checksum = "25e90e66d265d3a1efc0e72a54809ab90b9c0c515915c67cdf658689d2c22c6c"
4403
+ dependencies = [
4404
+ "async-trait",
4405
+ "cast",
4406
+ "js-sys",
4407
+ "libm",
4408
+ "minicov",
4409
+ "nu-ansi-term",
4410
+ "num-traits",
4411
+ "oorandom",
4412
+ "serde",
4413
+ "serde_json",
4414
+ "wasm-bindgen",
4415
+ "wasm-bindgen-futures",
4416
+ "wasm-bindgen-test-macro",
4417
+ ]
4418
+
4419
+ [[package]]
4420
+ name = "wasm-bindgen-test-macro"
4421
+ version = "0.3.56"
4422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4423
+ checksum = "7150335716dce6028bead2b848e72f47b45e7b9422f64cccdc23bedca89affc1"
4424
+ dependencies = [
4425
+ "proc-macro2",
4426
+ "quote",
4427
+ "syn",
4428
+ ]
4429
+
4430
+ [[package]]
4431
+ name = "wasm-compose"
4432
+ version = "0.240.0"
4433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4434
+ checksum = "feeb9a231e63bd5d5dfe07e9f8daa53d5c85e4f7de5ef756d3b4e6a5f501c578"
4435
+ dependencies = [
4436
+ "anyhow",
4437
+ "heck 0.4.1",
4438
+ "im-rc",
4439
+ "indexmap",
4440
+ "log",
4441
+ "petgraph",
4442
+ "serde",
4443
+ "serde_derive",
4444
+ "serde_yaml",
4445
+ "smallvec",
4446
+ "wasm-encoder 0.240.0",
4447
+ "wasmparser 0.240.0",
4448
+ "wat",
4449
+ ]
4450
+
4451
+ [[package]]
4452
+ name = "wasm-encoder"
4453
+ version = "0.240.0"
4454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4455
+ checksum = "06d642d8c5ecc083aafe9ceb32809276a304547a3a6eeecceb5d8152598bc71f"
4456
+ dependencies = [
4457
+ "leb128fmt",
4458
+ "wasmparser 0.240.0",
4459
+ ]
4460
+
4461
+ [[package]]
4462
+ name = "wasm-encoder"
4463
+ version = "0.243.0"
4464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4465
+ checksum = "c55db9c896d70bd9fa535ce83cd4e1f2ec3726b0edd2142079f594fc3be1cb35"
4466
+ dependencies = [
4467
+ "leb128fmt",
4468
+ "wasmparser 0.243.0",
4469
+ ]
4470
+
4471
+ [[package]]
4472
+ name = "wasmparser"
4473
+ version = "0.240.0"
4474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4475
+ checksum = "b722dcf61e0ea47440b53ff83ccb5df8efec57a69d150e4f24882e4eba7e24a4"
4476
+ dependencies = [
4477
+ "bitflags 2.10.0",
4478
+ "hashbrown 0.15.5",
4479
+ "indexmap",
4480
+ "semver",
4481
+ "serde",
4482
+ ]
4483
+
4484
+ [[package]]
4485
+ name = "wasmparser"
4486
+ version = "0.243.0"
4487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4488
+ checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
4489
+ dependencies = [
4490
+ "bitflags 2.10.0",
4491
+ "indexmap",
4492
+ "semver",
4493
+ ]
4494
+
4495
+ [[package]]
4496
+ name = "wasmprinter"
4497
+ version = "0.240.0"
4498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4499
+ checksum = "a84d6e25c198da67d0150ee7c2c62d33d784f0a565d1e670bdf1eeccca8158bc"
4500
+ dependencies = [
4501
+ "anyhow",
4502
+ "termcolor",
4503
+ "wasmparser 0.240.0",
4504
+ ]
4505
+
4506
+ [[package]]
4507
+ name = "wasmtime"
4508
+ version = "39.0.1"
4509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4510
+ checksum = "511bc19c2d48f338007dc941cb40c833c4707023fdaf9ec9b97cf1d5a62d26bb"
4511
+ dependencies = [
4512
+ "addr2line",
4513
+ "anyhow",
4514
+ "async-trait",
4515
+ "bitflags 2.10.0",
4516
+ "bumpalo",
4517
+ "cc",
4518
+ "cfg-if",
4519
+ "encoding_rs",
4520
+ "futures",
4521
+ "fxprof-processed-profile",
4522
+ "gimli",
4523
+ "hashbrown 0.15.5",
4524
+ "indexmap",
4525
+ "ittapi",
4526
+ "libc",
4527
+ "log",
4528
+ "mach2",
4529
+ "memfd",
4530
+ "object",
4531
+ "once_cell",
4532
+ "postcard",
4533
+ "pulley-interpreter",
4534
+ "rayon",
4535
+ "rustix",
4536
+ "semver",
4537
+ "serde",
4538
+ "serde_derive",
4539
+ "serde_json",
4540
+ "smallvec",
4541
+ "target-lexicon",
4542
+ "tempfile",
4543
+ "wasm-compose",
4544
+ "wasm-encoder 0.240.0",
4545
+ "wasmparser 0.240.0",
4546
+ "wasmtime-environ",
4547
+ "wasmtime-internal-cache",
4548
+ "wasmtime-internal-component-macro",
4549
+ "wasmtime-internal-component-util",
4550
+ "wasmtime-internal-cranelift",
4551
+ "wasmtime-internal-fiber",
4552
+ "wasmtime-internal-jit-debug",
4553
+ "wasmtime-internal-jit-icache-coherence",
4554
+ "wasmtime-internal-math",
4555
+ "wasmtime-internal-slab",
4556
+ "wasmtime-internal-unwinder",
4557
+ "wasmtime-internal-versioned-export-macros",
4558
+ "wasmtime-internal-winch",
4559
+ "wat",
4560
+ "windows-sys 0.60.2",
4561
+ ]
4562
+
4563
+ [[package]]
4564
+ name = "wasmtime-environ"
4565
+ version = "39.0.1"
4566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4567
+ checksum = "c3b0d53657fea2a8cee8ed1866ad45d2e5bc21be958a626a1dd9b7de589851b3"
4568
+ dependencies = [
4569
+ "anyhow",
4570
+ "cpp_demangle",
4571
+ "cranelift-bitset",
4572
+ "cranelift-entity",
4573
+ "gimli",
4574
+ "indexmap",
4575
+ "log",
4576
+ "object",
4577
+ "postcard",
4578
+ "rustc-demangle",
4579
+ "semver",
4580
+ "serde",
4581
+ "serde_derive",
4582
+ "smallvec",
4583
+ "target-lexicon",
4584
+ "wasm-encoder 0.240.0",
4585
+ "wasmparser 0.240.0",
4586
+ "wasmprinter",
4587
+ "wasmtime-internal-component-util",
4588
+ ]
4589
+
4590
+ [[package]]
4591
+ name = "wasmtime-internal-cache"
4592
+ version = "39.0.1"
2746
4593
  source = "registry+https://github.com/rust-lang/crates.io-index"
2747
- checksum = "60b4531c118335662134346048ddb0e54cc86bd7e81866757873055f0e38f5d2"
4594
+ checksum = "35e065628d2a6eccb722de71c6d9b58771f5c3c4f9d35f6cb6d9d92370f4c2b4"
2748
4595
  dependencies = [
4596
+ "anyhow",
2749
4597
  "base64",
2750
- "http",
2751
- "httparse",
4598
+ "directories-next",
2752
4599
  "log",
4600
+ "postcard",
4601
+ "rustix",
4602
+ "serde",
4603
+ "serde_derive",
4604
+ "sha2",
4605
+ "toml",
4606
+ "windows-sys 0.60.2",
4607
+ "zstd",
2753
4608
  ]
2754
4609
 
2755
4610
  [[package]]
2756
- name = "utf-8"
2757
- version = "0.7.6"
2758
- source = "registry+https://github.com/rust-lang/crates.io-index"
2759
- checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2760
-
2761
- [[package]]
2762
- name = "utf8-width"
2763
- version = "0.1.7"
4611
+ name = "wasmtime-internal-component-macro"
4612
+ version = "39.0.1"
2764
4613
  source = "registry+https://github.com/rust-lang/crates.io-index"
2765
- checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
4614
+ checksum = "c933104f57d27dd1e6c7bd9ee5df3242bdd1962d9381bc08fa5d4e60e1f5ebdf"
4615
+ dependencies = [
4616
+ "anyhow",
4617
+ "proc-macro2",
4618
+ "quote",
4619
+ "syn",
4620
+ "wasmtime-internal-component-util",
4621
+ "wasmtime-internal-wit-bindgen",
4622
+ "wit-parser",
4623
+ ]
2766
4624
 
2767
4625
  [[package]]
2768
- name = "utf8parse"
2769
- version = "0.2.2"
4626
+ name = "wasmtime-internal-component-util"
4627
+ version = "39.0.1"
2770
4628
  source = "registry+https://github.com/rust-lang/crates.io-index"
2771
- checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4629
+ checksum = "63ef2a95a5dbaa70fc3ef682ea8997e51cdd819b4d157a1100477cf43949d454"
2772
4630
 
2773
4631
  [[package]]
2774
- name = "uuid"
2775
- version = "1.18.1"
4632
+ name = "wasmtime-internal-cranelift"
4633
+ version = "39.0.1"
2776
4634
  source = "registry+https://github.com/rust-lang/crates.io-index"
2777
- checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
4635
+ checksum = "73122df6a8cf417ce486a94e844d3a60797217ce7ae69653e0ee9e28269e0fa5"
2778
4636
  dependencies = [
2779
- "js-sys",
2780
- "wasm-bindgen",
4637
+ "anyhow",
4638
+ "cfg-if",
4639
+ "cranelift-codegen",
4640
+ "cranelift-control",
4641
+ "cranelift-entity",
4642
+ "cranelift-frontend",
4643
+ "cranelift-native",
4644
+ "gimli",
4645
+ "itertools 0.14.0",
4646
+ "log",
4647
+ "object",
4648
+ "pulley-interpreter",
4649
+ "smallvec",
4650
+ "target-lexicon",
4651
+ "thiserror 2.0.17",
4652
+ "wasmparser 0.240.0",
4653
+ "wasmtime-environ",
4654
+ "wasmtime-internal-math",
4655
+ "wasmtime-internal-unwinder",
4656
+ "wasmtime-internal-versioned-export-macros",
2781
4657
  ]
2782
4658
 
2783
4659
  [[package]]
2784
- name = "vcpkg"
2785
- version = "0.2.15"
4660
+ name = "wasmtime-internal-fiber"
4661
+ version = "39.0.1"
2786
4662
  source = "registry+https://github.com/rust-lang/crates.io-index"
2787
- checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4663
+ checksum = "54ead059e58b54a7abbe0bfb9457b3833ebd2ad84326c248a835ff76d64c7c6f"
4664
+ dependencies = [
4665
+ "anyhow",
4666
+ "cc",
4667
+ "cfg-if",
4668
+ "libc",
4669
+ "rustix",
4670
+ "wasmtime-internal-versioned-export-macros",
4671
+ "windows-sys 0.60.2",
4672
+ ]
2788
4673
 
2789
4674
  [[package]]
2790
- name = "version_check"
2791
- version = "0.9.5"
4675
+ name = "wasmtime-internal-jit-debug"
4676
+ version = "39.0.1"
2792
4677
  source = "registry+https://github.com/rust-lang/crates.io-index"
2793
- checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4678
+ checksum = "3af620a4ac1623298c90d3736644e12d66974951d1e38d0464798de85c984e17"
4679
+ dependencies = [
4680
+ "cc",
4681
+ "object",
4682
+ "rustix",
4683
+ "wasmtime-internal-versioned-export-macros",
4684
+ ]
2794
4685
 
2795
4686
  [[package]]
2796
- name = "wait-timeout"
2797
- version = "0.2.1"
4687
+ name = "wasmtime-internal-jit-icache-coherence"
4688
+ version = "39.0.1"
2798
4689
  source = "registry+https://github.com/rust-lang/crates.io-index"
2799
- checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4690
+ checksum = "b97ccd36e25390258ce6720add639ffe5a7d81a5c904350aa08f5bbc60433d22"
2800
4691
  dependencies = [
4692
+ "anyhow",
4693
+ "cfg-if",
2801
4694
  "libc",
4695
+ "windows-sys 0.60.2",
2802
4696
  ]
2803
4697
 
2804
4698
  [[package]]
2805
- name = "walkdir"
2806
- version = "2.5.0"
4699
+ name = "wasmtime-internal-math"
4700
+ version = "39.0.1"
2807
4701
  source = "registry+https://github.com/rust-lang/crates.io-index"
2808
- checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4702
+ checksum = "cd1b856e1bbf0230ab560ba4204e944b141971adc4e6cdf3feb6979c1a7b7953"
2809
4703
  dependencies = [
2810
- "same-file",
2811
- "winapi-util",
4704
+ "libm",
2812
4705
  ]
2813
4706
 
2814
4707
  [[package]]
2815
- name = "wasip2"
2816
- version = "1.0.1+wasi-0.2.4"
4708
+ name = "wasmtime-internal-slab"
4709
+ version = "39.0.1"
2817
4710
  source = "registry+https://github.com/rust-lang/crates.io-index"
2818
- checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4711
+ checksum = "8908e71a780b97cbd3d8f3a0c446ac8df963069e0f3f38c9eace4f199d4d3e65"
4712
+
4713
+ [[package]]
4714
+ name = "wasmtime-internal-unwinder"
4715
+ version = "39.0.1"
4716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4717
+ checksum = "fb9c2f8223a0ef96527f0446b80c7d0d9bb0577c7b918e3104bd6d4cdba1d101"
2819
4718
  dependencies = [
2820
- "wit-bindgen",
4719
+ "anyhow",
4720
+ "cfg-if",
4721
+ "cranelift-codegen",
4722
+ "log",
4723
+ "object",
2821
4724
  ]
2822
4725
 
2823
4726
  [[package]]
2824
- name = "wasm-bindgen"
2825
- version = "0.2.105"
4727
+ name = "wasmtime-internal-versioned-export-macros"
4728
+ version = "39.0.1"
2826
4729
  source = "registry+https://github.com/rust-lang/crates.io-index"
2827
- checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
4730
+ checksum = "2b0fb82cdbffd6cafc812c734a22fa753102888b8760ecf6a08cbb50367a458a"
2828
4731
  dependencies = [
2829
- "cfg-if",
2830
- "once_cell",
2831
- "rustversion",
2832
- "wasm-bindgen-macro",
2833
- "wasm-bindgen-shared",
4732
+ "proc-macro2",
4733
+ "quote",
4734
+ "syn",
2834
4735
  ]
2835
4736
 
2836
4737
  [[package]]
2837
- name = "wasm-bindgen-futures"
2838
- version = "0.4.55"
4738
+ name = "wasmtime-internal-winch"
4739
+ version = "39.0.1"
2839
4740
  source = "registry+https://github.com/rust-lang/crates.io-index"
2840
- checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
4741
+ checksum = "f1cfd68149cef86afd9a6c9b51e461266dfa66b37b4c6fdf1201ddbf7f906271"
2841
4742
  dependencies = [
2842
- "cfg-if",
2843
- "js-sys",
2844
- "once_cell",
2845
- "wasm-bindgen",
2846
- "web-sys",
4743
+ "anyhow",
4744
+ "cranelift-codegen",
4745
+ "gimli",
4746
+ "log",
4747
+ "object",
4748
+ "target-lexicon",
4749
+ "wasmparser 0.240.0",
4750
+ "wasmtime-environ",
4751
+ "wasmtime-internal-cranelift",
4752
+ "winch-codegen",
2847
4753
  ]
2848
4754
 
2849
4755
  [[package]]
2850
- name = "wasm-bindgen-macro"
2851
- version = "0.2.105"
4756
+ name = "wasmtime-internal-wit-bindgen"
4757
+ version = "39.0.1"
2852
4758
  source = "registry+https://github.com/rust-lang/crates.io-index"
2853
- checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
4759
+ checksum = "a628437073400148f1ba2b55beb60eb376dc5ca538745994c83332b037d1f3fa"
2854
4760
  dependencies = [
2855
- "quote",
2856
- "wasm-bindgen-macro-support",
4761
+ "anyhow",
4762
+ "bitflags 2.10.0",
4763
+ "heck 0.5.0",
4764
+ "indexmap",
4765
+ "wit-parser",
2857
4766
  ]
2858
4767
 
2859
4768
  [[package]]
2860
- name = "wasm-bindgen-macro-support"
2861
- version = "0.2.105"
4769
+ name = "wast"
4770
+ version = "243.0.0"
2862
4771
  source = "registry+https://github.com/rust-lang/crates.io-index"
2863
- checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
4772
+ checksum = "df21d01c2d91e46cb7a221d79e58a2d210ea02020d57c092e79255cc2999ca7f"
2864
4773
  dependencies = [
2865
4774
  "bumpalo",
2866
- "proc-macro2",
2867
- "quote",
2868
- "syn",
2869
- "wasm-bindgen-shared",
4775
+ "leb128fmt",
4776
+ "memchr",
4777
+ "unicode-width",
4778
+ "wasm-encoder 0.243.0",
2870
4779
  ]
2871
4780
 
2872
4781
  [[package]]
2873
- name = "wasm-bindgen-shared"
2874
- version = "0.2.105"
4782
+ name = "wat"
4783
+ version = "1.243.0"
2875
4784
  source = "registry+https://github.com/rust-lang/crates.io-index"
2876
- checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
4785
+ checksum = "226a9a91cd80a50449312fef0c75c23478fcecfcc4092bdebe1dc8e760ef521b"
2877
4786
  dependencies = [
2878
- "unicode-ident",
4787
+ "wast",
2879
4788
  ]
2880
4789
 
2881
4790
  [[package]]
2882
- name = "wasm-bindgen-test"
2883
- version = "0.3.55"
4791
+ name = "web-sys"
4792
+ version = "0.3.83"
2884
4793
  source = "registry+https://github.com/rust-lang/crates.io-index"
2885
- checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
4794
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2886
4795
  dependencies = [
2887
4796
  "js-sys",
2888
- "minicov",
2889
4797
  "wasm-bindgen",
2890
- "wasm-bindgen-futures",
2891
- "wasm-bindgen-test-macro",
2892
4798
  ]
2893
4799
 
2894
4800
  [[package]]
2895
- name = "wasm-bindgen-test-macro"
2896
- version = "0.3.55"
4801
+ name = "web-time"
4802
+ version = "1.1.0"
2897
4803
  source = "registry+https://github.com/rust-lang/crates.io-index"
2898
- checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
4804
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2899
4805
  dependencies = [
2900
- "proc-macro2",
2901
- "quote",
2902
- "syn",
4806
+ "js-sys",
4807
+ "wasm-bindgen",
2903
4808
  ]
2904
4809
 
2905
4810
  [[package]]
2906
- name = "web-sys"
2907
- version = "0.3.82"
4811
+ name = "web_atoms"
4812
+ version = "0.2.0"
2908
4813
  source = "registry+https://github.com/rust-lang/crates.io-index"
2909
- checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
4814
+ checksum = "acd0c322f146d0f8aad130ce6c187953889359584497dac6561204c8e17bb43d"
2910
4815
  dependencies = [
2911
- "js-sys",
2912
- "wasm-bindgen",
4816
+ "phf",
4817
+ "phf_codegen",
4818
+ "string_cache",
4819
+ "string_cache_codegen",
2913
4820
  ]
2914
4821
 
2915
4822
  [[package]]
@@ -2958,6 +4865,26 @@ version = "0.4.0"
2958
4865
  source = "registry+https://github.com/rust-lang/crates.io-index"
2959
4866
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2960
4867
 
4868
+ [[package]]
4869
+ name = "winch-codegen"
4870
+ version = "39.0.1"
4871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4872
+ checksum = "b1de5a648102e39c8e817ed25e3820f4b9772f3c9c930984f32737be60e3156b"
4873
+ dependencies = [
4874
+ "anyhow",
4875
+ "cranelift-assembler-x64",
4876
+ "cranelift-codegen",
4877
+ "gimli",
4878
+ "regalloc2",
4879
+ "smallvec",
4880
+ "target-lexicon",
4881
+ "thiserror 2.0.17",
4882
+ "wasmparser 0.240.0",
4883
+ "wasmtime-environ",
4884
+ "wasmtime-internal-cranelift",
4885
+ "wasmtime-internal-math",
4886
+ ]
4887
+
2961
4888
  [[package]]
2962
4889
  name = "windows"
2963
4890
  version = "0.61.3"
@@ -3066,13 +4993,22 @@ dependencies = [
3066
4993
  "windows-link 0.1.3",
3067
4994
  ]
3068
4995
 
4996
+ [[package]]
4997
+ name = "windows-sys"
4998
+ version = "0.52.0"
4999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5000
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
5001
+ dependencies = [
5002
+ "windows-targets 0.52.6",
5003
+ ]
5004
+
3069
5005
  [[package]]
3070
5006
  name = "windows-sys"
3071
5007
  version = "0.60.2"
3072
5008
  source = "registry+https://github.com/rust-lang/crates.io-index"
3073
5009
  checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3074
5010
  dependencies = [
3075
- "windows-targets",
5011
+ "windows-targets 0.53.5",
3076
5012
  ]
3077
5013
 
3078
5014
  [[package]]
@@ -3084,6 +5020,22 @@ dependencies = [
3084
5020
  "windows-link 0.2.1",
3085
5021
  ]
3086
5022
 
5023
+ [[package]]
5024
+ name = "windows-targets"
5025
+ version = "0.52.6"
5026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5027
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
5028
+ dependencies = [
5029
+ "windows_aarch64_gnullvm 0.52.6",
5030
+ "windows_aarch64_msvc 0.52.6",
5031
+ "windows_i686_gnu 0.52.6",
5032
+ "windows_i686_gnullvm 0.52.6",
5033
+ "windows_i686_msvc 0.52.6",
5034
+ "windows_x86_64_gnu 0.52.6",
5035
+ "windows_x86_64_gnullvm 0.52.6",
5036
+ "windows_x86_64_msvc 0.52.6",
5037
+ ]
5038
+
3087
5039
  [[package]]
3088
5040
  name = "windows-targets"
3089
5041
  version = "0.53.5"
@@ -3091,14 +5043,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
5043
  checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3092
5044
  dependencies = [
3093
5045
  "windows-link 0.2.1",
3094
- "windows_aarch64_gnullvm",
3095
- "windows_aarch64_msvc",
3096
- "windows_i686_gnu",
3097
- "windows_i686_gnullvm",
3098
- "windows_i686_msvc",
3099
- "windows_x86_64_gnu",
3100
- "windows_x86_64_gnullvm",
3101
- "windows_x86_64_msvc",
5046
+ "windows_aarch64_gnullvm 0.53.1",
5047
+ "windows_aarch64_msvc 0.53.1",
5048
+ "windows_i686_gnu 0.53.1",
5049
+ "windows_i686_gnullvm 0.53.1",
5050
+ "windows_i686_msvc 0.53.1",
5051
+ "windows_x86_64_gnu 0.53.1",
5052
+ "windows_x86_64_gnullvm 0.53.1",
5053
+ "windows_x86_64_msvc 0.53.1",
3102
5054
  ]
3103
5055
 
3104
5056
  [[package]]
@@ -3110,48 +5062,96 @@ dependencies = [
3110
5062
  "windows-link 0.1.3",
3111
5063
  ]
3112
5064
 
5065
+ [[package]]
5066
+ name = "windows_aarch64_gnullvm"
5067
+ version = "0.52.6"
5068
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5069
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
5070
+
3113
5071
  [[package]]
3114
5072
  name = "windows_aarch64_gnullvm"
3115
5073
  version = "0.53.1"
3116
5074
  source = "registry+https://github.com/rust-lang/crates.io-index"
3117
5075
  checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3118
5076
 
5077
+ [[package]]
5078
+ name = "windows_aarch64_msvc"
5079
+ version = "0.52.6"
5080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5081
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
5082
+
3119
5083
  [[package]]
3120
5084
  name = "windows_aarch64_msvc"
3121
5085
  version = "0.53.1"
3122
5086
  source = "registry+https://github.com/rust-lang/crates.io-index"
3123
5087
  checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3124
5088
 
5089
+ [[package]]
5090
+ name = "windows_i686_gnu"
5091
+ version = "0.52.6"
5092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5093
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
5094
+
3125
5095
  [[package]]
3126
5096
  name = "windows_i686_gnu"
3127
5097
  version = "0.53.1"
3128
5098
  source = "registry+https://github.com/rust-lang/crates.io-index"
3129
5099
  checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3130
5100
 
5101
+ [[package]]
5102
+ name = "windows_i686_gnullvm"
5103
+ version = "0.52.6"
5104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5105
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
5106
+
3131
5107
  [[package]]
3132
5108
  name = "windows_i686_gnullvm"
3133
5109
  version = "0.53.1"
3134
5110
  source = "registry+https://github.com/rust-lang/crates.io-index"
3135
5111
  checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3136
5112
 
5113
+ [[package]]
5114
+ name = "windows_i686_msvc"
5115
+ version = "0.52.6"
5116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5117
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
5118
+
3137
5119
  [[package]]
3138
5120
  name = "windows_i686_msvc"
3139
5121
  version = "0.53.1"
3140
5122
  source = "registry+https://github.com/rust-lang/crates.io-index"
3141
5123
  checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3142
5124
 
5125
+ [[package]]
5126
+ name = "windows_x86_64_gnu"
5127
+ version = "0.52.6"
5128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5129
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
5130
+
3143
5131
  [[package]]
3144
5132
  name = "windows_x86_64_gnu"
3145
5133
  version = "0.53.1"
3146
5134
  source = "registry+https://github.com/rust-lang/crates.io-index"
3147
5135
  checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3148
5136
 
5137
+ [[package]]
5138
+ name = "windows_x86_64_gnullvm"
5139
+ version = "0.52.6"
5140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5141
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
5142
+
3149
5143
  [[package]]
3150
5144
  name = "windows_x86_64_gnullvm"
3151
5145
  version = "0.53.1"
3152
5146
  source = "registry+https://github.com/rust-lang/crates.io-index"
3153
5147
  checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3154
5148
 
5149
+ [[package]]
5150
+ name = "windows_x86_64_msvc"
5151
+ version = "0.52.6"
5152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5153
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
5154
+
3155
5155
  [[package]]
3156
5156
  name = "windows_x86_64_msvc"
3157
5157
  version = "0.53.1"
@@ -3160,9 +5160,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3160
5160
 
3161
5161
  [[package]]
3162
5162
  name = "winnow"
3163
- version = "0.7.13"
5163
+ version = "0.7.14"
3164
5164
  source = "registry+https://github.com/rust-lang/crates.io-index"
3165
- checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
5165
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3166
5166
 
3167
5167
  [[package]]
3168
5168
  name = "wit-bindgen"
@@ -3170,30 +5170,108 @@ version = "0.46.0"
3170
5170
  source = "registry+https://github.com/rust-lang/crates.io-index"
3171
5171
  checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3172
5172
 
5173
+ [[package]]
5174
+ name = "wit-parser"
5175
+ version = "0.240.0"
5176
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5177
+ checksum = "9875ea3fa272f57cc1fc50f225a7b94021a7878c484b33792bccad0d93223439"
5178
+ dependencies = [
5179
+ "anyhow",
5180
+ "id-arena",
5181
+ "indexmap",
5182
+ "log",
5183
+ "semver",
5184
+ "serde",
5185
+ "serde_derive",
5186
+ "serde_json",
5187
+ "unicode-xid",
5188
+ "wasmparser 0.240.0",
5189
+ ]
5190
+
5191
+ [[package]]
5192
+ name = "writeable"
5193
+ version = "0.6.2"
5194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5195
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
5196
+
5197
+ [[package]]
5198
+ name = "xml5ever"
5199
+ version = "0.36.1"
5200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5201
+ checksum = "f57dd51b88a4b9f99f9b55b136abb86210629d61c48117ddb87f567e51e66be7"
5202
+ dependencies = [
5203
+ "log",
5204
+ "markup5ever",
5205
+ ]
5206
+
3173
5207
  [[package]]
3174
5208
  name = "yansi"
3175
5209
  version = "1.0.1"
3176
5210
  source = "registry+https://github.com/rust-lang/crates.io-index"
3177
5211
  checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3178
5212
 
5213
+ [[package]]
5214
+ name = "yoke"
5215
+ version = "0.8.1"
5216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5217
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
5218
+ dependencies = [
5219
+ "stable_deref_trait",
5220
+ "yoke-derive",
5221
+ "zerofrom",
5222
+ ]
5223
+
5224
+ [[package]]
5225
+ name = "yoke-derive"
5226
+ version = "0.8.1"
5227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5228
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
5229
+ dependencies = [
5230
+ "proc-macro2",
5231
+ "quote",
5232
+ "syn",
5233
+ "synstructure",
5234
+ ]
5235
+
3179
5236
  [[package]]
3180
5237
  name = "zerocopy"
3181
- version = "0.8.27"
5238
+ version = "0.8.31"
3182
5239
  source = "registry+https://github.com/rust-lang/crates.io-index"
3183
- checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
5240
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3184
5241
  dependencies = [
3185
5242
  "zerocopy-derive",
3186
5243
  ]
3187
5244
 
3188
5245
  [[package]]
3189
5246
  name = "zerocopy-derive"
3190
- version = "0.8.27"
5247
+ version = "0.8.31"
5248
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5249
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
5250
+ dependencies = [
5251
+ "proc-macro2",
5252
+ "quote",
5253
+ "syn",
5254
+ ]
5255
+
5256
+ [[package]]
5257
+ name = "zerofrom"
5258
+ version = "0.1.6"
5259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5260
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
5261
+ dependencies = [
5262
+ "zerofrom-derive",
5263
+ ]
5264
+
5265
+ [[package]]
5266
+ name = "zerofrom-derive"
5267
+ version = "0.1.6"
3191
5268
  source = "registry+https://github.com/rust-lang/crates.io-index"
3192
- checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
5269
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3193
5270
  dependencies = [
3194
5271
  "proc-macro2",
3195
5272
  "quote",
3196
5273
  "syn",
5274
+ "synstructure",
3197
5275
  ]
3198
5276
 
3199
5277
  [[package]]
@@ -3216,6 +5294,39 @@ dependencies = [
3216
5294
  "syn",
3217
5295
  ]
3218
5296
 
5297
+ [[package]]
5298
+ name = "zerotrie"
5299
+ version = "0.2.3"
5300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5301
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
5302
+ dependencies = [
5303
+ "displaydoc",
5304
+ "yoke",
5305
+ "zerofrom",
5306
+ ]
5307
+
5308
+ [[package]]
5309
+ name = "zerovec"
5310
+ version = "0.11.5"
5311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5312
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
5313
+ dependencies = [
5314
+ "yoke",
5315
+ "zerofrom",
5316
+ "zerovec-derive",
5317
+ ]
5318
+
5319
+ [[package]]
5320
+ name = "zerovec-derive"
5321
+ version = "0.11.2"
5322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5323
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
5324
+ dependencies = [
5325
+ "proc-macro2",
5326
+ "quote",
5327
+ "syn",
5328
+ ]
5329
+
3219
5330
  [[package]]
3220
5331
  name = "zip"
3221
5332
  version = "6.0.0"
@@ -3229,7 +5340,7 @@ dependencies = [
3229
5340
  "crc32fast",
3230
5341
  "deflate64",
3231
5342
  "flate2",
3232
- "getrandom",
5343
+ "getrandom 0.3.4",
3233
5344
  "hmac",
3234
5345
  "indexmap",
3235
5346
  "lzma-rust2",
@@ -3245,9 +5356,9 @@ dependencies = [
3245
5356
 
3246
5357
  [[package]]
3247
5358
  name = "zlib-rs"
3248
- version = "0.5.2"
5359
+ version = "0.5.4"
3249
5360
  source = "registry+https://github.com/rust-lang/crates.io-index"
3250
- checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
5361
+ checksum = "51f936044d677be1a1168fae1d03b583a285a5dd9d8cbf7b24c23aa1fc775235"
3251
5362
 
3252
5363
  [[package]]
3253
5364
  name = "zopfli"
@@ -3291,15 +5402,15 @@ dependencies = [
3291
5402
 
3292
5403
  [[package]]
3293
5404
  name = "zune-core"
3294
- version = "0.4.12"
5405
+ version = "0.5.0"
3295
5406
  source = "registry+https://github.com/rust-lang/crates.io-index"
3296
- checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
5407
+ checksum = "111f7d9820f05fd715df3144e254d6fc02ee4088b0644c0ffd0efc9e6d9d2773"
3297
5408
 
3298
5409
  [[package]]
3299
5410
  name = "zune-jpeg"
3300
- version = "0.4.21"
5411
+ version = "0.5.6"
3301
5412
  source = "registry+https://github.com/rust-lang/crates.io-index"
3302
- checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
5413
+ checksum = "f520eebad972262a1dde0ec455bce4f8b298b1e5154513de58c114c4c54303e8"
3303
5414
  dependencies = [
3304
5415
  "zune-core",
3305
5416
  ]