gitlab-glfm-markdown 0.0.31 → 0.0.32
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 +178 -108
- data/README.md +1 -1
- data/ext/glfm_markdown/Cargo.toml +2 -2
- data/lib/glfm_markdown/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8783e3abd91c5a60248453cd6adfd4fe025a6be5fcd4288708117cb91fe57628
|
4
|
+
data.tar.gz: cb1a1880c09f4aeae9849682f5452c4aa01cf7d751ab880372b13ebd92efc8f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f2378222831599e70ef3e4b4357ff5b95bb088218de7a0ce7a59ba899a3056f75fa10b13b3e66473ce7e0bcd8df3d8d31dee21074cc43b1574c58a478890f3d4
|
7
|
+
data.tar.gz: 3a196f9875eae6c768eb0a6d9f90ea46399c2d53aa3b0f468784e1564228828b1c48e48d5ed5630b199ba03b0713ec98c546e6267ab9760548512bdcdf8128f0
|
data/Cargo.lock
CHANGED
@@ -4,9 +4,9 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "adler2"
|
7
|
-
version = "2.0.
|
7
|
+
version = "2.0.1"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
10
10
|
|
11
11
|
[[package]]
|
12
12
|
name = "aho-corasick"
|
@@ -19,9 +19,9 @@ dependencies = [
|
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "anstream"
|
22
|
-
version = "0.6.
|
22
|
+
version = "0.6.19"
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
24
|
+
checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
|
25
25
|
dependencies = [
|
26
26
|
"anstyle",
|
27
27
|
"anstyle-parse",
|
@@ -34,36 +34,36 @@ dependencies = [
|
|
34
34
|
|
35
35
|
[[package]]
|
36
36
|
name = "anstyle"
|
37
|
-
version = "1.0.
|
37
|
+
version = "1.0.11"
|
38
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
39
|
-
checksum = "
|
39
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
40
40
|
|
41
41
|
[[package]]
|
42
42
|
name = "anstyle-parse"
|
43
|
-
version = "0.2.
|
43
|
+
version = "0.2.7"
|
44
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
45
|
-
checksum = "
|
45
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
46
46
|
dependencies = [
|
47
47
|
"utf8parse",
|
48
48
|
]
|
49
49
|
|
50
50
|
[[package]]
|
51
51
|
name = "anstyle-query"
|
52
|
-
version = "1.1.
|
52
|
+
version = "1.1.3"
|
53
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
54
|
-
checksum = "
|
54
|
+
checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
|
55
55
|
dependencies = [
|
56
56
|
"windows-sys",
|
57
57
|
]
|
58
58
|
|
59
59
|
[[package]]
|
60
60
|
name = "anstyle-wincon"
|
61
|
-
version = "3.0.
|
61
|
+
version = "3.0.9"
|
62
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
63
|
-
checksum = "
|
63
|
+
checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
|
64
64
|
dependencies = [
|
65
65
|
"anstyle",
|
66
|
-
"
|
66
|
+
"once_cell_polyfill",
|
67
67
|
"windows-sys",
|
68
68
|
]
|
69
69
|
|
@@ -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 2.
|
91
|
+
"bitflags 2.9.1",
|
92
92
|
"cexpr",
|
93
93
|
"clang-sys",
|
94
94
|
"itertools",
|
@@ -125,15 +125,15 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
125
125
|
|
126
126
|
[[package]]
|
127
127
|
name = "bitflags"
|
128
|
-
version = "2.
|
128
|
+
version = "2.9.1"
|
129
129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
130
|
-
checksum = "
|
130
|
+
checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
|
131
131
|
|
132
132
|
[[package]]
|
133
133
|
name = "bumpalo"
|
134
|
-
version = "3.
|
134
|
+
version = "3.19.0"
|
135
135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
136
|
-
checksum = "
|
136
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
137
137
|
|
138
138
|
[[package]]
|
139
139
|
name = "caseless"
|
@@ -146,9 +146,9 @@ dependencies = [
|
|
146
146
|
|
147
147
|
[[package]]
|
148
148
|
name = "cc"
|
149
|
-
version = "1.2.
|
149
|
+
version = "1.2.27"
|
150
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
151
|
-
checksum = "
|
151
|
+
checksum = "d487aa071b5f64da6f19a3e848e3578944b726ee5a4854b82172f02aa876bfdc"
|
152
152
|
dependencies = [
|
153
153
|
"shlex",
|
154
154
|
]
|
@@ -164,9 +164,9 @@ dependencies = [
|
|
164
164
|
|
165
165
|
[[package]]
|
166
166
|
name = "cfg-if"
|
167
|
-
version = "1.0.
|
167
|
+
version = "1.0.1"
|
168
168
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
169
|
-
checksum = "
|
169
|
+
checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
|
170
170
|
|
171
171
|
[[package]]
|
172
172
|
name = "clang-sys"
|
@@ -221,15 +221,15 @@ checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
|
|
221
221
|
|
222
222
|
[[package]]
|
223
223
|
name = "colorchoice"
|
224
|
-
version = "1.0.
|
224
|
+
version = "1.0.4"
|
225
225
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
226
|
-
checksum = "
|
226
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
227
227
|
|
228
228
|
[[package]]
|
229
229
|
name = "comrak"
|
230
|
-
version = "0.39.
|
230
|
+
version = "0.39.1"
|
231
231
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
232
|
-
checksum = "
|
232
|
+
checksum = "2fefab951771fc3beeed0773ce66a4f7b706273fc6c4c95b08dd1615744abcf5"
|
233
233
|
dependencies = [
|
234
234
|
"caseless",
|
235
235
|
"emojis",
|
@@ -252,24 +252,24 @@ dependencies = [
|
|
252
252
|
|
253
253
|
[[package]]
|
254
254
|
name = "deranged"
|
255
|
-
version = "0.
|
255
|
+
version = "0.4.0"
|
256
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
257
|
-
checksum = "
|
257
|
+
checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
|
258
258
|
dependencies = [
|
259
259
|
"powerfmt",
|
260
260
|
]
|
261
261
|
|
262
262
|
[[package]]
|
263
263
|
name = "deunicode"
|
264
|
-
version = "1.6.
|
264
|
+
version = "1.6.2"
|
265
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
266
|
-
checksum = "
|
266
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
267
267
|
|
268
268
|
[[package]]
|
269
269
|
name = "either"
|
270
|
-
version = "1.
|
270
|
+
version = "1.15.0"
|
271
271
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
-
checksum = "
|
272
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
273
273
|
|
274
274
|
[[package]]
|
275
275
|
name = "emojis"
|
@@ -288,9 +288,9 @@ checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
|
288
288
|
|
289
289
|
[[package]]
|
290
290
|
name = "equivalent"
|
291
|
-
version = "1.0.
|
291
|
+
version = "1.0.2"
|
292
292
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
293
|
-
checksum = "
|
293
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
294
294
|
|
295
295
|
[[package]]
|
296
296
|
name = "fancy-regex"
|
@@ -304,9 +304,9 @@ dependencies = [
|
|
304
304
|
|
305
305
|
[[package]]
|
306
306
|
name = "flate2"
|
307
|
-
version = "1.
|
307
|
+
version = "1.1.2"
|
308
308
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
309
|
-
checksum = "
|
309
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
310
310
|
dependencies = [
|
311
311
|
"crc32fast",
|
312
312
|
"miniz_oxide",
|
@@ -320,7 +320,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
320
320
|
|
321
321
|
[[package]]
|
322
322
|
name = "glfm_markdown"
|
323
|
-
version = "0.0.
|
323
|
+
version = "0.0.32"
|
324
324
|
dependencies = [
|
325
325
|
"clap",
|
326
326
|
"comrak",
|
@@ -338,9 +338,9 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
338
338
|
|
339
339
|
[[package]]
|
340
340
|
name = "hashbrown"
|
341
|
-
version = "0.15.
|
341
|
+
version = "0.15.4"
|
342
342
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
-
checksum = "
|
343
|
+
checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
|
344
344
|
|
345
345
|
[[package]]
|
346
346
|
name = "heck"
|
@@ -350,9 +350,9 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
350
350
|
|
351
351
|
[[package]]
|
352
352
|
name = "indexmap"
|
353
|
-
version = "2.
|
353
|
+
version = "2.10.0"
|
354
354
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
355
|
-
checksum = "
|
355
|
+
checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
|
356
356
|
dependencies = [
|
357
357
|
"equivalent",
|
358
358
|
"hashbrown",
|
@@ -375,9 +375,9 @@ dependencies = [
|
|
375
375
|
|
376
376
|
[[package]]
|
377
377
|
name = "itoa"
|
378
|
-
version = "1.0.
|
378
|
+
version = "1.0.15"
|
379
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
380
|
-
checksum = "
|
380
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
381
381
|
|
382
382
|
[[package]]
|
383
383
|
name = "lazy_static"
|
@@ -393,18 +393,18 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
393
393
|
|
394
394
|
[[package]]
|
395
395
|
name = "libc"
|
396
|
-
version = "0.2.
|
396
|
+
version = "0.2.174"
|
397
397
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
398
|
-
checksum = "
|
398
|
+
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
|
399
399
|
|
400
400
|
[[package]]
|
401
401
|
name = "libloading"
|
402
|
-
version = "0.8.
|
402
|
+
version = "0.8.8"
|
403
403
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
404
|
-
checksum = "
|
404
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
405
405
|
dependencies = [
|
406
406
|
"cfg-if",
|
407
|
-
"windows-targets",
|
407
|
+
"windows-targets 0.53.2",
|
408
408
|
]
|
409
409
|
|
410
410
|
[[package]]
|
@@ -415,9 +415,9 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
415
415
|
|
416
416
|
[[package]]
|
417
417
|
name = "log"
|
418
|
-
version = "0.4.
|
418
|
+
version = "0.4.27"
|
419
419
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
420
|
-
checksum = "
|
420
|
+
checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
|
421
421
|
|
422
422
|
[[package]]
|
423
423
|
name = "magnus"
|
@@ -444,9 +444,9 @@ dependencies = [
|
|
444
444
|
|
445
445
|
[[package]]
|
446
446
|
name = "memchr"
|
447
|
-
version = "2.7.
|
447
|
+
version = "2.7.5"
|
448
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
-
checksum = "
|
449
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
450
450
|
|
451
451
|
[[package]]
|
452
452
|
name = "minimal-lexical"
|
@@ -456,9 +456,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
456
456
|
|
457
457
|
[[package]]
|
458
458
|
name = "miniz_oxide"
|
459
|
-
version = "0.8.
|
459
|
+
version = "0.8.9"
|
460
460
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
461
|
-
checksum = "
|
461
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
462
462
|
dependencies = [
|
463
463
|
"adler2",
|
464
464
|
]
|
@@ -481,17 +481,23 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
481
481
|
|
482
482
|
[[package]]
|
483
483
|
name = "once_cell"
|
484
|
-
version = "1.
|
484
|
+
version = "1.21.3"
|
485
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
486
|
-
checksum = "
|
486
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
487
|
+
|
488
|
+
[[package]]
|
489
|
+
name = "once_cell_polyfill"
|
490
|
+
version = "1.70.1"
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
487
493
|
|
488
494
|
[[package]]
|
489
495
|
name = "onig"
|
490
|
-
version = "6.
|
496
|
+
version = "6.5.1"
|
491
497
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
492
|
-
checksum = "
|
498
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
493
499
|
dependencies = [
|
494
|
-
"bitflags
|
500
|
+
"bitflags 2.9.1",
|
495
501
|
"libc",
|
496
502
|
"once_cell",
|
497
503
|
"onig_sys",
|
@@ -499,9 +505,9 @@ dependencies = [
|
|
499
505
|
|
500
506
|
[[package]]
|
501
507
|
name = "onig_sys"
|
502
|
-
version = "69.
|
508
|
+
version = "69.9.1"
|
503
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
504
|
-
checksum = "
|
510
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
505
511
|
dependencies = [
|
506
512
|
"cc",
|
507
513
|
"pkg-config",
|
@@ -527,15 +533,15 @@ dependencies = [
|
|
527
533
|
|
528
534
|
[[package]]
|
529
535
|
name = "pkg-config"
|
530
|
-
version = "0.3.
|
536
|
+
version = "0.3.32"
|
531
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
532
|
-
checksum = "
|
538
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
533
539
|
|
534
540
|
[[package]]
|
535
541
|
name = "plist"
|
536
|
-
version = "1.7.
|
542
|
+
version = "1.7.2"
|
537
543
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
538
|
-
checksum = "
|
544
|
+
checksum = "3d77244ce2d584cd84f6a15f86195b8c9b2a0dfbfd817c09e0464244091a58ed"
|
539
545
|
dependencies = [
|
540
546
|
"base64",
|
541
547
|
"indexmap",
|
@@ -552,45 +558,45 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
552
558
|
|
553
559
|
[[package]]
|
554
560
|
name = "proc-macro2"
|
555
|
-
version = "1.0.
|
561
|
+
version = "1.0.95"
|
556
562
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
557
|
-
checksum = "
|
563
|
+
checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
|
558
564
|
dependencies = [
|
559
565
|
"unicode-ident",
|
560
566
|
]
|
561
567
|
|
562
568
|
[[package]]
|
563
569
|
name = "quick-xml"
|
564
|
-
version = "0.
|
570
|
+
version = "0.37.5"
|
565
571
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
566
|
-
checksum = "
|
572
|
+
checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
|
567
573
|
dependencies = [
|
568
574
|
"memchr",
|
569
575
|
]
|
570
576
|
|
571
577
|
[[package]]
|
572
578
|
name = "quote"
|
573
|
-
version = "1.0.
|
579
|
+
version = "1.0.40"
|
574
580
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
575
|
-
checksum = "
|
581
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
576
582
|
dependencies = [
|
577
583
|
"proc-macro2",
|
578
584
|
]
|
579
585
|
|
580
586
|
[[package]]
|
581
587
|
name = "rb-sys"
|
582
|
-
version = "0.9.
|
588
|
+
version = "0.9.116"
|
583
589
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
584
|
-
checksum = "
|
590
|
+
checksum = "7059846f68396df83155779c75336ca24567741cb95256e6308c9fcc370e8dad"
|
585
591
|
dependencies = [
|
586
592
|
"rb-sys-build",
|
587
593
|
]
|
588
594
|
|
589
595
|
[[package]]
|
590
596
|
name = "rb-sys-build"
|
591
|
-
version = "0.9.
|
597
|
+
version = "0.9.116"
|
592
598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
593
|
-
checksum = "
|
599
|
+
checksum = "ac217510df41b9ffc041573e68d7a02aaff770c49943c7494441c4b224b0ecd0"
|
594
600
|
dependencies = [
|
595
601
|
"bindgen",
|
596
602
|
"lazy_static",
|
@@ -644,15 +650,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
644
650
|
|
645
651
|
[[package]]
|
646
652
|
name = "rustversion"
|
647
|
-
version = "1.0.
|
653
|
+
version = "1.0.21"
|
648
654
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
649
|
-
checksum = "
|
655
|
+
checksum = "8a0d197bd2c9dc6e53b84da9556a69ba4cdfab8619eb41a8bd1cc2027a0f6b1d"
|
650
656
|
|
651
657
|
[[package]]
|
652
658
|
name = "ryu"
|
653
|
-
version = "1.0.
|
659
|
+
version = "1.0.20"
|
654
660
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
-
checksum = "
|
661
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
656
662
|
|
657
663
|
[[package]]
|
658
664
|
name = "same-file"
|
@@ -665,24 +671,24 @@ dependencies = [
|
|
665
671
|
|
666
672
|
[[package]]
|
667
673
|
name = "seq-macro"
|
668
|
-
version = "0.3.
|
674
|
+
version = "0.3.6"
|
669
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
670
|
-
checksum = "
|
676
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
671
677
|
|
672
678
|
[[package]]
|
673
679
|
name = "serde"
|
674
|
-
version = "1.0.
|
680
|
+
version = "1.0.219"
|
675
681
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
676
|
-
checksum = "
|
682
|
+
checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
|
677
683
|
dependencies = [
|
678
684
|
"serde_derive",
|
679
685
|
]
|
680
686
|
|
681
687
|
[[package]]
|
682
688
|
name = "serde_derive"
|
683
|
-
version = "1.0.
|
689
|
+
version = "1.0.219"
|
684
690
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
685
|
-
checksum = "
|
691
|
+
checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
|
686
692
|
dependencies = [
|
687
693
|
"proc-macro2",
|
688
694
|
"quote",
|
@@ -691,9 +697,9 @@ dependencies = [
|
|
691
697
|
|
692
698
|
[[package]]
|
693
699
|
name = "serde_json"
|
694
|
-
version = "1.0.
|
700
|
+
version = "1.0.140"
|
695
701
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
696
|
-
checksum = "
|
702
|
+
checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
|
697
703
|
dependencies = [
|
698
704
|
"itoa",
|
699
705
|
"memchr",
|
@@ -737,9 +743,9 @@ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
737
743
|
|
738
744
|
[[package]]
|
739
745
|
name = "syn"
|
740
|
-
version = "2.0.
|
746
|
+
version = "2.0.104"
|
741
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
|
-
checksum = "
|
748
|
+
checksum = "17b6f705963418cdb9927482fa304bc562ece2fdd4f616084c50b7023b435a40"
|
743
749
|
dependencies = [
|
744
750
|
"proc-macro2",
|
745
751
|
"quote",
|
@@ -791,9 +797,9 @@ dependencies = [
|
|
791
797
|
|
792
798
|
[[package]]
|
793
799
|
name = "time"
|
794
|
-
version = "0.3.
|
800
|
+
version = "0.3.41"
|
795
801
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
796
|
-
checksum = "
|
802
|
+
checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
|
797
803
|
dependencies = [
|
798
804
|
"deranged",
|
799
805
|
"itoa",
|
@@ -806,15 +812,15 @@ dependencies = [
|
|
806
812
|
|
807
813
|
[[package]]
|
808
814
|
name = "time-core"
|
809
|
-
version = "0.1.
|
815
|
+
version = "0.1.4"
|
810
816
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
811
|
-
checksum = "
|
817
|
+
checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
|
812
818
|
|
813
819
|
[[package]]
|
814
820
|
name = "time-macros"
|
815
|
-
version = "0.2.
|
821
|
+
version = "0.2.22"
|
816
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
817
|
-
checksum = "
|
823
|
+
checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
|
818
824
|
dependencies = [
|
819
825
|
"num-conv",
|
820
826
|
"time-core",
|
@@ -822,9 +828,9 @@ dependencies = [
|
|
822
828
|
|
823
829
|
[[package]]
|
824
830
|
name = "tinyvec"
|
825
|
-
version = "1.
|
831
|
+
version = "1.9.0"
|
826
832
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
827
|
-
checksum = "
|
833
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
828
834
|
dependencies = [
|
829
835
|
"tinyvec_macros",
|
830
836
|
]
|
@@ -843,9 +849,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
843
849
|
|
844
850
|
[[package]]
|
845
851
|
name = "unicode-ident"
|
846
|
-
version = "1.0.
|
852
|
+
version = "1.0.18"
|
847
853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
848
|
-
checksum = "
|
854
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
849
855
|
|
850
856
|
[[package]]
|
851
857
|
name = "unicode-normalization"
|
@@ -951,7 +957,7 @@ version = "0.59.0"
|
|
951
957
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
952
958
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
953
959
|
dependencies = [
|
954
|
-
"windows-targets",
|
960
|
+
"windows-targets 0.52.6",
|
955
961
|
]
|
956
962
|
|
957
963
|
[[package]]
|
@@ -960,14 +966,30 @@ version = "0.52.6"
|
|
960
966
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
961
967
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
962
968
|
dependencies = [
|
963
|
-
"windows_aarch64_gnullvm",
|
964
|
-
"windows_aarch64_msvc",
|
965
|
-
"windows_i686_gnu",
|
966
|
-
"windows_i686_gnullvm",
|
967
|
-
"windows_i686_msvc",
|
968
|
-
"windows_x86_64_gnu",
|
969
|
-
"windows_x86_64_gnullvm",
|
970
|
-
"windows_x86_64_msvc",
|
969
|
+
"windows_aarch64_gnullvm 0.52.6",
|
970
|
+
"windows_aarch64_msvc 0.52.6",
|
971
|
+
"windows_i686_gnu 0.52.6",
|
972
|
+
"windows_i686_gnullvm 0.52.6",
|
973
|
+
"windows_i686_msvc 0.52.6",
|
974
|
+
"windows_x86_64_gnu 0.52.6",
|
975
|
+
"windows_x86_64_gnullvm 0.52.6",
|
976
|
+
"windows_x86_64_msvc 0.52.6",
|
977
|
+
]
|
978
|
+
|
979
|
+
[[package]]
|
980
|
+
name = "windows-targets"
|
981
|
+
version = "0.53.2"
|
982
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
983
|
+
checksum = "c66f69fcc9ce11da9966ddb31a40968cad001c5bedeb5c2b82ede4253ab48aef"
|
984
|
+
dependencies = [
|
985
|
+
"windows_aarch64_gnullvm 0.53.0",
|
986
|
+
"windows_aarch64_msvc 0.53.0",
|
987
|
+
"windows_i686_gnu 0.53.0",
|
988
|
+
"windows_i686_gnullvm 0.53.0",
|
989
|
+
"windows_i686_msvc 0.53.0",
|
990
|
+
"windows_x86_64_gnu 0.53.0",
|
991
|
+
"windows_x86_64_gnullvm 0.53.0",
|
992
|
+
"windows_x86_64_msvc 0.53.0",
|
971
993
|
]
|
972
994
|
|
973
995
|
[[package]]
|
@@ -976,48 +998,96 @@ version = "0.52.6"
|
|
976
998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
977
999
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
978
1000
|
|
1001
|
+
[[package]]
|
1002
|
+
name = "windows_aarch64_gnullvm"
|
1003
|
+
version = "0.53.0"
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1005
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
1006
|
+
|
979
1007
|
[[package]]
|
980
1008
|
name = "windows_aarch64_msvc"
|
981
1009
|
version = "0.52.6"
|
982
1010
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
983
1011
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
984
1012
|
|
1013
|
+
[[package]]
|
1014
|
+
name = "windows_aarch64_msvc"
|
1015
|
+
version = "0.53.0"
|
1016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1017
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
1018
|
+
|
985
1019
|
[[package]]
|
986
1020
|
name = "windows_i686_gnu"
|
987
1021
|
version = "0.52.6"
|
988
1022
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
989
1023
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
990
1024
|
|
1025
|
+
[[package]]
|
1026
|
+
name = "windows_i686_gnu"
|
1027
|
+
version = "0.53.0"
|
1028
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
1030
|
+
|
991
1031
|
[[package]]
|
992
1032
|
name = "windows_i686_gnullvm"
|
993
1033
|
version = "0.52.6"
|
994
1034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
995
1035
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
996
1036
|
|
1037
|
+
[[package]]
|
1038
|
+
name = "windows_i686_gnullvm"
|
1039
|
+
version = "0.53.0"
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1041
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
1042
|
+
|
997
1043
|
[[package]]
|
998
1044
|
name = "windows_i686_msvc"
|
999
1045
|
version = "0.52.6"
|
1000
1046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1001
1047
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1002
1048
|
|
1049
|
+
[[package]]
|
1050
|
+
name = "windows_i686_msvc"
|
1051
|
+
version = "0.53.0"
|
1052
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1053
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
1054
|
+
|
1003
1055
|
[[package]]
|
1004
1056
|
name = "windows_x86_64_gnu"
|
1005
1057
|
version = "0.52.6"
|
1006
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1007
1059
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1008
1060
|
|
1061
|
+
[[package]]
|
1062
|
+
name = "windows_x86_64_gnu"
|
1063
|
+
version = "0.53.0"
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1065
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
1066
|
+
|
1009
1067
|
[[package]]
|
1010
1068
|
name = "windows_x86_64_gnullvm"
|
1011
1069
|
version = "0.52.6"
|
1012
1070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1013
1071
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1014
1072
|
|
1073
|
+
[[package]]
|
1074
|
+
name = "windows_x86_64_gnullvm"
|
1075
|
+
version = "0.53.0"
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1077
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
1078
|
+
|
1015
1079
|
[[package]]
|
1016
1080
|
name = "windows_x86_64_msvc"
|
1017
1081
|
version = "0.52.6"
|
1018
1082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1019
1083
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1020
1084
|
|
1085
|
+
[[package]]
|
1086
|
+
name = "windows_x86_64_msvc"
|
1087
|
+
version = "0.53.0"
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1089
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
1090
|
+
|
1021
1091
|
[[package]]
|
1022
1092
|
name = "yaml-rust"
|
1023
1093
|
version = "0.4.5"
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Implements GLFM (as used by GitLab) using the Rust-based markdown parser [comrak](https://github.com/kivikakk/comrak)
|
7
7
|
and providing a Ruby interface.\
|
8
|
-
_Currently using `comrak 0.39.
|
8
|
+
_Currently using `comrak 0.39.1`_.
|
9
9
|
|
10
10
|
This project is still in constant flux, so interfaces and functionality can change at any time.
|
11
11
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[package]
|
2
2
|
name = "glfm_markdown"
|
3
|
-
version = "0.0.
|
3
|
+
version = "0.0.32"
|
4
4
|
edition = "2021"
|
5
5
|
authors = ["digitalmoksha <bwalker@gitlab.com>"]
|
6
6
|
description = "GitLab Flavored Markdown parser and formatter. 100% CommonMark-compatible. Experimental."
|
@@ -15,7 +15,7 @@ required-features = ["cli"]
|
|
15
15
|
|
16
16
|
[dependencies]
|
17
17
|
clap = { version = "=4.4.18", optional = true, features = ["derive", "string"] }
|
18
|
-
comrak = { version = "0.39.
|
18
|
+
comrak = { version = "0.39.1", default-features = false, features = ["shortcodes"] }
|
19
19
|
magnus = "0.6.2"
|
20
20
|
rb-sys = { version = "0.9.86", default-features = false, features = ["stable-api-compiled-fallback"] }
|
21
21
|
regex = "1.11.1"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: gitlab-glfm-markdown
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.32
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brett Walker
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rb_sys
|