commonmarker 0.23.10 → 2.6.0
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 +4 -4
- data/Cargo.lock +1126 -0
- data/Cargo.toml +7 -0
- data/README.md +243 -172
- data/ext/commonmarker/Cargo.toml +20 -0
- data/ext/commonmarker/extconf.rb +3 -6
- data/ext/commonmarker/src/lib.rs +125 -0
- data/ext/commonmarker/src/node.rs +1230 -0
- data/ext/commonmarker/src/options.rs +221 -0
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +171 -0
- data/ext/commonmarker/src/plugins.rs +6 -0
- data/ext/commonmarker/src/utils.rs +8 -0
- data/lib/commonmarker/config.rb +98 -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 +37 -187
- 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,1126 @@
|
|
|
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.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "aho-corasick"
|
|
13
|
+
version = "1.1.4"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"memchr",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[[package]]
|
|
21
|
+
name = "anstream"
|
|
22
|
+
version = "0.6.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
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.13"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
40
|
+
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "anstyle-parse"
|
|
43
|
+
version = "0.2.7"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"utf8parse",
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-query"
|
|
52
|
+
version = "1.1.4"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"windows-sys 0.60.2",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-wincon"
|
|
61
|
+
version = "3.0.10"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"anstyle",
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys 0.60.2",
|
|
68
|
+
]
|
|
69
|
+
|
|
70
|
+
[[package]]
|
|
71
|
+
name = "base64"
|
|
72
|
+
version = "0.22.1"
|
|
73
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
74
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
75
|
+
|
|
76
|
+
[[package]]
|
|
77
|
+
name = "bincode"
|
|
78
|
+
version = "1.3.3"
|
|
79
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
80
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
81
|
+
dependencies = [
|
|
82
|
+
"serde",
|
|
83
|
+
]
|
|
84
|
+
|
|
85
|
+
[[package]]
|
|
86
|
+
name = "bindgen"
|
|
87
|
+
version = "0.69.5"
|
|
88
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
90
|
+
dependencies = [
|
|
91
|
+
"bitflags",
|
|
92
|
+
"cexpr",
|
|
93
|
+
"clang-sys",
|
|
94
|
+
"itertools",
|
|
95
|
+
"lazy_static",
|
|
96
|
+
"lazycell",
|
|
97
|
+
"proc-macro2",
|
|
98
|
+
"quote",
|
|
99
|
+
"regex",
|
|
100
|
+
"rustc-hash",
|
|
101
|
+
"shlex",
|
|
102
|
+
"syn",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "bit-set"
|
|
107
|
+
version = "0.8.0"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"bit-vec",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "bit-vec"
|
|
116
|
+
version = "0.8.0"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "bitflags"
|
|
122
|
+
version = "2.10.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
125
|
+
|
|
126
|
+
[[package]]
|
|
127
|
+
name = "bon"
|
|
128
|
+
version = "3.8.1"
|
|
129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
+
checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1"
|
|
131
|
+
dependencies = [
|
|
132
|
+
"bon-macros",
|
|
133
|
+
"rustversion",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "bon-macros"
|
|
138
|
+
version = "3.8.1"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645"
|
|
141
|
+
dependencies = [
|
|
142
|
+
"darling",
|
|
143
|
+
"ident_case",
|
|
144
|
+
"prettyplease",
|
|
145
|
+
"proc-macro2",
|
|
146
|
+
"quote",
|
|
147
|
+
"rustversion",
|
|
148
|
+
"syn",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "caseless"
|
|
153
|
+
version = "0.2.2"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "8b6fd507454086c8edfd769ca6ada439193cdb209c7681712ef6275cccbfe5d8"
|
|
156
|
+
dependencies = [
|
|
157
|
+
"unicode-normalization",
|
|
158
|
+
]
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "cc"
|
|
162
|
+
version = "1.2.43"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"find-msvc-tools",
|
|
167
|
+
"shlex",
|
|
168
|
+
]
|
|
169
|
+
|
|
170
|
+
[[package]]
|
|
171
|
+
name = "cexpr"
|
|
172
|
+
version = "0.6.0"
|
|
173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
174
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
175
|
+
dependencies = [
|
|
176
|
+
"nom",
|
|
177
|
+
]
|
|
178
|
+
|
|
179
|
+
[[package]]
|
|
180
|
+
name = "cfg-if"
|
|
181
|
+
version = "1.0.4"
|
|
182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "clang-sys"
|
|
187
|
+
version = "1.8.1"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"glob",
|
|
192
|
+
"libc",
|
|
193
|
+
"libloading",
|
|
194
|
+
]
|
|
195
|
+
|
|
196
|
+
[[package]]
|
|
197
|
+
name = "clap"
|
|
198
|
+
version = "4.5.51"
|
|
199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
200
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
201
|
+
dependencies = [
|
|
202
|
+
"clap_builder",
|
|
203
|
+
"clap_derive",
|
|
204
|
+
]
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "clap_builder"
|
|
208
|
+
version = "4.5.51"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
211
|
+
dependencies = [
|
|
212
|
+
"anstream",
|
|
213
|
+
"anstyle",
|
|
214
|
+
"clap_lex",
|
|
215
|
+
"strsim",
|
|
216
|
+
"terminal_size",
|
|
217
|
+
]
|
|
218
|
+
|
|
219
|
+
[[package]]
|
|
220
|
+
name = "clap_derive"
|
|
221
|
+
version = "4.5.49"
|
|
222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
223
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
224
|
+
dependencies = [
|
|
225
|
+
"heck",
|
|
226
|
+
"proc-macro2",
|
|
227
|
+
"quote",
|
|
228
|
+
"syn",
|
|
229
|
+
]
|
|
230
|
+
|
|
231
|
+
[[package]]
|
|
232
|
+
name = "clap_lex"
|
|
233
|
+
version = "0.7.6"
|
|
234
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
236
|
+
|
|
237
|
+
[[package]]
|
|
238
|
+
name = "colorchoice"
|
|
239
|
+
version = "1.0.4"
|
|
240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
241
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "commonmarker"
|
|
245
|
+
version = "1.0.0"
|
|
246
|
+
dependencies = [
|
|
247
|
+
"comrak",
|
|
248
|
+
"magnus",
|
|
249
|
+
"rb-sys",
|
|
250
|
+
"rctree",
|
|
251
|
+
"syntect",
|
|
252
|
+
"typed-arena",
|
|
253
|
+
]
|
|
254
|
+
|
|
255
|
+
[[package]]
|
|
256
|
+
name = "comrak"
|
|
257
|
+
version = "0.48.0"
|
|
258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
259
|
+
checksum = "48bf2260aceee247c6c5639f5751dc635211895066d782d2a28fb87f2e0d5613"
|
|
260
|
+
dependencies = [
|
|
261
|
+
"bon",
|
|
262
|
+
"caseless",
|
|
263
|
+
"clap",
|
|
264
|
+
"emojis",
|
|
265
|
+
"entities",
|
|
266
|
+
"fmt2io",
|
|
267
|
+
"jetscii",
|
|
268
|
+
"shell-words",
|
|
269
|
+
"syntect",
|
|
270
|
+
"typed-arena",
|
|
271
|
+
"unicode_categories",
|
|
272
|
+
"xdg",
|
|
273
|
+
]
|
|
274
|
+
|
|
275
|
+
[[package]]
|
|
276
|
+
name = "crc32fast"
|
|
277
|
+
version = "1.5.0"
|
|
278
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
280
|
+
dependencies = [
|
|
281
|
+
"cfg-if",
|
|
282
|
+
]
|
|
283
|
+
|
|
284
|
+
[[package]]
|
|
285
|
+
name = "darling"
|
|
286
|
+
version = "0.21.3"
|
|
287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
288
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
289
|
+
dependencies = [
|
|
290
|
+
"darling_core",
|
|
291
|
+
"darling_macro",
|
|
292
|
+
]
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "darling_core"
|
|
296
|
+
version = "0.21.3"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
299
|
+
dependencies = [
|
|
300
|
+
"fnv",
|
|
301
|
+
"ident_case",
|
|
302
|
+
"proc-macro2",
|
|
303
|
+
"quote",
|
|
304
|
+
"strsim",
|
|
305
|
+
"syn",
|
|
306
|
+
]
|
|
307
|
+
|
|
308
|
+
[[package]]
|
|
309
|
+
name = "darling_macro"
|
|
310
|
+
version = "0.21.3"
|
|
311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
312
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
313
|
+
dependencies = [
|
|
314
|
+
"darling_core",
|
|
315
|
+
"quote",
|
|
316
|
+
"syn",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "deranged"
|
|
321
|
+
version = "0.5.5"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"powerfmt",
|
|
326
|
+
]
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "either"
|
|
330
|
+
version = "1.15.0"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "emojis"
|
|
336
|
+
version = "0.6.4"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"phf",
|
|
341
|
+
]
|
|
342
|
+
|
|
343
|
+
[[package]]
|
|
344
|
+
name = "entities"
|
|
345
|
+
version = "1.0.1"
|
|
346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
347
|
+
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "equivalent"
|
|
351
|
+
version = "1.0.2"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "errno"
|
|
357
|
+
version = "0.3.14"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"libc",
|
|
362
|
+
"windows-sys 0.61.2",
|
|
363
|
+
]
|
|
364
|
+
|
|
365
|
+
[[package]]
|
|
366
|
+
name = "fancy-regex"
|
|
367
|
+
version = "0.16.2"
|
|
368
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
369
|
+
checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
|
|
370
|
+
dependencies = [
|
|
371
|
+
"bit-set",
|
|
372
|
+
"regex-automata",
|
|
373
|
+
"regex-syntax",
|
|
374
|
+
]
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "find-msvc-tools"
|
|
378
|
+
version = "0.1.4"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "flate2"
|
|
384
|
+
version = "1.1.5"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"crc32fast",
|
|
389
|
+
"miniz_oxide",
|
|
390
|
+
]
|
|
391
|
+
|
|
392
|
+
[[package]]
|
|
393
|
+
name = "fmt2io"
|
|
394
|
+
version = "1.0.0"
|
|
395
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
+
checksum = "6b6129284da9f7e5296cc22183a63f24300e945e297705dcc0672f7df01d62c8"
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "fnv"
|
|
400
|
+
version = "1.0.7"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "glob"
|
|
406
|
+
version = "0.3.3"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "hashbrown"
|
|
412
|
+
version = "0.16.0"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "heck"
|
|
418
|
+
version = "0.5.0"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "ident_case"
|
|
424
|
+
version = "1.0.1"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "indexmap"
|
|
430
|
+
version = "2.12.0"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"equivalent",
|
|
435
|
+
"hashbrown",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "is_terminal_polyfill"
|
|
440
|
+
version = "1.70.2"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "itertools"
|
|
446
|
+
version = "0.12.1"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
449
|
+
dependencies = [
|
|
450
|
+
"either",
|
|
451
|
+
]
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "itoa"
|
|
455
|
+
version = "1.0.15"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "jetscii"
|
|
461
|
+
version = "0.5.3"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "47f142fe24a9c9944451e8349de0a56af5f3e7226dc46f3ed4d4ecc0b85af75e"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "lazy_static"
|
|
467
|
+
version = "1.5.0"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
470
|
+
|
|
471
|
+
[[package]]
|
|
472
|
+
name = "lazycell"
|
|
473
|
+
version = "1.3.0"
|
|
474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
476
|
+
|
|
477
|
+
[[package]]
|
|
478
|
+
name = "libc"
|
|
479
|
+
version = "0.2.177"
|
|
480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
481
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "libloading"
|
|
485
|
+
version = "0.8.9"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
488
|
+
dependencies = [
|
|
489
|
+
"cfg-if",
|
|
490
|
+
"windows-link",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "linked-hash-map"
|
|
495
|
+
version = "0.5.6"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "linux-raw-sys"
|
|
501
|
+
version = "0.11.0"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
504
|
+
|
|
505
|
+
[[package]]
|
|
506
|
+
name = "magnus"
|
|
507
|
+
version = "0.8.2"
|
|
508
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
509
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
510
|
+
dependencies = [
|
|
511
|
+
"magnus-macros",
|
|
512
|
+
"rb-sys",
|
|
513
|
+
"rb-sys-env",
|
|
514
|
+
"seq-macro",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "magnus-macros"
|
|
519
|
+
version = "0.8.0"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"proc-macro2",
|
|
524
|
+
"quote",
|
|
525
|
+
"syn",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "memchr"
|
|
530
|
+
version = "2.7.6"
|
|
531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
532
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
533
|
+
|
|
534
|
+
[[package]]
|
|
535
|
+
name = "minimal-lexical"
|
|
536
|
+
version = "0.2.1"
|
|
537
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
538
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
539
|
+
|
|
540
|
+
[[package]]
|
|
541
|
+
name = "miniz_oxide"
|
|
542
|
+
version = "0.8.9"
|
|
543
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
544
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
545
|
+
dependencies = [
|
|
546
|
+
"adler2",
|
|
547
|
+
"simd-adler32",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "nom"
|
|
552
|
+
version = "7.1.3"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"memchr",
|
|
557
|
+
"minimal-lexical",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "num-conv"
|
|
562
|
+
version = "0.1.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "once_cell"
|
|
568
|
+
version = "1.21.3"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
571
|
+
|
|
572
|
+
[[package]]
|
|
573
|
+
name = "once_cell_polyfill"
|
|
574
|
+
version = "1.70.2"
|
|
575
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
576
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "onig"
|
|
580
|
+
version = "6.5.1"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"bitflags",
|
|
585
|
+
"libc",
|
|
586
|
+
"once_cell",
|
|
587
|
+
"onig_sys",
|
|
588
|
+
]
|
|
589
|
+
|
|
590
|
+
[[package]]
|
|
591
|
+
name = "onig_sys"
|
|
592
|
+
version = "69.9.1"
|
|
593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
594
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
|
595
|
+
dependencies = [
|
|
596
|
+
"cc",
|
|
597
|
+
"pkg-config",
|
|
598
|
+
]
|
|
599
|
+
|
|
600
|
+
[[package]]
|
|
601
|
+
name = "phf"
|
|
602
|
+
version = "0.11.3"
|
|
603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
604
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
605
|
+
dependencies = [
|
|
606
|
+
"phf_shared",
|
|
607
|
+
]
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "phf_shared"
|
|
611
|
+
version = "0.11.3"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"siphasher",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "pkg-config"
|
|
620
|
+
version = "0.3.32"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "plist"
|
|
626
|
+
version = "1.8.0"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"base64",
|
|
631
|
+
"indexmap",
|
|
632
|
+
"quick-xml",
|
|
633
|
+
"serde",
|
|
634
|
+
"time",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "powerfmt"
|
|
639
|
+
version = "0.2.0"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "prettyplease"
|
|
645
|
+
version = "0.2.37"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"proc-macro2",
|
|
650
|
+
"syn",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "proc-macro2"
|
|
655
|
+
version = "1.0.103"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"unicode-ident",
|
|
660
|
+
]
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "quick-xml"
|
|
664
|
+
version = "0.38.3"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"memchr",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "quote"
|
|
673
|
+
version = "1.0.41"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"proc-macro2",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "rb-sys"
|
|
682
|
+
version = "0.9.117"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"rb-sys-build",
|
|
687
|
+
]
|
|
688
|
+
|
|
689
|
+
[[package]]
|
|
690
|
+
name = "rb-sys-build"
|
|
691
|
+
version = "0.9.117"
|
|
692
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
693
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
|
694
|
+
dependencies = [
|
|
695
|
+
"bindgen",
|
|
696
|
+
"lazy_static",
|
|
697
|
+
"proc-macro2",
|
|
698
|
+
"quote",
|
|
699
|
+
"regex",
|
|
700
|
+
"shell-words",
|
|
701
|
+
"syn",
|
|
702
|
+
]
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "rb-sys-env"
|
|
706
|
+
version = "0.2.2"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "rctree"
|
|
712
|
+
version = "0.6.0"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "regex"
|
|
718
|
+
version = "1.12.2"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"aho-corasick",
|
|
723
|
+
"memchr",
|
|
724
|
+
"regex-automata",
|
|
725
|
+
"regex-syntax",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "regex-automata"
|
|
730
|
+
version = "0.4.13"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
733
|
+
dependencies = [
|
|
734
|
+
"aho-corasick",
|
|
735
|
+
"memchr",
|
|
736
|
+
"regex-syntax",
|
|
737
|
+
]
|
|
738
|
+
|
|
739
|
+
[[package]]
|
|
740
|
+
name = "regex-syntax"
|
|
741
|
+
version = "0.8.8"
|
|
742
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
743
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
744
|
+
|
|
745
|
+
[[package]]
|
|
746
|
+
name = "rustc-hash"
|
|
747
|
+
version = "1.1.0"
|
|
748
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
750
|
+
|
|
751
|
+
[[package]]
|
|
752
|
+
name = "rustix"
|
|
753
|
+
version = "1.1.2"
|
|
754
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
755
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
756
|
+
dependencies = [
|
|
757
|
+
"bitflags",
|
|
758
|
+
"errno",
|
|
759
|
+
"libc",
|
|
760
|
+
"linux-raw-sys",
|
|
761
|
+
"windows-sys 0.61.2",
|
|
762
|
+
]
|
|
763
|
+
|
|
764
|
+
[[package]]
|
|
765
|
+
name = "rustversion"
|
|
766
|
+
version = "1.0.22"
|
|
767
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
768
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "ryu"
|
|
772
|
+
version = "1.0.20"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
775
|
+
|
|
776
|
+
[[package]]
|
|
777
|
+
name = "same-file"
|
|
778
|
+
version = "1.0.6"
|
|
779
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
780
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
781
|
+
dependencies = [
|
|
782
|
+
"winapi-util",
|
|
783
|
+
]
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "seq-macro"
|
|
787
|
+
version = "0.3.6"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
790
|
+
|
|
791
|
+
[[package]]
|
|
792
|
+
name = "serde"
|
|
793
|
+
version = "1.0.228"
|
|
794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
795
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
796
|
+
dependencies = [
|
|
797
|
+
"serde_core",
|
|
798
|
+
]
|
|
799
|
+
|
|
800
|
+
[[package]]
|
|
801
|
+
name = "serde_core"
|
|
802
|
+
version = "1.0.228"
|
|
803
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
805
|
+
dependencies = [
|
|
806
|
+
"serde_derive",
|
|
807
|
+
]
|
|
808
|
+
|
|
809
|
+
[[package]]
|
|
810
|
+
name = "serde_derive"
|
|
811
|
+
version = "1.0.228"
|
|
812
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
814
|
+
dependencies = [
|
|
815
|
+
"proc-macro2",
|
|
816
|
+
"quote",
|
|
817
|
+
"syn",
|
|
818
|
+
]
|
|
819
|
+
|
|
820
|
+
[[package]]
|
|
821
|
+
name = "serde_json"
|
|
822
|
+
version = "1.0.145"
|
|
823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
825
|
+
dependencies = [
|
|
826
|
+
"itoa",
|
|
827
|
+
"memchr",
|
|
828
|
+
"ryu",
|
|
829
|
+
"serde",
|
|
830
|
+
"serde_core",
|
|
831
|
+
]
|
|
832
|
+
|
|
833
|
+
[[package]]
|
|
834
|
+
name = "shell-words"
|
|
835
|
+
version = "1.1.0"
|
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
837
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
838
|
+
|
|
839
|
+
[[package]]
|
|
840
|
+
name = "shlex"
|
|
841
|
+
version = "1.3.0"
|
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
844
|
+
|
|
845
|
+
[[package]]
|
|
846
|
+
name = "simd-adler32"
|
|
847
|
+
version = "0.3.7"
|
|
848
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
849
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "siphasher"
|
|
853
|
+
version = "1.0.1"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "strsim"
|
|
859
|
+
version = "0.11.1"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
862
|
+
|
|
863
|
+
[[package]]
|
|
864
|
+
name = "syn"
|
|
865
|
+
version = "2.0.108"
|
|
866
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
867
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
868
|
+
dependencies = [
|
|
869
|
+
"proc-macro2",
|
|
870
|
+
"quote",
|
|
871
|
+
"unicode-ident",
|
|
872
|
+
]
|
|
873
|
+
|
|
874
|
+
[[package]]
|
|
875
|
+
name = "syntect"
|
|
876
|
+
version = "5.3.0"
|
|
877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
+
checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
|
|
879
|
+
dependencies = [
|
|
880
|
+
"bincode",
|
|
881
|
+
"fancy-regex",
|
|
882
|
+
"flate2",
|
|
883
|
+
"fnv",
|
|
884
|
+
"once_cell",
|
|
885
|
+
"onig",
|
|
886
|
+
"plist",
|
|
887
|
+
"regex-syntax",
|
|
888
|
+
"serde",
|
|
889
|
+
"serde_derive",
|
|
890
|
+
"serde_json",
|
|
891
|
+
"thiserror",
|
|
892
|
+
"walkdir",
|
|
893
|
+
"yaml-rust",
|
|
894
|
+
]
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "terminal_size"
|
|
898
|
+
version = "0.4.3"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
|
901
|
+
dependencies = [
|
|
902
|
+
"rustix",
|
|
903
|
+
"windows-sys 0.60.2",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "thiserror"
|
|
908
|
+
version = "2.0.17"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
911
|
+
dependencies = [
|
|
912
|
+
"thiserror-impl",
|
|
913
|
+
]
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "thiserror-impl"
|
|
917
|
+
version = "2.0.17"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
920
|
+
dependencies = [
|
|
921
|
+
"proc-macro2",
|
|
922
|
+
"quote",
|
|
923
|
+
"syn",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "time"
|
|
928
|
+
version = "0.3.44"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
931
|
+
dependencies = [
|
|
932
|
+
"deranged",
|
|
933
|
+
"itoa",
|
|
934
|
+
"num-conv",
|
|
935
|
+
"powerfmt",
|
|
936
|
+
"serde",
|
|
937
|
+
"time-core",
|
|
938
|
+
"time-macros",
|
|
939
|
+
]
|
|
940
|
+
|
|
941
|
+
[[package]]
|
|
942
|
+
name = "time-core"
|
|
943
|
+
version = "0.1.6"
|
|
944
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
945
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "time-macros"
|
|
949
|
+
version = "0.2.24"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"num-conv",
|
|
954
|
+
"time-core",
|
|
955
|
+
]
|
|
956
|
+
|
|
957
|
+
[[package]]
|
|
958
|
+
name = "tinyvec"
|
|
959
|
+
version = "1.10.0"
|
|
960
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
961
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
962
|
+
dependencies = [
|
|
963
|
+
"tinyvec_macros",
|
|
964
|
+
]
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "tinyvec_macros"
|
|
968
|
+
version = "0.1.1"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "typed-arena"
|
|
974
|
+
version = "2.0.2"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "unicode-ident"
|
|
980
|
+
version = "1.0.20"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "unicode-normalization"
|
|
986
|
+
version = "0.1.24"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
|
|
989
|
+
dependencies = [
|
|
990
|
+
"tinyvec",
|
|
991
|
+
]
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "unicode_categories"
|
|
995
|
+
version = "0.1.1"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "utf8parse"
|
|
1001
|
+
version = "0.2.2"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "walkdir"
|
|
1007
|
+
version = "2.5.0"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"same-file",
|
|
1012
|
+
"winapi-util",
|
|
1013
|
+
]
|
|
1014
|
+
|
|
1015
|
+
[[package]]
|
|
1016
|
+
name = "winapi-util"
|
|
1017
|
+
version = "0.1.11"
|
|
1018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1020
|
+
dependencies = [
|
|
1021
|
+
"windows-sys 0.61.2",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "windows-link"
|
|
1026
|
+
version = "0.2.1"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "windows-sys"
|
|
1032
|
+
version = "0.60.2"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"windows-targets",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "windows-sys"
|
|
1041
|
+
version = "0.61.2"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"windows-link",
|
|
1046
|
+
]
|
|
1047
|
+
|
|
1048
|
+
[[package]]
|
|
1049
|
+
name = "windows-targets"
|
|
1050
|
+
version = "0.53.5"
|
|
1051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1052
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1053
|
+
dependencies = [
|
|
1054
|
+
"windows-link",
|
|
1055
|
+
"windows_aarch64_gnullvm",
|
|
1056
|
+
"windows_aarch64_msvc",
|
|
1057
|
+
"windows_i686_gnu",
|
|
1058
|
+
"windows_i686_gnullvm",
|
|
1059
|
+
"windows_i686_msvc",
|
|
1060
|
+
"windows_x86_64_gnu",
|
|
1061
|
+
"windows_x86_64_gnullvm",
|
|
1062
|
+
"windows_x86_64_msvc",
|
|
1063
|
+
]
|
|
1064
|
+
|
|
1065
|
+
[[package]]
|
|
1066
|
+
name = "windows_aarch64_gnullvm"
|
|
1067
|
+
version = "0.53.1"
|
|
1068
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1070
|
+
|
|
1071
|
+
[[package]]
|
|
1072
|
+
name = "windows_aarch64_msvc"
|
|
1073
|
+
version = "0.53.1"
|
|
1074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1075
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1076
|
+
|
|
1077
|
+
[[package]]
|
|
1078
|
+
name = "windows_i686_gnu"
|
|
1079
|
+
version = "0.53.1"
|
|
1080
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1081
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "windows_i686_gnullvm"
|
|
1085
|
+
version = "0.53.1"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1088
|
+
|
|
1089
|
+
[[package]]
|
|
1090
|
+
name = "windows_i686_msvc"
|
|
1091
|
+
version = "0.53.1"
|
|
1092
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1093
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "windows_x86_64_gnu"
|
|
1097
|
+
version = "0.53.1"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "windows_x86_64_gnullvm"
|
|
1103
|
+
version = "0.53.1"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "windows_x86_64_msvc"
|
|
1109
|
+
version = "0.53.1"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "xdg"
|
|
1115
|
+
version = "2.5.2"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "213b7324336b53d2414b2db8537e56544d981803139155afa84f76eeebb7a546"
|
|
1118
|
+
|
|
1119
|
+
[[package]]
|
|
1120
|
+
name = "yaml-rust"
|
|
1121
|
+
version = "0.4.5"
|
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
+
checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
|
|
1124
|
+
dependencies = [
|
|
1125
|
+
"linked-hash-map",
|
|
1126
|
+
]
|