html-to-markdown 1.16.0__tar.gz → 2.1.0__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.

Potentially problematic release.


This version of html-to-markdown might be problematic. Click here for more details.

Files changed (71) hide show
  1. html_to_markdown-2.1.0/Cargo.lock +1967 -0
  2. html_to_markdown-2.1.0/Cargo.toml +43 -0
  3. {html_to_markdown-1.16.0 → html_to_markdown-2.1.0}/LICENSE +0 -1
  4. html_to_markdown-2.1.0/PKG-INFO +196 -0
  5. html_to_markdown-2.1.0/README_PYPI.md +162 -0
  6. html_to_markdown-2.1.0/crates/html-to-markdown/Cargo.toml +48 -0
  7. html_to_markdown-2.1.0/crates/html-to-markdown/README.md +387 -0
  8. html_to_markdown-2.1.0/crates/html-to-markdown/benches/conversion_benchmark.rs +301 -0
  9. html_to_markdown-2.1.0/crates/html-to-markdown/benches/micro_benchmark.rs +188 -0
  10. html_to_markdown-2.1.0/crates/html-to-markdown/benches/profiling_benchmark.rs +133 -0
  11. html_to_markdown-2.1.0/crates/html-to-markdown/examples/basic.rs +17 -0
  12. html_to_markdown-2.1.0/crates/html-to-markdown/examples/table.rs +18 -0
  13. html_to_markdown-2.1.0/crates/html-to-markdown/examples/test_escape.rs +51 -0
  14. html_to_markdown-2.1.0/crates/html-to-markdown/examples/test_inline_formatting.rs +105 -0
  15. html_to_markdown-2.1.0/crates/html-to-markdown/examples/test_lists.rs +32 -0
  16. html_to_markdown-2.1.0/crates/html-to-markdown/examples/test_semantic_tags.rs +82 -0
  17. html_to_markdown-2.1.0/crates/html-to-markdown/examples/test_tables.rs +93 -0
  18. html_to_markdown-2.1.0/crates/html-to-markdown/examples/test_task_lists.rs +54 -0
  19. html_to_markdown-2.1.0/crates/html-to-markdown/examples/test_whitespace.rs +27 -0
  20. html_to_markdown-2.1.0/crates/html-to-markdown/src/converter.rs +4052 -0
  21. html_to_markdown-2.1.0/crates/html-to-markdown/src/error.rs +30 -0
  22. html_to_markdown-2.1.0/crates/html-to-markdown/src/hocr/converter.rs +491 -0
  23. html_to_markdown-2.1.0/crates/html-to-markdown/src/hocr/extractor.rs +242 -0
  24. html_to_markdown-2.1.0/crates/html-to-markdown/src/hocr/mod.rs +30 -0
  25. html_to_markdown-2.1.0/crates/html-to-markdown/src/hocr/parser.rs +352 -0
  26. html_to_markdown-2.1.0/crates/html-to-markdown/src/hocr/spatial.rs +776 -0
  27. html_to_markdown-2.1.0/crates/html-to-markdown/src/hocr/types.rs +198 -0
  28. html_to_markdown-2.1.0/crates/html-to-markdown/src/inline_images.rs +221 -0
  29. html_to_markdown-2.1.0/crates/html-to-markdown/src/lib.rs +114 -0
  30. html_to_markdown-2.1.0/crates/html-to-markdown/src/options.rs +263 -0
  31. html_to_markdown-2.1.0/crates/html-to-markdown/src/sanitizer.rs +85 -0
  32. html_to_markdown-2.1.0/crates/html-to-markdown/src/text.rs +262 -0
  33. html_to_markdown-2.1.0/crates/html-to-markdown/src/wrapper.rs +214 -0
  34. html_to_markdown-2.1.0/crates/html-to-markdown/tests/commonmark_compliance_test.rs +287 -0
  35. html_to_markdown-2.1.0/crates/html-to-markdown/tests/hocr_compliance_test.rs +366 -0
  36. html_to_markdown-2.1.0/crates/html-to-markdown/tests/integration_test.rs +342 -0
  37. html_to_markdown-2.1.0/crates/html-to-markdown-py/Cargo.toml +36 -0
  38. html_to_markdown-2.1.0/crates/html-to-markdown-py/README.md +86 -0
  39. html_to_markdown-2.1.0/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +18 -0
  40. html_to_markdown-2.1.0/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +105 -0
  41. html_to_markdown-2.1.0/crates/html-to-markdown-py/src/lib.rs +535 -0
  42. html_to_markdown-2.1.0/crates/html-to-markdown-py/uv.lock +8 -0
  43. html_to_markdown-2.1.0/html_to_markdown/__init__.py +42 -0
  44. {html_to_markdown-1.16.0 → html_to_markdown-2.1.0}/html_to_markdown/__main__.py +3 -3
  45. html_to_markdown-2.1.0/html_to_markdown/_rust.pyi +71 -0
  46. html_to_markdown-2.1.0/html_to_markdown/api.py +73 -0
  47. html_to_markdown-2.1.0/html_to_markdown/cli.py +3 -0
  48. html_to_markdown-2.1.0/html_to_markdown/cli_proxy.py +134 -0
  49. {html_to_markdown-1.16.0 → html_to_markdown-2.1.0}/html_to_markdown/exceptions.py +30 -1
  50. html_to_markdown-2.1.0/html_to_markdown/options.py +138 -0
  51. html_to_markdown-2.1.0/html_to_markdown/v1_compat.py +189 -0
  52. {html_to_markdown-1.16.0 → html_to_markdown-2.1.0}/pyproject.toml +37 -58
  53. html_to_markdown-1.16.0/PKG-INFO +0 -918
  54. html_to_markdown-1.16.0/README.md +0 -878
  55. html_to_markdown-1.16.0/html_to_markdown/__init__.py +0 -24
  56. html_to_markdown-1.16.0/html_to_markdown/cli.py +0 -321
  57. html_to_markdown-1.16.0/html_to_markdown/constants.py +0 -22
  58. html_to_markdown-1.16.0/html_to_markdown/converters.py +0 -1220
  59. html_to_markdown-1.16.0/html_to_markdown/hocr_processor.py +0 -128
  60. html_to_markdown-1.16.0/html_to_markdown/preprocessor.py +0 -404
  61. html_to_markdown-1.16.0/html_to_markdown/processing.py +0 -1195
  62. html_to_markdown-1.16.0/html_to_markdown/utils.py +0 -37
  63. html_to_markdown-1.16.0/html_to_markdown/whitespace.py +0 -293
  64. html_to_markdown-1.16.0/html_to_markdown.egg-info/PKG-INFO +0 -918
  65. html_to_markdown-1.16.0/html_to_markdown.egg-info/SOURCES.txt +0 -21
  66. html_to_markdown-1.16.0/html_to_markdown.egg-info/dependency_links.txt +0 -1
  67. html_to_markdown-1.16.0/html_to_markdown.egg-info/entry_points.txt +0 -3
  68. html_to_markdown-1.16.0/html_to_markdown.egg-info/requires.txt +0 -8
  69. html_to_markdown-1.16.0/html_to_markdown.egg-info/top_level.txt +0 -1
  70. html_to_markdown-1.16.0/setup.cfg +0 -4
  71. {html_to_markdown-1.16.0 → html_to_markdown-2.1.0}/html_to_markdown/py.typed +0 -0
