commonmarker 2.4.1 → 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 +132 -218
- data/README.md +10 -6
- data/ext/commonmarker/Cargo.toml +2 -2
- data/ext/commonmarker/src/lib.rs +59 -35
- data/ext/commonmarker/src/node.rs +151 -149
- data/ext/commonmarker/src/options.rs +64 -73
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +9 -8
- data/lib/commonmarker/config.rb +4 -0
- data/lib/commonmarker/node.rb +2 -2
- data/lib/commonmarker/version.rb +1 -1
- data/lib/commonmarker.rb +2 -2
- metadata +7 -4
data/Cargo.lock
CHANGED
|
@@ -10,18 +10,18 @@ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "aho-corasick"
|
|
13
|
-
version = "1.1.
|
|
13
|
+
version = "1.1.4"
|
|
14
14
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
-
checksum = "
|
|
15
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
16
16
|
dependencies = [
|
|
17
17
|
"memchr",
|
|
18
18
|
]
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "anstream"
|
|
22
|
-
version = "0.6.
|
|
22
|
+
version = "0.6.21"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
|
|
25
25
|
dependencies = [
|
|
26
26
|
"anstyle",
|
|
27
27
|
"anstyle-parse",
|
|
@@ -34,9 +34,9 @@ dependencies = [
|
|
|
34
34
|
|
|
35
35
|
[[package]]
|
|
36
36
|
name = "anstyle"
|
|
37
|
-
version = "1.0.
|
|
37
|
+
version = "1.0.13"
|
|
38
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
39
|
+
checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "anstyle-parse"
|
|
@@ -88,7 +88,7 @@ version = "0.69.5"
|
|
|
88
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
89
89
|
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
90
90
|
dependencies = [
|
|
91
|
-
"bitflags
|
|
91
|
+
"bitflags",
|
|
92
92
|
"cexpr",
|
|
93
93
|
"clang-sys",
|
|
94
94
|
"itertools",
|
|
@@ -104,36 +104,30 @@ dependencies = [
|
|
|
104
104
|
|
|
105
105
|
[[package]]
|
|
106
106
|
name = "bit-set"
|
|
107
|
-
version = "0.
|
|
107
|
+
version = "0.8.0"
|
|
108
108
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
-
checksum = "
|
|
109
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
110
110
|
dependencies = [
|
|
111
111
|
"bit-vec",
|
|
112
112
|
]
|
|
113
113
|
|
|
114
114
|
[[package]]
|
|
115
115
|
name = "bit-vec"
|
|
116
|
-
version = "0.
|
|
117
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
-
checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
|
|
119
|
-
|
|
120
|
-
[[package]]
|
|
121
|
-
name = "bitflags"
|
|
122
|
-
version = "1.3.2"
|
|
116
|
+
version = "0.8.0"
|
|
123
117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
-
checksum = "
|
|
118
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
125
119
|
|
|
126
120
|
[[package]]
|
|
127
121
|
name = "bitflags"
|
|
128
|
-
version = "2.
|
|
122
|
+
version = "2.10.0"
|
|
129
123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
|
-
checksum = "
|
|
124
|
+
checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
|
|
131
125
|
|
|
132
126
|
[[package]]
|
|
133
127
|
name = "bon"
|
|
134
|
-
version = "3.
|
|
128
|
+
version = "3.8.1"
|
|
135
129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
-
checksum = "
|
|
130
|
+
checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1"
|
|
137
131
|
dependencies = [
|
|
138
132
|
"bon-macros",
|
|
139
133
|
"rustversion",
|
|
@@ -141,9 +135,9 @@ dependencies = [
|
|
|
141
135
|
|
|
142
136
|
[[package]]
|
|
143
137
|
name = "bon-macros"
|
|
144
|
-
version = "3.
|
|
138
|
+
version = "3.8.1"
|
|
145
139
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
-
checksum = "
|
|
140
|
+
checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645"
|
|
147
141
|
dependencies = [
|
|
148
142
|
"darling",
|
|
149
143
|
"ident_case",
|
|
@@ -154,12 +148,6 @@ dependencies = [
|
|
|
154
148
|
"syn",
|
|
155
149
|
]
|
|
156
150
|
|
|
157
|
-
[[package]]
|
|
158
|
-
name = "bumpalo"
|
|
159
|
-
version = "3.19.0"
|
|
160
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
161
|
-
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
162
|
-
|
|
163
151
|
[[package]]
|
|
164
152
|
name = "caseless"
|
|
165
153
|
version = "0.2.2"
|
|
@@ -171,9 +159,9 @@ dependencies = [
|
|
|
171
159
|
|
|
172
160
|
[[package]]
|
|
173
161
|
name = "cc"
|
|
174
|
-
version = "1.2.
|
|
162
|
+
version = "1.2.43"
|
|
175
163
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
164
|
+
checksum = "739eb0f94557554b3ca9a86d2d37bebd49c5e6d0c1d2bda35ba5bdac830befc2"
|
|
177
165
|
dependencies = [
|
|
178
166
|
"find-msvc-tools",
|
|
179
167
|
"shlex",
|
|
@@ -190,9 +178,9 @@ dependencies = [
|
|
|
190
178
|
|
|
191
179
|
[[package]]
|
|
192
180
|
name = "cfg-if"
|
|
193
|
-
version = "1.0.
|
|
181
|
+
version = "1.0.4"
|
|
194
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
195
|
-
checksum = "
|
|
183
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
196
184
|
|
|
197
185
|
[[package]]
|
|
198
186
|
name = "clang-sys"
|
|
@@ -207,9 +195,9 @@ dependencies = [
|
|
|
207
195
|
|
|
208
196
|
[[package]]
|
|
209
197
|
name = "clap"
|
|
210
|
-
version = "4.5.
|
|
198
|
+
version = "4.5.51"
|
|
211
199
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
212
|
-
checksum = "
|
|
200
|
+
checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
|
|
213
201
|
dependencies = [
|
|
214
202
|
"clap_builder",
|
|
215
203
|
"clap_derive",
|
|
@@ -217,9 +205,9 @@ dependencies = [
|
|
|
217
205
|
|
|
218
206
|
[[package]]
|
|
219
207
|
name = "clap_builder"
|
|
220
|
-
version = "4.5.
|
|
208
|
+
version = "4.5.51"
|
|
221
209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
222
|
-
checksum = "
|
|
210
|
+
checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
|
|
223
211
|
dependencies = [
|
|
224
212
|
"anstream",
|
|
225
213
|
"anstyle",
|
|
@@ -230,9 +218,9 @@ dependencies = [
|
|
|
230
218
|
|
|
231
219
|
[[package]]
|
|
232
220
|
name = "clap_derive"
|
|
233
|
-
version = "4.5.
|
|
221
|
+
version = "4.5.49"
|
|
234
222
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
235
|
-
checksum = "
|
|
223
|
+
checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
|
|
236
224
|
dependencies = [
|
|
237
225
|
"heck",
|
|
238
226
|
"proc-macro2",
|
|
@@ -242,9 +230,9 @@ dependencies = [
|
|
|
242
230
|
|
|
243
231
|
[[package]]
|
|
244
232
|
name = "clap_lex"
|
|
245
|
-
version = "0.7.
|
|
233
|
+
version = "0.7.6"
|
|
246
234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
247
|
-
checksum = "
|
|
235
|
+
checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
|
|
248
236
|
|
|
249
237
|
[[package]]
|
|
250
238
|
name = "colorchoice"
|
|
@@ -266,9 +254,9 @@ dependencies = [
|
|
|
266
254
|
|
|
267
255
|
[[package]]
|
|
268
256
|
name = "comrak"
|
|
269
|
-
version = "0.
|
|
257
|
+
version = "0.48.0"
|
|
270
258
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
-
checksum = "
|
|
259
|
+
checksum = "48bf2260aceee247c6c5639f5751dc635211895066d782d2a28fb87f2e0d5613"
|
|
272
260
|
dependencies = [
|
|
273
261
|
"bon",
|
|
274
262
|
"caseless",
|
|
@@ -276,9 +264,8 @@ dependencies = [
|
|
|
276
264
|
"emojis",
|
|
277
265
|
"entities",
|
|
278
266
|
"fmt2io",
|
|
279
|
-
"
|
|
267
|
+
"jetscii",
|
|
280
268
|
"shell-words",
|
|
281
|
-
"slug",
|
|
282
269
|
"syntect",
|
|
283
270
|
"typed-arena",
|
|
284
271
|
"unicode_categories",
|
|
@@ -331,19 +318,13 @@ dependencies = [
|
|
|
331
318
|
|
|
332
319
|
[[package]]
|
|
333
320
|
name = "deranged"
|
|
334
|
-
version = "0.5.
|
|
321
|
+
version = "0.5.5"
|
|
335
322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
336
|
-
checksum = "
|
|
323
|
+
checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
|
|
337
324
|
dependencies = [
|
|
338
325
|
"powerfmt",
|
|
339
326
|
]
|
|
340
327
|
|
|
341
|
-
[[package]]
|
|
342
|
-
name = "deunicode"
|
|
343
|
-
version = "1.6.2"
|
|
344
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
|
346
|
-
|
|
347
328
|
[[package]]
|
|
348
329
|
name = "either"
|
|
349
330
|
version = "1.15.0"
|
|
@@ -378,30 +359,31 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
378
359
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
379
360
|
dependencies = [
|
|
380
361
|
"libc",
|
|
381
|
-
"windows-sys 0.61.
|
|
362
|
+
"windows-sys 0.61.2",
|
|
382
363
|
]
|
|
383
364
|
|
|
384
365
|
[[package]]
|
|
385
366
|
name = "fancy-regex"
|
|
386
|
-
version = "0.
|
|
367
|
+
version = "0.16.2"
|
|
387
368
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
-
checksum = "
|
|
369
|
+
checksum = "998b056554fbe42e03ae0e152895cd1a7e1002aec800fdc6635d20270260c46f"
|
|
389
370
|
dependencies = [
|
|
390
371
|
"bit-set",
|
|
391
|
-
"regex",
|
|
372
|
+
"regex-automata",
|
|
373
|
+
"regex-syntax",
|
|
392
374
|
]
|
|
393
375
|
|
|
394
376
|
[[package]]
|
|
395
377
|
name = "find-msvc-tools"
|
|
396
|
-
version = "0.1.
|
|
378
|
+
version = "0.1.4"
|
|
397
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
-
checksum = "
|
|
380
|
+
checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
|
|
399
381
|
|
|
400
382
|
[[package]]
|
|
401
383
|
name = "flate2"
|
|
402
|
-
version = "1.1.
|
|
384
|
+
version = "1.1.5"
|
|
403
385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
-
checksum = "
|
|
386
|
+
checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
|
|
405
387
|
dependencies = [
|
|
406
388
|
"crc32fast",
|
|
407
389
|
"miniz_oxide",
|
|
@@ -427,9 +409,9 @@ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
|
427
409
|
|
|
428
410
|
[[package]]
|
|
429
411
|
name = "hashbrown"
|
|
430
|
-
version = "0.
|
|
412
|
+
version = "0.16.0"
|
|
431
413
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
-
checksum = "
|
|
414
|
+
checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
|
|
433
415
|
|
|
434
416
|
[[package]]
|
|
435
417
|
name = "heck"
|
|
@@ -445,9 +427,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
445
427
|
|
|
446
428
|
[[package]]
|
|
447
429
|
name = "indexmap"
|
|
448
|
-
version = "2.
|
|
430
|
+
version = "2.12.0"
|
|
449
431
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
450
|
-
checksum = "
|
|
432
|
+
checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
|
|
451
433
|
dependencies = [
|
|
452
434
|
"equivalent",
|
|
453
435
|
"hashbrown",
|
|
@@ -455,9 +437,9 @@ dependencies = [
|
|
|
455
437
|
|
|
456
438
|
[[package]]
|
|
457
439
|
name = "is_terminal_polyfill"
|
|
458
|
-
version = "1.70.
|
|
440
|
+
version = "1.70.2"
|
|
459
441
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
460
|
-
checksum = "
|
|
442
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
461
443
|
|
|
462
444
|
[[package]]
|
|
463
445
|
name = "itertools"
|
|
@@ -474,6 +456,12 @@ version = "1.0.15"
|
|
|
474
456
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
475
457
|
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
476
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
|
+
|
|
477
465
|
[[package]]
|
|
478
466
|
name = "lazy_static"
|
|
479
467
|
version = "1.5.0"
|
|
@@ -488,18 +476,18 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
488
476
|
|
|
489
477
|
[[package]]
|
|
490
478
|
name = "libc"
|
|
491
|
-
version = "0.2.
|
|
479
|
+
version = "0.2.177"
|
|
492
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
-
checksum = "
|
|
481
|
+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
|
|
494
482
|
|
|
495
483
|
[[package]]
|
|
496
484
|
name = "libloading"
|
|
497
|
-
version = "0.8.
|
|
485
|
+
version = "0.8.9"
|
|
498
486
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
499
|
-
checksum = "
|
|
487
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
500
488
|
dependencies = [
|
|
501
489
|
"cfg-if",
|
|
502
|
-
"windows-
|
|
490
|
+
"windows-link",
|
|
503
491
|
]
|
|
504
492
|
|
|
505
493
|
[[package]]
|
|
@@ -514,17 +502,11 @@ version = "0.11.0"
|
|
|
514
502
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
515
503
|
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
516
504
|
|
|
517
|
-
[[package]]
|
|
518
|
-
name = "log"
|
|
519
|
-
version = "0.4.28"
|
|
520
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
522
|
-
|
|
523
505
|
[[package]]
|
|
524
506
|
name = "magnus"
|
|
525
|
-
version = "0.8.
|
|
507
|
+
version = "0.8.2"
|
|
526
508
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
527
|
-
checksum = "
|
|
509
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
528
510
|
dependencies = [
|
|
529
511
|
"magnus-macros",
|
|
530
512
|
"rb-sys",
|
|
@@ -545,9 +527,9 @@ dependencies = [
|
|
|
545
527
|
|
|
546
528
|
[[package]]
|
|
547
529
|
name = "memchr"
|
|
548
|
-
version = "2.7.
|
|
530
|
+
version = "2.7.6"
|
|
549
531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
550
|
-
checksum = "
|
|
532
|
+
checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
|
|
551
533
|
|
|
552
534
|
[[package]]
|
|
553
535
|
name = "minimal-lexical"
|
|
@@ -562,6 +544,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
562
544
|
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
563
545
|
dependencies = [
|
|
564
546
|
"adler2",
|
|
547
|
+
"simd-adler32",
|
|
565
548
|
]
|
|
566
549
|
|
|
567
550
|
[[package]]
|
|
@@ -588,9 +571,9 @@ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
|
588
571
|
|
|
589
572
|
[[package]]
|
|
590
573
|
name = "once_cell_polyfill"
|
|
591
|
-
version = "1.70.
|
|
574
|
+
version = "1.70.2"
|
|
592
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
-
checksum = "
|
|
576
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
594
577
|
|
|
595
578
|
[[package]]
|
|
596
579
|
name = "onig"
|
|
@@ -598,7 +581,7 @@ version = "6.5.1"
|
|
|
598
581
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
599
582
|
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
|
600
583
|
dependencies = [
|
|
601
|
-
"bitflags
|
|
584
|
+
"bitflags",
|
|
602
585
|
"libc",
|
|
603
586
|
"once_cell",
|
|
604
587
|
"onig_sys",
|
|
@@ -640,9 +623,9 @@ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
|
640
623
|
|
|
641
624
|
[[package]]
|
|
642
625
|
name = "plist"
|
|
643
|
-
version = "1.
|
|
626
|
+
version = "1.8.0"
|
|
644
627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
645
|
-
checksum = "
|
|
628
|
+
checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
|
|
646
629
|
dependencies = [
|
|
647
630
|
"base64",
|
|
648
631
|
"indexmap",
|
|
@@ -669,9 +652,9 @@ dependencies = [
|
|
|
669
652
|
|
|
670
653
|
[[package]]
|
|
671
654
|
name = "proc-macro2"
|
|
672
|
-
version = "1.0.
|
|
655
|
+
version = "1.0.103"
|
|
673
656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
-
checksum = "
|
|
657
|
+
checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
|
|
675
658
|
dependencies = [
|
|
676
659
|
"unicode-ident",
|
|
677
660
|
]
|
|
@@ -687,9 +670,9 @@ dependencies = [
|
|
|
687
670
|
|
|
688
671
|
[[package]]
|
|
689
672
|
name = "quote"
|
|
690
|
-
version = "1.0.
|
|
673
|
+
version = "1.0.41"
|
|
691
674
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
-
checksum = "
|
|
675
|
+
checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
|
|
693
676
|
dependencies = [
|
|
694
677
|
"proc-macro2",
|
|
695
678
|
]
|
|
@@ -732,9 +715,9 @@ checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
|
|
732
715
|
|
|
733
716
|
[[package]]
|
|
734
717
|
name = "regex"
|
|
735
|
-
version = "1.
|
|
718
|
+
version = "1.12.2"
|
|
736
719
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
737
|
-
checksum = "
|
|
720
|
+
checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
|
|
738
721
|
dependencies = [
|
|
739
722
|
"aho-corasick",
|
|
740
723
|
"memchr",
|
|
@@ -744,9 +727,9 @@ dependencies = [
|
|
|
744
727
|
|
|
745
728
|
[[package]]
|
|
746
729
|
name = "regex-automata"
|
|
747
|
-
version = "0.4.
|
|
730
|
+
version = "0.4.13"
|
|
748
731
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
749
|
-
checksum = "
|
|
732
|
+
checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
|
|
750
733
|
dependencies = [
|
|
751
734
|
"aho-corasick",
|
|
752
735
|
"memchr",
|
|
@@ -755,9 +738,9 @@ dependencies = [
|
|
|
755
738
|
|
|
756
739
|
[[package]]
|
|
757
740
|
name = "regex-syntax"
|
|
758
|
-
version = "0.8.
|
|
741
|
+
version = "0.8.8"
|
|
759
742
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
-
checksum = "
|
|
743
|
+
checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
|
|
761
744
|
|
|
762
745
|
[[package]]
|
|
763
746
|
name = "rustc-hash"
|
|
@@ -771,11 +754,11 @@ version = "1.1.2"
|
|
|
771
754
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
772
755
|
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
773
756
|
dependencies = [
|
|
774
|
-
"bitflags
|
|
757
|
+
"bitflags",
|
|
775
758
|
"errno",
|
|
776
759
|
"libc",
|
|
777
760
|
"linux-raw-sys",
|
|
778
|
-
"windows-sys 0.61.
|
|
761
|
+
"windows-sys 0.61.2",
|
|
779
762
|
]
|
|
780
763
|
|
|
781
764
|
[[package]]
|
|
@@ -807,27 +790,27 @@ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
|
807
790
|
|
|
808
791
|
[[package]]
|
|
809
792
|
name = "serde"
|
|
810
|
-
version = "1.0.
|
|
793
|
+
version = "1.0.228"
|
|
811
794
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "
|
|
795
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
813
796
|
dependencies = [
|
|
814
797
|
"serde_core",
|
|
815
798
|
]
|
|
816
799
|
|
|
817
800
|
[[package]]
|
|
818
801
|
name = "serde_core"
|
|
819
|
-
version = "1.0.
|
|
802
|
+
version = "1.0.228"
|
|
820
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
-
checksum = "
|
|
804
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
822
805
|
dependencies = [
|
|
823
806
|
"serde_derive",
|
|
824
807
|
]
|
|
825
808
|
|
|
826
809
|
[[package]]
|
|
827
810
|
name = "serde_derive"
|
|
828
|
-
version = "1.0.
|
|
811
|
+
version = "1.0.228"
|
|
829
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
830
|
-
checksum = "
|
|
813
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
831
814
|
dependencies = [
|
|
832
815
|
"proc-macro2",
|
|
833
816
|
"quote",
|
|
@@ -860,20 +843,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
860
843
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
861
844
|
|
|
862
845
|
[[package]]
|
|
863
|
-
name = "
|
|
864
|
-
version = "
|
|
846
|
+
name = "simd-adler32"
|
|
847
|
+
version = "0.3.7"
|
|
865
848
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
-
checksum = "
|
|
849
|
+
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
|
|
867
850
|
|
|
868
851
|
[[package]]
|
|
869
|
-
name = "
|
|
870
|
-
version = "0.1
|
|
852
|
+
name = "siphasher"
|
|
853
|
+
version = "1.0.1"
|
|
871
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
-
checksum = "
|
|
873
|
-
dependencies = [
|
|
874
|
-
"deunicode",
|
|
875
|
-
"wasm-bindgen",
|
|
876
|
-
]
|
|
855
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
877
856
|
|
|
878
857
|
[[package]]
|
|
879
858
|
name = "strsim"
|
|
@@ -883,9 +862,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
883
862
|
|
|
884
863
|
[[package]]
|
|
885
864
|
name = "syn"
|
|
886
|
-
version = "2.0.
|
|
865
|
+
version = "2.0.108"
|
|
887
866
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
-
checksum = "
|
|
867
|
+
checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
|
|
889
868
|
dependencies = [
|
|
890
869
|
"proc-macro2",
|
|
891
870
|
"quote",
|
|
@@ -894,12 +873,11 @@ dependencies = [
|
|
|
894
873
|
|
|
895
874
|
[[package]]
|
|
896
875
|
name = "syntect"
|
|
897
|
-
version = "5.
|
|
876
|
+
version = "5.3.0"
|
|
898
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
878
|
+
checksum = "656b45c05d95a5704399aeef6bd0ddec7b2b3531b7c9e900abbf7c4d2190c925"
|
|
900
879
|
dependencies = [
|
|
901
880
|
"bincode",
|
|
902
|
-
"bitflags 1.3.2",
|
|
903
881
|
"fancy-regex",
|
|
904
882
|
"flate2",
|
|
905
883
|
"fnv",
|
|
@@ -927,18 +905,18 @@ dependencies = [
|
|
|
927
905
|
|
|
928
906
|
[[package]]
|
|
929
907
|
name = "thiserror"
|
|
930
|
-
version = "
|
|
908
|
+
version = "2.0.17"
|
|
931
909
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
932
|
-
checksum = "
|
|
910
|
+
checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
|
|
933
911
|
dependencies = [
|
|
934
912
|
"thiserror-impl",
|
|
935
913
|
]
|
|
936
914
|
|
|
937
915
|
[[package]]
|
|
938
916
|
name = "thiserror-impl"
|
|
939
|
-
version = "
|
|
917
|
+
version = "2.0.17"
|
|
940
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
-
checksum = "
|
|
919
|
+
checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
|
|
942
920
|
dependencies = [
|
|
943
921
|
"proc-macro2",
|
|
944
922
|
"quote",
|
|
@@ -947,11 +925,12 @@ dependencies = [
|
|
|
947
925
|
|
|
948
926
|
[[package]]
|
|
949
927
|
name = "time"
|
|
950
|
-
version = "0.3.
|
|
928
|
+
version = "0.3.44"
|
|
951
929
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
952
|
-
checksum = "
|
|
930
|
+
checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
|
|
953
931
|
dependencies = [
|
|
954
932
|
"deranged",
|
|
933
|
+
"itoa",
|
|
955
934
|
"num-conv",
|
|
956
935
|
"powerfmt",
|
|
957
936
|
"serde",
|
|
@@ -998,9 +977,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
|
998
977
|
|
|
999
978
|
[[package]]
|
|
1000
979
|
name = "unicode-ident"
|
|
1001
|
-
version = "1.0.
|
|
980
|
+
version = "1.0.20"
|
|
1002
981
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
-
checksum = "
|
|
982
|
+
checksum = "462eeb75aeb73aea900253ce739c8e18a67423fadf006037cd3ff27e82748a06"
|
|
1004
983
|
|
|
1005
984
|
[[package]]
|
|
1006
985
|
name = "unicode-normalization"
|
|
@@ -1033,85 +1012,20 @@ dependencies = [
|
|
|
1033
1012
|
"winapi-util",
|
|
1034
1013
|
]
|
|
1035
1014
|
|
|
1036
|
-
[[package]]
|
|
1037
|
-
name = "wasm-bindgen"
|
|
1038
|
-
version = "0.2.101"
|
|
1039
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1040
|
-
checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b"
|
|
1041
|
-
dependencies = [
|
|
1042
|
-
"cfg-if",
|
|
1043
|
-
"once_cell",
|
|
1044
|
-
"rustversion",
|
|
1045
|
-
"wasm-bindgen-macro",
|
|
1046
|
-
"wasm-bindgen-shared",
|
|
1047
|
-
]
|
|
1048
|
-
|
|
1049
|
-
[[package]]
|
|
1050
|
-
name = "wasm-bindgen-backend"
|
|
1051
|
-
version = "0.2.101"
|
|
1052
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1053
|
-
checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb"
|
|
1054
|
-
dependencies = [
|
|
1055
|
-
"bumpalo",
|
|
1056
|
-
"log",
|
|
1057
|
-
"proc-macro2",
|
|
1058
|
-
"quote",
|
|
1059
|
-
"syn",
|
|
1060
|
-
"wasm-bindgen-shared",
|
|
1061
|
-
]
|
|
1062
|
-
|
|
1063
|
-
[[package]]
|
|
1064
|
-
name = "wasm-bindgen-macro"
|
|
1065
|
-
version = "0.2.101"
|
|
1066
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1067
|
-
checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d"
|
|
1068
|
-
dependencies = [
|
|
1069
|
-
"quote",
|
|
1070
|
-
"wasm-bindgen-macro-support",
|
|
1071
|
-
]
|
|
1072
|
-
|
|
1073
|
-
[[package]]
|
|
1074
|
-
name = "wasm-bindgen-macro-support"
|
|
1075
|
-
version = "0.2.101"
|
|
1076
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
-
checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa"
|
|
1078
|
-
dependencies = [
|
|
1079
|
-
"proc-macro2",
|
|
1080
|
-
"quote",
|
|
1081
|
-
"syn",
|
|
1082
|
-
"wasm-bindgen-backend",
|
|
1083
|
-
"wasm-bindgen-shared",
|
|
1084
|
-
]
|
|
1085
|
-
|
|
1086
|
-
[[package]]
|
|
1087
|
-
name = "wasm-bindgen-shared"
|
|
1088
|
-
version = "0.2.101"
|
|
1089
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1090
|
-
checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1"
|
|
1091
|
-
dependencies = [
|
|
1092
|
-
"unicode-ident",
|
|
1093
|
-
]
|
|
1094
|
-
|
|
1095
1015
|
[[package]]
|
|
1096
1016
|
name = "winapi-util"
|
|
1097
1017
|
version = "0.1.11"
|
|
1098
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
1019
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1100
1020
|
dependencies = [
|
|
1101
|
-
"windows-sys 0.61.
|
|
1021
|
+
"windows-sys 0.61.2",
|
|
1102
1022
|
]
|
|
1103
1023
|
|
|
1104
1024
|
[[package]]
|
|
1105
1025
|
name = "windows-link"
|
|
1106
|
-
version = "0.1
|
|
1107
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
-
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
1109
|
-
|
|
1110
|
-
[[package]]
|
|
1111
|
-
name = "windows-link"
|
|
1112
|
-
version = "0.2.0"
|
|
1026
|
+
version = "0.2.1"
|
|
1113
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1114
|
-
checksum = "
|
|
1028
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1115
1029
|
|
|
1116
1030
|
[[package]]
|
|
1117
1031
|
name = "windows-sys"
|
|
@@ -1124,20 +1038,20 @@ dependencies = [
|
|
|
1124
1038
|
|
|
1125
1039
|
[[package]]
|
|
1126
1040
|
name = "windows-sys"
|
|
1127
|
-
version = "0.61.
|
|
1041
|
+
version = "0.61.2"
|
|
1128
1042
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
-
checksum = "
|
|
1043
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1130
1044
|
dependencies = [
|
|
1131
|
-
"windows-link
|
|
1045
|
+
"windows-link",
|
|
1132
1046
|
]
|
|
1133
1047
|
|
|
1134
1048
|
[[package]]
|
|
1135
1049
|
name = "windows-targets"
|
|
1136
|
-
version = "0.53.
|
|
1050
|
+
version = "0.53.5"
|
|
1137
1051
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "
|
|
1052
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1139
1053
|
dependencies = [
|
|
1140
|
-
"windows-link
|
|
1054
|
+
"windows-link",
|
|
1141
1055
|
"windows_aarch64_gnullvm",
|
|
1142
1056
|
"windows_aarch64_msvc",
|
|
1143
1057
|
"windows_i686_gnu",
|
|
@@ -1150,51 +1064,51 @@ dependencies = [
|
|
|
1150
1064
|
|
|
1151
1065
|
[[package]]
|
|
1152
1066
|
name = "windows_aarch64_gnullvm"
|
|
1153
|
-
version = "0.53.
|
|
1067
|
+
version = "0.53.1"
|
|
1154
1068
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1155
|
-
checksum = "
|
|
1069
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1156
1070
|
|
|
1157
1071
|
[[package]]
|
|
1158
1072
|
name = "windows_aarch64_msvc"
|
|
1159
|
-
version = "0.53.
|
|
1073
|
+
version = "0.53.1"
|
|
1160
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
-
checksum = "
|
|
1075
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1162
1076
|
|
|
1163
1077
|
[[package]]
|
|
1164
1078
|
name = "windows_i686_gnu"
|
|
1165
|
-
version = "0.53.
|
|
1079
|
+
version = "0.53.1"
|
|
1166
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
-
checksum = "
|
|
1081
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1168
1082
|
|
|
1169
1083
|
[[package]]
|
|
1170
1084
|
name = "windows_i686_gnullvm"
|
|
1171
|
-
version = "0.53.
|
|
1085
|
+
version = "0.53.1"
|
|
1172
1086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
-
checksum = "
|
|
1087
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1174
1088
|
|
|
1175
1089
|
[[package]]
|
|
1176
1090
|
name = "windows_i686_msvc"
|
|
1177
|
-
version = "0.53.
|
|
1091
|
+
version = "0.53.1"
|
|
1178
1092
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
-
checksum = "
|
|
1093
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1180
1094
|
|
|
1181
1095
|
[[package]]
|
|
1182
1096
|
name = "windows_x86_64_gnu"
|
|
1183
|
-
version = "0.53.
|
|
1097
|
+
version = "0.53.1"
|
|
1184
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
-
checksum = "
|
|
1099
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1186
1100
|
|
|
1187
1101
|
[[package]]
|
|
1188
1102
|
name = "windows_x86_64_gnullvm"
|
|
1189
|
-
version = "0.53.
|
|
1103
|
+
version = "0.53.1"
|
|
1190
1104
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
-
checksum = "
|
|
1105
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1192
1106
|
|
|
1193
1107
|
[[package]]
|
|
1194
1108
|
name = "windows_x86_64_msvc"
|
|
1195
|
-
version = "0.53.
|
|
1109
|
+
version = "0.53.1"
|
|
1196
1110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1111
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1198
1112
|
|
|
1199
1113
|
[[package]]
|
|
1200
1114
|
name = "xdg"
|