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