html-to-markdown 1.11.0__tar.gz → 2.6.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 (72) hide show
  1. html_to_markdown-2.6.0/Cargo.lock +3155 -0
  2. html_to_markdown-2.6.0/Cargo.toml +49 -0
  3. {html_to_markdown-1.11.0 → html_to_markdown-2.6.0}/LICENSE +0 -1
  4. html_to_markdown-2.6.0/PKG-INFO +242 -0
  5. html_to_markdown-2.6.0/README.md +208 -0
  6. html_to_markdown-2.6.0/crates/html-to-markdown/Cargo.toml +48 -0
  7. html_to_markdown-2.6.0/crates/html-to-markdown/README.md +166 -0
  8. html_to_markdown-2.6.0/crates/html-to-markdown/benches/conversion_benchmark.rs +301 -0
  9. html_to_markdown-2.6.0/crates/html-to-markdown/benches/micro_benchmark.rs +188 -0
  10. html_to_markdown-2.6.0/crates/html-to-markdown/benches/profiling_benchmark.rs +133 -0
  11. html_to_markdown-2.6.0/crates/html-to-markdown/examples/basic.rs +17 -0
  12. html_to_markdown-2.6.0/crates/html-to-markdown/examples/table.rs +18 -0
  13. html_to_markdown-2.6.0/crates/html-to-markdown/examples/test_escape.rs +51 -0
  14. html_to_markdown-2.6.0/crates/html-to-markdown/examples/test_inline_formatting.rs +105 -0
  15. html_to_markdown-2.6.0/crates/html-to-markdown/examples/test_lists.rs +32 -0
  16. html_to_markdown-2.6.0/crates/html-to-markdown/examples/test_semantic_tags.rs +82 -0
  17. html_to_markdown-2.6.0/crates/html-to-markdown/examples/test_tables.rs +93 -0
  18. html_to_markdown-2.6.0/crates/html-to-markdown/examples/test_task_lists.rs +54 -0
  19. html_to_markdown-2.6.0/crates/html-to-markdown/examples/test_whitespace.rs +27 -0
  20. html_to_markdown-2.6.0/crates/html-to-markdown/src/converter.rs +4997 -0
  21. html_to_markdown-2.6.0/crates/html-to-markdown/src/error.rs +30 -0
  22. html_to_markdown-2.6.0/crates/html-to-markdown/src/hocr/converter.rs +1636 -0
  23. html_to_markdown-2.6.0/crates/html-to-markdown/src/hocr/extractor.rs +231 -0
  24. html_to_markdown-2.6.0/crates/html-to-markdown/src/hocr/mod.rs +30 -0
  25. html_to_markdown-2.6.0/crates/html-to-markdown/src/hocr/parser.rs +352 -0
  26. html_to_markdown-2.6.0/crates/html-to-markdown/src/hocr/spatial.rs +776 -0
  27. html_to_markdown-2.6.0/crates/html-to-markdown/src/hocr/types.rs +198 -0
  28. html_to_markdown-2.6.0/crates/html-to-markdown/src/inline_images.rs +221 -0
  29. html_to_markdown-2.6.0/crates/html-to-markdown/src/lib.rs +114 -0
  30. html_to_markdown-2.6.0/crates/html-to-markdown/src/options.rs +237 -0
  31. html_to_markdown-2.6.0/crates/html-to-markdown/src/sanitizer.rs +284 -0
  32. html_to_markdown-2.6.0/crates/html-to-markdown/src/text.rs +262 -0
  33. html_to_markdown-2.6.0/crates/html-to-markdown/src/wrapper.rs +214 -0
  34. html_to_markdown-2.6.0/crates/html-to-markdown/tests/commonmark_compliance_test.rs +287 -0
  35. html_to_markdown-2.6.0/crates/html-to-markdown/tests/hocr_compliance_test.rs +366 -0
  36. html_to_markdown-2.6.0/crates/html-to-markdown/tests/integration_test.rs +403 -0
  37. html_to_markdown-2.6.0/crates/html-to-markdown-py/Cargo.toml +31 -0
  38. html_to_markdown-2.6.0/crates/html-to-markdown-py/README.md +203 -0
  39. html_to_markdown-2.6.0/crates/html-to-markdown-py/python/html_to_markdown/__init__.py +18 -0
  40. html_to_markdown-2.6.0/crates/html-to-markdown-py/python/html_to_markdown/_html_to_markdown.pyi +107 -0
  41. html_to_markdown-2.6.0/crates/html-to-markdown-py/src/lib.rs +556 -0
  42. html_to_markdown-2.6.0/crates/html-to-markdown-py/uv.lock +8 -0
  43. html_to_markdown-2.6.0/html_to_markdown/__init__.py +52 -0
  44. {html_to_markdown-1.11.0 → html_to_markdown-2.6.0}/html_to_markdown/__main__.py +3 -3
  45. html_to_markdown-2.6.0/html_to_markdown/_rust.pyi +73 -0
  46. html_to_markdown-2.6.0/html_to_markdown/api.py +144 -0
  47. html_to_markdown-2.6.0/html_to_markdown/bin/html-to-markdown +0 -0
  48. html_to_markdown-2.6.0/html_to_markdown/cli.py +3 -0
  49. html_to_markdown-2.6.0/html_to_markdown/cli_proxy.py +142 -0
  50. {html_to_markdown-1.11.0 → html_to_markdown-2.6.0}/html_to_markdown/exceptions.py +35 -1
  51. html_to_markdown-2.6.0/html_to_markdown/options.py +144 -0
  52. html_to_markdown-2.6.0/html_to_markdown/v1_compat.py +193 -0
  53. html_to_markdown-2.6.0/pyproject.toml +60 -0
  54. html_to_markdown-1.11.0/PKG-INFO +0 -545
  55. html_to_markdown-1.11.0/README.md +0 -507
  56. html_to_markdown-1.11.0/html_to_markdown/__init__.py +0 -24
  57. html_to_markdown-1.11.0/html_to_markdown/cli.py +0 -289
  58. html_to_markdown-1.11.0/html_to_markdown/constants.py +0 -22
  59. html_to_markdown-1.11.0/html_to_markdown/converters.py +0 -1141
  60. html_to_markdown-1.11.0/html_to_markdown/preprocessor.py +0 -370
  61. html_to_markdown-1.11.0/html_to_markdown/processing.py +0 -1033
  62. html_to_markdown-1.11.0/html_to_markdown/utils.py +0 -39
  63. html_to_markdown-1.11.0/html_to_markdown/whitespace.py +0 -303
  64. html_to_markdown-1.11.0/html_to_markdown.egg-info/PKG-INFO +0 -545
  65. html_to_markdown-1.11.0/html_to_markdown.egg-info/SOURCES.txt +0 -20
  66. html_to_markdown-1.11.0/html_to_markdown.egg-info/dependency_links.txt +0 -1
  67. html_to_markdown-1.11.0/html_to_markdown.egg-info/entry_points.txt +0 -3
  68. html_to_markdown-1.11.0/html_to_markdown.egg-info/requires.txt +0 -5
  69. html_to_markdown-1.11.0/html_to_markdown.egg-info/top_level.txt +0 -1
  70. html_to_markdown-1.11.0/pyproject.toml +0 -159
  71. html_to_markdown-1.11.0/setup.cfg +0 -4
  72. {html_to_markdown-1.11.0 → html_to_markdown-2.6.0}/html_to_markdown/py.typed +0 -0
