commonmarker 0.23.10 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Cargo.lock +1221 -0
- data/Cargo.toml +7 -0
- data/README.md +233 -172
- data/ext/commonmarker/Cargo.toml +20 -0
- data/ext/commonmarker/extconf.rb +3 -6
- data/ext/commonmarker/src/lib.rs +103 -0
- data/ext/commonmarker/src/node.rs +1160 -0
- data/ext/commonmarker/src/options.rs +216 -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 +91 -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,1221 @@
|
|
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.15"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
|
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.8"
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
39
|
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "anstyle-parse"
|
43
|
+
version = "0.2.5"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
|
46
|
+
dependencies = [
|
47
|
+
"utf8parse",
|
48
|
+
]
|
49
|
+
|
50
|
+
[[package]]
|
51
|
+
name = "anstyle-query"
|
52
|
+
version = "1.1.1"
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
+
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
|
55
|
+
dependencies = [
|
56
|
+
"windows-sys 0.52.0",
|
57
|
+
]
|
58
|
+
|
59
|
+
[[package]]
|
60
|
+
name = "anstyle-wincon"
|
61
|
+
version = "3.0.4"
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
63
|
+
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
|
64
|
+
dependencies = [
|
65
|
+
"anstyle",
|
66
|
+
"windows-sys 0.52.0",
|
67
|
+
]
|
68
|
+
|
69
|
+
[[package]]
|
70
|
+
name = "base64"
|
71
|
+
version = "0.22.1"
|
72
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
73
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
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.6.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.6.0"
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
129
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
130
|
+
|
131
|
+
[[package]]
|
132
|
+
name = "bon"
|
133
|
+
version = "3.0.2"
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
+
checksum = "a636f83af97c6946f3f5cf5c268ec02375bf5efd371110292dfd57961f57a509"
|
136
|
+
dependencies = [
|
137
|
+
"bon-macros",
|
138
|
+
"rustversion",
|
139
|
+
]
|
140
|
+
|
141
|
+
[[package]]
|
142
|
+
name = "bon-macros"
|
143
|
+
version = "3.0.2"
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
+
checksum = "a7eaf1bfaa5b8d512abfd36d0c432591fef139d3de9ee54f1f839ea109d70d33"
|
146
|
+
dependencies = [
|
147
|
+
"darling",
|
148
|
+
"ident_case",
|
149
|
+
"prettyplease",
|
150
|
+
"proc-macro2",
|
151
|
+
"quote",
|
152
|
+
"rustversion",
|
153
|
+
"syn",
|
154
|
+
]
|
155
|
+
|
156
|
+
[[package]]
|
157
|
+
name = "bumpalo"
|
158
|
+
version = "3.16.0"
|
159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
160
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
161
|
+
|
162
|
+
[[package]]
|
163
|
+
name = "caseless"
|
164
|
+
version = "0.2.1"
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
166
|
+
checksum = "808dab3318747be122cb31d36de18d4d1c81277a76f8332a02b81a3d73463d7f"
|
167
|
+
dependencies = [
|
168
|
+
"regex",
|
169
|
+
"unicode-normalization",
|
170
|
+
]
|
171
|
+
|
172
|
+
[[package]]
|
173
|
+
name = "cc"
|
174
|
+
version = "1.1.7"
|
175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
+
checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc"
|
177
|
+
|
178
|
+
[[package]]
|
179
|
+
name = "cexpr"
|
180
|
+
version = "0.6.0"
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
183
|
+
dependencies = [
|
184
|
+
"nom",
|
185
|
+
]
|
186
|
+
|
187
|
+
[[package]]
|
188
|
+
name = "cfg-if"
|
189
|
+
version = "1.0.0"
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
191
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
192
|
+
|
193
|
+
[[package]]
|
194
|
+
name = "clang-sys"
|
195
|
+
version = "1.8.1"
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
197
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
198
|
+
dependencies = [
|
199
|
+
"glob",
|
200
|
+
"libc",
|
201
|
+
"libloading",
|
202
|
+
]
|
203
|
+
|
204
|
+
[[package]]
|
205
|
+
name = "clap"
|
206
|
+
version = "4.5.11"
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
208
|
+
checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3"
|
209
|
+
dependencies = [
|
210
|
+
"clap_builder",
|
211
|
+
"clap_derive",
|
212
|
+
]
|
213
|
+
|
214
|
+
[[package]]
|
215
|
+
name = "clap_builder"
|
216
|
+
version = "4.5.11"
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
+
checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa"
|
219
|
+
dependencies = [
|
220
|
+
"anstream",
|
221
|
+
"anstyle",
|
222
|
+
"clap_lex",
|
223
|
+
"strsim",
|
224
|
+
"terminal_size",
|
225
|
+
]
|
226
|
+
|
227
|
+
[[package]]
|
228
|
+
name = "clap_derive"
|
229
|
+
version = "4.5.11"
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
+
checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e"
|
232
|
+
dependencies = [
|
233
|
+
"heck",
|
234
|
+
"proc-macro2",
|
235
|
+
"quote",
|
236
|
+
"syn",
|
237
|
+
]
|
238
|
+
|
239
|
+
[[package]]
|
240
|
+
name = "clap_lex"
|
241
|
+
version = "0.7.2"
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
243
|
+
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
|
244
|
+
|
245
|
+
[[package]]
|
246
|
+
name = "colorchoice"
|
247
|
+
version = "1.0.2"
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
|
+
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
|
250
|
+
|
251
|
+
[[package]]
|
252
|
+
name = "commonmarker"
|
253
|
+
version = "1.0.0"
|
254
|
+
dependencies = [
|
255
|
+
"comrak",
|
256
|
+
"magnus",
|
257
|
+
"rb-sys",
|
258
|
+
"rctree",
|
259
|
+
"syntect",
|
260
|
+
"typed-arena",
|
261
|
+
]
|
262
|
+
|
263
|
+
[[package]]
|
264
|
+
name = "comrak"
|
265
|
+
version = "0.30.0"
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
267
|
+
checksum = "949f8e6b02ebac005a8be2df9ec0876cafc83fdb9c510796c37f0fadf92dcd0e"
|
268
|
+
dependencies = [
|
269
|
+
"bon",
|
270
|
+
"caseless",
|
271
|
+
"clap",
|
272
|
+
"emojis",
|
273
|
+
"entities",
|
274
|
+
"memchr",
|
275
|
+
"once_cell",
|
276
|
+
"regex",
|
277
|
+
"shell-words",
|
278
|
+
"slug",
|
279
|
+
"syntect",
|
280
|
+
"typed-arena",
|
281
|
+
"unicode_categories",
|
282
|
+
"xdg",
|
283
|
+
]
|
284
|
+
|
285
|
+
[[package]]
|
286
|
+
name = "crc32fast"
|
287
|
+
version = "1.4.2"
|
288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
289
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
290
|
+
dependencies = [
|
291
|
+
"cfg-if",
|
292
|
+
]
|
293
|
+
|
294
|
+
[[package]]
|
295
|
+
name = "darling"
|
296
|
+
version = "0.20.10"
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
298
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
299
|
+
dependencies = [
|
300
|
+
"darling_core",
|
301
|
+
"darling_macro",
|
302
|
+
]
|
303
|
+
|
304
|
+
[[package]]
|
305
|
+
name = "darling_core"
|
306
|
+
version = "0.20.10"
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
309
|
+
dependencies = [
|
310
|
+
"fnv",
|
311
|
+
"ident_case",
|
312
|
+
"proc-macro2",
|
313
|
+
"quote",
|
314
|
+
"strsim",
|
315
|
+
"syn",
|
316
|
+
]
|
317
|
+
|
318
|
+
[[package]]
|
319
|
+
name = "darling_macro"
|
320
|
+
version = "0.20.10"
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
322
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
323
|
+
dependencies = [
|
324
|
+
"darling_core",
|
325
|
+
"quote",
|
326
|
+
"syn",
|
327
|
+
]
|
328
|
+
|
329
|
+
[[package]]
|
330
|
+
name = "deranged"
|
331
|
+
version = "0.3.11"
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
333
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
334
|
+
dependencies = [
|
335
|
+
"powerfmt",
|
336
|
+
]
|
337
|
+
|
338
|
+
[[package]]
|
339
|
+
name = "deunicode"
|
340
|
+
version = "1.6.0"
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
342
|
+
checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
|
343
|
+
|
344
|
+
[[package]]
|
345
|
+
name = "either"
|
346
|
+
version = "1.13.0"
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
348
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
349
|
+
|
350
|
+
[[package]]
|
351
|
+
name = "emojis"
|
352
|
+
version = "0.6.3"
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
354
|
+
checksum = "e72f23d65b46527e461b161ab9a126c378aa2249d8a8d15718d23ab1fb4d8786"
|
355
|
+
dependencies = [
|
356
|
+
"phf",
|
357
|
+
]
|
358
|
+
|
359
|
+
[[package]]
|
360
|
+
name = "entities"
|
361
|
+
version = "1.0.1"
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
363
|
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
364
|
+
|
365
|
+
[[package]]
|
366
|
+
name = "equivalent"
|
367
|
+
version = "1.0.1"
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
369
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
370
|
+
|
371
|
+
[[package]]
|
372
|
+
name = "errno"
|
373
|
+
version = "0.3.9"
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
375
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
376
|
+
dependencies = [
|
377
|
+
"libc",
|
378
|
+
"windows-sys 0.52.0",
|
379
|
+
]
|
380
|
+
|
381
|
+
[[package]]
|
382
|
+
name = "fancy-regex"
|
383
|
+
version = "0.11.0"
|
384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
385
|
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
386
|
+
dependencies = [
|
387
|
+
"bit-set",
|
388
|
+
"regex",
|
389
|
+
]
|
390
|
+
|
391
|
+
[[package]]
|
392
|
+
name = "flate2"
|
393
|
+
version = "1.0.30"
|
394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
395
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
396
|
+
dependencies = [
|
397
|
+
"crc32fast",
|
398
|
+
"miniz_oxide",
|
399
|
+
]
|
400
|
+
|
401
|
+
[[package]]
|
402
|
+
name = "fnv"
|
403
|
+
version = "1.0.7"
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
405
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
406
|
+
|
407
|
+
[[package]]
|
408
|
+
name = "glob"
|
409
|
+
version = "0.3.1"
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
411
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
412
|
+
|
413
|
+
[[package]]
|
414
|
+
name = "hashbrown"
|
415
|
+
version = "0.14.5"
|
416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
417
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
418
|
+
|
419
|
+
[[package]]
|
420
|
+
name = "heck"
|
421
|
+
version = "0.5.0"
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
423
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
424
|
+
|
425
|
+
[[package]]
|
426
|
+
name = "ident_case"
|
427
|
+
version = "1.0.1"
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
429
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
430
|
+
|
431
|
+
[[package]]
|
432
|
+
name = "indexmap"
|
433
|
+
version = "2.2.6"
|
434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
435
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
436
|
+
dependencies = [
|
437
|
+
"equivalent",
|
438
|
+
"hashbrown",
|
439
|
+
]
|
440
|
+
|
441
|
+
[[package]]
|
442
|
+
name = "is_terminal_polyfill"
|
443
|
+
version = "1.70.1"
|
444
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
445
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
446
|
+
|
447
|
+
[[package]]
|
448
|
+
name = "itertools"
|
449
|
+
version = "0.12.1"
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
451
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
452
|
+
dependencies = [
|
453
|
+
"either",
|
454
|
+
]
|
455
|
+
|
456
|
+
[[package]]
|
457
|
+
name = "itoa"
|
458
|
+
version = "1.0.11"
|
459
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
460
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
461
|
+
|
462
|
+
[[package]]
|
463
|
+
name = "lazy_static"
|
464
|
+
version = "1.5.0"
|
465
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
466
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
467
|
+
|
468
|
+
[[package]]
|
469
|
+
name = "lazycell"
|
470
|
+
version = "1.3.0"
|
471
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
472
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
473
|
+
|
474
|
+
[[package]]
|
475
|
+
name = "libc"
|
476
|
+
version = "0.2.155"
|
477
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
478
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
479
|
+
|
480
|
+
[[package]]
|
481
|
+
name = "libloading"
|
482
|
+
version = "0.8.5"
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
484
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
485
|
+
dependencies = [
|
486
|
+
"cfg-if",
|
487
|
+
"windows-targets 0.52.6",
|
488
|
+
]
|
489
|
+
|
490
|
+
[[package]]
|
491
|
+
name = "linked-hash-map"
|
492
|
+
version = "0.5.6"
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
494
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
495
|
+
|
496
|
+
[[package]]
|
497
|
+
name = "linux-raw-sys"
|
498
|
+
version = "0.4.14"
|
499
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
500
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
501
|
+
|
502
|
+
[[package]]
|
503
|
+
name = "log"
|
504
|
+
version = "0.4.22"
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
507
|
+
|
508
|
+
[[package]]
|
509
|
+
name = "magnus"
|
510
|
+
version = "0.7.1"
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
513
|
+
dependencies = [
|
514
|
+
"magnus-macros",
|
515
|
+
"rb-sys",
|
516
|
+
"rb-sys-env",
|
517
|
+
"seq-macro",
|
518
|
+
]
|
519
|
+
|
520
|
+
[[package]]
|
521
|
+
name = "magnus-macros"
|
522
|
+
version = "0.6.0"
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
525
|
+
dependencies = [
|
526
|
+
"proc-macro2",
|
527
|
+
"quote",
|
528
|
+
"syn",
|
529
|
+
]
|
530
|
+
|
531
|
+
[[package]]
|
532
|
+
name = "memchr"
|
533
|
+
version = "2.7.4"
|
534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
535
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
536
|
+
|
537
|
+
[[package]]
|
538
|
+
name = "minimal-lexical"
|
539
|
+
version = "0.2.1"
|
540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
541
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
542
|
+
|
543
|
+
[[package]]
|
544
|
+
name = "miniz_oxide"
|
545
|
+
version = "0.7.4"
|
546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
547
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
548
|
+
dependencies = [
|
549
|
+
"adler",
|
550
|
+
]
|
551
|
+
|
552
|
+
[[package]]
|
553
|
+
name = "nom"
|
554
|
+
version = "7.1.3"
|
555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
556
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
557
|
+
dependencies = [
|
558
|
+
"memchr",
|
559
|
+
"minimal-lexical",
|
560
|
+
]
|
561
|
+
|
562
|
+
[[package]]
|
563
|
+
name = "num-conv"
|
564
|
+
version = "0.1.0"
|
565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
567
|
+
|
568
|
+
[[package]]
|
569
|
+
name = "once_cell"
|
570
|
+
version = "1.19.0"
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
572
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
573
|
+
|
574
|
+
[[package]]
|
575
|
+
name = "onig"
|
576
|
+
version = "6.4.0"
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
578
|
+
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
|
579
|
+
dependencies = [
|
580
|
+
"bitflags 1.3.2",
|
581
|
+
"libc",
|
582
|
+
"once_cell",
|
583
|
+
"onig_sys",
|
584
|
+
]
|
585
|
+
|
586
|
+
[[package]]
|
587
|
+
name = "onig_sys"
|
588
|
+
version = "69.8.1"
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
+
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
|
591
|
+
dependencies = [
|
592
|
+
"cc",
|
593
|
+
"pkg-config",
|
594
|
+
]
|
595
|
+
|
596
|
+
[[package]]
|
597
|
+
name = "phf"
|
598
|
+
version = "0.11.2"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
601
|
+
dependencies = [
|
602
|
+
"phf_shared",
|
603
|
+
]
|
604
|
+
|
605
|
+
[[package]]
|
606
|
+
name = "phf_shared"
|
607
|
+
version = "0.11.2"
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
610
|
+
dependencies = [
|
611
|
+
"siphasher",
|
612
|
+
]
|
613
|
+
|
614
|
+
[[package]]
|
615
|
+
name = "pkg-config"
|
616
|
+
version = "0.3.30"
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
618
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
619
|
+
|
620
|
+
[[package]]
|
621
|
+
name = "plist"
|
622
|
+
version = "1.7.0"
|
623
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
624
|
+
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
|
625
|
+
dependencies = [
|
626
|
+
"base64",
|
627
|
+
"indexmap",
|
628
|
+
"quick-xml",
|
629
|
+
"serde",
|
630
|
+
"time",
|
631
|
+
]
|
632
|
+
|
633
|
+
[[package]]
|
634
|
+
name = "powerfmt"
|
635
|
+
version = "0.2.0"
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
638
|
+
|
639
|
+
[[package]]
|
640
|
+
name = "prettyplease"
|
641
|
+
version = "0.2.25"
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
643
|
+
checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
|
644
|
+
dependencies = [
|
645
|
+
"proc-macro2",
|
646
|
+
"syn",
|
647
|
+
]
|
648
|
+
|
649
|
+
[[package]]
|
650
|
+
name = "proc-macro2"
|
651
|
+
version = "1.0.92"
|
652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
653
|
+
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
|
654
|
+
dependencies = [
|
655
|
+
"unicode-ident",
|
656
|
+
]
|
657
|
+
|
658
|
+
[[package]]
|
659
|
+
name = "quick-xml"
|
660
|
+
version = "0.32.0"
|
661
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
662
|
+
checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
|
663
|
+
dependencies = [
|
664
|
+
"memchr",
|
665
|
+
]
|
666
|
+
|
667
|
+
[[package]]
|
668
|
+
name = "quote"
|
669
|
+
version = "1.0.36"
|
670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
671
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
672
|
+
dependencies = [
|
673
|
+
"proc-macro2",
|
674
|
+
]
|
675
|
+
|
676
|
+
[[package]]
|
677
|
+
name = "rb-sys"
|
678
|
+
version = "0.9.103"
|
679
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
680
|
+
checksum = "91dbe37ab6ac2fba187480fb6544b92445e41e5c6f553bf0c33743f3c450a1df"
|
681
|
+
dependencies = [
|
682
|
+
"rb-sys-build",
|
683
|
+
]
|
684
|
+
|
685
|
+
[[package]]
|
686
|
+
name = "rb-sys-build"
|
687
|
+
version = "0.9.103"
|
688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
689
|
+
checksum = "c4d56a49dcb646b70b758789c0d16c055a386a4f2a3346333abb69850fa860ce"
|
690
|
+
dependencies = [
|
691
|
+
"bindgen",
|
692
|
+
"lazy_static",
|
693
|
+
"proc-macro2",
|
694
|
+
"quote",
|
695
|
+
"regex",
|
696
|
+
"shell-words",
|
697
|
+
"syn",
|
698
|
+
]
|
699
|
+
|
700
|
+
[[package]]
|
701
|
+
name = "rb-sys-env"
|
702
|
+
version = "0.1.2"
|
703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
704
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
705
|
+
|
706
|
+
[[package]]
|
707
|
+
name = "rctree"
|
708
|
+
version = "0.6.0"
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
710
|
+
checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
711
|
+
|
712
|
+
[[package]]
|
713
|
+
name = "regex"
|
714
|
+
version = "1.10.5"
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
717
|
+
dependencies = [
|
718
|
+
"aho-corasick",
|
719
|
+
"memchr",
|
720
|
+
"regex-automata",
|
721
|
+
"regex-syntax",
|
722
|
+
]
|
723
|
+
|
724
|
+
[[package]]
|
725
|
+
name = "regex-automata"
|
726
|
+
version = "0.4.7"
|
727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
728
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
729
|
+
dependencies = [
|
730
|
+
"aho-corasick",
|
731
|
+
"memchr",
|
732
|
+
"regex-syntax",
|
733
|
+
]
|
734
|
+
|
735
|
+
[[package]]
|
736
|
+
name = "regex-syntax"
|
737
|
+
version = "0.8.4"
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
739
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
740
|
+
|
741
|
+
[[package]]
|
742
|
+
name = "rustc-hash"
|
743
|
+
version = "1.1.0"
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
745
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
746
|
+
|
747
|
+
[[package]]
|
748
|
+
name = "rustix"
|
749
|
+
version = "0.38.34"
|
750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
751
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
752
|
+
dependencies = [
|
753
|
+
"bitflags 2.6.0",
|
754
|
+
"errno",
|
755
|
+
"libc",
|
756
|
+
"linux-raw-sys",
|
757
|
+
"windows-sys 0.52.0",
|
758
|
+
]
|
759
|
+
|
760
|
+
[[package]]
|
761
|
+
name = "rustversion"
|
762
|
+
version = "1.0.18"
|
763
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
764
|
+
checksum = "0e819f2bc632f285be6d7cd36e25940d45b2391dd6d9b939e79de557f7014248"
|
765
|
+
|
766
|
+
[[package]]
|
767
|
+
name = "ryu"
|
768
|
+
version = "1.0.18"
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
770
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
771
|
+
|
772
|
+
[[package]]
|
773
|
+
name = "same-file"
|
774
|
+
version = "1.0.6"
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
776
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
777
|
+
dependencies = [
|
778
|
+
"winapi-util",
|
779
|
+
]
|
780
|
+
|
781
|
+
[[package]]
|
782
|
+
name = "seq-macro"
|
783
|
+
version = "0.3.5"
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
785
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
786
|
+
|
787
|
+
[[package]]
|
788
|
+
name = "serde"
|
789
|
+
version = "1.0.204"
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
791
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
792
|
+
dependencies = [
|
793
|
+
"serde_derive",
|
794
|
+
]
|
795
|
+
|
796
|
+
[[package]]
|
797
|
+
name = "serde_derive"
|
798
|
+
version = "1.0.204"
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
800
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
801
|
+
dependencies = [
|
802
|
+
"proc-macro2",
|
803
|
+
"quote",
|
804
|
+
"syn",
|
805
|
+
]
|
806
|
+
|
807
|
+
[[package]]
|
808
|
+
name = "serde_json"
|
809
|
+
version = "1.0.121"
|
810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
+
checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609"
|
812
|
+
dependencies = [
|
813
|
+
"itoa",
|
814
|
+
"memchr",
|
815
|
+
"ryu",
|
816
|
+
"serde",
|
817
|
+
]
|
818
|
+
|
819
|
+
[[package]]
|
820
|
+
name = "shell-words"
|
821
|
+
version = "1.1.0"
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
823
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
824
|
+
|
825
|
+
[[package]]
|
826
|
+
name = "shlex"
|
827
|
+
version = "1.3.0"
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
829
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
830
|
+
|
831
|
+
[[package]]
|
832
|
+
name = "siphasher"
|
833
|
+
version = "0.3.11"
|
834
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
835
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
836
|
+
|
837
|
+
[[package]]
|
838
|
+
name = "slug"
|
839
|
+
version = "0.1.5"
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
841
|
+
checksum = "3bd94acec9c8da640005f8e135a39fc0372e74535e6b368b7a04b875f784c8c4"
|
842
|
+
dependencies = [
|
843
|
+
"deunicode",
|
844
|
+
"wasm-bindgen",
|
845
|
+
]
|
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 = "2.0.89"
|
856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
857
|
+
checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e"
|
858
|
+
dependencies = [
|
859
|
+
"proc-macro2",
|
860
|
+
"quote",
|
861
|
+
"unicode-ident",
|
862
|
+
]
|
863
|
+
|
864
|
+
[[package]]
|
865
|
+
name = "syntect"
|
866
|
+
version = "5.2.0"
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
868
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
869
|
+
dependencies = [
|
870
|
+
"bincode",
|
871
|
+
"bitflags 1.3.2",
|
872
|
+
"fancy-regex",
|
873
|
+
"flate2",
|
874
|
+
"fnv",
|
875
|
+
"once_cell",
|
876
|
+
"onig",
|
877
|
+
"plist",
|
878
|
+
"regex-syntax",
|
879
|
+
"serde",
|
880
|
+
"serde_derive",
|
881
|
+
"serde_json",
|
882
|
+
"thiserror",
|
883
|
+
"walkdir",
|
884
|
+
"yaml-rust",
|
885
|
+
]
|
886
|
+
|
887
|
+
[[package]]
|
888
|
+
name = "terminal_size"
|
889
|
+
version = "0.3.0"
|
890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
+
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
|
892
|
+
dependencies = [
|
893
|
+
"rustix",
|
894
|
+
"windows-sys 0.48.0",
|
895
|
+
]
|
896
|
+
|
897
|
+
[[package]]
|
898
|
+
name = "thiserror"
|
899
|
+
version = "1.0.63"
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
901
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
902
|
+
dependencies = [
|
903
|
+
"thiserror-impl",
|
904
|
+
]
|
905
|
+
|
906
|
+
[[package]]
|
907
|
+
name = "thiserror-impl"
|
908
|
+
version = "1.0.63"
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
910
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
911
|
+
dependencies = [
|
912
|
+
"proc-macro2",
|
913
|
+
"quote",
|
914
|
+
"syn",
|
915
|
+
]
|
916
|
+
|
917
|
+
[[package]]
|
918
|
+
name = "time"
|
919
|
+
version = "0.3.36"
|
920
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
921
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
922
|
+
dependencies = [
|
923
|
+
"deranged",
|
924
|
+
"itoa",
|
925
|
+
"num-conv",
|
926
|
+
"powerfmt",
|
927
|
+
"serde",
|
928
|
+
"time-core",
|
929
|
+
"time-macros",
|
930
|
+
]
|
931
|
+
|
932
|
+
[[package]]
|
933
|
+
name = "time-core"
|
934
|
+
version = "0.1.2"
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
936
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
937
|
+
|
938
|
+
[[package]]
|
939
|
+
name = "time-macros"
|
940
|
+
version = "0.2.18"
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
942
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
943
|
+
dependencies = [
|
944
|
+
"num-conv",
|
945
|
+
"time-core",
|
946
|
+
]
|
947
|
+
|
948
|
+
[[package]]
|
949
|
+
name = "tinyvec"
|
950
|
+
version = "1.8.0"
|
951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
953
|
+
dependencies = [
|
954
|
+
"tinyvec_macros",
|
955
|
+
]
|
956
|
+
|
957
|
+
[[package]]
|
958
|
+
name = "tinyvec_macros"
|
959
|
+
version = "0.1.1"
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
962
|
+
|
963
|
+
[[package]]
|
964
|
+
name = "typed-arena"
|
965
|
+
version = "2.0.2"
|
966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
967
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
968
|
+
|
969
|
+
[[package]]
|
970
|
+
name = "unicode-ident"
|
971
|
+
version = "1.0.12"
|
972
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
973
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
974
|
+
|
975
|
+
[[package]]
|
976
|
+
name = "unicode-normalization"
|
977
|
+
version = "0.1.23"
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
979
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
980
|
+
dependencies = [
|
981
|
+
"tinyvec",
|
982
|
+
]
|
983
|
+
|
984
|
+
[[package]]
|
985
|
+
name = "unicode_categories"
|
986
|
+
version = "0.1.1"
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
988
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
989
|
+
|
990
|
+
[[package]]
|
991
|
+
name = "utf8parse"
|
992
|
+
version = "0.2.2"
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
994
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
995
|
+
|
996
|
+
[[package]]
|
997
|
+
name = "walkdir"
|
998
|
+
version = "2.5.0"
|
999
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1000
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1001
|
+
dependencies = [
|
1002
|
+
"same-file",
|
1003
|
+
"winapi-util",
|
1004
|
+
]
|
1005
|
+
|
1006
|
+
[[package]]
|
1007
|
+
name = "wasm-bindgen"
|
1008
|
+
version = "0.2.92"
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
1011
|
+
dependencies = [
|
1012
|
+
"cfg-if",
|
1013
|
+
"wasm-bindgen-macro",
|
1014
|
+
]
|
1015
|
+
|
1016
|
+
[[package]]
|
1017
|
+
name = "wasm-bindgen-backend"
|
1018
|
+
version = "0.2.92"
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1020
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
1021
|
+
dependencies = [
|
1022
|
+
"bumpalo",
|
1023
|
+
"log",
|
1024
|
+
"once_cell",
|
1025
|
+
"proc-macro2",
|
1026
|
+
"quote",
|
1027
|
+
"syn",
|
1028
|
+
"wasm-bindgen-shared",
|
1029
|
+
]
|
1030
|
+
|
1031
|
+
[[package]]
|
1032
|
+
name = "wasm-bindgen-macro"
|
1033
|
+
version = "0.2.92"
|
1034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1035
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
1036
|
+
dependencies = [
|
1037
|
+
"quote",
|
1038
|
+
"wasm-bindgen-macro-support",
|
1039
|
+
]
|
1040
|
+
|
1041
|
+
[[package]]
|
1042
|
+
name = "wasm-bindgen-macro-support"
|
1043
|
+
version = "0.2.92"
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
1046
|
+
dependencies = [
|
1047
|
+
"proc-macro2",
|
1048
|
+
"quote",
|
1049
|
+
"syn",
|
1050
|
+
"wasm-bindgen-backend",
|
1051
|
+
"wasm-bindgen-shared",
|
1052
|
+
]
|
1053
|
+
|
1054
|
+
[[package]]
|
1055
|
+
name = "wasm-bindgen-shared"
|
1056
|
+
version = "0.2.92"
|
1057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1058
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
1059
|
+
|
1060
|
+
[[package]]
|
1061
|
+
name = "winapi-util"
|
1062
|
+
version = "0.1.8"
|
1063
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1064
|
+
checksum = "4d4cc384e1e73b93bafa6fb4f1df8c41695c8a91cf9c4c64358067d15a7b6c6b"
|
1065
|
+
dependencies = [
|
1066
|
+
"windows-sys 0.52.0",
|
1067
|
+
]
|
1068
|
+
|
1069
|
+
[[package]]
|
1070
|
+
name = "windows-sys"
|
1071
|
+
version = "0.48.0"
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1073
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
1074
|
+
dependencies = [
|
1075
|
+
"windows-targets 0.48.5",
|
1076
|
+
]
|
1077
|
+
|
1078
|
+
[[package]]
|
1079
|
+
name = "windows-sys"
|
1080
|
+
version = "0.52.0"
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1082
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
1083
|
+
dependencies = [
|
1084
|
+
"windows-targets 0.52.6",
|
1085
|
+
]
|
1086
|
+
|
1087
|
+
[[package]]
|
1088
|
+
name = "windows-targets"
|
1089
|
+
version = "0.48.5"
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1091
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
1092
|
+
dependencies = [
|
1093
|
+
"windows_aarch64_gnullvm 0.48.5",
|
1094
|
+
"windows_aarch64_msvc 0.48.5",
|
1095
|
+
"windows_i686_gnu 0.48.5",
|
1096
|
+
"windows_i686_msvc 0.48.5",
|
1097
|
+
"windows_x86_64_gnu 0.48.5",
|
1098
|
+
"windows_x86_64_gnullvm 0.48.5",
|
1099
|
+
"windows_x86_64_msvc 0.48.5",
|
1100
|
+
]
|
1101
|
+
|
1102
|
+
[[package]]
|
1103
|
+
name = "windows-targets"
|
1104
|
+
version = "0.52.6"
|
1105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1106
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1107
|
+
dependencies = [
|
1108
|
+
"windows_aarch64_gnullvm 0.52.6",
|
1109
|
+
"windows_aarch64_msvc 0.52.6",
|
1110
|
+
"windows_i686_gnu 0.52.6",
|
1111
|
+
"windows_i686_gnullvm",
|
1112
|
+
"windows_i686_msvc 0.52.6",
|
1113
|
+
"windows_x86_64_gnu 0.52.6",
|
1114
|
+
"windows_x86_64_gnullvm 0.52.6",
|
1115
|
+
"windows_x86_64_msvc 0.52.6",
|
1116
|
+
]
|
1117
|
+
|
1118
|
+
[[package]]
|
1119
|
+
name = "windows_aarch64_gnullvm"
|
1120
|
+
version = "0.48.5"
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1122
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
1123
|
+
|
1124
|
+
[[package]]
|
1125
|
+
name = "windows_aarch64_gnullvm"
|
1126
|
+
version = "0.52.6"
|
1127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1129
|
+
|
1130
|
+
[[package]]
|
1131
|
+
name = "windows_aarch64_msvc"
|
1132
|
+
version = "0.48.5"
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
1135
|
+
|
1136
|
+
[[package]]
|
1137
|
+
name = "windows_aarch64_msvc"
|
1138
|
+
version = "0.52.6"
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1141
|
+
|
1142
|
+
[[package]]
|
1143
|
+
name = "windows_i686_gnu"
|
1144
|
+
version = "0.48.5"
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
1147
|
+
|
1148
|
+
[[package]]
|
1149
|
+
name = "windows_i686_gnu"
|
1150
|
+
version = "0.52.6"
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1153
|
+
|
1154
|
+
[[package]]
|
1155
|
+
name = "windows_i686_gnullvm"
|
1156
|
+
version = "0.52.6"
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1158
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1159
|
+
|
1160
|
+
[[package]]
|
1161
|
+
name = "windows_i686_msvc"
|
1162
|
+
version = "0.48.5"
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1164
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
1165
|
+
|
1166
|
+
[[package]]
|
1167
|
+
name = "windows_i686_msvc"
|
1168
|
+
version = "0.52.6"
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1170
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1171
|
+
|
1172
|
+
[[package]]
|
1173
|
+
name = "windows_x86_64_gnu"
|
1174
|
+
version = "0.48.5"
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1176
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
1177
|
+
|
1178
|
+
[[package]]
|
1179
|
+
name = "windows_x86_64_gnu"
|
1180
|
+
version = "0.52.6"
|
1181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1182
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1183
|
+
|
1184
|
+
[[package]]
|
1185
|
+
name = "windows_x86_64_gnullvm"
|
1186
|
+
version = "0.48.5"
|
1187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1188
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
1189
|
+
|
1190
|
+
[[package]]
|
1191
|
+
name = "windows_x86_64_gnullvm"
|
1192
|
+
version = "0.52.6"
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1194
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1195
|
+
|
1196
|
+
[[package]]
|
1197
|
+
name = "windows_x86_64_msvc"
|
1198
|
+
version = "0.48.5"
|
1199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1200
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
1201
|
+
|
1202
|
+
[[package]]
|
1203
|
+
name = "windows_x86_64_msvc"
|
1204
|
+
version = "0.52.6"
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1206
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1207
|
+
|
1208
|
+
[[package]]
|
1209
|
+
name = "xdg"
|
1210
|
+
version = "2.5.2"
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1212
|
+
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
|
1213
|
+
|
1214
|
+
[[package]]
|
1215
|
+
name = "yaml-rust"
|
1216
|
+
version = "0.4.5"
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
1219
|
+
dependencies = [
|
1220
|
+
"linked-hash-map",
|
1221
|
+
]
|