html-to-markdown 3.6.3 → 3.6.6
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.
- checksums.yaml +4 -4
- data/ext/html_to_markdown_rb/Cargo.lock +931 -0
- data/ext/html_to_markdown_rb/Cargo.toml +1 -1
- data/ext/html_to_markdown_rb/native/Cargo.lock +3 -3
- data/ext/html_to_markdown_rb/native/Cargo.toml +2 -2
- data/ext/html_to_markdown_rb/src/lib.rs +1 -1
- data/lib/html_to_markdown/native.rb +1 -1
- data/lib/html_to_markdown/version.rb +2 -2
- data/lib/html_to_markdown.rb +1 -1
- data/lib/html_to_markdown_rb.so +0 -0
- data/sig/types.rbs +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dfbc4d3501b1301fa7b594db1134bfdb3d74d2598701b62d511d5bab758ba9f4
|
|
4
|
+
data.tar.gz: ef5fdf6dd14df428940d55c46f810836bf29e5c1a3c335674532a8eb7abd2d18
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b31741bad0adade08bdf6335bb5d6531e3d9e2a7810192026a5610f4dbe79d86b0062c73bf046215660a965a03b36ead47760634f0b0c838270cb5ce97709f82
|
|
7
|
+
data.tar.gz: c08b44419b8aa9c72dd8392770c6d9897986ecc70ae5cacb6ddb261aaf180ebff315719a3eee77cac7d00dd5baa47e0c3497e2529989a5c1a41a5378fc886393
|
|
@@ -0,0 +1,931 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"const-random",
|
|
19
|
+
"once_cell",
|
|
20
|
+
"version_check",
|
|
21
|
+
"zerocopy",
|
|
22
|
+
]
|
|
23
|
+
|
|
24
|
+
[[package]]
|
|
25
|
+
name = "aho-corasick"
|
|
26
|
+
version = "1.1.4"
|
|
27
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
28
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
29
|
+
dependencies = [
|
|
30
|
+
"memchr",
|
|
31
|
+
]
|
|
32
|
+
|
|
33
|
+
[[package]]
|
|
34
|
+
name = "allocator-api2"
|
|
35
|
+
version = "0.2.21"
|
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
37
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
38
|
+
|
|
39
|
+
[[package]]
|
|
40
|
+
name = "astral-tl"
|
|
41
|
+
version = "0.7.11"
|
|
42
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
43
|
+
checksum = "d90933ffb0f97e2fc2e0de21da9d3f20597b804012d199843a6fe7c2810d28f3"
|
|
44
|
+
dependencies = [
|
|
45
|
+
"memchr",
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
[[package]]
|
|
49
|
+
name = "autocfg"
|
|
50
|
+
version = "1.5.1"
|
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
53
|
+
|
|
54
|
+
[[package]]
|
|
55
|
+
name = "base64"
|
|
56
|
+
version = "0.22.1"
|
|
57
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
58
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
59
|
+
|
|
60
|
+
[[package]]
|
|
61
|
+
name = "bindgen"
|
|
62
|
+
version = "0.72.1"
|
|
63
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
64
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
65
|
+
dependencies = [
|
|
66
|
+
"bitflags",
|
|
67
|
+
"cexpr",
|
|
68
|
+
"clang-sys",
|
|
69
|
+
"itertools",
|
|
70
|
+
"proc-macro2",
|
|
71
|
+
"quote",
|
|
72
|
+
"regex",
|
|
73
|
+
"rustc-hash",
|
|
74
|
+
"shlex",
|
|
75
|
+
"syn",
|
|
76
|
+
]
|
|
77
|
+
|
|
78
|
+
[[package]]
|
|
79
|
+
name = "bitflags"
|
|
80
|
+
version = "2.13.0"
|
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "bytemuck"
|
|
86
|
+
version = "1.25.0"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
89
|
+
|
|
90
|
+
[[package]]
|
|
91
|
+
name = "byteorder-lite"
|
|
92
|
+
version = "0.1.0"
|
|
93
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
94
|
+
checksum = "8f1fe948ff07f4bd06c30984e69f5b4899c516a3ef74f34df92a2df2ab535495"
|
|
95
|
+
|
|
96
|
+
[[package]]
|
|
97
|
+
name = "cexpr"
|
|
98
|
+
version = "0.6.0"
|
|
99
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
101
|
+
dependencies = [
|
|
102
|
+
"nom",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "cfg-if"
|
|
107
|
+
version = "1.0.4"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "clang-sys"
|
|
113
|
+
version = "1.8.1"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
116
|
+
dependencies = [
|
|
117
|
+
"glob",
|
|
118
|
+
"libc",
|
|
119
|
+
"libloading",
|
|
120
|
+
]
|
|
121
|
+
|
|
122
|
+
[[package]]
|
|
123
|
+
name = "color_quant"
|
|
124
|
+
version = "1.1.0"
|
|
125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
126
|
+
checksum = "3d7b894f5411737b7867f4827955924d7c254fc9f4d91a6aad6b097804b1018b"
|
|
127
|
+
|
|
128
|
+
[[package]]
|
|
129
|
+
name = "const-random"
|
|
130
|
+
version = "0.1.18"
|
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
132
|
+
checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
|
|
133
|
+
dependencies = [
|
|
134
|
+
"const-random-macro",
|
|
135
|
+
]
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "const-random-macro"
|
|
139
|
+
version = "0.1.16"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"getrandom",
|
|
144
|
+
"once_cell",
|
|
145
|
+
"tiny-keccak",
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "crc32fast"
|
|
150
|
+
version = "1.5.0"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
153
|
+
dependencies = [
|
|
154
|
+
"cfg-if",
|
|
155
|
+
]
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "crunchy"
|
|
159
|
+
version = "0.2.4"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "either"
|
|
165
|
+
version = "1.16.0"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
168
|
+
|
|
169
|
+
[[package]]
|
|
170
|
+
name = "equivalent"
|
|
171
|
+
version = "1.0.2"
|
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "fastrand"
|
|
177
|
+
version = "2.4.1"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
180
|
+
|
|
181
|
+
[[package]]
|
|
182
|
+
name = "fdeflate"
|
|
183
|
+
version = "0.3.7"
|
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
+
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
186
|
+
dependencies = [
|
|
187
|
+
"simd-adler32",
|
|
188
|
+
]
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "flate2"
|
|
192
|
+
version = "1.1.9"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"crc32fast",
|
|
197
|
+
"miniz_oxide",
|
|
198
|
+
]
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "foldhash"
|
|
202
|
+
version = "0.2.0"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "getrandom"
|
|
208
|
+
version = "0.2.17"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"cfg-if",
|
|
213
|
+
"libc",
|
|
214
|
+
"wasi",
|
|
215
|
+
]
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "gif"
|
|
219
|
+
version = "0.14.2"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "ee8cfcc411d9adbbaba82fb72661cc1bcca13e8bba98b364e62b2dba8f960159"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"color_quant",
|
|
224
|
+
"weezl",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "glob"
|
|
229
|
+
version = "0.3.3"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "hashbrown"
|
|
235
|
+
version = "0.17.1"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"allocator-api2",
|
|
240
|
+
"equivalent",
|
|
241
|
+
"foldhash",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "html-escape"
|
|
246
|
+
version = "0.2.13"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"utf8-width",
|
|
251
|
+
]
|
|
252
|
+
|
|
253
|
+
[[package]]
|
|
254
|
+
name = "html-to-markdown-rb"
|
|
255
|
+
version = "3.6.4"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"html-to-markdown-rs",
|
|
258
|
+
"magnus",
|
|
259
|
+
"serde",
|
|
260
|
+
"serde_json",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "html-to-markdown-rs"
|
|
265
|
+
version = "3.6.4"
|
|
266
|
+
dependencies = [
|
|
267
|
+
"ahash",
|
|
268
|
+
"astral-tl",
|
|
269
|
+
"base64",
|
|
270
|
+
"bitflags",
|
|
271
|
+
"html-escape",
|
|
272
|
+
"html5ever",
|
|
273
|
+
"image",
|
|
274
|
+
"lru",
|
|
275
|
+
"memchr",
|
|
276
|
+
"once_cell",
|
|
277
|
+
"phf",
|
|
278
|
+
"regex",
|
|
279
|
+
"serde",
|
|
280
|
+
"serde_json",
|
|
281
|
+
"thiserror",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "html5ever"
|
|
286
|
+
version = "0.39.0"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"log",
|
|
291
|
+
"markup5ever",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "image"
|
|
296
|
+
version = "0.25.10"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "85ab80394333c02fe689eaf900ab500fbd0c2213da414687ebf995a65d5a6104"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"bytemuck",
|
|
301
|
+
"byteorder-lite",
|
|
302
|
+
"color_quant",
|
|
303
|
+
"gif",
|
|
304
|
+
"image-webp",
|
|
305
|
+
"moxcms",
|
|
306
|
+
"num-traits",
|
|
307
|
+
"png",
|
|
308
|
+
"zune-core",
|
|
309
|
+
"zune-jpeg",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "image-webp"
|
|
314
|
+
version = "0.2.4"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"byteorder-lite",
|
|
319
|
+
"quick-error",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "itertools"
|
|
324
|
+
version = "0.13.0"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"either",
|
|
329
|
+
]
|
|
330
|
+
|
|
331
|
+
[[package]]
|
|
332
|
+
name = "itoa"
|
|
333
|
+
version = "1.0.18"
|
|
334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
335
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
336
|
+
|
|
337
|
+
[[package]]
|
|
338
|
+
name = "lazy_static"
|
|
339
|
+
version = "1.5.0"
|
|
340
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
341
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "libc"
|
|
345
|
+
version = "0.2.186"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "libloading"
|
|
351
|
+
version = "0.8.9"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
354
|
+
dependencies = [
|
|
355
|
+
"cfg-if",
|
|
356
|
+
"windows-link",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "lock_api"
|
|
361
|
+
version = "0.4.14"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"scopeguard",
|
|
366
|
+
]
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "log"
|
|
370
|
+
version = "0.4.32"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "lru"
|
|
376
|
+
version = "0.18.0"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"hashbrown",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "magnus"
|
|
385
|
+
version = "0.8.2"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
388
|
+
dependencies = [
|
|
389
|
+
"magnus-macros",
|
|
390
|
+
"rb-sys",
|
|
391
|
+
"rb-sys-env",
|
|
392
|
+
"seq-macro",
|
|
393
|
+
]
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "magnus-macros"
|
|
397
|
+
version = "0.8.0"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"proc-macro2",
|
|
402
|
+
"quote",
|
|
403
|
+
"syn",
|
|
404
|
+
]
|
|
405
|
+
|
|
406
|
+
[[package]]
|
|
407
|
+
name = "markup5ever"
|
|
408
|
+
version = "0.39.0"
|
|
409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
410
|
+
checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
|
|
411
|
+
dependencies = [
|
|
412
|
+
"log",
|
|
413
|
+
"tendril",
|
|
414
|
+
"web_atoms",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "memchr"
|
|
419
|
+
version = "2.8.2"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
422
|
+
|
|
423
|
+
[[package]]
|
|
424
|
+
name = "minimal-lexical"
|
|
425
|
+
version = "0.2.1"
|
|
426
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
427
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
428
|
+
|
|
429
|
+
[[package]]
|
|
430
|
+
name = "miniz_oxide"
|
|
431
|
+
version = "0.8.9"
|
|
432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
433
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
434
|
+
dependencies = [
|
|
435
|
+
"adler2",
|
|
436
|
+
"simd-adler32",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "moxcms"
|
|
441
|
+
version = "0.8.1"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "bb85c154ba489f01b25c0d36ae69a87e4a1c73a72631fc6c0eb6dde34a73e44b"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"num-traits",
|
|
446
|
+
"pxfm",
|
|
447
|
+
]
|
|
448
|
+
|
|
449
|
+
[[package]]
|
|
450
|
+
name = "new_debug_unreachable"
|
|
451
|
+
version = "1.0.6"
|
|
452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
453
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
454
|
+
|
|
455
|
+
[[package]]
|
|
456
|
+
name = "nom"
|
|
457
|
+
version = "7.1.3"
|
|
458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
459
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
460
|
+
dependencies = [
|
|
461
|
+
"memchr",
|
|
462
|
+
"minimal-lexical",
|
|
463
|
+
]
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "num-traits"
|
|
467
|
+
version = "0.2.19"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"autocfg",
|
|
472
|
+
]
|
|
473
|
+
|
|
474
|
+
[[package]]
|
|
475
|
+
name = "once_cell"
|
|
476
|
+
version = "1.21.4"
|
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
478
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "parking_lot"
|
|
482
|
+
version = "0.12.5"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"lock_api",
|
|
487
|
+
"parking_lot_core",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "parking_lot_core"
|
|
492
|
+
version = "0.9.12"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"cfg-if",
|
|
497
|
+
"libc",
|
|
498
|
+
"redox_syscall",
|
|
499
|
+
"smallvec",
|
|
500
|
+
"windows-link",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "phf"
|
|
505
|
+
version = "0.13.1"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"phf_macros",
|
|
510
|
+
"phf_shared",
|
|
511
|
+
"serde",
|
|
512
|
+
]
|
|
513
|
+
|
|
514
|
+
[[package]]
|
|
515
|
+
name = "phf_codegen"
|
|
516
|
+
version = "0.13.1"
|
|
517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
518
|
+
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
|
519
|
+
dependencies = [
|
|
520
|
+
"phf_generator",
|
|
521
|
+
"phf_shared",
|
|
522
|
+
]
|
|
523
|
+
|
|
524
|
+
[[package]]
|
|
525
|
+
name = "phf_generator"
|
|
526
|
+
version = "0.13.1"
|
|
527
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
528
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
529
|
+
dependencies = [
|
|
530
|
+
"fastrand",
|
|
531
|
+
"phf_shared",
|
|
532
|
+
]
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "phf_macros"
|
|
536
|
+
version = "0.13.1"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
539
|
+
dependencies = [
|
|
540
|
+
"phf_generator",
|
|
541
|
+
"phf_shared",
|
|
542
|
+
"proc-macro2",
|
|
543
|
+
"quote",
|
|
544
|
+
"syn",
|
|
545
|
+
]
|
|
546
|
+
|
|
547
|
+
[[package]]
|
|
548
|
+
name = "phf_shared"
|
|
549
|
+
version = "0.13.1"
|
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
551
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
552
|
+
dependencies = [
|
|
553
|
+
"siphasher",
|
|
554
|
+
]
|
|
555
|
+
|
|
556
|
+
[[package]]
|
|
557
|
+
name = "png"
|
|
558
|
+
version = "0.18.1"
|
|
559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
+
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
561
|
+
dependencies = [
|
|
562
|
+
"bitflags",
|
|
563
|
+
"crc32fast",
|
|
564
|
+
"fdeflate",
|
|
565
|
+
"flate2",
|
|
566
|
+
"miniz_oxide",
|
|
567
|
+
]
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "precomputed-hash"
|
|
571
|
+
version = "0.1.1"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "proc-macro2"
|
|
577
|
+
version = "1.0.106"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
580
|
+
dependencies = [
|
|
581
|
+
"unicode-ident",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "pxfm"
|
|
586
|
+
version = "0.1.29"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "e0c5ccf5294c6ccd63a74f1565028353830a9c2f5eb0c682c355c471726a6e3f"
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "quick-error"
|
|
592
|
+
version = "2.0.1"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "quote"
|
|
598
|
+
version = "1.0.45"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"proc-macro2",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "rb-sys"
|
|
607
|
+
version = "0.9.128"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
610
|
+
dependencies = [
|
|
611
|
+
"rb-sys-build",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "rb-sys-build"
|
|
616
|
+
version = "0.9.128"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"bindgen",
|
|
621
|
+
"lazy_static",
|
|
622
|
+
"proc-macro2",
|
|
623
|
+
"quote",
|
|
624
|
+
"regex",
|
|
625
|
+
"shell-words",
|
|
626
|
+
"syn",
|
|
627
|
+
]
|
|
628
|
+
|
|
629
|
+
[[package]]
|
|
630
|
+
name = "rb-sys-env"
|
|
631
|
+
version = "0.2.3"
|
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
633
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
634
|
+
|
|
635
|
+
[[package]]
|
|
636
|
+
name = "redox_syscall"
|
|
637
|
+
version = "0.5.18"
|
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
639
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
640
|
+
dependencies = [
|
|
641
|
+
"bitflags",
|
|
642
|
+
]
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "regex"
|
|
646
|
+
version = "1.12.4"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"aho-corasick",
|
|
651
|
+
"memchr",
|
|
652
|
+
"regex-automata",
|
|
653
|
+
"regex-syntax",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "regex-automata"
|
|
658
|
+
version = "0.4.14"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"aho-corasick",
|
|
663
|
+
"memchr",
|
|
664
|
+
"regex-syntax",
|
|
665
|
+
]
|
|
666
|
+
|
|
667
|
+
[[package]]
|
|
668
|
+
name = "regex-syntax"
|
|
669
|
+
version = "0.8.11"
|
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
671
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
672
|
+
|
|
673
|
+
[[package]]
|
|
674
|
+
name = "rustc-hash"
|
|
675
|
+
version = "2.1.2"
|
|
676
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
677
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
678
|
+
|
|
679
|
+
[[package]]
|
|
680
|
+
name = "scopeguard"
|
|
681
|
+
version = "1.2.0"
|
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
683
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
684
|
+
|
|
685
|
+
[[package]]
|
|
686
|
+
name = "seq-macro"
|
|
687
|
+
version = "0.3.6"
|
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
690
|
+
|
|
691
|
+
[[package]]
|
|
692
|
+
name = "serde"
|
|
693
|
+
version = "1.0.228"
|
|
694
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
695
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
696
|
+
dependencies = [
|
|
697
|
+
"serde_core",
|
|
698
|
+
"serde_derive",
|
|
699
|
+
]
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "serde_core"
|
|
703
|
+
version = "1.0.228"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
706
|
+
dependencies = [
|
|
707
|
+
"serde_derive",
|
|
708
|
+
]
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "serde_derive"
|
|
712
|
+
version = "1.0.228"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"proc-macro2",
|
|
717
|
+
"quote",
|
|
718
|
+
"syn",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "serde_json"
|
|
723
|
+
version = "1.0.150"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"itoa",
|
|
728
|
+
"memchr",
|
|
729
|
+
"serde",
|
|
730
|
+
"serde_core",
|
|
731
|
+
"zmij",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "shell-words"
|
|
736
|
+
version = "1.1.1"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "shlex"
|
|
742
|
+
version = "1.3.0"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "simd-adler32"
|
|
748
|
+
version = "0.3.9"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "siphasher"
|
|
754
|
+
version = "1.0.3"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "smallvec"
|
|
760
|
+
version = "1.15.2"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "string_cache"
|
|
766
|
+
version = "0.9.0"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
|
769
|
+
dependencies = [
|
|
770
|
+
"new_debug_unreachable",
|
|
771
|
+
"parking_lot",
|
|
772
|
+
"phf_shared",
|
|
773
|
+
"precomputed-hash",
|
|
774
|
+
]
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "string_cache_codegen"
|
|
778
|
+
version = "0.6.1"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"phf_generator",
|
|
783
|
+
"phf_shared",
|
|
784
|
+
"proc-macro2",
|
|
785
|
+
"quote",
|
|
786
|
+
]
|
|
787
|
+
|
|
788
|
+
[[package]]
|
|
789
|
+
name = "syn"
|
|
790
|
+
version = "2.0.117"
|
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
793
|
+
dependencies = [
|
|
794
|
+
"proc-macro2",
|
|
795
|
+
"quote",
|
|
796
|
+
"unicode-ident",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "tendril"
|
|
801
|
+
version = "0.5.0"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
|
|
804
|
+
dependencies = [
|
|
805
|
+
"new_debug_unreachable",
|
|
806
|
+
"utf-8",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "thiserror"
|
|
811
|
+
version = "2.0.18"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"thiserror-impl",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "thiserror-impl"
|
|
820
|
+
version = "2.0.18"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"proc-macro2",
|
|
825
|
+
"quote",
|
|
826
|
+
"syn",
|
|
827
|
+
]
|
|
828
|
+
|
|
829
|
+
[[package]]
|
|
830
|
+
name = "tiny-keccak"
|
|
831
|
+
version = "2.0.2"
|
|
832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
833
|
+
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
834
|
+
dependencies = [
|
|
835
|
+
"crunchy",
|
|
836
|
+
]
|
|
837
|
+
|
|
838
|
+
[[package]]
|
|
839
|
+
name = "unicode-ident"
|
|
840
|
+
version = "1.0.24"
|
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
842
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "utf-8"
|
|
846
|
+
version = "0.7.6"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "utf8-width"
|
|
852
|
+
version = "0.1.8"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "version_check"
|
|
858
|
+
version = "0.9.5"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
861
|
+
|
|
862
|
+
[[package]]
|
|
863
|
+
name = "wasi"
|
|
864
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
867
|
+
|
|
868
|
+
[[package]]
|
|
869
|
+
name = "web_atoms"
|
|
870
|
+
version = "0.2.4"
|
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
+
checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538"
|
|
873
|
+
dependencies = [
|
|
874
|
+
"phf",
|
|
875
|
+
"phf_codegen",
|
|
876
|
+
"string_cache",
|
|
877
|
+
"string_cache_codegen",
|
|
878
|
+
]
|
|
879
|
+
|
|
880
|
+
[[package]]
|
|
881
|
+
name = "weezl"
|
|
882
|
+
version = "0.1.12"
|
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
884
|
+
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "windows-link"
|
|
888
|
+
version = "0.2.1"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "zerocopy"
|
|
894
|
+
version = "0.8.52"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"zerocopy-derive",
|
|
899
|
+
]
|
|
900
|
+
|
|
901
|
+
[[package]]
|
|
902
|
+
name = "zerocopy-derive"
|
|
903
|
+
version = "0.8.52"
|
|
904
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
905
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
906
|
+
dependencies = [
|
|
907
|
+
"proc-macro2",
|
|
908
|
+
"quote",
|
|
909
|
+
"syn",
|
|
910
|
+
]
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "zmij"
|
|
914
|
+
version = "1.0.21"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "zune-core"
|
|
920
|
+
version = "0.5.1"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "zune-jpeg"
|
|
926
|
+
version = "0.5.15"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
929
|
+
dependencies = [
|
|
930
|
+
"zune-core",
|
|
931
|
+
]
|
|
@@ -263,7 +263,7 @@ dependencies = [
|
|
|
263
263
|
|
|
264
264
|
[[package]]
|
|
265
265
|
name = "html-to-markdown-rb"
|
|
266
|
-
version = "3.6.
|
|
266
|
+
version = "3.6.6"
|
|
267
267
|
dependencies = [
|
|
268
268
|
"async-trait",
|
|
269
269
|
"html-to-markdown-rs",
|
|
@@ -276,9 +276,9 @@ dependencies = [
|
|
|
276
276
|
|
|
277
277
|
[[package]]
|
|
278
278
|
name = "html-to-markdown-rs"
|
|
279
|
-
version = "3.6.
|
|
279
|
+
version = "3.6.6"
|
|
280
280
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
-
checksum = "
|
|
281
|
+
checksum = "13751729e89f857f4ef7de63c40a77ab19a37dcbaf41f5acae53abf1a485cd24"
|
|
282
282
|
dependencies = [
|
|
283
283
|
"ahash",
|
|
284
284
|
"astral-tl",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "html-to-markdown-rb"
|
|
3
|
-
version = "3.6.
|
|
3
|
+
version = "3.6.6"
|
|
4
4
|
edition = "2024"
|
|
5
5
|
license = "MIT"
|
|
6
6
|
description = "High-performance HTML to Markdown converter"
|
|
@@ -18,7 +18,7 @@ crate-type = ["cdylib"]
|
|
|
18
18
|
|
|
19
19
|
[dependencies]
|
|
20
20
|
async-trait = "0.1"
|
|
21
|
-
html-to-markdown-rs = { version = "3.6.
|
|
21
|
+
html-to-markdown-rs = { version = "3.6.6", features = ["serde", "metadata", "visitor", "inline-images", "testkit"] }
|
|
22
22
|
magnus = "0.8"
|
|
23
23
|
rb-sys = ">=0.9, <0.9.128"
|
|
24
24
|
serde = { version = "1", features = ["derive"] }
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated by alef. DO NOT EDIT.
|
|
2
|
-
// alef:hash:
|
|
2
|
+
// alef:hash:7ec5946352861a11e445057764103adbeadf9018111b356bc6ea8d344f35d3b8
|
|
3
3
|
// Re-generate with: alef generate
|
|
4
4
|
#![allow(dead_code, unused_imports, unused_variables)]
|
|
5
5
|
#![allow(
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:7ec5946352861a11e445057764103adbeadf9018111b356bc6ea8d344f35d3b8
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# frozen_string_literal: true
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:7ec5946352861a11e445057764103adbeadf9018111b356bc6ea8d344f35d3b8
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# frozen_string_literal: true
|
|
6
6
|
|
|
7
7
|
module HtmlToMarkdown
|
|
8
8
|
## The version string for this package.
|
|
9
|
-
VERSION = "3.6.
|
|
9
|
+
VERSION = "3.6.6"
|
|
10
10
|
end
|
data/lib/html_to_markdown.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:7ec5946352861a11e445057764103adbeadf9018111b356bc6ea8d344f35d3b8
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
# frozen_string_literal: true
|
data/lib/html_to_markdown_rb.so
CHANGED
|
Binary file
|
data/sig/types.rbs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file is auto-generated by alef — DO NOT EDIT.
|
|
2
|
-
# alef:hash:
|
|
2
|
+
# alef:hash:7ec5946352861a11e445057764103adbeadf9018111b356bc6ea8d344f35d3b8
|
|
3
3
|
# To regenerate: alef generate
|
|
4
4
|
# To verify freshness: alef verify --exit-code
|
|
5
5
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: html-to-markdown
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.6.
|
|
4
|
+
version: 3.6.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Na'aman Hirschfeld <naaman@kreuzberg.dev>
|
|
@@ -54,6 +54,7 @@ files:
|
|
|
54
54
|
- LICENSE
|
|
55
55
|
- README.md
|
|
56
56
|
- Steepfile
|
|
57
|
+
- ext/html_to_markdown_rb/Cargo.lock
|
|
57
58
|
- ext/html_to_markdown_rb/Cargo.toml
|
|
58
59
|
- ext/html_to_markdown_rb/extconf.rb
|
|
59
60
|
- ext/html_to_markdown_rb/native/Cargo.lock
|