markdown_it_ruby 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rspec +3 -0
- data/.rubocop.yml +171 -0
- data/CODE_OF_CONDUCT.md +84 -0
- data/Cargo.lock +1255 -0
- data/Cargo.toml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +37 -0
- data/Rakefile +22 -0
- data/ext/markdown_it_ruby/Cargo.toml +18 -0
- data/ext/markdown_it_ruby/extconf.rb +6 -0
- data/ext/markdown_it_ruby/src/driver/options.rs +298 -0
- data/ext/markdown_it_ruby/src/driver.rs +56 -0
- data/ext/markdown_it_ruby/src/extensions/heading_level_modification.rs +139 -0
- data/ext/markdown_it_ruby/src/extensions/link_with_target.rs +473 -0
- data/ext/markdown_it_ruby/src/extensions/table_decoration.rs +88 -0
- data/ext/markdown_it_ruby/src/extensions.rs +18 -0
- data/ext/markdown_it_ruby/src/lib.rs +35 -0
- data/lib/markdown_it_ruby/version.rb +5 -0
- data/lib/markdown_it_ruby.rb +15 -0
- data/sig/markdown_it_ruby.rbs +4 -0
- metadata +78 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,1255 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 4
|
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 = "argparse"
|
22
|
+
version = "0.2.2"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "3f8ebf5827e4ac4fd5946560e6a99776ea73b596d80898f357007317a7141e47"
|
25
|
+
|
26
|
+
[[package]]
|
27
|
+
name = "base64"
|
28
|
+
version = "0.22.1"
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
30
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
31
|
+
|
32
|
+
[[package]]
|
33
|
+
name = "bincode"
|
34
|
+
version = "1.3.3"
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
36
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
37
|
+
dependencies = [
|
38
|
+
"serde",
|
39
|
+
]
|
40
|
+
|
41
|
+
[[package]]
|
42
|
+
name = "bindgen"
|
43
|
+
version = "0.69.5"
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
46
|
+
dependencies = [
|
47
|
+
"bitflags 2.8.0",
|
48
|
+
"cexpr",
|
49
|
+
"clang-sys",
|
50
|
+
"itertools",
|
51
|
+
"lazy_static",
|
52
|
+
"lazycell",
|
53
|
+
"proc-macro2",
|
54
|
+
"quote",
|
55
|
+
"regex",
|
56
|
+
"rustc-hash",
|
57
|
+
"shlex",
|
58
|
+
"syn 2.0.96",
|
59
|
+
]
|
60
|
+
|
61
|
+
[[package]]
|
62
|
+
name = "bit-set"
|
63
|
+
version = "0.5.3"
|
64
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
65
|
+
checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
|
66
|
+
dependencies = [
|
67
|
+
"bit-vec",
|
68
|
+
]
|
69
|
+
|
70
|
+
[[package]]
|
71
|
+
name = "bit-vec"
|
72
|
+
version = "0.6.3"
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
74
|
+
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
75
|
+
|
76
|
+
[[package]]
|
77
|
+
name = "bitflags"
|
78
|
+
version = "1.3.2"
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
80
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
81
|
+
|
82
|
+
[[package]]
|
83
|
+
name = "bitflags"
|
84
|
+
version = "2.8.0"
|
85
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
86
|
+
checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
|
87
|
+
|
88
|
+
[[package]]
|
89
|
+
name = "cc"
|
90
|
+
version = "1.2.10"
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
92
|
+
checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
|
93
|
+
dependencies = [
|
94
|
+
"shlex",
|
95
|
+
]
|
96
|
+
|
97
|
+
[[package]]
|
98
|
+
name = "cexpr"
|
99
|
+
version = "0.6.0"
|
100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
101
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
102
|
+
dependencies = [
|
103
|
+
"nom",
|
104
|
+
]
|
105
|
+
|
106
|
+
[[package]]
|
107
|
+
name = "cfg-if"
|
108
|
+
version = "1.0.0"
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
110
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
111
|
+
|
112
|
+
[[package]]
|
113
|
+
name = "clang-sys"
|
114
|
+
version = "1.8.1"
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
117
|
+
dependencies = [
|
118
|
+
"glob",
|
119
|
+
"libc",
|
120
|
+
"libloading",
|
121
|
+
]
|
122
|
+
|
123
|
+
[[package]]
|
124
|
+
name = "const_format"
|
125
|
+
version = "0.2.34"
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
127
|
+
checksum = "126f97965c8ad46d6d9163268ff28432e8f6a1196a55578867832e3049df63dd"
|
128
|
+
dependencies = [
|
129
|
+
"const_format_proc_macros",
|
130
|
+
]
|
131
|
+
|
132
|
+
[[package]]
|
133
|
+
name = "const_format_proc_macros"
|
134
|
+
version = "0.2.34"
|
135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
+
checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
|
137
|
+
dependencies = [
|
138
|
+
"proc-macro2",
|
139
|
+
"quote",
|
140
|
+
"unicode-xid",
|
141
|
+
]
|
142
|
+
|
143
|
+
[[package]]
|
144
|
+
name = "convert_case"
|
145
|
+
version = "0.4.0"
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
147
|
+
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
|
148
|
+
|
149
|
+
[[package]]
|
150
|
+
name = "crc32fast"
|
151
|
+
version = "1.4.2"
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
153
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
154
|
+
dependencies = [
|
155
|
+
"cfg-if",
|
156
|
+
]
|
157
|
+
|
158
|
+
[[package]]
|
159
|
+
name = "deranged"
|
160
|
+
version = "0.3.11"
|
161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
162
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
163
|
+
dependencies = [
|
164
|
+
"powerfmt",
|
165
|
+
]
|
166
|
+
|
167
|
+
[[package]]
|
168
|
+
name = "derivative"
|
169
|
+
version = "2.2.0"
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
171
|
+
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
172
|
+
dependencies = [
|
173
|
+
"proc-macro2",
|
174
|
+
"quote",
|
175
|
+
"syn 1.0.109",
|
176
|
+
]
|
177
|
+
|
178
|
+
[[package]]
|
179
|
+
name = "derive_more"
|
180
|
+
version = "0.99.18"
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
+
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
|
183
|
+
dependencies = [
|
184
|
+
"convert_case",
|
185
|
+
"proc-macro2",
|
186
|
+
"quote",
|
187
|
+
"rustc_version",
|
188
|
+
"syn 2.0.96",
|
189
|
+
]
|
190
|
+
|
191
|
+
[[package]]
|
192
|
+
name = "displaydoc"
|
193
|
+
version = "0.2.5"
|
194
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
196
|
+
dependencies = [
|
197
|
+
"proc-macro2",
|
198
|
+
"quote",
|
199
|
+
"syn 2.0.96",
|
200
|
+
]
|
201
|
+
|
202
|
+
[[package]]
|
203
|
+
name = "downcast-rs"
|
204
|
+
version = "1.2.1"
|
205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
206
|
+
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
|
207
|
+
|
208
|
+
[[package]]
|
209
|
+
name = "either"
|
210
|
+
version = "1.13.0"
|
211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
212
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
213
|
+
|
214
|
+
[[package]]
|
215
|
+
name = "entities"
|
216
|
+
version = "1.0.1"
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
219
|
+
|
220
|
+
[[package]]
|
221
|
+
name = "equivalent"
|
222
|
+
version = "1.0.1"
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
224
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
225
|
+
|
226
|
+
[[package]]
|
227
|
+
name = "fancy-regex"
|
228
|
+
version = "0.11.0"
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
230
|
+
checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
|
231
|
+
dependencies = [
|
232
|
+
"bit-set",
|
233
|
+
"regex",
|
234
|
+
]
|
235
|
+
|
236
|
+
[[package]]
|
237
|
+
name = "flate2"
|
238
|
+
version = "1.0.35"
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
240
|
+
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
241
|
+
dependencies = [
|
242
|
+
"crc32fast",
|
243
|
+
"miniz_oxide",
|
244
|
+
]
|
245
|
+
|
246
|
+
[[package]]
|
247
|
+
name = "fnv"
|
248
|
+
version = "1.0.7"
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
250
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
251
|
+
|
252
|
+
[[package]]
|
253
|
+
name = "form_urlencoded"
|
254
|
+
version = "1.2.1"
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
256
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
257
|
+
dependencies = [
|
258
|
+
"percent-encoding",
|
259
|
+
]
|
260
|
+
|
261
|
+
[[package]]
|
262
|
+
name = "getrandom"
|
263
|
+
version = "0.2.15"
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
265
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
266
|
+
dependencies = [
|
267
|
+
"cfg-if",
|
268
|
+
"libc",
|
269
|
+
"wasi",
|
270
|
+
]
|
271
|
+
|
272
|
+
[[package]]
|
273
|
+
name = "glob"
|
274
|
+
version = "0.3.2"
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
276
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
277
|
+
|
278
|
+
[[package]]
|
279
|
+
name = "hashbrown"
|
280
|
+
version = "0.15.2"
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
282
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
283
|
+
|
284
|
+
[[package]]
|
285
|
+
name = "html-escape"
|
286
|
+
version = "0.2.13"
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
288
|
+
checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
|
289
|
+
dependencies = [
|
290
|
+
"utf8-width",
|
291
|
+
]
|
292
|
+
|
293
|
+
[[package]]
|
294
|
+
name = "icu_collections"
|
295
|
+
version = "1.5.0"
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
297
|
+
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
|
298
|
+
dependencies = [
|
299
|
+
"displaydoc",
|
300
|
+
"yoke",
|
301
|
+
"zerofrom",
|
302
|
+
"zerovec",
|
303
|
+
]
|
304
|
+
|
305
|
+
[[package]]
|
306
|
+
name = "icu_locid"
|
307
|
+
version = "1.5.0"
|
308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
|
+
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
|
310
|
+
dependencies = [
|
311
|
+
"displaydoc",
|
312
|
+
"litemap",
|
313
|
+
"tinystr",
|
314
|
+
"writeable",
|
315
|
+
"zerovec",
|
316
|
+
]
|
317
|
+
|
318
|
+
[[package]]
|
319
|
+
name = "icu_locid_transform"
|
320
|
+
version = "1.5.0"
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
322
|
+
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
|
323
|
+
dependencies = [
|
324
|
+
"displaydoc",
|
325
|
+
"icu_locid",
|
326
|
+
"icu_locid_transform_data",
|
327
|
+
"icu_provider",
|
328
|
+
"tinystr",
|
329
|
+
"zerovec",
|
330
|
+
]
|
331
|
+
|
332
|
+
[[package]]
|
333
|
+
name = "icu_locid_transform_data"
|
334
|
+
version = "1.5.0"
|
335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
336
|
+
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
|
337
|
+
|
338
|
+
[[package]]
|
339
|
+
name = "icu_normalizer"
|
340
|
+
version = "1.5.0"
|
341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
342
|
+
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
|
343
|
+
dependencies = [
|
344
|
+
"displaydoc",
|
345
|
+
"icu_collections",
|
346
|
+
"icu_normalizer_data",
|
347
|
+
"icu_properties",
|
348
|
+
"icu_provider",
|
349
|
+
"smallvec",
|
350
|
+
"utf16_iter",
|
351
|
+
"utf8_iter",
|
352
|
+
"write16",
|
353
|
+
"zerovec",
|
354
|
+
]
|
355
|
+
|
356
|
+
[[package]]
|
357
|
+
name = "icu_normalizer_data"
|
358
|
+
version = "1.5.0"
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
360
|
+
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
|
361
|
+
|
362
|
+
[[package]]
|
363
|
+
name = "icu_properties"
|
364
|
+
version = "1.5.1"
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
366
|
+
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
|
367
|
+
dependencies = [
|
368
|
+
"displaydoc",
|
369
|
+
"icu_collections",
|
370
|
+
"icu_locid_transform",
|
371
|
+
"icu_properties_data",
|
372
|
+
"icu_provider",
|
373
|
+
"tinystr",
|
374
|
+
"zerovec",
|
375
|
+
]
|
376
|
+
|
377
|
+
[[package]]
|
378
|
+
name = "icu_properties_data"
|
379
|
+
version = "1.5.0"
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
381
|
+
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
|
382
|
+
|
383
|
+
[[package]]
|
384
|
+
name = "icu_provider"
|
385
|
+
version = "1.5.0"
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
387
|
+
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
|
388
|
+
dependencies = [
|
389
|
+
"displaydoc",
|
390
|
+
"icu_locid",
|
391
|
+
"icu_provider_macros",
|
392
|
+
"stable_deref_trait",
|
393
|
+
"tinystr",
|
394
|
+
"writeable",
|
395
|
+
"yoke",
|
396
|
+
"zerofrom",
|
397
|
+
"zerovec",
|
398
|
+
]
|
399
|
+
|
400
|
+
[[package]]
|
401
|
+
name = "icu_provider_macros"
|
402
|
+
version = "1.5.0"
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
+
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
|
405
|
+
dependencies = [
|
406
|
+
"proc-macro2",
|
407
|
+
"quote",
|
408
|
+
"syn 2.0.96",
|
409
|
+
]
|
410
|
+
|
411
|
+
[[package]]
|
412
|
+
name = "idna"
|
413
|
+
version = "0.3.0"
|
414
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
415
|
+
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
416
|
+
dependencies = [
|
417
|
+
"unicode-bidi",
|
418
|
+
"unicode-normalization",
|
419
|
+
]
|
420
|
+
|
421
|
+
[[package]]
|
422
|
+
name = "idna"
|
423
|
+
version = "1.0.3"
|
424
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
425
|
+
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
|
426
|
+
dependencies = [
|
427
|
+
"idna_adapter",
|
428
|
+
"smallvec",
|
429
|
+
"utf8_iter",
|
430
|
+
]
|
431
|
+
|
432
|
+
[[package]]
|
433
|
+
name = "idna_adapter"
|
434
|
+
version = "1.2.0"
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
436
|
+
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
|
437
|
+
dependencies = [
|
438
|
+
"icu_normalizer",
|
439
|
+
"icu_properties",
|
440
|
+
]
|
441
|
+
|
442
|
+
[[package]]
|
443
|
+
name = "indexmap"
|
444
|
+
version = "2.7.1"
|
445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
446
|
+
checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
|
447
|
+
dependencies = [
|
448
|
+
"equivalent",
|
449
|
+
"hashbrown",
|
450
|
+
]
|
451
|
+
|
452
|
+
[[package]]
|
453
|
+
name = "itertools"
|
454
|
+
version = "0.12.1"
|
455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
456
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
457
|
+
dependencies = [
|
458
|
+
"either",
|
459
|
+
]
|
460
|
+
|
461
|
+
[[package]]
|
462
|
+
name = "itoa"
|
463
|
+
version = "1.0.14"
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
465
|
+
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
466
|
+
|
467
|
+
[[package]]
|
468
|
+
name = "lazy_static"
|
469
|
+
version = "1.5.0"
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
471
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
472
|
+
|
473
|
+
[[package]]
|
474
|
+
name = "lazycell"
|
475
|
+
version = "1.3.0"
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
477
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
478
|
+
|
479
|
+
[[package]]
|
480
|
+
name = "libc"
|
481
|
+
version = "0.2.169"
|
482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
483
|
+
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
484
|
+
|
485
|
+
[[package]]
|
486
|
+
name = "libloading"
|
487
|
+
version = "0.8.6"
|
488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
490
|
+
dependencies = [
|
491
|
+
"cfg-if",
|
492
|
+
"windows-targets",
|
493
|
+
]
|
494
|
+
|
495
|
+
[[package]]
|
496
|
+
name = "linked-hash-map"
|
497
|
+
version = "0.5.6"
|
498
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
499
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
500
|
+
|
501
|
+
[[package]]
|
502
|
+
name = "linkify"
|
503
|
+
version = "0.10.0"
|
504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
505
|
+
checksum = "f1dfa36d52c581e9ec783a7ce2a5e0143da6237be5811a0b3153fedfdbe9f780"
|
506
|
+
dependencies = [
|
507
|
+
"memchr",
|
508
|
+
]
|
509
|
+
|
510
|
+
[[package]]
|
511
|
+
name = "litemap"
|
512
|
+
version = "0.7.4"
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
514
|
+
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
|
515
|
+
|
516
|
+
[[package]]
|
517
|
+
name = "magnus"
|
518
|
+
version = "0.7.1"
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
520
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
521
|
+
dependencies = [
|
522
|
+
"magnus-macros",
|
523
|
+
"rb-sys",
|
524
|
+
"rb-sys-env",
|
525
|
+
"seq-macro",
|
526
|
+
]
|
527
|
+
|
528
|
+
[[package]]
|
529
|
+
name = "magnus-macros"
|
530
|
+
version = "0.6.0"
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
533
|
+
dependencies = [
|
534
|
+
"proc-macro2",
|
535
|
+
"quote",
|
536
|
+
"syn 2.0.96",
|
537
|
+
]
|
538
|
+
|
539
|
+
[[package]]
|
540
|
+
name = "markdown-it"
|
541
|
+
version = "0.6.1"
|
542
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
543
|
+
checksum = "f99c010929c8217b2dc0940954267a2e15a15f17cb309cd1f299e21933f84fac"
|
544
|
+
dependencies = [
|
545
|
+
"argparse",
|
546
|
+
"const_format",
|
547
|
+
"derivative",
|
548
|
+
"derive_more",
|
549
|
+
"downcast-rs",
|
550
|
+
"entities",
|
551
|
+
"html-escape",
|
552
|
+
"linkify",
|
553
|
+
"mdurl",
|
554
|
+
"once_cell",
|
555
|
+
"readonly",
|
556
|
+
"regex",
|
557
|
+
"stacker",
|
558
|
+
"syntect",
|
559
|
+
"unicode-general-category",
|
560
|
+
]
|
561
|
+
|
562
|
+
[[package]]
|
563
|
+
name = "markdown_it_ruby"
|
564
|
+
version = "0.1.1"
|
565
|
+
dependencies = [
|
566
|
+
"magnus",
|
567
|
+
"markdown-it",
|
568
|
+
"regex",
|
569
|
+
"url",
|
570
|
+
"uuid",
|
571
|
+
]
|
572
|
+
|
573
|
+
[[package]]
|
574
|
+
name = "mdurl"
|
575
|
+
version = "0.3.1"
|
576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
577
|
+
checksum = "5736ba45bbac8f7ccc99a897f88ce85e508a18baec973a040f2514e6cdbff0d2"
|
578
|
+
dependencies = [
|
579
|
+
"idna 0.3.0",
|
580
|
+
"once_cell",
|
581
|
+
"regex",
|
582
|
+
]
|
583
|
+
|
584
|
+
[[package]]
|
585
|
+
name = "memchr"
|
586
|
+
version = "2.7.4"
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
588
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
589
|
+
|
590
|
+
[[package]]
|
591
|
+
name = "minimal-lexical"
|
592
|
+
version = "0.2.1"
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
594
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
595
|
+
|
596
|
+
[[package]]
|
597
|
+
name = "miniz_oxide"
|
598
|
+
version = "0.8.3"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
|
601
|
+
dependencies = [
|
602
|
+
"adler2",
|
603
|
+
]
|
604
|
+
|
605
|
+
[[package]]
|
606
|
+
name = "nom"
|
607
|
+
version = "7.1.3"
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
610
|
+
dependencies = [
|
611
|
+
"memchr",
|
612
|
+
"minimal-lexical",
|
613
|
+
]
|
614
|
+
|
615
|
+
[[package]]
|
616
|
+
name = "num-conv"
|
617
|
+
version = "0.1.0"
|
618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
619
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
620
|
+
|
621
|
+
[[package]]
|
622
|
+
name = "once_cell"
|
623
|
+
version = "1.20.2"
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
625
|
+
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
626
|
+
|
627
|
+
[[package]]
|
628
|
+
name = "percent-encoding"
|
629
|
+
version = "2.3.1"
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
631
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
632
|
+
|
633
|
+
[[package]]
|
634
|
+
name = "plist"
|
635
|
+
version = "1.7.0"
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
637
|
+
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
|
638
|
+
dependencies = [
|
639
|
+
"base64",
|
640
|
+
"indexmap",
|
641
|
+
"quick-xml",
|
642
|
+
"serde",
|
643
|
+
"time",
|
644
|
+
]
|
645
|
+
|
646
|
+
[[package]]
|
647
|
+
name = "powerfmt"
|
648
|
+
version = "0.2.0"
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
650
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
651
|
+
|
652
|
+
[[package]]
|
653
|
+
name = "proc-macro2"
|
654
|
+
version = "1.0.93"
|
655
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
656
|
+
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
657
|
+
dependencies = [
|
658
|
+
"unicode-ident",
|
659
|
+
]
|
660
|
+
|
661
|
+
[[package]]
|
662
|
+
name = "psm"
|
663
|
+
version = "0.1.24"
|
664
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
665
|
+
checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810"
|
666
|
+
dependencies = [
|
667
|
+
"cc",
|
668
|
+
]
|
669
|
+
|
670
|
+
[[package]]
|
671
|
+
name = "quick-xml"
|
672
|
+
version = "0.32.0"
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
674
|
+
checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
|
675
|
+
dependencies = [
|
676
|
+
"memchr",
|
677
|
+
]
|
678
|
+
|
679
|
+
[[package]]
|
680
|
+
name = "quote"
|
681
|
+
version = "1.0.38"
|
682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
683
|
+
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
684
|
+
dependencies = [
|
685
|
+
"proc-macro2",
|
686
|
+
]
|
687
|
+
|
688
|
+
[[package]]
|
689
|
+
name = "rb-sys"
|
690
|
+
version = "0.9.108"
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
692
|
+
checksum = "1e955384e1a4dc64b71d1e4b39ed0edbd77c7bde4a10dfd5ad208e1160fddfa7"
|
693
|
+
dependencies = [
|
694
|
+
"rb-sys-build",
|
695
|
+
]
|
696
|
+
|
697
|
+
[[package]]
|
698
|
+
name = "rb-sys-build"
|
699
|
+
version = "0.9.108"
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
701
|
+
checksum = "c167c6571889b2550d6fcb315e8aa60bdb95e47e4b64793e3f65a30dc25afc85"
|
702
|
+
dependencies = [
|
703
|
+
"bindgen",
|
704
|
+
"lazy_static",
|
705
|
+
"proc-macro2",
|
706
|
+
"quote",
|
707
|
+
"regex",
|
708
|
+
"shell-words",
|
709
|
+
"syn 2.0.96",
|
710
|
+
]
|
711
|
+
|
712
|
+
[[package]]
|
713
|
+
name = "rb-sys-env"
|
714
|
+
version = "0.1.2"
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
716
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
717
|
+
|
718
|
+
[[package]]
|
719
|
+
name = "readonly"
|
720
|
+
version = "0.2.12"
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
722
|
+
checksum = "a25d631e41bfb5fdcde1d4e2215f62f7f0afa3ff11e26563765bd6ea1d229aeb"
|
723
|
+
dependencies = [
|
724
|
+
"proc-macro2",
|
725
|
+
"quote",
|
726
|
+
"syn 2.0.96",
|
727
|
+
]
|
728
|
+
|
729
|
+
[[package]]
|
730
|
+
name = "regex"
|
731
|
+
version = "1.11.1"
|
732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
733
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
734
|
+
dependencies = [
|
735
|
+
"aho-corasick",
|
736
|
+
"memchr",
|
737
|
+
"regex-automata",
|
738
|
+
"regex-syntax",
|
739
|
+
]
|
740
|
+
|
741
|
+
[[package]]
|
742
|
+
name = "regex-automata"
|
743
|
+
version = "0.4.9"
|
744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
745
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
746
|
+
dependencies = [
|
747
|
+
"aho-corasick",
|
748
|
+
"memchr",
|
749
|
+
"regex-syntax",
|
750
|
+
]
|
751
|
+
|
752
|
+
[[package]]
|
753
|
+
name = "regex-syntax"
|
754
|
+
version = "0.8.5"
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
756
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
757
|
+
|
758
|
+
[[package]]
|
759
|
+
name = "rustc-hash"
|
760
|
+
version = "1.1.0"
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
762
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
763
|
+
|
764
|
+
[[package]]
|
765
|
+
name = "rustc_version"
|
766
|
+
version = "0.4.1"
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
768
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
769
|
+
dependencies = [
|
770
|
+
"semver",
|
771
|
+
]
|
772
|
+
|
773
|
+
[[package]]
|
774
|
+
name = "ryu"
|
775
|
+
version = "1.0.19"
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
777
|
+
checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
|
778
|
+
|
779
|
+
[[package]]
|
780
|
+
name = "same-file"
|
781
|
+
version = "1.0.6"
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
783
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
784
|
+
dependencies = [
|
785
|
+
"winapi-util",
|
786
|
+
]
|
787
|
+
|
788
|
+
[[package]]
|
789
|
+
name = "semver"
|
790
|
+
version = "1.0.25"
|
791
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
792
|
+
checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
|
793
|
+
|
794
|
+
[[package]]
|
795
|
+
name = "seq-macro"
|
796
|
+
version = "0.3.5"
|
797
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
798
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
799
|
+
|
800
|
+
[[package]]
|
801
|
+
name = "serde"
|
802
|
+
version = "1.0.217"
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
804
|
+
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
805
|
+
dependencies = [
|
806
|
+
"serde_derive",
|
807
|
+
]
|
808
|
+
|
809
|
+
[[package]]
|
810
|
+
name = "serde_derive"
|
811
|
+
version = "1.0.217"
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
813
|
+
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
814
|
+
dependencies = [
|
815
|
+
"proc-macro2",
|
816
|
+
"quote",
|
817
|
+
"syn 2.0.96",
|
818
|
+
]
|
819
|
+
|
820
|
+
[[package]]
|
821
|
+
name = "serde_json"
|
822
|
+
version = "1.0.138"
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
824
|
+
checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
|
825
|
+
dependencies = [
|
826
|
+
"itoa",
|
827
|
+
"memchr",
|
828
|
+
"ryu",
|
829
|
+
"serde",
|
830
|
+
]
|
831
|
+
|
832
|
+
[[package]]
|
833
|
+
name = "shell-words"
|
834
|
+
version = "1.1.0"
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
836
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
837
|
+
|
838
|
+
[[package]]
|
839
|
+
name = "shlex"
|
840
|
+
version = "1.3.0"
|
841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
842
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
843
|
+
|
844
|
+
[[package]]
|
845
|
+
name = "smallvec"
|
846
|
+
version = "1.13.2"
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
849
|
+
|
850
|
+
[[package]]
|
851
|
+
name = "stable_deref_trait"
|
852
|
+
version = "1.2.0"
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
854
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
855
|
+
|
856
|
+
[[package]]
|
857
|
+
name = "stacker"
|
858
|
+
version = "0.1.17"
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
860
|
+
checksum = "799c883d55abdb5e98af1a7b3f23b9b6de8ecada0ecac058672d7635eb48ca7b"
|
861
|
+
dependencies = [
|
862
|
+
"cc",
|
863
|
+
"cfg-if",
|
864
|
+
"libc",
|
865
|
+
"psm",
|
866
|
+
"windows-sys",
|
867
|
+
]
|
868
|
+
|
869
|
+
[[package]]
|
870
|
+
name = "syn"
|
871
|
+
version = "1.0.109"
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
874
|
+
dependencies = [
|
875
|
+
"proc-macro2",
|
876
|
+
"quote",
|
877
|
+
"unicode-ident",
|
878
|
+
]
|
879
|
+
|
880
|
+
[[package]]
|
881
|
+
name = "syn"
|
882
|
+
version = "2.0.96"
|
883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
884
|
+
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
885
|
+
dependencies = [
|
886
|
+
"proc-macro2",
|
887
|
+
"quote",
|
888
|
+
"unicode-ident",
|
889
|
+
]
|
890
|
+
|
891
|
+
[[package]]
|
892
|
+
name = "synstructure"
|
893
|
+
version = "0.13.1"
|
894
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
895
|
+
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
|
896
|
+
dependencies = [
|
897
|
+
"proc-macro2",
|
898
|
+
"quote",
|
899
|
+
"syn 2.0.96",
|
900
|
+
]
|
901
|
+
|
902
|
+
[[package]]
|
903
|
+
name = "syntect"
|
904
|
+
version = "5.2.0"
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
906
|
+
checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
|
907
|
+
dependencies = [
|
908
|
+
"bincode",
|
909
|
+
"bitflags 1.3.2",
|
910
|
+
"fancy-regex",
|
911
|
+
"flate2",
|
912
|
+
"fnv",
|
913
|
+
"once_cell",
|
914
|
+
"plist",
|
915
|
+
"regex-syntax",
|
916
|
+
"serde",
|
917
|
+
"serde_derive",
|
918
|
+
"serde_json",
|
919
|
+
"thiserror",
|
920
|
+
"walkdir",
|
921
|
+
"yaml-rust",
|
922
|
+
]
|
923
|
+
|
924
|
+
[[package]]
|
925
|
+
name = "thiserror"
|
926
|
+
version = "1.0.69"
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
928
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
929
|
+
dependencies = [
|
930
|
+
"thiserror-impl",
|
931
|
+
]
|
932
|
+
|
933
|
+
[[package]]
|
934
|
+
name = "thiserror-impl"
|
935
|
+
version = "1.0.69"
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
937
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
938
|
+
dependencies = [
|
939
|
+
"proc-macro2",
|
940
|
+
"quote",
|
941
|
+
"syn 2.0.96",
|
942
|
+
]
|
943
|
+
|
944
|
+
[[package]]
|
945
|
+
name = "time"
|
946
|
+
version = "0.3.37"
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
|
+
checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
|
949
|
+
dependencies = [
|
950
|
+
"deranged",
|
951
|
+
"itoa",
|
952
|
+
"num-conv",
|
953
|
+
"powerfmt",
|
954
|
+
"serde",
|
955
|
+
"time-core",
|
956
|
+
"time-macros",
|
957
|
+
]
|
958
|
+
|
959
|
+
[[package]]
|
960
|
+
name = "time-core"
|
961
|
+
version = "0.1.2"
|
962
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
963
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
964
|
+
|
965
|
+
[[package]]
|
966
|
+
name = "time-macros"
|
967
|
+
version = "0.2.19"
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
969
|
+
checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
|
970
|
+
dependencies = [
|
971
|
+
"num-conv",
|
972
|
+
"time-core",
|
973
|
+
]
|
974
|
+
|
975
|
+
[[package]]
|
976
|
+
name = "tinystr"
|
977
|
+
version = "0.7.6"
|
978
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
979
|
+
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
|
980
|
+
dependencies = [
|
981
|
+
"displaydoc",
|
982
|
+
"zerovec",
|
983
|
+
]
|
984
|
+
|
985
|
+
[[package]]
|
986
|
+
name = "tinyvec"
|
987
|
+
version = "1.8.1"
|
988
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
989
|
+
checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
|
990
|
+
dependencies = [
|
991
|
+
"tinyvec_macros",
|
992
|
+
]
|
993
|
+
|
994
|
+
[[package]]
|
995
|
+
name = "tinyvec_macros"
|
996
|
+
version = "0.1.1"
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
999
|
+
|
1000
|
+
[[package]]
|
1001
|
+
name = "unicode-bidi"
|
1002
|
+
version = "0.3.18"
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
+
checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
|
1005
|
+
|
1006
|
+
[[package]]
|
1007
|
+
name = "unicode-general-category"
|
1008
|
+
version = "0.6.0"
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1010
|
+
checksum = "2281c8c1d221438e373249e065ca4989c4c36952c211ff21a0ee91c44a3869e7"
|
1011
|
+
|
1012
|
+
[[package]]
|
1013
|
+
name = "unicode-ident"
|
1014
|
+
version = "1.0.16"
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1016
|
+
checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
|
1017
|
+
|
1018
|
+
[[package]]
|
1019
|
+
name = "unicode-normalization"
|
1020
|
+
version = "0.1.24"
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1022
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
1023
|
+
dependencies = [
|
1024
|
+
"tinyvec",
|
1025
|
+
]
|
1026
|
+
|
1027
|
+
[[package]]
|
1028
|
+
name = "unicode-xid"
|
1029
|
+
version = "0.2.6"
|
1030
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1031
|
+
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
1032
|
+
|
1033
|
+
[[package]]
|
1034
|
+
name = "url"
|
1035
|
+
version = "2.5.4"
|
1036
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1037
|
+
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
|
1038
|
+
dependencies = [
|
1039
|
+
"form_urlencoded",
|
1040
|
+
"idna 1.0.3",
|
1041
|
+
"percent-encoding",
|
1042
|
+
]
|
1043
|
+
|
1044
|
+
[[package]]
|
1045
|
+
name = "utf16_iter"
|
1046
|
+
version = "1.0.5"
|
1047
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1048
|
+
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
|
1049
|
+
|
1050
|
+
[[package]]
|
1051
|
+
name = "utf8-width"
|
1052
|
+
version = "0.1.7"
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054
|
+
checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
|
1055
|
+
|
1056
|
+
[[package]]
|
1057
|
+
name = "utf8_iter"
|
1058
|
+
version = "1.0.4"
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1060
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
1061
|
+
|
1062
|
+
[[package]]
|
1063
|
+
name = "uuid"
|
1064
|
+
version = "1.12.1"
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1066
|
+
checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
|
1067
|
+
dependencies = [
|
1068
|
+
"getrandom",
|
1069
|
+
]
|
1070
|
+
|
1071
|
+
[[package]]
|
1072
|
+
name = "walkdir"
|
1073
|
+
version = "2.5.0"
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1075
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
1076
|
+
dependencies = [
|
1077
|
+
"same-file",
|
1078
|
+
"winapi-util",
|
1079
|
+
]
|
1080
|
+
|
1081
|
+
[[package]]
|
1082
|
+
name = "wasi"
|
1083
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1085
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
1086
|
+
|
1087
|
+
[[package]]
|
1088
|
+
name = "winapi-util"
|
1089
|
+
version = "0.1.9"
|
1090
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1091
|
+
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
1092
|
+
dependencies = [
|
1093
|
+
"windows-sys",
|
1094
|
+
]
|
1095
|
+
|
1096
|
+
[[package]]
|
1097
|
+
name = "windows-sys"
|
1098
|
+
version = "0.59.0"
|
1099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1100
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
1101
|
+
dependencies = [
|
1102
|
+
"windows-targets",
|
1103
|
+
]
|
1104
|
+
|
1105
|
+
[[package]]
|
1106
|
+
name = "windows-targets"
|
1107
|
+
version = "0.52.6"
|
1108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1109
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1110
|
+
dependencies = [
|
1111
|
+
"windows_aarch64_gnullvm",
|
1112
|
+
"windows_aarch64_msvc",
|
1113
|
+
"windows_i686_gnu",
|
1114
|
+
"windows_i686_gnullvm",
|
1115
|
+
"windows_i686_msvc",
|
1116
|
+
"windows_x86_64_gnu",
|
1117
|
+
"windows_x86_64_gnullvm",
|
1118
|
+
"windows_x86_64_msvc",
|
1119
|
+
]
|
1120
|
+
|
1121
|
+
[[package]]
|
1122
|
+
name = "windows_aarch64_gnullvm"
|
1123
|
+
version = "0.52.6"
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1125
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1126
|
+
|
1127
|
+
[[package]]
|
1128
|
+
name = "windows_aarch64_msvc"
|
1129
|
+
version = "0.52.6"
|
1130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1131
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1132
|
+
|
1133
|
+
[[package]]
|
1134
|
+
name = "windows_i686_gnu"
|
1135
|
+
version = "0.52.6"
|
1136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1137
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1138
|
+
|
1139
|
+
[[package]]
|
1140
|
+
name = "windows_i686_gnullvm"
|
1141
|
+
version = "0.52.6"
|
1142
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1143
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1144
|
+
|
1145
|
+
[[package]]
|
1146
|
+
name = "windows_i686_msvc"
|
1147
|
+
version = "0.52.6"
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1149
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1150
|
+
|
1151
|
+
[[package]]
|
1152
|
+
name = "windows_x86_64_gnu"
|
1153
|
+
version = "0.52.6"
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1155
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1156
|
+
|
1157
|
+
[[package]]
|
1158
|
+
name = "windows_x86_64_gnullvm"
|
1159
|
+
version = "0.52.6"
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1161
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1162
|
+
|
1163
|
+
[[package]]
|
1164
|
+
name = "windows_x86_64_msvc"
|
1165
|
+
version = "0.52.6"
|
1166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1167
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1168
|
+
|
1169
|
+
[[package]]
|
1170
|
+
name = "write16"
|
1171
|
+
version = "1.0.0"
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1173
|
+
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
|
1174
|
+
|
1175
|
+
[[package]]
|
1176
|
+
name = "writeable"
|
1177
|
+
version = "0.5.5"
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1179
|
+
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
|
1180
|
+
|
1181
|
+
[[package]]
|
1182
|
+
name = "yaml-rust"
|
1183
|
+
version = "0.4.5"
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1185
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
1186
|
+
dependencies = [
|
1187
|
+
"linked-hash-map",
|
1188
|
+
]
|
1189
|
+
|
1190
|
+
[[package]]
|
1191
|
+
name = "yoke"
|
1192
|
+
version = "0.7.5"
|
1193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1194
|
+
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
|
1195
|
+
dependencies = [
|
1196
|
+
"serde",
|
1197
|
+
"stable_deref_trait",
|
1198
|
+
"yoke-derive",
|
1199
|
+
"zerofrom",
|
1200
|
+
]
|
1201
|
+
|
1202
|
+
[[package]]
|
1203
|
+
name = "yoke-derive"
|
1204
|
+
version = "0.7.5"
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1206
|
+
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
|
1207
|
+
dependencies = [
|
1208
|
+
"proc-macro2",
|
1209
|
+
"quote",
|
1210
|
+
"syn 2.0.96",
|
1211
|
+
"synstructure",
|
1212
|
+
]
|
1213
|
+
|
1214
|
+
[[package]]
|
1215
|
+
name = "zerofrom"
|
1216
|
+
version = "0.1.5"
|
1217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1218
|
+
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
|
1219
|
+
dependencies = [
|
1220
|
+
"zerofrom-derive",
|
1221
|
+
]
|
1222
|
+
|
1223
|
+
[[package]]
|
1224
|
+
name = "zerofrom-derive"
|
1225
|
+
version = "0.1.5"
|
1226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1227
|
+
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
|
1228
|
+
dependencies = [
|
1229
|
+
"proc-macro2",
|
1230
|
+
"quote",
|
1231
|
+
"syn 2.0.96",
|
1232
|
+
"synstructure",
|
1233
|
+
]
|
1234
|
+
|
1235
|
+
[[package]]
|
1236
|
+
name = "zerovec"
|
1237
|
+
version = "0.10.4"
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1239
|
+
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
|
1240
|
+
dependencies = [
|
1241
|
+
"yoke",
|
1242
|
+
"zerofrom",
|
1243
|
+
"zerovec-derive",
|
1244
|
+
]
|
1245
|
+
|
1246
|
+
[[package]]
|
1247
|
+
name = "zerovec-derive"
|
1248
|
+
version = "0.10.3"
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1250
|
+
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
|
1251
|
+
dependencies = [
|
1252
|
+
"proc-macro2",
|
1253
|
+
"quote",
|
1254
|
+
"syn 2.0.96",
|
1255
|
+
]
|