@@ -0,0 +1,3155 @@
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 = "aes"
13
+ version = "0.8.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "cipher",
19
+ "cpufeatures",
20
+ ]
21
+
22
+ [[package]]
23
+ name = "aho-corasick"
24
+ version = "1.1.4"
25
+ source = "registry+https://github.com/rust-lang/crates.io-index"
26
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
27
+ dependencies = [
28
+ "memchr",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "ammonia"
33
+ version = "4.1.2"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "17e913097e1a2124b46746c980134e8c954bc17a6a59bb3fde96f088d126dde6"
36
+ dependencies = [
37
+ "cssparser",
38
+ "html5ever",
39
+ "maplit",
40
+ "tendril",
41
+ "url",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anes"
46
+ version = "0.1.6"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
49
+
50
+ [[package]]
51
+ name = "anstream"
52
+ version = "0.6.21"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
55
+ dependencies = [
56
+ "anstyle",
57
+ "anstyle-parse",
58
+ "anstyle-query",
59
+ "anstyle-wincon",
60
+ "colorchoice",
61
+ "is_terminal_polyfill",
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle"
67
+ version = "1.0.13"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
70
+
71
+ [[package]]
72
+ name = "anstyle-parse"
73
+ version = "0.2.7"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
76
+ dependencies = [
77
+ "utf8parse",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "anstyle-query"
82
+ version = "1.1.4"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
85
+ dependencies = [
86
+ "windows-sys 0.60.2",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anstyle-wincon"
91
+ version = "3.0.10"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
94
+ dependencies = [
95
+ "anstyle",
96
+ "once_cell_polyfill",
97
+ "windows-sys 0.60.2",
98
+ ]
99
+
100
+ [[package]]
101
+ name = "anyhow"
102
+ version = "1.0.100"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
105
+
106
+ [[package]]
107
+ name = "arbitrary"
108
+ version = "1.4.2"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
111
+ dependencies = [
112
+ "derive_arbitrary",
113
+ ]
114
+
115
+ [[package]]
116
+ name = "assert_cmd"
117
+ version = "2.1.1"
118
+ source = "registry+https://github.com/rust-lang/crates.io-index"
119
+ checksum = "bcbb6924530aa9e0432442af08bbcafdad182db80d2e560da42a6d442535bf85"
120
+ dependencies = [
121
+ "anstyle",
122
+ "bstr",
123
+ "libc",
124
+ "predicates",
125
+ "predicates-core",
126
+ "predicates-tree",
127
+ "wait-timeout",
128
+ ]
129
+
130
+ [[package]]
131
+ name = "autocfg"
132
+ version = "1.5.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
135
+
136
+ [[package]]
137
+ name = "base64"
138
+ version = "0.22.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
141
+
142
+ [[package]]
143
+ name = "base64ct"
144
+ version = "1.8.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
147
+
148
+ [[package]]
149
+ name = "bindgen"
150
+ version = "0.69.5"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
153
+ dependencies = [
154
+ "bitflags",
155
+ "cexpr",
156
+ "clang-sys",
157
+ "itertools 0.12.1",
158
+ "lazy_static",
159
+ "lazycell",
160
+ "proc-macro2",
161
+ "quote",
162
+ "regex",
163
+ "rustc-hash 1.1.0",
164
+ "shlex",
165
+ "syn",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "bindgen"
170
+ version = "0.72.1"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
173
+ dependencies = [
174
+ "bitflags",
175
+ "cexpr",
176
+ "clang-sys",
177
+ "itertools 0.13.0",
178
+ "log",
179
+ "prettyplease",
180
+ "proc-macro2",
181
+ "quote",
182
+ "regex",
183
+ "rustc-hash 2.1.1",
184
+ "shlex",
185
+ "syn",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "bitflags"
190
+ version = "2.10.0"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
193
+
194
+ [[package]]
195
+ name = "block-buffer"
196
+ version = "0.10.4"
197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
198
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
199
+ dependencies = [
200
+ "generic-array",
201
+ ]
202
+
203
+ [[package]]
204
+ name = "bstr"
205
+ version = "1.12.1"
206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
207
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
208
+ dependencies = [
209
+ "memchr",
210
+ "regex-automata",
211
+ "serde",
212
+ ]
213
+
214
+ [[package]]
215
+ name = "bumpalo"
216
+ version = "3.19.0"
217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
218
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
219
+
220
+ [[package]]
221
+ name = "bytecount"
222
+ version = "0.6.9"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
225
+
226
+ [[package]]
227
+ name = "bytemuck"
228
+ version = "1.24.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "1fbdf580320f38b612e485521afda1ee26d10cc9884efaaa750d383e13e3c5f4"
231
+
232
+ [[package]]
233
+ name = "byteorder-lite"
234
+ version = "0.1.0"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
237
+
238
+ [[package]]
239
+ name = "bytes"
240
+ version = "1.10.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
243
+
244
+ [[package]]
245
+ name = "bzip2"
246
+ version = "0.6.1"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "f3a53fac24f34a81bc9954b5d6cfce0c21e18ec6959f44f56e8e90e4bb7c346c"
249
+ dependencies = [
250
+ "libbz2-rs-sys",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "camino"
255
+ version = "1.2.1"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "276a59bf2b2c967788139340c9f0c5b12d7fd6630315c15c217e559de85d2609"
258
+ dependencies = [
259
+ "serde_core",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "cargo-platform"
264
+ version = "0.1.9"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
267
+ dependencies = [
268
+ "serde",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "cargo_metadata"
273
+ version = "0.14.2"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "4acbb09d9ee8e23699b9634375c72795d095bf268439da88562cf9b501f181fa"
276
+ dependencies = [
277
+ "camino",
278
+ "cargo-platform",
279
+ "semver",
280
+ "serde",
281
+ "serde_json",
282
+ ]
283
+
284
+ [[package]]
285
+ name = "cast"
286
+ version = "0.3.0"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
289
+
290
+ [[package]]
291
+ name = "cc"
292
+ version = "1.2.45"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
295
+ dependencies = [
296
+ "find-msvc-tools",
297
+ "jobserver",
298
+ "libc",
299
+ "shlex",
300
+ ]
301
+
302
+ [[package]]
303
+ name = "cexpr"
304
+ version = "0.6.0"
305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
306
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
307
+ dependencies = [
308
+ "nom",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "cfg-if"
313
+ version = "1.0.4"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
316
+
317
+ [[package]]
318
+ name = "ciborium"
319
+ version = "0.2.2"
320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
321
+ checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
322
+ dependencies = [
323
+ "ciborium-io",
324
+ "ciborium-ll",
325
+ "serde",
326
+ ]
327
+
328
+ [[package]]
329
+ name = "ciborium-io"
330
+ version = "0.2.2"
331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
332
+ checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
333
+
334
+ [[package]]
335
+ name = "ciborium-ll"
336
+ version = "0.2.2"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
339
+ dependencies = [
340
+ "ciborium-io",
341
+ "half",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "cipher"
346
+ version = "0.4.4"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
349
+ dependencies = [
350
+ "crypto-common",
351
+ "inout",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "clang-sys"
356
+ version = "1.8.1"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
359
+ dependencies = [
360
+ "glob",
361
+ "libc",
362
+ "libloading 0.8.9",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "clap"
367
+ version = "4.5.51"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
370
+ dependencies = [
371
+ "clap_builder",
372
+ "clap_derive",
373
+ ]
374
+
375
+ [[package]]
376
+ name = "clap_builder"
377
+ version = "4.5.51"
378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
379
+ checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
380
+ dependencies = [
381
+ "anstream",
382
+ "anstyle",
383
+ "clap_lex",
384
+ "strsim",
385
+ ]
386
+
387
+ [[package]]
388
+ name = "clap_complete"
389
+ version = "4.5.60"
390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
391
+ checksum = "8e602857739c5a4291dfa33b5a298aeac9006185229a700e5810a3ef7272d971"
392
+ dependencies = [
393
+ "clap",
394
+ ]
395
+
396
+ [[package]]
397
+ name = "clap_derive"
398
+ version = "4.5.49"
399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
400
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
401
+ dependencies = [
402
+ "heck",
403
+ "proc-macro2",
404
+ "quote",
405
+ "syn",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "clap_lex"
410
+ version = "0.7.6"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
413
+
414
+ [[package]]
415
+ name = "clap_mangen"
416
+ version = "0.2.31"
417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
418
+ checksum = "439ea63a92086df93893164221ad4f24142086d535b3a0957b9b9bea2dc86301"
419
+ dependencies = [
420
+ "clap",
421
+ "roff",
422
+ ]
423
+
424
+ [[package]]
425
+ name = "color_quant"
426
+ version = "1.1.0"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
429
+
430
+ [[package]]
431
+ name = "colorchoice"
432
+ version = "1.0.4"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
435
+
436
+ [[package]]
437
+ name = "console_error_panic_hook"
438
+ version = "0.1.7"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
441
+ dependencies = [
442
+ "cfg-if",
443
+ "wasm-bindgen",
444
+ ]
445
+
446
+ [[package]]
447
+ name = "constant_time_eq"
448
+ version = "0.3.1"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
451
+
452
+ [[package]]
453
+ name = "convert_case"
454
+ version = "0.8.0"
455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
456
+ checksum = "baaaa0ecca5b51987b9423ccdc971514dd8b0bb7b4060b983d3664dad3f1f89f"
457
+ dependencies = [
458
+ "unicode-segmentation",
459
+ ]
460
+
461
+ [[package]]
462
+ name = "core-foundation"
463
+ version = "0.9.4"
464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
465
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
466
+ dependencies = [
467
+ "core-foundation-sys",
468
+ "libc",
469
+ ]
470
+
471
+ [[package]]
472
+ name = "core-foundation-sys"
473
+ version = "0.8.7"
474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
475
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
476
+
477
+ [[package]]
478
+ name = "cpufeatures"
479
+ version = "0.2.17"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
482
+ dependencies = [
483
+ "libc",
484
+ ]
485
+
486
+ [[package]]
487
+ name = "crc"
488
+ version = "3.3.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
491
+ dependencies = [
492
+ "crc-catalog",
493
+ ]
494
+
495
+ [[package]]
496
+ name = "crc-catalog"
497
+ version = "2.4.0"
498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
499
+ checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
500
+
501
+ [[package]]
502
+ name = "crc32fast"
503
+ version = "1.5.0"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
506
+ dependencies = [
507
+ "cfg-if",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "criterion"
512
+ version = "0.7.0"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928"
515
+ dependencies = [
516
+ "anes",
517
+ "cast",
518
+ "ciborium",
519
+ "clap",
520
+ "criterion-plot",
521
+ "itertools 0.13.0",
522
+ "num-traits",
523
+ "oorandom",
524
+ "plotters",
525
+ "rayon",
526
+ "regex",
527
+ "serde",
528
+ "serde_json",
529
+ "tinytemplate",
530
+ "walkdir",
531
+ ]
532
+
533
+ [[package]]
534
+ name = "criterion-plot"
535
+ version = "0.6.0"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338"
538
+ dependencies = [
539
+ "cast",
540
+ "itertools 0.13.0",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "crossbeam-deque"
545
+ version = "0.8.6"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
548
+ dependencies = [
549
+ "crossbeam-epoch",
550
+ "crossbeam-utils",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "crossbeam-epoch"
555
+ version = "0.9.18"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
558
+ dependencies = [
559
+ "crossbeam-utils",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "crossbeam-utils"
564
+ version = "0.8.21"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
567
+
568
+ [[package]]
569
+ name = "crunchy"
570
+ version = "0.2.4"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
573
+
574
+ [[package]]
575
+ name = "crypto-common"
576
+ version = "0.1.6"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
579
+ dependencies = [
580
+ "generic-array",
581
+ "typenum",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "cssparser"
586
+ version = "0.35.0"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "4e901edd733a1472f944a45116df3f846f54d37e67e68640ac8bb69689aca2aa"
589
+ dependencies = [
590
+ "cssparser-macros",
591
+ "dtoa-short",
592
+ "itoa",
593
+ "phf",
594
+ "smallvec",
595
+ ]
596
+
597
+ [[package]]
598
+ name = "cssparser-macros"
599
+ version = "0.6.1"
600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
601
+ checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
602
+ dependencies = [
603
+ "quote",
604
+ "syn",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "ctor"
609
+ version = "0.6.1"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "3ffc71fcdcdb40d6f087edddf7f8f1f8f79e6cf922f555a9ee8779752d4819bd"
612
+ dependencies = [
613
+ "ctor-proc-macro",
614
+ "dtor",
615
+ ]
616
+
617
+ [[package]]
618
+ name = "ctor-proc-macro"
619
+ version = "0.0.7"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "52560adf09603e58c9a7ee1fe1dcb95a16927b17c127f0ac02d6e768a0e25bc1"
622
+
623
+ [[package]]
624
+ name = "cty"
625
+ version = "0.2.2"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "b365fabc795046672053e29c954733ec3b05e4be654ab130fe8f1f94d7051f35"
628
+
629
+ [[package]]
630
+ name = "darling"
631
+ version = "0.21.3"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
634
+ dependencies = [
635
+ "darling_core",
636
+ "darling_macro",
637
+ ]
638
+
639
+ [[package]]
640
+ name = "darling_core"
641
+ version = "0.21.3"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
644
+ dependencies = [
645
+ "fnv",
646
+ "ident_case",
647
+ "proc-macro2",
648
+ "quote",
649
+ "strsim",
650
+ "syn",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "darling_macro"
655
+ version = "0.21.3"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
658
+ dependencies = [
659
+ "darling_core",
660
+ "quote",
661
+ "syn",
662
+ ]
663
+
664
+ [[package]]
665
+ name = "deflate64"
666
+ version = "0.1.10"
667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
668
+ checksum = "26bf8fc351c5ed29b5c2f0cbbac1b209b74f60ecd62e675a998df72c49af5204"
669
+
670
+ [[package]]
671
+ name = "der"
672
+ version = "0.7.10"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
675
+ dependencies = [
676
+ "pem-rfc7468",
677
+ "zeroize",
678
+ ]
679
+
680
+ [[package]]
681
+ name = "deranged"
682
+ version = "0.5.5"
683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
684
+ checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
685
+ dependencies = [
686
+ "powerfmt",
687
+ ]
688
+
689
+ [[package]]
690
+ name = "derive_arbitrary"
691
+ version = "1.4.2"
692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
693
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
694
+ dependencies = [
695
+ "proc-macro2",
696
+ "quote",
697
+ "syn",
698
+ ]
699
+
700
+ [[package]]
701
+ name = "diff"
702
+ version = "0.1.13"
703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
704
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
705
+
706
+ [[package]]
707
+ name = "difflib"
708
+ version = "0.4.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
711
+
712
+ [[package]]
713
+ name = "digest"
714
+ version = "0.10.7"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
717
+ dependencies = [
718
+ "block-buffer",
719
+ "crypto-common",
720
+ "subtle",
721
+ ]
722
+
723
+ [[package]]
724
+ name = "displaydoc"
725
+ version = "0.2.5"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
728
+ dependencies = [
729
+ "proc-macro2",
730
+ "quote",
731
+ "syn",
732
+ ]
733
+
734
+ [[package]]
735
+ name = "dtoa"
736
+ version = "1.0.10"
737
+ source = "registry+https://github.com/rust-lang/crates.io-index"
738
+ checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
739
+
740
+ [[package]]
741
+ name = "dtoa-short"
742
+ version = "0.3.5"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
745
+ dependencies = [
746
+ "dtoa",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "dtor"
751
+ version = "0.1.1"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "404d02eeb088a82cfd873006cb713fe411306c7d182c344905e101fb1167d301"
754
+ dependencies = [
755
+ "dtor-proc-macro",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "dtor-proc-macro"
760
+ version = "0.0.6"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "f678cf4a922c215c63e0de95eb1ff08a958a81d47e485cf9da1e27bf6305cfa5"
763
+
764
+ [[package]]
765
+ name = "either"
766
+ version = "1.15.0"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
769
+
770
+ [[package]]
771
+ name = "encoding_rs"
772
+ version = "0.8.35"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
775
+ dependencies = [
776
+ "cfg-if",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "equivalent"
781
+ version = "1.0.2"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
784
+
785
+ [[package]]
786
+ name = "errno"
787
+ version = "0.3.14"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
790
+ dependencies = [
791
+ "libc",
792
+ "windows-sys 0.61.2",
793
+ ]
794
+
795
+ [[package]]
796
+ name = "error-chain"
797
+ version = "0.12.4"
798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
799
+ checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
800
+ dependencies = [
801
+ "version_check",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "ext-php-rs"
806
+ version = "0.15.1"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "94962f42ccc5d45651088311de8d8b20be42b42fe522135ee856f81bd886f0fc"
809
+ dependencies = [
810
+ "anyhow",
811
+ "bindgen 0.72.1",
812
+ "bitflags",
813
+ "cc",
814
+ "cfg-if",
815
+ "ext-php-rs-derive",
816
+ "native-tls",
817
+ "once_cell",
818
+ "parking_lot",
819
+ "skeptic",
820
+ "ureq",
821
+ "zip",
822
+ ]
823
+
824
+ [[package]]
825
+ name = "ext-php-rs-derive"
826
+ version = "0.11.4"
827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
828
+ checksum = "16cf7b2c829ca0d0b358c002e77b9aad452b2846bf8c6549c28a43aefbca2046"
829
+ dependencies = [
830
+ "convert_case",
831
+ "darling",
832
+ "itertools 0.14.0",
833
+ "proc-macro2",
834
+ "quote",
835
+ "syn",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "fastrand"
840
+ version = "2.3.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
843
+
844
+ [[package]]
845
+ name = "fdeflate"
846
+ version = "0.3.7"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
849
+ dependencies = [
850
+ "simd-adler32",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "find-msvc-tools"
855
+ version = "0.1.4"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
858
+
859
+ [[package]]
860
+ name = "flate2"
861
+ version = "1.1.5"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
864
+ dependencies = [
865
+ "crc32fast",
866
+ "libz-rs-sys",
867
+ "miniz_oxide",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "float-cmp"
872
+ version = "0.10.0"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
875
+ dependencies = [
876
+ "num-traits",
877
+ ]
878
+
879
+ [[package]]
880
+ name = "fnv"
881
+ version = "1.0.7"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
884
+
885
+ [[package]]
886
+ name = "foreign-types"
887
+ version = "0.3.2"
888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
889
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
890
+ dependencies = [
891
+ "foreign-types-shared",
892
+ ]
893
+
894
+ [[package]]
895
+ name = "foreign-types-shared"
896
+ version = "0.1.1"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
899
+
900
+ [[package]]
901
+ name = "form_urlencoded"
902
+ version = "1.2.2"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
905
+ dependencies = [
906
+ "percent-encoding",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "futf"
911
+ version = "0.1.5"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
914
+ dependencies = [
915
+ "mac",
916
+ "new_debug_unreachable",
917
+ ]
918
+
919
+ [[package]]
920
+ name = "generic-array"
921
+ version = "0.14.9"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
924
+ dependencies = [
925
+ "typenum",
926
+ "version_check",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "getrandom"
931
+ version = "0.3.4"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
934
+ dependencies = [
935
+ "cfg-if",
936
+ "libc",
937
+ "r-efi",
938
+ "wasip2",
939
+ ]
940
+
941
+ [[package]]
942
+ name = "gif"
943
+ version = "0.13.3"
944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
945
+ checksum = "4ae047235e33e2829703574b54fdec96bfbad892062d97fed2f76022287de61b"
946
+ dependencies = [
947
+ "color_quant",
948
+ "weezl",
949
+ ]
950
+
951
+ [[package]]
952
+ name = "glob"
953
+ version = "0.3.3"
954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
955
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
956
+
957
+ [[package]]
958
+ name = "half"
959
+ version = "2.7.1"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
962
+ dependencies = [
963
+ "cfg-if",
964
+ "crunchy",
965
+ "zerocopy",
966
+ ]
967
+
968
+ [[package]]
969
+ name = "hashbrown"
970
+ version = "0.16.0"
971
+ source = "registry+https://github.com/rust-lang/crates.io-index"
972
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
973
+
974
+ [[package]]
975
+ name = "heck"
976
+ version = "0.5.0"
977
+ source = "registry+https://github.com/rust-lang/crates.io-index"
978
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
979
+
980
+ [[package]]
981
+ name = "hmac"
982
+ version = "0.12.1"
983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
984
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
985
+ dependencies = [
986
+ "digest",
987
+ ]
988
+
989
+ [[package]]
990
+ name = "html-escape"
991
+ version = "0.2.13"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
994
+ dependencies = [
995
+ "utf8-width",
996
+ ]
997
+
998
+ [[package]]
999
+ name = "html-to-markdown-cli"
1000
+ version = "2.6.0"
1001
+ dependencies = [
1002
+ "assert_cmd",
1003
+ "clap",
1004
+ "clap_complete",
1005
+ "clap_mangen",
1006
+ "encoding_rs",
1007
+ "html-to-markdown-rs",
1008
+ "predicates",
1009
+ "tempfile",
1010
+ ]
1011
+
1012
+ [[package]]
1013
+ name = "html-to-markdown-node"
1014
+ version = "2.6.0"
1015
+ dependencies = [
1016
+ "html-to-markdown-rs",
1017
+ "mimalloc-rust",
1018
+ "napi",
1019
+ "napi-build",
1020
+ "napi-derive",
1021
+ ]
1022
+
1023
+ [[package]]
1024
+ name = "html-to-markdown-php"
1025
+ version = "2.6.0"
1026
+ dependencies = [
1027
+ "ext-php-rs",
1028
+ "html-to-markdown-rs",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "html-to-markdown-py"
1033
+ version = "2.6.0"
1034
+ dependencies = [
1035
+ "base64",
1036
+ "html-to-markdown-rs",
1037
+ "image",
1038
+ "pyo3",
1039
+ ]
1040
+
1041
+ [[package]]
1042
+ name = "html-to-markdown-rb"
1043
+ version = "2.5.7"
1044
+ dependencies = [
1045
+ "html-to-markdown-rs",
1046
+ "magnus",
1047
+ "pretty_assertions",
1048
+ ]
1049
+
1050
+ [[package]]
1051
+ name = "html-to-markdown-rs"
1052
+ version = "2.6.0"
1053
+ dependencies = [
1054
+ "ammonia",
1055
+ "base64",
1056
+ "criterion",
1057
+ "html-escape",
1058
+ "image",
1059
+ "once_cell",
1060
+ "regex",
1061
+ "serde",
1062
+ "serde_json",
1063
+ "thiserror",
1064
+ "tl",
1065
+ ]
1066
+
1067
+ [[package]]
1068
+ name = "html-to-markdown-wasm"
1069
+ version = "2.6.0"
1070
+ dependencies = [
1071
+ "console_error_panic_hook",
1072
+ "html-to-markdown-rs",
1073
+ "js-sys",
1074
+ "serde",
1075
+ "serde-wasm-bindgen",
1076
+ "wasm-bindgen",
1077
+ "wasm-bindgen-test",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "html5ever"
1082
+ version = "0.35.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "55d958c2f74b664487a2035fe1dadb032c48718a03b63f3ab0b8537db8549ed4"
1085
+ dependencies = [
1086
+ "log",
1087
+ "markup5ever",
1088
+ "match_token",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "http"
1093
+ version = "1.3.1"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1096
+ dependencies = [
1097
+ "bytes",
1098
+ "fnv",
1099
+ "itoa",
1100
+ ]
1101
+
1102
+ [[package]]
1103
+ name = "httparse"
1104
+ version = "1.10.1"
1105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1106
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1107
+
1108
+ [[package]]
1109
+ name = "icu_collections"
1110
+ version = "2.1.1"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1113
+ dependencies = [
1114
+ "displaydoc",
1115
+ "potential_utf",
1116
+ "yoke",
1117
+ "zerofrom",
1118
+ "zerovec",
1119
+ ]
1120
+
1121
+ [[package]]
1122
+ name = "icu_locale_core"
1123
+ version = "2.1.1"
1124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1125
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1126
+ dependencies = [
1127
+ "displaydoc",
1128
+ "litemap",
1129
+ "tinystr",
1130
+ "writeable",
1131
+ "zerovec",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "icu_normalizer"
1136
+ version = "2.1.1"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1139
+ dependencies = [
1140
+ "icu_collections",
1141
+ "icu_normalizer_data",
1142
+ "icu_properties",
1143
+ "icu_provider",
1144
+ "smallvec",
1145
+ "zerovec",
1146
+ ]
1147
+
1148
+ [[package]]
1149
+ name = "icu_normalizer_data"
1150
+ version = "2.1.1"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1153
+
1154
+ [[package]]
1155
+ name = "icu_properties"
1156
+ version = "2.1.1"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
1159
+ dependencies = [
1160
+ "icu_collections",
1161
+ "icu_locale_core",
1162
+ "icu_properties_data",
1163
+ "icu_provider",
1164
+ "zerotrie",
1165
+ "zerovec",
1166
+ ]
1167
+
1168
+ [[package]]
1169
+ name = "icu_properties_data"
1170
+ version = "2.1.1"
1171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1172
+ checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
1173
+
1174
+ [[package]]
1175
+ name = "icu_provider"
1176
+ version = "2.1.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1179
+ dependencies = [
1180
+ "displaydoc",
1181
+ "icu_locale_core",
1182
+ "writeable",
1183
+ "yoke",
1184
+ "zerofrom",
1185
+ "zerotrie",
1186
+ "zerovec",
1187
+ ]
1188
+
1189
+ [[package]]
1190
+ name = "ident_case"
1191
+ version = "1.0.1"
1192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1193
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1194
+
1195
+ [[package]]
1196
+ name = "idna"
1197
+ version = "1.1.0"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1200
+ dependencies = [
1201
+ "idna_adapter",
1202
+ "smallvec",
1203
+ "utf8_iter",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "idna_adapter"
1208
+ version = "1.2.1"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1211
+ dependencies = [
1212
+ "icu_normalizer",
1213
+ "icu_properties",
1214
+ ]
1215
+
1216
+ [[package]]
1217
+ name = "image"
1218
+ version = "0.25.8"
1219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1220
+ checksum = "529feb3e6769d234375c4cf1ee2ce713682b8e76538cb13f9fc23e1400a591e7"
1221
+ dependencies = [
1222
+ "bytemuck",
1223
+ "byteorder-lite",
1224
+ "color_quant",
1225
+ "gif",
1226
+ "image-webp",
1227
+ "moxcms",
1228
+ "num-traits",
1229
+ "png",
1230
+ "zune-core",
1231
+ "zune-jpeg",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "image-webp"
1236
+ version = "0.2.4"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
1239
+ dependencies = [
1240
+ "byteorder-lite",
1241
+ "quick-error",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "indexmap"
1246
+ version = "2.12.0"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1249
+ dependencies = [
1250
+ "equivalent",
1251
+ "hashbrown",
1252
+ ]
1253
+
1254
+ [[package]]
1255
+ name = "indoc"
1256
+ version = "2.0.7"
1257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1258
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1259
+ dependencies = [
1260
+ "rustversion",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "inout"
1265
+ version = "0.1.4"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1268
+ dependencies = [
1269
+ "generic-array",
1270
+ ]
1271
+
1272
+ [[package]]
1273
+ name = "is_terminal_polyfill"
1274
+ version = "1.70.2"
1275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1276
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1277
+
1278
+ [[package]]
1279
+ name = "itertools"
1280
+ version = "0.12.1"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1283
+ dependencies = [
1284
+ "either",
1285
+ ]
1286
+
1287
+ [[package]]
1288
+ name = "itertools"
1289
+ version = "0.13.0"
1290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1291
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
1292
+ dependencies = [
1293
+ "either",
1294
+ ]
1295
+
1296
+ [[package]]
1297
+ name = "itertools"
1298
+ version = "0.14.0"
1299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1300
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1301
+ dependencies = [
1302
+ "either",
1303
+ ]
1304
+
1305
+ [[package]]
1306
+ name = "itoa"
1307
+ version = "1.0.15"
1308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1309
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1310
+
1311
+ [[package]]
1312
+ name = "jobserver"
1313
+ version = "0.1.34"
1314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1315
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1316
+ dependencies = [
1317
+ "getrandom",
1318
+ "libc",
1319
+ ]
1320
+
1321
+ [[package]]
1322
+ name = "js-sys"
1323
+ version = "0.3.82"
1324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1325
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
1326
+ dependencies = [
1327
+ "once_cell",
1328
+ "wasm-bindgen",
1329
+ ]
1330
+
1331
+ [[package]]
1332
+ name = "lazy_static"
1333
+ version = "1.5.0"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1336
+
1337
+ [[package]]
1338
+ name = "lazycell"
1339
+ version = "1.3.0"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1342
+
1343
+ [[package]]
1344
+ name = "libbz2-rs-sys"
1345
+ version = "0.2.2"
1346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1347
+ checksum = "2c4a545a15244c7d945065b5d392b2d2d7f21526fba56ce51467b06ed445e8f7"
1348
+
1349
+ [[package]]
1350
+ name = "libc"
1351
+ version = "0.2.177"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1354
+
1355
+ [[package]]
1356
+ name = "libloading"
1357
+ version = "0.8.9"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1360
+ dependencies = [
1361
+ "cfg-if",
1362
+ "windows-link",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "libloading"
1367
+ version = "0.9.0"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "754ca22de805bb5744484a5b151a9e1a8e837d5dc232c2d7d8c2e3492edc8b60"
1370
+ dependencies = [
1371
+ "cfg-if",
1372
+ "windows-link",
1373
+ ]
1374
+
1375
+ [[package]]
1376
+ name = "libz-rs-sys"
1377
+ version = "0.5.2"
1378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1379
+ checksum = "840db8cf39d9ec4dd794376f38acc40d0fc65eec2a8f484f7fd375b84602becd"
1380
+ dependencies = [
1381
+ "zlib-rs",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "linux-raw-sys"
1386
+ version = "0.11.0"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1389
+
1390
+ [[package]]
1391
+ name = "litemap"
1392
+ version = "0.8.1"
1393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1394
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1395
+
1396
+ [[package]]
1397
+ name = "lock_api"
1398
+ version = "0.4.14"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1401
+ dependencies = [
1402
+ "scopeguard",
1403
+ ]
1404
+
1405
+ [[package]]
1406
+ name = "log"
1407
+ version = "0.4.28"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1410
+
1411
+ [[package]]
1412
+ name = "lzma-rust2"
1413
+ version = "0.13.0"
1414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1415
+ checksum = "c60a23ffb90d527e23192f1246b14746e2f7f071cb84476dd879071696c18a4a"
1416
+ dependencies = [
1417
+ "crc",
1418
+ "sha2",
1419
+ ]
1420
+
1421
+ [[package]]
1422
+ name = "mac"
1423
+ version = "0.1.1"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
1426
+
1427
+ [[package]]
1428
+ name = "magnus"
1429
+ version = "0.9.0"
1430
+ source = "git+https://github.com/matsadler/magnus?rev=f6db11769efb517427bf7f121f9c32e18b059b38#f6db11769efb517427bf7f121f9c32e18b059b38"
1431
+ dependencies = [
1432
+ "magnus-macros",
1433
+ "rb-sys",
1434
+ "rb-sys-env",
1435
+ "seq-macro",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "magnus-macros"
1440
+ version = "0.9.0"
1441
+ source = "git+https://github.com/matsadler/magnus?rev=f6db11769efb517427bf7f121f9c32e18b059b38#f6db11769efb517427bf7f121f9c32e18b059b38"
1442
+ dependencies = [
1443
+ "proc-macro2",
1444
+ "quote",
1445
+ "syn",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "maplit"
1450
+ version = "1.0.2"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "3e2e65a1a2e43cfcb47a895c4c8b10d1f4a61097f9f254f183aee60cad9c651d"
1453
+
1454
+ [[package]]
1455
+ name = "markup5ever"
1456
+ version = "0.35.0"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "311fe69c934650f8f19652b3946075f0fc41ad8757dbb68f1ca14e7900ecc1c3"
1459
+ dependencies = [
1460
+ "log",
1461
+ "tendril",
1462
+ "web_atoms",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "match_token"
1467
+ version = "0.35.0"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "ac84fd3f360fcc43dc5f5d186f02a94192761a080e8bc58621ad4d12296a58cf"
1470
+ dependencies = [
1471
+ "proc-macro2",
1472
+ "quote",
1473
+ "syn",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "memchr"
1478
+ version = "2.7.6"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1481
+
1482
+ [[package]]
1483
+ name = "memoffset"
1484
+ version = "0.9.1"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1487
+ dependencies = [
1488
+ "autocfg",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "mimalloc-rust"
1493
+ version = "0.2.1"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "5eb726c8298efb4010b2c46d8050e4be36cf807b9d9e98cb112f830914fc9bbe"
1496
+ dependencies = [
1497
+ "cty",
1498
+ "mimalloc-rust-sys",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "mimalloc-rust-sys"
1503
+ version = "1.7.9-source"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "6413e13241a9809f291568133eca6694572cf528c1a6175502d090adce5dd5db"
1506
+ dependencies = [
1507
+ "cc",
1508
+ "cty",
1509
+ ]
1510
+
1511
+ [[package]]
1512
+ name = "minicov"
1513
+ version = "0.3.7"
1514
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1515
+ checksum = "f27fe9f1cc3c22e1687f9446c2083c4c5fc7f0bcf1c7a86bdbded14985895b4b"
1516
+ dependencies = [
1517
+ "cc",
1518
+ "walkdir",
1519
+ ]
1520
+
1521
+ [[package]]
1522
+ name = "minimal-lexical"
1523
+ version = "0.2.1"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1526
+
1527
+ [[package]]
1528
+ name = "miniz_oxide"
1529
+ version = "0.8.9"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1532
+ dependencies = [
1533
+ "adler2",
1534
+ "simd-adler32",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "moxcms"
1539
+ version = "0.7.9"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "0fbdd3d7436f8b5e892b8b7ea114271ff0fa00bc5acae845d53b07d498616ef6"
1542
+ dependencies = [
1543
+ "num-traits",
1544
+ "pxfm",
1545
+ ]
1546
+
1547
+ [[package]]
1548
+ name = "napi"
1549
+ version = "3.5.0"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "5d00c1a7ffcf62e0889630f122f8920383f5a9ce4b54377b05c2833fb6123857"
1552
+ dependencies = [
1553
+ "bitflags",
1554
+ "ctor",
1555
+ "napi-build",
1556
+ "napi-sys",
1557
+ "nohash-hasher",
1558
+ "rustc-hash 2.1.1",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "napi-build"
1563
+ version = "2.3.0"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "68064c4cf827376751236ee6785e0e38a6461f83a7a7f227c89f6256f3e96cc2"
1566
+
1567
+ [[package]]
1568
+ name = "napi-derive"
1569
+ version = "3.3.0"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "78665d6bdf10e9a4e6b38123efb0f66962e6197c1aea2f07cff3f159a374696d"
1572
+ dependencies = [
1573
+ "convert_case",
1574
+ "ctor",
1575
+ "napi-derive-backend",
1576
+ "proc-macro2",
1577
+ "quote",
1578
+ "syn",
1579
+ ]
1580
+
1581
+ [[package]]
1582
+ name = "napi-derive-backend"
1583
+ version = "3.0.0"
1584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1585
+ checksum = "42d55d01423e7264de3acc13b258fa48ca7cf38a4d25db848908ec3c1304a85a"
1586
+ dependencies = [
1587
+ "convert_case",
1588
+ "proc-macro2",
1589
+ "quote",
1590
+ "semver",
1591
+ "syn",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "napi-sys"
1596
+ version = "3.1.0"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "6f200fd782433de18d46d496223be780837b2f3772e5816f4425e0520bff26c2"
1599
+ dependencies = [
1600
+ "libloading 0.9.0",
1601
+ ]
1602
+
1603
+ [[package]]
1604
+ name = "native-tls"
1605
+ version = "0.2.14"
1606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1607
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1608
+ dependencies = [
1609
+ "libc",
1610
+ "log",
1611
+ "openssl",
1612
+ "openssl-probe",
1613
+ "openssl-sys",
1614
+ "schannel",
1615
+ "security-framework",
1616
+ "security-framework-sys",
1617
+ "tempfile",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "new_debug_unreachable"
1622
+ version = "1.0.6"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
1625
+
1626
+ [[package]]
1627
+ name = "nohash-hasher"
1628
+ version = "0.2.0"
1629
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1630
+ checksum = "2bf50223579dc7cdcfb3bfcacf7069ff68243f8c363f62ffa99cf000a6b9c451"
1631
+
1632
+ [[package]]
1633
+ name = "nom"
1634
+ version = "7.1.3"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1637
+ dependencies = [
1638
+ "memchr",
1639
+ "minimal-lexical",
1640
+ ]
1641
+
1642
+ [[package]]
1643
+ name = "normalize-line-endings"
1644
+ version = "0.3.0"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1647
+
1648
+ [[package]]
1649
+ name = "num-conv"
1650
+ version = "0.1.0"
1651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1652
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1653
+
1654
+ [[package]]
1655
+ name = "num-traits"
1656
+ version = "0.2.19"
1657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1658
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1659
+ dependencies = [
1660
+ "autocfg",
1661
+ ]
1662
+
1663
+ [[package]]
1664
+ name = "once_cell"
1665
+ version = "1.21.3"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1668
+
1669
+ [[package]]
1670
+ name = "once_cell_polyfill"
1671
+ version = "1.70.2"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1674
+
1675
+ [[package]]
1676
+ name = "oorandom"
1677
+ version = "11.1.5"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
1680
+
1681
+ [[package]]
1682
+ name = "openssl"
1683
+ version = "0.10.74"
1684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1685
+ checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654"
1686
+ dependencies = [
1687
+ "bitflags",
1688
+ "cfg-if",
1689
+ "foreign-types",
1690
+ "libc",
1691
+ "once_cell",
1692
+ "openssl-macros",
1693
+ "openssl-sys",
1694
+ ]
1695
+
1696
+ [[package]]
1697
+ name = "openssl-macros"
1698
+ version = "0.1.1"
1699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1700
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1701
+ dependencies = [
1702
+ "proc-macro2",
1703
+ "quote",
1704
+ "syn",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "openssl-probe"
1709
+ version = "0.1.6"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1712
+
1713
+ [[package]]
1714
+ name = "openssl-sys"
1715
+ version = "0.9.110"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2"
1718
+ dependencies = [
1719
+ "cc",
1720
+ "libc",
1721
+ "pkg-config",
1722
+ "vcpkg",
1723
+ ]
1724
+
1725
+ [[package]]
1726
+ name = "parking_lot"
1727
+ version = "0.12.5"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1730
+ dependencies = [
1731
+ "lock_api",
1732
+ "parking_lot_core",
1733
+ ]
1734
+
1735
+ [[package]]
1736
+ name = "parking_lot_core"
1737
+ version = "0.9.12"
1738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1739
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1740
+ dependencies = [
1741
+ "cfg-if",
1742
+ "libc",
1743
+ "redox_syscall",
1744
+ "smallvec",
1745
+ "windows-link",
1746
+ ]
1747
+
1748
+ [[package]]
1749
+ name = "pbkdf2"
1750
+ version = "0.12.2"
1751
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1752
+ checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
1753
+ dependencies = [
1754
+ "digest",
1755
+ "hmac",
1756
+ ]
1757
+
1758
+ [[package]]
1759
+ name = "pem-rfc7468"
1760
+ version = "0.7.0"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1763
+ dependencies = [
1764
+ "base64ct",
1765
+ ]
1766
+
1767
+ [[package]]
1768
+ name = "percent-encoding"
1769
+ version = "2.3.2"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1772
+
1773
+ [[package]]
1774
+ name = "phf"
1775
+ version = "0.11.3"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1778
+ dependencies = [
1779
+ "phf_macros",
1780
+ "phf_shared",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "phf_codegen"
1785
+ version = "0.11.3"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
1788
+ dependencies = [
1789
+ "phf_generator",
1790
+ "phf_shared",
1791
+ ]
1792
+
1793
+ [[package]]
1794
+ name = "phf_generator"
1795
+ version = "0.11.3"
1796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1797
+ checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
1798
+ dependencies = [
1799
+ "phf_shared",
1800
+ "rand",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "phf_macros"
1805
+ version = "0.11.3"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
1808
+ dependencies = [
1809
+ "phf_generator",
1810
+ "phf_shared",
1811
+ "proc-macro2",
1812
+ "quote",
1813
+ "syn",
1814
+ ]
1815
+
1816
+ [[package]]
1817
+ name = "phf_shared"
1818
+ version = "0.11.3"
1819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1820
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1821
+ dependencies = [
1822
+ "siphasher",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "pkg-config"
1827
+ version = "0.3.32"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1830
+
1831
+ [[package]]
1832
+ name = "plotters"
1833
+ version = "0.3.7"
1834
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1835
+ checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
1836
+ dependencies = [
1837
+ "num-traits",
1838
+ "plotters-backend",
1839
+ "plotters-svg",
1840
+ "wasm-bindgen",
1841
+ "web-sys",
1842
+ ]
1843
+
1844
+ [[package]]
1845
+ name = "plotters-backend"
1846
+ version = "0.3.7"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
1849
+
1850
+ [[package]]
1851
+ name = "plotters-svg"
1852
+ version = "0.3.7"
1853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1854
+ checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
1855
+ dependencies = [
1856
+ "plotters-backend",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "png"
1861
+ version = "0.18.0"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "97baced388464909d42d89643fe4361939af9b7ce7a31ee32a168f832a70f2a0"
1864
+ dependencies = [
1865
+ "bitflags",
1866
+ "crc32fast",
1867
+ "fdeflate",
1868
+ "flate2",
1869
+ "miniz_oxide",
1870
+ ]
1871
+
1872
+ [[package]]
1873
+ name = "portable-atomic"
1874
+ version = "1.11.1"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1877
+
1878
+ [[package]]
1879
+ name = "potential_utf"
1880
+ version = "0.1.4"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1883
+ dependencies = [
1884
+ "zerovec",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "powerfmt"
1889
+ version = "0.2.0"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1892
+
1893
+ [[package]]
1894
+ name = "ppmd-rust"
1895
+ version = "1.3.0"
1896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1897
+ checksum = "d558c559f0450f16f2a27a1f017ef38468c1090c9ce63c8e51366232d53717b4"
1898
+
1899
+ [[package]]
1900
+ name = "precomputed-hash"
1901
+ version = "0.1.1"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
1904
+
1905
+ [[package]]
1906
+ name = "predicates"
1907
+ version = "3.1.3"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "a5d19ee57562043d37e82899fade9a22ebab7be9cef5026b07fda9cdd4293573"
1910
+ dependencies = [
1911
+ "anstyle",
1912
+ "difflib",
1913
+ "float-cmp",
1914
+ "normalize-line-endings",
1915
+ "predicates-core",
1916
+ "regex",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "predicates-core"
1921
+ version = "1.0.9"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "727e462b119fe9c93fd0eb1429a5f7647394014cf3c04ab2c0350eeb09095ffa"
1924
+
1925
+ [[package]]
1926
+ name = "predicates-tree"
1927
+ version = "1.0.12"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "72dd2d6d381dfb73a193c7fca536518d7caee39fc8503f74e7dc0be0531b425c"
1930
+ dependencies = [
1931
+ "predicates-core",
1932
+ "termtree",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "pretty_assertions"
1937
+ version = "1.4.1"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1940
+ dependencies = [
1941
+ "diff",
1942
+ "yansi",
1943
+ ]
1944
+
1945
+ [[package]]
1946
+ name = "prettyplease"
1947
+ version = "0.2.37"
1948
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1949
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1950
+ dependencies = [
1951
+ "proc-macro2",
1952
+ "syn",
1953
+ ]
1954
+
1955
+ [[package]]
1956
+ name = "proc-macro2"
1957
+ version = "1.0.103"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1960
+ dependencies = [
1961
+ "unicode-ident",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "pulldown-cmark"
1966
+ version = "0.9.6"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "57206b407293d2bcd3af849ce869d52068623f19e1b5ff8e8778e3309439682b"
1969
+ dependencies = [
1970
+ "bitflags",
1971
+ "memchr",
1972
+ "unicase",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "pxfm"
1977
+ version = "0.1.25"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "a3cbdf373972bf78df4d3b518d07003938e2c7d1fb5891e55f9cb6df57009d84"
1980
+ dependencies = [
1981
+ "num-traits",
1982
+ ]
1983
+
1984
+ [[package]]
1985
+ name = "pyo3"
1986
+ version = "0.27.1"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "37a6df7eab65fc7bee654a421404947e10a0f7085b6951bf2ea395f4659fb0cf"
1989
+ dependencies = [
1990
+ "indoc",
1991
+ "libc",
1992
+ "memoffset",
1993
+ "once_cell",
1994
+ "portable-atomic",
1995
+ "pyo3-build-config",
1996
+ "pyo3-ffi",
1997
+ "pyo3-macros",
1998
+ "unindent",
1999
+ ]
2000
+
2001
+ [[package]]
2002
+ name = "pyo3-build-config"
2003
+ version = "0.27.1"
2004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2005
+ checksum = "f77d387774f6f6eec64a004eac0ed525aab7fa1966d94b42f743797b3e395afb"
2006
+ dependencies = [
2007
+ "target-lexicon",
2008
+ ]
2009
+
2010
+ [[package]]
2011
+ name = "pyo3-ffi"
2012
+ version = "0.27.1"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "2dd13844a4242793e02df3e2ec093f540d948299a6a77ea9ce7afd8623f542be"
2015
+ dependencies = [
2016
+ "libc",
2017
+ "pyo3-build-config",
2018
+ ]
2019
+
2020
+ [[package]]
2021
+ name = "pyo3-macros"
2022
+ version = "0.27.1"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "eaf8f9f1108270b90d3676b8679586385430e5c0bb78bb5f043f95499c821a71"
2025
+ dependencies = [
2026
+ "proc-macro2",
2027
+ "pyo3-macros-backend",
2028
+ "quote",
2029
+ "syn",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "pyo3-macros-backend"
2034
+ version = "0.27.1"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "70a3b2274450ba5288bc9b8c1b69ff569d1d61189d4bff38f8d22e03d17f932b"
2037
+ dependencies = [
2038
+ "heck",
2039
+ "proc-macro2",
2040
+ "pyo3-build-config",
2041
+ "quote",
2042
+ "syn",
2043
+ ]
2044
+
2045
+ [[package]]
2046
+ name = "quick-error"
2047
+ version = "2.0.1"
2048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2049
+ checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
2050
+
2051
+ [[package]]
2052
+ name = "quote"
2053
+ version = "1.0.42"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2056
+ dependencies = [
2057
+ "proc-macro2",
2058
+ ]
2059
+
2060
+ [[package]]
2061
+ name = "r-efi"
2062
+ version = "5.3.0"
2063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2064
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2065
+
2066
+ [[package]]
2067
+ name = "rand"
2068
+ version = "0.8.5"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2071
+ dependencies = [
2072
+ "rand_core",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "rand_core"
2077
+ version = "0.6.4"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2080
+
2081
+ [[package]]
2082
+ name = "rayon"
2083
+ version = "1.11.0"
2084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2085
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
2086
+ dependencies = [
2087
+ "either",
2088
+ "rayon-core",
2089
+ ]
2090
+
2091
+ [[package]]
2092
+ name = "rayon-core"
2093
+ version = "1.13.0"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
2096
+ dependencies = [
2097
+ "crossbeam-deque",
2098
+ "crossbeam-utils",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "rb-sys"
2103
+ version = "0.9.117"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
2106
+ dependencies = [
2107
+ "rb-sys-build",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "rb-sys-build"
2112
+ version = "0.9.117"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
2115
+ dependencies = [
2116
+ "bindgen 0.69.5",
2117
+ "lazy_static",
2118
+ "proc-macro2",
2119
+ "quote",
2120
+ "regex",
2121
+ "shell-words",
2122
+ "syn",
2123
+ ]
2124
+
2125
+ [[package]]
2126
+ name = "rb-sys-env"
2127
+ version = "0.2.2"
2128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2129
+ checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
2130
+
2131
+ [[package]]
2132
+ name = "redox_syscall"
2133
+ version = "0.5.18"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2136
+ dependencies = [
2137
+ "bitflags",
2138
+ ]
2139
+
2140
+ [[package]]
2141
+ name = "regex"
2142
+ version = "1.12.2"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2145
+ dependencies = [
2146
+ "aho-corasick",
2147
+ "memchr",
2148
+ "regex-automata",
2149
+ "regex-syntax",
2150
+ ]
2151
+
2152
+ [[package]]
2153
+ name = "regex-automata"
2154
+ version = "0.4.13"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2157
+ dependencies = [
2158
+ "aho-corasick",
2159
+ "memchr",
2160
+ "regex-syntax",
2161
+ ]
2162
+
2163
+ [[package]]
2164
+ name = "regex-syntax"
2165
+ version = "0.8.8"
2166
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2167
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2168
+
2169
+ [[package]]
2170
+ name = "roff"
2171
+ version = "0.2.2"
2172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2173
+ checksum = "88f8660c1ff60292143c98d08fc6e2f654d722db50410e3f3797d40baaf9d8f3"
2174
+
2175
+ [[package]]
2176
+ name = "rustc-hash"
2177
+ version = "1.1.0"
2178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2179
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2180
+
2181
+ [[package]]
2182
+ name = "rustc-hash"
2183
+ version = "2.1.1"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2186
+
2187
+ [[package]]
2188
+ name = "rustix"
2189
+ version = "1.1.2"
2190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2191
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2192
+ dependencies = [
2193
+ "bitflags",
2194
+ "errno",
2195
+ "libc",
2196
+ "linux-raw-sys",
2197
+ "windows-sys 0.61.2",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "rustls-pemfile"
2202
+ version = "2.2.0"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2205
+ dependencies = [
2206
+ "rustls-pki-types",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "rustls-pki-types"
2211
+ version = "1.13.0"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
2214
+ dependencies = [
2215
+ "zeroize",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "rustversion"
2220
+ version = "1.0.22"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2223
+
2224
+ [[package]]
2225
+ name = "ryu"
2226
+ version = "1.0.20"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2229
+
2230
+ [[package]]
2231
+ name = "same-file"
2232
+ version = "1.0.6"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2235
+ dependencies = [
2236
+ "winapi-util",
2237
+ ]
2238
+
2239
+ [[package]]
2240
+ name = "schannel"
2241
+ version = "0.1.28"
2242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2243
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2244
+ dependencies = [
2245
+ "windows-sys 0.61.2",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "scopeguard"
2250
+ version = "1.2.0"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2253
+
2254
+ [[package]]
2255
+ name = "security-framework"
2256
+ version = "2.11.1"
2257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2258
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2259
+ dependencies = [
2260
+ "bitflags",
2261
+ "core-foundation",
2262
+ "core-foundation-sys",
2263
+ "libc",
2264
+ "security-framework-sys",
2265
+ ]
2266
+
2267
+ [[package]]
2268
+ name = "security-framework-sys"
2269
+ version = "2.15.0"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2272
+ dependencies = [
2273
+ "core-foundation-sys",
2274
+ "libc",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "semver"
2279
+ version = "1.0.27"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2282
+ dependencies = [
2283
+ "serde",
2284
+ "serde_core",
2285
+ ]
2286
+
2287
+ [[package]]
2288
+ name = "seq-macro"
2289
+ version = "0.3.6"
2290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2291
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2292
+
2293
+ [[package]]
2294
+ name = "serde"
2295
+ version = "1.0.228"
2296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2297
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2298
+ dependencies = [
2299
+ "serde_core",
2300
+ "serde_derive",
2301
+ ]
2302
+
2303
+ [[package]]
2304
+ name = "serde-wasm-bindgen"
2305
+ version = "0.6.5"
2306
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2307
+ checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
2308
+ dependencies = [
2309
+ "js-sys",
2310
+ "serde",
2311
+ "wasm-bindgen",
2312
+ ]
2313
+
2314
+ [[package]]
2315
+ name = "serde_core"
2316
+ version = "1.0.228"
2317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2318
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2319
+ dependencies = [
2320
+ "serde_derive",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "serde_derive"
2325
+ version = "1.0.228"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2328
+ dependencies = [
2329
+ "proc-macro2",
2330
+ "quote",
2331
+ "syn",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "serde_json"
2336
+ version = "1.0.145"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2339
+ dependencies = [
2340
+ "itoa",
2341
+ "memchr",
2342
+ "ryu",
2343
+ "serde",
2344
+ "serde_core",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "sha1"
2349
+ version = "0.10.6"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2352
+ dependencies = [
2353
+ "cfg-if",
2354
+ "cpufeatures",
2355
+ "digest",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "sha2"
2360
+ version = "0.10.9"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2363
+ dependencies = [
2364
+ "cfg-if",
2365
+ "cpufeatures",
2366
+ "digest",
2367
+ ]
2368
+
2369
+ [[package]]
2370
+ name = "shell-words"
2371
+ version = "1.1.0"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
2374
+
2375
+ [[package]]
2376
+ name = "shlex"
2377
+ version = "1.3.0"
2378
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2379
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2380
+
2381
+ [[package]]
2382
+ name = "simd-adler32"
2383
+ version = "0.3.7"
2384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2385
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2386
+
2387
+ [[package]]
2388
+ name = "siphasher"
2389
+ version = "1.0.1"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
2392
+
2393
+ [[package]]
2394
+ name = "skeptic"
2395
+ version = "0.13.7"
2396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2397
+ checksum = "16d23b015676c90a0f01c197bfdc786c20342c73a0afdda9025adb0bc42940a8"
2398
+ dependencies = [
2399
+ "bytecount",
2400
+ "cargo_metadata",
2401
+ "error-chain",
2402
+ "glob",
2403
+ "pulldown-cmark",
2404
+ "tempfile",
2405
+ "walkdir",
2406
+ ]
2407
+
2408
+ [[package]]
2409
+ name = "smallvec"
2410
+ version = "1.15.1"
2411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2412
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2413
+
2414
+ [[package]]
2415
+ name = "stable_deref_trait"
2416
+ version = "1.2.1"
2417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2418
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2419
+
2420
+ [[package]]
2421
+ name = "string_cache"
2422
+ version = "0.8.9"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
2425
+ dependencies = [
2426
+ "new_debug_unreachable",
2427
+ "parking_lot",
2428
+ "phf_shared",
2429
+ "precomputed-hash",
2430
+ "serde",
2431
+ ]
2432
+
2433
+ [[package]]
2434
+ name = "string_cache_codegen"
2435
+ version = "0.5.4"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
2438
+ dependencies = [
2439
+ "phf_generator",
2440
+ "phf_shared",
2441
+ "proc-macro2",
2442
+ "quote",
2443
+ ]
2444
+
2445
+ [[package]]
2446
+ name = "strsim"
2447
+ version = "0.11.1"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2450
+
2451
+ [[package]]
2452
+ name = "subtle"
2453
+ version = "2.6.1"
2454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2455
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2456
+
2457
+ [[package]]
2458
+ name = "syn"
2459
+ version = "2.0.109"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "2f17c7e013e88258aa9543dcbe81aca68a667a9ac37cd69c9fbc07858bfe0e2f"
2462
+ dependencies = [
2463
+ "proc-macro2",
2464
+ "quote",
2465
+ "unicode-ident",
2466
+ ]
2467
+
2468
+ [[package]]
2469
+ name = "synstructure"
2470
+ version = "0.13.2"
2471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2472
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2473
+ dependencies = [
2474
+ "proc-macro2",
2475
+ "quote",
2476
+ "syn",
2477
+ ]
2478
+
2479
+ [[package]]
2480
+ name = "target-lexicon"
2481
+ version = "0.13.3"
2482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2483
+ checksum = "df7f62577c25e07834649fc3b39fafdc597c0a3527dc1c60129201ccfcbaa50c"
2484
+
2485
+ [[package]]
2486
+ name = "tempfile"
2487
+ version = "3.23.0"
2488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2489
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2490
+ dependencies = [
2491
+ "fastrand",
2492
+ "getrandom",
2493
+ "once_cell",
2494
+ "rustix",
2495
+ "windows-sys 0.61.2",
2496
+ ]
2497
+
2498
+ [[package]]
2499
+ name = "tendril"
2500
+ version = "0.4.3"
2501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2502
+ checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
2503
+ dependencies = [
2504
+ "futf",
2505
+ "mac",
2506
+ "utf-8",
2507
+ ]
2508
+
2509
+ [[package]]
2510
+ name = "termtree"
2511
+ version = "0.5.1"
2512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2513
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2514
+
2515
+ [[package]]
2516
+ name = "thiserror"
2517
+ version = "2.0.17"
2518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2519
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2520
+ dependencies = [
2521
+ "thiserror-impl",
2522
+ ]
2523
+
2524
+ [[package]]
2525
+ name = "thiserror-impl"
2526
+ version = "2.0.17"
2527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2528
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2529
+ dependencies = [
2530
+ "proc-macro2",
2531
+ "quote",
2532
+ "syn",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "time"
2537
+ version = "0.3.44"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
2540
+ dependencies = [
2541
+ "deranged",
2542
+ "num-conv",
2543
+ "powerfmt",
2544
+ "serde",
2545
+ "time-core",
2546
+ ]
2547
+
2548
+ [[package]]
2549
+ name = "time-core"
2550
+ version = "0.1.6"
2551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2552
+ checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
2553
+
2554
+ [[package]]
2555
+ name = "tinystr"
2556
+ version = "0.8.2"
2557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2558
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2559
+ dependencies = [
2560
+ "displaydoc",
2561
+ "zerovec",
2562
+ ]
2563
+
2564
+ [[package]]
2565
+ name = "tinytemplate"
2566
+ version = "1.2.1"
2567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2568
+ checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
2569
+ dependencies = [
2570
+ "serde",
2571
+ "serde_json",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "tl"
2576
+ version = "0.7.8"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "b130bd8a58c163224b44e217b4239ca7b927d82bf6cc2fea1fc561d15056e3f7"
2579
+
2580
+ [[package]]
2581
+ name = "typenum"
2582
+ version = "1.19.0"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2585
+
2586
+ [[package]]
2587
+ name = "unicase"
2588
+ version = "2.8.1"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2591
+
2592
+ [[package]]
2593
+ name = "unicode-ident"
2594
+ version = "1.0.22"
2595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2596
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2597
+
2598
+ [[package]]
2599
+ name = "unicode-segmentation"
2600
+ version = "1.12.0"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2603
+
2604
+ [[package]]
2605
+ name = "unindent"
2606
+ version = "0.2.4"
2607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2608
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2609
+
2610
+ [[package]]
2611
+ name = "ureq"
2612
+ version = "3.1.2"
2613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2614
+ checksum = "99ba1025f18a4a3fc3e9b48c868e9beb4f24f4b4b1a325bada26bd4119f46537"
2615
+ dependencies = [
2616
+ "base64",
2617
+ "der",
2618
+ "flate2",
2619
+ "log",
2620
+ "native-tls",
2621
+ "percent-encoding",
2622
+ "rustls-pemfile",
2623
+ "rustls-pki-types",
2624
+ "ureq-proto",
2625
+ "utf-8",
2626
+ "webpki-root-certs",
2627
+ ]
2628
+
2629
+ [[package]]
2630
+ name = "ureq-proto"
2631
+ version = "0.5.2"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "60b4531c118335662134346048ddb0e54cc86bd7e81866757873055f0e38f5d2"
2634
+ dependencies = [
2635
+ "base64",
2636
+ "http",
2637
+ "httparse",
2638
+ "log",
2639
+ ]
2640
+
2641
+ [[package]]
2642
+ name = "url"
2643
+ version = "2.5.7"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2646
+ dependencies = [
2647
+ "form_urlencoded",
2648
+ "idna",
2649
+ "percent-encoding",
2650
+ "serde",
2651
+ ]
2652
+
2653
+ [[package]]
2654
+ name = "utf-8"
2655
+ version = "0.7.6"
2656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2657
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2658
+
2659
+ [[package]]
2660
+ name = "utf8-width"
2661
+ version = "0.1.7"
2662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2663
+ checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
2664
+
2665
+ [[package]]
2666
+ name = "utf8_iter"
2667
+ version = "1.0.4"
2668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2669
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2670
+
2671
+ [[package]]
2672
+ name = "utf8parse"
2673
+ version = "0.2.2"
2674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2675
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2676
+
2677
+ [[package]]
2678
+ name = "vcpkg"
2679
+ version = "0.2.15"
2680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2681
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2682
+
2683
+ [[package]]
2684
+ name = "version_check"
2685
+ version = "0.9.5"
2686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2687
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2688
+
2689
+ [[package]]
2690
+ name = "wait-timeout"
2691
+ version = "0.2.1"
2692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2693
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2694
+ dependencies = [
2695
+ "libc",
2696
+ ]
2697
+
2698
+ [[package]]
2699
+ name = "walkdir"
2700
+ version = "2.5.0"
2701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2702
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2703
+ dependencies = [
2704
+ "same-file",
2705
+ "winapi-util",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "wasip2"
2710
+ version = "1.0.1+wasi-0.2.4"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2713
+ dependencies = [
2714
+ "wit-bindgen",
2715
+ ]
2716
+
2717
+ [[package]]
2718
+ name = "wasm-bindgen"
2719
+ version = "0.2.105"
2720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2721
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
2722
+ dependencies = [
2723
+ "cfg-if",
2724
+ "once_cell",
2725
+ "rustversion",
2726
+ "wasm-bindgen-macro",
2727
+ "wasm-bindgen-shared",
2728
+ ]
2729
+
2730
+ [[package]]
2731
+ name = "wasm-bindgen-futures"
2732
+ version = "0.4.55"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
2735
+ dependencies = [
2736
+ "cfg-if",
2737
+ "js-sys",
2738
+ "once_cell",
2739
+ "wasm-bindgen",
2740
+ "web-sys",
2741
+ ]
2742
+
2743
+ [[package]]
2744
+ name = "wasm-bindgen-macro"
2745
+ version = "0.2.105"
2746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2747
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
2748
+ dependencies = [
2749
+ "quote",
2750
+ "wasm-bindgen-macro-support",
2751
+ ]
2752
+
2753
+ [[package]]
2754
+ name = "wasm-bindgen-macro-support"
2755
+ version = "0.2.105"
2756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2757
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
2758
+ dependencies = [
2759
+ "bumpalo",
2760
+ "proc-macro2",
2761
+ "quote",
2762
+ "syn",
2763
+ "wasm-bindgen-shared",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "wasm-bindgen-shared"
2768
+ version = "0.2.105"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
2771
+ dependencies = [
2772
+ "unicode-ident",
2773
+ ]
2774
+
2775
+ [[package]]
2776
+ name = "wasm-bindgen-test"
2777
+ version = "0.3.55"
2778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2779
+ checksum = "bfc379bfb624eb59050b509c13e77b4eb53150c350db69628141abce842f2373"
2780
+ dependencies = [
2781
+ "js-sys",
2782
+ "minicov",
2783
+ "wasm-bindgen",
2784
+ "wasm-bindgen-futures",
2785
+ "wasm-bindgen-test-macro",
2786
+ ]
2787
+
2788
+ [[package]]
2789
+ name = "wasm-bindgen-test-macro"
2790
+ version = "0.3.55"
2791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2792
+ checksum = "085b2df989e1e6f9620c1311df6c996e83fe16f57792b272ce1e024ac16a90f1"
2793
+ dependencies = [
2794
+ "proc-macro2",
2795
+ "quote",
2796
+ "syn",
2797
+ ]
2798
+
2799
+ [[package]]
2800
+ name = "web-sys"
2801
+ version = "0.3.82"
2802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2803
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
2804
+ dependencies = [
2805
+ "js-sys",
2806
+ "wasm-bindgen",
2807
+ ]
2808
+
2809
+ [[package]]
2810
+ name = "web_atoms"
2811
+ version = "0.1.3"
2812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2813
+ checksum = "57ffde1dc01240bdf9992e3205668b235e59421fd085e8a317ed98da0178d414"
2814
+ dependencies = [
2815
+ "phf",
2816
+ "phf_codegen",
2817
+ "string_cache",
2818
+ "string_cache_codegen",
2819
+ ]
2820
+
2821
+ [[package]]
2822
+ name = "webpki-root-certs"
2823
+ version = "1.0.4"
2824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2825
+ checksum = "ee3e3b5f5e80bc89f30ce8d0343bf4e5f12341c51f3e26cbeecbc7c85443e85b"
2826
+ dependencies = [
2827
+ "rustls-pki-types",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "weezl"
2832
+ version = "0.1.10"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "a751b3277700db47d3e574514de2eced5e54dc8a5436a3bf7a0b248b2cee16f3"
2835
+
2836
+ [[package]]
2837
+ name = "winapi-util"
2838
+ version = "0.1.11"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2841
+ dependencies = [
2842
+ "windows-sys 0.61.2",
2843
+ ]
2844
+
2845
+ [[package]]
2846
+ name = "windows-link"
2847
+ version = "0.2.1"
2848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2849
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2850
+
2851
+ [[package]]
2852
+ name = "windows-sys"
2853
+ version = "0.60.2"
2854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2855
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2856
+ dependencies = [
2857
+ "windows-targets",
2858
+ ]
2859
+
2860
+ [[package]]
2861
+ name = "windows-sys"
2862
+ version = "0.61.2"
2863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2864
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2865
+ dependencies = [
2866
+ "windows-link",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "windows-targets"
2871
+ version = "0.53.5"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2874
+ dependencies = [
2875
+ "windows-link",
2876
+ "windows_aarch64_gnullvm",
2877
+ "windows_aarch64_msvc",
2878
+ "windows_i686_gnu",
2879
+ "windows_i686_gnullvm",
2880
+ "windows_i686_msvc",
2881
+ "windows_x86_64_gnu",
2882
+ "windows_x86_64_gnullvm",
2883
+ "windows_x86_64_msvc",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "windows_aarch64_gnullvm"
2888
+ version = "0.53.1"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2891
+
2892
+ [[package]]
2893
+ name = "windows_aarch64_msvc"
2894
+ version = "0.53.1"
2895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2896
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2897
+
2898
+ [[package]]
2899
+ name = "windows_i686_gnu"
2900
+ version = "0.53.1"
2901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2902
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2903
+
2904
+ [[package]]
2905
+ name = "windows_i686_gnullvm"
2906
+ version = "0.53.1"
2907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2908
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2909
+
2910
+ [[package]]
2911
+ name = "windows_i686_msvc"
2912
+ version = "0.53.1"
2913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2914
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2915
+
2916
+ [[package]]
2917
+ name = "windows_x86_64_gnu"
2918
+ version = "0.53.1"
2919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2920
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2921
+
2922
+ [[package]]
2923
+ name = "windows_x86_64_gnullvm"
2924
+ version = "0.53.1"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2927
+
2928
+ [[package]]
2929
+ name = "windows_x86_64_msvc"
2930
+ version = "0.53.1"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2933
+
2934
+ [[package]]
2935
+ name = "wit-bindgen"
2936
+ version = "0.46.0"
2937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2938
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2939
+
2940
+ [[package]]
2941
+ name = "writeable"
2942
+ version = "0.6.2"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2945
+
2946
+ [[package]]
2947
+ name = "yansi"
2948
+ version = "1.0.1"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
2951
+
2952
+ [[package]]
2953
+ name = "yoke"
2954
+ version = "0.8.1"
2955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2956
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2957
+ dependencies = [
2958
+ "stable_deref_trait",
2959
+ "yoke-derive",
2960
+ "zerofrom",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "yoke-derive"
2965
+ version = "0.8.1"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2968
+ dependencies = [
2969
+ "proc-macro2",
2970
+ "quote",
2971
+ "syn",
2972
+ "synstructure",
2973
+ ]
2974
+
2975
+ [[package]]
2976
+ name = "zerocopy"
2977
+ version = "0.8.27"
2978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2979
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
2980
+ dependencies = [
2981
+ "zerocopy-derive",
2982
+ ]
2983
+
2984
+ [[package]]
2985
+ name = "zerocopy-derive"
2986
+ version = "0.8.27"
2987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2988
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
2989
+ dependencies = [
2990
+ "proc-macro2",
2991
+ "quote",
2992
+ "syn",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "zerofrom"
2997
+ version = "0.1.6"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3000
+ dependencies = [
3001
+ "zerofrom-derive",
3002
+ ]
3003
+
3004
+ [[package]]
3005
+ name = "zerofrom-derive"
3006
+ version = "0.1.6"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3009
+ dependencies = [
3010
+ "proc-macro2",
3011
+ "quote",
3012
+ "syn",
3013
+ "synstructure",
3014
+ ]
3015
+
3016
+ [[package]]
3017
+ name = "zeroize"
3018
+ version = "1.8.2"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3021
+ dependencies = [
3022
+ "zeroize_derive",
3023
+ ]
3024
+
3025
+ [[package]]
3026
+ name = "zeroize_derive"
3027
+ version = "1.4.2"
3028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3029
+ checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
3030
+ dependencies = [
3031
+ "proc-macro2",
3032
+ "quote",
3033
+ "syn",
3034
+ ]
3035
+
3036
+ [[package]]
3037
+ name = "zerotrie"
3038
+ version = "0.2.3"
3039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3040
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3041
+ dependencies = [
3042
+ "displaydoc",
3043
+ "yoke",
3044
+ "zerofrom",
3045
+ ]
3046
+
3047
+ [[package]]
3048
+ name = "zerovec"
3049
+ version = "0.11.5"
3050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3051
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3052
+ dependencies = [
3053
+ "yoke",
3054
+ "zerofrom",
3055
+ "zerovec-derive",
3056
+ ]
3057
+
3058
+ [[package]]
3059
+ name = "zerovec-derive"
3060
+ version = "0.11.2"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3063
+ dependencies = [
3064
+ "proc-macro2",
3065
+ "quote",
3066
+ "syn",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "zip"
3071
+ version = "6.0.0"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "eb2a05c7c36fde6c09b08576c9f7fb4cda705990f73b58fe011abf7dfb24168b"
3074
+ dependencies = [
3075
+ "aes",
3076
+ "arbitrary",
3077
+ "bzip2",
3078
+ "constant_time_eq",
3079
+ "crc32fast",
3080
+ "deflate64",
3081
+ "flate2",
3082
+ "getrandom",
3083
+ "hmac",
3084
+ "indexmap",
3085
+ "lzma-rust2",
3086
+ "memchr",
3087
+ "pbkdf2",
3088
+ "ppmd-rust",
3089
+ "sha1",
3090
+ "time",
3091
+ "zeroize",
3092
+ "zopfli",
3093
+ "zstd",
3094
+ ]
3095
+
3096
+ [[package]]
3097
+ name = "zlib-rs"
3098
+ version = "0.5.2"
3099
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3100
+ checksum = "2f06ae92f42f5e5c42443fd094f245eb656abf56dd7cce9b8b263236565e00f2"
3101
+
3102
+ [[package]]
3103
+ name = "zopfli"
3104
+ version = "0.8.3"
3105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3106
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
3107
+ dependencies = [
3108
+ "bumpalo",
3109
+ "crc32fast",
3110
+ "log",
3111
+ "simd-adler32",
3112
+ ]
3113
+
3114
+ [[package]]
3115
+ name = "zstd"
3116
+ version = "0.13.3"
3117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3118
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3119
+ dependencies = [
3120
+ "zstd-safe",
3121
+ ]
3122
+
3123
+ [[package]]
3124
+ name = "zstd-safe"
3125
+ version = "7.2.4"
3126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3127
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3128
+ dependencies = [
3129
+ "zstd-sys",
3130
+ ]
3131
+
3132
+ [[package]]
3133
+ name = "zstd-sys"
3134
+ version = "2.0.16+zstd.1.5.7"
3135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3136
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3137
+ dependencies = [
3138
+ "cc",
3139
+ "pkg-config",
3140
+ ]
3141
+
3142
+ [[package]]
3143
+ name = "zune-core"
3144
+ version = "0.4.12"
3145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3146
+ checksum = "3f423a2c17029964870cfaabb1f13dfab7d092a62a29a89264f4d36990ca414a"
3147
+
3148
+ [[package]]
3149
+ name = "zune-jpeg"
3150
+ version = "0.4.21"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "29ce2c8a9384ad323cf564b67da86e21d3cfdff87908bc1223ed5c99bc792713"
3153
+ dependencies = [
3154
+ "zune-core",
3155
+ ]