html-to-markdown 2.7.1__tar.gz → 2.19.8__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 (87) hide show
  1. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/Cargo.lock +2426 -412
  2. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/Cargo.toml +18 -13
  3. html_to_markdown-2.19.8/PKG-INFO +345 -0
  4. html_to_markdown-2.19.8/README.md +311 -0
  5. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/Cargo.toml +13 -16
  6. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/README.md +16 -10
  7. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/converter.rs +4200 -756
  8. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/error.rs +13 -0
  9. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/converter.rs +83 -88
  10. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/extractor.rs +16 -29
  11. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/parser.rs +18 -39
  12. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/spatial.rs +17 -141
  13. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/types.rs +1 -13
  14. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/inline_images.rs +58 -1
  15. html_to_markdown-2.19.8/crates/html-to-markdown/src/lib.rs +764 -0
  16. html_to_markdown-2.19.8/crates/html-to-markdown/src/metadata.rs +1562 -0
  17. html_to_markdown-2.19.8/crates/html-to-markdown/src/options.rs +532 -0
  18. html_to_markdown-2.19.8/crates/html-to-markdown/src/safety.rs +67 -0
  19. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/text.rs +85 -0
  20. html_to_markdown-2.19.8/crates/html-to-markdown/src/visitor.rs +949 -0
  21. html_to_markdown-2.19.8/crates/html-to-markdown/src/visitor_helpers.rs +795 -0
  22. html_to_markdown-2.19.8/crates/html-to-markdown/src/wrapper.rs +680 -0
  23. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/br_in_inline_test.rs +4 -2
  24. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/commonmark_compliance_test.rs +0 -4
  25. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/hocr_compliance_test.rs +14 -30
  26. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/integration_test.rs +61 -8
  27. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_121_regressions.rs +40 -0
  28. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_127_regressions.rs +50 -0
  29. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_128_regressions.rs +10 -0
  30. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_131_regressions.rs +32 -0
  31. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_134_regressions.rs +31 -0
  32. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_139_regressions.rs +17 -0
  33. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_140_regressions.rs +168 -0
  34. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_143_regressions.rs +38 -0
  35. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_145_regressions.rs +147 -0
  36. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_146_regressions.rs +154 -0
  37. html_to_markdown-2.19.8/crates/html-to-markdown/tests/issue_176_regressions.rs +52 -0
  38. html_to_markdown-2.19.8/crates/html-to-markdown/tests/json_ld_script_extraction.rs +44 -0
  39. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/lists_test.rs +13 -11
  40. html_to_markdown-2.19.8/crates/html-to-markdown/tests/preprocessing_tests.rs +54 -0
  41. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/tests/tables_test.rs +68 -6
  42. html_to_markdown-2.19.8/crates/html-to-markdown/tests/test_script_style_stripping.rs +405 -0
  43. html_to_markdown-2.19.8/crates/html-to-markdown/tests/visitor_code_integration_test.rs +108 -0
  44. html_to_markdown-2.19.8/crates/html-to-markdown/tests/visitor_integration_test.rs +628 -0
  45. html_to_markdown-2.19.8/crates/html-to-markdown/tests/xml_tables_test.rs +336 -0
  46. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/Cargo.toml +13 -1
  47. html_to_markdown-2.19.8/crates/html-to-markdown-py/README.md +148 -0
  48. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +6 -0
  49. html_to_markdown-2.19.8/crates/html-to-markdown-py/src/lib.rs +2764 -0
  50. html_to_markdown-2.19.8/crates/html-to-markdown-py/src/profiling.rs +224 -0
  51. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/html_to_markdown/__init__.py +21 -3
  52. html_to_markdown-2.19.8/html_to_markdown/_html_to_markdown.pyi +258 -0
  53. html_to_markdown-2.19.8/html_to_markdown/api.py +338 -0
  54. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/html_to_markdown/cli_proxy.py +71 -13
  55. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/html_to_markdown/v1_compat.py +0 -1
  56. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/pyproject.toml +17 -5
  57. html_to_markdown-2.7.1/PKG-INFO +0 -271
  58. html_to_markdown-2.7.1/README.md +0 -237
  59. html_to_markdown-2.7.1/crates/html-to-markdown/benches/conversion_benchmark.rs +0 -302
  60. html_to_markdown-2.7.1/crates/html-to-markdown/benches/micro_benchmark.rs +0 -189
  61. html_to_markdown-2.7.1/crates/html-to-markdown/benches/profiling_benchmark.rs +0 -133
  62. html_to_markdown-2.7.1/crates/html-to-markdown/src/lib.rs +0 -112
  63. html_to_markdown-2.7.1/crates/html-to-markdown/src/options.rs +0 -237
  64. html_to_markdown-2.7.1/crates/html-to-markdown/src/wrapper.rs +0 -214
  65. html_to_markdown-2.7.1/crates/html-to-markdown-py/README.md +0 -229
  66. html_to_markdown-2.7.1/crates/html-to-markdown-py/src/lib.rs +0 -594
  67. html_to_markdown-2.7.1/html_to_markdown/_html_to_markdown.pyi +0 -22
  68. html_to_markdown-2.7.1/html_to_markdown/api.py +0 -151
  69. html_to_markdown-2.7.1/html_to_markdown/bin/html-to-markdown +0 -0
  70. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/LICENSE +0 -0
  71. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/basic.rs +0 -0
  72. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/table.rs +0 -0
  73. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_escape.rs +0 -0
  74. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_inline_formatting.rs +0 -0
  75. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_lists.rs +0 -0
  76. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_semantic_tags.rs +0 -0
  77. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_tables.rs +0 -0
  78. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_task_lists.rs +0 -0
  79. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/examples/test_whitespace.rs +0 -0
  80. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown/src/hocr/mod.rs +0 -0
  81. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +0 -0
  82. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/crates/html-to-markdown-py/uv.lock +0 -0
  83. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/html_to_markdown/__main__.py +0 -0
  84. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/html_to_markdown/cli.py +0 -0
  85. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/html_to_markdown/exceptions.py +0 -0
  86. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/html_to_markdown/options.py +0 -0
  87. {html_to_markdown-2.7.1 → html_to_markdown-2.19.8}/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",
@@ -60,10 +60,25 @@ dependencies = [
60
60
  ]
61
61
 
62
62
  [[package]]
63
- name = "anes"
64
- version = "0.1.6"
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"
65
80
  source = "registry+https://github.com/rust-lang/crates.io-index"
66
- checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
81
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
67
82
 
68
83
  [[package]]
69
84
  name = "anstream"