@@ -0,0 +1,1967 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.3"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "ammonia"
22
+ version = "4.1.2"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "17e913097e1a2124b46746c980134e8c954bc17a6a59bb3fde96f088d126dde6"
25
+ dependencies = [
26
+ "cssparser",
27
+ "html5ever",
28
+ "maplit",
29
+ "tendril",
30
+ "url",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "anes"
35
+ version = "0.1.6"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
38
+
39
+ [[package]]
40
+ name = "anstream"
41
+ version = "0.6.21"
42
+ source = "registry+https://github.com/rust-lang/crates.io-index"
43
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
44
+ dependencies = [
45
+ "anstyle",
46
+ "anstyle-parse",
47
+ "anstyle-query",
48
+ "anstyle-wincon",
49
+ "colorchoice",
50
+ "is_terminal_polyfill",
51
+ "utf8parse",
52
+ ]
53
+
54
+ [[package]]
55
+ name = "anstyle"
56
+ version = "1.0.13"
57
+ source = "registry+https://github.com/rust-lang/crates.io-index"
58
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
59
+
60
+ [[package]]
61
+ name = "anstyle-parse"
62
+ version = "0.2.7"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
65
+ dependencies = [
66
+ "utf8parse",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "anstyle-query"
71
+ version = "1.1.4"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
74
+ dependencies = [
75
+ "windows-sys 0.60.2",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anstyle-wincon"
80
+ version = "3.0.10"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
83
+ dependencies = [
84
+ "anstyle",
85
+ "once_cell_polyfill",
86
+ "windows-sys 0.60.2",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "assert_cmd"
91
+ version = "2.0.17"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "2bd389a4b2970a01282ee455294913c0a43724daedcd1a24c3eb0ec1c1320b66"
94
+ dependencies = [
95
+ "anstyle",
96
+ "bstr",
97
+ "doc-comment",
98
+ "libc",
99
+ "predicates",
100
+ "predicates-core",
101
+ "predicates-tree",
102
+ "wait-timeout",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "autocfg"
107
+ version = "1.5.0"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
110
+
111
+ [[package]]
112
+ name = "base64"
113
+ version = "0.22.1"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
116
+
117
+ [[package]]
118
+ name = "bitflags"
119
+ version = "2.9.4"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
122
+
123
+ [[package]]
124
+ name = "bstr"
125
+ version = "1.12.0"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
128
+ dependencies = [
129
+ "memchr",
130
+ "regex-automata",
131
+ "serde",
132
+ ]
133
+
134
+ [[package]]
135
+ name = "bumpalo"
136
+ version = "3.19.0"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
139
+
140
+ [[package]]
141
+ name = "bytemuck"
142
+ version = "1.24.0"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
145
+
146
+ [[package]]
147
+ name = "byteorder-lite"
148
+ version = "0.1.0"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
151
+
152
+ [[package]]
153
+ name = "cast"
154
+ version = "0.3.0"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
157
+
158
+ [[package]]
159
+ name = "cfg-if"
160
+ version = "1.0.3"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
163
+
164
+ [[package]]
165
+ name = "ciborium"
166
+ version = "0.2.2"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
169
+ dependencies = [
170
+ "ciborium-io",
171
+ "ciborium-ll",
172
+ "serde",
173
+ ]
174
+
175
+ [[package]]
176
+ name = "ciborium-io"
177
+ version = "0.2.2"
178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
179
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
180
+
181
+ [[package]]
182
+ name = "ciborium-ll"
183
+ version = "0.2.2"
184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
185
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
186
+ dependencies = [
187
+ "ciborium-io",
188
+ "half",
189
+ ]
190
+
191
+ [[package]]
192
+ name = "clap"
193
+ version = "4.5.48"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "e2134bb3ea021b78629caa971416385309e0131b351b25e01dc16fb54e1b5fae"
196
+ dependencies = [
197
+ "clap_builder",
198
+ "clap_derive",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "clap_builder"
203
+ version = "4.5.48"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "c2ba64afa3c0a6df7fa517765e31314e983f51dda798ffba27b988194fb65dc9"
206
+ dependencies = [
207
+ "anstream",
208
+ "anstyle",
209
+ "clap_lex",
210
+ "strsim",
211
+ ]
212
+
213
+ [[package]]
214
+ name = "clap_complete"
215
+ version = "4.5.58"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "75bf0b32ad2e152de789bb635ea4d3078f6b838ad7974143e99b99f45a04af4a"
218
+ dependencies = [
219
+ "clap",
220
+ ]
221
+
222
+ [[package]]
223
+ name = "clap_derive"
224
+ version = "4.5.47"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
227
+ dependencies = [
228
+ "heck",
229
+ "proc-macro2",
230
+ "quote",
231
+ "syn",
232
+ ]
233
+
234
+ [[package]]
235
+ name = "clap_lex"
236
+ version = "0.7.5"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
239
+
240
+ [[package]]
241
+ name = "clap_mangen"
242
+ version = "0.2.29"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "27b4c3c54b30f0d9adcb47f25f61fcce35c4dd8916638c6b82fbd5f4fb4179e2"
245
+ dependencies = [
246
+ "clap",
247
+ "roff",
248
+ ]
249
+
250
+ [[package]]
251
+ name = "color_quant"
252
+ version = "1.1.0"
253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
254
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
255
+
256
+ [[package]]
257
+ name = "colorchoice"
258
+ version = "1.0.4"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
261
+
262
+ [[package]]
263
+ name = "crc32fast"
264
+ version = "1.5.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
267
+ dependencies = [
268
+ "cfg-if",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "criterion"
273
+ version = "0.5.1"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
276
+ dependencies = [
277
+ "anes",
278
+ "cast",
279
+ "ciborium",
280
+ "clap",
281
+ "criterion-plot",
282
+ "is-terminal",
283
+ "itertools",
284
+ "num-traits",
285
+ "once_cell",
286
+ "oorandom",
287
+ "plotters",
288
+ "rayon",
289
+ "regex",
290
+ "serde",
291
+ "serde_derive",
292
+ "serde_json",
293
+ "tinytemplate",
294
+ "walkdir",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "criterion-plot"
299
+ version = "0.5.0"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
302
+ dependencies = [
303
+ "cast",
304
+ "itertools",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "crossbeam-deque"
309
+ version = "0.8.6"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
312
+ dependencies = [
313
+ "crossbeam-epoch",
314
+ "crossbeam-utils",
315
+ ]
316
+
317
+ [[package]]
318
+ name = "crossbeam-epoch"
319
+ version = "0.9.18"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
322
+ dependencies = [
323
+ "crossbeam-utils",
324
+ ]
325
+
326
+ [[package]]
327
+ name = "crossbeam-utils"
328
+ version = "0.8.21"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
331
+
332
+ [[package]]
333
+ name = "crunchy"
334
+ version = "0.2.4"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
337
+
338
+ [[package]]
339
+ name = "cssparser"
340
+ version = "0.35.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "4e901edd733a1472f944a45116df3f846f54d37e67e68640ac8bb69689aca2aa"
343
+ dependencies = [
344
+ "cssparser-macros",
345
+ "dtoa-short",
346
+ "itoa",
347
+ "phf",
348
+ "smallvec",
349
+ ]
350
+
351
+ [[package]]
352
+ name = "cssparser-macros"
353
+ version = "0.6.1"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
356
+ dependencies = [
357
+ "quote",
358
+ "syn",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "difflib"
363
+ version = "0.4.0"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
366
+
367
+ [[package]]
368
+ name = "displaydoc"
369
+ version = "0.2.5"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
372
+ dependencies = [
373
+ "proc-macro2",
374
+ "quote",
375
+ "syn",
376
+ ]
377
+
378
+ [[package]]
379
+ name = "doc-comment"
380
+ version = "0.3.3"
381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
382
+ checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
383
+
384
+ [[package]]
385
+ name = "dtoa"
386
+ version = "1.0.10"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
389
+
390
+ [[package]]
391
+ name = "dtoa-short"
392
+ version = "0.3.5"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
395
+ dependencies = [
396
+ "dtoa",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "either"
401
+ version = "1.15.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
404
+
405
+ [[package]]
406
+ name = "encoding_rs"
407
+ version = "0.8.35"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
410
+ dependencies = [
411
+ "cfg-if",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "errno"
416
+ version = "0.3.14"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
419
+ dependencies = [
420
+ "libc",
421
+ "windows-sys 0.61.2",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "fastrand"
426
+ version = "2.3.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
429
+
430
+ [[package]]
431
+ name = "fdeflate"
432
+ version = "0.3.7"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
435
+ dependencies = [
436
+ "simd-adler32",
437
+ ]
438
+
439
+ [[package]]
440
+ name = "flate2"
441
+ version = "1.1.4"
442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
443
+ checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9"
444
+ dependencies = [
445
+ "crc32fast",
446
+ "miniz_oxide",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "float-cmp"
451
+ version = "0.10.0"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
454
+ dependencies = [
455
+ "num-traits",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "form_urlencoded"
460
+ version = "1.2.2"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
463
+ dependencies = [
464
+ "percent-encoding",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "futf"
469
+ version = "0.1.5"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
472
+ dependencies = [
473
+ "mac",
474
+ "new_debug_unreachable",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "getrandom"
479
+ version = "0.3.3"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
482
+ dependencies = [
483
+ "cfg-if",
484
+ "libc",
485
+ "r-efi",
486
+ "wasi",
487
+ ]
488
+
489
+ [[package]]
490
+ name = "gif"
491
+ version = "0.13.3"
492
+ source = "registry+https://github.com/rust-lang/crates.io-index"
493
+ checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
494
+ dependencies = [
495
+ "color_quant",
496
+ "weezl",
497
+ ]
498
+
499
+ [[package]]
500
+ name = "half"
501
+ version = "2.7.0"
502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
503
+ checksum = "e54c115d4f30f52c67202f079c5f9d8b49db4691f460fdb0b4c2e838261b2ba5"
504
+ dependencies = [
505
+ "cfg-if",
506
+ "crunchy",
507
+ "zerocopy",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "heck"
512
+ version = "0.5.0"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
515
+
516
+ [[package]]
517
+ name = "hermit-abi"
518
+ version = "0.5.2"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
521
+
522
+ [[package]]
523
+ name = "html-escape"
524
+ version = "0.2.13"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
527
+ dependencies = [
528
+ "utf8-width",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "html-to-markdown-cli"
533
+ version = "2.1.0"
534
+ dependencies = [
535
+ "assert_cmd",
536
+ "clap",
537
+ "clap_complete",
538
+ "clap_mangen",
539
+ "encoding_rs",
540
+ "html-to-markdown-rs",
541
+ "predicates",
542
+ "tempfile",
543
+ ]
544
+
545
+ [[package]]
546
+ name = "html-to-markdown-py"
547
+ version = "2.1.0"
548
+ dependencies = [
549
+ "base64",
550
+ "html-to-markdown-rs",
551
+ "image",
552
+ "pyo3",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "html-to-markdown-rs"
557
+ version = "2.1.0"
558
+ dependencies = [
559
+ "ammonia",
560
+ "base64",
561
+ "criterion",
562
+ "html-escape",
563
+ "image",
564
+ "once_cell",
565
+ "regex",
566
+ "serde",
567
+ "serde_json",
568
+ "thiserror",
569
+ "tl",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "html5ever"
574
+ version = "0.35.0"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "55d958c2f74b664487a2035fe1dadb032c48718a03b63f3ab0b8537db8549ed4"
577
+ dependencies = [
578
+ "log",
579
+ "markup5ever",
580
+ "match_token",
581
+ ]
582
+
583
+ [[package]]
584
+ name = "icu_collections"
585
+ version = "2.0.0"
586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
587
+ checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
588
+ dependencies = [
589
+ "displaydoc",
590
+ "potential_utf",
591
+ "yoke",
592
+ "zerofrom",
593
+ "zerovec",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "icu_locale_core"
598
+ version = "2.0.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
601
+ dependencies = [
602
+ "displaydoc",
603
+ "litemap",
604
+ "tinystr",
605
+ "writeable",
606
+ "zerovec",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "icu_normalizer"
611
+ version = "2.0.0"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
614
+ dependencies = [
615
+ "displaydoc",
616
+ "icu_collections",
617
+ "icu_normalizer_data",
618
+ "icu_properties",
619
+ "icu_provider",
620
+ "smallvec",
621
+ "zerovec",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "icu_normalizer_data"
626
+ version = "2.0.0"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
629
+
630
+ [[package]]
631
+ name = "icu_properties"
632
+ version = "2.0.1"
633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
634
+ checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
635
+ dependencies = [
636
+ "displaydoc",
637
+ "icu_collections",
638
+ "icu_locale_core",
639
+ "icu_properties_data",
640
+ "icu_provider",
641
+ "potential_utf",
642
+ "zerotrie",
643
+ "zerovec",
644
+ ]
645
+
646
+ [[package]]
647
+ name = "icu_properties_data"
648
+ version = "2.0.1"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
651
+
652
+ [[package]]
653
+ name = "icu_provider"
654
+ version = "2.0.0"
655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
656
+ checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
657
+ dependencies = [
658
+ "displaydoc",
659
+ "icu_locale_core",
660
+ "stable_deref_trait",
661
+ "tinystr",
662
+ "writeable",
663
+ "yoke",
664
+ "zerofrom",
665
+ "zerotrie",
666
+ "zerovec",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "idna"
671
+ version = "1.1.0"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
674
+ dependencies = [
675
+ "idna_adapter",
676
+ "smallvec",
677
+ "utf8_iter",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "idna_adapter"
682
+ version = "1.2.1"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
685
+ dependencies = [
686
+ "icu_normalizer",
687
+ "icu_properties",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "image"
692
+ version = "0.25.8"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "529feb3e6769d234375c4cf1ee2ce713682b8e76538cb13f9fc23e1400a591e7"
695
+ dependencies = [
696
+ "bytemuck",
697
+ "byteorder-lite",
698
+ "color_quant",
699
+ "gif",
700
+ "image-webp",
701
+ "moxcms",
702
+ "num-traits",
703
+ "png",
704
+ "zune-core",
705
+ "zune-jpeg",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "image-webp"
710
+ version = "0.2.4"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
713
+ dependencies = [
714
+ "byteorder-lite",
715
+ "quick-error",
716
+ ]
717
+
718
+ [[package]]
719
+ name = "indoc"
720
+ version = "2.0.6"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
723
+
724
+ [[package]]
725
+ name = "is-terminal"
726
+ version = "0.4.16"
727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
728
+ checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
729
+ dependencies = [
730
+ "hermit-abi",
731
+ "libc",
732
+ "windows-sys 0.59.0",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "is_terminal_polyfill"
737
+ version = "1.70.1"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
740
+
741
+ [[package]]
742
+ name = "itertools"
743
+ version = "0.10.5"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
746
+ dependencies = [
747
+ "either",
748
+ ]
749
+
750
+ [[package]]
751
+ name = "itoa"
752
+ version = "1.0.15"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
755
+
756
+ [[package]]
757
+ name = "js-sys"
758
+ version = "0.3.81"
759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
760
+ checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
761
+ dependencies = [
762
+ "once_cell",
763
+ "wasm-bindgen",
764
+ ]
765
+
766
+ [[package]]
767
+ name = "libc"
768
+ version = "0.2.177"
769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
770
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
771
+
772
+ [[package]]
773
+ name = "linux-raw-sys"
774
+ version = "0.11.0"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
777
+
778
+ [[package]]
779
+ name = "litemap"
780
+ version = "0.8.0"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
783
+
784
+ [[package]]
785
+ name = "lock_api"
786
+ version = "0.4.14"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
789
+ dependencies = [
790
+ "scopeguard",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "log"
795
+ version = "0.4.28"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
798
+
799
+ [[package]]
800
+ name = "mac"
801
+ version = "0.1.1"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
804
+
805
+ [[package]]
806
+ name = "maplit"
807
+ version = "1.0.2"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
810
+
811
+ [[package]]
812
+ name = "markup5ever"
813
+ version = "0.35.0"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "311fe69c934650f8f19652b3946075f0fc41ad8757dbb68f1ca14e7900ecc1c3"
816
+ dependencies = [
817
+ "log",
818
+ "tendril",
819
+ "web_atoms",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "match_token"
824
+ version = "0.35.0"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "ac84fd3f360fcc43dc5f5d186f02a94192761a080e8bc58621ad4d12296a58cf"
827
+ dependencies = [
828
+ "proc-macro2",
829
+ "quote",
830
+ "syn",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "memchr"
835
+ version = "2.7.6"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
838
+
839
+ [[package]]
840
+ name = "memoffset"
841
+ version = "0.9.1"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
844
+ dependencies = [
845
+ "autocfg",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "miniz_oxide"
850
+ version = "0.8.9"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
853
+ dependencies = [
854
+ "adler2",
855
+ "simd-adler32",
856
+ ]
857
+
858
+ [[package]]
859
+ name = "moxcms"
860
+ version = "0.7.7"
861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
862
+ checksum = "c588e11a3082784af229e23e8e4ecf5bcc6fbe4f69101e0421ce8d79da7f0b40"
863
+ dependencies = [
864
+ "num-traits",
865
+ "pxfm",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "new_debug_unreachable"
870
+ version = "1.0.6"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
873
+
874
+ [[package]]
875
+ name = "normalize-line-endings"
876
+ version = "0.3.0"
877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
878
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
879
+
880
+ [[package]]
881
+ name = "num-traits"
882
+ version = "0.2.19"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
885
+ dependencies = [
886
+ "autocfg",
887
+ ]
888
+
889
+ [[package]]
890
+ name = "once_cell"
891
+ version = "1.21.3"
892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
893
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
894
+
895
+ [[package]]
896
+ name = "once_cell_polyfill"
897
+ version = "1.70.1"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
900
+
901
+ [[package]]
902
+ name = "oorandom"
903
+ version = "11.1.5"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
906
+
907
+ [[package]]
908
+ name = "parking_lot"
909
+ version = "0.12.5"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
912
+ dependencies = [
913
+ "lock_api",
914
+ "parking_lot_core",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "parking_lot_core"
919
+ version = "0.9.12"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
922
+ dependencies = [
923
+ "cfg-if",
924
+ "libc",
925
+ "redox_syscall",
926
+ "smallvec",
927
+ "windows-link",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "percent-encoding"
932
+ version = "2.3.2"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
935
+
936
+ [[package]]
937
+ name = "phf"
938
+ version = "0.11.3"
939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
940
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
941
+ dependencies = [
942
+ "phf_macros",
943
+ "phf_shared",
944
+ ]
945
+
946
+ [[package]]
947
+ name = "phf_codegen"
948
+ version = "0.11.3"
949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
950
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
951
+ dependencies = [
952
+ "phf_generator",
953
+ "phf_shared",
954
+ ]
955
+
956
+ [[package]]
957
+ name = "phf_generator"
958
+ version = "0.11.3"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
961
+ dependencies = [
962
+ "phf_shared",
963
+ "rand",
964
+ ]
965
+
966
+ [[package]]
967
+ name = "phf_macros"
968
+ version = "0.11.3"
969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
970
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
971
+ dependencies = [
972
+ "phf_generator",
973
+ "phf_shared",
974
+ "proc-macro2",
975
+ "quote",
976
+ "syn",
977
+ ]
978
+
979
+ [[package]]
980
+ name = "phf_shared"
981
+ version = "0.11.3"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
984
+ dependencies = [
985
+ "siphasher",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "plotters"
990
+ version = "0.3.7"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
993
+ dependencies = [
994
+ "num-traits",
995
+ "plotters-backend",
996
+ "plotters-svg",
997
+ "wasm-bindgen",
998
+ "web-sys",
999
+ ]
1000
+
1001
+ [[package]]
1002
+ name = "plotters-backend"
1003
+ version = "0.3.7"
1004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1005
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1006
+
1007
+ [[package]]
1008
+ name = "plotters-svg"
1009
+ version = "0.3.7"
1010
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1011
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1012
+ dependencies = [
1013
+ "plotters-backend",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "png"
1018
+ version = "0.18.0"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
1021
+ dependencies = [
1022
+ "bitflags",
1023
+ "crc32fast",
1024
+ "fdeflate",
1025
+ "flate2",
1026
+ "miniz_oxide",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "portable-atomic"
1031
+ version = "1.11.1"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1034
+
1035
+ [[package]]
1036
+ name = "potential_utf"
1037
+ version = "0.1.3"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
1040
+ dependencies = [
1041
+ "zerovec",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "precomputed-hash"
1046
+ version = "0.1.1"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1049
+
1050
+ [[package]]
1051
+ name = "predicates"
1052
+ version = "3.1.3"
1053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1054
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
1055
+ dependencies = [
1056
+ "anstyle",
1057
+ "difflib",
1058
+ "float-cmp",
1059
+ "normalize-line-endings",
1060
+ "predicates-core",
1061
+ "regex",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "predicates-core"
1066
+ version = "1.0.9"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
1069
+
1070
+ [[package]]
1071
+ name = "predicates-tree"
1072
+ version = "1.0.12"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
1075
+ dependencies = [
1076
+ "predicates-core",
1077
+ "termtree",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "proc-macro2"
1082
+ version = "1.0.101"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
1085
+ dependencies = [
1086
+ "unicode-ident",
1087
+ ]
1088
+
1089
+ [[package]]
1090
+ name = "pxfm"
1091
+ version = "0.1.25"
1092
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1093
+ checksum = "a3cbdf373972bf78df4d3b518d07003938e2c7d1fb5891e55f9cb6df57009d84"
1094
+ dependencies = [
1095
+ "num-traits",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "pyo3"
1100
+ version = "0.26.0"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "7ba0117f4212101ee6544044dae45abe1083d30ce7b29c4b5cbdfa2354e07383"
1103
+ dependencies = [
1104
+ "indoc",
1105
+ "libc",
1106
+ "memoffset",
1107
+ "once_cell",
1108
+ "portable-atomic",
1109
+ "pyo3-build-config",
1110
+ "pyo3-ffi",
1111
+ "pyo3-macros",
1112
+ "unindent",
1113
+ ]
1114
+
1115
+ [[package]]
1116
+ name = "pyo3-build-config"
1117
+ version = "0.26.0"
1118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1119
+ checksum = "4fc6ddaf24947d12a9aa31ac65431fb1b851b8f4365426e182901eabfb87df5f"
1120
+ dependencies = [
1121
+ "target-lexicon",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "pyo3-ffi"
1126
+ version = "0.26.0"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "025474d3928738efb38ac36d4744a74a400c901c7596199e20e45d98eb194105"
1129
+ dependencies = [
1130
+ "libc",
1131
+ "pyo3-build-config",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "pyo3-macros"
1136
+ version = "0.26.0"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "2e64eb489f22fe1c95911b77c44cc41e7c19f3082fc81cce90f657cdc42ffded"
1139
+ dependencies = [
1140
+ "proc-macro2",
1141
+ "pyo3-macros-backend",
1142
+ "quote",
1143
+ "syn",
1144
+ ]
1145
+
1146
+ [[package]]
1147
+ name = "pyo3-macros-backend"
1148
+ version = "0.26.0"
1149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1150
+ checksum = "100246c0ecf400b475341b8455a9213344569af29a3c841d29270e53102e0fcf"
1151
+ dependencies = [
1152
+ "heck",
1153
+ "proc-macro2",
1154
+ "pyo3-build-config",
1155
+ "quote",
1156
+ "syn",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "quick-error"
1161
+ version = "2.0.1"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
1164
+
1165
+ [[package]]
1166
+ name = "quote"
1167
+ version = "1.0.41"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
1170
+ dependencies = [
1171
+ "proc-macro2",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "r-efi"
1176
+ version = "5.3.0"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1179
+
1180
+ [[package]]
1181
+ name = "rand"
1182
+ version = "0.8.5"
1183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1184
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1185
+ dependencies = [
1186
+ "rand_core",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "rand_core"
1191
+ version = "0.6.4"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1194
+
1195
+ [[package]]
1196
+ name = "rayon"
1197
+ version = "1.11.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1200
+ dependencies = [
1201
+ "either",
1202
+ "rayon-core",
1203
+ ]
1204
+
1205
+ [[package]]
1206
+ name = "rayon-core"
1207
+ version = "1.13.0"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1210
+ dependencies = [
1211
+ "crossbeam-deque",
1212
+ "crossbeam-utils",
1213
+ ]
1214
+
1215
+ [[package]]
1216
+ name = "redox_syscall"
1217
+ version = "0.5.18"
1218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1219
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1220
+ dependencies = [
1221
+ "bitflags",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "regex"
1226
+ version = "1.12.1"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "4a52d8d02cacdb176ef4678de6c052efb4b3da14b78e4db683a4252762be5433"
1229
+ dependencies = [
1230
+ "aho-corasick",
1231
+ "memchr",
1232
+ "regex-automata",
1233
+ "regex-syntax",
1234
+ ]
1235
+
1236
+ [[package]]
1237
+ name = "regex-automata"
1238
+ version = "0.4.12"
1239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1240
+ checksum = "722166aa0d7438abbaa4d5cc2c649dac844e8c56d82fb3d33e9c34b5cd268fc6"
1241
+ dependencies = [
1242
+ "aho-corasick",
1243
+ "memchr",
1244
+ "regex-syntax",
1245
+ ]
1246
+
1247
+ [[package]]
1248
+ name = "regex-syntax"
1249
+ version = "0.8.7"
1250
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1251
+ checksum = "c3160422bbd54dd5ecfdca71e5fd59b7b8fe2b1697ab2baf64f6d05dcc66d298"
1252
+
1253
+ [[package]]
1254
+ name = "roff"
1255
+ version = "0.2.2"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
1258
+
1259
+ [[package]]
1260
+ name = "rustix"
1261
+ version = "1.1.2"
1262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1263
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1264
+ dependencies = [
1265
+ "bitflags",
1266
+ "errno",
1267
+ "libc",
1268
+ "linux-raw-sys",
1269
+ "windows-sys 0.61.2",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "rustversion"
1274
+ version = "1.0.22"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1277
+
1278
+ [[package]]
1279
+ name = "ryu"
1280
+ version = "1.0.20"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1283
+
1284
+ [[package]]
1285
+ name = "same-file"
1286
+ version = "1.0.6"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1289
+ dependencies = [
1290
+ "winapi-util",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "scopeguard"
1295
+ version = "1.2.0"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1298
+
1299
+ [[package]]
1300
+ name = "serde"
1301
+ version = "1.0.228"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1304
+ dependencies = [
1305
+ "serde_core",
1306
+ "serde_derive",
1307
+ ]
1308
+
1309
+ [[package]]
1310
+ name = "serde_core"
1311
+ version = "1.0.228"
1312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1313
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1314
+ dependencies = [
1315
+ "serde_derive",
1316
+ ]
1317
+
1318
+ [[package]]
1319
+ name = "serde_derive"
1320
+ version = "1.0.228"
1321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1322
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1323
+ dependencies = [
1324
+ "proc-macro2",
1325
+ "quote",
1326
+ "syn",
1327
+ ]
1328
+
1329
+ [[package]]
1330
+ name = "serde_json"
1331
+ version = "1.0.145"
1332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1333
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1334
+ dependencies = [
1335
+ "itoa",
1336
+ "memchr",
1337
+ "ryu",
1338
+ "serde",
1339
+ "serde_core",
1340
+ ]
1341
+
1342
+ [[package]]
1343
+ name = "simd-adler32"
1344
+ version = "0.3.7"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1347
+
1348
+ [[package]]
1349
+ name = "siphasher"
1350
+ version = "1.0.1"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1353
+
1354
+ [[package]]
1355
+ name = "smallvec"
1356
+ version = "1.15.1"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1359
+
1360
+ [[package]]
1361
+ name = "stable_deref_trait"
1362
+ version = "1.2.1"
1363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1364
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1365
+
1366
+ [[package]]
1367
+ name = "string_cache"
1368
+ version = "0.8.9"
1369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1370
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
1371
+ dependencies = [
1372
+ "new_debug_unreachable",
1373
+ "parking_lot",
1374
+ "phf_shared",
1375
+ "precomputed-hash",
1376
+ "serde",
1377
+ ]
1378
+
1379
+ [[package]]
1380
+ name = "string_cache_codegen"
1381
+ version = "0.5.4"
1382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1383
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
1384
+ dependencies = [
1385
+ "phf_generator",
1386
+ "phf_shared",
1387
+ "proc-macro2",
1388
+ "quote",
1389
+ ]
1390
+
1391
+ [[package]]
1392
+ name = "strsim"
1393
+ version = "0.11.1"
1394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1395
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1396
+
1397
+ [[package]]
1398
+ name = "syn"
1399
+ version = "2.0.106"
1400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1401
+ checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
1402
+ dependencies = [
1403
+ "proc-macro2",
1404
+ "quote",
1405
+ "unicode-ident",
1406
+ ]
1407
+
1408
+ [[package]]
1409
+ name = "synstructure"
1410
+ version = "0.13.2"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1413
+ dependencies = [
1414
+ "proc-macro2",
1415
+ "quote",
1416
+ "syn",
1417
+ ]
1418
+
1419
+ [[package]]
1420
+ name = "target-lexicon"
1421
+ version = "0.13.3"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
1424
+
1425
+ [[package]]
1426
+ name = "tempfile"
1427
+ version = "3.23.0"
1428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1429
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1430
+ dependencies = [
1431
+ "fastrand",
1432
+ "getrandom",
1433
+ "once_cell",
1434
+ "rustix",
1435
+ "windows-sys 0.61.2",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "tendril"
1440
+ version = "0.4.3"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
1443
+ dependencies = [
1444
+ "futf",
1445
+ "mac",
1446
+ "utf-8",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "termtree"
1451
+ version = "0.5.1"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
1454
+
1455
+ [[package]]
1456
+ name = "thiserror"
1457
+ version = "2.0.17"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1460
+ dependencies = [
1461
+ "thiserror-impl",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "thiserror-impl"
1466
+ version = "2.0.17"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1469
+ dependencies = [
1470
+ "proc-macro2",
1471
+ "quote",
1472
+ "syn",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "tinystr"
1477
+ version = "0.8.1"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1480
+ dependencies = [
1481
+ "displaydoc",
1482
+ "zerovec",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "tinytemplate"
1487
+ version = "1.2.1"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
1490
+ dependencies = [
1491
+ "serde",
1492
+ "serde_json",
1493
+ ]
1494
+
1495
+ [[package]]
1496
+ name = "tl"
1497
+ version = "0.7.8"
1498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1499
+ checksum = "b130bd8a58c163224b44e217b4239ca7b927d82bf6cc2fea1fc561d15056e3f7"
1500
+
1501
+ [[package]]
1502
+ name = "unicode-ident"
1503
+ version = "1.0.19"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
1506
+
1507
+ [[package]]
1508
+ name = "unindent"
1509
+ version = "0.2.4"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
1512
+
1513
+ [[package]]
1514
+ name = "url"
1515
+ version = "2.5.7"
1516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1517
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
1518
+ dependencies = [
1519
+ "form_urlencoded",
1520
+ "idna",
1521
+ "percent-encoding",
1522
+ "serde",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "utf-8"
1527
+ version = "0.7.6"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1530
+
1531
+ [[package]]
1532
+ name = "utf8-width"
1533
+ version = "0.1.7"
1534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1535
+ checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
1536
+
1537
+ [[package]]
1538
+ name = "utf8_iter"
1539
+ version = "1.0.4"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1542
+
1543
+ [[package]]
1544
+ name = "utf8parse"
1545
+ version = "0.2.2"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1548
+
1549
+ [[package]]
1550
+ name = "wait-timeout"
1551
+ version = "0.2.1"
1552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1553
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
1554
+ dependencies = [
1555
+ "libc",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "walkdir"
1560
+ version = "2.5.0"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
1563
+ dependencies = [
1564
+ "same-file",
1565
+ "winapi-util",
1566
+ ]
1567
+
1568
+ [[package]]
1569
+ name = "wasi"
1570
+ version = "0.14.7+wasi-0.2.4"
1571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1572
+ checksum = "883478de20367e224c0090af9cf5f9fa85bed63a95c1abf3afc5c083ebc06e8c"
1573
+ dependencies = [
1574
+ "wasip2",
1575
+ ]
1576
+
1577
+ [[package]]
1578
+ name = "wasip2"
1579
+ version = "1.0.1+wasi-0.2.4"
1580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1581
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
1582
+ dependencies = [
1583
+ "wit-bindgen",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "wasm-bindgen"
1588
+ version = "0.2.104"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
1591
+ dependencies = [
1592
+ "cfg-if",
1593
+ "once_cell",
1594
+ "rustversion",
1595
+ "wasm-bindgen-macro",
1596
+ "wasm-bindgen-shared",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "wasm-bindgen-backend"
1601
+ version = "0.2.104"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
1604
+ dependencies = [
1605
+ "bumpalo",
1606
+ "log",
1607
+ "proc-macro2",
1608
+ "quote",
1609
+ "syn",
1610
+ "wasm-bindgen-shared",
1611
+ ]
1612
+
1613
+ [[package]]
1614
+ name = "wasm-bindgen-macro"
1615
+ version = "0.2.104"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
1618
+ dependencies = [
1619
+ "quote",
1620
+ "wasm-bindgen-macro-support",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "wasm-bindgen-macro-support"
1625
+ version = "0.2.104"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
1628
+ dependencies = [
1629
+ "proc-macro2",
1630
+ "quote",
1631
+ "syn",
1632
+ "wasm-bindgen-backend",
1633
+ "wasm-bindgen-shared",
1634
+ ]
1635
+
1636
+ [[package]]
1637
+ name = "wasm-bindgen-shared"
1638
+ version = "0.2.104"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
1641
+ dependencies = [
1642
+ "unicode-ident",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "web-sys"
1647
+ version = "0.3.81"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
1650
+ dependencies = [
1651
+ "js-sys",
1652
+ "wasm-bindgen",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "web_atoms"
1657
+ version = "0.1.3"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414"
1660
+ dependencies = [
1661
+ "phf",
1662
+ "phf_codegen",
1663
+ "string_cache",
1664
+ "string_cache_codegen",
1665
+ ]
1666
+
1667
+ [[package]]
1668
+ name = "weezl"
1669
+ version = "0.1.10"
1670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1671
+ checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
1672
+
1673
+ [[package]]
1674
+ name = "winapi-util"
1675
+ version = "0.1.11"
1676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1677
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
1678
+ dependencies = [
1679
+ "windows-sys 0.61.2",
1680
+ ]
1681
+
1682
+ [[package]]
1683
+ name = "windows-link"
1684
+ version = "0.2.1"
1685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1686
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1687
+
1688
+ [[package]]
1689
+ name = "windows-sys"
1690
+ version = "0.59.0"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
1693
+ dependencies = [
1694
+ "windows-targets 0.52.6",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "windows-sys"
1699
+ version = "0.60.2"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1702
+ dependencies = [
1703
+ "windows-targets 0.53.5",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "windows-sys"
1708
+ version = "0.61.2"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1711
+ dependencies = [
1712
+ "windows-link",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "windows-targets"
1717
+ version = "0.52.6"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1720
+ dependencies = [
1721
+ "windows_aarch64_gnullvm 0.52.6",
1722
+ "windows_aarch64_msvc 0.52.6",
1723
+ "windows_i686_gnu 0.52.6",
1724
+ "windows_i686_gnullvm 0.52.6",
1725
+ "windows_i686_msvc 0.52.6",
1726
+ "windows_x86_64_gnu 0.52.6",
1727
+ "windows_x86_64_gnullvm 0.52.6",
1728
+ "windows_x86_64_msvc 0.52.6",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "windows-targets"
1733
+ version = "0.53.5"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1736
+ dependencies = [
1737
+ "windows-link",
1738
+ "windows_aarch64_gnullvm 0.53.1",
1739
+ "windows_aarch64_msvc 0.53.1",
1740
+ "windows_i686_gnu 0.53.1",
1741
+ "windows_i686_gnullvm 0.53.1",
1742
+ "windows_i686_msvc 0.53.1",
1743
+ "windows_x86_64_gnu 0.53.1",
1744
+ "windows_x86_64_gnullvm 0.53.1",
1745
+ "windows_x86_64_msvc 0.53.1",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "windows_aarch64_gnullvm"
1750
+ version = "0.52.6"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1753
+
1754
+ [[package]]
1755
+ name = "windows_aarch64_gnullvm"
1756
+ version = "0.53.1"
1757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1758
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1759
+
1760
+ [[package]]
1761
+ name = "windows_aarch64_msvc"
1762
+ version = "0.52.6"
1763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1764
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1765
+
1766
+ [[package]]
1767
+ name = "windows_aarch64_msvc"
1768
+ version = "0.53.1"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1771
+
1772
+ [[package]]
1773
+ name = "windows_i686_gnu"
1774
+ version = "0.52.6"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1777
+
1778
+ [[package]]
1779
+ name = "windows_i686_gnu"
1780
+ version = "0.53.1"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1783
+
1784
+ [[package]]
1785
+ name = "windows_i686_gnullvm"
1786
+ version = "0.52.6"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1789
+
1790
+ [[package]]
1791
+ name = "windows_i686_gnullvm"
1792
+ version = "0.53.1"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1795
+
1796
+ [[package]]
1797
+ name = "windows_i686_msvc"
1798
+ version = "0.52.6"
1799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1800
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1801
+
1802
+ [[package]]
1803
+ name = "windows_i686_msvc"
1804
+ version = "0.53.1"
1805
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1806
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1807
+
1808
+ [[package]]
1809
+ name = "windows_x86_64_gnu"
1810
+ version = "0.52.6"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1813
+
1814
+ [[package]]
1815
+ name = "windows_x86_64_gnu"
1816
+ version = "0.53.1"
1817
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1818
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1819
+
1820
+ [[package]]
1821
+ name = "windows_x86_64_gnullvm"
1822
+ version = "0.52.6"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1825
+
1826
+ [[package]]
1827
+ name = "windows_x86_64_gnullvm"
1828
+ version = "0.53.1"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1831
+
1832
+ [[package]]
1833
+ name = "windows_x86_64_msvc"
1834
+ version = "0.52.6"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1837
+
1838
+ [[package]]
1839
+ name = "windows_x86_64_msvc"
1840
+ version = "0.53.1"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1843
+
1844
+ [[package]]
1845
+ name = "wit-bindgen"
1846
+ version = "0.46.0"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
1849
+
1850
+ [[package]]
1851
+ name = "writeable"
1852
+ version = "0.6.1"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
1855
+
1856
+ [[package]]
1857
+ name = "yoke"
1858
+ version = "0.8.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
1861
+ dependencies = [
1862
+ "serde",
1863
+ "stable_deref_trait",
1864
+ "yoke-derive",
1865
+ "zerofrom",
1866
+ ]
1867
+
1868
+ [[package]]
1869
+ name = "yoke-derive"
1870
+ version = "0.8.0"
1871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1872
+ checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
1873
+ dependencies = [
1874
+ "proc-macro2",
1875
+ "quote",
1876
+ "syn",
1877
+ "synstructure",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "zerocopy"
1882
+ version = "0.8.27"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
1885
+ dependencies = [
1886
+ "zerocopy-derive",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "zerocopy-derive"
1891
+ version = "0.8.27"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
1894
+ dependencies = [
1895
+ "proc-macro2",
1896
+ "quote",
1897
+ "syn",
1898
+ ]
1899
+
1900
+ [[package]]
1901
+ name = "zerofrom"
1902
+ version = "0.1.6"
1903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
1905
+ dependencies = [
1906
+ "zerofrom-derive",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "zerofrom-derive"
1911
+ version = "0.1.6"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
1914
+ dependencies = [
1915
+ "proc-macro2",
1916
+ "quote",
1917
+ "syn",
1918
+ "synstructure",
1919
+ ]
1920
+
1921
+ [[package]]
1922
+ name = "zerotrie"
1923
+ version = "0.2.2"
1924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1925
+ checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
1926
+ dependencies = [
1927
+ "displaydoc",
1928
+ "yoke",
1929
+ "zerofrom",
1930
+ ]
1931
+
1932
+ [[package]]
1933
+ name = "zerovec"
1934
+ version = "0.11.4"
1935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1936
+ checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
1937
+ dependencies = [
1938
+ "yoke",
1939
+ "zerofrom",
1940
+ "zerovec-derive",
1941
+ ]
1942
+
1943
+ [[package]]
1944
+ name = "zerovec-derive"
1945
+ version = "0.11.1"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
1948
+ dependencies = [
1949
+ "proc-macro2",
1950
+ "quote",
1951
+ "syn",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "zune-core"
1956
+ version = "0.4.12"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
1959
+
1960
+ [[package]]
1961
+ name = "zune-jpeg"
1962
+ version = "0.4.21"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
1965
+ dependencies = [
1966
+ "zune-core",
1967
+ ]