gitlab-glfm-markdown 0.0.30-arm64-darwin → 0.0.31-arm64-darwin

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60f9adeb9852edf7c5042ed83696840933ccb541598f1623b2e3efc888b0b7f4
4
- data.tar.gz: efc810258ab4d3345cd1d7a482654ba51acfb1d93b50239559a2dc97d452be42
3
+ metadata.gz: a2f864c4a7fcb368f0d6bfbc545531433f50939ae7fc194d05afd262032c3b04
4
+ data.tar.gz: cfe4ba2255c4433a9c6c5c2d803774d4d5d20f66b07938f4c1c7761c7ff933be
5
5
  SHA512:
6
- metadata.gz: 217ea6073f1d992837120b18fa7905fd87018b417deaa6a3b211d58b32895f20dbac3b4b4a6e0723163df2da05afc19554033439a693ddc12cf1f9d13f30a6ae
7
- data.tar.gz: d6a9661c2f0af7d9532e2cff3f77c6f1b30cf83cb9fe143ddccbc0afeb08388e8018d19ed6c72bce37199808b108cc492897f5ab97440da94c3abb89ff01cf0f
6
+ metadata.gz: bbfbb7e8f41d956d047ce39edc83fc711528c81788e7712c81e73ef0aba3549dacb58367964d92f5b2ea8090b9fe2513f631c9a56ea583a7aa68574a194cfbeb
7
+ data.tar.gz: 750450930c558732eaad371a632e0dffb8acefe131138621888bfad840a35fcac4fbb6119833189ef3da9227d082654e8d84e5f4cbba96fd3499d0c1c12c8a7b
data/Cargo.lock CHANGED
@@ -320,7 +320,7 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
320
320
 
321
321
  [[package]]
322
322
  name = "glfm_markdown"
