commonmarker 1.1.3 → 1.1.5
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 +186 -195
- data/README.md +33 -22
- data/ext/commonmarker/Cargo.toml +2 -2
- data/ext/commonmarker/src/lib.rs +31 -111
- data/ext/commonmarker/src/node.rs +72 -30
- data/ext/commonmarker/src/options.rs +51 -4
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +99 -7
- data/ext/commonmarker/src/plugins.rs +3 -0
- data/lib/commonmarker/config.rb +12 -1
- data/lib/commonmarker/version.rb +1 -1
- metadata +2 -2
data/Cargo.lock
CHANGED
@@ -19,47 +19,48 @@ dependencies = [
|
|
19
19
|
|
20
20
|
[[package]]
|
21
21
|
name = "anstream"
|
22
|
-
version = "0.6.
|
22
|
+
version = "0.6.15"
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
-
checksum = "
|
24
|
+
checksum = "64e15c1ab1f89faffbf04a634d5e1962e9074f2741eef6d97f3c4e322426d526"
|
25
25
|
dependencies = [
|
26
26
|
"anstyle",
|
27
27
|
"anstyle-parse",
|
28
28
|
"anstyle-query",
|
29
29
|
"anstyle-wincon",
|
30
30
|
"colorchoice",
|
31
|
+
"is_terminal_polyfill",
|
31
32
|
"utf8parse",
|
32
33
|
]
|
33
34
|
|
34
35
|
[[package]]
|
35
36
|
name = "anstyle"
|
36
|
-
version = "1.0.
|
37
|
+
version = "1.0.8"
|
37
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
38
|
-
checksum = "
|
39
|
+
checksum = "1bec1de6f59aedf83baf9ff929c98f2ad654b97c9510f4e70cf6f661d49fd5b1"
|
39
40
|
|
40
41
|
[[package]]
|
41
42
|
name = "anstyle-parse"
|
42
|
-
version = "0.2.
|
43
|
+
version = "0.2.5"
|
43
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
44
|
-
checksum = "
|
45
|
+
checksum = "eb47de1e80c2b463c735db5b217a0ddc39d612e7ac9e2e96a5aed1f57616c1cb"
|
45
46
|
dependencies = [
|
46
47
|
"utf8parse",
|
47
48
|
]
|
48
49
|
|
49
50
|
[[package]]
|
50
51
|
name = "anstyle-query"
|
51
|
-
version = "1.
|
52
|
+
version = "1.1.1"
|
52
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
53
|
-
checksum = "
|
54
|
+
checksum = "6d36fc52c7f6c869915e99412912f22093507da8d9e942ceaf66fe4b7c14422a"
|
54
55
|
dependencies = [
|
55
56
|
"windows-sys 0.52.0",
|
56
57
|
]
|
57
58
|
|
58
59
|
[[package]]
|
59
60
|
name = "anstyle-wincon"
|
60
|
-
version = "3.0.
|
61
|
+
version = "3.0.4"
|
61
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
62
|
-
checksum = "
|
63
|
+
checksum = "5bf74e1b6e971609db8ca7a9ce79fd5768ab6ae46441c572e46cf596f59e57f8"
|
63
64
|
dependencies = [
|
64
65
|
"anstyle",
|
65
66
|
"windows-sys 0.52.0",
|
@@ -67,9 +68,9 @@ dependencies = [
|
|
67
68
|
|
68
69
|
[[package]]
|
69
70
|
name = "base64"
|
70
|
-
version = "0.
|
71
|
+
version = "0.22.1"
|
71
72
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
72
|
-
checksum = "
|
73
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
73
74
|
|
74
75
|
[[package]]
|
75
76
|
name = "bincode"
|
@@ -86,7 +87,7 @@ version = "0.69.4"
|
|
86
87
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
87
88
|
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
88
89
|
dependencies = [
|
89
|
-
"bitflags 2.
|
90
|
+
"bitflags 2.6.0",
|
90
91
|
"cexpr",
|
91
92
|
"clang-sys",
|
92
93
|
"itertools",
|
@@ -97,7 +98,7 @@ dependencies = [
|
|
97
98
|
"regex",
|
98
99
|
"rustc-hash",
|
99
100
|
"shlex",
|
100
|
-
"syn
|
101
|
+
"syn",
|
101
102
|
]
|
102
103
|
|
103
104
|
[[package]]
|
@@ -123,9 +124,9 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
123
124
|
|
124
125
|
[[package]]
|
125
126
|
name = "bitflags"
|
126
|
-
version = "2.
|
127
|
+
version = "2.6.0"
|
127
128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
128
|
-
checksum = "
|
129
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
129
130
|
|
130
131
|
[[package]]
|
131
132
|
name = "bumpalo"
|
@@ -133,11 +134,21 @@ version = "3.16.0"
|
|
133
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
134
135
|
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
135
136
|
|
137
|
+
[[package]]
|
138
|
+
name = "caseless"
|
139
|
+
version = "0.2.1"
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
141
|
+
checksum = "808dab3318747be122cb31d36de18d4d1c81277a76f8332a02b81a3d73463d7f"
|
142
|
+
dependencies = [
|
143
|
+
"regex",
|
144
|
+
"unicode-normalization",
|
145
|
+
]
|
146
|
+
|
136
147
|
[[package]]
|
137
148
|
name = "cc"
|
138
|
-
version = "1.
|
149
|
+
version = "1.1.7"
|
139
150
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
140
|
-
checksum = "
|
151
|
+
checksum = "26a5c3fd7bfa1ce3897a3a3501d362b2d87b7f2583ebcb4a949ec25911025cbc"
|
141
152
|
|
142
153
|
[[package]]
|
143
154
|
name = "cexpr"
|
@@ -156,9 +167,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
156
167
|
|
157
168
|
[[package]]
|
158
169
|
name = "clang-sys"
|
159
|
-
version = "1.
|
170
|
+
version = "1.8.1"
|
160
171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
161
|
-
checksum = "
|
172
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
162
173
|
dependencies = [
|
163
174
|
"glob",
|
164
175
|
"libc",
|
@@ -167,9 +178,9 @@ dependencies = [
|
|
167
178
|
|
168
179
|
[[package]]
|
169
180
|
name = "clap"
|
170
|
-
version = "4.5.
|
181
|
+
version = "4.5.11"
|
171
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
172
|
-
checksum = "
|
183
|
+
checksum = "35723e6a11662c2afb578bcf0b88bf6ea8e21282a953428f240574fcc3a2b5b3"
|
173
184
|
dependencies = [
|
174
185
|
"clap_builder",
|
175
186
|
"clap_derive",
|
@@ -177,40 +188,40 @@ dependencies = [
|
|
177
188
|
|
178
189
|
[[package]]
|
179
190
|
name = "clap_builder"
|
180
|
-
version = "4.5.
|
191
|
+
version = "4.5.11"
|
181
192
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
182
|
-
checksum = "
|
193
|
+
checksum = "49eb96cbfa7cfa35017b7cd548c75b14c3118c98b423041d70562665e07fb0fa"
|
183
194
|
dependencies = [
|
184
195
|
"anstream",
|
185
196
|
"anstyle",
|
186
197
|
"clap_lex",
|
187
|
-
"strsim
|
198
|
+
"strsim",
|
188
199
|
"terminal_size",
|
189
200
|
]
|
190
201
|
|
191
202
|
[[package]]
|
192
203
|
name = "clap_derive"
|
193
|
-
version = "4.5.
|
204
|
+
version = "4.5.11"
|
194
205
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
195
|
-
checksum = "
|
206
|
+
checksum = "5d029b67f89d30bbb547c89fd5161293c0aec155fc691d7924b64550662db93e"
|
196
207
|
dependencies = [
|
197
208
|
"heck",
|
198
209
|
"proc-macro2",
|
199
210
|
"quote",
|
200
|
-
"syn
|
211
|
+
"syn",
|
201
212
|
]
|
202
213
|
|
203
214
|
[[package]]
|
204
215
|
name = "clap_lex"
|
205
|
-
version = "0.7.
|
216
|
+
version = "0.7.2"
|
206
217
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
207
|
-
checksum = "
|
218
|
+
checksum = "1462739cb27611015575c0c11df5df7601141071f07518d56fcc1be504cbec97"
|
208
219
|
|
209
220
|
[[package]]
|
210
221
|
name = "colorchoice"
|
211
|
-
version = "1.0.
|
222
|
+
version = "1.0.2"
|
212
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
213
|
-
checksum = "
|
224
|
+
checksum = "d3fd119d74b830634cea2a0f58bbd0d54540518a14397557951e79340abc28c0"
|
214
225
|
|
215
226
|
[[package]]
|
216
227
|
name = "commonmarker"
|
@@ -226,15 +237,15 @@ dependencies = [
|
|
226
237
|
|
227
238
|
[[package]]
|
228
239
|
name = "comrak"
|
229
|
-
version = "0.
|
240
|
+
version = "0.26.0"
|
230
241
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
231
|
-
checksum = "
|
242
|
+
checksum = "395ab67843c57df5a4ee29d610740828dbc928cc64ecf0f2a1d5cd0e98e107a9"
|
232
243
|
dependencies = [
|
244
|
+
"caseless",
|
233
245
|
"clap",
|
234
246
|
"derive_builder",
|
235
247
|
"emojis",
|
236
248
|
"entities",
|
237
|
-
"in-place",
|
238
249
|
"memchr",
|
239
250
|
"once_cell",
|
240
251
|
"regex",
|
@@ -248,18 +259,18 @@ dependencies = [
|
|
248
259
|
|
249
260
|
[[package]]
|
250
261
|
name = "crc32fast"
|
251
|
-
version = "1.4.
|
262
|
+
version = "1.4.2"
|
252
263
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
253
|
-
checksum = "
|
264
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
254
265
|
dependencies = [
|
255
266
|
"cfg-if",
|
256
267
|
]
|
257
268
|
|
258
269
|
[[package]]
|
259
270
|
name = "darling"
|
260
|
-
version = "0.
|
271
|
+
version = "0.20.10"
|
261
272
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
262
|
-
checksum = "
|
273
|
+
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
|
263
274
|
dependencies = [
|
264
275
|
"darling_core",
|
265
276
|
"darling_macro",
|
@@ -267,27 +278,27 @@ dependencies = [
|
|
267
278
|
|
268
279
|
[[package]]
|
269
280
|
name = "darling_core"
|
270
|
-
version = "0.
|
281
|
+
version = "0.20.10"
|
271
282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
272
|
-
checksum = "
|
283
|
+
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
|
273
284
|
dependencies = [
|
274
285
|
"fnv",
|
275
286
|
"ident_case",
|
276
287
|
"proc-macro2",
|
277
288
|
"quote",
|
278
|
-
"strsim
|
279
|
-
"syn
|
289
|
+
"strsim",
|
290
|
+
"syn",
|
280
291
|
]
|
281
292
|
|
282
293
|
[[package]]
|
283
294
|
name = "darling_macro"
|
284
|
-
version = "0.
|
295
|
+
version = "0.20.10"
|
285
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
286
|
-
checksum = "
|
297
|
+
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
|
287
298
|
dependencies = [
|
288
299
|
"darling_core",
|
289
300
|
"quote",
|
290
|
-
"syn
|
301
|
+
"syn",
|
291
302
|
]
|
292
303
|
|
293
304
|
[[package]]
|
@@ -301,52 +312,52 @@ dependencies = [
|
|
301
312
|
|
302
313
|
[[package]]
|
303
314
|
name = "derive_builder"
|
304
|
-
version = "0.
|
315
|
+
version = "0.20.0"
|
305
316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
306
|
-
checksum = "
|
317
|
+
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
|
307
318
|
dependencies = [
|
308
319
|
"derive_builder_macro",
|
309
320
|
]
|
310
321
|
|
311
322
|
[[package]]
|
312
323
|
name = "derive_builder_core"
|
313
|
-
version = "0.
|
324
|
+
version = "0.20.0"
|
314
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
315
|
-
checksum = "
|
326
|
+
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
|
316
327
|
dependencies = [
|
317
328
|
"darling",
|
318
329
|
"proc-macro2",
|
319
330
|
"quote",
|
320
|
-
"syn
|
331
|
+
"syn",
|
321
332
|
]
|
322
333
|
|
323
334
|
[[package]]
|
324
335
|
name = "derive_builder_macro"
|
325
|
-
version = "0.
|
336
|
+
version = "0.20.0"
|
326
337
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
-
checksum = "
|
338
|
+
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
|
328
339
|
dependencies = [
|
329
340
|
"derive_builder_core",
|
330
|
-
"syn
|
341
|
+
"syn",
|
331
342
|
]
|
332
343
|
|
333
344
|
[[package]]
|
334
345
|
name = "deunicode"
|
335
|
-
version = "1.
|
346
|
+
version = "1.6.0"
|
336
347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
|
-
checksum = "
|
348
|
+
checksum = "339544cc9e2c4dc3fc7149fd630c5f22263a4fdf18a98afd0075784968b5cf00"
|
338
349
|
|
339
350
|
[[package]]
|
340
351
|
name = "either"
|
341
|
-
version = "1.
|
352
|
+
version = "1.13.0"
|
342
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
343
|
-
checksum = "
|
354
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
344
355
|
|
345
356
|
[[package]]
|
346
357
|
name = "emojis"
|
347
|
-
version = "0.
|
358
|
+
version = "0.6.3"
|
348
359
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
349
|
-
checksum = "
|
360
|
+
checksum = "e72f23d65b46527e461b161ab9a126c378aa2249d8a8d15718d23ab1fb4d8786"
|
350
361
|
dependencies = [
|
351
362
|
"phf",
|
352
363
|
]
|
@@ -365,9 +376,9 @@ checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
|
365
376
|
|
366
377
|
[[package]]
|
367
378
|
name = "errno"
|
368
|
-
version = "0.3.
|
379
|
+
version = "0.3.9"
|
369
380
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
370
|
-
checksum = "
|
381
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
371
382
|
dependencies = [
|
372
383
|
"libc",
|
373
384
|
"windows-sys 0.52.0",
|
@@ -383,12 +394,6 @@ dependencies = [
|
|
383
394
|
"regex",
|
384
395
|
]
|
385
396
|
|
386
|
-
[[package]]
|
387
|
-
name = "fastrand"
|
388
|
-
version = "2.1.0"
|
389
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
390
|
-
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
391
|
-
|
392
397
|
[[package]]
|
393
398
|
name = "flate2"
|
394
399
|
version = "1.0.30"
|
@@ -429,15 +434,6 @@ version = "1.0.1"
|
|
429
434
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
430
435
|
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
431
436
|
|
432
|
-
[[package]]
|
433
|
-
name = "in-place"
|
434
|
-
version = "0.2.0"
|
435
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
436
|
-
checksum = "1cdb69f3adfd5f493210cece799f4620417bf9965bc1536c22ae0e29ba27a8c0"
|
437
|
-
dependencies = [
|
438
|
-
"tempfile",
|
439
|
-
]
|
440
|
-
|
441
437
|
[[package]]
|
442
438
|
name = "indexmap"
|
443
439
|
version = "2.2.6"
|
@@ -448,6 +444,12 @@ dependencies = [
|
|
448
444
|
"hashbrown",
|
449
445
|
]
|
450
446
|
|
447
|
+
[[package]]
|
448
|
+
name = "is_terminal_polyfill"
|
449
|
+
version = "1.70.1"
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
451
|
+
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
|
452
|
+
|
451
453
|
[[package]]
|
452
454
|
name = "itertools"
|
453
455
|
version = "0.12.1"
|
@@ -465,9 +467,9 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
|
465
467
|
|
466
468
|
[[package]]
|
467
469
|
name = "lazy_static"
|
468
|
-
version = "1.
|
470
|
+
version = "1.5.0"
|
469
471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
470
|
-
checksum = "
|
472
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
471
473
|
|
472
474
|
[[package]]
|
473
475
|
name = "lazycell"
|
@@ -477,26 +479,20 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
477
479
|
|
478
480
|
[[package]]
|
479
481
|
name = "libc"
|
480
|
-
version = "0.2.
|
482
|
+
version = "0.2.155"
|
481
483
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
482
|
-
checksum = "
|
484
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
483
485
|
|
484
486
|
[[package]]
|
485
487
|
name = "libloading"
|
486
|
-
version = "0.8.
|
488
|
+
version = "0.8.5"
|
487
489
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
488
|
-
checksum = "
|
490
|
+
checksum = "4979f22fdb869068da03c9f7528f8297c6fd2606bc3a4affe42e6a823fdb8da4"
|
489
491
|
dependencies = [
|
490
492
|
"cfg-if",
|
491
|
-
"windows-targets 0.52.
|
493
|
+
"windows-targets 0.52.6",
|
492
494
|
]
|
493
495
|
|
494
|
-
[[package]]
|
495
|
-
name = "line-wrap"
|
496
|
-
version = "0.2.0"
|
497
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
498
|
-
checksum = "dd1bc4d24ad230d21fb898d1116b1801d7adfc449d42026475862ab48b11e70e"
|
499
|
-
|
500
496
|
[[package]]
|
501
497
|
name = "linked-hash-map"
|
502
498
|
version = "0.5.6"
|
@@ -505,21 +501,21 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
505
501
|
|
506
502
|
[[package]]
|
507
503
|
name = "linux-raw-sys"
|
508
|
-
version = "0.4.
|
504
|
+
version = "0.4.14"
|
509
505
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
510
|
-
checksum = "
|
506
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
511
507
|
|
512
508
|
[[package]]
|
513
509
|
name = "log"
|
514
|
-
version = "0.4.
|
510
|
+
version = "0.4.22"
|
515
511
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
516
|
-
checksum = "
|
512
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
517
513
|
|
518
514
|
[[package]]
|
519
515
|
name = "magnus"
|
520
|
-
version = "0.
|
516
|
+
version = "0.7.1"
|
521
517
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
522
|
-
checksum = "
|
518
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
523
519
|
dependencies = [
|
524
520
|
"magnus-macros",
|
525
521
|
"rb-sys",
|
@@ -535,14 +531,14 @@ checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
|
535
531
|
dependencies = [
|
536
532
|
"proc-macro2",
|
537
533
|
"quote",
|
538
|
-
"syn
|
534
|
+
"syn",
|
539
535
|
]
|
540
536
|
|
541
537
|
[[package]]
|
542
538
|
name = "memchr"
|
543
|
-
version = "2.7.
|
539
|
+
version = "2.7.4"
|
544
540
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
545
|
-
checksum = "
|
541
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
546
542
|
|
547
543
|
[[package]]
|
548
544
|
name = "minimal-lexical"
|
@@ -552,9 +548,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
552
548
|
|
553
549
|
[[package]]
|
554
550
|
name = "miniz_oxide"
|
555
|
-
version = "0.7.
|
551
|
+
version = "0.7.4"
|
556
552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
557
|
-
checksum = "
|
553
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
558
554
|
dependencies = [
|
559
555
|
"adler",
|
560
556
|
]
|
@@ -629,13 +625,12 @@ checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
|
629
625
|
|
630
626
|
[[package]]
|
631
627
|
name = "plist"
|
632
|
-
version = "1.
|
628
|
+
version = "1.7.0"
|
633
629
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
634
|
-
checksum = "
|
630
|
+
checksum = "42cf17e9a1800f5f396bc67d193dc9411b59012a5876445ef450d449881e1016"
|
635
631
|
dependencies = [
|
636
632
|
"base64",
|
637
633
|
"indexmap",
|
638
|
-
"line-wrap",
|
639
634
|
"quick-xml",
|
640
635
|
"serde",
|
641
636
|
"time",
|
@@ -649,18 +644,18 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
649
644
|
|
650
645
|
[[package]]
|
651
646
|
name = "proc-macro2"
|
652
|
-
version = "1.0.
|
647
|
+
version = "1.0.86"
|
653
648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
654
|
-
checksum = "
|
649
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
655
650
|
dependencies = [
|
656
651
|
"unicode-ident",
|
657
652
|
]
|
658
653
|
|
659
654
|
[[package]]
|
660
655
|
name = "quick-xml"
|
661
|
-
version = "0.
|
656
|
+
version = "0.32.0"
|
662
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
663
|
-
checksum = "
|
658
|
+
checksum = "1d3a6e5838b60e0e8fa7a43f22ade549a37d61f8bdbe636d0d7816191de969c2"
|
664
659
|
dependencies = [
|
665
660
|
"memchr",
|
666
661
|
]
|
@@ -676,18 +671,18 @@ dependencies = [
|
|
676
671
|
|
677
672
|
[[package]]
|
678
673
|
name = "rb-sys"
|
679
|
-
version = "0.9.
|
674
|
+
version = "0.9.99"
|
680
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
-
checksum = "
|
676
|
+
checksum = "d83151cfea2b67db2444f68c53b119ff77cff235ad711c765072e4daf8f3185b"
|
682
677
|
dependencies = [
|
683
678
|
"rb-sys-build",
|
684
679
|
]
|
685
680
|
|
686
681
|
[[package]]
|
687
682
|
name = "rb-sys-build"
|
688
|
-
version = "0.9.
|
683
|
+
version = "0.9.99"
|
689
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
-
checksum = "
|
685
|
+
checksum = "32d038214c118ad4a75db555ccb78672e17e1c5c10f344456cd129008dbaa7de"
|
691
686
|
dependencies = [
|
692
687
|
"bindgen",
|
693
688
|
"lazy_static",
|
@@ -695,7 +690,7 @@ dependencies = [
|
|
695
690
|
"quote",
|
696
691
|
"regex",
|
697
692
|
"shell-words",
|
698
|
-
"syn
|
693
|
+
"syn",
|
699
694
|
]
|
700
695
|
|
701
696
|
[[package]]
|
@@ -712,9 +707,9 @@ checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
|
712
707
|
|
713
708
|
[[package]]
|
714
709
|
name = "regex"
|
715
|
-
version = "1.10.
|
710
|
+
version = "1.10.5"
|
716
711
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
717
|
-
checksum = "
|
712
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
718
713
|
dependencies = [
|
719
714
|
"aho-corasick",
|
720
715
|
"memchr",
|
@@ -724,9 +719,9 @@ dependencies = [
|
|
724
719
|
|
725
720
|
[[package]]
|
726
721
|
name = "regex-automata"
|
727
|
-
version = "0.4.
|
722
|
+
version = "0.4.7"
|
728
723
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
729
|
-
checksum = "
|
724
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
730
725
|
dependencies = [
|
731
726
|
"aho-corasick",
|
732
727
|
"memchr",
|
@@ -735,9 +730,9 @@ dependencies = [
|
|
735
730
|
|
736
731
|
[[package]]
|
737
732
|
name = "regex-syntax"
|
738
|
-
version = "0.8.
|
733
|
+
version = "0.8.4"
|
739
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
740
|
-
checksum = "
|
735
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
741
736
|
|
742
737
|
[[package]]
|
743
738
|
name = "rustc-hash"
|
@@ -751,7 +746,7 @@ version = "0.38.34"
|
|
751
746
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
752
747
|
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
753
748
|
dependencies = [
|
754
|
-
"bitflags 2.
|
749
|
+
"bitflags 2.6.0",
|
755
750
|
"errno",
|
756
751
|
"libc",
|
757
752
|
"linux-raw-sys",
|
@@ -760,9 +755,9 @@ dependencies = [
|
|
760
755
|
|
761
756
|
[[package]]
|
762
757
|
name = "ryu"
|
763
|
-
version = "1.0.
|
758
|
+
version = "1.0.18"
|
764
759
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
-
checksum = "
|
760
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
766
761
|
|
767
762
|
[[package]]
|
768
763
|
name = "same-file"
|
@@ -781,31 +776,32 @@ checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
|
781
776
|
|
782
777
|
[[package]]
|
783
778
|
name = "serde"
|
784
|
-
version = "1.0.
|
779
|
+
version = "1.0.204"
|
785
780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
786
|
-
checksum = "
|
781
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
787
782
|
dependencies = [
|
788
783
|
"serde_derive",
|
789
784
|
]
|
790
785
|
|
791
786
|
[[package]]
|
792
787
|
name = "serde_derive"
|
793
|
-
version = "1.0.
|
788
|
+
version = "1.0.204"
|
794
789
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
795
|
-
checksum = "
|
790
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
796
791
|
dependencies = [
|
797
792
|
"proc-macro2",
|
798
793
|
"quote",
|
799
|
-
"syn
|
794
|
+
"syn",
|
800
795
|
]
|
801
796
|
|
802
797
|
[[package]]
|
803
798
|
name = "serde_json"
|
804
|
-
version = "1.0.
|
799
|
+
version = "1.0.121"
|
805
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
806
|
-
checksum = "
|
801
|
+
checksum = "4ab380d7d9f22ef3f21ad3e6c1ebe8e4fc7a2000ccba2e4d71fc96f15b2cb609"
|
807
802
|
dependencies = [
|
808
803
|
"itoa",
|
804
|
+
"memchr",
|
809
805
|
"ryu",
|
810
806
|
"serde",
|
811
807
|
]
|
@@ -838,12 +834,6 @@ dependencies = [
|
|
838
834
|
"wasm-bindgen",
|
839
835
|
]
|
840
836
|
|
841
|
-
[[package]]
|
842
|
-
name = "strsim"
|
843
|
-
version = "0.10.0"
|
844
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
845
|
-
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
846
|
-
|
847
837
|
[[package]]
|
848
838
|
name = "strsim"
|
849
839
|
version = "0.11.1"
|
@@ -852,20 +842,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
852
842
|
|
853
843
|
[[package]]
|
854
844
|
name = "syn"
|
855
|
-
version = "
|
856
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
857
|
-
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
858
|
-
dependencies = [
|
859
|
-
"proc-macro2",
|
860
|
-
"quote",
|
861
|
-
"unicode-ident",
|
862
|
-
]
|
863
|
-
|
864
|
-
[[package]]
|
865
|
-
name = "syn"
|
866
|
-
version = "2.0.60"
|
845
|
+
version = "2.0.72"
|
867
846
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
868
|
-
checksum = "
|
847
|
+
checksum = "dc4b9b9bf2add8093d3f2c0204471e951b2285580335de42f9d2534f3ae7a8af"
|
869
848
|
dependencies = [
|
870
849
|
"proc-macro2",
|
871
850
|
"quote",
|
@@ -895,18 +874,6 @@ dependencies = [
|
|
895
874
|
"yaml-rust",
|
896
875
|
]
|
897
876
|
|
898
|
-
[[package]]
|
899
|
-
name = "tempfile"
|
900
|
-
version = "3.10.1"
|
901
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
902
|
-
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
903
|
-
dependencies = [
|
904
|
-
"cfg-if",
|
905
|
-
"fastrand",
|
906
|
-
"rustix",
|
907
|
-
"windows-sys 0.52.0",
|
908
|
-
]
|
909
|
-
|
910
877
|
[[package]]
|
911
878
|
name = "terminal_size"
|
912
879
|
version = "0.3.0"
|
@@ -919,22 +886,22 @@ dependencies = [
|
|
919
886
|
|
920
887
|
[[package]]
|
921
888
|
name = "thiserror"
|
922
|
-
version = "1.0.
|
889
|
+
version = "1.0.63"
|
923
890
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
-
checksum = "
|
891
|
+
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
|
925
892
|
dependencies = [
|
926
893
|
"thiserror-impl",
|
927
894
|
]
|
928
895
|
|
929
896
|
[[package]]
|
930
897
|
name = "thiserror-impl"
|
931
|
-
version = "1.0.
|
898
|
+
version = "1.0.63"
|
932
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
933
|
-
checksum = "
|
900
|
+
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
|
934
901
|
dependencies = [
|
935
902
|
"proc-macro2",
|
936
903
|
"quote",
|
937
|
-
"syn
|
904
|
+
"syn",
|
938
905
|
]
|
939
906
|
|
940
907
|
[[package]]
|
@@ -968,6 +935,21 @@ dependencies = [
|
|
968
935
|
"time-core",
|
969
936
|
]
|
970
937
|
|
938
|
+
[[package]]
|
939
|
+
name = "tinyvec"
|
940
|
+
version = "1.8.0"
|
941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
942
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
943
|
+
dependencies = [
|
944
|
+
"tinyvec_macros",
|
945
|
+
]
|
946
|
+
|
947
|
+
[[package]]
|
948
|
+
name = "tinyvec_macros"
|
949
|
+
version = "0.1.1"
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
951
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
952
|
+
|
971
953
|
[[package]]
|
972
954
|
name = "typed-arena"
|
973
955
|
version = "2.0.2"
|
@@ -980,6 +962,15 @@ version = "1.0.12"
|
|
980
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
981
963
|
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
982
964
|
|
965
|
+
[[package]]
|
966
|
+
name = "unicode-normalization"
|
967
|
+
version = "0.1.23"
|
968
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
969
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
970
|
+
dependencies = [
|
971
|
+
"tinyvec",
|
972
|
+
]
|
973
|
+
|
983
974
|
[[package]]
|
984
975
|
name = "unicode_categories"
|
985
976
|
version = "0.1.1"
|
@@ -988,9 +979,9 @@ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
|
|
988
979
|
|
989
980
|
[[package]]
|
990
981
|
name = "utf8parse"
|
991
|
-
version = "0.2.
|
982
|
+
version = "0.2.2"
|
992
983
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
993
|
-
checksum = "
|
984
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
994
985
|
|
995
986
|
[[package]]
|
996
987
|
name = "walkdir"
|
@@ -1023,7 +1014,7 @@ dependencies = [
|
|
1023
1014
|
"once_cell",
|
1024
1015
|
"proc-macro2",
|
1025
1016
|
"quote",
|
1026
|
-
"syn
|
1017
|
+
"syn",
|
1027
1018
|
"wasm-bindgen-shared",
|
1028
1019
|
]
|
1029
1020
|
|
@@ -1045,7 +1036,7 @@ checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
|
1045
1036
|
dependencies = [
|
1046
1037
|
"proc-macro2",
|
1047
1038
|
"quote",
|
1048
|
-
"syn
|
1039
|
+
"syn",
|
1049
1040
|
"wasm-bindgen-backend",
|
1050
1041
|
"wasm-bindgen-shared",
|
1051
1042
|
]
|
@@ -1080,7 +1071,7 @@ version = "0.52.0"
|
|
1080
1071
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1081
1072
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
1082
1073
|
dependencies = [
|
1083
|
-
"windows-targets 0.52.
|
1074
|
+
"windows-targets 0.52.6",
|
1084
1075
|
]
|
1085
1076
|
|
1086
1077
|
[[package]]
|
@@ -1100,18 +1091,18 @@ dependencies = [
|
|
1100
1091
|
|
1101
1092
|
[[package]]
|
1102
1093
|
name = "windows-targets"
|
1103
|
-
version = "0.52.
|
1094
|
+
version = "0.52.6"
|
1104
1095
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1105
|
-
checksum = "
|
1096
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
1106
1097
|
dependencies = [
|
1107
|
-
"windows_aarch64_gnullvm 0.52.
|
1108
|
-
"windows_aarch64_msvc 0.52.
|
1109
|
-
"windows_i686_gnu 0.52.
|
1098
|
+
"windows_aarch64_gnullvm 0.52.6",
|
1099
|
+
"windows_aarch64_msvc 0.52.6",
|
1100
|
+
"windows_i686_gnu 0.52.6",
|
1110
1101
|
"windows_i686_gnullvm",
|
1111
|
-
"windows_i686_msvc 0.52.
|
1112
|
-
"windows_x86_64_gnu 0.52.
|
1113
|
-
"windows_x86_64_gnullvm 0.52.
|
1114
|
-
"windows_x86_64_msvc 0.52.
|
1102
|
+
"windows_i686_msvc 0.52.6",
|
1103
|
+
"windows_x86_64_gnu 0.52.6",
|
1104
|
+
"windows_x86_64_gnullvm 0.52.6",
|
1105
|
+
"windows_x86_64_msvc 0.52.6",
|
1115
1106
|
]
|
1116
1107
|
|
1117
1108
|
[[package]]
|
@@ -1122,9 +1113,9 @@ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1122
1113
|
|
1123
1114
|
[[package]]
|
1124
1115
|
name = "windows_aarch64_gnullvm"
|
1125
|
-
version = "0.52.
|
1116
|
+
version = "0.52.6"
|
1126
1117
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1127
|
-
checksum = "
|
1118
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
1128
1119
|
|
1129
1120
|
[[package]]
|
1130
1121
|
name = "windows_aarch64_msvc"
|
@@ -1134,9 +1125,9 @@ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1134
1125
|
|
1135
1126
|
[[package]]
|
1136
1127
|
name = "windows_aarch64_msvc"
|
1137
|
-
version = "0.52.
|
1128
|
+
version = "0.52.6"
|
1138
1129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1139
|
-
checksum = "
|
1130
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
1140
1131
|
|
1141
1132
|
[[package]]
|
1142
1133
|
name = "windows_i686_gnu"
|
@@ -1146,15 +1137,15 @@ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
1146
1137
|
|
1147
1138
|
[[package]]
|
1148
1139
|
name = "windows_i686_gnu"
|
1149
|
-
version = "0.52.
|
1140
|
+
version = "0.52.6"
|
1150
1141
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1151
|
-
checksum = "
|
1142
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
1152
1143
|
|
1153
1144
|
[[package]]
|
1154
1145
|
name = "windows_i686_gnullvm"
|
1155
|
-
version = "0.52.
|
1146
|
+
version = "0.52.6"
|
1156
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1157
|
-
checksum = "
|
1148
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
1158
1149
|
|
1159
1150
|
[[package]]
|
1160
1151
|
name = "windows_i686_msvc"
|
@@ -1164,9 +1155,9 @@ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
1164
1155
|
|
1165
1156
|
[[package]]
|
1166
1157
|
name = "windows_i686_msvc"
|
1167
|
-
version = "0.52.
|
1158
|
+
version = "0.52.6"
|
1168
1159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1169
|
-
checksum = "
|
1160
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
1170
1161
|
|
1171
1162
|
[[package]]
|
1172
1163
|
name = "windows_x86_64_gnu"
|
@@ -1176,9 +1167,9 @@ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
1176
1167
|
|
1177
1168
|
[[package]]
|
1178
1169
|
name = "windows_x86_64_gnu"
|
1179
|
-
version = "0.52.
|
1170
|
+
version = "0.52.6"
|
1180
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1181
|
-
checksum = "
|
1172
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
1182
1173
|
|
1183
1174
|
[[package]]
|
1184
1175
|
name = "windows_x86_64_gnullvm"
|
@@ -1188,9 +1179,9 @@ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
1188
1179
|
|
1189
1180
|
[[package]]
|
1190
1181
|
name = "windows_x86_64_gnullvm"
|
1191
|
-
version = "0.52.
|
1182
|
+
version = "0.52.6"
|
1192
1183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1193
|
-
checksum = "
|
1184
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
1194
1185
|
|
1195
1186
|
[[package]]
|
1196
1187
|
name = "windows_x86_64_msvc"
|
@@ -1200,9 +1191,9 @@ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
1200
1191
|
|
1201
1192
|
[[package]]
|
1202
1193
|
name = "windows_x86_64_msvc"
|
1203
|
-
version = "0.52.
|
1194
|
+
version = "0.52.6"
|
1204
1195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1205
|
-
checksum = "
|
1196
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
1206
1197
|
|
1207
1198
|
[[package]]
|
1208
1199
|
name = "xdg"
|