commonmarker 0.23.10 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +1182 -0
- data/Cargo.toml +7 -0
- data/README.md +217 -170
- 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 +1151 -0
- data/ext/commonmarker/src/options.rs +175 -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 +92 -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 -186
- 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,1182 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "adler"
|
7
|
+
version = "1.0.2"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
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.14"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
|
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.7"
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
39
|
+
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "anstyle-parse"
|
43
|
+
version = "0.2.4"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
|
46
|
+
dependencies = [
|
47
|
+
"utf8parse",
|
48
|
+
]
|
49
|
+
|
50
|
+
[[package]]
|
51
|
+
name = "anstyle-query"
|
52
|
+
version = "1.0.3"
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
+
checksum = "a64c907d4e79225ac72e2a354c9ce84d50ebb4586dee56c82b3ee73004f537f5"
|
55
|
+
dependencies = [
|
56
|
+
"windows-sys 0.52.0",
|
57
|
+
]
|
58
|
+
|
59
|
+
[[package]]
|
60
|
+
name = "anstyle-wincon"
|
61
|
+
version = "3.0.3"
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
63
|
+
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
|
64
|
+
dependencies = [
|
65
|
+
"anstyle",
|
66
|
+
"windows-sys 0.52.0",
|
67
|
+
]
|
68
|
+
|
69
|
+
[[package]]
|
70
|
+
name = "base64"
|
71
|
+
version = "0.21.7"
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
74
|
+
|
75
|
+
[[package]]
|
76
|
+
name = "bincode"
|
77
|
+
version = "1.3.3"
|
78
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
79
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
80
|
+
dependencies = [
|
81
|
+
"serde",
|
82
|
+
]
|
83
|
+
|
84
|
+
[[package]]
|
85
|
+
name = "bindgen"
|
86
|
+
version = "0.69.4"
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
88
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
89
|
+
dependencies = [
|
90
|
+
"bitflags 2.5.0",
|
91
|
+
"cexpr",
|
92
|
+
"clang-sys",
|
93
|
+
"itertools",
|
94
|
+
"lazy_static",
|
95
|
+
"lazycell",
|
96
|
+
"proc-macro2",
|
97
|
+
"quote",
|
98
|
+
"regex",
|
99
|
+
"rustc-hash",
|
100
|
+
"shlex",
|
101
|
+
"syn",
|
102
|
+
]
|
103
|
+
|
104
|
+
[[package]]
|
105
|
+
name = "bit-set"
|
106
|
+
version = "0.5.3"
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
108
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
109
|
+
dependencies = [
|
110
|
+
"bit-vec",
|
111
|
+
]
|
112
|
+
|
113
|
+
[[package]]
|
114
|
+
name = "bit-vec"
|
115
|
+
version = "0.6.3"
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
117
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
118
|
+
|
119
|
+
[[package]]
|
120
|
+
name = "bitflags"
|
121
|
+
version = "1.3.2"
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
123
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
124
|
+
|
125
|
+
[[package]]
|
126
|
+
name = "bitflags"
|
127
|
+
version = "2.5.0"
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
129
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
130
|
+
|
131
|
+
[[package]]
|
132
|
+
name = "bumpalo"
|
133
|
+
version = "3.16.0"
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
136
|
+
|
137
|
+
[[package]]
|
138
|
+
name = "cc"
|
139
|
+
version = "1.0.98"
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
141
|
+
checksum = "41c270e7540d725e65ac7f1b212ac8ce349719624d7bcff99f8e2e488e8cf03f"
|
142
|
+
|
143
|
+
[[package]]
|
144
|
+
name = "cexpr"
|
145
|
+
version = "0.6.0"
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
147
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
148
|
+
dependencies = [
|
149
|
+
"nom",
|
150
|
+
]
|
151
|
+
|
152
|
+
[[package]]
|
153
|
+
name = "cfg-if"
|
154
|
+
version = "1.0.0"
|
155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
156
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
157
|
+
|
158
|
+
[[package]]
|
159
|
+
name = "clang-sys"
|
160
|
+
version = "1.7.0"
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
163
|
+
dependencies = [
|
164
|
+
"glob",
|
165
|
+
"libc",
|
166
|
+
"libloading",
|
167
|
+
]
|
168
|
+
|
169
|
+
[[package]]
|
170
|
+
name = "clap"
|
171
|
+
version = "4.5.4"
|
172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
173
|
+
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
|
174
|
+
dependencies = [
|
175
|
+
"clap_builder",
|
176
|
+
"clap_derive",
|
177
|
+
]
|
178
|
+
|
179
|
+
[[package]]
|
180
|
+
name = "clap_builder"
|
181
|
+
version = "4.5.2"
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
183
|
+
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
|
184
|
+
dependencies = [
|
185
|
+
"anstream",
|
186
|
+
"anstyle",
|
187
|
+
"clap_lex",
|
188
|
+
"strsim",
|
189
|
+
"terminal_size",
|
190
|
+
]
|
191
|
+
|
192
|
+
[[package]]
|
193
|
+
name = "clap_derive"
|
194
|
+
version = "4.5.4"
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
196
|
+
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
|
197
|
+
dependencies = [
|
198
|
+
"heck",
|
199
|
+
"proc-macro2",
|
200
|
+
"quote",
|
201
|
+
"syn",
|
202
|
+
]
|
203
|
+
|
204
|
+
[[package]]
|
205
|
+
name = "clap_lex"
|
206
|
+
version = "0.7.0"
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
208
|
+
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
209
|
+
|
210
|
+
[[package]]
|
211
|
+
name = "colorchoice"
|
212
|
+
version = "1.0.1"
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
214
|
+
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
|
215
|
+
|
216
|
+
[[package]]
|
217
|
+
name = "commonmarker"
|
218
|
+
version = "1.0.0"
|
219
|
+
dependencies = [
|
220
|
+
"comrak",
|
221
|
+
"magnus",
|
222
|
+
"rb-sys",
|
223
|
+
"rctree",
|
224
|
+
"syntect",
|
225
|
+
"typed-arena",
|
226
|
+
]
|
227
|
+
|
228
|
+
[[package]]
|
229
|
+
name = "comrak"
|
230
|
+
version = "0.24.1"
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
+
checksum = "5a972c8ec1be8065f7b597b5f7f5b3be535db780280644aebdcd1966decf58dc"
|
233
|
+
dependencies = [
|
234
|
+
"clap",
|
235
|
+
"derive_builder",
|
236
|
+
"emojis",
|
237
|
+
"entities",
|
238
|
+
"memchr",
|
239
|
+
"once_cell",
|
240
|
+
"regex",
|
241
|
+
"shell-words",
|
242
|
+
"slug",
|
243
|
+
"syntect",
|
244
|
+
"typed-arena",
|
245
|
+
"unicode_categories",
|
246
|
+
"xdg",
|
247
|
+
]
|
248
|
+
|
249
|
+
[[package]]
|
250
|
+
name = "crc32fast"
|
251
|
+
version = "1.4.2"
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
254
|
+
dependencies = [
|
255
|
+
"cfg-if",
|
256
|
+
]
|
257
|
+
|
258
|
+
[[package]]
|
259
|
+
name = "darling"
|
260
|
+
version = "0.20.9"
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
+
checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1"
|
263
|
+
dependencies = [
|
264
|
+
"darling_core",
|
265
|
+
"darling_macro",
|
266
|
+
]
|
267
|
+
|
268
|
+
[[package]]
|
269
|
+
name = "darling_core"
|
270
|
+
version = "0.20.9"
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
+
checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120"
|
273
|
+
dependencies = [
|
274
|
+
"fnv",
|
275
|
+
"ident_case",
|
276
|
+
"proc-macro2",
|
277
|
+
"quote",
|
278
|
+
"strsim",
|
279
|
+
"syn",
|
280
|
+
]
|
281
|
+
|
282
|
+
[[package]]
|
283
|
+
name = "darling_macro"
|
284
|
+
version = "0.20.9"
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
+
checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178"
|
287
|
+
dependencies = [
|
288
|
+
"darling_core",
|
289
|
+
"quote",
|
290
|
+
"syn",
|
291
|
+
]
|
292
|
+
|
293
|
+
[[package]]
|
294
|
+
name = "deranged"
|
295
|
+
version = "0.3.11"
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
298
|
+
dependencies = [
|
299
|
+
"powerfmt",
|
300
|
+
]
|
301
|
+
|
302
|
+
[[package]]
|
303
|
+
name = "derive_builder"
|
304
|
+
version = "0.20.0"
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
+
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
|
307
|
+
dependencies = [
|
308
|
+
"derive_builder_macro",
|
309
|
+
]
|
310
|
+
|
311
|
+
[[package]]
|
312
|
+
name = "derive_builder_core"
|
313
|
+
version = "0.20.0"
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
315
|
+
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
|
316
|
+
dependencies = [
|
317
|
+
"darling",
|
318
|
+
"proc-macro2",
|
319
|
+
"quote",
|
320
|
+
"syn",
|
321
|
+
]
|
322
|
+
|
323
|
+
[[package]]
|
324
|
+
name = "derive_builder_macro"
|
325
|
+
version = "0.20.0"
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
+
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
|
328
|
+
dependencies = [
|
329
|
+
"derive_builder_core",
|
330
|
+
"syn",
|
331
|
+
]
|
332
|
+
|
333
|
+
[[package]]
|
334
|
+
name = "deunicode"
|
335
|
+
version = "1.6.0"
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
|
+
checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
|
338
|
+
|
339
|
+
[[package]]
|
340
|
+
name = "either"
|
341
|
+
version = "1.12.0"
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
+
checksum = "3dca9240753cf90908d7e4aac30f630662b02aebaa1b58a3cadabdb23385b58b"
|
344
|
+
|
345
|
+
[[package]]
|
346
|
+
name = "emojis"
|
347
|
+
version = "0.6.2"
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
349
|
+
checksum = "9f619a926616ae7149a0d82610b051134a0d6c4ae2962d990c06c847a445c5d9"
|
350
|
+
dependencies = [
|
351
|
+
"phf",
|
352
|
+
]
|
353
|
+
|
354
|
+
[[package]]
|
355
|
+
name = "entities"
|
356
|
+
version = "1.0.1"
|
357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
358
|
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
359
|
+
|
360
|
+
[[package]]
|
361
|
+
name = "equivalent"
|
362
|
+
version = "1.0.1"
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
365
|
+
|
366
|
+
[[package]]
|
367
|
+
name = "errno"
|
368
|
+
version = "0.3.9"
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
370
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
371
|
+
dependencies = [
|
372
|
+
"libc",
|
373
|
+
"windows-sys 0.52.0",
|
374
|
+
]
|
375
|
+
|
376
|
+
[[package]]
|
377
|
+
name = "fancy-regex"
|
378
|
+
version = "0.11.0"
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
381
|
+
dependencies = [
|
382
|
+
"bit-set",
|
383
|
+
"regex",
|
384
|
+
]
|
385
|
+
|
386
|
+
[[package]]
|
387
|
+
name = "flate2"
|
388
|
+
version = "1.0.30"
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
390
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
391
|
+
dependencies = [
|
392
|
+
"crc32fast",
|
393
|
+
"miniz_oxide",
|
394
|
+
]
|
395
|
+
|
396
|
+
[[package]]
|
397
|
+
name = "fnv"
|
398
|
+
version = "1.0.7"
|
399
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
400
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
401
|
+
|
402
|
+
[[package]]
|
403
|
+
name = "glob"
|
404
|
+
version = "0.3.1"
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
406
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
407
|
+
|
408
|
+
[[package]]
|
409
|
+
name = "hashbrown"
|
410
|
+
version = "0.14.5"
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
412
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
413
|
+
|
414
|
+
[[package]]
|
415
|
+
name = "heck"
|
416
|
+
version = "0.5.0"
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
418
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
419
|
+
|
420
|
+
[[package]]
|
421
|
+
name = "ident_case"
|
422
|
+
version = "1.0.1"
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
424
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
425
|
+
|
426
|
+
[[package]]
|
427
|
+
name = "indexmap"
|
428
|
+
version = "2.2.6"
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
431
|
+
dependencies = [
|
432
|
+
"equivalent",
|
433
|
+
"hashbrown",
|
434
|
+
]
|
435
|
+
|
436
|
+
[[package]]
|
437
|
+
name = "is_terminal_polyfill"
|
438
|
+
version = "1.70.0"
|
439
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
440
|
+
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
|
441
|
+
|
442
|
+
[[package]]
|
443
|
+
name = "itertools"
|
444
|
+
version = "0.12.1"
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
446
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
447
|
+
dependencies = [
|
448
|
+
"either",
|
449
|
+
]
|
450
|
+
|
451
|
+
[[package]]
|
452
|
+
name = "itoa"
|
453
|
+
version = "1.0.11"
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
456
|
+
|
457
|
+
[[package]]
|
458
|
+
name = "lazy_static"
|
459
|
+
version = "1.4.0"
|
460
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
462
|
+
|
463
|
+
[[package]]
|
464
|
+
name = "lazycell"
|
465
|
+
version = "1.3.0"
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
467
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
468
|
+
|
469
|
+
[[package]]
|
470
|
+
name = "libc"
|
471
|
+
version = "0.2.155"
|
472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
473
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
474
|
+
|
475
|
+
[[package]]
|
476
|
+
name = "libloading"
|
477
|
+
version = "0.8.3"
|
478
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
479
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
480
|
+
dependencies = [
|
481
|
+
"cfg-if",
|
482
|
+
"windows-targets 0.52.5",
|
483
|
+
]
|
484
|
+
|
485
|
+
[[package]]
|
486
|
+
name = "line-wrap"
|
487
|
+
version = "0.2.0"
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
+
checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e"
|
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.4.14"
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
501
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
502
|
+
|
503
|
+
[[package]]
|
504
|
+
name = "log"
|
505
|
+
version = "0.4.21"
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
507
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
508
|
+
|
509
|
+
[[package]]
|
510
|
+
name = "magnus"
|
511
|
+
version = "0.6.4"
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
513
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
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.2"
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
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.7.3"
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
548
|
+
checksum = "87dfd01fe195c66b572b37921ad8803d010623c0aca821bea2302239d155cdae"
|
549
|
+
dependencies = [
|
550
|
+
"adler",
|
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.19.0"
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
573
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
574
|
+
|
575
|
+
[[package]]
|
576
|
+
name = "onig"
|
577
|
+
version = "6.4.0"
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
579
|
+
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
|
580
|
+
dependencies = [
|
581
|
+
"bitflags 1.3.2",
|
582
|
+
"libc",
|
583
|
+
"once_cell",
|
584
|
+
"onig_sys",
|
585
|
+
]
|
586
|
+
|
587
|
+
[[package]]
|
588
|
+
name = "onig_sys"
|
589
|
+
version = "69.8.1"
|
590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
591
|
+
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
|
592
|
+
dependencies = [
|
593
|
+
"cc",
|
594
|
+
"pkg-config",
|
595
|
+
]
|
596
|
+
|
597
|
+
[[package]]
|
598
|
+
name = "phf"
|
599
|
+
version = "0.11.2"
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
601
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
602
|
+
dependencies = [
|
603
|
+
"phf_shared",
|
604
|
+
]
|
605
|
+
|
606
|
+
[[package]]
|
607
|
+
name = "phf_shared"
|
608
|
+
version = "0.11.2"
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
610
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
611
|
+
dependencies = [
|
612
|
+
"siphasher",
|
613
|
+
]
|
614
|
+
|
615
|
+
[[package]]
|
616
|
+
name = "pkg-config"
|
617
|
+
version = "0.3.30"
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "plist"
|
623
|
+
version = "1.6.1"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "d9d34169e64b3c7a80c8621a48adaf44e0cf62c78a9b25dd9dd35f1881a17cf9"
|
626
|
+
dependencies = [
|
627
|
+
"base64",
|
628
|
+
"indexmap",
|
629
|
+
"line-wrap",
|
630
|
+
"quick-xml",
|
631
|
+
"serde",
|
632
|
+
"time",
|
633
|
+
]
|
634
|
+
|
635
|
+
[[package]]
|
636
|
+
name = "powerfmt"
|
637
|
+
version = "0.2.0"
|
638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
639
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
640
|
+
|
641
|
+
[[package]]
|
642
|
+
name = "proc-macro2"
|
643
|
+
version = "1.0.83"
|
644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
+
checksum = "0b33eb56c327dec362a9e55b3ad14f9d2f0904fb5a5b03b513ab5465399e9f43"
|
646
|
+
dependencies = [
|
647
|
+
"unicode-ident",
|
648
|
+
]
|
649
|
+
|
650
|
+
[[package]]
|
651
|
+
name = "quick-xml"
|
652
|
+
version = "0.31.0"
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
654
|
+
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
|
655
|
+
dependencies = [
|
656
|
+
"memchr",
|
657
|
+
]
|
658
|
+
|
659
|
+
[[package]]
|
660
|
+
name = "quote"
|
661
|
+
version = "1.0.36"
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
664
|
+
dependencies = [
|
665
|
+
"proc-macro2",
|
666
|
+
]
|
667
|
+
|
668
|
+
[[package]]
|
669
|
+
name = "rb-sys"
|
670
|
+
version = "0.9.97"
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
672
|
+
checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
|
673
|
+
dependencies = [
|
674
|
+
"rb-sys-build",
|
675
|
+
]
|
676
|
+
|
677
|
+
[[package]]
|
678
|
+
name = "rb-sys-build"
|
679
|
+
version = "0.9.97"
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
+
checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
|
682
|
+
dependencies = [
|
683
|
+
"bindgen",
|
684
|
+
"lazy_static",
|
685
|
+
"proc-macro2",
|
686
|
+
"quote",
|
687
|
+
"regex",
|
688
|
+
"shell-words",
|
689
|
+
"syn",
|
690
|
+
]
|
691
|
+
|
692
|
+
[[package]]
|
693
|
+
name = "rb-sys-env"
|
694
|
+
version = "0.1.2"
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
697
|
+
|
698
|
+
[[package]]
|
699
|
+
name = "rctree"
|
700
|
+
version = "0.6.0"
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
702
|
+
checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
703
|
+
|
704
|
+
[[package]]
|
705
|
+
name = "regex"
|
706
|
+
version = "1.10.4"
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
708
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
709
|
+
dependencies = [
|
710
|
+
"aho-corasick",
|
711
|
+
"memchr",
|
712
|
+
"regex-automata",
|
713
|
+
"regex-syntax",
|
714
|
+
]
|
715
|
+
|
716
|
+
[[package]]
|
717
|
+
name = "regex-automata"
|
718
|
+
version = "0.4.6"
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
720
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
721
|
+
dependencies = [
|
722
|
+
"aho-corasick",
|
723
|
+
"memchr",
|
724
|
+
"regex-syntax",
|
725
|
+
]
|
726
|
+
|
727
|
+
[[package]]
|
728
|
+
name = "regex-syntax"
|
729
|
+
version = "0.8.3"
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
731
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "rustc-hash"
|
735
|
+
version = "1.1.0"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
738
|
+
|
739
|
+
[[package]]
|
740
|
+
name = "rustix"
|
741
|
+
version = "0.38.34"
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
743
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
744
|
+
dependencies = [
|
745
|
+
"bitflags 2.5.0",
|
746
|
+
"errno",
|
747
|
+
"libc",
|
748
|
+
"linux-raw-sys",
|
749
|
+
"windows-sys 0.52.0",
|
750
|
+
]
|
751
|
+
|
752
|
+
[[package]]
|
753
|
+
name = "ryu"
|
754
|
+
version = "1.0.18"
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
756
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
757
|
+
|
758
|
+
[[package]]
|
759
|
+
name = "same-file"
|
760
|
+
version = "1.0.6"
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
762
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
763
|
+
dependencies = [
|
764
|
+
"winapi-util",
|
765
|
+
]
|
766
|
+
|
767
|
+
[[package]]
|
768
|
+
name = "seq-macro"
|
769
|
+
version = "0.3.5"
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
771
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
772
|
+
|
773
|
+
[[package]]
|
774
|
+
name = "serde"
|
775
|
+
version = "1.0.202"
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
777
|
+
checksum = "226b61a0d411b2ba5ff6d7f73a476ac4f8bb900373459cd00fab8512828ba395"
|
778
|
+
dependencies = [
|
779
|
+
"serde_derive",
|
780
|
+
]
|
781
|
+
|
782
|
+
[[package]]
|
783
|
+
name = "serde_derive"
|
784
|
+
version = "1.0.202"
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
+
checksum = "6048858004bcff69094cd972ed40a32500f153bd3be9f716b2eed2e8217c4838"
|
787
|
+
dependencies = [
|
788
|
+
"proc-macro2",
|
789
|
+
"quote",
|
790
|
+
"syn",
|
791
|
+
]
|
792
|
+
|
793
|
+
[[package]]
|
794
|
+
name = "serde_json"
|
795
|
+
version = "1.0.117"
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
797
|
+
checksum = "455182ea6142b14f93f4bc5320a2b31c1f266b66a4a5c858b013302a5d8cbfc3"
|
798
|
+
dependencies = [
|
799
|
+
"itoa",
|
800
|
+
"ryu",
|
801
|
+
"serde",
|
802
|
+
]
|
803
|
+
|
804
|
+
[[package]]
|
805
|
+
name = "shell-words"
|
806
|
+
version = "1.1.0"
|
807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
808
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
809
|
+
|
810
|
+
[[package]]
|
811
|
+
name = "shlex"
|
812
|
+
version = "1.3.0"
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
814
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
815
|
+
|
816
|
+
[[package]]
|
817
|
+
name = "siphasher"
|
818
|
+
version = "0.3.11"
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
820
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
821
|
+
|
822
|
+
[[package]]
|
823
|
+
name = "slug"
|
824
|
+
version = "0.1.5"
|
825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
826
|
+
checksum = "3bd94acec9c8da640005f8e135a39fc0372e74535e6b368b7a04b875f784c8c4"
|
827
|
+
dependencies = [
|
828
|
+
"deunicode",
|
829
|
+
"wasm-bindgen",
|
830
|
+
]
|
831
|
+
|
832
|
+
[[package]]
|
833
|
+
name = "strsim"
|
834
|
+
version = "0.11.1"
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
837
|
+
|
838
|
+
[[package]]
|
839
|
+
name = "syn"
|
840
|
+
version = "2.0.65"
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
+
checksum = "d2863d96a84c6439701d7a38f9de935ec562c8832cc55d1dde0f513b52fad106"
|
843
|
+
dependencies = [
|
844
|
+
"proc-macro2",
|
845
|
+
"quote",
|
846
|
+
"unicode-ident",
|
847
|
+
]
|
848
|
+
|
849
|
+
[[package]]
|
850
|
+
name = "syntect"
|
851
|
+
version = "5.2.0"
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
854
|
+
dependencies = [
|
855
|
+
"bincode",
|
856
|
+
"bitflags 1.3.2",
|
857
|
+
"fancy-regex",
|
858
|
+
"flate2",
|
859
|
+
"fnv",
|
860
|
+
"once_cell",
|
861
|
+
"onig",
|
862
|
+
"plist",
|
863
|
+
"regex-syntax",
|
864
|
+
"serde",
|
865
|
+
"serde_derive",
|
866
|
+
"serde_json",
|
867
|
+
"thiserror",
|
868
|
+
"walkdir",
|
869
|
+
"yaml-rust",
|
870
|
+
]
|
871
|
+
|
872
|
+
[[package]]
|
873
|
+
name = "terminal_size"
|
874
|
+
version = "0.3.0"
|
875
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
876
|
+
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
|
877
|
+
dependencies = [
|
878
|
+
"rustix",
|
879
|
+
"windows-sys 0.48.0",
|
880
|
+
]
|
881
|
+
|
882
|
+
[[package]]
|
883
|
+
name = "thiserror"
|
884
|
+
version = "1.0.61"
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
886
|
+
checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709"
|
887
|
+
dependencies = [
|
888
|
+
"thiserror-impl",
|
889
|
+
]
|
890
|
+
|
891
|
+
[[package]]
|
892
|
+
name = "thiserror-impl"
|
893
|
+
version = "1.0.61"
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
895
|
+
checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533"
|
896
|
+
dependencies = [
|
897
|
+
"proc-macro2",
|
898
|
+
"quote",
|
899
|
+
"syn",
|
900
|
+
]
|
901
|
+
|
902
|
+
[[package]]
|
903
|
+
name = "time"
|
904
|
+
version = "0.3.36"
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
906
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
907
|
+
dependencies = [
|
908
|
+
"deranged",
|
909
|
+
"itoa",
|
910
|
+
"num-conv",
|
911
|
+
"powerfmt",
|
912
|
+
"serde",
|
913
|
+
"time-core",
|
914
|
+
"time-macros",
|
915
|
+
]
|
916
|
+
|
917
|
+
[[package]]
|
918
|
+
name = "time-core"
|
919
|
+
version = "0.1.2"
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
922
|
+
|
923
|
+
[[package]]
|
924
|
+
name = "time-macros"
|
925
|
+
version = "0.2.18"
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
927
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
928
|
+
dependencies = [
|
929
|
+
"num-conv",
|
930
|
+
"time-core",
|
931
|
+
]
|
932
|
+
|
933
|
+
[[package]]
|
934
|
+
name = "typed-arena"
|
935
|
+
version = "2.0.2"
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
937
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
938
|
+
|
939
|
+
[[package]]
|
940
|
+
name = "unicode-ident"
|
941
|
+
version = "1.0.12"
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
943
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
944
|
+
|
945
|
+
[[package]]
|
946
|
+
name = "unicode_categories"
|
947
|
+
version = "0.1.1"
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
949
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
950
|
+
|
951
|
+
[[package]]
|
952
|
+
name = "utf8parse"
|
953
|
+
version = "0.2.1"
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
955
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
956
|
+
|
957
|
+
[[package]]
|
958
|
+
name = "walkdir"
|
959
|
+
version = "2.5.0"
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
962
|
+
dependencies = [
|
963
|
+
"same-file",
|
964
|
+
"winapi-util",
|
965
|
+
]
|
966
|
+
|
967
|
+
[[package]]
|
968
|
+
name = "wasm-bindgen"
|
969
|
+
version = "0.2.92"
|
970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
971
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
972
|
+
dependencies = [
|
973
|
+
"cfg-if",
|
974
|
+
"wasm-bindgen-macro",
|
975
|
+
]
|
976
|
+
|
977
|
+
[[package]]
|
978
|
+
name = "wasm-bindgen-backend"
|
979
|
+
version = "0.2.92"
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
982
|
+
dependencies = [
|
983
|
+
"bumpalo",
|
984
|
+
"log",
|
985
|
+
"once_cell",
|
986
|
+
"proc-macro2",
|
987
|
+
"quote",
|
988
|
+
"syn",
|
989
|
+
"wasm-bindgen-shared",
|
990
|
+
]
|
991
|
+
|
992
|
+
[[package]]
|
993
|
+
name = "wasm-bindgen-macro"
|
994
|
+
version = "0.2.92"
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
996
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
997
|
+
dependencies = [
|
998
|
+
"quote",
|
999
|
+
"wasm-bindgen-macro-support",
|
1000
|
+
]
|
1001
|
+
|
1002
|
+
[[package]]
|
1003
|
+
name = "wasm-bindgen-macro-support"
|
1004
|
+
version = "0.2.92"
|
1005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1006
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
1007
|
+
dependencies = [
|
1008
|
+
"proc-macro2",
|
1009
|
+
"quote",
|
1010
|
+
"syn",
|
1011
|
+
"wasm-bindgen-backend",
|
1012
|
+
"wasm-bindgen-shared",
|
1013
|
+
]
|
1014
|
+
|
1015
|
+
[[package]]
|
1016
|
+
name = "wasm-bindgen-shared"
|
1017
|
+
version = "0.2.92"
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
1020
|
+
|
1021
|
+
[[package]]
|
1022
|
+
name = "winapi-util"
|
1023
|
+
version = "0.1.8"
|
1024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1025
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
1026
|
+
dependencies = [
|
1027
|
+
"windows-sys 0.52.0",
|
1028
|
+
]
|
1029
|
+
|
1030
|
+
[[package]]
|
1031
|
+
name = "windows-sys"
|
1032
|
+
version = "0.48.0"
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
1035
|
+
dependencies = [
|
1036
|
+
"windows-targets 0.48.5",
|
1037
|
+
]
|
1038
|
+
|
1039
|
+
[[package]]
|
1040
|
+
name = "windows-sys"
|
1041
|
+
version = "0.52.0"
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1043
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
1044
|
+
dependencies = [
|
1045
|
+
"windows-targets 0.52.5",
|
1046
|
+
]
|
1047
|
+
|
1048
|
+
[[package]]
|
1049
|
+
name = "windows-targets"
|
1050
|
+
version = "0.48.5"
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1052
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
1053
|
+
dependencies = [
|
1054
|
+
"windows_aarch64_gnullvm 0.48.5",
|
1055
|
+
"windows_aarch64_msvc 0.48.5",
|
1056
|
+
"windows_i686_gnu 0.48.5",
|
1057
|
+
"windows_i686_msvc 0.48.5",
|
1058
|
+
"windows_x86_64_gnu 0.48.5",
|
1059
|
+
"windows_x86_64_gnullvm 0.48.5",
|
1060
|
+
"windows_x86_64_msvc 0.48.5",
|
1061
|
+
]
|
1062
|
+
|
1063
|
+
[[package]]
|
1064
|
+
name = "windows-targets"
|
1065
|
+
version = "0.52.5"
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
1068
|
+
dependencies = [
|
1069
|
+
"windows_aarch64_gnullvm 0.52.5",
|
1070
|
+
"windows_aarch64_msvc 0.52.5",
|
1071
|
+
"windows_i686_gnu 0.52.5",
|
1072
|
+
"windows_i686_gnullvm",
|
1073
|
+
"windows_i686_msvc 0.52.5",
|
1074
|
+
"windows_x86_64_gnu 0.52.5",
|
1075
|
+
"windows_x86_64_gnullvm 0.52.5",
|
1076
|
+
"windows_x86_64_msvc 0.52.5",
|
1077
|
+
]
|
1078
|
+
|
1079
|
+
[[package]]
|
1080
|
+
name = "windows_aarch64_gnullvm"
|
1081
|
+
version = "0.48.5"
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1083
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
1084
|
+
|
1085
|
+
[[package]]
|
1086
|
+
name = "windows_aarch64_gnullvm"
|
1087
|
+
version = "0.52.5"
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1089
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
1090
|
+
|
1091
|
+
[[package]]
|
1092
|
+
name = "windows_aarch64_msvc"
|
1093
|
+
version = "0.48.5"
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1095
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
1096
|
+
|
1097
|
+
[[package]]
|
1098
|
+
name = "windows_aarch64_msvc"
|
1099
|
+
version = "0.52.5"
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1101
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
1102
|
+
|
1103
|
+
[[package]]
|
1104
|
+
name = "windows_i686_gnu"
|
1105
|
+
version = "0.48.5"
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1107
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
1108
|
+
|
1109
|
+
[[package]]
|
1110
|
+
name = "windows_i686_gnu"
|
1111
|
+
version = "0.52.5"
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1113
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
1114
|
+
|
1115
|
+
[[package]]
|
1116
|
+
name = "windows_i686_gnullvm"
|
1117
|
+
version = "0.52.5"
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1119
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
1120
|
+
|
1121
|
+
[[package]]
|
1122
|
+
name = "windows_i686_msvc"
|
1123
|
+
version = "0.48.5"
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1125
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
1126
|
+
|
1127
|
+
[[package]]
|
1128
|
+
name = "windows_i686_msvc"
|
1129
|
+
version = "0.52.5"
|
1130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1131
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
1132
|
+
|
1133
|
+
[[package]]
|
1134
|
+
name = "windows_x86_64_gnu"
|
1135
|
+
version = "0.48.5"
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
1138
|
+
|
1139
|
+
[[package]]
|
1140
|
+
name = "windows_x86_64_gnu"
|
1141
|
+
version = "0.52.5"
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
1144
|
+
|
1145
|
+
[[package]]
|
1146
|
+
name = "windows_x86_64_gnullvm"
|
1147
|
+
version = "0.48.5"
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1149
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
1150
|
+
|
1151
|
+
[[package]]
|
1152
|
+
name = "windows_x86_64_gnullvm"
|
1153
|
+
version = "0.52.5"
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1155
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
1156
|
+
|
1157
|
+
[[package]]
|
1158
|
+
name = "windows_x86_64_msvc"
|
1159
|
+
version = "0.48.5"
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1161
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
1162
|
+
|
1163
|
+
[[package]]
|
1164
|
+
name = "windows_x86_64_msvc"
|
1165
|
+
version = "0.52.5"
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1167
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
1168
|
+
|
1169
|
+
[[package]]
|
1170
|
+
name = "xdg"
|
1171
|
+
version = "2.5.2"
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1173
|
+
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
|
1174
|
+
|
1175
|
+
[[package]]
|
1176
|
+
name = "yaml-rust"
|
1177
|
+
version = "0.4.5"
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1179
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
1180
|
+
dependencies = [
|
1181
|
+
"linked-hash-map",
|
1182
|
+
]
|