commonmarker 0.23.10 → 2.3.2
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 +1246 -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 +103 -0
- data/ext/commonmarker/src/node.rs +1221 -0
- data/ext/commonmarker/src/options.rs +229 -0
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +166 -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,1246 @@
|
|
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.19"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
|
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.3"
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
+
checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
|
55
|
+
dependencies = [
|
56
|
+
"windows-sys 0.59.0",
|
57
|
+
]
|
58
|
+
|
59
|
+
[[package]]
|
60
|
+
name = "anstyle-wincon"
|
61
|
+
version = "3.0.9"
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
63
|
+
checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
|
64
|
+
dependencies = [
|
65
|
+
"anstyle",
|
66
|
+
"once_cell_polyfill",
|
67
|
+
"windows-sys 0.59.0",
|
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.1",
|
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.1"
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
130
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
131
|
+
|
132
|
+
[[package]]
|
133
|
+
name = "bon"
|
134
|
+
version = "3.6.5"
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
+
checksum = "33d9ef19ae5263a138da9a86871eca537478ab0332a7770bac7e3f08b801f89f"
|
137
|
+
dependencies = [
|
138
|
+
"bon-macros",
|
139
|
+
"rustversion",
|
140
|
+
]
|
141
|
+
|
142
|
+
[[package]]
|
143
|
+
name = "bon-macros"
|
144
|
+
version = "3.6.5"
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
|
+
checksum = "577ae008f2ca11ca7641bd44601002ee5ab49ef0af64846ce1ab6057218a5cc1"
|
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.31"
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
+
checksum = "c3a42d84bb6b69d3a8b3eaacf0d88f179e1929695e1ad012b6cf64d9caaa5fd2"
|
177
|
+
dependencies = [
|
178
|
+
"shlex",
|
179
|
+
]
|
180
|
+
|
181
|
+
[[package]]
|
182
|
+
name = "cexpr"
|
183
|
+
version = "0.6.0"
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
185
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
186
|
+
dependencies = [
|
187
|
+
"nom",
|
188
|
+
]
|
189
|
+
|
190
|
+
[[package]]
|
191
|
+
name = "cfg-if"
|
192
|
+
version = "1.0.1"
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
194
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
195
|
+
|
196
|
+
[[package]]
|
197
|
+
name = "clang-sys"
|
198
|
+
version = "1.8.1"
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
201
|
+
dependencies = [
|
202
|
+
"glob",
|
203
|
+
"libc",
|
204
|
+
"libloading",
|
205
|
+
]
|
206
|
+
|
207
|
+
[[package]]
|
208
|
+
name = "clap"
|
209
|
+
version = "4.5.42"
|
210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
211
|
+
checksum = "ed87a9d530bb41a67537289bafcac159cb3ee28460e0a4571123d2a778a6a882"
|
212
|
+
dependencies = [
|
213
|
+
"clap_builder",
|
214
|
+
"clap_derive",
|
215
|
+
]
|
216
|
+
|
217
|
+
[[package]]
|
218
|
+
name = "clap_builder"
|
219
|
+
version = "4.5.42"
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
221
|
+
checksum = "64f4f3f3c77c94aff3c7e9aac9a2ca1974a5adf392a8bb751e827d6d127ab966"
|
222
|
+
dependencies = [
|
223
|
+
"anstream",
|
224
|
+
"anstyle",
|
225
|
+
"clap_lex",
|
226
|
+
"strsim",
|
227
|
+
"terminal_size",
|
228
|
+
]
|
229
|
+
|
230
|
+
[[package]]
|
231
|
+
name = "clap_derive"
|
232
|
+
version = "4.5.41"
|
233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
234
|
+
checksum = "ef4f52386a59ca4c860f7393bcf8abd8dfd91ecccc0f774635ff68e92eeef491"
|
235
|
+
dependencies = [
|
236
|
+
"heck",
|
237
|
+
"proc-macro2",
|
238
|
+
"quote",
|
239
|
+
"syn",
|
240
|
+
]
|
241
|
+
|
242
|
+
[[package]]
|
243
|
+
name = "clap_lex"
|
244
|
+
version = "0.7.5"
|
245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
246
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
247
|
+
|
248
|
+
[[package]]
|
249
|
+
name = "colorchoice"
|
250
|
+
version = "1.0.4"
|
251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
252
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
253
|
+
|
254
|
+
[[package]]
|
255
|
+
name = "commonmarker"
|
256
|
+
version = "1.0.0"
|
257
|
+
dependencies = [
|
258
|
+
"comrak",
|
259
|
+
"magnus",
|
260
|
+
"rb-sys",
|
261
|
+
"rctree",
|
262
|
+
"syntect",
|
263
|
+
"typed-arena",
|
264
|
+
]
|
265
|
+
|
266
|
+
[[package]]
|
267
|
+
name = "comrak"
|
268
|
+
version = "0.41.0"
|
269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
270
|
+
checksum = "57c9011f1cb8ff2306380cd0cd455611341d0a064bf7907234c3da4c6babb423"
|
271
|
+
dependencies = [
|
272
|
+
"bon",
|
273
|
+
"caseless",
|
274
|
+
"clap",
|
275
|
+
"emojis",
|
276
|
+
"entities",
|
277
|
+
"memchr",
|
278
|
+
"shell-words",
|
279
|
+
"slug",
|
280
|
+
"syntect",
|
281
|
+
"typed-arena",
|
282
|
+
"unicode_categories",
|
283
|
+
"xdg",
|
284
|
+
]
|
285
|
+
|
286
|
+
[[package]]
|
287
|
+
name = "crc32fast"
|
288
|
+
version = "1.5.0"
|
289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
290
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
291
|
+
dependencies = [
|
292
|
+
"cfg-if",
|
293
|
+
]
|
294
|
+
|
295
|
+
[[package]]
|
296
|
+
name = "darling"
|
297
|
+
version = "0.21.1"
|
298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
299
|
+
checksum = "d6b136475da5ef7b6ac596c0e956e37bad51b85b987ff3d5e230e964936736b2"
|
300
|
+
dependencies = [
|
301
|
+
"darling_core",
|
302
|
+
"darling_macro",
|
303
|
+
]
|
304
|
+
|
305
|
+
[[package]]
|
306
|
+
name = "darling_core"
|
307
|
+
version = "0.21.1"
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
|
+
checksum = "b44ad32f92b75fb438b04b68547e521a548be8acc339a6dacc4a7121488f53e6"
|
310
|
+
dependencies = [
|
311
|
+
"fnv",
|
312
|
+
"ident_case",
|
313
|
+
"proc-macro2",
|
314
|
+
"quote",
|
315
|
+
"strsim",
|
316
|
+
"syn",
|
317
|
+
]
|
318
|
+
|
319
|
+
[[package]]
|
320
|
+
name = "darling_macro"
|
321
|
+
version = "0.21.1"
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
323
|
+
checksum = "2b5be8a7a562d315a5b92a630c30cec6bcf663e6673f00fbb69cca66a6f521b9"
|
324
|
+
dependencies = [
|
325
|
+
"darling_core",
|
326
|
+
"quote",
|
327
|
+
"syn",
|
328
|
+
]
|
329
|
+
|
330
|
+
[[package]]
|
331
|
+
name = "deranged"
|
332
|
+
version = "0.4.0"
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
334
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
335
|
+
dependencies = [
|
336
|
+
"powerfmt",
|
337
|
+
]
|
338
|
+
|
339
|
+
[[package]]
|
340
|
+
name = "deunicode"
|
341
|
+
version = "1.6.2"
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
344
|
+
|
345
|
+
[[package]]
|
346
|
+
name = "either"
|
347
|
+
version = "1.15.0"
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
349
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
350
|
+
|
351
|
+
[[package]]
|
352
|
+
name = "emojis"
|
353
|
+
version = "0.6.4"
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
+
checksum = "99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4"
|
356
|
+
dependencies = [
|
357
|
+
"phf",
|
358
|
+
]
|
359
|
+
|
360
|
+
[[package]]
|
361
|
+
name = "entities"
|
362
|
+
version = "1.0.1"
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
365
|
+
|
366
|
+
[[package]]
|
367
|
+
name = "equivalent"
|
368
|
+
version = "1.0.2"
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
370
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
371
|
+
|
372
|
+
[[package]]
|
373
|
+
name = "errno"
|
374
|
+
version = "0.3.13"
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
376
|
+
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
|
377
|
+
dependencies = [
|
378
|
+
"libc",
|
379
|
+
"windows-sys 0.60.2",
|
380
|
+
]
|
381
|
+
|
382
|
+
[[package]]
|
383
|
+
name = "fancy-regex"
|
384
|
+
version = "0.11.0"
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
386
|
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
387
|
+
dependencies = [
|
388
|
+
"bit-set",
|
389
|
+
"regex",
|
390
|
+
]
|
391
|
+
|
392
|
+
[[package]]
|
393
|
+
name = "flate2"
|
394
|
+
version = "1.1.2"
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
396
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
397
|
+
dependencies = [
|
398
|
+
"crc32fast",
|
399
|
+
"miniz_oxide",
|
400
|
+
]
|
401
|
+
|
402
|
+
[[package]]
|
403
|
+
name = "fnv"
|
404
|
+
version = "1.0.7"
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
406
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
407
|
+
|
408
|
+
[[package]]
|
409
|
+
name = "glob"
|
410
|
+
version = "0.3.2"
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
412
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
413
|
+
|
414
|
+
[[package]]
|
415
|
+
name = "hashbrown"
|
416
|
+
version = "0.15.4"
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
418
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
419
|
+
|
420
|
+
[[package]]
|
421
|
+
name = "heck"
|
422
|
+
version = "0.5.0"
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
424
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
425
|
+
|
426
|
+
[[package]]
|
427
|
+
name = "ident_case"
|
428
|
+
version = "1.0.1"
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
431
|
+
|
432
|
+
[[package]]
|
433
|
+
name = "indexmap"
|
434
|
+
version = "2.10.0"
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
436
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
437
|
+
dependencies = [
|
438
|
+
"equivalent",
|
439
|
+
"hashbrown",
|
440
|
+
]
|
441
|
+
|
442
|
+
[[package]]
|
443
|
+
name = "is_terminal_polyfill"
|
444
|
+
version = "1.70.1"
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
446
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
447
|
+
|
448
|
+
[[package]]
|
449
|
+
name = "itertools"
|
450
|
+
version = "0.12.1"
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
453
|
+
dependencies = [
|
454
|
+
"either",
|
455
|
+
]
|
456
|
+
|
457
|
+
[[package]]
|
458
|
+
name = "itoa"
|
459
|
+
version = "1.0.15"
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
462
|
+
|
463
|
+
[[package]]
|
464
|
+
name = "lazy_static"
|
465
|
+
version = "1.5.0"
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
467
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
468
|
+
|
469
|
+
[[package]]
|
470
|
+
name = "lazycell"
|
471
|
+
version = "1.3.0"
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
474
|
+
|
475
|
+
[[package]]
|
476
|
+
name = "libc"
|
477
|
+
version = "0.2.174"
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
480
|
+
|
481
|
+
[[package]]
|
482
|
+
name = "libloading"
|
483
|
+
version = "0.8.8"
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
486
|
+
dependencies = [
|
487
|
+
"cfg-if",
|
488
|
+
"windows-targets 0.53.3",
|
489
|
+
]
|
490
|
+
|
491
|
+
[[package]]
|
492
|
+
name = "linked-hash-map"
|
493
|
+
version = "0.5.6"
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
495
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
496
|
+
|
497
|
+
[[package]]
|
498
|
+
name = "linux-raw-sys"
|
499
|
+
version = "0.9.4"
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
501
|
+
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
|
502
|
+
|
503
|
+
[[package]]
|
504
|
+
name = "log"
|
505
|
+
version = "0.4.27"
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
507
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
508
|
+
|
509
|
+
[[package]]
|
510
|
+
name = "magnus"
|
511
|
+
version = "0.7.1"
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
514
|
+
dependencies = [
|
515
|
+
"magnus-macros",
|
516
|
+
"rb-sys",
|
517
|
+
"rb-sys-env",
|
518
|
+
"seq-macro",
|
519
|
+
]
|
520
|
+
|
521
|
+
[[package]]
|
522
|
+
name = "magnus-macros"
|
523
|
+
version = "0.6.0"
|
524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
525
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
526
|
+
dependencies = [
|
527
|
+
"proc-macro2",
|
528
|
+
"quote",
|
529
|
+
"syn",
|
530
|
+
]
|
531
|
+
|
532
|
+
[[package]]
|
533
|
+
name = "memchr"
|
534
|
+
version = "2.7.5"
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
537
|
+
|
538
|
+
[[package]]
|
539
|
+
name = "minimal-lexical"
|
540
|
+
version = "0.2.1"
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
542
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
543
|
+
|
544
|
+
[[package]]
|
545
|
+
name = "miniz_oxide"
|
546
|
+
version = "0.8.9"
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
548
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
549
|
+
dependencies = [
|
550
|
+
"adler2",
|
551
|
+
]
|
552
|
+
|
553
|
+
[[package]]
|
554
|
+
name = "nom"
|
555
|
+
version = "7.1.3"
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
557
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
558
|
+
dependencies = [
|
559
|
+
"memchr",
|
560
|
+
"minimal-lexical",
|
561
|
+
]
|
562
|
+
|
563
|
+
[[package]]
|
564
|
+
name = "num-conv"
|
565
|
+
version = "0.1.0"
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
567
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
568
|
+
|
569
|
+
[[package]]
|
570
|
+
name = "once_cell"
|
571
|
+
version = "1.21.3"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
574
|
+
|
575
|
+
[[package]]
|
576
|
+
name = "once_cell_polyfill"
|
577
|
+
version = "1.70.1"
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
579
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
580
|
+
|
581
|
+
[[package]]
|
582
|
+
name = "onig"
|
583
|
+
version = "6.5.1"
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
585
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
586
|
+
dependencies = [
|
587
|
+
"bitflags 2.9.1",
|
588
|
+
"libc",
|
589
|
+
"once_cell",
|
590
|
+
"onig_sys",
|
591
|
+
]
|
592
|
+
|
593
|
+
[[package]]
|
594
|
+
name = "onig_sys"
|
595
|
+
version = "69.9.1"
|
596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
597
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
598
|
+
dependencies = [
|
599
|
+
"cc",
|
600
|
+
"pkg-config",
|
601
|
+
]
|
602
|
+
|
603
|
+
[[package]]
|
604
|
+
name = "phf"
|
605
|
+
version = "0.11.3"
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
607
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
608
|
+
dependencies = [
|
609
|
+
"phf_shared",
|
610
|
+
]
|
611
|
+
|
612
|
+
[[package]]
|
613
|
+
name = "phf_shared"
|
614
|
+
version = "0.11.3"
|
615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
616
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
617
|
+
dependencies = [
|
618
|
+
"siphasher",
|
619
|
+
]
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "pkg-config"
|
623
|
+
version = "0.3.32"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
626
|
+
|
627
|
+
[[package]]
|
628
|
+
name = "plist"
|
629
|
+
version = "1.7.4"
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
+
checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1"
|
632
|
+
dependencies = [
|
633
|
+
"base64",
|
634
|
+
"indexmap",
|
635
|
+
"quick-xml",
|
636
|
+
"serde",
|
637
|
+
"time",
|
638
|
+
]
|
639
|
+
|
640
|
+
[[package]]
|
641
|
+
name = "powerfmt"
|
642
|
+
version = "0.2.0"
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
644
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
645
|
+
|
646
|
+
[[package]]
|
647
|
+
name = "prettyplease"
|
648
|
+
version = "0.2.36"
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
650
|
+
checksum = "ff24dfcda44452b9816fff4cd4227e1bb73ff5a2f1bc1105aa92fb8565ce44d2"
|
651
|
+
dependencies = [
|
652
|
+
"proc-macro2",
|
653
|
+
"syn",
|
654
|
+
]
|
655
|
+
|
656
|
+
[[package]]
|
657
|
+
name = "proc-macro2"
|
658
|
+
version = "1.0.95"
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
660
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
661
|
+
dependencies = [
|
662
|
+
"unicode-ident",
|
663
|
+
]
|
664
|
+
|
665
|
+
[[package]]
|
666
|
+
name = "quick-xml"
|
667
|
+
version = "0.38.1"
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
+
checksum = "9845d9dccf565065824e69f9f235fafba1587031eda353c1f1561cd6a6be78f4"
|
670
|
+
dependencies = [
|
671
|
+
"memchr",
|
672
|
+
]
|
673
|
+
|
674
|
+
[[package]]
|
675
|
+
name = "quote"
|
676
|
+
version = "1.0.40"
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
678
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
679
|
+
dependencies = [
|
680
|
+
"proc-macro2",
|
681
|
+
]
|
682
|
+
|
683
|
+
[[package]]
|
684
|
+
name = "rb-sys"
|
685
|
+
version = "0.9.117"
|
686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
687
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
688
|
+
dependencies = [
|
689
|
+
"rb-sys-build",
|
690
|
+
]
|
691
|
+
|
692
|
+
[[package]]
|
693
|
+
name = "rb-sys-build"
|
694
|
+
version = "0.9.117"
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
697
|
+
dependencies = [
|
698
|
+
"bindgen",
|
699
|
+
"lazy_static",
|
700
|
+
"proc-macro2",
|
701
|
+
"quote",
|
702
|
+
"regex",
|
703
|
+
"shell-words",
|
704
|
+
"syn",
|
705
|
+
]
|
706
|
+
|
707
|
+
[[package]]
|
708
|
+
name = "rb-sys-env"
|
709
|
+
version = "0.1.2"
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
711
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
712
|
+
|
713
|
+
[[package]]
|
714
|
+
name = "rctree"
|
715
|
+
version = "0.6.0"
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
+
checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
718
|
+
|
719
|
+
[[package]]
|
720
|
+
name = "regex"
|
721
|
+
version = "1.11.1"
|
722
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
723
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
724
|
+
dependencies = [
|
725
|
+
"aho-corasick",
|
726
|
+
"memchr",
|
727
|
+
"regex-automata",
|
728
|
+
"regex-syntax",
|
729
|
+
]
|
730
|
+
|
731
|
+
[[package]]
|
732
|
+
name = "regex-automata"
|
733
|
+
version = "0.4.9"
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
735
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
736
|
+
dependencies = [
|
737
|
+
"aho-corasick",
|
738
|
+
"memchr",
|
739
|
+
"regex-syntax",
|
740
|
+
]
|
741
|
+
|
742
|
+
[[package]]
|
743
|
+
name = "regex-syntax"
|
744
|
+
version = "0.8.5"
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
747
|
+
|
748
|
+
[[package]]
|
749
|
+
name = "rustc-hash"
|
750
|
+
version = "1.1.0"
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
753
|
+
|
754
|
+
[[package]]
|
755
|
+
name = "rustix"
|
756
|
+
version = "1.0.8"
|
757
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
758
|
+
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
|
759
|
+
dependencies = [
|
760
|
+
"bitflags 2.9.1",
|
761
|
+
"errno",
|
762
|
+
"libc",
|
763
|
+
"linux-raw-sys",
|
764
|
+
"windows-sys 0.60.2",
|
765
|
+
]
|
766
|
+
|
767
|
+
[[package]]
|
768
|
+
name = "rustversion"
|
769
|
+
version = "1.0.21"
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
771
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
772
|
+
|
773
|
+
[[package]]
|
774
|
+
name = "ryu"
|
775
|
+
version = "1.0.20"
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
777
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
778
|
+
|
779
|
+
[[package]]
|
780
|
+
name = "same-file"
|
781
|
+
version = "1.0.6"
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
784
|
+
dependencies = [
|
785
|
+
"winapi-util",
|
786
|
+
]
|
787
|
+
|
788
|
+
[[package]]
|
789
|
+
name = "seq-macro"
|
790
|
+
version = "0.3.6"
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
793
|
+
|
794
|
+
[[package]]
|
795
|
+
name = "serde"
|
796
|
+
version = "1.0.219"
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
798
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
799
|
+
dependencies = [
|
800
|
+
"serde_derive",
|
801
|
+
]
|
802
|
+
|
803
|
+
[[package]]
|
804
|
+
name = "serde_derive"
|
805
|
+
version = "1.0.219"
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
808
|
+
dependencies = [
|
809
|
+
"proc-macro2",
|
810
|
+
"quote",
|
811
|
+
"syn",
|
812
|
+
]
|
813
|
+
|
814
|
+
[[package]]
|
815
|
+
name = "serde_json"
|
816
|
+
version = "1.0.142"
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
818
|
+
checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
|
819
|
+
dependencies = [
|
820
|
+
"itoa",
|
821
|
+
"memchr",
|
822
|
+
"ryu",
|
823
|
+
"serde",
|
824
|
+
]
|
825
|
+
|
826
|
+
[[package]]
|
827
|
+
name = "shell-words"
|
828
|
+
version = "1.1.0"
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
830
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
831
|
+
|
832
|
+
[[package]]
|
833
|
+
name = "shlex"
|
834
|
+
version = "1.3.0"
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
837
|
+
|
838
|
+
[[package]]
|
839
|
+
name = "siphasher"
|
840
|
+
version = "1.0.1"
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
843
|
+
|
844
|
+
[[package]]
|
845
|
+
name = "slug"
|
846
|
+
version = "0.1.6"
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
+
checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
|
849
|
+
dependencies = [
|
850
|
+
"deunicode",
|
851
|
+
"wasm-bindgen",
|
852
|
+
]
|
853
|
+
|
854
|
+
[[package]]
|
855
|
+
name = "strsim"
|
856
|
+
version = "0.11.1"
|
857
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
858
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
859
|
+
|
860
|
+
[[package]]
|
861
|
+
name = "syn"
|
862
|
+
version = "2.0.104"
|
863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
864
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
865
|
+
dependencies = [
|
866
|
+
"proc-macro2",
|
867
|
+
"quote",
|
868
|
+
"unicode-ident",
|
869
|
+
]
|
870
|
+
|
871
|
+
[[package]]
|
872
|
+
name = "syntect"
|
873
|
+
version = "5.2.0"
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
875
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
876
|
+
dependencies = [
|
877
|
+
"bincode",
|
878
|
+
"bitflags 1.3.2",
|
879
|
+
"fancy-regex",
|
880
|
+
"flate2",
|
881
|
+
"fnv",
|
882
|
+
"once_cell",
|
883
|
+
"onig",
|
884
|
+
"plist",
|
885
|
+
"regex-syntax",
|
886
|
+
"serde",
|
887
|
+
"serde_derive",
|
888
|
+
"serde_json",
|
889
|
+
"thiserror",
|
890
|
+
"walkdir",
|
891
|
+
"yaml-rust",
|
892
|
+
]
|
893
|
+
|
894
|
+
[[package]]
|
895
|
+
name = "terminal_size"
|
896
|
+
version = "0.4.2"
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
898
|
+
checksum = "45c6481c4829e4cc63825e62c49186a34538b7b2750b73b266581ffb612fb5ed"
|
899
|
+
dependencies = [
|
900
|
+
"rustix",
|
901
|
+
"windows-sys 0.59.0",
|
902
|
+
]
|
903
|
+
|
904
|
+
[[package]]
|
905
|
+
name = "thiserror"
|
906
|
+
version = "1.0.69"
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
908
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
909
|
+
dependencies = [
|
910
|
+
"thiserror-impl",
|
911
|
+
]
|
912
|
+
|
913
|
+
[[package]]
|
914
|
+
name = "thiserror-impl"
|
915
|
+
version = "1.0.69"
|
916
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
918
|
+
dependencies = [
|
919
|
+
"proc-macro2",
|
920
|
+
"quote",
|
921
|
+
"syn",
|
922
|
+
]
|
923
|
+
|
924
|
+
[[package]]
|
925
|
+
name = "time"
|
926
|
+
version = "0.3.41"
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
928
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
929
|
+
dependencies = [
|
930
|
+
"deranged",
|
931
|
+
"itoa",
|
932
|
+
"num-conv",
|
933
|
+
"powerfmt",
|
934
|
+
"serde",
|
935
|
+
"time-core",
|
936
|
+
"time-macros",
|
937
|
+
]
|
938
|
+
|
939
|
+
[[package]]
|
940
|
+
name = "time-core"
|
941
|
+
version = "0.1.4"
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
943
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
944
|
+
|
945
|
+
[[package]]
|
946
|
+
name = "time-macros"
|
947
|
+
version = "0.2.22"
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
949
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
950
|
+
dependencies = [
|
951
|
+
"num-conv",
|
952
|
+
"time-core",
|
953
|
+
]
|
954
|
+
|
955
|
+
[[package]]
|
956
|
+
name = "tinyvec"
|
957
|
+
version = "1.9.0"
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
959
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
960
|
+
dependencies = [
|
961
|
+
"tinyvec_macros",
|
962
|
+
]
|
963
|
+
|
964
|
+
[[package]]
|
965
|
+
name = "tinyvec_macros"
|
966
|
+
version = "0.1.1"
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
968
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
969
|
+
|
970
|
+
[[package]]
|
971
|
+
name = "typed-arena"
|
972
|
+
version = "2.0.2"
|
973
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
974
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
975
|
+
|
976
|
+
[[package]]
|
977
|
+
name = "unicode-ident"
|
978
|
+
version = "1.0.18"
|
979
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
980
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
981
|
+
|
982
|
+
[[package]]
|
983
|
+
name = "unicode-normalization"
|
984
|
+
version = "0.1.24"
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
987
|
+
dependencies = [
|
988
|
+
"tinyvec",
|
989
|
+
]
|
990
|
+
|
991
|
+
[[package]]
|
992
|
+
name = "unicode_categories"
|
993
|
+
version = "0.1.1"
|
994
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
995
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
996
|
+
|
997
|
+
[[package]]
|
998
|
+
name = "utf8parse"
|
999
|
+
version = "0.2.2"
|
1000
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1001
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
1002
|
+
|
1003
|
+
[[package]]
|
1004
|
+
name = "walkdir"
|
1005
|
+
version = "2.5.0"
|
1006
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1007
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1008
|
+
dependencies = [
|
1009
|
+
"same-file",
|
1010
|
+
"winapi-util",
|
1011
|
+
]
|
1012
|
+
|
1013
|
+
[[package]]
|
1014
|
+
name = "wasm-bindgen"
|
1015
|
+
version = "0.2.100"
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1017
|
+
checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
|
1018
|
+
dependencies = [
|
1019
|
+
"cfg-if",
|
1020
|
+
"once_cell",
|
1021
|
+
"rustversion",
|
1022
|
+
"wasm-bindgen-macro",
|
1023
|
+
]
|
1024
|
+
|
1025
|
+
[[package]]
|
1026
|
+
name = "wasm-bindgen-backend"
|
1027
|
+
version = "0.2.100"
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
+
checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
|
1030
|
+
dependencies = [
|
1031
|
+
"bumpalo",
|
1032
|
+
"log",
|
1033
|
+
"proc-macro2",
|
1034
|
+
"quote",
|
1035
|
+
"syn",
|
1036
|
+
"wasm-bindgen-shared",
|
1037
|
+
]
|
1038
|
+
|
1039
|
+
[[package]]
|
1040
|
+
name = "wasm-bindgen-macro"
|
1041
|
+
version = "0.2.100"
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1043
|
+
checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
|
1044
|
+
dependencies = [
|
1045
|
+
"quote",
|
1046
|
+
"wasm-bindgen-macro-support",
|
1047
|
+
]
|
1048
|
+
|
1049
|
+
[[package]]
|
1050
|
+
name = "wasm-bindgen-macro-support"
|
1051
|
+
version = "0.2.100"
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1053
|
+
checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
|
1054
|
+
dependencies = [
|
1055
|
+
"proc-macro2",
|
1056
|
+
"quote",
|
1057
|
+
"syn",
|
1058
|
+
"wasm-bindgen-backend",
|
1059
|
+
"wasm-bindgen-shared",
|
1060
|
+
]
|
1061
|
+
|
1062
|
+
[[package]]
|
1063
|
+
name = "wasm-bindgen-shared"
|
1064
|
+
version = "0.2.100"
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1066
|
+
checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
|
1067
|
+
dependencies = [
|
1068
|
+
"unicode-ident",
|
1069
|
+
]
|
1070
|
+
|
1071
|
+
[[package]]
|
1072
|
+
name = "winapi-util"
|
1073
|
+
version = "0.1.9"
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1075
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1076
|
+
dependencies = [
|
1077
|
+
"windows-sys 0.59.0",
|
1078
|
+
]
|
1079
|
+
|
1080
|
+
[[package]]
|
1081
|
+
name = "windows-link"
|
1082
|
+
version = "0.1.3"
|
1083
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1084
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
1085
|
+
|
1086
|
+
[[package]]
|
1087
|
+
name = "windows-sys"
|
1088
|
+
version = "0.59.0"
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1091
|
+
dependencies = [
|
1092
|
+
"windows-targets 0.52.6",
|
1093
|
+
]
|
1094
|
+
|
1095
|
+
[[package]]
|
1096
|
+
name = "windows-sys"
|
1097
|
+
version = "0.60.2"
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1099
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
1100
|
+
dependencies = [
|
1101
|
+
"windows-targets 0.53.3",
|
1102
|
+
]
|
1103
|
+
|
1104
|
+
[[package]]
|
1105
|
+
name = "windows-targets"
|
1106
|
+
version = "0.52.6"
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1108
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1109
|
+
dependencies = [
|
1110
|
+
"windows_aarch64_gnullvm 0.52.6",
|
1111
|
+
"windows_aarch64_msvc 0.52.6",
|
1112
|
+
"windows_i686_gnu 0.52.6",
|
1113
|
+
"windows_i686_gnullvm 0.52.6",
|
1114
|
+
"windows_i686_msvc 0.52.6",
|
1115
|
+
"windows_x86_64_gnu 0.52.6",
|
1116
|
+
"windows_x86_64_gnullvm 0.52.6",
|
1117
|
+
"windows_x86_64_msvc 0.52.6",
|
1118
|
+
]
|
1119
|
+
|
1120
|
+
[[package]]
|
1121
|
+
name = "windows-targets"
|
1122
|
+
version = "0.53.3"
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1124
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
1125
|
+
dependencies = [
|
1126
|
+
"windows-link",
|
1127
|
+
"windows_aarch64_gnullvm 0.53.0",
|
1128
|
+
"windows_aarch64_msvc 0.53.0",
|
1129
|
+
"windows_i686_gnu 0.53.0",
|
1130
|
+
"windows_i686_gnullvm 0.53.0",
|
1131
|
+
"windows_i686_msvc 0.53.0",
|
1132
|
+
"windows_x86_64_gnu 0.53.0",
|
1133
|
+
"windows_x86_64_gnullvm 0.53.0",
|
1134
|
+
"windows_x86_64_msvc 0.53.0",
|
1135
|
+
]
|
1136
|
+
|
1137
|
+
[[package]]
|
1138
|
+
name = "windows_aarch64_gnullvm"
|
1139
|
+
version = "0.52.6"
|
1140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1141
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1142
|
+
|
1143
|
+
[[package]]
|
1144
|
+
name = "windows_aarch64_gnullvm"
|
1145
|
+
version = "0.53.0"
|
1146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1147
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1148
|
+
|
1149
|
+
[[package]]
|
1150
|
+
name = "windows_aarch64_msvc"
|
1151
|
+
version = "0.52.6"
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1153
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1154
|
+
|
1155
|
+
[[package]]
|
1156
|
+
name = "windows_aarch64_msvc"
|
1157
|
+
version = "0.53.0"
|
1158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1159
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1160
|
+
|
1161
|
+
[[package]]
|
1162
|
+
name = "windows_i686_gnu"
|
1163
|
+
version = "0.52.6"
|
1164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1165
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1166
|
+
|
1167
|
+
[[package]]
|
1168
|
+
name = "windows_i686_gnu"
|
1169
|
+
version = "0.53.0"
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1171
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
1172
|
+
|
1173
|
+
[[package]]
|
1174
|
+
name = "windows_i686_gnullvm"
|
1175
|
+
version = "0.52.6"
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1177
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1178
|
+
|
1179
|
+
[[package]]
|
1180
|
+
name = "windows_i686_gnullvm"
|
1181
|
+
version = "0.53.0"
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1183
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1184
|
+
|
1185
|
+
[[package]]
|
1186
|
+
name = "windows_i686_msvc"
|
1187
|
+
version = "0.52.6"
|
1188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1189
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1190
|
+
|
1191
|
+
[[package]]
|
1192
|
+
name = "windows_i686_msvc"
|
1193
|
+
version = "0.53.0"
|
1194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1195
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1196
|
+
|
1197
|
+
[[package]]
|
1198
|
+
name = "windows_x86_64_gnu"
|
1199
|
+
version = "0.52.6"
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1201
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1202
|
+
|
1203
|
+
[[package]]
|
1204
|
+
name = "windows_x86_64_gnu"
|
1205
|
+
version = "0.53.0"
|
1206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1207
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1208
|
+
|
1209
|
+
[[package]]
|
1210
|
+
name = "windows_x86_64_gnullvm"
|
1211
|
+
version = "0.52.6"
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1213
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1214
|
+
|
1215
|
+
[[package]]
|
1216
|
+
name = "windows_x86_64_gnullvm"
|
1217
|
+
version = "0.53.0"
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1219
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1220
|
+
|
1221
|
+
[[package]]
|
1222
|
+
name = "windows_x86_64_msvc"
|
1223
|
+
version = "0.52.6"
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1225
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1226
|
+
|
1227
|
+
[[package]]
|
1228
|
+
name = "windows_x86_64_msvc"
|
1229
|
+
version = "0.53.0"
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1231
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
1232
|
+
|
1233
|
+
[[package]]
|
1234
|
+
name = "xdg"
|
1235
|
+
version = "2.5.2"
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1237
|
+
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
|
1238
|
+
|
1239
|
+
[[package]]
|
1240
|
+
name = "yaml-rust"
|
1241
|
+
version = "0.4.5"
|
1242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1243
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
1244
|
+
dependencies = [
|
1245
|
+
"linked-hash-map",
|
1246
|
+
]
|