commonmarker 0.23.10 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +1220 -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 +183 -0
- data/ext/commonmarker/src/node.rs +1095 -0
- data/ext/commonmarker/src/options.rs +165 -0
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +74 -0
- data/ext/commonmarker/src/plugins.rs +3 -0
- data/ext/commonmarker/src/utils.rs +8 -0
- data/lib/commonmarker/config.rb +90 -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,1220 @@
|
|
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.13"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "d96bd03f33fe50a863e394ee9718a706f988b9079b20c3784fb726e7678b62fb"
|
25
|
+
dependencies = [
|
26
|
+
"anstyle",
|
27
|
+
"anstyle-parse",
|
28
|
+
"anstyle-query",
|
29
|
+
"anstyle-wincon",
|
30
|
+
"colorchoice",
|
31
|
+
"utf8parse",
|
32
|
+
]
|
33
|
+
|
34
|
+
[[package]]
|
35
|
+
name = "anstyle"
|
36
|
+
version = "1.0.6"
|
37
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
+
checksum = "8901269c6307e8d93993578286ac0edf7f195079ffff5ebdeea6a59ffb7e36bc"
|
39
|
+
|
40
|
+
[[package]]
|
41
|
+
name = "anstyle-parse"
|
42
|
+
version = "0.2.3"
|
43
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
+
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
|
45
|
+
dependencies = [
|
46
|
+
"utf8parse",
|
47
|
+
]
|
48
|
+
|
49
|
+
[[package]]
|
50
|
+
name = "anstyle-query"
|
51
|
+
version = "1.0.2"
|
52
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
53
|
+
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
|
54
|
+
dependencies = [
|
55
|
+
"windows-sys 0.52.0",
|
56
|
+
]
|
57
|
+
|
58
|
+
[[package]]
|
59
|
+
name = "anstyle-wincon"
|
60
|
+
version = "3.0.2"
|
61
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
+
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
|
63
|
+
dependencies = [
|
64
|
+
"anstyle",
|
65
|
+
"windows-sys 0.52.0",
|
66
|
+
]
|
67
|
+
|
68
|
+
[[package]]
|
69
|
+
name = "base64"
|
70
|
+
version = "0.21.7"
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
+
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
|
73
|
+
|
74
|
+
[[package]]
|
75
|
+
name = "bincode"
|
76
|
+
version = "1.3.3"
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
78
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
79
|
+
dependencies = [
|
80
|
+
"serde",
|
81
|
+
]
|
82
|
+
|
83
|
+
[[package]]
|
84
|
+
name = "bindgen"
|
85
|
+
version = "0.69.4"
|
86
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
87
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
88
|
+
dependencies = [
|
89
|
+
"bitflags 2.5.0",
|
90
|
+
"cexpr",
|
91
|
+
"clang-sys",
|
92
|
+
"itertools",
|
93
|
+
"lazy_static",
|
94
|
+
"lazycell",
|
95
|
+
"proc-macro2",
|
96
|
+
"quote",
|
97
|
+
"regex",
|
98
|
+
"rustc-hash",
|
99
|
+
"shlex",
|
100
|
+
"syn 2.0.60",
|
101
|
+
]
|
102
|
+
|
103
|
+
[[package]]
|
104
|
+
name = "bit-set"
|
105
|
+
version = "0.5.3"
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
107
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
108
|
+
dependencies = [
|
109
|
+
"bit-vec",
|
110
|
+
]
|
111
|
+
|
112
|
+
[[package]]
|
113
|
+
name = "bit-vec"
|
114
|
+
version = "0.6.3"
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
117
|
+
|
118
|
+
[[package]]
|
119
|
+
name = "bitflags"
|
120
|
+
version = "1.3.2"
|
121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
122
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
123
|
+
|
124
|
+
[[package]]
|
125
|
+
name = "bitflags"
|
126
|
+
version = "2.5.0"
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
128
|
+
checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1"
|
129
|
+
|
130
|
+
[[package]]
|
131
|
+
name = "bumpalo"
|
132
|
+
version = "3.16.0"
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
134
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
135
|
+
|
136
|
+
[[package]]
|
137
|
+
name = "cc"
|
138
|
+
version = "1.0.96"
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
140
|
+
checksum = "065a29261d53ba54260972629f9ca6bffa69bac13cd1fed61420f7fa68b9f8bd"
|
141
|
+
|
142
|
+
[[package]]
|
143
|
+
name = "cexpr"
|
144
|
+
version = "0.6.0"
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
146
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
147
|
+
dependencies = [
|
148
|
+
"nom",
|
149
|
+
]
|
150
|
+
|
151
|
+
[[package]]
|
152
|
+
name = "cfg-if"
|
153
|
+
version = "1.0.0"
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
155
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
156
|
+
|
157
|
+
[[package]]
|
158
|
+
name = "clang-sys"
|
159
|
+
version = "1.7.0"
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
161
|
+
checksum = "67523a3b4be3ce1989d607a828d036249522dd9c1c8de7f4dd2dae43a37369d1"
|
162
|
+
dependencies = [
|
163
|
+
"glob",
|
164
|
+
"libc",
|
165
|
+
"libloading",
|
166
|
+
]
|
167
|
+
|
168
|
+
[[package]]
|
169
|
+
name = "clap"
|
170
|
+
version = "4.5.4"
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
+
checksum = "90bc066a67923782aa8515dbaea16946c5bcc5addbd668bb80af688e53e548a0"
|
173
|
+
dependencies = [
|
174
|
+
"clap_builder",
|
175
|
+
"clap_derive",
|
176
|
+
]
|
177
|
+
|
178
|
+
[[package]]
|
179
|
+
name = "clap_builder"
|
180
|
+
version = "4.5.2"
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
+
checksum = "ae129e2e766ae0ec03484e609954119f123cc1fe650337e155d03b022f24f7b4"
|
183
|
+
dependencies = [
|
184
|
+
"anstream",
|
185
|
+
"anstyle",
|
186
|
+
"clap_lex",
|
187
|
+
"strsim 0.11.1",
|
188
|
+
"terminal_size",
|
189
|
+
]
|
190
|
+
|
191
|
+
[[package]]
|
192
|
+
name = "clap_derive"
|
193
|
+
version = "4.5.4"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "528131438037fd55894f62d6e9f068b8f45ac57ffa77517819645d10aed04f64"
|
196
|
+
dependencies = [
|
197
|
+
"heck",
|
198
|
+
"proc-macro2",
|
199
|
+
"quote",
|
200
|
+
"syn 2.0.60",
|
201
|
+
]
|
202
|
+
|
203
|
+
[[package]]
|
204
|
+
name = "clap_lex"
|
205
|
+
version = "0.7.0"
|
206
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
207
|
+
checksum = "98cc8fbded0c607b7ba9dd60cd98df59af97e84d24e49c8557331cfc26d301ce"
|
208
|
+
|
209
|
+
[[package]]
|
210
|
+
name = "colorchoice"
|
211
|
+
version = "1.0.0"
|
212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
213
|
+
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
214
|
+
|
215
|
+
[[package]]
|
216
|
+
name = "commonmarker"
|
217
|
+
version = "1.0.0"
|
218
|
+
dependencies = [
|
219
|
+
"comrak",
|
220
|
+
"magnus",
|
221
|
+
"rb-sys",
|
222
|
+
"rctree",
|
223
|
+
"syntect",
|
224
|
+
"typed-arena",
|
225
|
+
]
|
226
|
+
|
227
|
+
[[package]]
|
228
|
+
name = "comrak"
|
229
|
+
version = "0.23.0"
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
+
checksum = "ab5681b26a36dc46800a908f7d932672a4e82f74759419dd4018bf40658457d5"
|
232
|
+
dependencies = [
|
233
|
+
"clap",
|
234
|
+
"derive_builder",
|
235
|
+
"emojis",
|
236
|
+
"entities",
|
237
|
+
"in-place",
|
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.0"
|
252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
|
+
checksum = "b3855a8a784b474f333699ef2bbca9db2c4a1f6d9088a90a2d25b1eb53111eaa"
|
254
|
+
dependencies = [
|
255
|
+
"cfg-if",
|
256
|
+
]
|
257
|
+
|
258
|
+
[[package]]
|
259
|
+
name = "darling"
|
260
|
+
version = "0.14.4"
|
261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
+
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
263
|
+
dependencies = [
|
264
|
+
"darling_core",
|
265
|
+
"darling_macro",
|
266
|
+
]
|
267
|
+
|
268
|
+
[[package]]
|
269
|
+
name = "darling_core"
|
270
|
+
version = "0.14.4"
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
+
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
|
273
|
+
dependencies = [
|
274
|
+
"fnv",
|
275
|
+
"ident_case",
|
276
|
+
"proc-macro2",
|
277
|
+
"quote",
|
278
|
+
"strsim 0.10.0",
|
279
|
+
"syn 1.0.109",
|
280
|
+
]
|
281
|
+
|
282
|
+
[[package]]
|
283
|
+
name = "darling_macro"
|
284
|
+
version = "0.14.4"
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
+
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
287
|
+
dependencies = [
|
288
|
+
"darling_core",
|
289
|
+
"quote",
|
290
|
+
"syn 1.0.109",
|
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.12.0"
|
305
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
+
checksum = "8d67778784b508018359cbc8696edb3db78160bab2c2a28ba7f56ef6932997f8"
|
307
|
+
dependencies = [
|
308
|
+
"derive_builder_macro",
|
309
|
+
]
|
310
|
+
|
311
|
+
[[package]]
|
312
|
+
name = "derive_builder_core"
|
313
|
+
version = "0.12.0"
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
315
|
+
checksum = "c11bdc11a0c47bc7d37d582b5285da6849c96681023680b906673c5707af7b0f"
|
316
|
+
dependencies = [
|
317
|
+
"darling",
|
318
|
+
"proc-macro2",
|
319
|
+
"quote",
|
320
|
+
"syn 1.0.109",
|
321
|
+
]
|
322
|
+
|
323
|
+
[[package]]
|
324
|
+
name = "derive_builder_macro"
|
325
|
+
version = "0.12.0"
|
326
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
+
checksum = "ebcda35c7a396850a55ffeac740804b40ffec779b98fffbb1738f4033f0ee79e"
|
328
|
+
dependencies = [
|
329
|
+
"derive_builder_core",
|
330
|
+
"syn 1.0.109",
|
331
|
+
]
|
332
|
+
|
333
|
+
[[package]]
|
334
|
+
name = "deunicode"
|
335
|
+
version = "1.4.4"
|
336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
|
+
checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
|
338
|
+
|
339
|
+
[[package]]
|
340
|
+
name = "either"
|
341
|
+
version = "1.11.0"
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
+
checksum = "a47c1c47d2f5964e29c61246e81db715514cd532db6b5116a25ea3c03d6780a2"
|
344
|
+
|
345
|
+
[[package]]
|
346
|
+
name = "emojis"
|
347
|
+
version = "0.5.3"
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
349
|
+
checksum = "3407bc749191827d456a282321770847daf4b0a1128fde02597a8ed2e987b95d"
|
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.8"
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
370
|
+
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
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 = "fastrand"
|
388
|
+
version = "2.1.0"
|
389
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
390
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
391
|
+
|
392
|
+
[[package]]
|
393
|
+
name = "flate2"
|
394
|
+
version = "1.0.30"
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
396
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
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.1"
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
412
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
413
|
+
|
414
|
+
[[package]]
|
415
|
+
name = "hashbrown"
|
416
|
+
version = "0.14.5"
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
418
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
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 = "in-place"
|
434
|
+
version = "0.2.0"
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
436
|
+
checksum = "1cdb69f3adfd5f493210cece799f4620417bf9965bc1536c22ae0e29ba27a8c0"
|
437
|
+
dependencies = [
|
438
|
+
"tempfile",
|
439
|
+
]
|
440
|
+
|
441
|
+
[[package]]
|
442
|
+
name = "indexmap"
|
443
|
+
version = "2.2.6"
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
445
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
446
|
+
dependencies = [
|
447
|
+
"equivalent",
|
448
|
+
"hashbrown",
|
449
|
+
]
|
450
|
+
|
451
|
+
[[package]]
|
452
|
+
name = "itertools"
|
453
|
+
version = "0.12.1"
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
456
|
+
dependencies = [
|
457
|
+
"either",
|
458
|
+
]
|
459
|
+
|
460
|
+
[[package]]
|
461
|
+
name = "itoa"
|
462
|
+
version = "1.0.11"
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
465
|
+
|
466
|
+
[[package]]
|
467
|
+
name = "lazy_static"
|
468
|
+
version = "1.4.0"
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
470
|
+
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
471
|
+
|
472
|
+
[[package]]
|
473
|
+
name = "lazycell"
|
474
|
+
version = "1.3.0"
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
476
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
477
|
+
|
478
|
+
[[package]]
|
479
|
+
name = "libc"
|
480
|
+
version = "0.2.154"
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
482
|
+
checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346"
|
483
|
+
|
484
|
+
[[package]]
|
485
|
+
name = "libloading"
|
486
|
+
version = "0.8.3"
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
488
|
+
checksum = "0c2a198fb6b0eada2a8df47933734e6d35d350665a33a3593d7164fa52c75c19"
|
489
|
+
dependencies = [
|
490
|
+
"cfg-if",
|
491
|
+
"windows-targets 0.52.5",
|
492
|
+
]
|
493
|
+
|
494
|
+
[[package]]
|
495
|
+
name = "line-wrap"
|
496
|
+
version = "0.2.0"
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
+
checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e"
|
499
|
+
|
500
|
+
[[package]]
|
501
|
+
name = "linked-hash-map"
|
502
|
+
version = "0.5.6"
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
505
|
+
|
506
|
+
[[package]]
|
507
|
+
name = "linux-raw-sys"
|
508
|
+
version = "0.4.13"
|
509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
+
checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c"
|
511
|
+
|
512
|
+
[[package]]
|
513
|
+
name = "log"
|
514
|
+
version = "0.4.21"
|
515
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
516
|
+
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
517
|
+
|
518
|
+
[[package]]
|
519
|
+
name = "magnus"
|
520
|
+
version = "0.6.3"
|
521
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
+
checksum = "0fc7a31fb0b64761e3cd09a6975577601fccc5f08b8fc9245064fc4f71ed6a9d"
|
523
|
+
dependencies = [
|
524
|
+
"magnus-macros",
|
525
|
+
"rb-sys",
|
526
|
+
"rb-sys-env",
|
527
|
+
"seq-macro",
|
528
|
+
]
|
529
|
+
|
530
|
+
[[package]]
|
531
|
+
name = "magnus-macros"
|
532
|
+
version = "0.6.0"
|
533
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
534
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
535
|
+
dependencies = [
|
536
|
+
"proc-macro2",
|
537
|
+
"quote",
|
538
|
+
"syn 2.0.60",
|
539
|
+
]
|
540
|
+
|
541
|
+
[[package]]
|
542
|
+
name = "memchr"
|
543
|
+
version = "2.7.2"
|
544
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
545
|
+
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
|
546
|
+
|
547
|
+
[[package]]
|
548
|
+
name = "minimal-lexical"
|
549
|
+
version = "0.2.1"
|
550
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
551
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
552
|
+
|
553
|
+
[[package]]
|
554
|
+
name = "miniz_oxide"
|
555
|
+
version = "0.7.2"
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
557
|
+
checksum = "9d811f3e15f28568be3407c8e7fdb6514c1cda3cb30683f15b6a1a1dc4ea14a7"
|
558
|
+
dependencies = [
|
559
|
+
"adler",
|
560
|
+
]
|
561
|
+
|
562
|
+
[[package]]
|
563
|
+
name = "nom"
|
564
|
+
version = "7.1.3"
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
567
|
+
dependencies = [
|
568
|
+
"memchr",
|
569
|
+
"minimal-lexical",
|
570
|
+
]
|
571
|
+
|
572
|
+
[[package]]
|
573
|
+
name = "num-conv"
|
574
|
+
version = "0.1.0"
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
576
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
577
|
+
|
578
|
+
[[package]]
|
579
|
+
name = "once_cell"
|
580
|
+
version = "1.19.0"
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
582
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
583
|
+
|
584
|
+
[[package]]
|
585
|
+
name = "onig"
|
586
|
+
version = "6.4.0"
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
588
|
+
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
|
589
|
+
dependencies = [
|
590
|
+
"bitflags 1.3.2",
|
591
|
+
"libc",
|
592
|
+
"once_cell",
|
593
|
+
"onig_sys",
|
594
|
+
]
|
595
|
+
|
596
|
+
[[package]]
|
597
|
+
name = "onig_sys"
|
598
|
+
version = "69.8.1"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
|
601
|
+
dependencies = [
|
602
|
+
"cc",
|
603
|
+
"pkg-config",
|
604
|
+
]
|
605
|
+
|
606
|
+
[[package]]
|
607
|
+
name = "phf"
|
608
|
+
version = "0.11.2"
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
610
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
611
|
+
dependencies = [
|
612
|
+
"phf_shared",
|
613
|
+
]
|
614
|
+
|
615
|
+
[[package]]
|
616
|
+
name = "phf_shared"
|
617
|
+
version = "0.11.2"
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
620
|
+
dependencies = [
|
621
|
+
"siphasher",
|
622
|
+
]
|
623
|
+
|
624
|
+
[[package]]
|
625
|
+
name = "pkg-config"
|
626
|
+
version = "0.3.30"
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
628
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
629
|
+
|
630
|
+
[[package]]
|
631
|
+
name = "plist"
|
632
|
+
version = "1.6.1"
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
+
checksum = "d9d34169e64b3c7a80c8621a48adaf44e0cf62c78a9b25dd9dd35f1881a17cf9"
|
635
|
+
dependencies = [
|
636
|
+
"base64",
|
637
|
+
"indexmap",
|
638
|
+
"line-wrap",
|
639
|
+
"quick-xml",
|
640
|
+
"serde",
|
641
|
+
"time",
|
642
|
+
]
|
643
|
+
|
644
|
+
[[package]]
|
645
|
+
name = "powerfmt"
|
646
|
+
version = "0.2.0"
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
648
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
649
|
+
|
650
|
+
[[package]]
|
651
|
+
name = "proc-macro2"
|
652
|
+
version = "1.0.81"
|
653
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
654
|
+
checksum = "3d1597b0c024618f09a9c3b8655b7e430397a36d23fdafec26d6965e9eec3eba"
|
655
|
+
dependencies = [
|
656
|
+
"unicode-ident",
|
657
|
+
]
|
658
|
+
|
659
|
+
[[package]]
|
660
|
+
name = "quick-xml"
|
661
|
+
version = "0.31.0"
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
+
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
|
664
|
+
dependencies = [
|
665
|
+
"memchr",
|
666
|
+
]
|
667
|
+
|
668
|
+
[[package]]
|
669
|
+
name = "quote"
|
670
|
+
version = "1.0.36"
|
671
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
672
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
673
|
+
dependencies = [
|
674
|
+
"proc-macro2",
|
675
|
+
]
|
676
|
+
|
677
|
+
[[package]]
|
678
|
+
name = "rb-sys"
|
679
|
+
version = "0.9.97"
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
+
checksum = "47d30bcad206b51f2f66121190ca678dce1fdf3a2eae0ac5d838d1818b19bdf5"
|
682
|
+
dependencies = [
|
683
|
+
"rb-sys-build",
|
684
|
+
]
|
685
|
+
|
686
|
+
[[package]]
|
687
|
+
name = "rb-sys-build"
|
688
|
+
version = "0.9.97"
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
+
checksum = "3cbd92f281615f3c2dcb9dcb0f0576624752afbf9a7f99173b37c4b55b62dd8a"
|
691
|
+
dependencies = [
|
692
|
+
"bindgen",
|
693
|
+
"lazy_static",
|
694
|
+
"proc-macro2",
|
695
|
+
"quote",
|
696
|
+
"regex",
|
697
|
+
"shell-words",
|
698
|
+
"syn 2.0.60",
|
699
|
+
]
|
700
|
+
|
701
|
+
[[package]]
|
702
|
+
name = "rb-sys-env"
|
703
|
+
version = "0.1.2"
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
705
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
706
|
+
|
707
|
+
[[package]]
|
708
|
+
name = "rctree"
|
709
|
+
version = "0.6.0"
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
711
|
+
checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
712
|
+
|
713
|
+
[[package]]
|
714
|
+
name = "regex"
|
715
|
+
version = "1.10.4"
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
+
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
|
718
|
+
dependencies = [
|
719
|
+
"aho-corasick",
|
720
|
+
"memchr",
|
721
|
+
"regex-automata",
|
722
|
+
"regex-syntax",
|
723
|
+
]
|
724
|
+
|
725
|
+
[[package]]
|
726
|
+
name = "regex-automata"
|
727
|
+
version = "0.4.6"
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
729
|
+
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
|
730
|
+
dependencies = [
|
731
|
+
"aho-corasick",
|
732
|
+
"memchr",
|
733
|
+
"regex-syntax",
|
734
|
+
]
|
735
|
+
|
736
|
+
[[package]]
|
737
|
+
name = "regex-syntax"
|
738
|
+
version = "0.8.3"
|
739
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
740
|
+
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
|
741
|
+
|
742
|
+
[[package]]
|
743
|
+
name = "rustc-hash"
|
744
|
+
version = "1.1.0"
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
747
|
+
|
748
|
+
[[package]]
|
749
|
+
name = "rustix"
|
750
|
+
version = "0.38.34"
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
753
|
+
dependencies = [
|
754
|
+
"bitflags 2.5.0",
|
755
|
+
"errno",
|
756
|
+
"libc",
|
757
|
+
"linux-raw-sys",
|
758
|
+
"windows-sys 0.52.0",
|
759
|
+
]
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "ryu"
|
763
|
+
version = "1.0.17"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "e86697c916019a8588c99b5fac3cead74ec0b4b819707a682fd4d23fa0ce1ba1"
|
766
|
+
|
767
|
+
[[package]]
|
768
|
+
name = "same-file"
|
769
|
+
version = "1.0.6"
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
771
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
772
|
+
dependencies = [
|
773
|
+
"winapi-util",
|
774
|
+
]
|
775
|
+
|
776
|
+
[[package]]
|
777
|
+
name = "seq-macro"
|
778
|
+
version = "0.3.5"
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
780
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
781
|
+
|
782
|
+
[[package]]
|
783
|
+
name = "serde"
|
784
|
+
version = "1.0.200"
|
785
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
+
checksum = "ddc6f9cc94d67c0e21aaf7eda3a010fd3af78ebf6e096aa6e2e13c79749cce4f"
|
787
|
+
dependencies = [
|
788
|
+
"serde_derive",
|
789
|
+
]
|
790
|
+
|
791
|
+
[[package]]
|
792
|
+
name = "serde_derive"
|
793
|
+
version = "1.0.200"
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
795
|
+
checksum = "856f046b9400cee3c8c94ed572ecdb752444c24528c035cd35882aad6f492bcb"
|
796
|
+
dependencies = [
|
797
|
+
"proc-macro2",
|
798
|
+
"quote",
|
799
|
+
"syn 2.0.60",
|
800
|
+
]
|
801
|
+
|
802
|
+
[[package]]
|
803
|
+
name = "serde_json"
|
804
|
+
version = "1.0.116"
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
+
checksum = "3e17db7126d17feb94eb3fad46bf1a96b034e8aacbc2e775fe81505f8b0b2813"
|
807
|
+
dependencies = [
|
808
|
+
"itoa",
|
809
|
+
"ryu",
|
810
|
+
"serde",
|
811
|
+
]
|
812
|
+
|
813
|
+
[[package]]
|
814
|
+
name = "shell-words"
|
815
|
+
version = "1.1.0"
|
816
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
818
|
+
|
819
|
+
[[package]]
|
820
|
+
name = "shlex"
|
821
|
+
version = "1.3.0"
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
824
|
+
|
825
|
+
[[package]]
|
826
|
+
name = "siphasher"
|
827
|
+
version = "0.3.11"
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
829
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
830
|
+
|
831
|
+
[[package]]
|
832
|
+
name = "slug"
|
833
|
+
version = "0.1.5"
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
835
|
+
checksum = "3bd94acec9c8da640005f8e135a39fc0372e74535e6b368b7a04b875f784c8c4"
|
836
|
+
dependencies = [
|
837
|
+
"deunicode",
|
838
|
+
"wasm-bindgen",
|
839
|
+
]
|
840
|
+
|
841
|
+
[[package]]
|
842
|
+
name = "strsim"
|
843
|
+
version = "0.10.0"
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
845
|
+
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
846
|
+
|
847
|
+
[[package]]
|
848
|
+
name = "strsim"
|
849
|
+
version = "0.11.1"
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
851
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
852
|
+
|
853
|
+
[[package]]
|
854
|
+
name = "syn"
|
855
|
+
version = "1.0.109"
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
857
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
858
|
+
dependencies = [
|
859
|
+
"proc-macro2",
|
860
|
+
"quote",
|
861
|
+
"unicode-ident",
|
862
|
+
]
|
863
|
+
|
864
|
+
[[package]]
|
865
|
+
name = "syn"
|
866
|
+
version = "2.0.60"
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
868
|
+
checksum = "909518bc7b1c9b779f1bbf07f2929d35af9f0f37e47c6e9ef7f9dddc1e1821f3"
|
869
|
+
dependencies = [
|
870
|
+
"proc-macro2",
|
871
|
+
"quote",
|
872
|
+
"unicode-ident",
|
873
|
+
]
|
874
|
+
|
875
|
+
[[package]]
|
876
|
+
name = "syntect"
|
877
|
+
version = "5.2.0"
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
879
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
880
|
+
dependencies = [
|
881
|
+
"bincode",
|
882
|
+
"bitflags 1.3.2",
|
883
|
+
"fancy-regex",
|
884
|
+
"flate2",
|
885
|
+
"fnv",
|
886
|
+
"once_cell",
|
887
|
+
"onig",
|
888
|
+
"plist",
|
889
|
+
"regex-syntax",
|
890
|
+
"serde",
|
891
|
+
"serde_derive",
|
892
|
+
"serde_json",
|
893
|
+
"thiserror",
|
894
|
+
"walkdir",
|
895
|
+
"yaml-rust",
|
896
|
+
]
|
897
|
+
|
898
|
+
[[package]]
|
899
|
+
name = "tempfile"
|
900
|
+
version = "3.10.1"
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
902
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
903
|
+
dependencies = [
|
904
|
+
"cfg-if",
|
905
|
+
"fastrand",
|
906
|
+
"rustix",
|
907
|
+
"windows-sys 0.52.0",
|
908
|
+
]
|
909
|
+
|
910
|
+
[[package]]
|
911
|
+
name = "terminal_size"
|
912
|
+
version = "0.3.0"
|
913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
914
|
+
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
|
915
|
+
dependencies = [
|
916
|
+
"rustix",
|
917
|
+
"windows-sys 0.48.0",
|
918
|
+
]
|
919
|
+
|
920
|
+
[[package]]
|
921
|
+
name = "thiserror"
|
922
|
+
version = "1.0.59"
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
+
checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa"
|
925
|
+
dependencies = [
|
926
|
+
"thiserror-impl",
|
927
|
+
]
|
928
|
+
|
929
|
+
[[package]]
|
930
|
+
name = "thiserror-impl"
|
931
|
+
version = "1.0.59"
|
932
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
933
|
+
checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66"
|
934
|
+
dependencies = [
|
935
|
+
"proc-macro2",
|
936
|
+
"quote",
|
937
|
+
"syn 2.0.60",
|
938
|
+
]
|
939
|
+
|
940
|
+
[[package]]
|
941
|
+
name = "time"
|
942
|
+
version = "0.3.36"
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
944
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
945
|
+
dependencies = [
|
946
|
+
"deranged",
|
947
|
+
"itoa",
|
948
|
+
"num-conv",
|
949
|
+
"powerfmt",
|
950
|
+
"serde",
|
951
|
+
"time-core",
|
952
|
+
"time-macros",
|
953
|
+
]
|
954
|
+
|
955
|
+
[[package]]
|
956
|
+
name = "time-core"
|
957
|
+
version = "0.1.2"
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
959
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
960
|
+
|
961
|
+
[[package]]
|
962
|
+
name = "time-macros"
|
963
|
+
version = "0.2.18"
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
965
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
966
|
+
dependencies = [
|
967
|
+
"num-conv",
|
968
|
+
"time-core",
|
969
|
+
]
|
970
|
+
|
971
|
+
[[package]]
|
972
|
+
name = "typed-arena"
|
973
|
+
version = "2.0.2"
|
974
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
976
|
+
|
977
|
+
[[package]]
|
978
|
+
name = "unicode-ident"
|
979
|
+
version = "1.0.12"
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
982
|
+
|
983
|
+
[[package]]
|
984
|
+
name = "unicode_categories"
|
985
|
+
version = "0.1.1"
|
986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
987
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
988
|
+
|
989
|
+
[[package]]
|
990
|
+
name = "utf8parse"
|
991
|
+
version = "0.2.1"
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
+
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
994
|
+
|
995
|
+
[[package]]
|
996
|
+
name = "walkdir"
|
997
|
+
version = "2.5.0"
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
999
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1000
|
+
dependencies = [
|
1001
|
+
"same-file",
|
1002
|
+
"winapi-util",
|
1003
|
+
]
|
1004
|
+
|
1005
|
+
[[package]]
|
1006
|
+
name = "wasm-bindgen"
|
1007
|
+
version = "0.2.92"
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
1010
|
+
dependencies = [
|
1011
|
+
"cfg-if",
|
1012
|
+
"wasm-bindgen-macro",
|
1013
|
+
]
|
1014
|
+
|
1015
|
+
[[package]]
|
1016
|
+
name = "wasm-bindgen-backend"
|
1017
|
+
version = "0.2.92"
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
1020
|
+
dependencies = [
|
1021
|
+
"bumpalo",
|
1022
|
+
"log",
|
1023
|
+
"once_cell",
|
1024
|
+
"proc-macro2",
|
1025
|
+
"quote",
|
1026
|
+
"syn 2.0.60",
|
1027
|
+
"wasm-bindgen-shared",
|
1028
|
+
]
|
1029
|
+
|
1030
|
+
[[package]]
|
1031
|
+
name = "wasm-bindgen-macro"
|
1032
|
+
version = "0.2.92"
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
1035
|
+
dependencies = [
|
1036
|
+
"quote",
|
1037
|
+
"wasm-bindgen-macro-support",
|
1038
|
+
]
|
1039
|
+
|
1040
|
+
[[package]]
|
1041
|
+
name = "wasm-bindgen-macro-support"
|
1042
|
+
version = "0.2.92"
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
1045
|
+
dependencies = [
|
1046
|
+
"proc-macro2",
|
1047
|
+
"quote",
|
1048
|
+
"syn 2.0.60",
|
1049
|
+
"wasm-bindgen-backend",
|
1050
|
+
"wasm-bindgen-shared",
|
1051
|
+
]
|
1052
|
+
|
1053
|
+
[[package]]
|
1054
|
+
name = "wasm-bindgen-shared"
|
1055
|
+
version = "0.2.92"
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1057
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
1058
|
+
|
1059
|
+
[[package]]
|
1060
|
+
name = "winapi-util"
|
1061
|
+
version = "0.1.8"
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1063
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
1064
|
+
dependencies = [
|
1065
|
+
"windows-sys 0.52.0",
|
1066
|
+
]
|
1067
|
+
|
1068
|
+
[[package]]
|
1069
|
+
name = "windows-sys"
|
1070
|
+
version = "0.48.0"
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1072
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
1073
|
+
dependencies = [
|
1074
|
+
"windows-targets 0.48.5",
|
1075
|
+
]
|
1076
|
+
|
1077
|
+
[[package]]
|
1078
|
+
name = "windows-sys"
|
1079
|
+
version = "0.52.0"
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1081
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
1082
|
+
dependencies = [
|
1083
|
+
"windows-targets 0.52.5",
|
1084
|
+
]
|
1085
|
+
|
1086
|
+
[[package]]
|
1087
|
+
name = "windows-targets"
|
1088
|
+
version = "0.48.5"
|
1089
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1090
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
1091
|
+
dependencies = [
|
1092
|
+
"windows_aarch64_gnullvm 0.48.5",
|
1093
|
+
"windows_aarch64_msvc 0.48.5",
|
1094
|
+
"windows_i686_gnu 0.48.5",
|
1095
|
+
"windows_i686_msvc 0.48.5",
|
1096
|
+
"windows_x86_64_gnu 0.48.5",
|
1097
|
+
"windows_x86_64_gnullvm 0.48.5",
|
1098
|
+
"windows_x86_64_msvc 0.48.5",
|
1099
|
+
]
|
1100
|
+
|
1101
|
+
[[package]]
|
1102
|
+
name = "windows-targets"
|
1103
|
+
version = "0.52.5"
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
+
checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb"
|
1106
|
+
dependencies = [
|
1107
|
+
"windows_aarch64_gnullvm 0.52.5",
|
1108
|
+
"windows_aarch64_msvc 0.52.5",
|
1109
|
+
"windows_i686_gnu 0.52.5",
|
1110
|
+
"windows_i686_gnullvm",
|
1111
|
+
"windows_i686_msvc 0.52.5",
|
1112
|
+
"windows_x86_64_gnu 0.52.5",
|
1113
|
+
"windows_x86_64_gnullvm 0.52.5",
|
1114
|
+
"windows_x86_64_msvc 0.52.5",
|
1115
|
+
]
|
1116
|
+
|
1117
|
+
[[package]]
|
1118
|
+
name = "windows_aarch64_gnullvm"
|
1119
|
+
version = "0.48.5"
|
1120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1121
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
1122
|
+
|
1123
|
+
[[package]]
|
1124
|
+
name = "windows_aarch64_gnullvm"
|
1125
|
+
version = "0.52.5"
|
1126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1127
|
+
checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263"
|
1128
|
+
|
1129
|
+
[[package]]
|
1130
|
+
name = "windows_aarch64_msvc"
|
1131
|
+
version = "0.48.5"
|
1132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1133
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
1134
|
+
|
1135
|
+
[[package]]
|
1136
|
+
name = "windows_aarch64_msvc"
|
1137
|
+
version = "0.52.5"
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
+
checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6"
|
1140
|
+
|
1141
|
+
[[package]]
|
1142
|
+
name = "windows_i686_gnu"
|
1143
|
+
version = "0.48.5"
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1145
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
1146
|
+
|
1147
|
+
[[package]]
|
1148
|
+
name = "windows_i686_gnu"
|
1149
|
+
version = "0.52.5"
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1151
|
+
checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670"
|
1152
|
+
|
1153
|
+
[[package]]
|
1154
|
+
name = "windows_i686_gnullvm"
|
1155
|
+
version = "0.52.5"
|
1156
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
+
checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9"
|
1158
|
+
|
1159
|
+
[[package]]
|
1160
|
+
name = "windows_i686_msvc"
|
1161
|
+
version = "0.48.5"
|
1162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1163
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
1164
|
+
|
1165
|
+
[[package]]
|
1166
|
+
name = "windows_i686_msvc"
|
1167
|
+
version = "0.52.5"
|
1168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1169
|
+
checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf"
|
1170
|
+
|
1171
|
+
[[package]]
|
1172
|
+
name = "windows_x86_64_gnu"
|
1173
|
+
version = "0.48.5"
|
1174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1175
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
1176
|
+
|
1177
|
+
[[package]]
|
1178
|
+
name = "windows_x86_64_gnu"
|
1179
|
+
version = "0.52.5"
|
1180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1181
|
+
checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9"
|
1182
|
+
|
1183
|
+
[[package]]
|
1184
|
+
name = "windows_x86_64_gnullvm"
|
1185
|
+
version = "0.48.5"
|
1186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1187
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
1188
|
+
|
1189
|
+
[[package]]
|
1190
|
+
name = "windows_x86_64_gnullvm"
|
1191
|
+
version = "0.52.5"
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
+
checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596"
|
1194
|
+
|
1195
|
+
[[package]]
|
1196
|
+
name = "windows_x86_64_msvc"
|
1197
|
+
version = "0.48.5"
|
1198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1199
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
1200
|
+
|
1201
|
+
[[package]]
|
1202
|
+
name = "windows_x86_64_msvc"
|
1203
|
+
version = "0.52.5"
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1205
|
+
checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0"
|
1206
|
+
|
1207
|
+
[[package]]
|
1208
|
+
name = "xdg"
|
1209
|
+
version = "2.5.2"
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1211
|
+
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
|
1212
|
+
|
1213
|
+
[[package]]
|
1214
|
+
name = "yaml-rust"
|
1215
|
+
version = "0.4.5"
|
1216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1217
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
1218
|
+
dependencies = [
|
1219
|
+
"linked-hash-map",
|
1220
|
+
]
|