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

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