gitlab-glfm-markdown 0.0.24-x86_64-linux-musl
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Cargo.lock +1100 -0
- data/LICENSE +28 -0
- data/README.md +109 -0
- data/ext/glfm_markdown/Cargo.toml +23 -0
- data/ext/glfm_markdown/extconf.rb +8 -0
- data/ext/glfm_markdown/src/glfm.rs +93 -0
- data/ext/glfm_markdown/src/lib.rs +69 -0
- data/ext/glfm_markdown/src/main.rs +227 -0
- data/lib/glfm_markdown/3.1/glfm_markdown.so +0 -0
- data/lib/glfm_markdown/3.2/glfm_markdown.so +0 -0
- data/lib/glfm_markdown/3.3/glfm_markdown.so +0 -0
- data/lib/glfm_markdown/3.4/glfm_markdown.so +0 -0
- data/lib/glfm_markdown/loader.rb +8 -0
- data/lib/glfm_markdown/version.rb +5 -0
- data/lib/glfm_markdown.rb +47 -0
- metadata +120 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,1100 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "adler2"
|
7
|
+
version = "2.0.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
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.18"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
|
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.10"
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
39
|
+
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "anstyle-parse"
|
43
|
+
version = "0.2.6"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
|
46
|
+
dependencies = [
|
47
|
+
"utf8parse",
|
48
|
+
]
|
49
|
+
|
50
|
+
[[package]]
|
51
|
+
name = "anstyle-query"
|
52
|
+
version = "1.1.2"
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
+
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
|
55
|
+
dependencies = [
|
56
|
+
"windows-sys",
|
57
|
+
]
|
58
|
+
|
59
|
+
[[package]]
|
60
|
+
name = "anstyle-wincon"
|
61
|
+
version = "3.0.6"
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
63
|
+
checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
|
64
|
+
dependencies = [
|
65
|
+
"anstyle",
|
66
|
+
"windows-sys",
|
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.5"
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
88
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
89
|
+
dependencies = [
|
90
|
+
"bitflags 2.7.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.7.0"
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
129
|
+
checksum = "1be3f42a67d6d345ecd59f675f3f012d6974981560836e938c22b424b85ce1be"
|
130
|
+
|
131
|
+
[[package]]
|
132
|
+
name = "bon"
|
133
|
+
version = "3.3.2"
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
135
|
+
checksum = "fe7acc34ff59877422326db7d6f2d845a582b16396b6b08194942bf34c6528ab"
|
136
|
+
dependencies = [
|
137
|
+
"bon-macros",
|
138
|
+
"rustversion",
|
139
|
+
]
|
140
|
+
|
141
|
+
[[package]]
|
142
|
+
name = "bon-macros"
|
143
|
+
version = "3.3.2"
|
144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
145
|
+
checksum = "4159dd617a7fbc9be6a692fe69dc2954f8e6bb6bb5e4d7578467441390d77fd0"
|
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.2"
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
166
|
+
checksum = "8b6fd507454086c8edfd769ca6ada439193cdb209c7681712ef6275cccbfe5d8"
|
167
|
+
dependencies = [
|
168
|
+
"unicode-normalization",
|
169
|
+
]
|
170
|
+
|
171
|
+
[[package]]
|
172
|
+
name = "cc"
|
173
|
+
version = "1.2.8"
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
175
|
+
checksum = "ad0cf6e91fde44c773c6ee7ec6bba798504641a8bc2eb7e37a04ffbf4dfaa55a"
|
176
|
+
dependencies = [
|
177
|
+
"shlex",
|
178
|
+
]
|
179
|
+
|
180
|
+
[[package]]
|
181
|
+
name = "cexpr"
|
182
|
+
version = "0.6.0"
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
184
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
185
|
+
dependencies = [
|
186
|
+
"nom",
|
187
|
+
]
|
188
|
+
|
189
|
+
[[package]]
|
190
|
+
name = "cfg-if"
|
191
|
+
version = "1.0.0"
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
193
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
194
|
+
|
195
|
+
[[package]]
|
196
|
+
name = "clang-sys"
|
197
|
+
version = "1.8.1"
|
198
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
199
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
200
|
+
dependencies = [
|
201
|
+
"glob",
|
202
|
+
"libc",
|
203
|
+
"libloading",
|
204
|
+
]
|
205
|
+
|
206
|
+
[[package]]
|
207
|
+
name = "clap"
|
208
|
+
version = "4.5.26"
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
210
|
+
checksum = "a8eb5e908ef3a6efbe1ed62520fb7287959888c88485abe072543190ecc66783"
|
211
|
+
dependencies = [
|
212
|
+
"clap_builder",
|
213
|
+
"clap_derive",
|
214
|
+
]
|
215
|
+
|
216
|
+
[[package]]
|
217
|
+
name = "clap_builder"
|
218
|
+
version = "4.5.26"
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
220
|
+
checksum = "96b01801b5fc6a0a232407abc821660c9c6d25a1cafc0d4f85f29fb8d9afc121"
|
221
|
+
dependencies = [
|
222
|
+
"anstream",
|
223
|
+
"anstyle",
|
224
|
+
"clap_lex",
|
225
|
+
"strsim",
|
226
|
+
]
|
227
|
+
|
228
|
+
[[package]]
|
229
|
+
name = "clap_derive"
|
230
|
+
version = "4.5.24"
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
+
checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
|
233
|
+
dependencies = [
|
234
|
+
"heck",
|
235
|
+
"proc-macro2",
|
236
|
+
"quote",
|
237
|
+
"syn",
|
238
|
+
]
|
239
|
+
|
240
|
+
[[package]]
|
241
|
+
name = "clap_lex"
|
242
|
+
version = "0.7.4"
|
243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
244
|
+
checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
|
245
|
+
|
246
|
+
[[package]]
|
247
|
+
name = "colorchoice"
|
248
|
+
version = "1.0.3"
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
250
|
+
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
|
251
|
+
|
252
|
+
[[package]]
|
253
|
+
name = "comrak"
|
254
|
+
version = "0.31.0"
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
256
|
+
checksum = "453dcb42e33f7b474d7e0db12e0b8d82802c88f35cf5a1d8c297d0dfcecb154f"
|
257
|
+
dependencies = [
|
258
|
+
"bon",
|
259
|
+
"caseless",
|
260
|
+
"emojis",
|
261
|
+
"entities",
|
262
|
+
"memchr",
|
263
|
+
"once_cell",
|
264
|
+
"regex",
|
265
|
+
"slug",
|
266
|
+
"syntect",
|
267
|
+
"typed-arena",
|
268
|
+
"unicode_categories",
|
269
|
+
]
|
270
|
+
|
271
|
+
[[package]]
|
272
|
+
name = "crc32fast"
|
273
|
+
version = "1.4.2"
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
276
|
+
dependencies = [
|
277
|
+
"cfg-if",
|
278
|
+
]
|
279
|
+
|
280
|
+
[[package]]
|
281
|
+
name = "darling"
|
282
|
+
version = "0.20.10"
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
284
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
285
|
+
dependencies = [
|
286
|
+
"darling_core",
|
287
|
+
"darling_macro",
|
288
|
+
]
|
289
|
+
|
290
|
+
[[package]]
|
291
|
+
name = "darling_core"
|
292
|
+
version = "0.20.10"
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
294
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
295
|
+
dependencies = [
|
296
|
+
"fnv",
|
297
|
+
"ident_case",
|
298
|
+
"proc-macro2",
|
299
|
+
"quote",
|
300
|
+
"strsim",
|
301
|
+
"syn",
|
302
|
+
]
|
303
|
+
|
304
|
+
[[package]]
|
305
|
+
name = "darling_macro"
|
306
|
+
version = "0.20.10"
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
308
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
309
|
+
dependencies = [
|
310
|
+
"darling_core",
|
311
|
+
"quote",
|
312
|
+
"syn",
|
313
|
+
]
|
314
|
+
|
315
|
+
[[package]]
|
316
|
+
name = "deranged"
|
317
|
+
version = "0.3.11"
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
319
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
320
|
+
dependencies = [
|
321
|
+
"powerfmt",
|
322
|
+
]
|
323
|
+
|
324
|
+
[[package]]
|
325
|
+
name = "deunicode"
|
326
|
+
version = "1.6.0"
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
328
|
+
checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
|
329
|
+
|
330
|
+
[[package]]
|
331
|
+
name = "either"
|
332
|
+
version = "1.13.0"
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
334
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
335
|
+
|
336
|
+
[[package]]
|
337
|
+
name = "emojis"
|
338
|
+
version = "0.6.4"
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
340
|
+
checksum = "99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4"
|
341
|
+
dependencies = [
|
342
|
+
"phf",
|
343
|
+
]
|
344
|
+
|
345
|
+
[[package]]
|
346
|
+
name = "entities"
|
347
|
+
version = "1.0.1"
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
349
|
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
350
|
+
|
351
|
+
[[package]]
|
352
|
+
name = "equivalent"
|
353
|
+
version = "1.0.1"
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
356
|
+
|
357
|
+
[[package]]
|
358
|
+
name = "fancy-regex"
|
359
|
+
version = "0.11.0"
|
360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
361
|
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
362
|
+
dependencies = [
|
363
|
+
"bit-set",
|
364
|
+
"regex",
|
365
|
+
]
|
366
|
+
|
367
|
+
[[package]]
|
368
|
+
name = "flate2"
|
369
|
+
version = "1.0.35"
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
371
|
+
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
372
|
+
dependencies = [
|
373
|
+
"crc32fast",
|
374
|
+
"miniz_oxide",
|
375
|
+
]
|
376
|
+
|
377
|
+
[[package]]
|
378
|
+
name = "fnv"
|
379
|
+
version = "1.0.7"
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
381
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
382
|
+
|
383
|
+
[[package]]
|
384
|
+
name = "glfm_markdown"
|
385
|
+
version = "0.0.24"
|
386
|
+
dependencies = [
|
387
|
+
"clap",
|
388
|
+
"comrak",
|
389
|
+
"magnus",
|
390
|
+
"rb-sys",
|
391
|
+
]
|
392
|
+
|
393
|
+
[[package]]
|
394
|
+
name = "glob"
|
395
|
+
version = "0.3.2"
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
397
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
398
|
+
|
399
|
+
[[package]]
|
400
|
+
name = "hashbrown"
|
401
|
+
version = "0.15.2"
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
403
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
404
|
+
|
405
|
+
[[package]]
|
406
|
+
name = "heck"
|
407
|
+
version = "0.5.0"
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
409
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
410
|
+
|
411
|
+
[[package]]
|
412
|
+
name = "ident_case"
|
413
|
+
version = "1.0.1"
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
416
|
+
|
417
|
+
[[package]]
|
418
|
+
name = "indexmap"
|
419
|
+
version = "2.7.0"
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
421
|
+
checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
|
422
|
+
dependencies = [
|
423
|
+
"equivalent",
|
424
|
+
"hashbrown",
|
425
|
+
]
|
426
|
+
|
427
|
+
[[package]]
|
428
|
+
name = "is_terminal_polyfill"
|
429
|
+
version = "1.70.1"
|
430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
431
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
432
|
+
|
433
|
+
[[package]]
|
434
|
+
name = "itertools"
|
435
|
+
version = "0.12.1"
|
436
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
437
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
438
|
+
dependencies = [
|
439
|
+
"either",
|
440
|
+
]
|
441
|
+
|
442
|
+
[[package]]
|
443
|
+
name = "itoa"
|
444
|
+
version = "1.0.14"
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
446
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
447
|
+
|
448
|
+
[[package]]
|
449
|
+
name = "lazy_static"
|
450
|
+
version = "1.5.0"
|
451
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
452
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
453
|
+
|
454
|
+
[[package]]
|
455
|
+
name = "lazycell"
|
456
|
+
version = "1.3.0"
|
457
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
458
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
459
|
+
|
460
|
+
[[package]]
|
461
|
+
name = "libc"
|
462
|
+
version = "0.2.169"
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
465
|
+
|
466
|
+
[[package]]
|
467
|
+
name = "libloading"
|
468
|
+
version = "0.8.6"
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
470
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
471
|
+
dependencies = [
|
472
|
+
"cfg-if",
|
473
|
+
"windows-targets",
|
474
|
+
]
|
475
|
+
|
476
|
+
[[package]]
|
477
|
+
name = "linked-hash-map"
|
478
|
+
version = "0.5.6"
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
480
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
481
|
+
|
482
|
+
[[package]]
|
483
|
+
name = "log"
|
484
|
+
version = "0.4.24"
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
486
|
+
checksum = "3d6ea2a48c204030ee31a7d7fc72c93294c92fe87ecb1789881c9543516e1a0d"
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "magnus"
|
490
|
+
version = "0.6.4"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
|
493
|
+
dependencies = [
|
494
|
+
"magnus-macros",
|
495
|
+
"rb-sys",
|
496
|
+
"rb-sys-env",
|
497
|
+
"seq-macro",
|
498
|
+
]
|
499
|
+
|
500
|
+
[[package]]
|
501
|
+
name = "magnus-macros"
|
502
|
+
version = "0.6.0"
|
503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
505
|
+
dependencies = [
|
506
|
+
"proc-macro2",
|
507
|
+
"quote",
|
508
|
+
"syn",
|
509
|
+
]
|
510
|
+
|
511
|
+
[[package]]
|
512
|
+
name = "memchr"
|
513
|
+
version = "2.7.4"
|
514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
515
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
516
|
+
|
517
|
+
[[package]]
|
518
|
+
name = "minimal-lexical"
|
519
|
+
version = "0.2.1"
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
521
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
522
|
+
|
523
|
+
[[package]]
|
524
|
+
name = "miniz_oxide"
|
525
|
+
version = "0.8.2"
|
526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
527
|
+
checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
|
528
|
+
dependencies = [
|
529
|
+
"adler2",
|
530
|
+
]
|
531
|
+
|
532
|
+
[[package]]
|
533
|
+
name = "nom"
|
534
|
+
version = "7.1.3"
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
537
|
+
dependencies = [
|
538
|
+
"memchr",
|
539
|
+
"minimal-lexical",
|
540
|
+
]
|
541
|
+
|
542
|
+
[[package]]
|
543
|
+
name = "num-conv"
|
544
|
+
version = "0.1.0"
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
546
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
547
|
+
|
548
|
+
[[package]]
|
549
|
+
name = "once_cell"
|
550
|
+
version = "1.20.2"
|
551
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
552
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
553
|
+
|
554
|
+
[[package]]
|
555
|
+
name = "onig"
|
556
|
+
version = "6.4.0"
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
558
|
+
checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
|
559
|
+
dependencies = [
|
560
|
+
"bitflags 1.3.2",
|
561
|
+
"libc",
|
562
|
+
"once_cell",
|
563
|
+
"onig_sys",
|
564
|
+
]
|
565
|
+
|
566
|
+
[[package]]
|
567
|
+
name = "onig_sys"
|
568
|
+
version = "69.8.1"
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
|
+
checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
|
571
|
+
dependencies = [
|
572
|
+
"cc",
|
573
|
+
"pkg-config",
|
574
|
+
]
|
575
|
+
|
576
|
+
[[package]]
|
577
|
+
name = "phf"
|
578
|
+
version = "0.11.3"
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
580
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
581
|
+
dependencies = [
|
582
|
+
"phf_shared",
|
583
|
+
]
|
584
|
+
|
585
|
+
[[package]]
|
586
|
+
name = "phf_shared"
|
587
|
+
version = "0.11.3"
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
589
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
590
|
+
dependencies = [
|
591
|
+
"siphasher",
|
592
|
+
]
|
593
|
+
|
594
|
+
[[package]]
|
595
|
+
name = "pkg-config"
|
596
|
+
version = "0.3.31"
|
597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
598
|
+
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
599
|
+
|
600
|
+
[[package]]
|
601
|
+
name = "plist"
|
602
|
+
version = "1.7.0"
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
604
|
+
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
|
605
|
+
dependencies = [
|
606
|
+
"base64",
|
607
|
+
"indexmap",
|
608
|
+
"quick-xml",
|
609
|
+
"serde",
|
610
|
+
"time",
|
611
|
+
]
|
612
|
+
|
613
|
+
[[package]]
|
614
|
+
name = "powerfmt"
|
615
|
+
version = "0.2.0"
|
616
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
617
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
618
|
+
|
619
|
+
[[package]]
|
620
|
+
name = "prettyplease"
|
621
|
+
version = "0.2.27"
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
623
|
+
checksum = "483f8c21f64f3ea09fe0f30f5d48c3e8eefe5dac9129f0075f76593b4c1da705"
|
624
|
+
dependencies = [
|
625
|
+
"proc-macro2",
|
626
|
+
"syn",
|
627
|
+
]
|
628
|
+
|
629
|
+
[[package]]
|
630
|
+
name = "proc-macro2"
|
631
|
+
version = "1.0.93"
|
632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
633
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
634
|
+
dependencies = [
|
635
|
+
"unicode-ident",
|
636
|
+
]
|
637
|
+
|
638
|
+
[[package]]
|
639
|
+
name = "quick-xml"
|
640
|
+
version = "0.32.0"
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
642
|
+
checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
|
643
|
+
dependencies = [
|
644
|
+
"memchr",
|
645
|
+
]
|
646
|
+
|
647
|
+
[[package]]
|
648
|
+
name = "quote"
|
649
|
+
version = "1.0.38"
|
650
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
651
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
652
|
+
dependencies = [
|
653
|
+
"proc-macro2",
|
654
|
+
]
|
655
|
+
|
656
|
+
[[package]]
|
657
|
+
name = "rb-sys"
|
658
|
+
version = "0.9.107"
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
660
|
+
checksum = "56aaf81d9efc195606456e91896297ee5ab2002381539f8ed1ba6b4f2e467f3b"
|
661
|
+
dependencies = [
|
662
|
+
"rb-sys-build",
|
663
|
+
]
|
664
|
+
|
665
|
+
[[package]]
|
666
|
+
name = "rb-sys-build"
|
667
|
+
version = "0.9.107"
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
669
|
+
checksum = "035b513baded6df2b90a8559efb1973c47ba42e16c21c5f0863dd2aa4dbd6abe"
|
670
|
+
dependencies = [
|
671
|
+
"bindgen",
|
672
|
+
"lazy_static",
|
673
|
+
"proc-macro2",
|
674
|
+
"quote",
|
675
|
+
"regex",
|
676
|
+
"shell-words",
|
677
|
+
"syn",
|
678
|
+
]
|
679
|
+
|
680
|
+
[[package]]
|
681
|
+
name = "rb-sys-env"
|
682
|
+
version = "0.1.2"
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
684
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
685
|
+
|
686
|
+
[[package]]
|
687
|
+
name = "regex"
|
688
|
+
version = "1.11.1"
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
691
|
+
dependencies = [
|
692
|
+
"aho-corasick",
|
693
|
+
"memchr",
|
694
|
+
"regex-automata",
|
695
|
+
"regex-syntax",
|
696
|
+
]
|
697
|
+
|
698
|
+
[[package]]
|
699
|
+
name = "regex-automata"
|
700
|
+
version = "0.4.9"
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
702
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
703
|
+
dependencies = [
|
704
|
+
"aho-corasick",
|
705
|
+
"memchr",
|
706
|
+
"regex-syntax",
|
707
|
+
]
|
708
|
+
|
709
|
+
[[package]]
|
710
|
+
name = "regex-syntax"
|
711
|
+
version = "0.8.5"
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
713
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
714
|
+
|
715
|
+
[[package]]
|
716
|
+
name = "rustc-hash"
|
717
|
+
version = "1.1.0"
|
718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
719
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
720
|
+
|
721
|
+
[[package]]
|
722
|
+
name = "rustversion"
|
723
|
+
version = "1.0.19"
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
725
|
+
checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
|
726
|
+
|
727
|
+
[[package]]
|
728
|
+
name = "ryu"
|
729
|
+
version = "1.0.18"
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
731
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
732
|
+
|
733
|
+
[[package]]
|
734
|
+
name = "same-file"
|
735
|
+
version = "1.0.6"
|
736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
737
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
738
|
+
dependencies = [
|
739
|
+
"winapi-util",
|
740
|
+
]
|
741
|
+
|
742
|
+
[[package]]
|
743
|
+
name = "seq-macro"
|
744
|
+
version = "0.3.5"
|
745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
746
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
747
|
+
|
748
|
+
[[package]]
|
749
|
+
name = "serde"
|
750
|
+
version = "1.0.217"
|
751
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
753
|
+
dependencies = [
|
754
|
+
"serde_derive",
|
755
|
+
]
|
756
|
+
|
757
|
+
[[package]]
|
758
|
+
name = "serde_derive"
|
759
|
+
version = "1.0.217"
|
760
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
761
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
762
|
+
dependencies = [
|
763
|
+
"proc-macro2",
|
764
|
+
"quote",
|
765
|
+
"syn",
|
766
|
+
]
|
767
|
+
|
768
|
+
[[package]]
|
769
|
+
name = "serde_json"
|
770
|
+
version = "1.0.135"
|
771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
772
|
+
checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
|
773
|
+
dependencies = [
|
774
|
+
"itoa",
|
775
|
+
"memchr",
|
776
|
+
"ryu",
|
777
|
+
"serde",
|
778
|
+
]
|
779
|
+
|
780
|
+
[[package]]
|
781
|
+
name = "shell-words"
|
782
|
+
version = "1.1.0"
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
784
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
785
|
+
|
786
|
+
[[package]]
|
787
|
+
name = "shlex"
|
788
|
+
version = "1.3.0"
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
790
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
791
|
+
|
792
|
+
[[package]]
|
793
|
+
name = "siphasher"
|
794
|
+
version = "1.0.1"
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
796
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
797
|
+
|
798
|
+
[[package]]
|
799
|
+
name = "slug"
|
800
|
+
version = "0.1.6"
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
802
|
+
checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
|
803
|
+
dependencies = [
|
804
|
+
"deunicode",
|
805
|
+
"wasm-bindgen",
|
806
|
+
]
|
807
|
+
|
808
|
+
[[package]]
|
809
|
+
name = "strsim"
|
810
|
+
version = "0.11.1"
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
812
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
813
|
+
|
814
|
+
[[package]]
|
815
|
+
name = "syn"
|
816
|
+
version = "2.0.96"
|
817
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
818
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
819
|
+
dependencies = [
|
820
|
+
"proc-macro2",
|
821
|
+
"quote",
|
822
|
+
"unicode-ident",
|
823
|
+
]
|
824
|
+
|
825
|
+
[[package]]
|
826
|
+
name = "syntect"
|
827
|
+
version = "5.2.0"
|
828
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
829
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
830
|
+
dependencies = [
|
831
|
+
"bincode",
|
832
|
+
"bitflags 1.3.2",
|
833
|
+
"fancy-regex",
|
834
|
+
"flate2",
|
835
|
+
"fnv",
|
836
|
+
"once_cell",
|
837
|
+
"onig",
|
838
|
+
"plist",
|
839
|
+
"regex-syntax",
|
840
|
+
"serde",
|
841
|
+
"serde_derive",
|
842
|
+
"serde_json",
|
843
|
+
"thiserror",
|
844
|
+
"walkdir",
|
845
|
+
"yaml-rust",
|
846
|
+
]
|
847
|
+
|
848
|
+
[[package]]
|
849
|
+
name = "thiserror"
|
850
|
+
version = "1.0.69"
|
851
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
852
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
853
|
+
dependencies = [
|
854
|
+
"thiserror-impl",
|
855
|
+
]
|
856
|
+
|
857
|
+
[[package]]
|
858
|
+
name = "thiserror-impl"
|
859
|
+
version = "1.0.69"
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
861
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
862
|
+
dependencies = [
|
863
|
+
"proc-macro2",
|
864
|
+
"quote",
|
865
|
+
"syn",
|
866
|
+
]
|
867
|
+
|
868
|
+
[[package]]
|
869
|
+
name = "time"
|
870
|
+
version = "0.3.37"
|
871
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
872
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
873
|
+
dependencies = [
|
874
|
+
"deranged",
|
875
|
+
"itoa",
|
876
|
+
"num-conv",
|
877
|
+
"powerfmt",
|
878
|
+
"serde",
|
879
|
+
"time-core",
|
880
|
+
"time-macros",
|
881
|
+
]
|
882
|
+
|
883
|
+
[[package]]
|
884
|
+
name = "time-core"
|
885
|
+
version = "0.1.2"
|
886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
887
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
888
|
+
|
889
|
+
[[package]]
|
890
|
+
name = "time-macros"
|
891
|
+
version = "0.2.19"
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
893
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
894
|
+
dependencies = [
|
895
|
+
"num-conv",
|
896
|
+
"time-core",
|
897
|
+
]
|
898
|
+
|
899
|
+
[[package]]
|
900
|
+
name = "tinyvec"
|
901
|
+
version = "1.8.1"
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
+
checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
|
904
|
+
dependencies = [
|
905
|
+
"tinyvec_macros",
|
906
|
+
]
|
907
|
+
|
908
|
+
[[package]]
|
909
|
+
name = "tinyvec_macros"
|
910
|
+
version = "0.1.1"
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
912
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
913
|
+
|
914
|
+
[[package]]
|
915
|
+
name = "typed-arena"
|
916
|
+
version = "2.0.2"
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
918
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
919
|
+
|
920
|
+
[[package]]
|
921
|
+
name = "unicode-ident"
|
922
|
+
version = "1.0.14"
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
+
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
925
|
+
|
926
|
+
[[package]]
|
927
|
+
name = "unicode-normalization"
|
928
|
+
version = "0.1.24"
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
930
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
931
|
+
dependencies = [
|
932
|
+
"tinyvec",
|
933
|
+
]
|
934
|
+
|
935
|
+
[[package]]
|
936
|
+
name = "unicode_categories"
|
937
|
+
version = "0.1.1"
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
940
|
+
|
941
|
+
[[package]]
|
942
|
+
name = "utf8parse"
|
943
|
+
version = "0.2.2"
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
945
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
946
|
+
|
947
|
+
[[package]]
|
948
|
+
name = "walkdir"
|
949
|
+
version = "2.5.0"
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
951
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
952
|
+
dependencies = [
|
953
|
+
"same-file",
|
954
|
+
"winapi-util",
|
955
|
+
]
|
956
|
+
|
957
|
+
[[package]]
|
958
|
+
name = "wasm-bindgen"
|
959
|
+
version = "0.2.99"
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
|
+
checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
|
962
|
+
dependencies = [
|
963
|
+
"cfg-if",
|
964
|
+
"once_cell",
|
965
|
+
"wasm-bindgen-macro",
|
966
|
+
]
|
967
|
+
|
968
|
+
[[package]]
|
969
|
+
name = "wasm-bindgen-backend"
|
970
|
+
version = "0.2.99"
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
972
|
+
checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
|
973
|
+
dependencies = [
|
974
|
+
"bumpalo",
|
975
|
+
"log",
|
976
|
+
"proc-macro2",
|
977
|
+
"quote",
|
978
|
+
"syn",
|
979
|
+
"wasm-bindgen-shared",
|
980
|
+
]
|
981
|
+
|
982
|
+
[[package]]
|
983
|
+
name = "wasm-bindgen-macro"
|
984
|
+
version = "0.2.99"
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
+
checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
|
987
|
+
dependencies = [
|
988
|
+
"quote",
|
989
|
+
"wasm-bindgen-macro-support",
|
990
|
+
]
|
991
|
+
|
992
|
+
[[package]]
|
993
|
+
name = "wasm-bindgen-macro-support"
|
994
|
+
version = "0.2.99"
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
996
|
+
checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
|
997
|
+
dependencies = [
|
998
|
+
"proc-macro2",
|
999
|
+
"quote",
|
1000
|
+
"syn",
|
1001
|
+
"wasm-bindgen-backend",
|
1002
|
+
"wasm-bindgen-shared",
|
1003
|
+
]
|
1004
|
+
|
1005
|
+
[[package]]
|
1006
|
+
name = "wasm-bindgen-shared"
|
1007
|
+
version = "0.2.99"
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1009
|
+
checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
|
1010
|
+
|
1011
|
+
[[package]]
|
1012
|
+
name = "winapi-util"
|
1013
|
+
version = "0.1.9"
|
1014
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1015
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1016
|
+
dependencies = [
|
1017
|
+
"windows-sys",
|
1018
|
+
]
|
1019
|
+
|
1020
|
+
[[package]]
|
1021
|
+
name = "windows-sys"
|
1022
|
+
version = "0.59.0"
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1025
|
+
dependencies = [
|
1026
|
+
"windows-targets",
|
1027
|
+
]
|
1028
|
+
|
1029
|
+
[[package]]
|
1030
|
+
name = "windows-targets"
|
1031
|
+
version = "0.52.6"
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1034
|
+
dependencies = [
|
1035
|
+
"windows_aarch64_gnullvm",
|
1036
|
+
"windows_aarch64_msvc",
|
1037
|
+
"windows_i686_gnu",
|
1038
|
+
"windows_i686_gnullvm",
|
1039
|
+
"windows_i686_msvc",
|
1040
|
+
"windows_x86_64_gnu",
|
1041
|
+
"windows_x86_64_gnullvm",
|
1042
|
+
"windows_x86_64_msvc",
|
1043
|
+
]
|
1044
|
+
|
1045
|
+
[[package]]
|
1046
|
+
name = "windows_aarch64_gnullvm"
|
1047
|
+
version = "0.52.6"
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1049
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1050
|
+
|
1051
|
+
[[package]]
|
1052
|
+
name = "windows_aarch64_msvc"
|
1053
|
+
version = "0.52.6"
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1056
|
+
|
1057
|
+
[[package]]
|
1058
|
+
name = "windows_i686_gnu"
|
1059
|
+
version = "0.52.6"
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1061
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1062
|
+
|
1063
|
+
[[package]]
|
1064
|
+
name = "windows_i686_gnullvm"
|
1065
|
+
version = "0.52.6"
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1068
|
+
|
1069
|
+
[[package]]
|
1070
|
+
name = "windows_i686_msvc"
|
1071
|
+
version = "0.52.6"
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1073
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1074
|
+
|
1075
|
+
[[package]]
|
1076
|
+
name = "windows_x86_64_gnu"
|
1077
|
+
version = "0.52.6"
|
1078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1079
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1080
|
+
|
1081
|
+
[[package]]
|
1082
|
+
name = "windows_x86_64_gnullvm"
|
1083
|
+
version = "0.52.6"
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1086
|
+
|
1087
|
+
[[package]]
|
1088
|
+
name = "windows_x86_64_msvc"
|
1089
|
+
version = "0.52.6"
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1091
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1092
|
+
|
1093
|
+
[[package]]
|
1094
|
+
name = "yaml-rust"
|
1095
|
+
version = "0.4.5"
|
1096
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1097
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
1098
|
+
dependencies = [
|
1099
|
+
"linked-hash-map",
|
1100
|
+
]
|