commonmarker 0.23.10 → 2.4.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/Cargo.lock +1212 -0
- data/Cargo.toml +7 -0
- data/README.md +239 -172
- data/ext/commonmarker/Cargo.toml +20 -0
- data/ext/commonmarker/extconf.rb +3 -6
- data/ext/commonmarker/src/lib.rs +101 -0
- data/ext/commonmarker/src/node.rs +1228 -0
- data/ext/commonmarker/src/options.rs +230 -0
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +170 -0
- data/ext/commonmarker/src/plugins.rs +6 -0
- data/ext/commonmarker/src/utils.rs +8 -0
- data/lib/commonmarker/config.rb +94 -40
- data/lib/commonmarker/constants.rb +7 -0
- data/lib/commonmarker/extension.rb +14 -0
- data/lib/commonmarker/node/ast.rb +8 -0
- data/lib/commonmarker/node/inspect.rb +14 -4
- data/lib/commonmarker/node.rb +29 -47
- data/lib/commonmarker/renderer.rb +1 -127
- data/lib/commonmarker/utils.rb +22 -0
- data/lib/commonmarker/version.rb +2 -2
- data/lib/commonmarker.rb +27 -25
- metadata +38 -191
- data/Rakefile +0 -109
- data/bin/commonmarker +0 -118
- data/commonmarker.gemspec +0 -38
- data/ext/commonmarker/arena.c +0 -104
- data/ext/commonmarker/autolink.c +0 -508
- data/ext/commonmarker/autolink.h +0 -8
- data/ext/commonmarker/blocks.c +0 -1622
- data/ext/commonmarker/buffer.c +0 -278
- data/ext/commonmarker/buffer.h +0 -116
- data/ext/commonmarker/case_fold_switch.inc +0 -4327
- data/ext/commonmarker/chunk.h +0 -135
- data/ext/commonmarker/cmark-gfm-core-extensions.h +0 -54
- data/ext/commonmarker/cmark-gfm-extension_api.h +0 -737
- data/ext/commonmarker/cmark-gfm-extensions_export.h +0 -42
- data/ext/commonmarker/cmark-gfm.h +0 -833
- data/ext/commonmarker/cmark-gfm_export.h +0 -42
- data/ext/commonmarker/cmark-gfm_version.h +0 -7
- data/ext/commonmarker/cmark.c +0 -55
- data/ext/commonmarker/cmark_ctype.c +0 -44
- data/ext/commonmarker/cmark_ctype.h +0 -33
- data/ext/commonmarker/commonmark.c +0 -514
- data/ext/commonmarker/commonmarker.c +0 -1308
- data/ext/commonmarker/commonmarker.h +0 -16
- data/ext/commonmarker/config.h +0 -76
- data/ext/commonmarker/core-extensions.c +0 -27
- data/ext/commonmarker/entities.inc +0 -2138
- data/ext/commonmarker/ext_scanners.c +0 -879
- data/ext/commonmarker/ext_scanners.h +0 -24
- data/ext/commonmarker/footnotes.c +0 -63
- data/ext/commonmarker/footnotes.h +0 -27
- data/ext/commonmarker/houdini.h +0 -57
- data/ext/commonmarker/houdini_href_e.c +0 -100
- data/ext/commonmarker/houdini_html_e.c +0 -66
- data/ext/commonmarker/houdini_html_u.c +0 -149
- data/ext/commonmarker/html.c +0 -502
- data/ext/commonmarker/html.h +0 -27
- data/ext/commonmarker/inlines.c +0 -1788
- data/ext/commonmarker/inlines.h +0 -29
- data/ext/commonmarker/iterator.c +0 -159
- data/ext/commonmarker/iterator.h +0 -26
- data/ext/commonmarker/latex.c +0 -468
- data/ext/commonmarker/linked_list.c +0 -37
- data/ext/commonmarker/man.c +0 -274
- data/ext/commonmarker/map.c +0 -129
- data/ext/commonmarker/map.h +0 -44
- data/ext/commonmarker/node.c +0 -1045
- data/ext/commonmarker/node.h +0 -167
- data/ext/commonmarker/parser.h +0 -59
- data/ext/commonmarker/plaintext.c +0 -218
- data/ext/commonmarker/plugin.c +0 -36
- data/ext/commonmarker/plugin.h +0 -34
- data/ext/commonmarker/references.c +0 -43
- data/ext/commonmarker/references.h +0 -26
- data/ext/commonmarker/registry.c +0 -63
- data/ext/commonmarker/registry.h +0 -24
- data/ext/commonmarker/render.c +0 -213
- data/ext/commonmarker/render.h +0 -62
- data/ext/commonmarker/scanners.c +0 -14056
- data/ext/commonmarker/scanners.h +0 -70
- data/ext/commonmarker/scanners.re +0 -341
- data/ext/commonmarker/strikethrough.c +0 -167
- data/ext/commonmarker/strikethrough.h +0 -9
- data/ext/commonmarker/syntax_extension.c +0 -149
- data/ext/commonmarker/syntax_extension.h +0 -34
- data/ext/commonmarker/table.c +0 -917
- data/ext/commonmarker/table.h +0 -12
- data/ext/commonmarker/tagfilter.c +0 -60
- data/ext/commonmarker/tagfilter.h +0 -8
- data/ext/commonmarker/tasklist.c +0 -156
- data/ext/commonmarker/tasklist.h +0 -8
- data/ext/commonmarker/utf8.c +0 -317
- data/ext/commonmarker/utf8.h +0 -35
- data/ext/commonmarker/xml.c +0 -182
- data/lib/commonmarker/renderer/html_renderer.rb +0 -256
data/Cargo.lock
ADDED
@@ -0,0 +1,1212 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "adler2"
|
7
|
+
version = "2.0.1"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
10
|
+
|
11
|
+
[[package]]
|
12
|
+
name = "aho-corasick"
|
13
|
+
version = "1.1.3"
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
15
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
16
|
+
dependencies = [
|
17
|
+
"memchr",
|
18
|
+
]
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "anstream"
|
22
|
+
version = "0.6.20"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
25
|
+
dependencies = [
|
26
|
+
"anstyle",
|
27
|
+
"anstyle-parse",
|
28
|
+
"anstyle-query",
|
29
|
+
"anstyle-wincon",
|
30
|
+
"colorchoice",
|
31
|
+
"is_terminal_polyfill",
|
32
|
+
"utf8parse",
|
33
|
+
]
|
34
|
+
|
35
|
+
[[package]]
|
36
|
+
name = "anstyle"
|
37
|
+
version = "1.0.11"
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
39
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "anstyle-parse"
|
43
|
+
version = "0.2.7"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
46
|
+
dependencies = [
|
47
|
+
"utf8parse",
|
48
|
+
]
|
49
|
+
|
50
|
+
[[package]]
|
51
|
+
name = "anstyle-query"
|
52
|
+
version = "1.1.4"
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
55
|
+
dependencies = [
|
56
|
+
"windows-sys 0.60.2",
|
57
|
+
]
|
58
|
+
|
59
|
+
[[package]]
|
60
|
+
name = "anstyle-wincon"
|
61
|
+
version = "3.0.10"
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
63
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
64
|
+
dependencies = [
|
65
|
+
"anstyle",
|
66
|
+
"once_cell_polyfill",
|
67
|
+
"windows-sys 0.60.2",
|
68
|
+
]
|
69
|
+
|
70
|
+
[[package]]
|
71
|
+
name = "base64"
|
72
|
+
version = "0.22.1"
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
74
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
75
|
+
|
76
|
+
[[package]]
|
77
|
+
name = "bincode"
|
78
|
+
version = "1.3.3"
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
81
|
+
dependencies = [
|
82
|
+
"serde",
|
83
|
+
]
|
84
|
+
|
85
|
+
[[package]]
|
86
|
+
name = "bindgen"
|
87
|
+
version = "0.69.5"
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
89
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
90
|
+
dependencies = [
|
91
|
+
"bitflags 2.9.4",
|
92
|
+
"cexpr",
|
93
|
+
"clang-sys",
|
94
|
+
"itertools",
|
95
|
+
"lazy_static",
|
96
|
+
"lazycell",
|
97
|
+
"proc-macro2",
|
98
|
+
"quote",
|
99
|
+
"regex",
|
100
|
+
"rustc-hash",
|
101
|
+
"shlex",
|
102
|
+
"syn",
|
103
|
+
]
|
104
|
+
|
105
|
+
[[package]]
|
106
|
+
name = "bit-set"
|
107
|
+
version = "0.5.3"
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
109
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
110
|
+
dependencies = [
|
111
|
+
"bit-vec",
|
112
|
+
]
|
113
|
+
|
114
|
+
[[package]]
|
115
|
+
name = "bit-vec"
|
116
|
+
version = "0.6.3"
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
118
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
119
|
+
|
120
|
+
[[package]]
|
121
|
+
name = "bitflags"
|
122
|
+
version = "1.3.2"
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
124
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
125
|
+
|
126
|
+
[[package]]
|
127
|
+
name = "bitflags"
|
128
|
+
version = "2.9.4"
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
130
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
131
|
+
|
132
|
+
[[package]]
|
133
|
+
name = "bon"
|
134
|
+
version = "3.7.2"
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
+
checksum = "c2529c31017402be841eb45892278a6c21a000c0a17643af326c73a73f83f0fb"
|
137
|
+
dependencies = [
|
138
|
+
"bon-macros",
|
139
|
+
"rustversion",
|
140
|
+
]
|
141
|
+
|
142
|
+
[[package]]
|
143
|
+
name = "bon-macros"
|
144
|
+
version = "3.7.2"
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
|
+
checksum = "d82020dadcb845a345591863adb65d74fa8dc5c18a0b6d408470e13b7adc7005"
|
147
|
+
dependencies = [
|
148
|
+
"darling",
|
149
|
+
"ident_case",
|
150
|
+
"prettyplease",
|
151
|
+
"proc-macro2",
|
152
|
+
"quote",
|
153
|
+
"rustversion",
|
154
|
+
"syn",
|
155
|
+
]
|
156
|
+
|
157
|
+
[[package]]
|
158
|
+
name = "bumpalo"
|
159
|
+
version = "3.19.0"
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
161
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
162
|
+
|
163
|
+
[[package]]
|
164
|
+
name = "caseless"
|
165
|
+
version = "0.2.2"
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
167
|
+
checksum = "8b6fd507454086c8edfd769ca6ada439193cdb209c7681712ef6275cccbfe5d8"
|
168
|
+
dependencies = [
|
169
|
+
"unicode-normalization",
|
170
|
+
]
|
171
|
+
|
172
|
+
[[package]]
|
173
|
+
name = "cc"
|
174
|
+
version = "1.2.37"
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
+
checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44"
|
177
|
+
dependencies = [
|
178
|
+
"find-msvc-tools",
|
179
|
+
"shlex",
|
180
|
+
]
|
181
|
+
|
182
|
+
[[package]]
|
183
|
+
name = "cexpr"
|
184
|
+
version = "0.6.0"
|
185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
186
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
187
|
+
dependencies = [
|
188
|
+
"nom",
|
189
|
+
]
|
190
|
+
|
191
|
+
[[package]]
|
192
|
+
name = "cfg-if"
|
193
|
+
version = "1.0.3"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
196
|
+
|
197
|
+
[[package]]
|
198
|
+
name = "clang-sys"
|
199
|
+
version = "1.8.1"
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
201
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
202
|
+
dependencies = [
|
203
|
+
"glob",
|
204
|
+
"libc",
|
205
|
+
"libloading",
|
206
|
+
]
|
207
|
+
|
208
|
+
[[package]]
|
209
|
+
name = "clap"
|
210
|
+
version = "4.5.47"
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
+
checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931"
|
213
|
+
dependencies = [
|
214
|
+
"clap_builder",
|
215
|
+
"clap_derive",
|
216
|
+
]
|
217
|
+
|
218
|
+
[[package]]
|
219
|
+
name = "clap_builder"
|
220
|
+
version = "4.5.47"
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
222
|
+
checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6"
|
223
|
+
dependencies = [
|
224
|
+
"anstream",
|
225
|
+
"anstyle",
|
226
|
+
"clap_lex",
|
227
|
+
"strsim",
|
228
|
+
"terminal_size",
|
229
|
+
]
|
230
|
+
|
231
|
+
[[package]]
|
232
|
+
name = "clap_derive"
|
233
|
+
version = "4.5.47"
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
235
|
+
checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
|
236
|
+
dependencies = [
|
237
|
+
"heck",
|
238
|
+
"proc-macro2",
|
239
|
+
"quote",
|
240
|
+
"syn",
|
241
|
+
]
|
242
|
+
|
243
|
+
[[package]]
|
244
|
+
name = "clap_lex"
|
245
|
+
version = "0.7.5"
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
247
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
248
|
+
|
249
|
+
[[package]]
|
250
|
+
name = "colorchoice"
|
251
|
+
version = "1.0.4"
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
254
|
+
|
255
|
+
[[package]]
|
256
|
+
name = "commonmarker"
|
257
|
+
version = "1.0.0"
|
258
|
+
dependencies = [
|
259
|
+
"comrak",
|
260
|
+
"magnus",
|
261
|
+
"rb-sys",
|
262
|
+
"rctree",
|
263
|
+
"syntect",
|
264
|
+
"typed-arena",
|
265
|
+
]
|
266
|
+
|
267
|
+
[[package]]
|
268
|
+
name = "comrak"
|
269
|
+
version = "0.43.0"
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
271
|
+
checksum = "5ccfd7678fba9aff54a74a70352d952b345e568823ed9d5a92ebc8ad0adad8ea"
|
272
|
+
dependencies = [
|
273
|
+
"bon",
|
274
|
+
"caseless",
|
275
|
+
"clap",
|
276
|
+
"emojis",
|
277
|
+
"entities",
|
278
|
+
"fmt2io",
|
279
|
+
"memchr",
|
280
|
+
"shell-words",
|
281
|
+
"slug",
|
282
|
+
"syntect",
|
283
|
+
"typed-arena",
|
284
|
+
"unicode_categories",
|
285
|
+
"xdg",
|
286
|
+
]
|
287
|
+
|
288
|
+
[[package]]
|
289
|
+
name = "crc32fast"
|
290
|
+
version = "1.5.0"
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
292
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
293
|
+
dependencies = [
|
294
|
+
"cfg-if",
|
295
|
+
]
|
296
|
+
|
297
|
+
[[package]]
|
298
|
+
name = "darling"
|
299
|
+
version = "0.21.3"
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
301
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
302
|
+
dependencies = [
|
303
|
+
"darling_core",
|
304
|
+
"darling_macro",
|
305
|
+
]
|
306
|
+
|
307
|
+
[[package]]
|
308
|
+
name = "darling_core"
|
309
|
+
version = "0.21.3"
|
310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
311
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
312
|
+
dependencies = [
|
313
|
+
"fnv",
|
314
|
+
"ident_case",
|
315
|
+
"proc-macro2",
|
316
|
+
"quote",
|
317
|
+
"strsim",
|
318
|
+
"syn",
|
319
|
+
]
|
320
|
+
|
321
|
+
[[package]]
|
322
|
+
name = "darling_macro"
|
323
|
+
version = "0.21.3"
|
324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
325
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
326
|
+
dependencies = [
|
327
|
+
"darling_core",
|
328
|
+
"quote",
|
329
|
+
"syn",
|
330
|
+
]
|
331
|
+
|
332
|
+
[[package]]
|
333
|
+
name = "deranged"
|
334
|
+
version = "0.5.3"
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
336
|
+
checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc"
|
337
|
+
dependencies = [
|
338
|
+
"powerfmt",
|
339
|
+
]
|
340
|
+
|
341
|
+
[[package]]
|
342
|
+
name = "deunicode"
|
343
|
+
version = "1.6.2"
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
345
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
346
|
+
|
347
|
+
[[package]]
|
348
|
+
name = "either"
|
349
|
+
version = "1.15.0"
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
351
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
352
|
+
|
353
|
+
[[package]]
|
354
|
+
name = "emojis"
|
355
|
+
version = "0.6.4"
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
357
|
+
checksum = "99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4"
|
358
|
+
dependencies = [
|
359
|
+
"phf",
|
360
|
+
]
|
361
|
+
|
362
|
+
[[package]]
|
363
|
+
name = "entities"
|
364
|
+
version = "1.0.1"
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
367
|
+
|
368
|
+
[[package]]
|
369
|
+
name = "equivalent"
|
370
|
+
version = "1.0.2"
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
372
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
373
|
+
|
374
|
+
[[package]]
|
375
|
+
name = "errno"
|
376
|
+
version = "0.3.14"
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
378
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
379
|
+
dependencies = [
|
380
|
+
"libc",
|
381
|
+
"windows-sys 0.61.0",
|
382
|
+
]
|
383
|
+
|
384
|
+
[[package]]
|
385
|
+
name = "fancy-regex"
|
386
|
+
version = "0.11.0"
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
388
|
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
389
|
+
dependencies = [
|
390
|
+
"bit-set",
|
391
|
+
"regex",
|
392
|
+
]
|
393
|
+
|
394
|
+
[[package]]
|
395
|
+
name = "find-msvc-tools"
|
396
|
+
version = "0.1.1"
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
398
|
+
checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d"
|
399
|
+
|
400
|
+
[[package]]
|
401
|
+
name = "flate2"
|
402
|
+
version = "1.1.2"
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
405
|
+
dependencies = [
|
406
|
+
"crc32fast",
|
407
|
+
"miniz_oxide",
|
408
|
+
]
|
409
|
+
|
410
|
+
[[package]]
|
411
|
+
name = "fmt2io"
|
412
|
+
version = "1.0.0"
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
414
|
+
checksum = "6b6129284da9f7e5296cc22183a63f24300e945e297705dcc0672f7df01d62c8"
|
415
|
+
|
416
|
+
[[package]]
|
417
|
+
name = "fnv"
|
418
|
+
version = "1.0.7"
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
421
|
+
|
422
|
+
[[package]]
|
423
|
+
name = "glob"
|
424
|
+
version = "0.3.3"
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
427
|
+
|
428
|
+
[[package]]
|
429
|
+
name = "hashbrown"
|
430
|
+
version = "0.15.5"
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
432
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
433
|
+
|
434
|
+
[[package]]
|
435
|
+
name = "heck"
|
436
|
+
version = "0.5.0"
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
439
|
+
|
440
|
+
[[package]]
|
441
|
+
name = "ident_case"
|
442
|
+
version = "1.0.1"
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
444
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
445
|
+
|
446
|
+
[[package]]
|
447
|
+
name = "indexmap"
|
448
|
+
version = "2.11.1"
|
449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
450
|
+
checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921"
|
451
|
+
dependencies = [
|
452
|
+
"equivalent",
|
453
|
+
"hashbrown",
|
454
|
+
]
|
455
|
+
|
456
|
+
[[package]]
|
457
|
+
name = "is_terminal_polyfill"
|
458
|
+
version = "1.70.1"
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
460
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
461
|
+
|
462
|
+
[[package]]
|
463
|
+
name = "itertools"
|
464
|
+
version = "0.12.1"
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
466
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
467
|
+
dependencies = [
|
468
|
+
"either",
|
469
|
+
]
|
470
|
+
|
471
|
+
[[package]]
|
472
|
+
name = "itoa"
|
473
|
+
version = "1.0.15"
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
475
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
476
|
+
|
477
|
+
[[package]]
|
478
|
+
name = "lazy_static"
|
479
|
+
version = "1.5.0"
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
481
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
482
|
+
|
483
|
+
[[package]]
|
484
|
+
name = "lazycell"
|
485
|
+
version = "1.3.0"
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
487
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
488
|
+
|
489
|
+
[[package]]
|
490
|
+
name = "libc"
|
491
|
+
version = "0.2.175"
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
493
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
494
|
+
|
495
|
+
[[package]]
|
496
|
+
name = "libloading"
|
497
|
+
version = "0.8.8"
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
499
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
500
|
+
dependencies = [
|
501
|
+
"cfg-if",
|
502
|
+
"windows-targets",
|
503
|
+
]
|
504
|
+
|
505
|
+
[[package]]
|
506
|
+
name = "linked-hash-map"
|
507
|
+
version = "0.5.6"
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
509
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
510
|
+
|
511
|
+
[[package]]
|
512
|
+
name = "linux-raw-sys"
|
513
|
+
version = "0.11.0"
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
515
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
516
|
+
|
517
|
+
[[package]]
|
518
|
+
name = "log"
|
519
|
+
version = "0.4.28"
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
521
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
522
|
+
|
523
|
+
[[package]]
|
524
|
+
name = "magnus"
|
525
|
+
version = "0.8.1"
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
527
|
+
checksum = "bd2ac6e71886be00ac34db92aa732c793c5107c95191805b9a1c7e70e6d342e0"
|
528
|
+
dependencies = [
|
529
|
+
"magnus-macros",
|
530
|
+
"rb-sys",
|
531
|
+
"rb-sys-env",
|
532
|
+
"seq-macro",
|
533
|
+
]
|
534
|
+
|
535
|
+
[[package]]
|
536
|
+
name = "magnus-macros"
|
537
|
+
version = "0.8.0"
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
539
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
540
|
+
dependencies = [
|
541
|
+
"proc-macro2",
|
542
|
+
"quote",
|
543
|
+
"syn",
|
544
|
+
]
|
545
|
+
|
546
|
+
[[package]]
|
547
|
+
name = "memchr"
|
548
|
+
version = "2.7.5"
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
550
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
551
|
+
|
552
|
+
[[package]]
|
553
|
+
name = "minimal-lexical"
|
554
|
+
version = "0.2.1"
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
557
|
+
|
558
|
+
[[package]]
|
559
|
+
name = "miniz_oxide"
|
560
|
+
version = "0.8.9"
|
561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
562
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
563
|
+
dependencies = [
|
564
|
+
"adler2",
|
565
|
+
]
|
566
|
+
|
567
|
+
[[package]]
|
568
|
+
name = "nom"
|
569
|
+
version = "7.1.3"
|
570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
571
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
572
|
+
dependencies = [
|
573
|
+
"memchr",
|
574
|
+
"minimal-lexical",
|
575
|
+
]
|
576
|
+
|
577
|
+
[[package]]
|
578
|
+
name = "num-conv"
|
579
|
+
version = "0.1.0"
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
581
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
582
|
+
|
583
|
+
[[package]]
|
584
|
+
name = "once_cell"
|
585
|
+
version = "1.21.3"
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
587
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
588
|
+
|
589
|
+
[[package]]
|
590
|
+
name = "once_cell_polyfill"
|
591
|
+
version = "1.70.1"
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
593
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
594
|
+
|
595
|
+
[[package]]
|
596
|
+
name = "onig"
|
597
|
+
version = "6.5.1"
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
599
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
600
|
+
dependencies = [
|
601
|
+
"bitflags 2.9.4",
|
602
|
+
"libc",
|
603
|
+
"once_cell",
|
604
|
+
"onig_sys",
|
605
|
+
]
|
606
|
+
|
607
|
+
[[package]]
|
608
|
+
name = "onig_sys"
|
609
|
+
version = "69.9.1"
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
611
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
612
|
+
dependencies = [
|
613
|
+
"cc",
|
614
|
+
"pkg-config",
|
615
|
+
]
|
616
|
+
|
617
|
+
[[package]]
|
618
|
+
name = "phf"
|
619
|
+
version = "0.11.3"
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
621
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
622
|
+
dependencies = [
|
623
|
+
"phf_shared",
|
624
|
+
]
|
625
|
+
|
626
|
+
[[package]]
|
627
|
+
name = "phf_shared"
|
628
|
+
version = "0.11.3"
|
629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
630
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
631
|
+
dependencies = [
|
632
|
+
"siphasher",
|
633
|
+
]
|
634
|
+
|
635
|
+
[[package]]
|
636
|
+
name = "pkg-config"
|
637
|
+
version = "0.3.32"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
640
|
+
|
641
|
+
[[package]]
|
642
|
+
name = "plist"
|
643
|
+
version = "1.7.4"
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
+
checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1"
|
646
|
+
dependencies = [
|
647
|
+
"base64",
|
648
|
+
"indexmap",
|
649
|
+
"quick-xml",
|
650
|
+
"serde",
|
651
|
+
"time",
|
652
|
+
]
|
653
|
+
|
654
|
+
[[package]]
|
655
|
+
name = "powerfmt"
|
656
|
+
version = "0.2.0"
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
659
|
+
|
660
|
+
[[package]]
|
661
|
+
name = "prettyplease"
|
662
|
+
version = "0.2.37"
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
664
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
665
|
+
dependencies = [
|
666
|
+
"proc-macro2",
|
667
|
+
"syn",
|
668
|
+
]
|
669
|
+
|
670
|
+
[[package]]
|
671
|
+
name = "proc-macro2"
|
672
|
+
version = "1.0.101"
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
674
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
675
|
+
dependencies = [
|
676
|
+
"unicode-ident",
|
677
|
+
]
|
678
|
+
|
679
|
+
[[package]]
|
680
|
+
name = "quick-xml"
|
681
|
+
version = "0.38.3"
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
683
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
684
|
+
dependencies = [
|
685
|
+
"memchr",
|
686
|
+
]
|
687
|
+
|
688
|
+
[[package]]
|
689
|
+
name = "quote"
|
690
|
+
version = "1.0.40"
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
692
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
693
|
+
dependencies = [
|
694
|
+
"proc-macro2",
|
695
|
+
]
|
696
|
+
|
697
|
+
[[package]]
|
698
|
+
name = "rb-sys"
|
699
|
+
version = "0.9.117"
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
701
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
702
|
+
dependencies = [
|
703
|
+
"rb-sys-build",
|
704
|
+
]
|
705
|
+
|
706
|
+
[[package]]
|
707
|
+
name = "rb-sys-build"
|
708
|
+
version = "0.9.117"
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
710
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
711
|
+
dependencies = [
|
712
|
+
"bindgen",
|
713
|
+
"lazy_static",
|
714
|
+
"proc-macro2",
|
715
|
+
"quote",
|
716
|
+
"regex",
|
717
|
+
"shell-words",
|
718
|
+
"syn",
|
719
|
+
]
|
720
|
+
|
721
|
+
[[package]]
|
722
|
+
name = "rb-sys-env"
|
723
|
+
version = "0.2.2"
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
726
|
+
|
727
|
+
[[package]]
|
728
|
+
name = "rctree"
|
729
|
+
version = "0.6.0"
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
731
|
+
checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "regex"
|
735
|
+
version = "1.11.2"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
738
|
+
dependencies = [
|
739
|
+
"aho-corasick",
|
740
|
+
"memchr",
|
741
|
+
"regex-automata",
|
742
|
+
"regex-syntax",
|
743
|
+
]
|
744
|
+
|
745
|
+
[[package]]
|
746
|
+
name = "regex-automata"
|
747
|
+
version = "0.4.10"
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
749
|
+
checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
|
750
|
+
dependencies = [
|
751
|
+
"aho-corasick",
|
752
|
+
"memchr",
|
753
|
+
"regex-syntax",
|
754
|
+
]
|
755
|
+
|
756
|
+
[[package]]
|
757
|
+
name = "regex-syntax"
|
758
|
+
version = "0.8.6"
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
760
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
761
|
+
|
762
|
+
[[package]]
|
763
|
+
name = "rustc-hash"
|
764
|
+
version = "1.1.0"
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
766
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
767
|
+
|
768
|
+
[[package]]
|
769
|
+
name = "rustix"
|
770
|
+
version = "1.1.2"
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
772
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
773
|
+
dependencies = [
|
774
|
+
"bitflags 2.9.4",
|
775
|
+
"errno",
|
776
|
+
"libc",
|
777
|
+
"linux-raw-sys",
|
778
|
+
"windows-sys 0.61.0",
|
779
|
+
]
|
780
|
+
|
781
|
+
[[package]]
|
782
|
+
name = "rustversion"
|
783
|
+
version = "1.0.22"
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
786
|
+
|
787
|
+
[[package]]
|
788
|
+
name = "ryu"
|
789
|
+
version = "1.0.20"
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "same-file"
|
795
|
+
version = "1.0.6"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
798
|
+
dependencies = [
|
799
|
+
"winapi-util",
|
800
|
+
]
|
801
|
+
|
802
|
+
[[package]]
|
803
|
+
name = "seq-macro"
|
804
|
+
version = "0.3.6"
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
807
|
+
|
808
|
+
[[package]]
|
809
|
+
name = "serde"
|
810
|
+
version = "1.0.223"
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
812
|
+
checksum = "a505d71960adde88e293da5cb5eda57093379f64e61cf77bf0e6a63af07a7bac"
|
813
|
+
dependencies = [
|
814
|
+
"serde_core",
|
815
|
+
]
|
816
|
+
|
817
|
+
[[package]]
|
818
|
+
name = "serde_core"
|
819
|
+
version = "1.0.223"
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
821
|
+
checksum = "20f57cbd357666aa7b3ac84a90b4ea328f1d4ddb6772b430caa5d9e1309bb9e9"
|
822
|
+
dependencies = [
|
823
|
+
"serde_derive",
|
824
|
+
]
|
825
|
+
|
826
|
+
[[package]]
|
827
|
+
name = "serde_derive"
|
828
|
+
version = "1.0.223"
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
830
|
+
checksum = "3d428d07faf17e306e699ec1e91996e5a165ba5d6bce5b5155173e91a8a01a56"
|
831
|
+
dependencies = [
|
832
|
+
"proc-macro2",
|
833
|
+
"quote",
|
834
|
+
"syn",
|
835
|
+
]
|
836
|
+
|
837
|
+
[[package]]
|
838
|
+
name = "serde_json"
|
839
|
+
version = "1.0.145"
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
841
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
842
|
+
dependencies = [
|
843
|
+
"itoa",
|
844
|
+
"memchr",
|
845
|
+
"ryu",
|
846
|
+
"serde",
|
847
|
+
"serde_core",
|
848
|
+
]
|
849
|
+
|
850
|
+
[[package]]
|
851
|
+
name = "shell-words"
|
852
|
+
version = "1.1.0"
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
854
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
855
|
+
|
856
|
+
[[package]]
|
857
|
+
name = "shlex"
|
858
|
+
version = "1.3.0"
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
860
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
861
|
+
|
862
|
+
[[package]]
|
863
|
+
name = "siphasher"
|
864
|
+
version = "1.0.1"
|
865
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
866
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
867
|
+
|
868
|
+
[[package]]
|
869
|
+
name = "slug"
|
870
|
+
version = "0.1.6"
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
872
|
+
checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
|
873
|
+
dependencies = [
|
874
|
+
"deunicode",
|
875
|
+
"wasm-bindgen",
|
876
|
+
]
|
877
|
+
|
878
|
+
[[package]]
|
879
|
+
name = "strsim"
|
880
|
+
version = "0.11.1"
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
883
|
+
|
884
|
+
[[package]]
|
885
|
+
name = "syn"
|
886
|
+
version = "2.0.106"
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
888
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
889
|
+
dependencies = [
|
890
|
+
"proc-macro2",
|
891
|
+
"quote",
|
892
|
+
"unicode-ident",
|
893
|
+
]
|
894
|
+
|
895
|
+
[[package]]
|
896
|
+
name = "syntect"
|
897
|
+
version = "5.2.0"
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
899
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
900
|
+
dependencies = [
|
901
|
+
"bincode",
|
902
|
+
"bitflags 1.3.2",
|
903
|
+
"fancy-regex",
|
904
|
+
"flate2",
|
905
|
+
"fnv",
|
906
|
+
"once_cell",
|
907
|
+
"onig",
|
908
|
+
"plist",
|
909
|
+
"regex-syntax",
|
910
|
+
"serde",
|
911
|
+
"serde_derive",
|
912
|
+
"serde_json",
|
913
|
+
"thiserror",
|
914
|
+
"walkdir",
|
915
|
+
"yaml-rust",
|
916
|
+
]
|
917
|
+
|
918
|
+
[[package]]
|
919
|
+
name = "terminal_size"
|
920
|
+
version = "0.4.3"
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
922
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
923
|
+
dependencies = [
|
924
|
+
"rustix",
|
925
|
+
"windows-sys 0.60.2",
|
926
|
+
]
|
927
|
+
|
928
|
+
[[package]]
|
929
|
+
name = "thiserror"
|
930
|
+
version = "1.0.69"
|
931
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
932
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
933
|
+
dependencies = [
|
934
|
+
"thiserror-impl",
|
935
|
+
]
|
936
|
+
|
937
|
+
[[package]]
|
938
|
+
name = "thiserror-impl"
|
939
|
+
version = "1.0.69"
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
941
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
942
|
+
dependencies = [
|
943
|
+
"proc-macro2",
|
944
|
+
"quote",
|
945
|
+
"syn",
|
946
|
+
]
|
947
|
+
|
948
|
+
[[package]]
|
949
|
+
name = "time"
|
950
|
+
version = "0.3.43"
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
+
checksum = "83bde6f1ec10e72d583d91623c939f623002284ef622b87de38cfd546cbf2031"
|
953
|
+
dependencies = [
|
954
|
+
"deranged",
|
955
|
+
"num-conv",
|
956
|
+
"powerfmt",
|
957
|
+
"serde",
|
958
|
+
"time-core",
|
959
|
+
"time-macros",
|
960
|
+
]
|
961
|
+
|
962
|
+
[[package]]
|
963
|
+
name = "time-core"
|
964
|
+
version = "0.1.6"
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
967
|
+
|
968
|
+
[[package]]
|
969
|
+
name = "time-macros"
|
970
|
+
version = "0.2.24"
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
972
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
973
|
+
dependencies = [
|
974
|
+
"num-conv",
|
975
|
+
"time-core",
|
976
|
+
]
|
977
|
+
|
978
|
+
[[package]]
|
979
|
+
name = "tinyvec"
|
980
|
+
version = "1.10.0"
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
982
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
983
|
+
dependencies = [
|
984
|
+
"tinyvec_macros",
|
985
|
+
]
|
986
|
+
|
987
|
+
[[package]]
|
988
|
+
name = "tinyvec_macros"
|
989
|
+
version = "0.1.1"
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
991
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
992
|
+
|
993
|
+
[[package]]
|
994
|
+
name = "typed-arena"
|
995
|
+
version = "2.0.2"
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
998
|
+
|
999
|
+
[[package]]
|
1000
|
+
name = "unicode-ident"
|
1001
|
+
version = "1.0.19"
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1003
|
+
checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
|
1004
|
+
|
1005
|
+
[[package]]
|
1006
|
+
name = "unicode-normalization"
|
1007
|
+
version = "0.1.24"
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
1010
|
+
dependencies = [
|
1011
|
+
"tinyvec",
|
1012
|
+
]
|
1013
|
+
|
1014
|
+
[[package]]
|
1015
|
+
name = "unicode_categories"
|
1016
|
+
version = "0.1.1"
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1018
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
1019
|
+
|
1020
|
+
[[package]]
|
1021
|
+
name = "utf8parse"
|
1022
|
+
version = "0.2.2"
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
1025
|
+
|
1026
|
+
[[package]]
|
1027
|
+
name = "walkdir"
|
1028
|
+
version = "2.5.0"
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1030
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1031
|
+
dependencies = [
|
1032
|
+
"same-file",
|
1033
|
+
"winapi-util",
|
1034
|
+
]
|
1035
|
+
|
1036
|
+
[[package]]
|
1037
|
+
name = "wasm-bindgen"
|
1038
|
+
version = "0.2.101"
|
1039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1040
|
+
checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b"
|
1041
|
+
dependencies = [
|
1042
|
+
"cfg-if",
|
1043
|
+
"once_cell",
|
1044
|
+
"rustversion",
|
1045
|
+
"wasm-bindgen-macro",
|
1046
|
+
"wasm-bindgen-shared",
|
1047
|
+
]
|
1048
|
+
|
1049
|
+
[[package]]
|
1050
|
+
name = "wasm-bindgen-backend"
|
1051
|
+
version = "0.2.101"
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1053
|
+
checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb"
|
1054
|
+
dependencies = [
|
1055
|
+
"bumpalo",
|
1056
|
+
"log",
|
1057
|
+
"proc-macro2",
|
1058
|
+
"quote",
|
1059
|
+
"syn",
|
1060
|
+
"wasm-bindgen-shared",
|
1061
|
+
]
|
1062
|
+
|
1063
|
+
[[package]]
|
1064
|
+
name = "wasm-bindgen-macro"
|
1065
|
+
version = "0.2.101"
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
+
checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d"
|
1068
|
+
dependencies = [
|
1069
|
+
"quote",
|
1070
|
+
"wasm-bindgen-macro-support",
|
1071
|
+
]
|
1072
|
+
|
1073
|
+
[[package]]
|
1074
|
+
name = "wasm-bindgen-macro-support"
|
1075
|
+
version = "0.2.101"
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1077
|
+
checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa"
|
1078
|
+
dependencies = [
|
1079
|
+
"proc-macro2",
|
1080
|
+
"quote",
|
1081
|
+
"syn",
|
1082
|
+
"wasm-bindgen-backend",
|
1083
|
+
"wasm-bindgen-shared",
|
1084
|
+
]
|
1085
|
+
|
1086
|
+
[[package]]
|
1087
|
+
name = "wasm-bindgen-shared"
|
1088
|
+
version = "0.2.101"
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
+
checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1"
|
1091
|
+
dependencies = [
|
1092
|
+
"unicode-ident",
|
1093
|
+
]
|
1094
|
+
|
1095
|
+
[[package]]
|
1096
|
+
name = "winapi-util"
|
1097
|
+
version = "0.1.11"
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1099
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
1100
|
+
dependencies = [
|
1101
|
+
"windows-sys 0.61.0",
|
1102
|
+
]
|
1103
|
+
|
1104
|
+
[[package]]
|
1105
|
+
name = "windows-link"
|
1106
|
+
version = "0.1.3"
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1108
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
1109
|
+
|
1110
|
+
[[package]]
|
1111
|
+
name = "windows-link"
|
1112
|
+
version = "0.2.0"
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
1115
|
+
|
1116
|
+
[[package]]
|
1117
|
+
name = "windows-sys"
|
1118
|
+
version = "0.60.2"
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1120
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
1121
|
+
dependencies = [
|
1122
|
+
"windows-targets",
|
1123
|
+
]
|
1124
|
+
|
1125
|
+
[[package]]
|
1126
|
+
name = "windows-sys"
|
1127
|
+
version = "0.61.0"
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1129
|
+
checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
|
1130
|
+
dependencies = [
|
1131
|
+
"windows-link 0.2.0",
|
1132
|
+
]
|
1133
|
+
|
1134
|
+
[[package]]
|
1135
|
+
name = "windows-targets"
|
1136
|
+
version = "0.53.3"
|
1137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1138
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
1139
|
+
dependencies = [
|
1140
|
+
"windows-link 0.1.3",
|
1141
|
+
"windows_aarch64_gnullvm",
|
1142
|
+
"windows_aarch64_msvc",
|
1143
|
+
"windows_i686_gnu",
|
1144
|
+
"windows_i686_gnullvm",
|
1145
|
+
"windows_i686_msvc",
|
1146
|
+
"windows_x86_64_gnu",
|
1147
|
+
"windows_x86_64_gnullvm",
|
1148
|
+
"windows_x86_64_msvc",
|
1149
|
+
]
|
1150
|
+
|
1151
|
+
[[package]]
|
1152
|
+
name = "windows_aarch64_gnullvm"
|
1153
|
+
version = "0.53.0"
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1155
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1156
|
+
|
1157
|
+
[[package]]
|
1158
|
+
name = "windows_aarch64_msvc"
|
1159
|
+
version = "0.53.0"
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1161
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1162
|
+
|
1163
|
+
[[package]]
|
1164
|
+
name = "windows_i686_gnu"
|
1165
|
+
version = "0.53.0"
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1167
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
1168
|
+
|
1169
|
+
[[package]]
|
1170
|
+
name = "windows_i686_gnullvm"
|
1171
|
+
version = "0.53.0"
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1173
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1174
|
+
|
1175
|
+
[[package]]
|
1176
|
+
name = "windows_i686_msvc"
|
1177
|
+
version = "0.53.0"
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1179
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1180
|
+
|
1181
|
+
[[package]]
|
1182
|
+
name = "windows_x86_64_gnu"
|
1183
|
+
version = "0.53.0"
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1185
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1186
|
+
|
1187
|
+
[[package]]
|
1188
|
+
name = "windows_x86_64_gnullvm"
|
1189
|
+
version = "0.53.0"
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1191
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1192
|
+
|
1193
|
+
[[package]]
|
1194
|
+
name = "windows_x86_64_msvc"
|
1195
|
+
version = "0.53.0"
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1197
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
1198
|
+
|
1199
|
+
[[package]]
|
1200
|
+
name = "xdg"
|
1201
|
+
version = "2.5.2"
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1203
|
+
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
|
1204
|
+
|
1205
|
+
[[package]]
|
1206
|
+
name = "yaml-rust"
|
1207
|
+
version = "0.4.5"
|
1208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1209
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
1210
|
+
dependencies = [
|
1211
|
+
"linked-hash-map",
|
1212
|
+
]
|