html-to-markdown 3.1.0 → 3.2.1
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/.rubocop.yml +42 -12
- data/Gemfile +1 -0
- data/Gemfile.lock +27 -55
- data/README.md +9 -10
- data/Rakefile +4 -10
- data/ext/html-to-markdown_rb/Cargo.toml +14 -0
- data/ext/html_to_markdown_rb/Cargo.toml +16 -0
- data/ext/html_to_markdown_rb/extconf.rb +10 -0
- data/ext/html_to_markdown_rb/src/html_to_markdown_rs/version.rb +6 -0
- data/ext/html_to_markdown_rb/src/html_to_markdown_rs.rb +9 -0
- data/ext/html_to_markdown_rb/src/lib.rs +3941 -0
- data/html-to-markdown-rb.gemspec +1 -1
- data/lib/html_to_markdown/version.rb +1 -1
- data/lib/html_to_markdown.rb +31 -21
- data/{ext/html-to-markdown-rb/native/extconf.rb → lib/html_to_markdown_rs.rb} +1 -1
- data/sig/html_to_markdown.rbs +17 -5
- data/vendor/Cargo.toml +4 -4
- data/vendor/html-to-markdown-rs/Cargo.toml +2 -2
- data/vendor/html-to-markdown-rs/examples/test_deser.rs +12 -0
- data/vendor/html-to-markdown-rs/src/converter/block/mod.rs +1 -1
- data/vendor/html-to-markdown-rs/src/converter/block/table/mod.rs +1 -1
- data/vendor/html-to-markdown-rs/src/converter/form/mod.rs +1 -1
- data/vendor/html-to-markdown-rs/src/converter/inline/mod.rs +1 -1
- data/vendor/html-to-markdown-rs/src/converter/list/item.rs +10 -2
- data/vendor/html-to-markdown-rs/src/converter/mod.rs +2 -2
- data/vendor/html-to-markdown-rs/src/converter/semantic/mod.rs +1 -1
- data/vendor/html-to-markdown-rs/src/converter/utility/content.rs +1 -1
- data/vendor/html-to-markdown-rs/src/exports.rs +3 -3
- data/vendor/html-to-markdown-rs/src/inline_images.rs +1 -1
- data/vendor/html-to-markdown-rs/src/lib.rs +1 -2
- data/vendor/html-to-markdown-rs/src/metadata/config.rs +1 -1
- data/vendor/html-to-markdown-rs/src/metadata/mod.rs +5 -5
- data/vendor/html-to-markdown-rs/src/options/conversion.rs +6 -12
- data/vendor/html-to-markdown-rs/src/options/mod.rs +1 -1
- data/vendor/html-to-markdown-rs/src/options/preprocessing.rs +3 -9
- data/vendor/html-to-markdown-rs/src/options/validation.rs +3 -3
- data/vendor/html-to-markdown-rs/src/types/document.rs +11 -0
- data/vendor/html-to-markdown-rs/src/types/result.rs +5 -2
- data/vendor/html-to-markdown-rs/src/types/tables.rs +1 -1
- data/vendor/html-to-markdown-rs/src/visitor/mod.rs +1 -1
- data/vendor/html-to-markdown-rs/src/visitor_helpers/helpers/state.rs +1 -1
- data/vendor/html-to-markdown-rs/src/visitor_helpers/helpers/traversal.rs +1 -1
- data/vendor/html-to-markdown-rs/src/visitor_helpers.rs +8 -8
- data/vendor/html-to-markdown-rs/tests/commonmark_compliance_test.rs +6 -0
- data/vendor/html-to-markdown-rs/tests/integration_test.rs +3 -3
- data/vendor/html-to-markdown-rs/tests/issue_140_regressions.rs +8 -2
- data/vendor/html-to-markdown-rs/tests/lists_test.rs +4 -4
- metadata +11 -18
- data/ext/html-to-markdown-rb/extconf.rb +0 -41
- data/ext/html-to-markdown-rb/native/Cargo.lock +0 -934
- data/ext/html-to-markdown-rb/native/Cargo.toml +0 -48
- data/ext/html-to-markdown-rb/native/README.md +0 -215
- data/ext/html-to-markdown-rb/native/src/conversion/inline_images.rs +0 -54
- data/ext/html-to-markdown-rb/native/src/conversion/metadata.rs +0 -158
- data/ext/html-to-markdown-rb/native/src/conversion/mod.rs +0 -11
- data/ext/html-to-markdown-rb/native/src/lib.rs +0 -128
- data/ext/html-to-markdown-rb/native/src/options.rs +0 -238
- data/ext/html-to-markdown-rb/native/src/types.rs +0 -24
- data/lib/html_to_markdown/cli.rb +0 -21
- data/lib/html_to_markdown/cli_proxy.rb +0 -74
- data/spec/cli_proxy_spec.rb +0 -42
- data/spec/spec_helper.rb +0 -10
|
@@ -1,934 +0,0 @@
|
|
|
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.0"
|
|
51
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
52
|
-
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
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.11.0"
|
|
81
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
82
|
-
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
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 = "diff"
|
|
165
|
-
version = "0.1.13"
|
|
166
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
-
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
168
|
-
|
|
169
|
-
[[package]]
|
|
170
|
-
name = "either"
|
|
171
|
-
version = "1.15.0"
|
|
172
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
173
|
-
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
174
|
-
|
|
175
|
-
[[package]]
|
|
176
|
-
name = "equivalent"
|
|
177
|
-
version = "1.0.2"
|
|
178
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
-
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
180
|
-
|
|
181
|
-
[[package]]
|
|
182
|
-
name = "fastrand"
|
|
183
|
-
version = "2.3.0"
|
|
184
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
185
|
-
checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
|
|
186
|
-
|
|
187
|
-
[[package]]
|
|
188
|
-
name = "fdeflate"
|
|
189
|
-
version = "0.3.7"
|
|
190
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
191
|
-
checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c"
|
|
192
|
-
dependencies = [
|
|
193
|
-
"simd-adler32",
|
|
194
|
-
]
|
|
195
|
-
|
|
196
|
-
[[package]]
|
|
197
|
-
name = "flate2"
|
|
198
|
-
version = "1.1.9"
|
|
199
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
-
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
201
|
-
dependencies = [
|
|
202
|
-
"crc32fast",
|
|
203
|
-
"miniz_oxide",
|
|
204
|
-
]
|
|
205
|
-
|
|
206
|
-
[[package]]
|
|
207
|
-
name = "foldhash"
|
|
208
|
-
version = "0.2.0"
|
|
209
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
-
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
211
|
-
|
|
212
|
-
[[package]]
|
|
213
|
-
name = "getrandom"
|
|
214
|
-
version = "0.2.17"
|
|
215
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
-
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
217
|
-
dependencies = [
|
|
218
|
-
"cfg-if",
|
|
219
|
-
"libc",
|
|
220
|
-
"wasi",
|
|
221
|
-
]
|
|
222
|
-
|
|
223
|
-
[[package]]
|
|
224
|
-
name = "gif"
|
|
225
|
-
version = "0.14.1"
|
|
226
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
-
checksum = "f5df2ba84018d80c213569363bdcd0c64e6933c67fe4c1d60ecf822971a3c35e"
|
|
228
|
-
dependencies = [
|
|
229
|
-
"color_quant",
|
|
230
|
-
"weezl",
|
|
231
|
-
]
|
|
232
|
-
|
|
233
|
-
[[package]]
|
|
234
|
-
name = "glob"
|
|
235
|
-
version = "0.3.3"
|
|
236
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
-
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
238
|
-
|
|
239
|
-
[[package]]
|
|
240
|
-
name = "hashbrown"
|
|
241
|
-
version = "0.16.1"
|
|
242
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
-
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
244
|
-
dependencies = [
|
|
245
|
-
"allocator-api2",
|
|
246
|
-
"equivalent",
|
|
247
|
-
"foldhash",
|
|
248
|
-
]
|
|
249
|
-
|
|
250
|
-
[[package]]
|
|
251
|
-
name = "html-escape"
|
|
252
|
-
version = "0.2.13"
|
|
253
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
-
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
|
255
|
-
dependencies = [
|
|
256
|
-
"utf8-width",
|
|
257
|
-
]
|
|
258
|
-
|
|
259
|
-
[[package]]
|
|
260
|
-
name = "html-to-markdown-rb"
|
|
261
|
-
version = "3.0.1"
|
|
262
|
-
dependencies = [
|
|
263
|
-
"html-to-markdown-rs",
|
|
264
|
-
"magnus",
|
|
265
|
-
"pretty_assertions",
|
|
266
|
-
]
|
|
267
|
-
|
|
268
|
-
[[package]]
|
|
269
|
-
name = "html-to-markdown-rs"
|
|
270
|
-
version = "3.0.1"
|
|
271
|
-
dependencies = [
|
|
272
|
-
"ahash",
|
|
273
|
-
"astral-tl",
|
|
274
|
-
"base64",
|
|
275
|
-
"html-escape",
|
|
276
|
-
"html5ever",
|
|
277
|
-
"image",
|
|
278
|
-
"lru",
|
|
279
|
-
"memchr",
|
|
280
|
-
"once_cell",
|
|
281
|
-
"regex",
|
|
282
|
-
"serde",
|
|
283
|
-
"serde_json",
|
|
284
|
-
"thiserror",
|
|
285
|
-
]
|
|
286
|
-
|
|
287
|
-
[[package]]
|
|
288
|
-
name = "html5ever"
|
|
289
|
-
version = "0.39.0"
|
|
290
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
-
checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
|
|
292
|
-
dependencies = [
|
|
293
|
-
"log",
|
|
294
|
-
"markup5ever",
|
|
295
|
-
]
|
|
296
|
-
|
|
297
|
-
[[package]]
|
|
298
|
-
name = "image"
|
|
299
|
-
version = "0.25.9"
|
|
300
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
-
checksum = "e6506c6c10786659413faa717ceebcb8f70731c0a60cbae39795fdf114519c1a"
|
|
302
|
-
dependencies = [
|
|
303
|
-
"bytemuck",
|
|
304
|
-
"byteorder-lite",
|
|
305
|
-
"color_quant",
|
|
306
|
-
"gif",
|
|
307
|
-
"image-webp",
|
|
308
|
-
"moxcms",
|
|
309
|
-
"num-traits",
|
|
310
|
-
"png",
|
|
311
|
-
"zune-core",
|
|
312
|
-
"zune-jpeg",
|
|
313
|
-
]
|
|
314
|
-
|
|
315
|
-
[[package]]
|
|
316
|
-
name = "image-webp"
|
|
317
|
-
version = "0.2.4"
|
|
318
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "525e9ff3e1a4be2fbea1fdf0e98686a6d98b4d8f937e1bf7402245af1909e8c3"
|
|
320
|
-
dependencies = [
|
|
321
|
-
"byteorder-lite",
|
|
322
|
-
"quick-error",
|
|
323
|
-
]
|
|
324
|
-
|
|
325
|
-
[[package]]
|
|
326
|
-
name = "itertools"
|
|
327
|
-
version = "0.13.0"
|
|
328
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
-
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
330
|
-
dependencies = [
|
|
331
|
-
"either",
|
|
332
|
-
]
|
|
333
|
-
|
|
334
|
-
[[package]]
|
|
335
|
-
name = "itoa"
|
|
336
|
-
version = "1.0.18"
|
|
337
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
339
|
-
|
|
340
|
-
[[package]]
|
|
341
|
-
name = "lazy_static"
|
|
342
|
-
version = "1.5.0"
|
|
343
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
344
|
-
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
345
|
-
|
|
346
|
-
[[package]]
|
|
347
|
-
name = "libc"
|
|
348
|
-
version = "0.2.183"
|
|
349
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
-
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
351
|
-
|
|
352
|
-
[[package]]
|
|
353
|
-
name = "libloading"
|
|
354
|
-
version = "0.8.9"
|
|
355
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
-
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
357
|
-
dependencies = [
|
|
358
|
-
"cfg-if",
|
|
359
|
-
"windows-link",
|
|
360
|
-
]
|
|
361
|
-
|
|
362
|
-
[[package]]
|
|
363
|
-
name = "lock_api"
|
|
364
|
-
version = "0.4.14"
|
|
365
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
-
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
367
|
-
dependencies = [
|
|
368
|
-
"scopeguard",
|
|
369
|
-
]
|
|
370
|
-
|
|
371
|
-
[[package]]
|
|
372
|
-
name = "log"
|
|
373
|
-
version = "0.4.29"
|
|
374
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
-
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
376
|
-
|
|
377
|
-
[[package]]
|
|
378
|
-
name = "lru"
|
|
379
|
-
version = "0.16.3"
|
|
380
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
|
-
checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
|
|
382
|
-
dependencies = [
|
|
383
|
-
"hashbrown",
|
|
384
|
-
]
|
|
385
|
-
|
|
386
|
-
[[package]]
|
|
387
|
-
name = "magnus"
|
|
388
|
-
version = "0.9.0"
|
|
389
|
-
source = "git+https://github.com/matsadler/magnus?rev=f6db11769efb517427bf7f121f9c32e18b059b38#f6db11769efb517427bf7f121f9c32e18b059b38"
|
|
390
|
-
dependencies = [
|
|
391
|
-
"magnus-macros",
|
|
392
|
-
"rb-sys",
|
|
393
|
-
"rb-sys-env",
|
|
394
|
-
"seq-macro",
|
|
395
|
-
]
|
|
396
|
-
|
|
397
|
-
[[package]]
|
|
398
|
-
name = "magnus-macros"
|
|
399
|
-
version = "0.9.0"
|
|
400
|
-
source = "git+https://github.com/matsadler/magnus?rev=f6db11769efb517427bf7f121f9c32e18b059b38#f6db11769efb517427bf7f121f9c32e18b059b38"
|
|
401
|
-
dependencies = [
|
|
402
|
-
"proc-macro2",
|
|
403
|
-
"quote",
|
|
404
|
-
"syn",
|
|
405
|
-
]
|
|
406
|
-
|
|
407
|
-
[[package]]
|
|
408
|
-
name = "markup5ever"
|
|
409
|
-
version = "0.39.0"
|
|
410
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
-
checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
|
|
412
|
-
dependencies = [
|
|
413
|
-
"log",
|
|
414
|
-
"tendril",
|
|
415
|
-
"web_atoms",
|
|
416
|
-
]
|
|
417
|
-
|
|
418
|
-
[[package]]
|
|
419
|
-
name = "memchr"
|
|
420
|
-
version = "2.8.0"
|
|
421
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
-
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
423
|
-
|
|
424
|
-
[[package]]
|
|
425
|
-
name = "minimal-lexical"
|
|
426
|
-
version = "0.2.1"
|
|
427
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
-
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
429
|
-
|
|
430
|
-
[[package]]
|
|
431
|
-
name = "miniz_oxide"
|
|
432
|
-
version = "0.8.9"
|
|
433
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
-
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
435
|
-
dependencies = [
|
|
436
|
-
"adler2",
|
|
437
|
-
"simd-adler32",
|
|
438
|
-
]
|
|
439
|
-
|
|
440
|
-
[[package]]
|
|
441
|
-
name = "moxcms"
|
|
442
|
-
version = "0.7.11"
|
|
443
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
-
checksum = "ac9557c559cd6fc9867e122e20d2cbefc9ca29d80d027a8e39310920ed2f0a97"
|
|
445
|
-
dependencies = [
|
|
446
|
-
"num-traits",
|
|
447
|
-
"pxfm",
|
|
448
|
-
]
|
|
449
|
-
|
|
450
|
-
[[package]]
|
|
451
|
-
name = "new_debug_unreachable"
|
|
452
|
-
version = "1.0.6"
|
|
453
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
-
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
455
|
-
|
|
456
|
-
[[package]]
|
|
457
|
-
name = "nom"
|
|
458
|
-
version = "7.1.3"
|
|
459
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
461
|
-
dependencies = [
|
|
462
|
-
"memchr",
|
|
463
|
-
"minimal-lexical",
|
|
464
|
-
]
|
|
465
|
-
|
|
466
|
-
[[package]]
|
|
467
|
-
name = "num-traits"
|
|
468
|
-
version = "0.2.19"
|
|
469
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
-
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
471
|
-
dependencies = [
|
|
472
|
-
"autocfg",
|
|
473
|
-
]
|
|
474
|
-
|
|
475
|
-
[[package]]
|
|
476
|
-
name = "once_cell"
|
|
477
|
-
version = "1.21.4"
|
|
478
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
480
|
-
|
|
481
|
-
[[package]]
|
|
482
|
-
name = "parking_lot"
|
|
483
|
-
version = "0.12.5"
|
|
484
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
-
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
486
|
-
dependencies = [
|
|
487
|
-
"lock_api",
|
|
488
|
-
"parking_lot_core",
|
|
489
|
-
]
|
|
490
|
-
|
|
491
|
-
[[package]]
|
|
492
|
-
name = "parking_lot_core"
|
|
493
|
-
version = "0.9.12"
|
|
494
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
495
|
-
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
496
|
-
dependencies = [
|
|
497
|
-
"cfg-if",
|
|
498
|
-
"libc",
|
|
499
|
-
"redox_syscall",
|
|
500
|
-
"smallvec",
|
|
501
|
-
"windows-link",
|
|
502
|
-
]
|
|
503
|
-
|
|
504
|
-
[[package]]
|
|
505
|
-
name = "phf"
|
|
506
|
-
version = "0.13.1"
|
|
507
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
508
|
-
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
509
|
-
dependencies = [
|
|
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_shared"
|
|
536
|
-
version = "0.13.1"
|
|
537
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
-
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
539
|
-
dependencies = [
|
|
540
|
-
"siphasher",
|
|
541
|
-
]
|
|
542
|
-
|
|
543
|
-
[[package]]
|
|
544
|
-
name = "png"
|
|
545
|
-
version = "0.18.1"
|
|
546
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
547
|
-
checksum = "60769b8b31b2a9f263dae2776c37b1b28ae246943cf719eb6946a1db05128a61"
|
|
548
|
-
dependencies = [
|
|
549
|
-
"bitflags",
|
|
550
|
-
"crc32fast",
|
|
551
|
-
"fdeflate",
|
|
552
|
-
"flate2",
|
|
553
|
-
"miniz_oxide",
|
|
554
|
-
]
|
|
555
|
-
|
|
556
|
-
[[package]]
|
|
557
|
-
name = "precomputed-hash"
|
|
558
|
-
version = "0.1.1"
|
|
559
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
560
|
-
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
561
|
-
|
|
562
|
-
[[package]]
|
|
563
|
-
name = "pretty_assertions"
|
|
564
|
-
version = "1.4.1"
|
|
565
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
566
|
-
checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
|
|
567
|
-
dependencies = [
|
|
568
|
-
"diff",
|
|
569
|
-
"yansi",
|
|
570
|
-
]
|
|
571
|
-
|
|
572
|
-
[[package]]
|
|
573
|
-
name = "proc-macro2"
|
|
574
|
-
version = "1.0.106"
|
|
575
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
-
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
577
|
-
dependencies = [
|
|
578
|
-
"unicode-ident",
|
|
579
|
-
]
|
|
580
|
-
|
|
581
|
-
[[package]]
|
|
582
|
-
name = "pxfm"
|
|
583
|
-
version = "0.1.28"
|
|
584
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
-
checksum = "b5a041e753da8b807c9255f28de81879c78c876392ff2469cde94799b2896b9d"
|
|
586
|
-
|
|
587
|
-
[[package]]
|
|
588
|
-
name = "quick-error"
|
|
589
|
-
version = "2.0.1"
|
|
590
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
-
checksum = "a993555f31e5a609f617c12db6250dedcac1b0a85076912c436e6fc9b2c8e6a3"
|
|
592
|
-
|
|
593
|
-
[[package]]
|
|
594
|
-
name = "quote"
|
|
595
|
-
version = "1.0.45"
|
|
596
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
597
|
-
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
598
|
-
dependencies = [
|
|
599
|
-
"proc-macro2",
|
|
600
|
-
]
|
|
601
|
-
|
|
602
|
-
[[package]]
|
|
603
|
-
name = "rb-sys"
|
|
604
|
-
version = "0.9.125"
|
|
605
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "85b37650fabd8ba515910a0dc089dcb6348eb3c35fbf91698cb226435be2babc"
|
|
607
|
-
dependencies = [
|
|
608
|
-
"rb-sys-build",
|
|
609
|
-
]
|
|
610
|
-
|
|
611
|
-
[[package]]
|
|
612
|
-
name = "rb-sys-build"
|
|
613
|
-
version = "0.9.125"
|
|
614
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
-
checksum = "c73b806faa66006e491458b48a78725621c1ac5a2a6efe2614c90711a7780b80"
|
|
616
|
-
dependencies = [
|
|
617
|
-
"bindgen",
|
|
618
|
-
"lazy_static",
|
|
619
|
-
"proc-macro2",
|
|
620
|
-
"quote",
|
|
621
|
-
"regex",
|
|
622
|
-
"shell-words",
|
|
623
|
-
"syn",
|
|
624
|
-
]
|
|
625
|
-
|
|
626
|
-
[[package]]
|
|
627
|
-
name = "rb-sys-env"
|
|
628
|
-
version = "0.2.3"
|
|
629
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
630
|
-
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
631
|
-
|
|
632
|
-
[[package]]
|
|
633
|
-
name = "redox_syscall"
|
|
634
|
-
version = "0.5.18"
|
|
635
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
-
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
637
|
-
dependencies = [
|
|
638
|
-
"bitflags",
|
|
639
|
-
]
|
|
640
|
-
|
|
641
|
-
[[package]]
|
|
642
|
-
name = "regex"
|
|
643
|
-
version = "1.12.3"
|
|
644
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
-
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
646
|
-
dependencies = [
|
|
647
|
-
"aho-corasick",
|
|
648
|
-
"memchr",
|
|
649
|
-
"regex-automata",
|
|
650
|
-
"regex-syntax",
|
|
651
|
-
]
|
|
652
|
-
|
|
653
|
-
[[package]]
|
|
654
|
-
name = "regex-automata"
|
|
655
|
-
version = "0.4.14"
|
|
656
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
-
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
658
|
-
dependencies = [
|
|
659
|
-
"aho-corasick",
|
|
660
|
-
"memchr",
|
|
661
|
-
"regex-syntax",
|
|
662
|
-
]
|
|
663
|
-
|
|
664
|
-
[[package]]
|
|
665
|
-
name = "regex-syntax"
|
|
666
|
-
version = "0.8.10"
|
|
667
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
-
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
669
|
-
|
|
670
|
-
[[package]]
|
|
671
|
-
name = "rustc-hash"
|
|
672
|
-
version = "2.1.2"
|
|
673
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
-
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
675
|
-
|
|
676
|
-
[[package]]
|
|
677
|
-
name = "scopeguard"
|
|
678
|
-
version = "1.2.0"
|
|
679
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
681
|
-
|
|
682
|
-
[[package]]
|
|
683
|
-
name = "seq-macro"
|
|
684
|
-
version = "0.3.6"
|
|
685
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
-
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
687
|
-
|
|
688
|
-
[[package]]
|
|
689
|
-
name = "serde"
|
|
690
|
-
version = "1.0.228"
|
|
691
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
693
|
-
dependencies = [
|
|
694
|
-
"serde_core",
|
|
695
|
-
"serde_derive",
|
|
696
|
-
]
|
|
697
|
-
|
|
698
|
-
[[package]]
|
|
699
|
-
name = "serde_core"
|
|
700
|
-
version = "1.0.228"
|
|
701
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
-
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
703
|
-
dependencies = [
|
|
704
|
-
"serde_derive",
|
|
705
|
-
]
|
|
706
|
-
|
|
707
|
-
[[package]]
|
|
708
|
-
name = "serde_derive"
|
|
709
|
-
version = "1.0.228"
|
|
710
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
-
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
712
|
-
dependencies = [
|
|
713
|
-
"proc-macro2",
|
|
714
|
-
"quote",
|
|
715
|
-
"syn",
|
|
716
|
-
]
|
|
717
|
-
|
|
718
|
-
[[package]]
|
|
719
|
-
name = "serde_json"
|
|
720
|
-
version = "1.0.149"
|
|
721
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
-
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
723
|
-
dependencies = [
|
|
724
|
-
"itoa",
|
|
725
|
-
"memchr",
|
|
726
|
-
"serde",
|
|
727
|
-
"serde_core",
|
|
728
|
-
"zmij",
|
|
729
|
-
]
|
|
730
|
-
|
|
731
|
-
[[package]]
|
|
732
|
-
name = "shell-words"
|
|
733
|
-
version = "1.1.1"
|
|
734
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
-
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
736
|
-
|
|
737
|
-
[[package]]
|
|
738
|
-
name = "shlex"
|
|
739
|
-
version = "1.3.0"
|
|
740
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
-
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
742
|
-
|
|
743
|
-
[[package]]
|
|
744
|
-
name = "simd-adler32"
|
|
745
|
-
version = "0.3.9"
|
|
746
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
747
|
-
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
748
|
-
|
|
749
|
-
[[package]]
|
|
750
|
-
name = "siphasher"
|
|
751
|
-
version = "1.0.2"
|
|
752
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
753
|
-
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
754
|
-
|
|
755
|
-
[[package]]
|
|
756
|
-
name = "smallvec"
|
|
757
|
-
version = "1.15.1"
|
|
758
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
-
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
760
|
-
|
|
761
|
-
[[package]]
|
|
762
|
-
name = "string_cache"
|
|
763
|
-
version = "0.9.0"
|
|
764
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
-
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
|
766
|
-
dependencies = [
|
|
767
|
-
"new_debug_unreachable",
|
|
768
|
-
"parking_lot",
|
|
769
|
-
"phf_shared",
|
|
770
|
-
"precomputed-hash",
|
|
771
|
-
]
|
|
772
|
-
|
|
773
|
-
[[package]]
|
|
774
|
-
name = "string_cache_codegen"
|
|
775
|
-
version = "0.6.1"
|
|
776
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
-
checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
|
|
778
|
-
dependencies = [
|
|
779
|
-
"phf_generator",
|
|
780
|
-
"phf_shared",
|
|
781
|
-
"proc-macro2",
|
|
782
|
-
"quote",
|
|
783
|
-
]
|
|
784
|
-
|
|
785
|
-
[[package]]
|
|
786
|
-
name = "syn"
|
|
787
|
-
version = "2.0.117"
|
|
788
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
-
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
790
|
-
dependencies = [
|
|
791
|
-
"proc-macro2",
|
|
792
|
-
"quote",
|
|
793
|
-
"unicode-ident",
|
|
794
|
-
]
|
|
795
|
-
|
|
796
|
-
[[package]]
|
|
797
|
-
name = "tendril"
|
|
798
|
-
version = "0.5.0"
|
|
799
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
-
checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
|
|
801
|
-
dependencies = [
|
|
802
|
-
"new_debug_unreachable",
|
|
803
|
-
"utf-8",
|
|
804
|
-
]
|
|
805
|
-
|
|
806
|
-
[[package]]
|
|
807
|
-
name = "thiserror"
|
|
808
|
-
version = "2.0.18"
|
|
809
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
-
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
811
|
-
dependencies = [
|
|
812
|
-
"thiserror-impl",
|
|
813
|
-
]
|
|
814
|
-
|
|
815
|
-
[[package]]
|
|
816
|
-
name = "thiserror-impl"
|
|
817
|
-
version = "2.0.18"
|
|
818
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
819
|
-
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
820
|
-
dependencies = [
|
|
821
|
-
"proc-macro2",
|
|
822
|
-
"quote",
|
|
823
|
-
"syn",
|
|
824
|
-
]
|
|
825
|
-
|
|
826
|
-
[[package]]
|
|
827
|
-
name = "tiny-keccak"
|
|
828
|
-
version = "2.0.2"
|
|
829
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
831
|
-
dependencies = [
|
|
832
|
-
"crunchy",
|
|
833
|
-
]
|
|
834
|
-
|
|
835
|
-
[[package]]
|
|
836
|
-
name = "unicode-ident"
|
|
837
|
-
version = "1.0.24"
|
|
838
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
-
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
840
|
-
|
|
841
|
-
[[package]]
|
|
842
|
-
name = "utf-8"
|
|
843
|
-
version = "0.7.6"
|
|
844
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
-
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
846
|
-
|
|
847
|
-
[[package]]
|
|
848
|
-
name = "utf8-width"
|
|
849
|
-
version = "0.1.8"
|
|
850
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
-
checksum = "1292c0d970b54115d14f2492fe0170adf21d68a1de108eebc51c1df4f346a091"
|
|
852
|
-
|
|
853
|
-
[[package]]
|
|
854
|
-
name = "version_check"
|
|
855
|
-
version = "0.9.5"
|
|
856
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
857
|
-
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
858
|
-
|
|
859
|
-
[[package]]
|
|
860
|
-
name = "wasi"
|
|
861
|
-
version = "0.11.1+wasi-snapshot-preview1"
|
|
862
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
-
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
864
|
-
|
|
865
|
-
[[package]]
|
|
866
|
-
name = "web_atoms"
|
|
867
|
-
version = "0.2.3"
|
|
868
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
-
checksum = "57a9779e9f04d2ac1ce317aee707aa2f6b773afba7b931222bff6983843b1576"
|
|
870
|
-
dependencies = [
|
|
871
|
-
"phf",
|
|
872
|
-
"phf_codegen",
|
|
873
|
-
"string_cache",
|
|
874
|
-
"string_cache_codegen",
|
|
875
|
-
]
|
|
876
|
-
|
|
877
|
-
[[package]]
|
|
878
|
-
name = "weezl"
|
|
879
|
-
version = "0.1.12"
|
|
880
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
-
checksum = "a28ac98ddc8b9274cb41bb4d9d4d5c425b6020c50c46f25559911905610b4a88"
|
|
882
|
-
|
|
883
|
-
[[package]]
|
|
884
|
-
name = "windows-link"
|
|
885
|
-
version = "0.2.1"
|
|
886
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
887
|
-
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
888
|
-
|
|
889
|
-
[[package]]
|
|
890
|
-
name = "yansi"
|
|
891
|
-
version = "1.0.1"
|
|
892
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
-
checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|
|
894
|
-
|
|
895
|
-
[[package]]
|
|
896
|
-
name = "zerocopy"
|
|
897
|
-
version = "0.8.48"
|
|
898
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
900
|
-
dependencies = [
|
|
901
|
-
"zerocopy-derive",
|
|
902
|
-
]
|
|
903
|
-
|
|
904
|
-
[[package]]
|
|
905
|
-
name = "zerocopy-derive"
|
|
906
|
-
version = "0.8.48"
|
|
907
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
-
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
909
|
-
dependencies = [
|
|
910
|
-
"proc-macro2",
|
|
911
|
-
"quote",
|
|
912
|
-
"syn",
|
|
913
|
-
]
|
|
914
|
-
|
|
915
|
-
[[package]]
|
|
916
|
-
name = "zmij"
|
|
917
|
-
version = "1.0.21"
|
|
918
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
-
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
920
|
-
|
|
921
|
-
[[package]]
|
|
922
|
-
name = "zune-core"
|
|
923
|
-
version = "0.5.1"
|
|
924
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
-
checksum = "cb8a0807f7c01457d0379ba880ba6322660448ddebc890ce29bb64da71fb40f9"
|
|
926
|
-
|
|
927
|
-
[[package]]
|
|
928
|
-
name = "zune-jpeg"
|
|
929
|
-
version = "0.5.15"
|
|
930
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
-
checksum = "27bc9d5b815bc103f142aa054f561d9187d191692ec7c2d1e2b4737f8dbd7296"
|
|
932
|
-
dependencies = [
|
|
933
|
-
"zune-core",
|
|
934
|
-
]
|