inkmark 0.1.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 +7 -0
- data/CHANGELOG.md +3 -0
- data/Cargo.lock +940 -0
- data/Cargo.toml +27 -0
- data/LICENSE.txt +21 -0
- data/NOTICE +16 -0
- data/README.md +1166 -0
- data/ext/inkmark/Cargo.toml +31 -0
- data/ext/inkmark/build.rs +5 -0
- data/ext/inkmark/extconf.rb +6 -0
- data/ext/inkmark/src/autolink.rs +167 -0
- data/ext/inkmark/src/chunks_by_heading.rs +325 -0
- data/ext/inkmark/src/chunks_by_size.rs +302 -0
- data/ext/inkmark/src/document.rs +411 -0
- data/ext/inkmark/src/emoji.rs +197 -0
- data/ext/inkmark/src/handler.rs +758 -0
- data/ext/inkmark/src/heading.rs +262 -0
- data/ext/inkmark/src/highlight.rs +202 -0
- data/ext/inkmark/src/image.rs +284 -0
- data/ext/inkmark/src/lib.rs +54 -0
- data/ext/inkmark/src/link.rs +291 -0
- data/ext/inkmark/src/options.rs +231 -0
- data/ext/inkmark/src/plain_text.rs +445 -0
- data/ext/inkmark/src/scheme_filter.rs +319 -0
- data/ext/inkmark/src/stats.rs +453 -0
- data/ext/inkmark/src/tag_filter.rs +226 -0
- data/ext/inkmark/src/toc.rs +221 -0
- data/ext/inkmark/src/truncate.rs +267 -0
- data/ext/inkmark/src/url_match.rs +178 -0
- data/lib/inkmark/event.rb +342 -0
- data/lib/inkmark/native.rb +8 -0
- data/lib/inkmark/options.rb +698 -0
- data/lib/inkmark/toc.rb +40 -0
- data/lib/inkmark/version.rb +6 -0
- data/lib/inkmark.rb +711 -0
- data/sig/inkmark.rbs +219 -0
- metadata +208 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,940 @@
|
|
|
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.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 = "allocator-api2"
|
|
22
|
+
version = "0.2.21"
|
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
25
|
+
|
|
26
|
+
[[package]]
|
|
27
|
+
name = "bincode"
|
|
28
|
+
version = "1.3.3"
|
|
29
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
30
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"serde",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "bindgen"
|
|
37
|
+
version = "0.72.1"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"bitflags",
|
|
42
|
+
"cexpr",
|
|
43
|
+
"clang-sys",
|
|
44
|
+
"itertools",
|
|
45
|
+
"proc-macro2",
|
|
46
|
+
"quote",
|
|
47
|
+
"regex",
|
|
48
|
+
"rustc-hash",
|
|
49
|
+
"shlex",
|
|
50
|
+
"syn",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "bit-set"
|
|
55
|
+
version = "0.8.0"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
58
|
+
dependencies = [
|
|
59
|
+
"bit-vec",
|
|
60
|
+
]
|
|
61
|
+
|
|
62
|
+
[[package]]
|
|
63
|
+
name = "bit-vec"
|
|
64
|
+
version = "0.8.0"
|
|
65
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
66
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "bitflags"
|
|
70
|
+
version = "2.11.1"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "bstr"
|
|
76
|
+
version = "1.12.1"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"memchr",
|
|
81
|
+
"serde",
|
|
82
|
+
]
|
|
83
|
+
|
|
84
|
+
[[package]]
|
|
85
|
+
name = "cexpr"
|
|
86
|
+
version = "0.6.0"
|
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
89
|
+
dependencies = [
|
|
90
|
+
"nom",
|
|
91
|
+
]
|
|
92
|
+
|
|
93
|
+
[[package]]
|
|
94
|
+
name = "cfg-if"
|
|
95
|
+
version = "1.0.4"
|
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
97
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
98
|
+
|
|
99
|
+
[[package]]
|
|
100
|
+
name = "clang-sys"
|
|
101
|
+
version = "1.8.1"
|
|
102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
104
|
+
dependencies = [
|
|
105
|
+
"glob",
|
|
106
|
+
"libc",
|
|
107
|
+
"libloading",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "crc32fast"
|
|
112
|
+
version = "1.5.0"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"cfg-if",
|
|
117
|
+
]
|
|
118
|
+
|
|
119
|
+
[[package]]
|
|
120
|
+
name = "deunicode"
|
|
121
|
+
version = "1.6.2"
|
|
122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
123
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
|
124
|
+
|
|
125
|
+
[[package]]
|
|
126
|
+
name = "displaydoc"
|
|
127
|
+
version = "0.2.5"
|
|
128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
130
|
+
dependencies = [
|
|
131
|
+
"proc-macro2",
|
|
132
|
+
"quote",
|
|
133
|
+
"syn",
|
|
134
|
+
]
|
|
135
|
+
|
|
136
|
+
[[package]]
|
|
137
|
+
name = "either"
|
|
138
|
+
version = "1.15.0"
|
|
139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
140
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "emojis"
|
|
144
|
+
version = "0.8.1"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "afd562179989ec12b5c82f63a9423be4d4f0c5651930837074488ef4d07f2886"
|
|
147
|
+
dependencies = [
|
|
148
|
+
"phf",
|
|
149
|
+
]
|
|
150
|
+
|
|
151
|
+
[[package]]
|
|
152
|
+
name = "equivalent"
|
|
153
|
+
version = "1.0.2"
|
|
154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
156
|
+
|
|
157
|
+
[[package]]
|
|
158
|
+
name = "fancy-regex"
|
|
159
|
+
version = "0.16.2"
|
|
160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
+
checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
|
|
162
|
+
dependencies = [
|
|
163
|
+
"bit-set",
|
|
164
|
+
"regex-automata",
|
|
165
|
+
"regex-syntax",
|
|
166
|
+
]
|
|
167
|
+
|
|
168
|
+
[[package]]
|
|
169
|
+
name = "flate2"
|
|
170
|
+
version = "1.1.9"
|
|
171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
172
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
173
|
+
dependencies = [
|
|
174
|
+
"crc32fast",
|
|
175
|
+
"miniz_oxide",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "fnv"
|
|
180
|
+
version = "1.0.7"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "foldhash"
|
|
186
|
+
version = "0.1.5"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
189
|
+
|
|
190
|
+
[[package]]
|
|
191
|
+
name = "form_urlencoded"
|
|
192
|
+
version = "1.2.2"
|
|
193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
195
|
+
dependencies = [
|
|
196
|
+
"percent-encoding",
|
|
197
|
+
]
|
|
198
|
+
|
|
199
|
+
[[package]]
|
|
200
|
+
name = "glob"
|
|
201
|
+
version = "0.3.3"
|
|
202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
204
|
+
|
|
205
|
+
[[package]]
|
|
206
|
+
name = "globset"
|
|
207
|
+
version = "0.4.18"
|
|
208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
209
|
+
checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
|
|
210
|
+
dependencies = [
|
|
211
|
+
"aho-corasick",
|
|
212
|
+
"bstr",
|
|
213
|
+
"log",
|
|
214
|
+
"regex-automata",
|
|
215
|
+
"regex-syntax",
|
|
216
|
+
]
|
|
217
|
+
|
|
218
|
+
[[package]]
|
|
219
|
+
name = "hashbrown"
|
|
220
|
+
version = "0.15.5"
|
|
221
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
223
|
+
dependencies = [
|
|
224
|
+
"allocator-api2",
|
|
225
|
+
"equivalent",
|
|
226
|
+
"foldhash",
|
|
227
|
+
]
|
|
228
|
+
|
|
229
|
+
[[package]]
|
|
230
|
+
name = "icu_collections"
|
|
231
|
+
version = "2.2.0"
|
|
232
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
233
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
234
|
+
dependencies = [
|
|
235
|
+
"displaydoc",
|
|
236
|
+
"potential_utf",
|
|
237
|
+
"utf8_iter",
|
|
238
|
+
"yoke",
|
|
239
|
+
"zerofrom",
|
|
240
|
+
"zerovec",
|
|
241
|
+
]
|
|
242
|
+
|
|
243
|
+
[[package]]
|
|
244
|
+
name = "icu_locale_core"
|
|
245
|
+
version = "2.2.0"
|
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
248
|
+
dependencies = [
|
|
249
|
+
"displaydoc",
|
|
250
|
+
"litemap",
|
|
251
|
+
"tinystr",
|
|
252
|
+
"writeable",
|
|
253
|
+
"zerovec",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "icu_normalizer"
|
|
258
|
+
version = "2.2.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"icu_collections",
|
|
263
|
+
"icu_normalizer_data",
|
|
264
|
+
"icu_properties",
|
|
265
|
+
"icu_provider",
|
|
266
|
+
"smallvec",
|
|
267
|
+
"zerovec",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "icu_normalizer_data"
|
|
272
|
+
version = "2.2.0"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "icu_properties"
|
|
278
|
+
version = "2.2.0"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
281
|
+
dependencies = [
|
|
282
|
+
"icu_collections",
|
|
283
|
+
"icu_locale_core",
|
|
284
|
+
"icu_properties_data",
|
|
285
|
+
"icu_provider",
|
|
286
|
+
"zerotrie",
|
|
287
|
+
"zerovec",
|
|
288
|
+
]
|
|
289
|
+
|
|
290
|
+
[[package]]
|
|
291
|
+
name = "icu_properties_data"
|
|
292
|
+
version = "2.2.0"
|
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
294
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
295
|
+
|
|
296
|
+
[[package]]
|
|
297
|
+
name = "icu_provider"
|
|
298
|
+
version = "2.2.0"
|
|
299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
300
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
301
|
+
dependencies = [
|
|
302
|
+
"displaydoc",
|
|
303
|
+
"icu_locale_core",
|
|
304
|
+
"writeable",
|
|
305
|
+
"yoke",
|
|
306
|
+
"zerofrom",
|
|
307
|
+
"zerotrie",
|
|
308
|
+
"zerovec",
|
|
309
|
+
]
|
|
310
|
+
|
|
311
|
+
[[package]]
|
|
312
|
+
name = "idna"
|
|
313
|
+
version = "1.1.0"
|
|
314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
315
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
316
|
+
dependencies = [
|
|
317
|
+
"idna_adapter",
|
|
318
|
+
"smallvec",
|
|
319
|
+
"utf8_iter",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "idna_adapter"
|
|
324
|
+
version = "1.2.1"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"icu_normalizer",
|
|
329
|
+
"icu_properties",
|
|
330
|
+
]
|
|
331
|
+
|
|
332
|
+
[[package]]
|
|
333
|
+
name = "inkmark"
|
|
334
|
+
version = "0.1.0"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"deunicode",
|
|
337
|
+
"emojis",
|
|
338
|
+
"globset",
|
|
339
|
+
"linkify",
|
|
340
|
+
"magnus",
|
|
341
|
+
"pulldown-cmark",
|
|
342
|
+
"pulldown-cmark-escape",
|
|
343
|
+
"pulldown-cmark-to-cmark",
|
|
344
|
+
"rb-sys",
|
|
345
|
+
"rb-sys-env",
|
|
346
|
+
"rb-sys-test-helpers",
|
|
347
|
+
"syntect",
|
|
348
|
+
"unicode-segmentation",
|
|
349
|
+
"url",
|
|
350
|
+
"whatlang",
|
|
351
|
+
]
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "itertools"
|
|
355
|
+
version = "0.13.0"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
358
|
+
dependencies = [
|
|
359
|
+
"either",
|
|
360
|
+
]
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "lazy_static"
|
|
364
|
+
version = "1.5.0"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "libc"
|
|
370
|
+
version = "0.2.185"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "52ff2c0fe9bc6cb6b14a0592c2ff4fa9ceb83eea9db979b0487cd054946a2b8f"
|
|
373
|
+
|
|
374
|
+
[[package]]
|
|
375
|
+
name = "libloading"
|
|
376
|
+
version = "0.8.9"
|
|
377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
378
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
379
|
+
dependencies = [
|
|
380
|
+
"cfg-if",
|
|
381
|
+
"windows-link",
|
|
382
|
+
]
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "linkify"
|
|
386
|
+
version = "0.11.0"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "92f9ae2f3d31697697311f016320fe984127e636b45cf5eb5c175b7eb103dadb"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"memchr",
|
|
391
|
+
]
|
|
392
|
+
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "litemap"
|
|
395
|
+
version = "0.8.2"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
398
|
+
|
|
399
|
+
[[package]]
|
|
400
|
+
name = "log"
|
|
401
|
+
version = "0.4.29"
|
|
402
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
403
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "magnus"
|
|
407
|
+
version = "0.8.2"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"magnus-macros",
|
|
412
|
+
"rb-sys",
|
|
413
|
+
"rb-sys-env",
|
|
414
|
+
"seq-macro",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "magnus-macros"
|
|
419
|
+
version = "0.8.0"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"proc-macro2",
|
|
424
|
+
"quote",
|
|
425
|
+
"syn",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "memchr"
|
|
430
|
+
version = "2.8.0"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
433
|
+
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "minimal-lexical"
|
|
436
|
+
version = "0.2.1"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "miniz_oxide"
|
|
442
|
+
version = "0.8.9"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"adler2",
|
|
447
|
+
"simd-adler32",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "nom"
|
|
452
|
+
version = "7.1.3"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"memchr",
|
|
457
|
+
"minimal-lexical",
|
|
458
|
+
]
|
|
459
|
+
|
|
460
|
+
[[package]]
|
|
461
|
+
name = "once_cell"
|
|
462
|
+
version = "1.21.4"
|
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
464
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "percent-encoding"
|
|
468
|
+
version = "2.3.2"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
471
|
+
|
|
472
|
+
[[package]]
|
|
473
|
+
name = "phf"
|
|
474
|
+
version = "0.13.1"
|
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
477
|
+
dependencies = [
|
|
478
|
+
"phf_shared",
|
|
479
|
+
]
|
|
480
|
+
|
|
481
|
+
[[package]]
|
|
482
|
+
name = "phf_shared"
|
|
483
|
+
version = "0.13.1"
|
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
486
|
+
dependencies = [
|
|
487
|
+
"siphasher",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "potential_utf"
|
|
492
|
+
version = "0.1.5"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"zerovec",
|
|
497
|
+
]
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "proc-macro2"
|
|
501
|
+
version = "1.0.106"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"unicode-ident",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "pulldown-cmark"
|
|
510
|
+
version = "0.13.3"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "7c3a14896dfa883796f1cb410461aef38810ea05f2b2c33c5aded3649095fdad"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"bitflags",
|
|
515
|
+
"memchr",
|
|
516
|
+
"pulldown-cmark-escape",
|
|
517
|
+
"unicase",
|
|
518
|
+
]
|
|
519
|
+
|
|
520
|
+
[[package]]
|
|
521
|
+
name = "pulldown-cmark-escape"
|
|
522
|
+
version = "0.11.0"
|
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
524
|
+
checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae"
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "pulldown-cmark-to-cmark"
|
|
528
|
+
version = "22.0.0"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "50793def1b900256624a709439404384204a5dc3a6ec580281bfaac35e882e90"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"pulldown-cmark",
|
|
533
|
+
]
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "quote"
|
|
537
|
+
version = "1.0.45"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"proc-macro2",
|
|
542
|
+
]
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "rb-sys"
|
|
546
|
+
version = "0.9.126"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "284799e73e899fe946fd77c7211b83bff61a1356e039ade7a2516a779e3212d0"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"rb-sys-build",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "rb-sys-build"
|
|
555
|
+
version = "0.9.126"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "855fc1ad8943d12c89ef12f9147f1cc531f5bf19fb744112fdd317bb6ee7b5c5"
|
|
558
|
+
dependencies = [
|
|
559
|
+
"bindgen",
|
|
560
|
+
"lazy_static",
|
|
561
|
+
"proc-macro2",
|
|
562
|
+
"quote",
|
|
563
|
+
"regex",
|
|
564
|
+
"shell-words",
|
|
565
|
+
"syn",
|
|
566
|
+
]
|
|
567
|
+
|
|
568
|
+
[[package]]
|
|
569
|
+
name = "rb-sys-env"
|
|
570
|
+
version = "0.2.3"
|
|
571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
572
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
573
|
+
|
|
574
|
+
[[package]]
|
|
575
|
+
name = "rb-sys-test-helpers"
|
|
576
|
+
version = "0.2.2"
|
|
577
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
578
|
+
checksum = "d6ccb543252549fc28f5d290322e041cd682bd199a8e1caaa813fb6e63dd221e"
|
|
579
|
+
dependencies = [
|
|
580
|
+
"rb-sys",
|
|
581
|
+
"rb-sys-env",
|
|
582
|
+
"rb-sys-test-helpers-macros",
|
|
583
|
+
]
|
|
584
|
+
|
|
585
|
+
[[package]]
|
|
586
|
+
name = "rb-sys-test-helpers-macros"
|
|
587
|
+
version = "0.2.2"
|
|
588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
589
|
+
checksum = "1508caed999cb659ab1b3308e7b2985186b3b550ef5492dc18da71b560c55615"
|
|
590
|
+
dependencies = [
|
|
591
|
+
"quote",
|
|
592
|
+
"syn",
|
|
593
|
+
]
|
|
594
|
+
|
|
595
|
+
[[package]]
|
|
596
|
+
name = "regex"
|
|
597
|
+
version = "1.12.3"
|
|
598
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
600
|
+
dependencies = [
|
|
601
|
+
"aho-corasick",
|
|
602
|
+
"memchr",
|
|
603
|
+
"regex-automata",
|
|
604
|
+
"regex-syntax",
|
|
605
|
+
]
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "regex-automata"
|
|
609
|
+
version = "0.4.14"
|
|
610
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
611
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
612
|
+
dependencies = [
|
|
613
|
+
"aho-corasick",
|
|
614
|
+
"memchr",
|
|
615
|
+
"regex-syntax",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "regex-syntax"
|
|
620
|
+
version = "0.8.10"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "rustc-hash"
|
|
626
|
+
version = "2.1.2"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
629
|
+
|
|
630
|
+
[[package]]
|
|
631
|
+
name = "same-file"
|
|
632
|
+
version = "1.0.6"
|
|
633
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
634
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
635
|
+
dependencies = [
|
|
636
|
+
"winapi-util",
|
|
637
|
+
]
|
|
638
|
+
|
|
639
|
+
[[package]]
|
|
640
|
+
name = "seq-macro"
|
|
641
|
+
version = "0.3.6"
|
|
642
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
643
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
644
|
+
|
|
645
|
+
[[package]]
|
|
646
|
+
name = "serde"
|
|
647
|
+
version = "1.0.228"
|
|
648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
649
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
650
|
+
dependencies = [
|
|
651
|
+
"serde_core",
|
|
652
|
+
]
|
|
653
|
+
|
|
654
|
+
[[package]]
|
|
655
|
+
name = "serde_core"
|
|
656
|
+
version = "1.0.228"
|
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
658
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
659
|
+
dependencies = [
|
|
660
|
+
"serde_derive",
|
|
661
|
+
]
|
|
662
|
+
|
|
663
|
+
[[package]]
|
|
664
|
+
name = "serde_derive"
|
|
665
|
+
version = "1.0.228"
|
|
666
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
668
|
+
dependencies = [
|
|
669
|
+
"proc-macro2",
|
|
670
|
+
"quote",
|
|
671
|
+
"syn",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "shell-words"
|
|
676
|
+
version = "1.1.1"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "shlex"
|
|
682
|
+
version = "1.3.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
685
|
+
|
|
686
|
+
[[package]]
|
|
687
|
+
name = "simd-adler32"
|
|
688
|
+
version = "0.3.9"
|
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
691
|
+
|
|
692
|
+
[[package]]
|
|
693
|
+
name = "siphasher"
|
|
694
|
+
version = "1.0.2"
|
|
695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
696
|
+
checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
|
|
697
|
+
|
|
698
|
+
[[package]]
|
|
699
|
+
name = "smallvec"
|
|
700
|
+
version = "1.15.1"
|
|
701
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
702
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
703
|
+
|
|
704
|
+
[[package]]
|
|
705
|
+
name = "stable_deref_trait"
|
|
706
|
+
version = "1.2.1"
|
|
707
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
708
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
709
|
+
|
|
710
|
+
[[package]]
|
|
711
|
+
name = "syn"
|
|
712
|
+
version = "2.0.117"
|
|
713
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
714
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
715
|
+
dependencies = [
|
|
716
|
+
"proc-macro2",
|
|
717
|
+
"quote",
|
|
718
|
+
"unicode-ident",
|
|
719
|
+
]
|
|
720
|
+
|
|
721
|
+
[[package]]
|
|
722
|
+
name = "synstructure"
|
|
723
|
+
version = "0.13.2"
|
|
724
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
725
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
726
|
+
dependencies = [
|
|
727
|
+
"proc-macro2",
|
|
728
|
+
"quote",
|
|
729
|
+
"syn",
|
|
730
|
+
]
|
|
731
|
+
|
|
732
|
+
[[package]]
|
|
733
|
+
name = "syntect"
|
|
734
|
+
version = "5.3.0"
|
|
735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
736
|
+
checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
|
|
737
|
+
dependencies = [
|
|
738
|
+
"bincode",
|
|
739
|
+
"fancy-regex",
|
|
740
|
+
"flate2",
|
|
741
|
+
"fnv",
|
|
742
|
+
"once_cell",
|
|
743
|
+
"regex-syntax",
|
|
744
|
+
"serde",
|
|
745
|
+
"serde_derive",
|
|
746
|
+
"thiserror",
|
|
747
|
+
"walkdir",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "thiserror"
|
|
752
|
+
version = "2.0.18"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
755
|
+
dependencies = [
|
|
756
|
+
"thiserror-impl",
|
|
757
|
+
]
|
|
758
|
+
|
|
759
|
+
[[package]]
|
|
760
|
+
name = "thiserror-impl"
|
|
761
|
+
version = "2.0.18"
|
|
762
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
764
|
+
dependencies = [
|
|
765
|
+
"proc-macro2",
|
|
766
|
+
"quote",
|
|
767
|
+
"syn",
|
|
768
|
+
]
|
|
769
|
+
|
|
770
|
+
[[package]]
|
|
771
|
+
name = "tinystr"
|
|
772
|
+
version = "0.8.3"
|
|
773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
775
|
+
dependencies = [
|
|
776
|
+
"displaydoc",
|
|
777
|
+
"zerovec",
|
|
778
|
+
]
|
|
779
|
+
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "unicase"
|
|
782
|
+
version = "2.9.0"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
|
|
785
|
+
|
|
786
|
+
[[package]]
|
|
787
|
+
name = "unicode-ident"
|
|
788
|
+
version = "1.0.24"
|
|
789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
790
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
791
|
+
|
|
792
|
+
[[package]]
|
|
793
|
+
name = "unicode-segmentation"
|
|
794
|
+
version = "1.13.2"
|
|
795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
796
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
797
|
+
|
|
798
|
+
[[package]]
|
|
799
|
+
name = "url"
|
|
800
|
+
version = "2.5.8"
|
|
801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
802
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
803
|
+
dependencies = [
|
|
804
|
+
"form_urlencoded",
|
|
805
|
+
"idna",
|
|
806
|
+
"percent-encoding",
|
|
807
|
+
"serde",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "utf8_iter"
|
|
812
|
+
version = "1.0.4"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "walkdir"
|
|
818
|
+
version = "2.5.0"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"same-file",
|
|
823
|
+
"winapi-util",
|
|
824
|
+
]
|
|
825
|
+
|
|
826
|
+
[[package]]
|
|
827
|
+
name = "whatlang"
|
|
828
|
+
version = "0.18.0"
|
|
829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
+
checksum = "f5e8f38b596e2a359b755342473520a99421e43658548c79489ee221b728c107"
|
|
831
|
+
dependencies = [
|
|
832
|
+
"hashbrown",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "winapi-util"
|
|
837
|
+
version = "0.1.11"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
840
|
+
dependencies = [
|
|
841
|
+
"windows-sys",
|
|
842
|
+
]
|
|
843
|
+
|
|
844
|
+
[[package]]
|
|
845
|
+
name = "windows-link"
|
|
846
|
+
version = "0.2.1"
|
|
847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
848
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
849
|
+
|
|
850
|
+
[[package]]
|
|
851
|
+
name = "windows-sys"
|
|
852
|
+
version = "0.61.2"
|
|
853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
854
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
855
|
+
dependencies = [
|
|
856
|
+
"windows-link",
|
|
857
|
+
]
|
|
858
|
+
|
|
859
|
+
[[package]]
|
|
860
|
+
name = "writeable"
|
|
861
|
+
version = "0.6.3"
|
|
862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
863
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "yoke"
|
|
867
|
+
version = "0.8.2"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"stable_deref_trait",
|
|
872
|
+
"yoke-derive",
|
|
873
|
+
"zerofrom",
|
|
874
|
+
]
|
|
875
|
+
|
|
876
|
+
[[package]]
|
|
877
|
+
name = "yoke-derive"
|
|
878
|
+
version = "0.8.2"
|
|
879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
880
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
881
|
+
dependencies = [
|
|
882
|
+
"proc-macro2",
|
|
883
|
+
"quote",
|
|
884
|
+
"syn",
|
|
885
|
+
"synstructure",
|
|
886
|
+
]
|
|
887
|
+
|
|
888
|
+
[[package]]
|
|
889
|
+
name = "zerofrom"
|
|
890
|
+
version = "0.1.7"
|
|
891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
+
checksum = "69faa1f2a1ea75661980b013019ed6687ed0e83d069bc1114e2cc74c6c04c4df"
|
|
893
|
+
dependencies = [
|
|
894
|
+
"zerofrom-derive",
|
|
895
|
+
]
|
|
896
|
+
|
|
897
|
+
[[package]]
|
|
898
|
+
name = "zerofrom-derive"
|
|
899
|
+
version = "0.1.7"
|
|
900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
901
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
902
|
+
dependencies = [
|
|
903
|
+
"proc-macro2",
|
|
904
|
+
"quote",
|
|
905
|
+
"syn",
|
|
906
|
+
"synstructure",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "zerotrie"
|
|
911
|
+
version = "0.2.4"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
914
|
+
dependencies = [
|
|
915
|
+
"displaydoc",
|
|
916
|
+
"yoke",
|
|
917
|
+
"zerofrom",
|
|
918
|
+
]
|
|
919
|
+
|
|
920
|
+
[[package]]
|
|
921
|
+
name = "zerovec"
|
|
922
|
+
version = "0.11.6"
|
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
924
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
925
|
+
dependencies = [
|
|
926
|
+
"yoke",
|
|
927
|
+
"zerofrom",
|
|
928
|
+
"zerovec-derive",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "zerovec-derive"
|
|
933
|
+
version = "0.11.3"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"proc-macro2",
|
|
938
|
+
"quote",
|
|
939
|
+
"syn",
|
|
940
|
+
]
|