@@ -97,22 +112,22 @@ dependencies = [
97
112
 
98
113
  [[package]]
99
114
  name = "anstyle-query"
100
- version = "1.1.4"
115
+ version = "1.1.5"
101
116
  source = "registry+https://github.com/rust-lang/crates.io-index"
102
- checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
117
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
103
118
  dependencies = [
104
- "windows-sys 0.60.2",
119
+ "windows-sys 0.61.2",
105
120
  ]
106
121
 
107
122
  [[package]]
108
123
  name = "anstyle-wincon"
109
- version = "3.0.10"
124
+ version = "3.0.11"
110
125
  source = "registry+https://github.com/rust-lang/crates.io-index"
111
- checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
126
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
112
127
  dependencies = [
113
128
  "anstyle",
114
129
  "once_cell_polyfill",
115
- "windows-sys 0.60.2",
130
+ "windows-sys 0.61.2",
116
131
  ]
117
132
 
118
133
  [[package]]
@@ -151,6 +166,45 @@ dependencies = [
151
166
  "wait-timeout",
152
167
  ]
153
168
 
169
+ [[package]]
170
+ name = "astral-tl"
171
+ version = "0.7.11"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "d90933ffb0f97e2fc2e0de21da9d3f20597b804012d199843a6fe7c2810d28f3"
174
+ dependencies = [
175
+ "memchr",
176
+ ]
177
+
178
+ [[package]]
179
+ name = "async-compression"
180
+ version = "0.4.36"
181
+ source = "registry+https://github.com/rust-lang/crates.io-index"
182
+ checksum = "98ec5f6c2f8bc326c994cb9e241cc257ddaba9afa8555a43cffbb5dd86efaa37"
183
+ dependencies = [
184
+ "compression-codecs",
185
+ "compression-core",
186
+ "futures-core",
187
+ "pin-project-lite",
188
+ "tokio",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "async-trait"
193
+ version = "0.1.89"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
196
+ dependencies = [
197
+ "proc-macro2",
198
+ "quote",
199
+ "syn",
200
+ ]
201
+
202
+ [[package]]
203
+ name = "atomic-waker"
204
+ version = "1.1.2"
205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
206
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
207
+
154
208
  [[package]]
155
209
  name = "autocfg"
156
210
  version = "1.5.0"
@@ -180,9 +234,26 @@ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
180
234
 
181
235
  [[package]]
182
236
  name = "base64ct"
183
- version = "1.8.0"
237
+ version = "1.8.2"
184
238
  source = "registry+https://github.com/rust-lang/crates.io-index"
185
- checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
239
+ checksum = "7d809780667f4410e7c41b07f52439b94d2bdf8528eeedc287fa38d3b7f95d82"
240
+
241
+ [[package]]
242
+ name = "benchmark-harness"
243
+ version = "2.19.8"
244
+ dependencies = [
245
+ "clap",
246
+ "html-to-markdown-rs",
247
+ "minijinja",
248
+ "pprof",
249
+ "serde",
250
+ "serde_json",
251
+ "sysinfo",
252
+ "thiserror 2.0.17",
253
+ "tikv-jemalloc-ctl",
254
+ "tikv-jemallocator",
255
+ "toml",
256
+ ]
186
257
 
187
258
  [[package]]
188
259
  name = "bindgen"
@@ -236,6 +307,15 @@ version = "2.10.0"
236
307
  source = "registry+https://github.com/rust-lang/crates.io-index"
237
308
  checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
238
309
 
310
+ [[package]]
311
+ name = "bitmaps"
312
+ version = "2.1.0"
313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
314
+ checksum = "031043d04099746d8db04daf1fa424b2bc8bd69d92b25962dcde24da39ab64a2"
315
+ dependencies = [
316
+ "typenum",
317
+ ]
318
+
239
319
  [[package]]
240
320
  name = "block-buffer"
241
321
  version = "0.10.4"
@@ -245,6 +325,27 @@ dependencies = [
245
325
  "generic-array",
246
326
  ]
247
327
 
328
+ [[package]]
329
+ name = "brotli"
330
+ version = "8.0.2"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
333
+ dependencies = [
334
+ "alloc-no-stdlib",
335
+ "alloc-stdlib",
336
+ "brotli-decompressor",
337
+ ]
338
+
339
+ [[package]]
340
+ name = "brotli-decompressor"
341
+ version = "5.0.0"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
344
+ dependencies = [
345
+ "alloc-no-stdlib",
346
+ "alloc-stdlib",
347
+ ]
348
+
248
349
  [[package]]
249
350
  name = "bstr"
250
351
  version = "1.12.1"
@@ -258,9 +359,12 @@ dependencies = [
258
359
 
259
360
  [[package]]
260
361
  name = "bumpalo"
261
- version = "3.19.0"
362
+ version = "3.19.1"
262
363
  source = "registry+https://github.com/rust-lang/crates.io-index"
263
- checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
364
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
365
+ dependencies = [
366
+ "allocator-api2",
367
+ ]
264
368
 
265
369
  [[package]]
266
370
  name = "bytecount"
@@ -282,9 +386,9 @@ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
282
386
 
283
387
  [[package]]
284
388
  name = "bytes"
285
- version = "1.10.1"
389
+ version = "1.11.0"
286
390
  source = "registry+https://github.com/rust-lang/crates.io-index"
287
- checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
391
+ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
288
392
 
289
393
  [[package]]
290
394
  name = "bzip2"
@@ -297,9 +401,9 @@ dependencies = [
297
401
 
298
402
  [[package]]
299
403
  name = "camino"
300
- version = "1.2.1"
404
+ version = "1.2.2"
301
405
  source = "registry+https://github.com/rust-lang/crates.io-index"
302
- checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
406
+ checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48"
303
407
  dependencies = [
304
408
  "serde_core",
305
409
  ]
@@ -332,11 +436,30 @@ version = "0.3.0"
332
436
  source = "registry+https://github.com/rust-lang/crates.io-index"
333
437
  checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
334
438
 
439
+ [[package]]
440
+ name = "cbindgen"
441
+ version = "0.29.2"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "befbfd072a8e81c02f8c507aefce431fe5e7d051f83d48a23ffc9b9fe5a11799"
444
+ dependencies = [
445
+ "clap",
446
+ "heck",
447
+ "indexmap",
448
+ "log",
449
+ "proc-macro2",
450
+ "quote",
451
+ "serde",
452
+ "serde_json",
453
+ "syn",
454
+ "tempfile",
455
+ "toml",
456
+ ]
457
+
335
458
  [[package]]
336
459
  name = "cc"
337
- version = "1.2.45"
460
+ version = "1.2.51"
338
461
  source = "registry+https://github.com/rust-lang/crates.io-index"
339
- checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
462
+ checksum = "7a0aeaff4ff1a90589618835a598e545176939b97874f7abc7851caa0618f203"
340
463
  dependencies = [
341
464
  "find-msvc-tools",
342
465
  "jobserver",
@@ -360,31 +483,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
360
483
  checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
361
484
 
362
485
  [[package]]
363
- name = "ciborium"
364
- version = "0.2.2"
365
- source = "registry+https://github.com/rust-lang/crates.io-index"
366
- checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
367
- dependencies = [
368
- "ciborium-io",
369
- "ciborium-ll",
370
- "serde",
371
- ]
372
-
373
- [[package]]
374
- name = "ciborium-io"
375
- version = "0.2.2"
376
- source = "registry+https://github.com/rust-lang/crates.io-index"
377
- checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
378
-
379
- [[package]]
380
- name = "ciborium-ll"
381
- version = "0.2.2"
486
+ name = "cfg_aliases"
487
+ version = "0.2.1"
382
488
  source = "registry+https://github.com/rust-lang/crates.io-index"
383
- checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
384
- dependencies = [
385
- "ciborium-io",
386
- "half",
387
- ]
489
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
388
490
 
389
491
  [[package]]
390
492
  name = "cipher"
@@ -409,9 +511,9 @@ dependencies = [
409
511
 
410
512
  [[package]]
411
513
  name = "clap"
412
- version = "4.5.51"
514
+ version = "4.5.54"
413
515
  source = "registry+https://github.com/rust-lang/crates.io-index"
414
- checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
516
+ checksum = "c6e6ff9dcd79cff5cd969a17a545d79e84ab086e444102a591e288a8aa3ce394"
415
517
  dependencies = [
416
518
  "clap_builder",
417
519
  "clap_derive",
@@ -419,9 +521,9 @@ dependencies = [
419
521
 
420
522
  [[package]]
421
523
  name = "clap_builder"
422
- version = "4.5.51"
524
+ version = "4.5.54"
423
525
  source = "registry+https://github.com/rust-lang/crates.io-index"
424
- checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
526
+ checksum = "fa42cf4d2b7a41bc8f663a7cab4031ebafa1bf3875705bfaf8466dc60ab52c00"
425
527
  dependencies = [
426
528
  "anstream",
427
529
  "anstyle",
@@ -431,9 +533,9 @@ dependencies = [
431
533
 
432
534
  [[package]]
433
535
  name = "clap_complete"
434
- version = "4.5.60"
536
+ version = "4.5.64"
435
537
  source = "registry+https://github.com/rust-lang/crates.io-index"
436
- checksum = "8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971"
538
+ checksum = "4c0da80818b2d95eca9aa614a30783e42f62bf5fdfee24e68cfb960b071ba8d1"
437
539
  dependencies = [
438
540
  "clap",
439
541
  ]
@@ -466,6 +568,15 @@ dependencies = [
466
568
  "roff",
467
569
  ]
468
570
 
571
+ [[package]]
572
+ name = "cobs"
573
+ version = "0.3.0"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
576
+ dependencies = [
577
+ "thiserror 2.0.17",
578
+ ]
579
+
469
580
  [[package]]
470
581
  name = "color_quant"
471
582
  version = "1.1.0"
@@ -478,6 +589,24 @@ version = "1.0.4"
478
589
  source = "registry+https://github.com/rust-lang/crates.io-index"
479
590
  checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
480
591
 
592
+ [[package]]
593
+ name = "compression-codecs"
594
+ version = "0.4.35"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "b0f7ac3e5b97fdce45e8922fb05cae2c37f7bbd63d30dd94821dacfd8f3f2bf2"
597
+ dependencies = [
598
+ "brotli",
599
+ "compression-core",
600
+ "flate2",
601
+ "memchr",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "compression-core"
606
+ version = "0.4.31"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
609
+
481
610
  [[package]]
482
611
  name = "console_error_panic_hook"
483
612
  version = "0.1.7"
@@ -496,27 +625,28 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
496
625
 
497
626
  [[package]]
498
627
  name = "convert_case"
499
- version = "0.8.0"
628
+ version = "0.10.0"
500
629
  source = "registry+https://github.com/rust-lang/crates.io-index"
501
- checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
630
+ checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
502
631
  dependencies = [
503
632
  "unicode-segmentation",
504
633
  ]
505
634
 
506
635
  [[package]]
507
- name = "convert_case"
508
- version = "0.9.0"
636
+ name = "core-foundation"
637
+ version = "0.9.4"
509
638
  source = "registry+https://github.com/rust-lang/crates.io-index"
510
- checksum = "db05ffb6856bf0ecdf6367558a76a0e8a77b1713044eb92845c692100ed50190"
639
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
511
640
  dependencies = [
512
- "unicode-segmentation",
641
+ "core-foundation-sys",
642
+ "libc",
513
643
  ]
514
644
 
515
645
  [[package]]
516
646
  name = "core-foundation"
517
- version = "0.9.4"
647
+ version = "0.10.1"
518
648
  source = "registry+https://github.com/rust-lang/crates.io-index"
519
- checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
649
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
520
650
  dependencies = [
521
651
  "core-foundation-sys",
522
652
  "libc",
@@ -547,60 +677,165 @@ dependencies = [
547
677
  ]
548
678
 
549
679
  [[package]]
550
- name = "crc"
551
- version = "3.3.0"
680
+ name = "cranelift-assembler-x64"
681
+ version = "0.127.0"
552
682
  source = "registry+https://github.com/rust-lang/crates.io-index"
553
- checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
683
+ checksum = "8bd963a645179fa33834ba61fa63353998543b07f877e208da9eb47d4a70d1e7"
554
684
  dependencies = [
555
- "crc-catalog",
685
+ "cranelift-assembler-x64-meta",
556
686
  ]
557
687
 
558
688
  [[package]]
559
- name = "crc-catalog"
560
- version = "2.4.0"
689
+ name = "cranelift-assembler-x64-meta"
690
+ version = "0.127.0"
561
691
  source = "registry+https://github.com/rust-lang/crates.io-index"
562
- checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
692
+ checksum = "3f6d5739c9dc6b5553ca758d78d87d127dd19f397f776efecf817b8ba8d0bb01"
693
+ dependencies = [
694
+ "cranelift-srcgen",
695
+ ]
563
696
 
564
697
  [[package]]
565
- name = "crc32fast"
566
- version = "1.5.0"
698
+ name = "cranelift-bforest"
699
+ version = "0.127.0"
567
700
  source = "registry+https://github.com/rust-lang/crates.io-index"
568
- checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
701
+ checksum = "ff402c11bb1c9652b67a3e885e84b1b8d00c13472c8fd85211e06a41a63c3e03"
569
702
  dependencies = [
570
- "cfg-if",
703
+ "cranelift-entity",
571
704
  ]
572
705
 
573
706
  [[package]]
574
- name = "criterion"
575
- version = "0.7.0"
707
+ name = "cranelift-bitset"
708
+ version = "0.127.0"
576
709
  source = "registry+https://github.com/rust-lang/crates.io-index"
577
- checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
710
+ checksum = "769a0d88c2f5539e9c5536a93a7bf164b0dc68d91e3d00723e5b4ffc1440afdc"
578
711
  dependencies = [
579
- "anes",
580
- "cast",
581
- "ciborium",
582
- "clap",
583
- "criterion-plot",
584
- "itertools 0.13.0",
585
- "num-traits",
586
- "oorandom",
587
- "plotters",
588
- "rayon",
589
- "regex",
590
712
  "serde",
591
- "serde_json",
592
- "tinytemplate",
593
- "walkdir",
713
+ "serde_derive",
594
714
  ]
595
715
 
596
716
  [[package]]
597
- name = "criterion-plot"
598
- version = "0.6.0"
717
+ name = "cranelift-codegen"
718
+ version = "0.127.0"
599
719
  source = "registry+https://github.com/rust-lang/crates.io-index"
600
- checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
720
+ checksum = "d4351f721fb3b26add1c180f0a75c7474bab2f903c8b777c6ca65238ded59a78"
601
721
  dependencies = [
602
- "cast",
603
- "itertools 0.13.0",
722
+ "bumpalo",
723
+ "cranelift-assembler-x64",
724
+ "cranelift-bforest",
725
+ "cranelift-bitset",
726
+ "cranelift-codegen-meta",
727
+ "cranelift-codegen-shared",
728
+ "cranelift-control",
729
+ "cranelift-entity",
730
+ "cranelift-isle",
731
+ "gimli",
732
+ "hashbrown 0.15.5",
733
+ "log",
734
+ "pulley-interpreter",
735
+ "regalloc2",
736
+ "rustc-hash 2.1.1",
737
+ "serde",
738
+ "smallvec",
739
+ "target-lexicon",
740
+ "wasmtime-internal-math",
741
+ ]
742
+
743
+ [[package]]
744
+ name = "cranelift-codegen-meta"
745
+ version = "0.127.0"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "61f86c0ba5b96713643f4dd0de0df12844de9c7bb137d6829b174b706939aa74"
748
+ dependencies = [
749
+ "cranelift-assembler-x64-meta",
750
+ "cranelift-codegen-shared",
751
+ "cranelift-srcgen",
752
+ "heck",
753
+ "pulley-interpreter",
754
+ ]
755
+
756
+ [[package]]
757
+ name = "cranelift-codegen-shared"
758
+ version = "0.127.0"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "f08605eee8d51fd976a970bd5b16c9529b51b624f8af68f80649ffb172eb85a4"
761
+
762
+ [[package]]
763
+ name = "cranelift-control"
764
+ version = "0.127.0"
765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
766
+ checksum = "623aab0a09e40f0cf0b5d35eb7832bae4c4f13e3768228e051a6c1a60e88ef5f"
767
+ dependencies = [
768
+ "arbitrary",
769
+ ]
770
+
771
+ [[package]]
772
+ name = "cranelift-entity"
773
+ version = "0.127.0"
774
+ source = "registry+https://github.com/rust-lang/crates.io-index"
775
+ checksum = "ea0f066e07e3bcbe38884cc5c94c32c7a90267d69df80f187d9dfe421adaa7c4"
776
+ dependencies = [
777
+ "cranelift-bitset",
778
+ "serde",
779
+ "serde_derive",
780
+ ]
781
+
782
+ [[package]]
783
+ name = "cranelift-frontend"
784
+ version = "0.127.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "40865b02a0e52ca8e580ad64feef530cb1d05f6bb4972b4eef05e3eaeae81701"
787
+ dependencies = [
788
+ "cranelift-codegen",
789
+ "log",
790
+ "smallvec",
791
+ "target-lexicon",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "cranelift-isle"
796
+ version = "0.127.0"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "104b3c117ae513e9af1d90679842101193a5ccb96ac9f997966d85ea25be2852"
799
+
800
+ [[package]]
801
+ name = "cranelift-native"
802
+ version = "0.127.0"
803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
804
+ checksum = "e5c54e0a358bc05b48f2032e1c320e7f468da068604f2869b77052eab68eb0fe"
805
+ dependencies = [
806
+ "cranelift-codegen",
807
+ "libc",
808
+ "target-lexicon",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "cranelift-srcgen"
813
+ version = "0.127.0"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "cc6f4b039f453b66c75e9f7886e5a2af96276e151f44dc19b24b58f9a0c98009"
816
+
817
+ [[package]]
818
+ name = "crc"
819
+ version = "3.4.0"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
822
+ dependencies = [
823
+ "crc-catalog",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "crc-catalog"
828
+ version = "2.4.0"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
831
+
832
+ [[package]]
833
+ name = "crc32fast"
834
+ version = "1.5.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
837
+ dependencies = [
838
+ "cfg-if",
604
839
  ]
605
840
 
606
841
  [[package]]
@@ -628,17 +863,11 @@ version = "0.8.21"
628
863
  source = "registry+https://github.com/rust-lang/crates.io-index"
629
864
  checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
630
865
 
631
- [[package]]
632
- name = "crunchy"
633
- version = "0.2.4"
634
- source = "registry+https://github.com/rust-lang/crates.io-index"
635
- checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
636
-
637
866
  [[package]]
638
867
  name = "crypto-common"
639
- version = "0.1.6"
868
+ version = "0.1.7"
640
869
  source = "registry+https://github.com/rust-lang/crates.io-index"
641
- checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
870
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
642
871
  dependencies = [
643
872
  "generic-array",
644
873
  "typenum",
@@ -646,9 +875,9 @@ dependencies = [
646
875
 
647
876
  [[package]]
648
877
  name = "ctor"
649
- version = "0.6.1"
878
+ version = "0.6.3"
650
879
  source = "registry+https://github.com/rust-lang/crates.io-index"
651
- checksum = "3ffc71fcdcdb40d6f087edddf7f8f1f8f79e6cf922f555a9ee8779752d4819bd"
880
+ checksum = "424e0138278faeb2b401f174ad17e715c829512d74f3d1e81eb43365c2e0590e"
652
881
  dependencies = [
653
882
  "ctor-proc-macro",
654
883
  "dtor",
@@ -770,29 +999,73 @@ dependencies = [
770
999
  ]
771
1000
 
772
1001
  [[package]]
773
- name = "dtor"
774
- version = "0.1.1"
1002
+ name = "directories-next"
1003
+ version = "2.0.0"
775
1004
  source = "registry+https://github.com/rust-lang/crates.io-index"
776
- checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
1005
+ checksum = "339ee130d97a610ea5a5872d2bbb130fdf68884ff09d3028b81bec8a1ac23bbc"
777
1006
  dependencies = [
778
- "dtor-proc-macro",
1007
+ "cfg-if",
1008
+ "dirs-sys-next",
779
1009
  ]
780
1010
 
781
1011
  [[package]]
782
- name = "dtor-proc-macro"
783
- version = "0.0.6"
1012
+ name = "dirs-sys-next"
1013
+ version = "0.1.2"
784
1014
  source = "registry+https://github.com/rust-lang/crates.io-index"
785
- checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
1015
+ checksum = "4ebda144c4fe02d1f7ea1a7d9641b6fc6b580adcfa024ae48797ecdeb6825b4d"
1016
+ dependencies = [
1017
+ "libc",
1018
+ "redox_users",
1019
+ "winapi",
1020
+ ]
786
1021
 
787
1022
  [[package]]
788
- name = "either"
789
- version = "1.15.0"
1023
+ name = "displaydoc"
1024
+ version = "0.2.5"
790
1025
  source = "registry+https://github.com/rust-lang/crates.io-index"
791
- checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
792
-
793
- [[package]]
794
- name = "encoding_rs"
795
- version = "0.8.35"
1026
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1027
+ dependencies = [
1028
+ "proc-macro2",
1029
+ "quote",
1030
+ "syn",
1031
+ ]
1032
+
1033
+ [[package]]
1034
+ name = "dtor"
1035
+ version = "0.1.1"
1036
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1037
+ checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
1038
+ dependencies = [
1039
+ "dtor-proc-macro",
1040
+ ]
1041
+
1042
+ [[package]]
1043
+ name = "dtor-proc-macro"
1044
+ version = "0.0.6"
1045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1046
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
1047
+
1048
+ [[package]]
1049
+ name = "either"
1050
+ version = "1.15.0"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
1053
+
1054
+ [[package]]
1055
+ name = "embedded-io"
1056
+ version = "0.4.0"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
1059
+
1060
+ [[package]]
1061
+ name = "embedded-io"
1062
+ version = "0.6.1"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
1065
+
1066
+ [[package]]
1067
+ name = "encoding_rs"
1068
+ version = "0.8.35"
796
1069
  source = "registry+https://github.com/rust-lang/crates.io-index"
797
1070
  checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
798
1071
  dependencies = [
@@ -846,9 +1119,9 @@ dependencies = [
846
1119
 
847
1120
  [[package]]
848
1121
  name = "ext-php-rs"
849
- version = "0.15.1"
1122
+ version = "0.15.2"
850
1123
  source = "registry+https://github.com/rust-lang/crates.io-index"
851
- checksum = "94962f42ccc5d45651088311de8d8b20be42b42fe522135ee856f81bd886f0fc"
1124
+ checksum = "feb2e956267898c7b81d0dab7d17cd7f6ca17fd5cf5ba25866f4052cf86b0935"
852
1125
  dependencies = [
853
1126
  "anyhow",
854
1127
  "bindgen 0.72.1",
@@ -866,11 +1139,11 @@ dependencies = [
866
1139
 
867
1140
  [[package]]
868
1141
  name = "ext-php-rs-derive"
869
- version = "0.11.4"
1142
+ version = "0.11.5"
870
1143
  source = "registry+https://github.com/rust-lang/crates.io-index"
871
- checksum = "16cf7b2c829ca0d0b358c002e77b9aad452b2846bf8c6549c28a43aefbca2046"
1144
+ checksum = "231921568cc6937b7f4d22a5feaf7f28b263288297835cf4ba76671989545b67"
872
1145
  dependencies = [
873
- "convert_case 0.8.0",
1146
+ "convert_case",
874
1147
  "darling",
875
1148
  "itertools 0.14.0",
876
1149
  "proc-macro2",
@@ -878,6 +1151,12 @@ dependencies = [
878
1151
  "syn",
879
1152
  ]
880
1153
 
1154
+ [[package]]
1155
+ name = "fallible-iterator"
1156
+ version = "0.3.0"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
1159
+
881
1160
  [[package]]
882
1161
  name = "fastrand"
883
1162
  version = "2.3.0"
@@ -895,9 +1174,9 @@ dependencies = [
895
1174
 
896
1175
  [[package]]
897
1176
  name = "find-msvc-tools"
898
- version = "0.1.4"
1177
+ version = "0.1.6"
899
1178
  source = "registry+https://github.com/rust-lang/crates.io-index"
900
- checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
1179
+ checksum = "645cbb3a84e60b7531617d5ae4e57f7e27308f6445f5abf653209ea76dec8dff"
901
1180
 
902
1181
  [[package]]
903
1182
  name = "findshlibs"
@@ -911,6 +1190,12 @@ dependencies = [
911
1190
  "winapi",
912
1191
  ]
913
1192
 
1193
+ [[package]]
1194
+ name = "fixedbitset"
1195
+ version = "0.4.2"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
1198
+
914
1199
  [[package]]
915
1200
  name = "flate2"
916
1201
  version = "1.1.5"
@@ -937,6 +1222,18 @@ version = "1.0.7"
937
1222
  source = "registry+https://github.com/rust-lang/crates.io-index"
938
1223
  checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
939
1224
 
1225
+ [[package]]
1226
+ name = "foldhash"
1227
+ version = "0.1.5"
1228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1229
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1230
+
1231
+ [[package]]
1232
+ name = "foldhash"
1233
+ version = "0.2.0"
1234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1235
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
1236
+
940
1237
  [[package]]
941
1238
  name = "foreign-types"
942
1239
  version = "0.3.2"
@@ -952,6 +1249,25 @@ version = "0.1.1"
952
1249
  source = "registry+https://github.com/rust-lang/crates.io-index"
953
1250
  checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
954
1251
 
1252
+ [[package]]
1253
+ name = "form_urlencoded"
1254
+ version = "1.2.2"
1255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1256
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1257
+ dependencies = [
1258
+ "percent-encoding",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "futf"
1263
+ version = "0.1.5"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
1266
+ dependencies = [
1267
+ "mac",
1268
+ "new_debug_unreachable",
1269
+ ]
1270
+
955
1271
  [[package]]
956
1272
  name = "futures"
957
1273
  version = "0.3.31"
@@ -1041,16 +1357,43 @@ dependencies = [
1041
1357
  "slab",
1042
1358
  ]
1043
1359
 
1360
+ [[package]]
1361
+ name = "fxprof-processed-profile"
1362
+ version = "0.8.1"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "25234f20a3ec0a962a61770cfe39ecf03cb529a6e474ad8cff025ed497eda557"
1365
+ dependencies = [
1366
+ "bitflags 2.10.0",
1367
+ "debugid",
1368
+ "rustc-hash 2.1.1",
1369
+ "serde",
1370
+ "serde_derive",
1371
+ "serde_json",
1372
+ ]
1373
+
1044
1374
  [[package]]
1045
1375
  name = "generic-array"
1046
- version = "0.14.9"
1376
+ version = "0.14.7"
1047
1377
  source = "registry+https://github.com/rust-lang/crates.io-index"
1048
- checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1378
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1049
1379
  dependencies = [
1050
1380
  "typenum",
1051
1381
  "version_check",
1052
1382
  ]
1053
1383
 
1384
+ [[package]]
1385
+ name = "getrandom"
1386
+ version = "0.2.16"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1389
+ dependencies = [
1390
+ "cfg-if",
1391
+ "js-sys",
1392
+ "libc",
1393
+ "wasi",
1394
+ "wasm-bindgen",
1395
+ ]
1396
+
1054
1397
  [[package]]
1055
1398
  name = "getrandom"
1056
1399
  version = "0.3.4"
@@ -1058,16 +1401,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
1401
  checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1059
1402
  dependencies = [
1060
1403
  "cfg-if",
1404
+ "js-sys",
1061
1405
  "libc",
1062
1406
  "r-efi",
1063
1407
  "wasip2",
1408
+ "wasm-bindgen",
1064
1409
  ]
1065
1410
 
1066
1411
  [[package]]
1067
1412
  name = "gif"
1068
- version = "0.13.3"
1413
+ version = "0.14.1"
1069
1414
  source = "registry+https://github.com/rust-lang/crates.io-index"
1070
- checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
1415
+ checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
1071
1416
  dependencies = [
1072
1417
  "color_quant",
1073
1418
  "weezl",
@@ -1078,6 +1423,11 @@ name = "gimli"
1078
1423
  version = "0.32.3"
1079
1424
  source = "registry+https://github.com/rust-lang/crates.io-index"
1080
1425
  checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1426
+ dependencies = [
1427
+ "fallible-iterator",
1428
+ "indexmap",
1429
+ "stable_deref_trait",
1430
+ ]
1081
1431
 
1082
1432
  [[package]]
1083
1433
  name = "glob"
@@ -1086,21 +1436,25 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
1436
  checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1087
1437
 
1088
1438
  [[package]]
1089
- name = "half"
1090
- version = "2.7.1"
1439
+ name = "hashbrown"
1440
+ version = "0.15.5"
1091
1441
  source = "registry+https://github.com/rust-lang/crates.io-index"
1092
- checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1442
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1093
1443
  dependencies = [
1094
- "cfg-if",
1095
- "crunchy",
1096
- "zerocopy",
1444
+ "foldhash 0.1.5",
1445
+ "serde",
1097
1446
  ]
1098
1447
 
1099
1448
  [[package]]
1100
1449
  name = "hashbrown"
1101
- version = "0.16.0"
1450
+ version = "0.16.1"
1102
1451
  source = "registry+https://github.com/rust-lang/crates.io-index"
1103
- checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1452
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1453
+ dependencies = [
1454
+ "allocator-api2",
1455
+ "equivalent",
1456
+ "foldhash 0.2.0",
1457
+ ]
1104
1458
 
1105
1459
  [[package]]
1106
1460
  name = "heck"
@@ -1134,7 +1488,7 @@ dependencies = [
1134
1488
 
1135
1489
  [[package]]
1136
1490
  name = "html-to-markdown-cli"
1137
- version = "2.7.1"
1491
+ version = "2.19.8"
1138
1492
  dependencies = [
1139
1493
  "assert_cmd",
1140
1494
  "clap",
@@ -1143,87 +1497,157 @@ dependencies = [
1143
1497
  "encoding_rs",
1144
1498
  "html-to-markdown-rs",
1145
1499
  "predicates",
1500
+ "reqwest",
1501
+ "serde_json",
1146
1502
  "tempfile",
1147
1503
  ]
1148
1504
 
1505
+ [[package]]
1506
+ name = "html-to-markdown-ffi"
1507
+ version = "2.19.8"
1508
+ dependencies = [
1509
+ "cbindgen",
1510
+ "html-to-markdown-rs",
1511
+ "libc",
1512
+ "pprof",
1513
+ "serde_json",
1514
+ ]
1515
+
1149
1516
  [[package]]
1150
1517
  name = "html-to-markdown-node"
1151
- version = "2.7.1"
1518
+ version = "2.19.8"
1152
1519
  dependencies = [
1520
+ "async-trait",
1153
1521
  "html-to-markdown-rs",
1154
1522
  "mimalloc-rust",
1155
1523
  "napi",
1156
1524
  "napi-build",
1157
1525
  "napi-derive",
1526
+ "pprof",
1527
+ "serde",
1528
+ "serde_json",
1529
+ "tokio",
1158
1530
  ]
1159
1531
 
1160
1532
  [[package]]
1161
1533
  name = "html-to-markdown-php"
1162
- version = "2.7.1"
1534
+ version = "2.19.8"
1163
1535
  dependencies = [
1164
1536
  "ext-php-rs",
1165
1537
  "html-to-markdown-rs",
1538
+ "pprof",
1166
1539
  ]
1167
1540
 
1168
1541
  [[package]]
1169
1542
  name = "html-to-markdown-py"
1170
- version = "2.7.1"
1543
+ version = "2.19.8"
1171
1544
  dependencies = [
1545
+ "async-trait",
1172
1546
  "base64",
1173
1547
  "html-to-markdown-rs",
1174
1548
  "image",
1549
+ "once_cell",
1550
+ "pprof",
1175
1551
  "pyo3",
1552
+ "pyo3-async-runtimes",
1553
+ "tokio",
1176
1554
  ]
1177
1555
 
1178
1556
  [[package]]
1179
1557
  name = "html-to-markdown-rb"
1180
- version = "2.7.1"
1558
+ version = "2.19.8"
1181
1559
  dependencies = [
1182
1560
  "html-to-markdown-rs",
1183
1561
  "magnus",
1562
+ "pprof",
1184
1563
  "pretty_assertions",
1185
1564
  ]
1186
1565
 
1187
1566
  [[package]]
1188
1567
  name = "html-to-markdown-rs"
1189
- version = "2.7.1"
1568
+ version = "2.19.8"
1190
1569
  dependencies = [
1570
+ "astral-tl",
1571
+ "async-trait",
1191
1572
  "base64",
1192
- "criterion",
1193
1573
  "html-escape",
1574
+ "html5ever",
1194
1575
  "image",
1576
+ "lru",
1577
+ "markup5ever_rcdom",
1195
1578
  "once_cell",
1196
1579
  "regex",
1197
1580
  "serde",
1198
1581
  "serde_json",
1199
- "thiserror",
1200
- "tl",
1582
+ "thiserror 2.0.17",
1201
1583
  ]
1202
1584
 
1203
1585
  [[package]]
1204
1586
  name = "html-to-markdown-wasm"
1205
- version = "2.7.1"
1587
+ version = "2.19.8"
1206
1588
  dependencies = [
1207
1589
  "console_error_panic_hook",
1208
1590
  "html-to-markdown-rs",
1209
1591
  "js-sys",
1210
1592
  "serde",
1211
1593
  "serde-wasm-bindgen",
1594
+ "serde_json",
1212
1595
  "wasm-bindgen",
1213
1596
  "wasm-bindgen-test",
1214
1597
  ]
1215
1598
 
1599
+ [[package]]
1600
+ name = "html-to-markdown-wasm-wasmtime-tests"
1601
+ version = "2.19.8"
1602
+ dependencies = [
1603
+ "anyhow",
1604
+ "html-to-markdown-rs",
1605
+ "wasmtime",
1606
+ ]
1607
+
1608
+ [[package]]
1609
+ name = "html5ever"
1610
+ version = "0.36.1"
1611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1612
+ checksum = "6452c4751a24e1b99c3260d505eaeee76a050573e61f30ac2c924ddc7236f01e"
1613
+ dependencies = [
1614
+ "log",
1615
+ "markup5ever",
1616
+ ]
1617
+
1216
1618
  [[package]]
1217
1619
  name = "http"
1218
- version = "1.3.1"
1620
+ version = "1.4.0"
1219
1621
  source = "registry+https://github.com/rust-lang/crates.io-index"
1220
- checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1622
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1221
1623
  dependencies = [
1222
1624
  "bytes",
1223
- "fnv",
1224
1625
  "itoa",
1225
1626
  ]
1226
1627
 
1628
+ [[package]]
1629
+ name = "http-body"
1630
+ version = "1.0.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1633
+ dependencies = [
1634
+ "bytes",
1635
+ "http",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "http-body-util"
1640
+ version = "0.1.3"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1643
+ dependencies = [
1644
+ "bytes",
1645
+ "futures-core",
1646
+ "http",
1647
+ "http-body",
1648
+ "pin-project-lite",
1649
+ ]
1650
+
1227
1651
  [[package]]
1228
1652
  name = "httparse"
1229
1653
  version = "1.10.1"
@@ -1231,25 +1655,200 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1231
1655
  checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1232
1656
 
1233
1657
  [[package]]
1234
- name = "humansize"
1235
- version = "2.1.3"
1658
+ name = "hyper"
1659
+ version = "1.8.1"
1236
1660
  source = "registry+https://github.com/rust-lang/crates.io-index"
1237
- checksum = "6cb51c9a029ddc91b07a787f1d86b53ccfa49b0e86688c946ebe8d3555685dd7"
1661
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1238
1662
  dependencies = [
1239
- "libm",
1663
+ "atomic-waker",
1664
+ "bytes",
1665
+ "futures-channel",
1666
+ "futures-core",
1667
+ "http",
1668
+ "http-body",
1669
+ "httparse",
1670
+ "itoa",
1671
+ "pin-project-lite",
1672
+ "pin-utils",
1673
+ "smallvec",
1674
+ "tokio",
1675
+ "want",
1676
+ ]
1677
+
1678
+ [[package]]
1679
+ name = "hyper-rustls"
1680
+ version = "0.27.7"
1681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1682
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1683
+ dependencies = [
1684
+ "http",
1685
+ "hyper",
1686
+ "hyper-util",
1687
+ "rustls",
1688
+ "rustls-native-certs",
1689
+ "rustls-pki-types",
1690
+ "tokio",
1691
+ "tokio-rustls",
1692
+ "tower-service",
1693
+ ]
1694
+
1695
+ [[package]]
1696
+ name = "hyper-util"
1697
+ version = "0.1.19"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "727805d60e7938b76b826a6ef209eb70eaa1812794f9424d4a4e2d740662df5f"
1700
+ dependencies = [
1701
+ "base64",
1702
+ "bytes",
1703
+ "futures-channel",
1704
+ "futures-core",
1705
+ "futures-util",
1706
+ "http",
1707
+ "http-body",
1708
+ "hyper",
1709
+ "ipnet",
1710
+ "libc",
1711
+ "percent-encoding",
1712
+ "pin-project-lite",
1713
+ "socket2",
1714
+ "tokio",
1715
+ "tower-service",
1716
+ "tracing",
1717
+ ]
1718
+
1719
+ [[package]]
1720
+ name = "icu_collections"
1721
+ version = "2.1.1"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1724
+ dependencies = [
1725
+ "displaydoc",
1726
+ "potential_utf",
1727
+ "yoke",
1728
+ "zerofrom",
1729
+ "zerovec",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "icu_locale_core"
1734
+ version = "2.1.1"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1737
+ dependencies = [
1738
+ "displaydoc",
1739
+ "litemap",
1740
+ "tinystr",
1741
+ "writeable",
1742
+ "zerovec",
1743
+ ]
1744
+
1745
+ [[package]]
1746
+ name = "icu_normalizer"
1747
+ version = "2.1.1"
1748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1749
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1750
+ dependencies = [
1751
+ "icu_collections",
1752
+ "icu_normalizer_data",
1753
+ "icu_properties",
1754
+ "icu_provider",
1755
+ "smallvec",
1756
+ "zerovec",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "icu_normalizer_data"
1761
+ version = "2.1.1"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1764
+
1765
+ [[package]]
1766
+ name = "icu_properties"
1767
+ version = "2.1.2"
1768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1769
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1770
+ dependencies = [
1771
+ "icu_collections",
1772
+ "icu_locale_core",
1773
+ "icu_properties_data",
1774
+ "icu_provider",
1775
+ "zerotrie",
1776
+ "zerovec",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "icu_properties_data"
1781
+ version = "2.1.2"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1784
+
1785
+ [[package]]
1786
+ name = "icu_provider"
1787
+ version = "2.1.1"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1790
+ dependencies = [
1791
+ "displaydoc",
1792
+ "icu_locale_core",
1793
+ "writeable",
1794
+ "yoke",
1795
+ "zerofrom",
1796
+ "zerotrie",
1797
+ "zerovec",
1240
1798
  ]
1241
1799
 
1800
+ [[package]]
1801
+ name = "id-arena"
1802
+ version = "2.2.1"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "25a2bc672d1148e28034f176e01fffebb08b35768468cc954630da77a1449005"
1805
+
1242
1806
  [[package]]
1243
1807
  name = "ident_case"
1244
1808
  version = "1.0.1"
1245
1809
  source = "registry+https://github.com/rust-lang/crates.io-index"
1246
1810
  checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1247
1811
 
1812
+ [[package]]
1813
+ name = "idna"
1814
+ version = "1.1.0"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1817
+ dependencies = [
1818
+ "idna_adapter",
1819
+ "smallvec",
1820
+ "utf8_iter",
1821
+ ]
1822
+
1823
+ [[package]]
1824
+ name = "idna_adapter"
1825
+ version = "1.2.1"
1826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1827
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1828
+ dependencies = [
1829
+ "icu_normalizer",
1830
+ "icu_properties",
1831
+ ]
1832
+
1833
+ [[package]]
1834
+ name = "im-rc"
1835
+ version = "15.1.0"
1836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1837
+ checksum = "af1955a75fa080c677d3972822ec4bad316169ab1cfc6c257a942c2265dbe5fe"
1838
+ dependencies = [
1839
+ "bitmaps",
1840
+ "rand_core 0.6.4",
1841
+ "rand_xoshiro",
1842
+ "sized-chunks",
1843
+ "typenum",
1844
+ "version_check",
1845
+ ]
1846
+
1248
1847
  [[package]]
1249
1848
  name = "image"
1250
- version = "0.25.8"
1849
+ version = "0.25.9"
1251
1850
  source = "registry+https://github.com/rust-lang/crates.io-index"
1252
- checksum = "529feb3e6769d234375c4cf1ee2ce713682b8e76538cb13f9fc23e1400a591e7"
1851
+ checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
1253
1852
  dependencies = [
1254
1853
  "bytemuck",
1255
1854
  "byteorder-lite",
@@ -1275,12 +1874,14 @@ dependencies = [
1275
1874
 
1276
1875
  [[package]]
1277
1876
  name = "indexmap"
1278
- version = "2.12.0"
1877
+ version = "2.12.1"
1279
1878
  source = "registry+https://github.com/rust-lang/crates.io-index"
1280
- checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1879
+ checksum = "0ad4bb2b565bca0645f4d68c5c9af97fba094e9791da685bf83cb5f3ce74acf2"
1281
1880
  dependencies = [
1282
1881
  "equivalent",
1283
- "hashbrown",
1882
+ "hashbrown 0.16.1",
1883
+ "serde",
1884
+ "serde_core",
1284
1885
  ]
1285
1886
 
1286
1887
  [[package]]
@@ -1319,6 +1920,22 @@ dependencies = [
1319
1920
  "generic-array",
1320
1921
  ]
1321
1922
 
1923
+ [[package]]
1924
+ name = "ipnet"
1925
+ version = "2.11.0"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1928
+
1929
+ [[package]]
1930
+ name = "iri-string"
1931
+ version = "0.7.10"
1932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1933
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1934
+ dependencies = [
1935
+ "memchr",
1936
+ "serde",
1937
+ ]
1938
+
1322
1939
  [[package]]
1323
1940
  name = "is-terminal"
1324
1941
  version = "0.4.17"
@@ -1365,9 +1982,29 @@ dependencies = [
1365
1982
 
1366
1983
  [[package]]
1367
1984
  name = "itoa"
1368
- version = "1.0.15"
1985
+ version = "1.0.17"
1369
1986
  source = "registry+https://github.com/rust-lang/crates.io-index"
1370
- checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1987
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1988
+
1989
+ [[package]]
1990
+ name = "ittapi"
1991
+ version = "0.4.0"
1992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1993
+ checksum = "6b996fe614c41395cdaedf3cf408a9534851090959d90d54a535f675550b64b1"
1994
+ dependencies = [
1995
+ "anyhow",
1996
+ "ittapi-sys",
1997
+ "log",
1998
+ ]
1999
+
2000
+ [[package]]
2001
+ name = "ittapi-sys"
2002
+ version = "0.4.0"
2003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2004
+ checksum = "52f5385394064fa2c886205dba02598013ce83d3e92d33dbdc0c52fe0e7bf4fc"
2005
+ dependencies = [
2006
+ "cc",
2007
+ ]
1371
2008
 
1372
2009
  [[package]]
1373
2010
  name = "jobserver"
@@ -1375,15 +2012,15 @@ version = "0.1.34"
1375
2012
  source = "registry+https://github.com/rust-lang/crates.io-index"
1376
2013
  checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1377
2014
  dependencies = [
1378
- "getrandom",
2015
+ "getrandom 0.3.4",
1379
2016
  "libc",
1380
2017
  ]
1381
2018
 
1382
2019
  [[package]]
1383
2020
  name = "js-sys"
1384
- version = "0.3.82"
2021
+ version = "0.3.83"
1385
2022
  source = "registry+https://github.com/rust-lang/crates.io-index"
1386
- checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
2023
+ checksum = "464a3709c7f55f1f721e5389aa6ea4e3bc6aba669353300af094b29ffbdde1d8"
1387
2024
  dependencies = [
1388
2025
  "once_cell",
1389
2026
  "wasm-bindgen",
@@ -1401,6 +2038,12 @@ version = "1.3.0"
1401
2038
  source = "registry+https://github.com/rust-lang/crates.io-index"
1402
2039
  checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1403
2040
 
2041
+ [[package]]
2042
+ name = "leb128fmt"
2043
+ version = "0.1.0"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
2046
+
1404
2047
  [[package]]
1405
2048
  name = "libbz2-rs-sys"
1406
2049
  version = "0.2.2"
@@ -1409,9 +2052,9 @@ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
1409
2052
 
1410
2053
  [[package]]
1411
2054
  name = "libc"
1412
- version = "0.2.177"
2055
+ version = "0.2.179"
1413
2056
  source = "registry+https://github.com/rust-lang/crates.io-index"
1414
- checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
2057
+ checksum = "c5a2d376baa530d1238d133232d15e239abad80d05838b4b59354e5268af431f"
1415
2058
 
1416
2059
  [[package]]
1417
2060
  name = "libloading"
@@ -1439,11 +2082,21 @@ version = "0.2.15"
1439
2082
  source = "registry+https://github.com/rust-lang/crates.io-index"
1440
2083
  checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1441
2084
 
2085
+ [[package]]
2086
+ name = "libredox"
2087
+ version = "0.1.12"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
2090
+ dependencies = [
2091
+ "bitflags 2.10.0",
2092
+ "libc",
2093
+ ]
2094
+
1442
2095
  [[package]]
1443
2096
  name = "libz-rs-sys"
1444
- version = "0.5.2"
2097
+ version = "0.5.5"
1445
2098
  source = "registry+https://github.com/rust-lang/crates.io-index"
1446
- checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
2099
+ checksum = "c10501e7805cee23da17c7790e59df2870c0d4043ec6d03f67d31e2b53e77415"
1447
2100
  dependencies = [
1448
2101
  "zlib-rs",
1449
2102
  ]
@@ -1454,6 +2107,12 @@ version = "0.11.0"
1454
2107
  source = "registry+https://github.com/rust-lang/crates.io-index"
1455
2108
  checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1456
2109
 
2110
+ [[package]]
2111
+ name = "litemap"
2112
+ version = "0.8.1"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2115
+
1457
2116
  [[package]]
1458
2117
  name = "lock_api"
1459
2118
  version = "0.4.14"
@@ -1465,9 +2124,24 @@ dependencies = [
1465
2124
 
1466
2125
  [[package]]
1467
2126
  name = "log"
1468
- version = "0.4.28"
2127
+ version = "0.4.29"
1469
2128
  source = "registry+https://github.com/rust-lang/crates.io-index"
1470
- checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2129
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
2130
+
2131
+ [[package]]
2132
+ name = "lru"
2133
+ version = "0.16.2"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f"
2136
+ dependencies = [
2137
+ "hashbrown 0.16.1",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "lru-slab"
2142
+ version = "0.1.2"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1471
2145
 
1472
2146
  [[package]]
1473
2147
  name = "lzma-rust2"
@@ -1479,6 +2153,21 @@ dependencies = [
1479
2153
  "sha2",
1480
2154
  ]
1481
2155
 
2156
+ [[package]]
2157
+ name = "mac"
2158
+ version = "0.1.1"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2161
+
2162
+ [[package]]
2163
+ name = "mach2"
2164
+ version = "0.4.3"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "d640282b302c0bb0a2a8e0233ead9035e3bed871f0b7e81fe4a1ec829765db44"
2167
+ dependencies = [
2168
+ "libc",
2169
+ ]
2170
+
1482
2171
  [[package]]
1483
2172
  name = "magnus"
1484
2173
  version = "0.9.0"
@@ -1500,12 +2189,44 @@ dependencies = [
1500
2189
  "syn",
1501
2190
  ]
1502
2191
 
2192
+ [[package]]
2193
+ name = "markup5ever"
2194
+ version = "0.36.1"
2195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2196
+ checksum = "6c3294c4d74d0742910f8c7b466f44dda9eb2d5742c1e430138df290a1e8451c"
2197
+ dependencies = [
2198
+ "log",
2199
+ "tendril",
2200
+ "web_atoms",
2201
+ ]
2202
+
2203
+ [[package]]
2204
+ name = "markup5ever_rcdom"
2205
+ version = "0.36.0+unofficial"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "3e5fc8802e8797c0dfdd2ce5c21aa0aee21abbc7b3b18559100651b3352a7b63"
2208
+ dependencies = [
2209
+ "html5ever",
2210
+ "markup5ever",
2211
+ "tendril",
2212
+ "xml5ever",
2213
+ ]
2214
+
1503
2215
  [[package]]
1504
2216
  name = "memchr"
1505
2217
  version = "2.7.6"
1506
2218
  source = "registry+https://github.com/rust-lang/crates.io-index"
1507
2219
  checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1508
2220
 
2221
+ [[package]]
2222
+ name = "memfd"
2223
+ version = "0.6.5"
2224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2225
+ checksum = "ad38eb12aea514a0466ea40a80fd8cc83637065948eb4a426e4aa46261175227"
2226
+ dependencies = [
2227
+ "rustix",
2228
+ ]
2229
+
1509
2230
  [[package]]
1510
2231
  name = "memmap2"
1511
2232
  version = "0.9.9"
@@ -1544,16 +2265,32 @@ dependencies = [
1544
2265
  "cty",
1545
2266
  ]
1546
2267
 
2268
+ [[package]]
2269
+ name = "mime"
2270
+ version = "0.3.17"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2273
+
1547
2274
  [[package]]
1548
2275
  name = "minicov"
1549
- version = "0.3.7"
2276
+ version = "0.3.8"
1550
2277
  source = "registry+https://github.com/rust-lang/crates.io-index"
1551
- checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
2278
+ checksum = "4869b6a491569605d66d3952bcdf03df789e5b536e5f0cf7758a7f08a55ae24d"
1552
2279
  dependencies = [
1553
2280
  "cc",
1554
2281
  "walkdir",
1555
2282
  ]
1556
2283
 
2284
+ [[package]]
2285
+ name = "minijinja"
2286
+ version = "2.14.0"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "12ea9ac0a51fb5112607099560fdf0f90366ab088a2a9e6e8ae176794e9806aa"
2289
+ dependencies = [
2290
+ "serde",
2291
+ "serde_json",
2292
+ ]
2293
+
1557
2294
  [[package]]
1558
2295
  name = "minimal-lexical"
1559
2296
  version = "0.2.1"
@@ -1570,11 +2307,22 @@ dependencies = [
1570
2307
  "simd-adler32",
1571
2308
  ]
1572
2309
 
2310
+ [[package]]
2311
+ name = "mio"
2312
+ version = "1.1.1"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
2315
+ dependencies = [
2316
+ "libc",
2317
+ "wasi",
2318
+ "windows-sys 0.61.2",
2319
+ ]
2320
+
1573
2321
  [[package]]
1574
2322
  name = "moxcms"
1575
- version = "0.7.9"
2323
+ version = "0.7.11"
1576
2324
  source = "registry+https://github.com/rust-lang/crates.io-index"
1577
- checksum = "0fbdd3d7436f8b5e892b8b7ea114271ff0fa00bc5acae845d53b07d498616ef6"
2325
+ checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
1578
2326
  dependencies = [
1579
2327
  "num-traits",
1580
2328
  "pxfm",
@@ -1582,9 +2330,9 @@ dependencies = [
1582
2330
 
1583
2331
  [[package]]
1584
2332
  name = "napi"
1585
- version = "3.5.2"
2333
+ version = "3.8.1"
1586
2334
  source = "registry+https://github.com/rust-lang/crates.io-index"
1587
- checksum = "4e917a98ac74187a5d486604a269ed69cd7901dd4824453d5573fb051f69b1b3"
2335
+ checksum = "000f205daae6646003fdc38517be6232af2b150bad4b67bdaf4c5aadb119d738"
1588
2336
  dependencies = [
1589
2337
  "bitflags 2.10.0",
1590
2338
  "ctor",
@@ -1603,11 +2351,11 @@ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1603
2351
 
1604
2352
  [[package]]
1605
2353
  name = "napi-derive"
1606
- version = "3.3.3"
2354
+ version = "3.5.0"
1607
2355
  source = "registry+https://github.com/rust-lang/crates.io-index"
1608
- checksum = "a258a6521951715e00568b258b8fb7a44c6087f588c371dc6b84a413f2728fdb"
2356
+ checksum = "97ef4e39564b008771df9a4983e4ea6c1f7fa6ad5252347b6dbf7f347a8f689a"
1609
2357
  dependencies = [
1610
- "convert_case 0.9.0",
2358
+ "convert_case",
1611
2359
  "ctor",
1612
2360
  "napi-derive-backend",
1613
2361
  "proc-macro2",
@@ -1617,11 +2365,11 @@ dependencies = [
1617
2365
 
1618
2366
  [[package]]
1619
2367
  name = "napi-derive-backend"
1620
- version = "3.0.2"
2368
+ version = "5.0.0"
1621
2369
  source = "registry+https://github.com/rust-lang/crates.io-index"
1622
- checksum = "77c36636292fe04366a1eec028adc25bc72f4fd7cce35bdcc310499ef74fb7de"
2370
+ checksum = "eb0d9a16e3fbfd6397f97e4eaafe9fbefb888a6120dd289dd12869fdb16af372"
1623
2371
  dependencies = [
1624
- "convert_case 0.9.0",
2372
+ "convert_case",
1625
2373
  "proc-macro2",
1626
2374
  "quote",
1627
2375
  "semver",
@@ -1630,9 +2378,9 @@ dependencies = [
1630
2378
 
1631
2379
  [[package]]
1632
2380
  name = "napi-sys"
1633
- version = "3.1.1"
2381
+ version = "3.2.1"
1634
2382
  source = "registry+https://github.com/rust-lang/crates.io-index"
1635
- checksum = "50ef9c1086f16aea2417c3788dbefed7591c3bccd800b827f4dfb271adff1149"
2383
+ checksum = "8eb602b84d7c1edae45e50bbf1374696548f36ae179dfa667f577e384bb90c2b"
1636
2384
  dependencies = [
1637
2385
  "libloading 0.9.0",
1638
2386
  ]
@@ -1646,14 +2394,20 @@ dependencies = [
1646
2394
  "libc",
1647
2395
  "log",
1648
2396
  "openssl",
1649
- "openssl-probe",
2397
+ "openssl-probe 0.1.6",
1650
2398
  "openssl-sys",
1651
2399
  "schannel",
1652
- "security-framework",
2400
+ "security-framework 2.11.1",
1653
2401
  "security-framework-sys",
1654
2402
  "tempfile",
1655
2403
  ]
1656
2404
 
2405
+ [[package]]
2406
+ name = "new_debug_unreachable"
2407
+ version = "1.0.6"
2408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2409
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
2410
+
1657
2411
  [[package]]
1658
2412
  name = "nix"
1659
2413
  version = "0.26.4"
@@ -1689,13 +2443,22 @@ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1689
2443
 
1690
2444
  [[package]]
1691
2445
  name = "ntapi"
1692
- version = "0.4.1"
2446
+ version = "0.4.2"
1693
2447
  source = "registry+https://github.com/rust-lang/crates.io-index"
1694
- checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
2448
+ checksum = "c70f219e21142367c70c0b30c6a9e3a14d55b4d12a204d897fbec83a0363f081"
1695
2449
  dependencies = [
1696
2450
  "winapi",
1697
2451
  ]
1698
2452
 
2453
+ [[package]]
2454
+ name = "nu-ansi-term"
2455
+ version = "0.50.3"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2458
+ dependencies = [
2459
+ "windows-sys 0.61.2",
2460
+ ]
2461
+
1699
2462
  [[package]]
1700
2463
  name = "num-conv"
1701
2464
  version = "0.1.0"
@@ -1719,6 +2482,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
2482
  checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1720
2483
  dependencies = [
1721
2484
  "autocfg",
2485
+ "libm",
1722
2486
  ]
1723
2487
 
1724
2488
  [[package]]
@@ -1746,6 +2510,9 @@ version = "0.37.3"
1746
2510
  source = "registry+https://github.com/rust-lang/crates.io-index"
1747
2511
  checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1748
2512
  dependencies = [
2513
+ "crc32fast",
2514
+ "hashbrown 0.15.5",
2515
+ "indexmap",
1749
2516
  "memchr",
1750
2517
  ]
1751
2518
 
@@ -1799,6 +2566,12 @@ version = "0.1.6"
1799
2566
  source = "registry+https://github.com/rust-lang/crates.io-index"
1800
2567
  checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1801
2568
 
2569
+ [[package]]
2570
+ name = "openssl-probe"
2571
+ version = "0.2.0"
2572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2573
+ checksum = "9f50d9b3dabb09ecd771ad0aa242ca6894994c130308ca3d7684634df8037391"
2574
+
1802
2575
  [[package]]
1803
2576
  name = "openssl-sys"
1804
2577
  version = "0.9.111"
@@ -1834,6 +2607,12 @@ dependencies = [
1834
2607
  "windows-link 0.2.1",
1835
2608
  ]
1836
2609
 
2610
+ [[package]]
2611
+ name = "paste"
2612
+ version = "1.0.15"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2615
+
1837
2616
  [[package]]
1838
2617
  name = "pbkdf2"
1839
2618
  version = "0.12.2"
@@ -1860,50 +2639,71 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
2639
  checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1861
2640
 
1862
2641
  [[package]]
1863
- name = "pin-project-lite"
1864
- version = "0.2.16"
2642
+ name = "petgraph"
2643
+ version = "0.6.5"
1865
2644
  source = "registry+https://github.com/rust-lang/crates.io-index"
1866
- checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2645
+ checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
2646
+ dependencies = [
2647
+ "fixedbitset",
2648
+ "indexmap",
2649
+ ]
1867
2650
 
1868
2651
  [[package]]
1869
- name = "pin-utils"
1870
- version = "0.1.0"
2652
+ name = "phf"
2653
+ version = "0.13.1"
1871
2654
  source = "registry+https://github.com/rust-lang/crates.io-index"
1872
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2655
+ checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
2656
+ dependencies = [
2657
+ "phf_shared",
2658
+ "serde",
2659
+ ]
1873
2660
 
1874
2661
  [[package]]
1875
- name = "pkg-config"
1876
- version = "0.3.32"
2662
+ name = "phf_codegen"
2663
+ version = "0.13.1"
1877
2664
  source = "registry+https://github.com/rust-lang/crates.io-index"
1878
- checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2665
+ checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
2666
+ dependencies = [
2667
+ "phf_generator",
2668
+ "phf_shared",
2669
+ ]
1879
2670
 
1880
2671
  [[package]]
1881
- name = "plotters"
1882
- version = "0.3.7"
2672
+ name = "phf_generator"
2673
+ version = "0.13.1"
1883
2674
  source = "registry+https://github.com/rust-lang/crates.io-index"
1884
- checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
2675
+ checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
1885
2676
  dependencies = [
1886
- "num-traits",
1887
- "plotters-backend",
1888
- "plotters-svg",
1889
- "wasm-bindgen",
1890
- "web-sys",
2677
+ "fastrand",
2678
+ "phf_shared",
1891
2679
  ]
1892
2680
 
1893
2681
  [[package]]
1894
- name = "plotters-backend"
1895
- version = "0.3.7"
2682
+ name = "phf_shared"
2683
+ version = "0.13.1"
1896
2684
  source = "registry+https://github.com/rust-lang/crates.io-index"
1897
- checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
2685
+ checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
2686
+ dependencies = [
2687
+ "siphasher",
2688
+ ]
1898
2689
 
1899
2690
  [[package]]
1900
- name = "plotters-svg"
1901
- version = "0.3.7"
2691
+ name = "pin-project-lite"
2692
+ version = "0.2.16"
1902
2693
  source = "registry+https://github.com/rust-lang/crates.io-index"
1903
- checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1904
- dependencies = [
1905
- "plotters-backend",
1906
- ]
2694
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2695
+
2696
+ [[package]]
2697
+ name = "pin-utils"
2698
+ version = "0.1.0"
2699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2700
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2701
+
2702
+ [[package]]
2703
+ name = "pkg-config"
2704
+ version = "0.3.32"
2705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2706
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1907
2707
 
1908
2708
  [[package]]
1909
2709
  name = "png"
@@ -1920,9 +2720,30 @@ dependencies = [
1920
2720
 
1921
2721
  [[package]]
1922
2722
  name = "portable-atomic"
1923
- version = "1.11.1"
2723
+ version = "1.13.0"
2724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2725
+ checksum = "f89776e4d69bb58bc6993e99ffa1d11f228b839984854c7daeb5d37f87cbe950"
2726
+
2727
+ [[package]]
2728
+ name = "postcard"
2729
+ version = "1.1.3"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
2732
+ dependencies = [
2733
+ "cobs",
2734
+ "embedded-io 0.4.0",
2735
+ "embedded-io 0.6.1",
2736
+ "serde",
2737
+ ]
2738
+
2739
+ [[package]]
2740
+ name = "potential_utf"
2741
+ version = "0.1.4"
1924
2742
  source = "registry+https://github.com/rust-lang/crates.io-index"
1925
- checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2743
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2744
+ dependencies = [
2745
+ "zerovec",
2746
+ ]
1926
2747
 
1927
2748
  [[package]]
1928
2749
  name = "powerfmt"
@@ -1955,9 +2776,24 @@ dependencies = [
1955
2776
  "spin",
1956
2777
  "symbolic-demangle",
1957
2778
  "tempfile",
1958
- "thiserror",
2779
+ "thiserror 2.0.17",
2780
+ ]
2781
+
2782
+ [[package]]
2783
+ name = "ppv-lite86"
2784
+ version = "0.2.21"
2785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2786
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2787
+ dependencies = [
2788
+ "zerocopy",
1959
2789
  ]
1960
2790
 
2791
+ [[package]]
2792
+ name = "precomputed-hash"
2793
+ version = "0.1.1"
2794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2795
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2796
+
1961
2797
  [[package]]
1962
2798
  name = "predicates"
1963
2799
  version = "3.1.3"
@@ -2010,9 +2846,9 @@ dependencies = [
2010
2846
 
2011
2847
  [[package]]
2012
2848
  name = "proc-macro2"
2013
- version = "1.0.103"
2849
+ version = "1.0.104"
2014
2850
  source = "registry+https://github.com/rust-lang/crates.io-index"
2015
- checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
2851
+ checksum = "9695f8df41bb4f3d222c95a67532365f569318332d03d5f3f67f37b20e6ebdf0"
2016
2852
  dependencies = [
2017
2853
  "unicode-ident",
2018
2854
  ]
@@ -2028,20 +2864,43 @@ dependencies = [
2028
2864
  "unicase",
2029
2865
  ]
2030
2866
 
2867
+ [[package]]
2868
+ name = "pulley-interpreter"
2869
+ version = "40.0.0"
2870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2871
+ checksum = "95562714f3512eb70752e9becafe28b2992cf6ce619591a73d30f6261282d770"
2872
+ dependencies = [
2873
+ "cranelift-bitset",
2874
+ "log",
2875
+ "pulley-macros",
2876
+ "wasmtime-internal-math",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "pulley-macros"
2881
+ version = "40.0.0"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "d0a918361fd35ca1542d0cbc57481fe6f8c39d2241372643e869d6c621e83c02"
2884
+ dependencies = [
2885
+ "proc-macro2",
2886
+ "quote",
2887
+ "syn",
2888
+ ]
2889
+
2031
2890
  [[package]]
2032
2891
  name = "pxfm"
2033
- version = "0.1.25"
2892
+ version = "0.1.27"
2034
2893
  source = "registry+https://github.com/rust-lang/crates.io-index"
2035
- checksum = "a3cbdf373972bf78df4d3b518d07003938e2c7d1fb5891e55f9cb6df57009d84"
2894
+ checksum = "7186d3822593aa4393561d186d1393b3923e9d6163d3fbfd6e825e3e6cf3e6a8"
2036
2895
  dependencies = [
2037
2896
  "num-traits",
2038
2897
  ]
2039
2898
 
2040
2899
  [[package]]
2041
2900
  name = "pyo3"
2042
- version = "0.27.1"
2901
+ version = "0.27.2"
2043
2902
  source = "registry+https://github.com/rust-lang/crates.io-index"
2044
- checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
2903
+ checksum = "ab53c047fcd1a1d2a8820fe84f05d6be69e9526be40cb03b73f86b6b03e6d87d"
2045
2904
  dependencies = [
2046
2905
  "indoc",
2047
2906
  "libc",
@@ -2054,20 +2913,33 @@ dependencies = [
2054
2913
  "unindent",
2055
2914
  ]
2056
2915
 
2916
+ [[package]]
2917
+ name = "pyo3-async-runtimes"
2918
+ version = "0.27.0"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "57ddb5b570751e93cc6777e81fee8087e59cd53b5043292f2a6d59d5bd80fdfd"
2921
+ dependencies = [
2922
+ "futures",
2923
+ "once_cell",
2924
+ "pin-project-lite",
2925
+ "pyo3",
2926
+ "tokio",
2927
+ ]
2928
+
2057
2929
  [[package]]
2058
2930
  name = "pyo3-build-config"
2059
- version = "0.27.1"
2931
+ version = "0.27.2"
2060
2932
  source = "registry+https://github.com/rust-lang/crates.io-index"
2061
- checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
2933
+ checksum = "b455933107de8642b4487ed26d912c2d899dec6114884214a0b3bb3be9261ea6"
2062
2934
  dependencies = [
2063
2935
  "target-lexicon",
2064
2936
  ]
2065
2937
 
2066
2938
  [[package]]
2067
2939
  name = "pyo3-ffi"
2068
- version = "0.27.1"
2940
+ version = "0.27.2"
2069
2941
  source = "registry+https://github.com/rust-lang/crates.io-index"
2070
- checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
2942
+ checksum = "1c85c9cbfaddf651b1221594209aed57e9e5cff63c4d11d1feead529b872a089"
2071
2943
  dependencies = [
2072
2944
  "libc",
2073
2945
  "pyo3-build-config",
@@ -2075,9 +2947,9 @@ dependencies = [
2075
2947
 
2076
2948
  [[package]]
2077
2949
  name = "pyo3-macros"
2078
- version = "0.27.1"
2950
+ version = "0.27.2"
2079
2951
  source = "registry+https://github.com/rust-lang/crates.io-index"
2080
- checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
2952
+ checksum = "0a5b10c9bf9888125d917fb4d2ca2d25c8df94c7ab5a52e13313a07e050a3b02"
2081
2953
  dependencies = [
2082
2954
  "proc-macro2",
2083
2955
  "pyo3-macros-backend",
@@ -2087,9 +2959,9 @@ dependencies = [
2087
2959
 
2088
2960
  [[package]]
2089
2961
  name = "pyo3-macros-backend"
2090
- version = "0.27.1"
2962
+ version = "0.27.2"
2091
2963
  source = "registry+https://github.com/rust-lang/crates.io-index"
2092
- checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
2964
+ checksum = "03b51720d314836e53327f5871d4c0cfb4fb37cc2c4a11cc71907a86342c40f9"
2093
2965
  dependencies = [
2094
2966
  "heck",
2095
2967
  "proc-macro2",
@@ -2113,6 +2985,61 @@ dependencies = [
2113
2985
  "memchr",
2114
2986
  ]
2115
2987
 
2988
+ [[package]]
2989
+ name = "quinn"
2990
+ version = "0.11.9"
2991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2993
+ dependencies = [
2994
+ "bytes",
2995
+ "cfg_aliases",
2996
+ "pin-project-lite",
2997
+ "quinn-proto",
2998
+ "quinn-udp",
2999
+ "rustc-hash 2.1.1",
3000
+ "rustls",
3001
+ "socket2",
3002
+ "thiserror 2.0.17",
3003
+ "tokio",
3004
+ "tracing",
3005
+ "web-time",
3006
+ ]
3007
+
3008
+ [[package]]
3009
+ name = "quinn-proto"
3010
+ version = "0.11.13"
3011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3012
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
3013
+ dependencies = [
3014
+ "bytes",
3015
+ "getrandom 0.3.4",
3016
+ "lru-slab",
3017
+ "rand",
3018
+ "ring",
3019
+ "rustc-hash 2.1.1",
3020
+ "rustls",
3021
+ "rustls-pki-types",
3022
+ "slab",
3023
+ "thiserror 2.0.17",
3024
+ "tinyvec",
3025
+ "tracing",
3026
+ "web-time",
3027
+ ]
3028
+
3029
+ [[package]]
3030
+ name = "quinn-udp"
3031
+ version = "0.5.14"
3032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3033
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
3034
+ dependencies = [
3035
+ "cfg_aliases",
3036
+ "libc",
3037
+ "once_cell",
3038
+ "socket2",
3039
+ "tracing",
3040
+ "windows-sys 0.60.2",
3041
+ ]
3042
+
2116
3043
  [[package]]
2117
3044
  name = "quote"
2118
3045
  version = "1.0.42"
@@ -2128,6 +3055,50 @@ version = "5.3.0"
2128
3055
  source = "registry+https://github.com/rust-lang/crates.io-index"
2129
3056
  checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2130
3057
 
3058
+ [[package]]
3059
+ name = "rand"
3060
+ version = "0.9.2"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
3063
+ dependencies = [
3064
+ "rand_chacha",
3065
+ "rand_core 0.9.3",
3066
+ ]
3067
+
3068
+ [[package]]
3069
+ name = "rand_chacha"
3070
+ version = "0.9.0"
3071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3072
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
3073
+ dependencies = [
3074
+ "ppv-lite86",
3075
+ "rand_core 0.9.3",
3076
+ ]
3077
+
3078
+ [[package]]
3079
+ name = "rand_core"
3080
+ version = "0.6.4"
3081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3082
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
3083
+
3084
+ [[package]]
3085
+ name = "rand_core"
3086
+ version = "0.9.3"
3087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3088
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
3089
+ dependencies = [
3090
+ "getrandom 0.3.4",
3091
+ ]
3092
+
3093
+ [[package]]
3094
+ name = "rand_xoshiro"
3095
+ version = "0.6.0"
3096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3097
+ checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
3098
+ dependencies = [
3099
+ "rand_core 0.6.4",
3100
+ ]
3101
+
2131
3102
  [[package]]
2132
3103
  name = "rayon"
2133
3104
  version = "1.11.0"
@@ -2150,18 +3121,18 @@ dependencies = [
2150
3121
 
2151
3122
  [[package]]
2152
3123
  name = "rb-sys"
2153
- version = "0.9.117"
3124
+ version = "0.9.123"
2154
3125
  source = "registry+https://github.com/rust-lang/crates.io-index"
2155
- checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
3126
+ checksum = "45fb1a185af97ee456f1c9e56dbe6e2e662bec4fdeaf83c4c28e0e6adfb18816"
2156
3127
  dependencies = [
2157
3128
  "rb-sys-build",
2158
3129
  ]
2159
3130
 
2160
3131
  [[package]]
2161
3132
  name = "rb-sys-build"
2162
- version = "0.9.117"
3133
+ version = "0.9.123"
2163
3134
  source = "registry+https://github.com/rust-lang/crates.io-index"
2164
- checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
3135
+ checksum = "a58ebd02d7a6033e6a5f6f8d150c1e9f16506039092b84a73e6bedce6d3adf41"
2165
3136
  dependencies = [
2166
3137
  "bindgen 0.69.5",
2167
3138
  "lazy_static",
@@ -2188,14 +3159,39 @@ dependencies = [
2188
3159
  ]
2189
3160
 
2190
3161
  [[package]]
2191
- name = "regex"
2192
- version = "1.12.2"
3162
+ name = "redox_users"
3163
+ version = "0.4.6"
2193
3164
  source = "registry+https://github.com/rust-lang/crates.io-index"
2194
- checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
3165
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2195
3166
  dependencies = [
2196
- "aho-corasick",
2197
- "memchr",
2198
- "regex-automata",
3167
+ "getrandom 0.2.16",
3168
+ "libredox",
3169
+ "thiserror 1.0.69",
3170
+ ]
3171
+
3172
+ [[package]]
3173
+ name = "regalloc2"
3174
+ version = "0.13.3"
3175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3176
+ checksum = "4e249c660440317032a71ddac302f25f1d5dff387667bcc3978d1f77aa31ac34"
3177
+ dependencies = [
3178
+ "allocator-api2",
3179
+ "bumpalo",
3180
+ "hashbrown 0.15.5",
3181
+ "log",
3182
+ "rustc-hash 2.1.1",
3183
+ "smallvec",
3184
+ ]
3185
+
3186
+ [[package]]
3187
+ name = "regex"
3188
+ version = "1.12.2"
3189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3190
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
3191
+ dependencies = [
3192
+ "aho-corasick",
3193
+ "memchr",
3194
+ "regex-automata",
2199
3195
  "regex-syntax",
2200
3196
  ]
2201
3197
 
@@ -2216,6 +3212,48 @@ version = "0.8.8"
2216
3212
  source = "registry+https://github.com/rust-lang/crates.io-index"
2217
3213
  checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2218
3214
 
3215
+ [[package]]
3216
+ name = "reqwest"
3217
+ version = "0.12.28"
3218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3219
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
3220
+ dependencies = [
3221
+ "base64",
3222
+ "bytes",
3223
+ "encoding_rs",
3224
+ "futures-channel",
3225
+ "futures-core",
3226
+ "futures-util",
3227
+ "http",
3228
+ "http-body",
3229
+ "http-body-util",
3230
+ "hyper",
3231
+ "hyper-rustls",
3232
+ "hyper-util",
3233
+ "js-sys",
3234
+ "log",
3235
+ "mime",
3236
+ "percent-encoding",
3237
+ "pin-project-lite",
3238
+ "quinn",
3239
+ "rustls",
3240
+ "rustls-native-certs",
3241
+ "rustls-pki-types",
3242
+ "serde",
3243
+ "serde_json",
3244
+ "serde_urlencoded",
3245
+ "sync_wrapper",
3246
+ "tokio",
3247
+ "tokio-rustls",
3248
+ "tower",
3249
+ "tower-http",
3250
+ "tower-service",
3251
+ "url",
3252
+ "wasm-bindgen",
3253
+ "wasm-bindgen-futures",
3254
+ "web-sys",
3255
+ ]
3256
+
2219
3257
  [[package]]
2220
3258
  name = "rgb"
2221
3259
  version = "0.8.52"
@@ -2225,28 +3263,26 @@ dependencies = [
2225
3263
  "bytemuck",
2226
3264
  ]
2227
3265
 
3266
+ [[package]]
3267
+ name = "ring"
3268
+ version = "0.17.14"
3269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3271
+ dependencies = [
3272
+ "cc",
3273
+ "cfg-if",
3274
+ "getrandom 0.2.16",
3275
+ "libc",
3276
+ "untrusted",
3277
+ "windows-sys 0.52.0",
3278
+ ]
3279
+
2228
3280
  [[package]]
2229
3281
  name = "roff"
2230
3282
  version = "0.2.2"
2231
3283
  source = "registry+https://github.com/rust-lang/crates.io-index"
2232
3284
  checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
2233
3285
 
2234
- [[package]]
2235
- name = "runtime-bench"
2236
- version = "2.7.1"
2237
- dependencies = [
2238
- "anyhow",
2239
- "clap",
2240
- "html-to-markdown-rs",
2241
- "humansize",
2242
- "pprof",
2243
- "serde",
2244
- "serde_json",
2245
- "sysinfo",
2246
- "thiserror",
2247
- "toml",
2248
- ]
2249
-
2250
3286
  [[package]]
2251
3287
  name = "rustc-demangle"
2252
3288
  version = "0.1.26"
@@ -2267,9 +3303,9 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2267
3303
 
2268
3304
  [[package]]
2269
3305
  name = "rustix"
2270
- version = "1.1.2"
3306
+ version = "1.1.3"
2271
3307
  source = "registry+https://github.com/rust-lang/crates.io-index"
2272
- checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3308
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
2273
3309
  dependencies = [
2274
3310
  "bitflags 2.10.0",
2275
3311
  "errno",
@@ -2278,15 +3314,53 @@ dependencies = [
2278
3314
  "windows-sys 0.61.2",
2279
3315
  ]
2280
3316
 
3317
+ [[package]]
3318
+ name = "rustls"
3319
+ version = "0.23.35"
3320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3321
+ checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
3322
+ dependencies = [
3323
+ "once_cell",
3324
+ "ring",
3325
+ "rustls-pki-types",
3326
+ "rustls-webpki",
3327
+ "subtle",
3328
+ "zeroize",
3329
+ ]
3330
+
3331
+ [[package]]
3332
+ name = "rustls-native-certs"
3333
+ version = "0.8.3"
3334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3335
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
3336
+ dependencies = [
3337
+ "openssl-probe 0.2.0",
3338
+ "rustls-pki-types",
3339
+ "schannel",
3340
+ "security-framework 3.5.1",
3341
+ ]
3342
+
2281
3343
  [[package]]
2282
3344
  name = "rustls-pki-types"
2283
- version = "1.13.0"
3345
+ version = "1.13.2"
2284
3346
  source = "registry+https://github.com/rust-lang/crates.io-index"
2285
- checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
3347
+ checksum = "21e6f2ab2928ca4291b86736a8bd920a277a399bba1589409d72154ff87c1282"
2286
3348
  dependencies = [
3349
+ "web-time",
2287
3350
  "zeroize",
2288
3351
  ]
2289
3352
 
3353
+ [[package]]
3354
+ name = "rustls-webpki"
3355
+ version = "0.103.8"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
3358
+ dependencies = [
3359
+ "ring",
3360
+ "rustls-pki-types",
3361
+ "untrusted",
3362
+ ]
3363
+
2290
3364
  [[package]]
2291
3365
  name = "rustversion"
2292
3366
  version = "1.0.22"
@@ -2295,9 +3369,9 @@ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2295
3369
 
2296
3370
  [[package]]
2297
3371
  name = "ryu"
2298
- version = "1.0.20"
3372
+ version = "1.0.22"
2299
3373
  source = "registry+https://github.com/rust-lang/crates.io-index"
2300
- checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3374
+ checksum = "a50f4cf475b65d88e057964e0e9bb1f0aa9bbb2036dc65c64596b42932536984"
2301
3375
 
2302
3376
  [[package]]
2303
3377
  name = "same-file"
@@ -2330,7 +3404,20 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2330
3404
  checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2331
3405
  dependencies = [
2332
3406
  "bitflags 2.10.0",
2333
- "core-foundation",
3407
+ "core-foundation 0.9.4",
3408
+ "core-foundation-sys",
3409
+ "libc",
3410
+ "security-framework-sys",
3411
+ ]
3412
+
3413
+ [[package]]
3414
+ name = "security-framework"
3415
+ version = "3.5.1"
3416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3417
+ checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3418
+ dependencies = [
3419
+ "bitflags 2.10.0",
3420
+ "core-foundation 0.10.1",
2334
3421
  "core-foundation-sys",
2335
3422
  "libc",
2336
3423
  "security-framework-sys",
@@ -2405,26 +3492,51 @@ dependencies = [
2405
3492
 
2406
3493
  [[package]]
2407
3494
  name = "serde_json"
2408
- version = "1.0.145"
3495
+ version = "1.0.148"
2409
3496
  source = "registry+https://github.com/rust-lang/crates.io-index"
2410
- checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3497
+ checksum = "3084b546a1dd6289475996f182a22aba973866ea8e8b02c51d9f46b1336a22da"
2411
3498
  dependencies = [
2412
3499
  "itoa",
2413
3500
  "memchr",
2414
- "ryu",
2415
3501
  "serde",
2416
3502
  "serde_core",
3503
+ "zmij",
2417
3504
  ]
2418
3505
 
2419
3506
  [[package]]
2420
3507
  name = "serde_spanned"
2421
- version = "1.0.3"
3508
+ version = "1.0.4"
2422
3509
  source = "registry+https://github.com/rust-lang/crates.io-index"
2423
- checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
3510
+ checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
2424
3511
  dependencies = [
2425
3512
  "serde_core",
2426
3513
  ]
2427
3514
 
3515
+ [[package]]
3516
+ name = "serde_urlencoded"
3517
+ version = "0.7.1"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3520
+ dependencies = [
3521
+ "form_urlencoded",
3522
+ "itoa",
3523
+ "ryu",
3524
+ "serde",
3525
+ ]
3526
+
3527
+ [[package]]
3528
+ name = "serde_yaml"
3529
+ version = "0.9.34+deprecated"
3530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3531
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
3532
+ dependencies = [
3533
+ "indexmap",
3534
+ "itoa",
3535
+ "ryu",
3536
+ "serde",
3537
+ "unsafe-libyaml",
3538
+ ]
3539
+
2428
3540
  [[package]]
2429
3541
  name = "sha1"
2430
3542
  version = "0.10.6"
@@ -2449,9 +3561,9 @@ dependencies = [
2449
3561
 
2450
3562
  [[package]]
2451
3563
  name = "shell-words"
2452
- version = "1.1.0"
3564
+ version = "1.1.1"
2453
3565
  source = "registry+https://github.com/rust-lang/crates.io-index"
2454
- checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
3566
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2455
3567
 
2456
3568
  [[package]]
2457
3569
  name = "shlex"
@@ -2461,9 +3573,25 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2461
3573
 
2462
3574
  [[package]]
2463
3575
  name = "simd-adler32"
2464
- version = "0.3.7"
3576
+ version = "0.3.8"
3577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3578
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
3579
+
3580
+ [[package]]
3581
+ name = "siphasher"
3582
+ version = "1.0.1"
3583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3584
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3585
+
3586
+ [[package]]
3587
+ name = "sized-chunks"
3588
+ version = "0.6.5"
2465
3589
  source = "registry+https://github.com/rust-lang/crates.io-index"
2466
- checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
3590
+ checksum = "16d69225bde7a69b235da73377861095455d298f2b970996eec25ddbb42b3d1e"
3591
+ dependencies = [
3592
+ "bitmaps",
3593
+ "typenum",
3594
+ ]
2467
3595
 
2468
3596
  [[package]]
2469
3597
  name = "skeptic"
@@ -2491,6 +3619,19 @@ name = "smallvec"
2491
3619
  version = "1.15.1"
2492
3620
  source = "registry+https://github.com/rust-lang/crates.io-index"
2493
3621
  checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3622
+ dependencies = [
3623
+ "serde",
3624
+ ]
3625
+
3626
+ [[package]]
3627
+ name = "socket2"
3628
+ version = "0.6.1"
3629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3630
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3631
+ dependencies = [
3632
+ "libc",
3633
+ "windows-sys 0.60.2",
3634
+ ]
2494
3635
 
2495
3636
  [[package]]
2496
3637
  name = "spin"
@@ -2513,6 +3654,31 @@ version = "0.1.0"
2513
3654
  source = "registry+https://github.com/rust-lang/crates.io-index"
2514
3655
  checksum = "9091b6114800a5f2141aee1d1b9d6ca3592ac062dc5decb3764ec5895a47b4eb"
2515
3656
 
3657
+ [[package]]
3658
+ name = "string_cache"
3659
+ version = "0.9.0"
3660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3661
+ checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
3662
+ dependencies = [
3663
+ "new_debug_unreachable",
3664
+ "parking_lot",
3665
+ "phf_shared",
3666
+ "precomputed-hash",
3667
+ "serde",
3668
+ ]
3669
+
3670
+ [[package]]
3671
+ name = "string_cache_codegen"
3672
+ version = "0.6.1"
3673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3674
+ checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
3675
+ dependencies = [
3676
+ "phf_generator",
3677
+ "phf_shared",
3678
+ "proc-macro2",
3679
+ "quote",
3680
+ ]
3681
+
2516
3682
  [[package]]
2517
3683
  name = "strsim"
2518
3684
  version = "0.11.1"
@@ -2527,9 +3693,9 @@ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2527
3693
 
2528
3694
  [[package]]
2529
3695
  name = "symbolic-common"
2530
- version = "12.16.3"
3696
+ version = "12.17.0"
2531
3697
  source = "registry+https://github.com/rust-lang/crates.io-index"
2532
- checksum = "d03f433c9befeea460a01d750e698aa86caf86dcfbd77d552885cd6c89d52f50"
3698
+ checksum = "b3d8046c5674ab857104bc4559d505f4809b8060d57806e45d49737c97afeb60"
2533
3699
  dependencies = [
2534
3700
  "debugid",
2535
3701
  "memmap2",
@@ -2539,9 +3705,9 @@ dependencies = [
2539
3705
 
2540
3706
  [[package]]
2541
3707
  name = "symbolic-demangle"
2542
- version = "12.16.3"
3708
+ version = "12.17.0"
2543
3709
  source = "registry+https://github.com/rust-lang/crates.io-index"
2544
- checksum = "13d359ef6192db1760a34321ec4f089245ede4342c27e59be99642f12a859de8"
3710
+ checksum = "1accb6e5c4b0f682de907623912e616b44be1c9e725775155546669dbff720ec"
2545
3711
  dependencies = [
2546
3712
  "cpp_demangle",
2547
3713
  "rustc-demangle",
@@ -2550,20 +3716,40 @@ dependencies = [
2550
3716
 
2551
3717
  [[package]]
2552
3718
  name = "syn"
2553
- version = "2.0.110"
3719
+ version = "2.0.113"
2554
3720
  source = "registry+https://github.com/rust-lang/crates.io-index"
2555
- checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
3721
+ checksum = "678faa00651c9eb72dd2020cbdf275d92eccb2400d568e419efdd64838145cb4"
2556
3722
  dependencies = [
2557
3723
  "proc-macro2",
2558
3724
  "quote",
2559
3725
  "unicode-ident",
2560
3726
  ]
2561
3727
 
3728
+ [[package]]
3729
+ name = "sync_wrapper"
3730
+ version = "1.0.2"
3731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3732
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3733
+ dependencies = [
3734
+ "futures-core",
3735
+ ]
3736
+
3737
+ [[package]]
3738
+ name = "synstructure"
3739
+ version = "0.13.2"
3740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3741
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3742
+ dependencies = [
3743
+ "proc-macro2",
3744
+ "quote",
3745
+ "syn",
3746
+ ]
3747
+
2562
3748
  [[package]]
2563
3749
  name = "sysinfo"
2564
- version = "0.37.2"
3750
+ version = "0.36.1"
2565
3751
  source = "registry+https://github.com/rust-lang/crates.io-index"
2566
- checksum = "16607d5caffd1c07ce073528f9ed972d88db15dd44023fa57142963be3feb11f"
3752
+ checksum = "252800745060e7b9ffb7b2badbd8b31cfa4aa2e61af879d0a3bf2a317c20217d"
2567
3753
  dependencies = [
2568
3754
  "libc",
2569
3755
  "memchr",
@@ -2575,36 +3761,76 @@ dependencies = [
2575
3761
 
2576
3762
  [[package]]
2577
3763
  name = "target-lexicon"
2578
- version = "0.13.3"
3764
+ version = "0.13.4"
2579
3765
  source = "registry+https://github.com/rust-lang/crates.io-index"
2580
- checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
3766
+ checksum = "b1dd07eb858a2067e2f3c7155d54e929265c264e6f37efe3ee7a8d1b5a1dd0ba"
2581
3767
 
2582
3768
  [[package]]
2583
3769
  name = "tempfile"
2584
- version = "3.23.0"
3770
+ version = "3.24.0"
2585
3771
  source = "registry+https://github.com/rust-lang/crates.io-index"
2586
- checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3772
+ checksum = "655da9c7eb6305c55742045d5a8d2037996d61d8de95806335c7c86ce0f82e9c"
2587
3773
  dependencies = [
2588
3774
  "fastrand",
2589
- "getrandom",
3775
+ "getrandom 0.3.4",
2590
3776
  "once_cell",
2591
3777
  "rustix",
2592
3778
  "windows-sys 0.61.2",
2593
3779
  ]
2594
3780
 
3781
+ [[package]]
3782
+ name = "tendril"
3783
+ version = "0.4.3"
3784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3785
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3786
+ dependencies = [
3787
+ "futf",
3788
+ "mac",
3789
+ "utf-8",
3790
+ ]
3791
+
3792
+ [[package]]
3793
+ name = "termcolor"
3794
+ version = "1.4.1"
3795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3796
+ checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
3797
+ dependencies = [
3798
+ "winapi-util",
3799
+ ]
3800
+
2595
3801
  [[package]]
2596
3802
  name = "termtree"
2597
3803
  version = "0.5.1"
2598
3804
  source = "registry+https://github.com/rust-lang/crates.io-index"
2599
3805
  checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2600
3806
 
3807
+ [[package]]
3808
+ name = "thiserror"
3809
+ version = "1.0.69"
3810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3811
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3812
+ dependencies = [
3813
+ "thiserror-impl 1.0.69",
3814
+ ]
3815
+
2601
3816
  [[package]]
2602
3817
  name = "thiserror"
2603
3818
  version = "2.0.17"
2604
3819
  source = "registry+https://github.com/rust-lang/crates.io-index"
2605
3820
  checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2606
3821
  dependencies = [
2607
- "thiserror-impl",
3822
+ "thiserror-impl 2.0.17",
3823
+ ]
3824
+
3825
+ [[package]]
3826
+ name = "thiserror-impl"
3827
+ version = "1.0.69"
3828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3829
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3830
+ dependencies = [
3831
+ "proc-macro2",
3832
+ "quote",
3833
+ "syn",
2608
3834
  ]
2609
3835
 
2610
3836
  [[package]]
@@ -2618,6 +3844,37 @@ dependencies = [
2618
3844
  "syn",
2619
3845
  ]
2620
3846
 
3847
+ [[package]]
3848
+ name = "tikv-jemalloc-ctl"
3849
+ version = "0.6.1"
3850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3851
+ checksum = "661f1f6a57b3a36dc9174a2c10f19513b4866816e13425d3e418b11cc37bc24c"
3852
+ dependencies = [
3853
+ "libc",
3854
+ "paste",
3855
+ "tikv-jemalloc-sys",
3856
+ ]
3857
+
3858
+ [[package]]
3859
+ name = "tikv-jemalloc-sys"
3860
+ version = "0.6.1+5.3.0-1-ge13ca993e8ccb9ba9847cc330696e02839f328f7"
3861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3862
+ checksum = "cd8aa5b2ab86a2cefa406d889139c162cbb230092f7d1d7cbc1716405d852a3b"
3863
+ dependencies = [
3864
+ "cc",
3865
+ "libc",
3866
+ ]
3867
+
3868
+ [[package]]
3869
+ name = "tikv-jemallocator"
3870
+ version = "0.6.1"
3871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3872
+ checksum = "0359b4327f954e0567e69fb191cf1436617748813819c94b8cd4a431422d053a"
3873
+ dependencies = [
3874
+ "libc",
3875
+ "tikv-jemalloc-sys",
3876
+ ]
3877
+
2621
3878
  [[package]]
2622
3879
  name = "time"
2623
3880
  version = "0.3.44"
@@ -2638,26 +3895,72 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
2638
3895
  checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
2639
3896
 
2640
3897
  [[package]]
2641
- name = "tinytemplate"
2642
- version = "1.2.1"
3898
+ name = "tinystr"
3899
+ version = "0.8.2"
2643
3900
  source = "registry+https://github.com/rust-lang/crates.io-index"
2644
- checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
3901
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2645
3902
  dependencies = [
2646
- "serde",
2647
- "serde_json",
3903
+ "displaydoc",
3904
+ "zerovec",
3905
+ ]
3906
+
3907
+ [[package]]
3908
+ name = "tinyvec"
3909
+ version = "1.10.0"
3910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3911
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3912
+ dependencies = [
3913
+ "tinyvec_macros",
3914
+ ]
3915
+
3916
+ [[package]]
3917
+ name = "tinyvec_macros"
3918
+ version = "0.1.1"
3919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3920
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3921
+
3922
+ [[package]]
3923
+ name = "tokio"
3924
+ version = "1.49.0"
3925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3926
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
3927
+ dependencies = [
3928
+ "bytes",
3929
+ "libc",
3930
+ "mio",
3931
+ "pin-project-lite",
3932
+ "socket2",
3933
+ "windows-sys 0.61.2",
3934
+ ]
3935
+
3936
+ [[package]]
3937
+ name = "tokio-rustls"
3938
+ version = "0.26.4"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3941
+ dependencies = [
3942
+ "rustls",
3943
+ "tokio",
2648
3944
  ]
2649
3945
 
2650
3946
  [[package]]
2651
- name = "tl"
2652
- version = "0.7.8"
3947
+ name = "tokio-util"
3948
+ version = "0.7.18"
2653
3949
  source = "registry+https://github.com/rust-lang/crates.io-index"
2654
- checksum = "b130bd8a58c163224b44e217b4239ca7b927d82bf6cc2fea1fc561d15056e3f7"
3950
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
3951
+ dependencies = [
3952
+ "bytes",
3953
+ "futures-core",
3954
+ "futures-sink",
3955
+ "pin-project-lite",
3956
+ "tokio",
3957
+ ]
2655
3958
 
2656
3959
  [[package]]
2657
3960
  name = "toml"
2658
- version = "0.9.8"
3961
+ version = "0.9.10+spec-1.1.0"
2659
3962
  source = "registry+https://github.com/rust-lang/crates.io-index"
2660
- checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
3963
+ checksum = "0825052159284a1a8b4d6c0c86cbc801f2da5afd2b225fa548c72f2e74002f48"
2661
3964
  dependencies = [
2662
3965
  "indexmap",
2663
3966
  "serde_core",
@@ -2670,27 +3973,102 @@ dependencies = [
2670
3973
 
2671
3974
  [[package]]
2672
3975
  name = "toml_datetime"
2673
- version = "0.7.3"
3976
+ version = "0.7.5+spec-1.1.0"
2674
3977
  source = "registry+https://github.com/rust-lang/crates.io-index"
2675
- checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
3978
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
2676
3979
  dependencies = [
2677
3980
  "serde_core",
2678
3981
  ]
2679
3982
 
2680
3983
  [[package]]
2681
3984
  name = "toml_parser"
2682
- version = "1.0.4"
3985
+ version = "1.0.6+spec-1.1.0"
2683
3986
  source = "registry+https://github.com/rust-lang/crates.io-index"
2684
- checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
3987
+ checksum = "a3198b4b0a8e11f09dd03e133c0280504d0801269e9afa46362ffde1cbeebf44"
2685
3988
  dependencies = [
2686
3989
  "winnow",
2687
3990
  ]
2688
3991
 
2689
3992
  [[package]]
2690
3993
  name = "toml_writer"
2691
- version = "1.0.4"
3994
+ version = "1.0.6+spec-1.1.0"
3995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3996
+ checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607"
3997
+
3998
+ [[package]]
3999
+ name = "tower"
4000
+ version = "0.5.2"
2692
4001
  source = "registry+https://github.com/rust-lang/crates.io-index"
2693
- checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
4002
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
4003
+ dependencies = [
4004
+ "futures-core",
4005
+ "futures-util",
4006
+ "pin-project-lite",
4007
+ "sync_wrapper",
4008
+ "tokio",
4009
+ "tower-layer",
4010
+ "tower-service",
4011
+ ]
4012
+
4013
+ [[package]]
4014
+ name = "tower-http"
4015
+ version = "0.6.8"
4016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4017
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
4018
+ dependencies = [
4019
+ "async-compression",
4020
+ "bitflags 2.10.0",
4021
+ "bytes",
4022
+ "futures-core",
4023
+ "futures-util",
4024
+ "http",
4025
+ "http-body",
4026
+ "http-body-util",
4027
+ "iri-string",
4028
+ "pin-project-lite",
4029
+ "tokio",
4030
+ "tokio-util",
4031
+ "tower",
4032
+ "tower-layer",
4033
+ "tower-service",
4034
+ ]
4035
+
4036
+ [[package]]
4037
+ name = "tower-layer"
4038
+ version = "0.3.3"
4039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4040
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4041
+
4042
+ [[package]]
4043
+ name = "tower-service"
4044
+ version = "0.3.3"
4045
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4046
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4047
+
4048
+ [[package]]
4049
+ name = "tracing"
4050
+ version = "0.1.44"
4051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4052
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
4053
+ dependencies = [
4054
+ "pin-project-lite",
4055
+ "tracing-core",
4056
+ ]
4057
+
4058
+ [[package]]
4059
+ name = "tracing-core"
4060
+ version = "0.1.36"
4061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4062
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
4063
+ dependencies = [
4064
+ "once_cell",
4065
+ ]
4066
+
4067
+ [[package]]
4068
+ name = "try-lock"
4069
+ version = "0.2.5"
4070
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4071
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2694
4072
 
2695
4073
  [[package]]
2696
4074
  name = "typenum"
@@ -2716,12 +4094,36 @@ version = "1.12.0"
2716
4094
  source = "registry+https://github.com/rust-lang/crates.io-index"
2717
4095
  checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2718
4096
 
4097
+ [[package]]
4098
+ name = "unicode-width"
4099
+ version = "0.2.2"
4100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4101
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
4102
+
4103
+ [[package]]
4104
+ name = "unicode-xid"
4105
+ version = "0.2.6"
4106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4107
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4108
+
2719
4109
  [[package]]
2720
4110
  name = "unindent"
2721
4111
  version = "0.2.4"
2722
4112
  source = "registry+https://github.com/rust-lang/crates.io-index"
2723
4113
  checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2724
4114
 
4115
+ [[package]]
4116
+ name = "unsafe-libyaml"
4117
+ version = "0.2.11"
4118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4119
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
4120
+
4121
+ [[package]]
4122
+ name = "untrusted"
4123
+ version = "0.9.0"
4124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4125
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4126
+
2725
4127
  [[package]]
2726
4128
  name = "ureq"
2727
4129
  version = "3.1.4"
@@ -2742,9 +4144,9 @@ dependencies = [
2742
4144
 
2743
4145
  [[package]]
2744
4146
  name = "ureq-proto"
2745
- version = "0.5.2"
4147
+ version = "0.5.3"
2746
4148
  source = "registry+https://github.com/rust-lang/crates.io-index"
2747
- checksum = "60b4531c118335662134346048ddb0e54cc86bd7e81866757873055f0e38f5d2"
4149
+ checksum = "d81f9efa9df032be5934a46a068815a10a042b494b6a58cb0a1a97bb5467ed6f"
2748
4150
  dependencies = [
2749
4151
  "base64",
2750
4152
  "http",
@@ -2753,170 +4155,572 @@ dependencies = [
2753
4155
  ]
2754
4156
 
2755
4157
  [[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"
4158
+ name = "url"
4159
+ version = "2.5.7"
4160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4161
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
4162
+ dependencies = [
4163
+ "form_urlencoded",
4164
+ "idna",
4165
+ "percent-encoding",
4166
+ "serde",
4167
+ ]
4168
+
4169
+ [[package]]
4170
+ name = "utf-8"
4171
+ version = "0.7.6"
4172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4173
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
4174
+
4175
+ [[package]]
4176
+ name = "utf8-width"
4177
+ version = "0.1.8"
4178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4179
+ checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
4180
+
4181
+ [[package]]
4182
+ name = "utf8_iter"
4183
+ version = "1.0.4"
4184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4185
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4186
+
4187
+ [[package]]
4188
+ name = "utf8parse"
4189
+ version = "0.2.2"
4190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4191
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4192
+
4193
+ [[package]]
4194
+ name = "uuid"
4195
+ version = "1.19.0"
4196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4197
+ checksum = "e2e054861b4bd027cd373e18e8d8d8e6548085000e41290d95ce0c373a654b4a"
4198
+ dependencies = [
4199
+ "js-sys",
4200
+ "wasm-bindgen",
4201
+ ]
4202
+
4203
+ [[package]]
4204
+ name = "vcpkg"
4205
+ version = "0.2.15"
4206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4207
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4208
+
4209
+ [[package]]
4210
+ name = "version_check"
4211
+ version = "0.9.5"
4212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4213
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4214
+
4215
+ [[package]]
4216
+ name = "wait-timeout"
4217
+ version = "0.2.1"
4218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4219
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4220
+ dependencies = [
4221
+ "libc",
4222
+ ]
4223
+
4224
+ [[package]]
4225
+ name = "walkdir"
4226
+ version = "2.5.0"
4227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4228
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4229
+ dependencies = [
4230
+ "same-file",
4231
+ "winapi-util",
4232
+ ]
4233
+
4234
+ [[package]]
4235
+ name = "want"
4236
+ version = "0.3.1"
4237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4238
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4239
+ dependencies = [
4240
+ "try-lock",
4241
+ ]
4242
+
4243
+ [[package]]
4244
+ name = "wasi"
4245
+ version = "0.11.1+wasi-snapshot-preview1"
4246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4247
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4248
+
4249
+ [[package]]
4250
+ name = "wasip2"
4251
+ version = "1.0.1+wasi-0.2.4"
4252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4253
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4254
+ dependencies = [
4255
+ "wit-bindgen",
4256
+ ]
4257
+
4258
+ [[package]]
4259
+ name = "wasm-bindgen"
4260
+ version = "0.2.106"
4261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4262
+ checksum = "0d759f433fa64a2d763d1340820e46e111a7a5ab75f993d1852d70b03dbb80fd"
4263
+ dependencies = [
4264
+ "cfg-if",
4265
+ "once_cell",
4266
+ "rustversion",
4267
+ "wasm-bindgen-macro",
4268
+ "wasm-bindgen-shared",
4269
+ ]
4270
+
4271
+ [[package]]
4272
+ name = "wasm-bindgen-futures"
4273
+ version = "0.4.56"
4274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4275
+ checksum = "836d9622d604feee9e5de25ac10e3ea5f2d65b41eac0d9ce72eb5deae707ce7c"
4276
+ dependencies = [
4277
+ "cfg-if",
4278
+ "js-sys",
4279
+ "once_cell",
4280
+ "wasm-bindgen",
4281
+ "web-sys",
4282
+ ]
4283
+
4284
+ [[package]]
4285
+ name = "wasm-bindgen-macro"
4286
+ version = "0.2.106"
4287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4288
+ checksum = "48cb0d2638f8baedbc542ed444afc0644a29166f1595371af4fecf8ce1e7eeb3"
4289
+ dependencies = [
4290
+ "quote",
4291
+ "wasm-bindgen-macro-support",
4292
+ ]
4293
+
4294
+ [[package]]
4295
+ name = "wasm-bindgen-macro-support"
4296
+ version = "0.2.106"
4297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4298
+ checksum = "cefb59d5cd5f92d9dcf80e4683949f15ca4b511f4ac0a6e14d4e1ac60c6ecd40"
4299
+ dependencies = [
4300
+ "bumpalo",
4301
+ "proc-macro2",
4302
+ "quote",
4303
+ "syn",
4304
+ "wasm-bindgen-shared",
4305
+ ]
4306
+
4307
+ [[package]]
4308
+ name = "wasm-bindgen-shared"
4309
+ version = "0.2.106"
4310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4311
+ checksum = "cbc538057e648b67f72a982e708d485b2efa771e1ac05fec311f9f63e5800db4"
4312
+ dependencies = [
4313
+ "unicode-ident",
4314
+ ]
4315
+
4316
+ [[package]]
4317
+ name = "wasm-bindgen-test"
4318
+ version = "0.3.56"
4319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4320
+ checksum = "25e90e66d265d3a1efc0e72a54809ab90b9c0c515915c67cdf658689d2c22c6c"
4321
+ dependencies = [
4322
+ "async-trait",
4323
+ "cast",
4324
+ "js-sys",
4325
+ "libm",
4326
+ "minicov",
4327
+ "nu-ansi-term",
4328
+ "num-traits",
4329
+ "oorandom",
4330
+ "serde",
4331
+ "serde_json",
4332
+ "wasm-bindgen",
4333
+ "wasm-bindgen-futures",
4334
+ "wasm-bindgen-test-macro",
4335
+ ]
4336
+
4337
+ [[package]]
4338
+ name = "wasm-bindgen-test-macro"
4339
+ version = "0.3.56"
4340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4341
+ checksum = "7150335716dce6028bead2b848e72f47b45e7b9422f64cccdc23bedca89affc1"
4342
+ dependencies = [
4343
+ "proc-macro2",
4344
+ "quote",
4345
+ "syn",
4346
+ ]
4347
+
4348
+ [[package]]
4349
+ name = "wasm-compose"
4350
+ version = "0.243.0"
4351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4352
+ checksum = "af801b6f36459023eaec63fdbaedad2fd5a4ab7dc74ecc110a8b5d375c5775e4"
4353
+ dependencies = [
4354
+ "anyhow",
4355
+ "heck",
4356
+ "im-rc",
4357
+ "indexmap",
4358
+ "log",
4359
+ "petgraph",
4360
+ "serde",
4361
+ "serde_derive",
4362
+ "serde_yaml",
4363
+ "smallvec",
4364
+ "wasm-encoder",
4365
+ "wasmparser",
4366
+ "wat",
4367
+ ]
4368
+
4369
+ [[package]]
4370
+ name = "wasm-encoder"
4371
+ version = "0.243.0"
4372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4373
+ checksum = "c55db9c896d70bd9fa535ce83cd4e1f2ec3726b0edd2142079f594fc3be1cb35"
4374
+ dependencies = [
4375
+ "leb128fmt",
4376
+ "wasmparser",
4377
+ ]
4378
+
4379
+ [[package]]
4380
+ name = "wasmparser"
4381
+ version = "0.243.0"
4382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4383
+ checksum = "f6d8db401b0528ec316dfbe579e6ab4152d61739cfe076706d2009127970159d"
4384
+ dependencies = [
4385
+ "bitflags 2.10.0",
4386
+ "hashbrown 0.15.5",
4387
+ "indexmap",
4388
+ "semver",
4389
+ "serde",
4390
+ ]
4391
+
4392
+ [[package]]
4393
+ name = "wasmprinter"
4394
+ version = "0.243.0"
4395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4396
+ checksum = "eb2b6035559e146114c29a909a3232928ee488d6507a1504d8934e8607b36d7b"
4397
+ dependencies = [
4398
+ "anyhow",
4399
+ "termcolor",
4400
+ "wasmparser",
4401
+ ]
4402
+
4403
+ [[package]]
4404
+ name = "wasmtime"
4405
+ version = "40.0.0"
4406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4407
+ checksum = "0d8038fc29ab714a96f20ed900295981aeffb9ccd2438a0fe82a751e51c3f282"
4408
+ dependencies = [
4409
+ "addr2line",
4410
+ "anyhow",
4411
+ "async-trait",
4412
+ "bitflags 2.10.0",
4413
+ "bumpalo",
4414
+ "cc",
4415
+ "cfg-if",
4416
+ "encoding_rs",
4417
+ "futures",
4418
+ "fxprof-processed-profile",
4419
+ "gimli",
4420
+ "hashbrown 0.15.5",
4421
+ "indexmap",
4422
+ "ittapi",
4423
+ "libc",
4424
+ "log",
4425
+ "mach2",
4426
+ "memfd",
4427
+ "object",
4428
+ "once_cell",
4429
+ "postcard",
4430
+ "pulley-interpreter",
4431
+ "rayon",
4432
+ "rustix",
4433
+ "semver",
4434
+ "serde",
4435
+ "serde_derive",
4436
+ "serde_json",
4437
+ "smallvec",
4438
+ "target-lexicon",
4439
+ "tempfile",
4440
+ "wasm-compose",
4441
+ "wasm-encoder",
4442
+ "wasmparser",
4443
+ "wasmtime-environ",
4444
+ "wasmtime-internal-cache",
4445
+ "wasmtime-internal-component-macro",
4446
+ "wasmtime-internal-component-util",
4447
+ "wasmtime-internal-cranelift",
4448
+ "wasmtime-internal-fiber",
4449
+ "wasmtime-internal-jit-debug",
4450
+ "wasmtime-internal-jit-icache-coherence",
4451
+ "wasmtime-internal-math",
4452
+ "wasmtime-internal-slab",
4453
+ "wasmtime-internal-unwinder",
4454
+ "wasmtime-internal-versioned-export-macros",
4455
+ "wasmtime-internal-winch",
4456
+ "wat",
4457
+ "windows-sys 0.61.2",
4458
+ ]
4459
+
4460
+ [[package]]
4461
+ name = "wasmtime-environ"
4462
+ version = "40.0.0"
4463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4464
+ checksum = "17ecada9136ed45524c9bf9cbd7e374109158784292eeb7c27dfaef6c9ccaaff"
4465
+ dependencies = [
4466
+ "anyhow",
4467
+ "cpp_demangle",
4468
+ "cranelift-bitset",
4469
+ "cranelift-entity",
4470
+ "gimli",
4471
+ "indexmap",
4472
+ "log",
4473
+ "object",
4474
+ "postcard",
4475
+ "rustc-demangle",
4476
+ "semver",
4477
+ "serde",
4478
+ "serde_derive",
4479
+ "smallvec",
4480
+ "target-lexicon",
4481
+ "wasm-encoder",
4482
+ "wasmparser",
4483
+ "wasmprinter",
4484
+ "wasmtime-internal-component-util",
4485
+ ]
4486
+
4487
+ [[package]]
4488
+ name = "wasmtime-internal-cache"
4489
+ version = "40.0.0"
4490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4491
+ checksum = "64c9f3c34d3f225ad991829cfad84a3628a6e1abf94052701664de381100bd24"
4492
+ dependencies = [
4493
+ "anyhow",
4494
+ "base64",
4495
+ "directories-next",
4496
+ "log",
4497
+ "postcard",
4498
+ "rustix",
4499
+ "serde",
4500
+ "serde_derive",
4501
+ "sha2",
4502
+ "toml",
4503
+ "windows-sys 0.61.2",
4504
+ "zstd",
4505
+ ]
4506
+
4507
+ [[package]]
4508
+ name = "wasmtime-internal-component-macro"
4509
+ version = "40.0.0"
2764
4510
  source = "registry+https://github.com/rust-lang/crates.io-index"
2765
- checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
4511
+ checksum = "00ecdcd4417556399d2361edd6743d82ce4e1d08b40b623d517a1a34e095c3b4"
4512
+ dependencies = [
4513
+ "anyhow",
4514
+ "proc-macro2",
4515
+ "quote",
4516
+ "syn",
4517
+ "wasmtime-internal-component-util",
4518
+ "wasmtime-internal-wit-bindgen",
4519
+ "wit-parser",
4520
+ ]
2766
4521
 
2767
4522
  [[package]]
2768
- name = "utf8parse"
2769
- version = "0.2.2"
4523
+ name = "wasmtime-internal-component-util"
4524
+ version = "40.0.0"
2770
4525
  source = "registry+https://github.com/rust-lang/crates.io-index"
2771
- checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4526
+ checksum = "db62a8ac301de47248cf2f95c5b4ea524e21b3870508a2922ac58366300707f4"
2772
4527
 
2773
4528
  [[package]]
2774
- name = "uuid"
2775
- version = "1.18.1"
4529
+ name = "wasmtime-internal-cranelift"
4530
+ version = "40.0.0"
2776
4531
  source = "registry+https://github.com/rust-lang/crates.io-index"
2777
- checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
4532
+ checksum = "44fb5e6999cee5ae8dce4e2d34b17ff28304823ed286096c9855a3ceea6c8a55"
2778
4533
  dependencies = [
2779
- "js-sys",
2780
- "wasm-bindgen",
4534
+ "anyhow",
4535
+ "cfg-if",
4536
+ "cranelift-codegen",
4537
+ "cranelift-control",
4538
+ "cranelift-entity",
4539
+ "cranelift-frontend",
4540
+ "cranelift-native",
4541
+ "gimli",
4542
+ "itertools 0.14.0",
4543
+ "log",
4544
+ "object",
4545
+ "pulley-interpreter",
4546
+ "smallvec",
4547
+ "target-lexicon",
4548
+ "thiserror 2.0.17",
4549
+ "wasmparser",
4550
+ "wasmtime-environ",
4551
+ "wasmtime-internal-math",
4552
+ "wasmtime-internal-unwinder",
4553
+ "wasmtime-internal-versioned-export-macros",
2781
4554
  ]
2782
4555
 
2783
4556
  [[package]]
2784
- name = "vcpkg"
2785
- version = "0.2.15"
4557
+ name = "wasmtime-internal-fiber"
4558
+ version = "40.0.0"
2786
4559
  source = "registry+https://github.com/rust-lang/crates.io-index"
2787
- checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
4560
+ checksum = "2c04da43e52907cc1db86d72447b3a0f990461f4dbac222987b526c3762a2590"
4561
+ dependencies = [
4562
+ "anyhow",
4563
+ "cc",
4564
+ "cfg-if",
4565
+ "libc",
4566
+ "rustix",
4567
+ "wasmtime-internal-versioned-export-macros",
4568
+ "windows-sys 0.61.2",
4569
+ ]
2788
4570
 
2789
4571
  [[package]]
2790
- name = "version_check"
2791
- version = "0.9.5"
4572
+ name = "wasmtime-internal-jit-debug"
4573
+ version = "40.0.0"
2792
4574
  source = "registry+https://github.com/rust-lang/crates.io-index"
2793
- checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4575
+ checksum = "f7bf6ce9524b19ddb0012c5c29810907db85e0fbb515f891381bd2eca88271f9"
4576
+ dependencies = [
4577
+ "cc",
4578
+ "object",
4579
+ "rustix",
4580
+ "wasmtime-internal-versioned-export-macros",
4581
+ ]
2794
4582
 
2795
4583
  [[package]]
2796
- name = "wait-timeout"
2797
- version = "0.2.1"
4584
+ name = "wasmtime-internal-jit-icache-coherence"
4585
+ version = "40.0.0"
2798
4586
  source = "registry+https://github.com/rust-lang/crates.io-index"
2799
- checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
4587
+ checksum = "0858b470463f3e7c73acd6049046049e64be17b98901c2db5047450cf83df1fe"
2800
4588
  dependencies = [
4589
+ "anyhow",
4590
+ "cfg-if",
2801
4591
  "libc",
4592
+ "windows-sys 0.61.2",
2802
4593
  ]
2803
4594
 
2804
4595
  [[package]]
2805
- name = "walkdir"
2806
- version = "2.5.0"
4596
+ name = "wasmtime-internal-math"
4597
+ version = "40.0.0"
2807
4598
  source = "registry+https://github.com/rust-lang/crates.io-index"
2808
- checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4599
+ checksum = "222e1a590ece4e898f20af1e541b61d2cb803f2557e7eaff23e6c1db5434454a"
2809
4600
  dependencies = [
2810
- "same-file",
2811
- "winapi-util",
4601
+ "libm",
2812
4602
  ]
2813
4603
 
2814
4604
  [[package]]
2815
- name = "wasip2"
2816
- version = "1.0.1+wasi-0.2.4"
4605
+ name = "wasmtime-internal-slab"
4606
+ version = "40.0.0"
2817
4607
  source = "registry+https://github.com/rust-lang/crates.io-index"
2818
- checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4608
+ checksum = "b96f87ca0e5dcbfd22e2b3082bc2e1d3aca6acdf72c5a6be6a367c5d3bec0e29"
4609
+
4610
+ [[package]]
4611
+ name = "wasmtime-internal-unwinder"
4612
+ version = "40.0.0"
4613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4614
+ checksum = "4f5dec57ee2271b882124510af63bf3cc56c8f0679e11d3aeea6b0e3ba3bc47a"
2819
4615
  dependencies = [
2820
- "wit-bindgen",
4616
+ "anyhow",
4617
+ "cfg-if",
4618
+ "cranelift-codegen",
4619
+ "log",
4620
+ "object",
2821
4621
  ]
2822
4622
 
2823
4623
  [[package]]
2824
- name = "wasm-bindgen"
2825
- version = "0.2.105"
4624
+ name = "wasmtime-internal-versioned-export-macros"
4625
+ version = "40.0.0"
2826
4626
  source = "registry+https://github.com/rust-lang/crates.io-index"
2827
- checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
4627
+ checksum = "1432b46abe11180edc881ef6a79691c5c58395a70ae0294294489210d4270ca3"
2828
4628
  dependencies = [
2829
- "cfg-if",
2830
- "once_cell",
2831
- "rustversion",
2832
- "wasm-bindgen-macro",
2833
- "wasm-bindgen-shared",
4629
+ "proc-macro2",
4630
+ "quote",
4631
+ "syn",
2834
4632
  ]
2835
4633
 
2836
4634
  [[package]]
2837
- name = "wasm-bindgen-futures"
2838
- version = "0.4.55"
4635
+ name = "wasmtime-internal-winch"
4636
+ version = "40.0.0"
2839
4637
  source = "registry+https://github.com/rust-lang/crates.io-index"
2840
- checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
4638
+ checksum = "1294790b47fbaba7b520c3ada973ac3738d7ecf4e64edf16748b4029689c771d"
2841
4639
  dependencies = [
2842
- "cfg-if",
2843
- "js-sys",
2844
- "once_cell",
2845
- "wasm-bindgen",
2846
- "web-sys",
4640
+ "anyhow",
4641
+ "cranelift-codegen",
4642
+ "gimli",
4643
+ "log",
4644
+ "object",
4645
+ "target-lexicon",
4646
+ "wasmparser",
4647
+ "wasmtime-environ",
4648
+ "wasmtime-internal-cranelift",
4649
+ "winch-codegen",
2847
4650
  ]
2848
4651
 
2849
4652
  [[package]]
2850
- name = "wasm-bindgen-macro"
2851
- version = "0.2.105"
4653
+ name = "wasmtime-internal-wit-bindgen"
4654
+ version = "40.0.0"
2852
4655
  source = "registry+https://github.com/rust-lang/crates.io-index"
2853
- checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
4656
+ checksum = "000e28204c017228ba8e98bb1960ecf71f2c3ff7cf9ae1f7b179d8581f062b60"
2854
4657
  dependencies = [
2855
- "quote",
2856
- "wasm-bindgen-macro-support",
4658
+ "anyhow",
4659
+ "bitflags 2.10.0",
4660
+ "heck",
4661
+ "indexmap",
4662
+ "wit-parser",
2857
4663
  ]
2858
4664
 
2859
4665
  [[package]]
2860
- name = "wasm-bindgen-macro-support"
2861
- version = "0.2.105"
4666
+ name = "wast"
4667
+ version = "243.0.0"
2862
4668
  source = "registry+https://github.com/rust-lang/crates.io-index"
2863
- checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
4669
+ checksum = "df21d01c2d91e46cb7a221d79e58a2d210ea02020d57c092e79255cc2999ca7f"
2864
4670
  dependencies = [
2865
4671
  "bumpalo",
2866
- "proc-macro2",
2867
- "quote",
2868
- "syn",
2869
- "wasm-bindgen-shared",
4672
+ "leb128fmt",
4673
+ "memchr",
4674
+ "unicode-width",
4675
+ "wasm-encoder",
2870
4676
  ]
2871
4677
 
2872
4678
  [[package]]
2873
- name = "wasm-bindgen-shared"
2874
- version = "0.2.105"
4679
+ name = "wat"
4680
+ version = "1.243.0"
2875
4681
  source = "registry+https://github.com/rust-lang/crates.io-index"
2876
- checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
4682
+ checksum = "226a9a91cd80a50449312fef0c75c23478fcecfcc4092bdebe1dc8e760ef521b"
2877
4683
  dependencies = [
2878
- "unicode-ident",
4684
+ "wast",
2879
4685
  ]
2880
4686
 
2881
4687
  [[package]]
2882
- name = "wasm-bindgen-test"
2883
- version = "0.3.55"
4688
+ name = "web-sys"
4689
+ version = "0.3.83"
2884
4690
  source = "registry+https://github.com/rust-lang/crates.io-index"
2885
- checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
4691
+ checksum = "9b32828d774c412041098d182a8b38b16ea816958e07cf40eec2bc080ae137ac"
2886
4692
  dependencies = [
2887
4693
  "js-sys",
2888
- "minicov",
2889
4694
  "wasm-bindgen",
2890
- "wasm-bindgen-futures",
2891
- "wasm-bindgen-test-macro",
2892
4695
  ]
2893
4696
 
2894
4697
  [[package]]
2895
- name = "wasm-bindgen-test-macro"
2896
- version = "0.3.55"
4698
+ name = "web-time"
4699
+ version = "1.1.0"
2897
4700
  source = "registry+https://github.com/rust-lang/crates.io-index"
2898
- checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
4701
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2899
4702
  dependencies = [
2900
- "proc-macro2",
2901
- "quote",
2902
- "syn",
4703
+ "js-sys",
4704
+ "wasm-bindgen",
2903
4705
  ]
2904
4706
 
2905
4707
  [[package]]
2906
- name = "web-sys"
2907
- version = "0.3.82"
4708
+ name = "web_atoms"
4709
+ version = "0.2.0"
2908
4710
  source = "registry+https://github.com/rust-lang/crates.io-index"
2909
- checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
4711
+ checksum = "acd0c322f146d0f8aad130ce6c187953889359584497dac6561204c8e17bb43d"
2910
4712
  dependencies = [
2911
- "js-sys",
2912
- "wasm-bindgen",
4713
+ "phf",
4714
+ "phf_codegen",
4715
+ "string_cache",
4716
+ "string_cache_codegen",
2913
4717
  ]
2914
4718
 
2915
4719
  [[package]]
2916
4720
  name = "webpki-root-certs"
2917
- version = "1.0.4"
4721
+ version = "1.0.5"
2918
4722
  source = "registry+https://github.com/rust-lang/crates.io-index"
2919
- checksum = "ee3e3b5f5e80bc89f30ce8d0343bf4e5f12341c51f3e26cbeecbc7c85443e85b"
4723
+ checksum = "36a29fc0408b113f68cf32637857ab740edfafdf460c326cd2afaa2d84cc05dc"
2920
4724
  dependencies = [
2921
4725
  "rustls-pki-types",
2922
4726
  ]
@@ -2958,6 +4762,26 @@ version = "0.4.0"
2958
4762
  source = "registry+https://github.com/rust-lang/crates.io-index"
2959
4763
  checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2960
4764
 
4765
+ [[package]]
4766
+ name = "winch-codegen"
4767
+ version = "40.0.0"
4768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4769
+ checksum = "d4dacafbbae4a4540b2c802745445ed47b5ddfdcb85c6580e2feac178361f1b5"
4770
+ dependencies = [
4771
+ "anyhow",
4772
+ "cranelift-assembler-x64",
4773
+ "cranelift-codegen",
4774
+ "gimli",
4775
+ "regalloc2",
4776
+ "smallvec",
4777
+ "target-lexicon",
4778
+ "thiserror 2.0.17",
4779
+ "wasmparser",
4780
+ "wasmtime-environ",
4781
+ "wasmtime-internal-cranelift",
4782
+ "wasmtime-internal-math",
4783
+ ]
4784
+
2961
4785
  [[package]]
2962
4786
  name = "windows"
2963
4787
  version = "0.61.3"
@@ -3066,13 +4890,22 @@ dependencies = [
3066
4890
  "windows-link 0.1.3",
3067
4891
  ]
3068
4892
 
4893
+ [[package]]
4894
+ name = "windows-sys"
4895
+ version = "0.52.0"
4896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4897
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4898
+ dependencies = [
4899
+ "windows-targets 0.52.6",
4900
+ ]
4901
+
3069
4902
  [[package]]
3070
4903
  name = "windows-sys"
3071
4904
  version = "0.60.2"
3072
4905
  source = "registry+https://github.com/rust-lang/crates.io-index"
3073
4906
  checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3074
4907
  dependencies = [
3075
- "windows-targets",
4908
+ "windows-targets 0.53.5",
3076
4909
  ]
3077
4910
 
3078
4911
  [[package]]
@@ -3084,6 +4917,22 @@ dependencies = [
3084
4917
  "windows-link 0.2.1",
3085
4918
  ]
3086
4919
 
4920
+ [[package]]
4921
+ name = "windows-targets"
4922
+ version = "0.52.6"
4923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4924
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4925
+ dependencies = [
4926
+ "windows_aarch64_gnullvm 0.52.6",
4927
+ "windows_aarch64_msvc 0.52.6",
4928
+ "windows_i686_gnu 0.52.6",
4929
+ "windows_i686_gnullvm 0.52.6",
4930
+ "windows_i686_msvc 0.52.6",
4931
+ "windows_x86_64_gnu 0.52.6",
4932
+ "windows_x86_64_gnullvm 0.52.6",
4933
+ "windows_x86_64_msvc 0.52.6",
4934
+ ]
4935
+
3087
4936
  [[package]]
3088
4937
  name = "windows-targets"
3089
4938
  version = "0.53.5"
@@ -3091,14 +4940,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
3091
4940
  checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3092
4941
  dependencies = [
3093
4942
  "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",
4943
+ "windows_aarch64_gnullvm 0.53.1",
4944
+ "windows_aarch64_msvc 0.53.1",
4945
+ "windows_i686_gnu 0.53.1",
4946
+ "windows_i686_gnullvm 0.53.1",
4947
+ "windows_i686_msvc 0.53.1",
4948
+ "windows_x86_64_gnu 0.53.1",
4949
+ "windows_x86_64_gnullvm 0.53.1",
4950
+ "windows_x86_64_msvc 0.53.1",
3102
4951
  ]
3103
4952
 
3104
4953
  [[package]]
@@ -3110,48 +4959,96 @@ dependencies = [
3110
4959
  "windows-link 0.1.3",
3111
4960
  ]
3112
4961
 
4962
+ [[package]]
4963
+ name = "windows_aarch64_gnullvm"
4964
+ version = "0.52.6"
4965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4966
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4967
+
3113
4968
  [[package]]
3114
4969
  name = "windows_aarch64_gnullvm"
3115
4970
  version = "0.53.1"
3116
4971
  source = "registry+https://github.com/rust-lang/crates.io-index"
3117
4972
  checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3118
4973
 
4974
+ [[package]]
4975
+ name = "windows_aarch64_msvc"
4976
+ version = "0.52.6"
4977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4978
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4979
+
3119
4980
  [[package]]
3120
4981
  name = "windows_aarch64_msvc"
3121
4982
  version = "0.53.1"
3122
4983
  source = "registry+https://github.com/rust-lang/crates.io-index"
3123
4984
  checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3124
4985
 
4986
+ [[package]]
4987
+ name = "windows_i686_gnu"
4988
+ version = "0.52.6"
4989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
4990
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4991
+
3125
4992
  [[package]]
3126
4993
  name = "windows_i686_gnu"
3127
4994
  version = "0.53.1"
3128
4995
  source = "registry+https://github.com/rust-lang/crates.io-index"
3129
4996
  checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3130
4997
 
4998
+ [[package]]
4999
+ name = "windows_i686_gnullvm"
5000
+ version = "0.52.6"
5001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5002
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
5003
+
3131
5004
  [[package]]
3132
5005
  name = "windows_i686_gnullvm"
3133
5006
  version = "0.53.1"
3134
5007
  source = "registry+https://github.com/rust-lang/crates.io-index"
3135
5008
  checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3136
5009
 
5010
+ [[package]]
5011
+ name = "windows_i686_msvc"
5012
+ version = "0.52.6"
5013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5014
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
5015
+
3137
5016
  [[package]]
3138
5017
  name = "windows_i686_msvc"
3139
5018
  version = "0.53.1"
3140
5019
  source = "registry+https://github.com/rust-lang/crates.io-index"
3141
5020
  checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3142
5021
 
5022
+ [[package]]
5023
+ name = "windows_x86_64_gnu"
5024
+ version = "0.52.6"
5025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5026
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
5027
+
3143
5028
  [[package]]
3144
5029
  name = "windows_x86_64_gnu"
3145
5030
  version = "0.53.1"
3146
5031
  source = "registry+https://github.com/rust-lang/crates.io-index"
3147
5032
  checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3148
5033
 
5034
+ [[package]]
5035
+ name = "windows_x86_64_gnullvm"
5036
+ version = "0.52.6"
5037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5038
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
5039
+
3149
5040
  [[package]]
3150
5041
  name = "windows_x86_64_gnullvm"
3151
5042
  version = "0.53.1"
3152
5043
  source = "registry+https://github.com/rust-lang/crates.io-index"
3153
5044
  checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3154
5045
 
5046
+ [[package]]
5047
+ name = "windows_x86_64_msvc"
5048
+ version = "0.52.6"
5049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5050
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
5051
+
3155
5052
  [[package]]
3156
5053
  name = "windows_x86_64_msvc"
3157
5054
  version = "0.53.1"
@@ -3160,9 +5057,9 @@ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3160
5057
 
3161
5058
  [[package]]
3162
5059
  name = "winnow"
3163
- version = "0.7.13"
5060
+ version = "0.7.14"
3164
5061
  source = "registry+https://github.com/rust-lang/crates.io-index"
3165
- checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
5062
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3166
5063
 
3167
5064
  [[package]]
3168
5065
  name = "wit-bindgen"
@@ -3170,30 +5067,108 @@ version = "0.46.0"
3170
5067
  source = "registry+https://github.com/rust-lang/crates.io-index"
3171
5068
  checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3172
5069
 
5070
+ [[package]]
5071
+ name = "wit-parser"
5072
+ version = "0.243.0"
5073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5074
+ checksum = "df983a8608e513d8997f435bb74207bf0933d0e49ca97aa9d8a6157164b9b7fc"
5075
+ dependencies = [
5076
+ "anyhow",
5077
+ "id-arena",
5078
+ "indexmap",
5079
+ "log",
5080
+ "semver",
5081
+ "serde",
5082
+ "serde_derive",
5083
+ "serde_json",
5084
+ "unicode-xid",
5085
+ "wasmparser",
5086
+ ]
5087
+
5088
+ [[package]]
5089
+ name = "writeable"
5090
+ version = "0.6.2"
5091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5092
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
5093
+
5094
+ [[package]]
5095
+ name = "xml5ever"
5096
+ version = "0.36.1"
5097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5098
+ checksum = "f57dd51b88a4b9f99f9b55b136abb86210629d61c48117ddb87f567e51e66be7"
5099
+ dependencies = [
5100
+ "log",
5101
+ "markup5ever",
5102
+ ]
5103
+
3173
5104
  [[package]]
3174
5105
  name = "yansi"
3175
5106
  version = "1.0.1"
3176
5107
  source = "registry+https://github.com/rust-lang/crates.io-index"
3177
5108
  checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3178
5109
 
5110
+ [[package]]
5111
+ name = "yoke"
5112
+ version = "0.8.1"
5113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5114
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
5115
+ dependencies = [
5116
+ "stable_deref_trait",
5117
+ "yoke-derive",
5118
+ "zerofrom",
5119
+ ]
5120
+
5121
+ [[package]]
5122
+ name = "yoke-derive"
5123
+ version = "0.8.1"
5124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5125
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
5126
+ dependencies = [
5127
+ "proc-macro2",
5128
+ "quote",
5129
+ "syn",
5130
+ "synstructure",
5131
+ ]
5132
+
3179
5133
  [[package]]
3180
5134
  name = "zerocopy"
3181
- version = "0.8.27"
5135
+ version = "0.8.31"
3182
5136
  source = "registry+https://github.com/rust-lang/crates.io-index"
3183
- checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
5137
+ checksum = "fd74ec98b9250adb3ca554bdde269adf631549f51d8a8f8f0a10b50f1cb298c3"
3184
5138
  dependencies = [
3185
5139
  "zerocopy-derive",
3186
5140
  ]
3187
5141
 
3188
5142
  [[package]]
3189
5143
  name = "zerocopy-derive"
3190
- version = "0.8.27"
5144
+ version = "0.8.31"
5145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5146
+ checksum = "d8a8d209fdf45cf5138cbb5a506f6b52522a25afccc534d1475dad8e31105c6a"
5147
+ dependencies = [
5148
+ "proc-macro2",
5149
+ "quote",
5150
+ "syn",
5151
+ ]
5152
+
5153
+ [[package]]
5154
+ name = "zerofrom"
5155
+ version = "0.1.6"
5156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5157
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
5158
+ dependencies = [
5159
+ "zerofrom-derive",
5160
+ ]
5161
+
5162
+ [[package]]
5163
+ name = "zerofrom-derive"
5164
+ version = "0.1.6"
3191
5165
  source = "registry+https://github.com/rust-lang/crates.io-index"
3192
- checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
5166
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3193
5167
  dependencies = [
3194
5168
  "proc-macro2",
3195
5169
  "quote",
3196
5170
  "syn",
5171
+ "synstructure",
3197
5172
  ]
3198
5173
 
3199
5174
  [[package]]
@@ -3207,9 +5182,42 @@ dependencies = [
3207
5182
 
3208
5183
  [[package]]
3209
5184
  name = "zeroize_derive"
3210
- version = "1.4.2"
5185
+ version = "1.4.3"
5186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5187
+ checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
5188
+ dependencies = [
5189
+ "proc-macro2",
5190
+ "quote",
5191
+ "syn",
5192
+ ]
5193
+
5194
+ [[package]]
5195
+ name = "zerotrie"
5196
+ version = "0.2.3"
3211
5197
  source = "registry+https://github.com/rust-lang/crates.io-index"
3212
- checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
5198
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
5199
+ dependencies = [
5200
+ "displaydoc",
5201
+ "yoke",
5202
+ "zerofrom",
5203
+ ]
5204
+
5205
+ [[package]]
5206
+ name = "zerovec"
5207
+ version = "0.11.5"
5208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5209
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
5210
+ dependencies = [
5211
+ "yoke",
5212
+ "zerofrom",
5213
+ "zerovec-derive",
5214
+ ]
5215
+
5216
+ [[package]]
5217
+ name = "zerovec-derive"
5218
+ version = "0.11.2"
5219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5220
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3213
5221
  dependencies = [
3214
5222
  "proc-macro2",
3215
5223
  "quote",
@@ -3229,7 +5237,7 @@ dependencies = [
3229
5237
  "crc32fast",
3230
5238
  "deflate64",
3231
5239
  "flate2",
3232
- "getrandom",
5240
+ "getrandom 0.3.4",
3233
5241
  "hmac",
3234
5242
  "indexmap",
3235
5243
  "lzma-rust2",
@@ -3245,9 +5253,15 @@ dependencies = [
3245
5253
 
3246
5254
  [[package]]
3247
5255
  name = "zlib-rs"
3248
- version = "0.5.2"
5256
+ version = "0.5.5"
3249
5257
  source = "registry+https://github.com/rust-lang/crates.io-index"
3250
- checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
5258
+ checksum = "40990edd51aae2c2b6907af74ffb635029d5788228222c4bb811e9351c0caad3"
5259
+
5260
+ [[package]]
5261
+ name = "zmij"
5262
+ version = "1.0.10"
5263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
5264
+ checksum = "30e0d8dffbae3d840f64bda38e28391faef673a7b5a6017840f2a106c8145868"
3251
5265
 
3252
5266
  [[package]]
3253
5267
  name = "zopfli"
@@ -3291,15 +5305,15 @@ dependencies = [
3291
5305
 
3292
5306
  [[package]]
3293
5307
  name = "zune-core"
3294
- version = "0.4.12"
5308
+ version = "0.5.0"
3295
5309
  source = "registry+https://github.com/rust-lang/crates.io-index"
3296
- checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
5310
+ checksum = "111f7d9820f05fd715df3144e254d6fc02ee4088b0644c0ffd0efc9e6d9d2773"
3297
5311
 
3298
5312
  [[package]]
3299
5313
  name = "zune-jpeg"
3300
- version = "0.4.21"
5314
+ version = "0.5.8"
3301
5315
  source = "registry+https://github.com/rust-lang/crates.io-index"
3302
- checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
5316
+ checksum = "e35aee689668bf9bd6f6f3a6c60bb29ba1244b3b43adfd50edd554a371da37d5"
3303
5317
  dependencies = [
3304
5318
  "zune-core",
3305
5319
  ]