commonmarker 1.0.0.pre4-x86_64-darwin → 1.0.0.pre5-x86_64-darwin

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6f5bb5c29e15e90f73f5a2eb7880673d6db7a7caefe21f737b3843dc7212185f
4
- data.tar.gz: 67565532b456f38895b5340e511868fcffd138eb447be4bc4c0e02817e2fc4a3
3
+ metadata.gz: 7e3f87112633cf2585b0b5fcc0b9f4f01ad8ea84e9311ebb155ad88fd8132faa
4
+ data.tar.gz: 30c7fdb7561d8d67b7039ecdca7e6cea70348056de95e1dd2dee1428c988acf5
5
5
  SHA512:
6
- metadata.gz: 277c249fc0b5d480116c5a9107491180e3b3b721c77179d6ab4bd6093046f7fb6046d56cdbd2794611c4fcf2b0f3020bfd7126c394bd93bedcdc10bd3c9e5097
7
- data.tar.gz: a6d914943d0bec25844d5a3f34033a136df7bbfcedca8b0c0ac74af0e44f2e6028523c1c42b1587b655797c6c3bb69d6a46445d348829ace78feeffb99767ba6
6
+ metadata.gz: 114539c70031a514646cf0b543b23fc342dd83f9847ffe0d6e940c0e8d0080a7102bbdfc40c10a7aa9fc037b5f219eb72fd09c1cabfa8c6ab262b8c27cc0a9dc
7
+ data.tar.gz: 142083b288f3efbd38a5372dbbfc42b8217db7819626a2df80fabd2564365b544067d248a493f0d862b1a9f61ff213fb070fabb29393814289c03fc17c5b88c8
data/Cargo.lock ADDED
@@ -0,0 +1,1058 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "adler"
7
+ version = "1.0.2"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "0.7.20"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "autocfg"
22
+ version = "1.1.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
25
+
26
+ [[package]]
27
+ name = "base64"
28
+ version = "0.13.1"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
31
+
32
+ [[package]]
33
+ name = "bincode"
34
+ version = "1.3.3"
35
+ source = "registry+https://github.com/rust-lang/crates.io-index"
36
+ checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
37
+ dependencies = [
38
+ "serde",
39
+ ]
40
+
41
+ [[package]]
42
+ name = "bindgen"
43
+ version = "0.60.1"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
46
+ dependencies = [
47
+ "bitflags",
48
+ "cexpr",
49
+ "clang-sys",
50
+ "lazy_static",
51
+ "lazycell",
52
+ "peeking_take_while",
53
+ "proc-macro2",
54
+ "quote",
55
+ "regex",
56
+ "rustc-hash",
57
+ "shlex",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "bit-set"
62
+ version = "0.5.3"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "0700ddab506f33b20a03b13996eccd309a48e5ff77d0d95926aa0210fb4e95f1"
65
+ dependencies = [
66
+ "bit-vec",
67
+ ]
68
+
69
+ [[package]]
70
+ name = "bit-vec"
71
+ version = "0.6.3"
72
+ source = "registry+https://github.com/rust-lang/crates.io-index"
73
+ checksum = "349f9b6a179ed607305526ca489b34ad0a41aed5f7980fa90eb03160b69598fb"
74
+
75
+ [[package]]
76
+ name = "bitflags"
77
+ version = "1.3.2"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
80
+
81
+ [[package]]
82
+ name = "block-buffer"
83
+ version = "0.10.3"
84
+ source = "registry+https://github.com/rust-lang/crates.io-index"
85
+ checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
86
+ dependencies = [
87
+ "generic-array",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "cc"
92
+ version = "1.0.78"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d"
95
+
96
+ [[package]]
97
+ name = "cexpr"
98
+ version = "0.6.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
101
+ dependencies = [
102
+ "nom",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "cfg-if"
107
+ version = "1.0.0"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
110
+
111
+ [[package]]
112
+ name = "clang-sys"
113
+ version = "1.4.0"
114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
115
+ checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
116
+ dependencies = [
117
+ "glob",
118
+ "libc",
119
+ "libloading",
120
+ ]
121
+
122
+ [[package]]
123
+ name = "clap"
124
+ version = "4.0.32"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "a7db700bc935f9e43e88d00b0850dae18a63773cfbec6d8e070fccf7fef89a39"
127
+ dependencies = [
128
+ "bitflags",
129
+ "clap_derive",
130
+ "clap_lex",
131
+ "is-terminal",
132
+ "once_cell",
133
+ "strsim",
134
+ "termcolor",
135
+ "terminal_size",
136
+ ]
137
+
138
+ [[package]]
139
+ name = "clap_derive"
140
+ version = "4.0.21"
141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
142
+ checksum = "0177313f9f02afc995627906bbd8967e2be069f5261954222dac78290c2b9014"
143
+ dependencies = [
144
+ "heck",
145
+ "proc-macro-error",
146
+ "proc-macro2",
147
+ "quote",
148
+ "syn",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "clap_lex"
153
+ version = "0.3.0"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
156
+ dependencies = [
157
+ "os_str_bytes",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "commonmarker"
162
+ version = "1.0.0"
163
+ dependencies = [
164
+ "comrak",
165
+ "magnus",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "comrak"
170
+ version = "0.15.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "c11e55664fcff7f4d37cc2adf3a1996913692f037312f4ab0909047fdd2bf962"
173
+ dependencies = [
174
+ "clap",
175
+ "entities",
176
+ "memchr",
177
+ "once_cell",
178
+ "pest",
179
+ "pest_derive",
180
+ "regex",
181
+ "shell-words",
182
+ "syntect",
183
+ "typed-arena",
184
+ "unicode_categories",
185
+ "xdg",
186
+ ]
187
+
188
+ [[package]]
189
+ name = "cpufeatures"
190
+ version = "0.2.5"
191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
192
+ checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
193
+ dependencies = [
194
+ "libc",
195
+ ]
196
+
197
+ [[package]]
198
+ name = "crc32fast"
199
+ version = "1.3.2"
200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
201
+ checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
202
+ dependencies = [
203
+ "cfg-if",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "crypto-common"
208
+ version = "0.1.6"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
211
+ dependencies = [
212
+ "generic-array",
213
+ "typenum",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "digest"
218
+ version = "0.10.6"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
221
+ dependencies = [
222
+ "block-buffer",
223
+ "crypto-common",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "dirs"
228
+ version = "4.0.0"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059"
231
+ dependencies = [
232
+ "dirs-sys",
233
+ ]
234
+
235
+ [[package]]
236
+ name = "dirs-sys"
237
+ version = "0.3.7"
238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
239
+ checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6"
240
+ dependencies = [
241
+ "libc",
242
+ "redox_users",
243
+ "winapi",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "entities"
248
+ version = "1.0.1"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
251
+
252
+ [[package]]
253
+ name = "errno"
254
+ version = "0.2.8"
255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
256
+ checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
257
+ dependencies = [
258
+ "errno-dragonfly",
259
+ "libc",
260
+ "winapi",
261
+ ]
262
+
263
+ [[package]]
264
+ name = "errno-dragonfly"
265
+ version = "0.1.2"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
268
+ dependencies = [
269
+ "cc",
270
+ "libc",
271
+ ]
272
+
273
+ [[package]]
274
+ name = "fancy-regex"
275
+ version = "0.7.1"
276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
277
+ checksum = "9d6b8560a05112eb52f04b00e5d3790c0dd75d9d980eb8a122fb23b92a623ccf"
278
+ dependencies = [
279
+ "bit-set",
280
+ "regex",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "flate2"
285
+ version = "1.0.25"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
288
+ dependencies = [
289
+ "crc32fast",
290
+ "miniz_oxide",
291
+ ]
292
+
293
+ [[package]]
294
+ name = "fnv"
295
+ version = "1.0.7"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
298
+
299
+ [[package]]
300
+ name = "generic-array"
301
+ version = "0.14.6"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
304
+ dependencies = [
305
+ "typenum",
306
+ "version_check",
307
+ ]
308
+
309
+ [[package]]
310
+ name = "getrandom"
311
+ version = "0.2.8"
312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
313
+ checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
314
+ dependencies = [
315
+ "cfg-if",
316
+ "libc",
317
+ "wasi",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "glob"
322
+ version = "0.3.1"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
325
+
326
+ [[package]]
327
+ name = "hashbrown"
328
+ version = "0.12.3"
329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
330
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
331
+
332
+ [[package]]
333
+ name = "heck"
334
+ version = "0.4.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
337
+
338
+ [[package]]
339
+ name = "hermit-abi"
340
+ version = "0.2.6"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
343
+ dependencies = [
344
+ "libc",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "indexmap"
349
+ version = "1.9.2"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
352
+ dependencies = [
353
+ "autocfg",
354
+ "hashbrown",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "io-lifetimes"
359
+ version = "1.0.3"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
362
+ dependencies = [
363
+ "libc",
364
+ "windows-sys",
365
+ ]
366
+
367
+ [[package]]
368
+ name = "is-terminal"
369
+ version = "0.4.2"
370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
371
+ checksum = "28dfb6c8100ccc63462345b67d1bbc3679177c75ee4bf59bf29c8b1d110b8189"
372
+ dependencies = [
373
+ "hermit-abi",
374
+ "io-lifetimes",
375
+ "rustix",
376
+ "windows-sys",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "itoa"
381
+ version = "1.0.5"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
384
+
385
+ [[package]]
386
+ name = "lazy_static"
387
+ version = "1.4.0"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
390
+
391
+ [[package]]
392
+ name = "lazycell"
393
+ version = "1.3.0"
394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
395
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
396
+
397
+ [[package]]
398
+ name = "libc"
399
+ version = "0.2.139"
400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
401
+ checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
402
+
403
+ [[package]]
404
+ name = "libloading"
405
+ version = "0.7.4"
406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
407
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
408
+ dependencies = [
409
+ "cfg-if",
410
+ "winapi",
411
+ ]
412
+
413
+ [[package]]
414
+ name = "line-wrap"
415
+ version = "0.1.1"
416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
417
+ checksum = "f30344350a2a51da54c1d53be93fade8a237e545dbcc4bdbe635413f2117cab9"
418
+ dependencies = [
419
+ "safemem",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "linked-hash-map"
424
+ version = "0.5.6"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
427
+
428
+ [[package]]
429
+ name = "linux-raw-sys"
430
+ version = "0.1.4"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
433
+
434
+ [[package]]
435
+ name = "magnus"
436
+ version = "0.4.4"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "fc87660cd7daa49fddbfd524c836de54d5c927d520cd163f43700c5087c57d6c"
439
+ dependencies = [
440
+ "magnus-macros",
441
+ "rb-sys",
442
+ "rb-sys-env",
443
+ ]
444
+
445
+ [[package]]
446
+ name = "magnus-macros"
447
+ version = "0.3.0"
448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
449
+ checksum = "206cb23bfeea05180c97522ef6a3e52a4eb17b0ed2f30ee3ca9c4f994d2378ae"
450
+ dependencies = [
451
+ "proc-macro2",
452
+ "quote",
453
+ "syn",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "memchr"
458
+ version = "2.5.0"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
461
+
462
+ [[package]]
463
+ name = "minimal-lexical"
464
+ version = "0.2.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
467
+
468
+ [[package]]
469
+ name = "miniz_oxide"
470
+ version = "0.6.2"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
473
+ dependencies = [
474
+ "adler",
475
+ ]
476
+
477
+ [[package]]
478
+ name = "nom"
479
+ version = "7.1.2"
480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
481
+ checksum = "e5507769c4919c998e69e49c839d9dc6e693ede4cc4290d6ad8b41d4f09c548c"
482
+ dependencies = [
483
+ "memchr",
484
+ "minimal-lexical",
485
+ ]
486
+
487
+ [[package]]
488
+ name = "once_cell"
489
+ version = "1.17.0"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
492
+
493
+ [[package]]
494
+ name = "onig"
495
+ version = "6.4.0"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "8c4b31c8722ad9171c6d77d3557db078cab2bd50afcc9d09c8b315c59df8ca4f"
498
+ dependencies = [
499
+ "bitflags",
500
+ "libc",
501
+ "once_cell",
502
+ "onig_sys",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "onig_sys"
507
+ version = "69.8.1"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "7b829e3d7e9cc74c7e315ee8edb185bf4190da5acde74afd7fc59c35b1f086e7"
510
+ dependencies = [
511
+ "cc",
512
+ "pkg-config",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "os_str_bytes"
517
+ version = "6.4.1"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
520
+
521
+ [[package]]
522
+ name = "peeking_take_while"
523
+ version = "0.1.2"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
526
+
527
+ [[package]]
528
+ name = "pest"
529
+ version = "2.5.2"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "0f6e86fb9e7026527a0d46bc308b841d73170ef8f443e1807f6ef88526a816d4"
532
+ dependencies = [
533
+ "thiserror",
534
+ "ucd-trie",
535
+ ]
536
+
537
+ [[package]]
538
+ name = "pest_derive"
539
+ version = "2.5.2"
540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
541
+ checksum = "96504449aa860c8dcde14f9fba5c58dc6658688ca1fe363589d6327b8662c603"
542
+ dependencies = [
543
+ "pest",
544
+ "pest_generator",
545
+ ]
546
+
547
+ [[package]]
548
+ name = "pest_generator"
549
+ version = "2.5.2"
550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
551
+ checksum = "798e0220d1111ae63d66cb66a5dcb3fc2d986d520b98e49e1852bfdb11d7c5e7"
552
+ dependencies = [
553
+ "pest",
554
+ "pest_meta",
555
+ "proc-macro2",
556
+ "quote",
557
+ "syn",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "pest_meta"
562
+ version = "2.5.2"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "984298b75898e30a843e278a9f2452c31e349a073a0ce6fd950a12a74464e065"
565
+ dependencies = [
566
+ "once_cell",
567
+ "pest",
568
+ "sha1",
569
+ ]
570
+
571
+ [[package]]
572
+ name = "pkg-config"
573
+ version = "0.3.26"
574
+ source = "registry+https://github.com/rust-lang/crates.io-index"
575
+ checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
576
+
577
+ [[package]]
578
+ name = "plist"
579
+ version = "1.3.1"
580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
581
+ checksum = "bd39bc6cdc9355ad1dc5eeedefee696bb35c34caf21768741e81826c0bbd7225"
582
+ dependencies = [
583
+ "base64",
584
+ "indexmap",
585
+ "line-wrap",
586
+ "serde",
587
+ "time",
588
+ "xml-rs",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "proc-macro-error"
593
+ version = "1.0.4"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
596
+ dependencies = [
597
+ "proc-macro-error-attr",
598
+ "proc-macro2",
599
+ "quote",
600
+ "syn",
601
+ "version_check",
602
+ ]
603
+
604
+ [[package]]
605
+ name = "proc-macro-error-attr"
606
+ version = "1.0.4"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
609
+ dependencies = [
610
+ "proc-macro2",
611
+ "quote",
612
+ "version_check",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "proc-macro2"
617
+ version = "1.0.49"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5"
620
+ dependencies = [
621
+ "unicode-ident",
622
+ ]
623
+
624
+ [[package]]
625
+ name = "quote"
626
+ version = "1.0.23"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
629
+ dependencies = [
630
+ "proc-macro2",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "rb-sys"
635
+ version = "0.9.53"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "aa291f69bcc44f8e96597a3f39e9933fde6977b825415cfaa670ac49b8ab7c99"
638
+ dependencies = [
639
+ "rb-sys-build",
640
+ ]
641
+
642
+ [[package]]
643
+ name = "rb-sys-build"
644
+ version = "0.9.53"
645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
646
+ checksum = "d998fd6ef588471d6d7cca24c4da88eda5e6757b6885c55760e856ecdb254c3d"
647
+ dependencies = [
648
+ "bindgen",
649
+ "regex",
650
+ "shell-words",
651
+ ]
652
+
653
+ [[package]]
654
+ name = "rb-sys-env"
655
+ version = "0.1.1"
656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
657
+ checksum = "74c38752410925faeb82c400c06ba2fd9ee6aa8f719dd33994c9e53f5242d25f"
658
+
659
+ [[package]]
660
+ name = "redox_syscall"
661
+ version = "0.2.16"
662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
663
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
664
+ dependencies = [
665
+ "bitflags",
666
+ ]
667
+
668
+ [[package]]
669
+ name = "redox_users"
670
+ version = "0.4.3"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
673
+ dependencies = [
674
+ "getrandom",
675
+ "redox_syscall",
676
+ "thiserror",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "regex"
681
+ version = "1.7.0"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a"
684
+ dependencies = [
685
+ "aho-corasick",
686
+ "memchr",
687
+ "regex-syntax",
688
+ ]
689
+
690
+ [[package]]
691
+ name = "regex-syntax"
692
+ version = "0.6.28"
693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
694
+ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
695
+
696
+ [[package]]
697
+ name = "rustc-hash"
698
+ version = "1.1.0"
699
+ source = "registry+https://github.com/rust-lang/crates.io-index"
700
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
701
+
702
+ [[package]]
703
+ name = "rustix"
704
+ version = "0.36.6"
705
+ source = "registry+https://github.com/rust-lang/crates.io-index"
706
+ checksum = "4feacf7db682c6c329c4ede12649cd36ecab0f3be5b7d74e6a20304725db4549"
707
+ dependencies = [
708
+ "bitflags",
709
+ "errno",
710
+ "io-lifetimes",
711
+ "libc",
712
+ "linux-raw-sys",
713
+ "windows-sys",
714
+ ]
715
+
716
+ [[package]]
717
+ name = "ryu"
718
+ version = "1.0.12"
719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
720
+ checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
721
+
722
+ [[package]]
723
+ name = "safemem"
724
+ version = "0.3.3"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
727
+
728
+ [[package]]
729
+ name = "same-file"
730
+ version = "1.0.6"
731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
732
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
733
+ dependencies = [
734
+ "winapi-util",
735
+ ]
736
+
737
+ [[package]]
738
+ name = "serde"
739
+ version = "1.0.152"
740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
741
+ checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
742
+
743
+ [[package]]
744
+ name = "serde_derive"
745
+ version = "1.0.152"
746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
747
+ checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
748
+ dependencies = [
749
+ "proc-macro2",
750
+ "quote",
751
+ "syn",
752
+ ]
753
+
754
+ [[package]]
755
+ name = "serde_json"
756
+ version = "1.0.91"
757
+ source = "registry+https://github.com/rust-lang/crates.io-index"
758
+ checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
759
+ dependencies = [
760
+ "itoa",
761
+ "ryu",
762
+ "serde",
763
+ ]
764
+
765
+ [[package]]
766
+ name = "sha1"
767
+ version = "0.10.5"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
770
+ dependencies = [
771
+ "cfg-if",
772
+ "cpufeatures",
773
+ "digest",
774
+ ]
775
+
776
+ [[package]]
777
+ name = "shell-words"
778
+ version = "1.1.0"
779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
780
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
781
+
782
+ [[package]]
783
+ name = "shlex"
784
+ version = "1.1.0"
785
+ source = "registry+https://github.com/rust-lang/crates.io-index"
786
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
787
+
788
+ [[package]]
789
+ name = "strsim"
790
+ version = "0.10.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
793
+
794
+ [[package]]
795
+ name = "syn"
796
+ version = "1.0.107"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
799
+ dependencies = [
800
+ "proc-macro2",
801
+ "quote",
802
+ "unicode-ident",
803
+ ]
804
+
805
+ [[package]]
806
+ name = "syntect"
807
+ version = "5.0.0"
808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
809
+ checksum = "c6c454c27d9d7d9a84c7803aaa3c50cd088d2906fe3c6e42da3209aa623576a8"
810
+ dependencies = [
811
+ "bincode",
812
+ "bitflags",
813
+ "fancy-regex",
814
+ "flate2",
815
+ "fnv",
816
+ "lazy_static",
817
+ "once_cell",
818
+ "onig",
819
+ "plist",
820
+ "regex-syntax",
821
+ "serde",
822
+ "serde_derive",
823
+ "serde_json",
824
+ "thiserror",
825
+ "walkdir",
826
+ "yaml-rust",
827
+ ]
828
+
829
+ [[package]]
830
+ name = "termcolor"
831
+ version = "1.1.3"
832
+ source = "registry+https://github.com/rust-lang/crates.io-index"
833
+ checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
834
+ dependencies = [
835
+ "winapi-util",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "terminal_size"
840
+ version = "0.2.3"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "cb20089a8ba2b69debd491f8d2d023761cbf196e999218c591fa1e7e15a21907"
843
+ dependencies = [
844
+ "rustix",
845
+ "windows-sys",
846
+ ]
847
+
848
+ [[package]]
849
+ name = "thiserror"
850
+ version = "1.0.38"
851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
852
+ checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
853
+ dependencies = [
854
+ "thiserror-impl",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "thiserror-impl"
859
+ version = "1.0.38"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
862
+ dependencies = [
863
+ "proc-macro2",
864
+ "quote",
865
+ "syn",
866
+ ]
867
+
868
+ [[package]]
869
+ name = "time"
870
+ version = "0.3.17"
871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
872
+ checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
873
+ dependencies = [
874
+ "itoa",
875
+ "serde",
876
+ "time-core",
877
+ "time-macros",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "time-core"
882
+ version = "0.1.0"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
885
+
886
+ [[package]]
887
+ name = "time-macros"
888
+ version = "0.2.6"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
891
+ dependencies = [
892
+ "time-core",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "typed-arena"
897
+ version = "2.0.1"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "0685c84d5d54d1c26f7d3eb96cd41550adb97baed141a761cf335d3d33bcd0ae"
900
+
901
+ [[package]]
902
+ name = "typenum"
903
+ version = "1.16.0"
904
+ source = "registry+https://github.com/rust-lang/crates.io-index"
905
+ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
906
+
907
+ [[package]]
908
+ name = "ucd-trie"
909
+ version = "0.1.5"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "9e79c4d996edb816c91e4308506774452e55e95c3c9de07b6729e17e15a5ef81"
912
+
913
+ [[package]]
914
+ name = "unicode-ident"
915
+ version = "1.0.6"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
918
+
919
+ [[package]]
920
+ name = "unicode_categories"
921
+ version = "0.1.1"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
924
+
925
+ [[package]]
926
+ name = "version_check"
927
+ version = "0.9.4"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
930
+
931
+ [[package]]
932
+ name = "walkdir"
933
+ version = "2.3.2"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
936
+ dependencies = [
937
+ "same-file",
938
+ "winapi",
939
+ "winapi-util",
940
+ ]
941
+
942
+ [[package]]
943
+ name = "wasi"
944
+ version = "0.11.0+wasi-snapshot-preview1"
945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
946
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
947
+
948
+ [[package]]
949
+ name = "winapi"
950
+ version = "0.3.9"
951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
952
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
953
+ dependencies = [
954
+ "winapi-i686-pc-windows-gnu",
955
+ "winapi-x86_64-pc-windows-gnu",
956
+ ]
957
+
958
+ [[package]]
959
+ name = "winapi-i686-pc-windows-gnu"
960
+ version = "0.4.0"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
963
+
964
+ [[package]]
965
+ name = "winapi-util"
966
+ version = "0.1.5"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
969
+ dependencies = [
970
+ "winapi",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "winapi-x86_64-pc-windows-gnu"
975
+ version = "0.4.0"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
978
+
979
+ [[package]]
980
+ name = "windows-sys"
981
+ version = "0.42.0"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
984
+ dependencies = [
985
+ "windows_aarch64_gnullvm",
986
+ "windows_aarch64_msvc",
987
+ "windows_i686_gnu",
988
+ "windows_i686_msvc",
989
+ "windows_x86_64_gnu",
990
+ "windows_x86_64_gnullvm",
991
+ "windows_x86_64_msvc",
992
+ ]
993
+
994
+ [[package]]
995
+ name = "windows_aarch64_gnullvm"
996
+ version = "0.42.0"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "41d2aa71f6f0cbe00ae5167d90ef3cfe66527d6f613ca78ac8024c3ccab9a19e"
999
+
1000
+ [[package]]
1001
+ name = "windows_aarch64_msvc"
1002
+ version = "0.42.0"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "dd0f252f5a35cac83d6311b2e795981f5ee6e67eb1f9a7f64eb4500fbc4dcdb4"
1005
+
1006
+ [[package]]
1007
+ name = "windows_i686_gnu"
1008
+ version = "0.42.0"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "fbeae19f6716841636c28d695375df17562ca208b2b7d0dc47635a50ae6c5de7"
1011
+
1012
+ [[package]]
1013
+ name = "windows_i686_msvc"
1014
+ version = "0.42.0"
1015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1016
+ checksum = "84c12f65daa39dd2babe6e442988fc329d6243fdce47d7d2d155b8d874862246"
1017
+
1018
+ [[package]]
1019
+ name = "windows_x86_64_gnu"
1020
+ version = "0.42.0"
1021
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1022
+ checksum = "bf7b1b21b5362cbc318f686150e5bcea75ecedc74dd157d874d754a2ca44b0ed"
1023
+
1024
+ [[package]]
1025
+ name = "windows_x86_64_gnullvm"
1026
+ version = "0.42.0"
1027
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1028
+ checksum = "09d525d2ba30eeb3297665bd434a54297e4170c7f1a44cad4ef58095b4cd2028"
1029
+
1030
+ [[package]]
1031
+ name = "windows_x86_64_msvc"
1032
+ version = "0.42.0"
1033
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1034
+ checksum = "f40009d85759725a34da6d89a94e63d7bdc50a862acf0dbc7c8e488f1edcb6f5"
1035
+
1036
+ [[package]]
1037
+ name = "xdg"
1038
+ version = "2.4.1"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "0c4583db5cbd4c4c0303df2d15af80f0539db703fa1c68802d4cbbd2dd0f88f6"
1041
+ dependencies = [
1042
+ "dirs",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "xml-rs"
1047
+ version = "0.8.4"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "d2d7d3948613f75c98fd9328cfdcc45acc4d360655289d0a7d4ec931392200a3"
1050
+
1051
+ [[package]]
1052
+ name = "yaml-rust"
1053
+ version = "0.4.5"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85"
1056
+ dependencies = [
1057
+ "linked-hash-map",
1058
+ ]
data/commonmarker.gemspec CHANGED
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
17
17
  # https://github.com/rubygems/rubygems/pull/5852#issuecomment-1231118509
18
18
  spec.required_rubygems_version = ">= 3.3.22"
19
19
 
20
- spec.files = ["LICENSE.txt", "README.md", "commonmarker.gemspec"]
20
+ spec.files = ["LICENSE.txt", "README.md", "commonmarker.gemspec", "Cargo.lock"]
21
21
  spec.files += Dir.glob("lib/**/*.rb")
22
22
  spec.files += Dir.glob("ext/**/*.{rs,toml,lock,rb}")
23
23
  spec.bindir = "exe"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Commonmarker
4
- VERSION = "1.0.0.pre4"
4
+ VERSION = "1.0.0.pre5"
5
5
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: commonmarker
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.pre4
4
+ version: 1.0.0.pre5
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Garen Torikian
8
8
  - Ashe Connor
9
- autorequire:
9
+ autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2022-12-28 00:00:00.000000000 Z
12
+ date: 2023-01-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rb_sys
@@ -25,6 +25,7 @@ dependencies:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
27
  version: '0.9'
28
+ force_ruby_platform: false
28
29
  - !ruby/object:Gem::Dependency
29
30
  name: rake
30
31
  requirement: !ruby/object:Gem::Requirement
@@ -69,11 +70,12 @@ dependencies:
69
70
  version: '1.2'
70
71
  description: A fast, safe, extensible parser for CommonMark. This wraps the comrak
71
72
  Rust crate.
72
- email:
73
+ email:
73
74
  executables: []
74
75
  extensions: []
75
76
  extra_rdoc_files: []
76
77
  files:
78
+ - Cargo.lock
77
79
  - LICENSE.txt
78
80
  - README.md
79
81
  - commonmarker.gemspec
@@ -87,6 +89,7 @@ files:
87
89
  - ext/commonmarker/src/utils.rs
88
90
  - lib/commonmarker.rb
89
91
  - lib/commonmarker/3.1/commonmarker.bundle
92
+ - lib/commonmarker/3.2/commonmarker.bundle
90
93
  - lib/commonmarker/config.rb
91
94
  - lib/commonmarker/constants.rb
92
95
  - lib/commonmarker/extension.rb
@@ -101,7 +104,7 @@ metadata:
101
104
  funding_uri: https://github.com/sponsors/gjtorikian/
102
105
  source_code_uri: https://github.com/gjtorikian/commonmarker
103
106
  rubygems_mfa_required: 'true'
104
- post_install_message:
107
+ post_install_message:
105
108
  rdoc_options: []
106
109
  require_paths:
107
110
  - lib
@@ -112,15 +115,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
115
  version: '3.1'
113
116
  - - "<"
114
117
  - !ruby/object:Gem::Version
115
- version: 3.2.dev
118
+ version: 3.3.dev
116
119
  required_rubygems_version: !ruby/object:Gem::Requirement
117
120
  requirements:
118
121
  - - ">="
119
122
  - !ruby/object:Gem::Version
120
123
  version: 3.3.22
121
124
  requirements: []
122
- rubygems_version: 3.3.22
123
- signing_key:
125
+ rubygems_version: 3.4.3
126
+ signing_key:
124
127
  specification_version: 4
125
128
  summary: CommonMark parser and renderer. Written in Rust, wrapped in Ruby.
126
129
  test_files: []