323
- version = "0.0.30"
323
+ version = "0.0.31"
324
324
  dependencies = [
325
325
  "clap",
326
326
  "comrak",
@@ -0,0 +1,1028 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.0"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.3"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "0.6.18"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.10"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "0.2.6"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.2"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
55
+ dependencies = [
56
+ "windows-sys",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.7"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell",
67
+ "windows-sys",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "base64"
72
+ version = "0.22.1"
73
+ source = "registry+https://github.com/rust-lang/crates.io-index"
74
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
75
+
76
+ [[package]]
77
+ name = "bincode"
78
+ version = "1.3.3"
79
+ source = "registry+https://github.com/rust-lang/crates.io-index"
80
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
81
+ dependencies = [
82
+ "serde",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "bindgen"
87
+ version = "0.69.5"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
90
+ dependencies = [
91
+ "bitflags 2.8.0",
92
+ "cexpr",
93
+ "clang-sys",
94
+ "itertools",
95
+ "lazy_static",
96
+ "lazycell",
97
+ "proc-macro2",
98
+ "quote",
99
+ "regex",
100
+ "rustc-hash",
101
+ "shlex",
102
+ "syn",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "bit-set"
107
+ version = "0.5.3"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
110
+ dependencies = [
111
+ "bit-vec",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "bit-vec"
116
+ version = "0.6.3"
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"
123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
124
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
125
+
126
+ [[package]]
127
+ name = "bitflags"
128
+ version = "2.8.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
131
+
132
+ [[package]]
133
+ name = "bumpalo"
134
+ version = "3.17.0"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "1628fb46dfa0b37568d12e5edd512553eccf6a22a78e8bde00bb4aed84d5bdbf"
137
+
138
+ [[package]]
139
+ name = "caseless"
140
+ version = "0.2.2"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "8b6fd507454086c8edfd769ca6ada439193cdb209c7681712ef6275cccbfe5d8"
143
+ dependencies = [
144
+ "unicode-normalization",
145
+ ]
146
+
147
+ [[package]]
148
+ name = "cc"
149
+ version = "1.2.10"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
152
+ dependencies = [
153
+ "shlex",
154
+ ]
155
+
156
+ [[package]]
157
+ name = "cexpr"
158
+ version = "0.6.0"
159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
160
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
161
+ dependencies = [
162
+ "nom",
163
+ ]
164
+
165
+ [[package]]
166
+ name = "cfg-if"
167
+ version = "1.0.0"
168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
169
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
170
+
171
+ [[package]]
172
+ name = "clang-sys"
173
+ version = "1.8.1"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
176
+ dependencies = [
177
+ "glob",
178
+ "libc",
179
+ "libloading",
180
+ ]
181
+
182
+ [[package]]
183
+ name = "clap"
184
+ version = "4.4.18"
185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
186
+ checksum = "1e578d6ec4194633722ccf9544794b71b1385c3c027efe0c55db226fc880865c"
187
+ dependencies = [
188
+ "clap_builder",
189
+ "clap_derive",
190
+ ]
191
+
192
+ [[package]]
193
+ name = "clap_builder"
194
+ version = "4.4.18"
195
+ source = "registry+https://github.com/rust-lang/crates.io-index"
196
+ checksum = "4df4df40ec50c46000231c914968278b1eb05098cf8f1b3a518a95030e71d1c7"
197
+ dependencies = [
198
+ "anstream",
199
+ "anstyle",
200
+ "clap_lex",
201
+ "strsim",
202
+ ]
203
+
204
+ [[package]]
205
+ name = "clap_derive"
206
+ version = "4.4.7"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
209
+ dependencies = [
210
+ "heck",
211
+ "proc-macro2",
212
+ "quote",
213
+ "syn",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "clap_lex"
218
+ version = "0.6.0"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
221
+
222
+ [[package]]
223
+ name = "colorchoice"
224
+ version = "1.0.3"
225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
226
+ checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
227
+
228
+ [[package]]
229
+ name = "comrak"
230
+ version = "0.39.0"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "d5c834ca54c5a20588b358f34d1533b4b498ddb5fd979cec6b22d0e8867a2449"
233
+ dependencies = [
234
+ "caseless",
235
+ "emojis",
236
+ "entities",
237
+ "memchr",
238
+ "slug",
239
+ "syntect",
240
+ "typed-arena",
241
+ "unicode_categories",
242
+ ]
243
+
244
+ [[package]]
245
+ name = "crc32fast"
246
+ version = "1.4.2"
247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
248
+ checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
249
+ dependencies = [
250
+ "cfg-if",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "deranged"
255
+ version = "0.3.11"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
258
+ dependencies = [
259
+ "powerfmt",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "deunicode"
264
+ version = "1.6.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
267
+
268
+ [[package]]
269
+ name = "either"
270
+ version = "1.13.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
273
+
274
+ [[package]]
275
+ name = "emojis"
276
+ version = "0.6.4"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "99e1f1df1f181f2539bac8bf027d31ca5ffbf9e559e3f2d09413b9107b5c02f4"
279
+ dependencies = [
280
+ "phf",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "entities"
285
+ version = "1.0.1"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
288
+
289
+ [[package]]
290
+ name = "equivalent"
291
+ version = "1.0.1"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
294
+
295
+ [[package]]
296
+ name = "fancy-regex"
297
+ version = "0.11.0"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "b95f7c0680e4142284cf8b22c14a476e87d61b004a3a0861872b32ef7ead40a2"
300
+ dependencies = [
301
+ "bit-set",
302
+ "regex",
303
+ ]
304
+
305
+ [[package]]
306
+ name = "flate2"
307
+ version = "1.0.35"
308
+ source = "registry+https://github.com/rust-lang/crates.io-index"
309
+ checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
310
+ dependencies = [
311
+ "crc32fast",
312
+ "miniz_oxide",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "fnv"
317
+ version = "1.0.7"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
320
+
321
+ [[package]]
322
+ name = "glfm_markdown"
323
+ version = "0.0.31"
324
+ dependencies = [
325
+ "clap",
326
+ "comrak",
327
+ "lazy_static",
328
+ "magnus",
329
+ "rb-sys",
330
+ "regex",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "glob"
335
+ version = "0.3.2"
336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
337
+ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
338
+
339
+ [[package]]
340
+ name = "hashbrown"
341
+ version = "0.15.2"
342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
343
+ checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
344
+
345
+ [[package]]
346
+ name = "heck"
347
+ version = "0.4.1"
348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
349
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
350
+
351
+ [[package]]
352
+ name = "indexmap"
353
+ version = "2.7.1"
354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
355
+ checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
356
+ dependencies = [
357
+ "equivalent",
358
+ "hashbrown",
359
+ ]
360
+
361
+ [[package]]
362
+ name = "is_terminal_polyfill"
363
+ version = "1.70.1"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
366
+
367
+ [[package]]
368
+ name = "itertools"
369
+ version = "0.12.1"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
372
+ dependencies = [
373
+ "either",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "itoa"
378
+ version = "1.0.14"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
381
+
382
+ [[package]]
383
+ name = "lazy_static"
384
+ version = "1.5.0"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
387
+
388
+ [[package]]
389
+ name = "lazycell"
390
+ version = "1.3.0"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
393
+
394
+ [[package]]
395
+ name = "libc"
396
+ version = "0.2.169"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
399
+
400
+ [[package]]
401
+ name = "libloading"
402
+ version = "0.8.6"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
405
+ dependencies = [
406
+ "cfg-if",
407
+ "windows-targets",
408
+ ]
409
+
410
+ [[package]]
411
+ name = "linked-hash-map"
412
+ version = "0.5.6"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
415
+
416
+ [[package]]
417
+ name = "log"
418
+ version = "0.4.25"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
421
+
422
+ [[package]]
423
+ name = "magnus"
424
+ version = "0.6.4"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "b1597ef40aa8c36be098249e82c9a20cf7199278ac1c1a1a995eeead6a184479"
427
+ dependencies = [
428
+ "magnus-macros",
429
+ "rb-sys",
430
+ "rb-sys-env",
431
+ "seq-macro",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "magnus-macros"
436
+ version = "0.6.0"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
439
+ dependencies = [
440
+ "proc-macro2",
441
+ "quote",
442
+ "syn",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "memchr"
447
+ version = "2.7.4"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
450
+
451
+ [[package]]
452
+ name = "minimal-lexical"
453
+ version = "0.2.1"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
456
+
457
+ [[package]]
458
+ name = "miniz_oxide"
459
+ version = "0.8.3"
460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
461
+ checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
462
+ dependencies = [
463
+ "adler2",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "nom"
468
+ version = "7.1.3"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
471
+ dependencies = [
472
+ "memchr",
473
+ "minimal-lexical",
474
+ ]
475
+
476
+ [[package]]
477
+ name = "num-conv"
478
+ version = "0.1.0"
479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
480
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
481
+
482
+ [[package]]
483
+ name = "once_cell"
484
+ version = "1.20.2"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
487
+
488
+ [[package]]
489
+ name = "onig"
490
+ version = "6.4.0"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
493
+ dependencies = [
494
+ "bitflags 1.3.2",
495
+ "libc",
496
+ "once_cell",
497
+ "onig_sys",
498
+ ]
499
+
500
+ [[package]]
501
+ name = "onig_sys"
502
+ version = "69.8.1"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
505
+ dependencies = [
506
+ "cc",
507
+ "pkg-config",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "phf"
512
+ version = "0.11.3"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
515
+ dependencies = [
516
+ "phf_shared",
517
+ ]
518
+
519
+ [[package]]
520
+ name = "phf_shared"
521
+ version = "0.11.3"
522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
523
+ checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
524
+ dependencies = [
525
+ "siphasher",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "pkg-config"
530
+ version = "0.3.31"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
533
+
534
+ [[package]]
535
+ name = "plist"
536
+ version = "1.7.0"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
539
+ dependencies = [
540
+ "base64",
541
+ "indexmap",
542
+ "quick-xml",
543
+ "serde",
544
+ "time",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "powerfmt"
549
+ version = "0.2.0"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
552
+
553
+ [[package]]
554
+ name = "proc-macro2"
555
+ version = "1.0.93"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
558
+ dependencies = [
559
+ "unicode-ident",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "quick-xml"
564
+ version = "0.32.0"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
567
+ dependencies = [
568
+ "memchr",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "quote"
573
+ version = "1.0.38"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
576
+ dependencies = [
577
+ "proc-macro2",
578
+ ]
579
+
580
+ [[package]]
581
+ name = "rb-sys"
582
+ version = "0.9.109"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "6cfdfe3935ea21d9d3b0251f3258ff8773d9525bc422e27847ca4c567214f0b0"
585
+ dependencies = [
586
+ "rb-sys-build",
587
+ ]
588
+
589
+ [[package]]
590
+ name = "rb-sys-build"
591
+ version = "0.9.109"
592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
593
+ checksum = "23dd2fa891aed8ff298d6ee0301e4c704a5bf469fbc9e9a46d7c1af26f020ad1"
594
+ dependencies = [
595
+ "bindgen",
596
+ "lazy_static",
597
+ "proc-macro2",
598
+ "quote",
599
+ "regex",
600
+ "shell-words",
601
+ "syn",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "rb-sys-env"
606
+ version = "0.1.2"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
609
+
610
+ [[package]]
611
+ name = "regex"
612
+ version = "1.11.1"
613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
614
+ checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
615
+ dependencies = [
616
+ "aho-corasick",
617
+ "memchr",
618
+ "regex-automata",
619
+ "regex-syntax",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "regex-automata"
624
+ version = "0.4.9"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
627
+ dependencies = [
628
+ "aho-corasick",
629
+ "memchr",
630
+ "regex-syntax",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "regex-syntax"
635
+ version = "0.8.5"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
638
+
639
+ [[package]]
640
+ name = "rustc-hash"
641
+ version = "1.1.0"
642
+ source = "registry+https://github.com/rust-lang/crates.io-index"
643
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
644
+
645
+ [[package]]
646
+ name = "rustversion"
647
+ version = "1.0.19"
648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
649
+ checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
650
+
651
+ [[package]]
652
+ name = "ryu"
653
+ version = "1.0.19"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "6ea1a2d0a644769cc99faa24c3ad26b379b786fe7c36fd3c546254801650e6dd"
656
+
657
+ [[package]]
658
+ name = "same-file"
659
+ version = "1.0.6"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
662
+ dependencies = [
663
+ "winapi-util",
664
+ ]
665
+
666
+ [[package]]
667
+ name = "seq-macro"
668
+ version = "0.3.5"
669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
670
+ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
671
+
672
+ [[package]]
673
+ name = "serde"
674
+ version = "1.0.217"
675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
676
+ checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
677
+ dependencies = [
678
+ "serde_derive",
679
+ ]
680
+
681
+ [[package]]
682
+ name = "serde_derive"
683
+ version = "1.0.217"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
686
+ dependencies = [
687
+ "proc-macro2",
688
+ "quote",
689
+ "syn",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "serde_json"
694
+ version = "1.0.138"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "d434192e7da787e94a6ea7e9670b26a036d0ca41e0b7efb2676dd32bae872949"
697
+ dependencies = [
698
+ "itoa",
699
+ "memchr",
700
+ "ryu",
701
+ "serde",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "shell-words"
706
+ version = "1.1.0"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
709
+
710
+ [[package]]
711
+ name = "shlex"
712
+ version = "1.3.0"
713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
714
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
715
+
716
+ [[package]]
717
+ name = "siphasher"
718
+ version = "1.0.1"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
721
+
722
+ [[package]]
723
+ name = "slug"
724
+ version = "0.1.6"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "882a80f72ee45de3cc9a5afeb2da0331d58df69e4e7d8eeb5d3c7784ae67e724"
727
+ dependencies = [
728
+ "deunicode",
729
+ "wasm-bindgen",
730
+ ]
731
+
732
+ [[package]]
733
+ name = "strsim"
734
+ version = "0.10.0"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
737
+
738
+ [[package]]
739
+ name = "syn"
740
+ version = "2.0.96"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
743
+ dependencies = [
744
+ "proc-macro2",
745
+ "quote",
746
+ "unicode-ident",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "syntect"
751
+ version = "5.2.0"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "874dcfa363995604333cf947ae9f751ca3af4522c60886774c4963943b4746b1"
754
+ dependencies = [
755
+ "bincode",
756
+ "bitflags 1.3.2",
757
+ "fancy-regex",
758
+ "flate2",
759
+ "fnv",
760
+ "once_cell",
761
+ "onig",
762
+ "plist",
763
+ "regex-syntax",
764
+ "serde",
765
+ "serde_derive",
766
+ "serde_json",
767
+ "thiserror",
768
+ "walkdir",
769
+ "yaml-rust",
770
+ ]
771
+
772
+ [[package]]
773
+ name = "thiserror"
774
+ version = "1.0.69"
775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
776
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
777
+ dependencies = [
778
+ "thiserror-impl",
779
+ ]
780
+
781
+ [[package]]
782
+ name = "thiserror-impl"
783
+ version = "1.0.69"
784
+ source = "registry+https://github.com/rust-lang/crates.io-index"
785
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
786
+ dependencies = [
787
+ "proc-macro2",
788
+ "quote",
789
+ "syn",
790
+ ]
791
+
792
+ [[package]]
793
+ name = "time"
794
+ version = "0.3.37"
795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
796
+ checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
797
+ dependencies = [
798
+ "deranged",
799
+ "itoa",
800
+ "num-conv",
801
+ "powerfmt",
802
+ "serde",
803
+ "time-core",
804
+ "time-macros",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "time-core"
809
+ version = "0.1.2"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
812
+
813
+ [[package]]
814
+ name = "time-macros"
815
+ version = "0.2.19"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
818
+ dependencies = [
819
+ "num-conv",
820
+ "time-core",
821
+ ]
822
+
823
+ [[package]]
824
+ name = "tinyvec"
825
+ version = "1.8.1"
826
+ source = "registry+https://github.com/rust-lang/crates.io-index"
827
+ checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
828
+ dependencies = [
829
+ "tinyvec_macros",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "tinyvec_macros"
834
+ version = "0.1.1"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
837
+
838
+ [[package]]
839
+ name = "typed-arena"
840
+ version = "2.0.2"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
843
+
844
+ [[package]]
845
+ name = "unicode-ident"
846
+ version = "1.0.16"
847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
848
+ checksum = "a210d160f08b701c8721ba1c726c11662f877ea6b7094007e1ca9a1041945034"
849
+
850
+ [[package]]
851
+ name = "unicode-normalization"
852
+ version = "0.1.24"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
855
+ dependencies = [
856
+ "tinyvec",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "unicode_categories"
861
+ version = "0.1.1"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
864
+
865
+ [[package]]
866
+ name = "utf8parse"
867
+ version = "0.2.2"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
870
+
871
+ [[package]]
872
+ name = "walkdir"
873
+ version = "2.5.0"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
876
+ dependencies = [
877
+ "same-file",
878
+ "winapi-util",
879
+ ]
880
+
881
+ [[package]]
882
+ name = "wasm-bindgen"
883
+ version = "0.2.100"
884
+ source = "registry+https://github.com/rust-lang/crates.io-index"
885
+ checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
886
+ dependencies = [
887
+ "cfg-if",
888
+ "once_cell",
889
+ "rustversion",
890
+ "wasm-bindgen-macro",
891
+ ]
892
+
893
+ [[package]]
894
+ name = "wasm-bindgen-backend"
895
+ version = "0.2.100"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
898
+ dependencies = [
899
+ "bumpalo",
900
+ "log",
901
+ "proc-macro2",
902
+ "quote",
903
+ "syn",
904
+ "wasm-bindgen-shared",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "wasm-bindgen-macro"
909
+ version = "0.2.100"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
912
+ dependencies = [
913
+ "quote",
914
+ "wasm-bindgen-macro-support",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "wasm-bindgen-macro-support"
919
+ version = "0.2.100"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
922
+ dependencies = [
923
+ "proc-macro2",
924
+ "quote",
925
+ "syn",
926
+ "wasm-bindgen-backend",
927
+ "wasm-bindgen-shared",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "wasm-bindgen-shared"
932
+ version = "0.2.100"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
935
+ dependencies = [
936
+ "unicode-ident",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "winapi-util"
941
+ version = "0.1.9"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
944
+ dependencies = [
945
+ "windows-sys",
946
+ ]
947
+
948
+ [[package]]
949
+ name = "windows-sys"
950
+ version = "0.59.0"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
953
+ dependencies = [
954
+ "windows-targets",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "windows-targets"
959
+ version = "0.52.6"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
962
+ 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",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "windows_aarch64_gnullvm"
975
+ version = "0.52.6"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
978
+
979
+ [[package]]
980
+ name = "windows_aarch64_msvc"
981
+ version = "0.52.6"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
984
+
985
+ [[package]]
986
+ name = "windows_i686_gnu"
987
+ version = "0.52.6"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
990
+
991
+ [[package]]
992
+ name = "windows_i686_gnullvm"
993
+ version = "0.52.6"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
996
+
997
+ [[package]]
998
+ name = "windows_i686_msvc"
999
+ version = "0.52.6"
1000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1001
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1002
+
1003
+ [[package]]
1004
+ name = "windows_x86_64_gnu"
1005
+ version = "0.52.6"
1006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1007
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1008
+
1009
+ [[package]]
1010
+ name = "windows_x86_64_gnullvm"
1011
+ version = "0.52.6"
1012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1013
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1014
+
1015
+ [[package]]
1016
+ name = "windows_x86_64_msvc"
1017
+ version = "0.52.6"
1018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1019
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1020
+
1021
+ [[package]]
1022
+ name = "yaml-rust"
1023
+ version = "0.4.5"
1024
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1025
+ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
1026
+ dependencies = [
1027
+ "linked-hash-map",
1028
+ ]
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "glfm_markdown"
3
- version = "0.0.30"
3
+ version = "0.0.31"
4
4
  edition = "2021"
5
5
  authors = ["digitalmoksha <bwalker@gitlab.com>"]
6
6
  description = "GitLab Flavored Markdown parser and formatter. 100% CommonMark-compatible. Experimental."
@@ -5,4 +5,6 @@ require 'rb_sys/mkmf'
5
5
 
6
6
  create_rust_makefile('glfm_markdown/glfm_markdown') do |r|
7
7
  r.auto_install_rust_toolchain = false
8
+ # Ensure all Rust dependencies are pinned when building
9
+ r.extra_cargo_args = ["--locked"]
8
10
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GLFMMarkdown
4
- VERSION = '0.0.30'
4
+ VERSION = '0.0.31'
5
5
  end
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.30
4
+ version: 0.0.31
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Brett Walker
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-05-06 00:00:00.000000000 Z
11
+ date: 2025-05-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys
@@ -62,6 +62,7 @@ files:
62
62
  - Cargo.lock
63
63
  - LICENSE
64
64
  - README.md
65
+ - ext/glfm_markdown/Cargo.lock
65
66
  - ext/glfm_markdown/Cargo.toml
66
67
  - ext/glfm_markdown/extconf.rb
67
68
  - ext/glfm_markdown/src/glfm.rs