commonmarker 2.3.1 → 2.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +238 -189
- data/README.md +2 -1
- data/ext/commonmarker/Cargo.toml +2 -2
- data/ext/commonmarker/src/lib.rs +4 -6
- data/ext/commonmarker/src/node.rs +96 -77
- data/ext/commonmarker/src/options.rs +8 -2
- data/ext/commonmarker/src/plugins/syntax_highlighting.rs +21 -17
- data/lib/commonmarker/config.rb +1 -0
- data/lib/commonmarker/version.rb +1 -1
- metadata +2 -2
data/Cargo.lock
CHANGED
|
@@ -4,9 +4,9 @@ version = 3
|
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "adler2"
|
|
7
|
-
version = "2.0.
|
|
7
|
+
version = "2.0.1"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
10
|
|
|
11
11
|
[[package]]
|
|
12
12
|
name = "aho-corasick"
|
|
@@ -19,9 +19,9 @@ dependencies = [
|
|
|
19
19
|
|
|
20
20
|
[[package]]
|
|
21
21
|
name = "anstream"
|
|
22
|
-
version = "0.6.
|
|
22
|
+
version = "0.6.20"
|
|
23
23
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
24
|
-
checksum = "
|
|
24
|
+
checksum = "3ae563653d1938f79b1ab1b5e668c87c76a9930414574a6583a7b7e11a8e6192"
|
|
25
25
|
dependencies = [
|
|
26
26
|
"anstyle",
|
|
27
27
|
"anstyle-parse",
|
|
@@ -34,36 +34,37 @@ dependencies = [
|
|
|
34
34
|
|
|
35
35
|
[[package]]
|
|
36
36
|
name = "anstyle"
|
|
37
|
-
version = "1.0.
|
|
37
|
+
version = "1.0.11"
|
|
38
38
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
-
checksum = "
|
|
39
|
+
checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "anstyle-parse"
|
|
43
|
-
version = "0.2.
|
|
43
|
+
version = "0.2.7"
|
|
44
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
45
|
+
checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
|
|
46
46
|
dependencies = [
|
|
47
47
|
"utf8parse",
|
|
48
48
|
]
|
|
49
49
|
|
|
50
50
|
[[package]]
|
|
51
51
|
name = "anstyle-query"
|
|
52
|
-
version = "1.1.
|
|
52
|
+
version = "1.1.4"
|
|
53
53
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
-
checksum = "
|
|
54
|
+
checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
|
|
55
55
|
dependencies = [
|
|
56
|
-
"windows-sys",
|
|
56
|
+
"windows-sys 0.60.2",
|
|
57
57
|
]
|
|
58
58
|
|
|
59
59
|
[[package]]
|
|
60
60
|
name = "anstyle-wincon"
|
|
61
|
-
version = "3.0.
|
|
61
|
+
version = "3.0.10"
|
|
62
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
-
checksum = "
|
|
63
|
+
checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
|
|
64
64
|
dependencies = [
|
|
65
65
|
"anstyle",
|
|
66
|
-
"
|
|
66
|
+
"once_cell_polyfill",
|
|
67
|
+
"windows-sys 0.60.2",
|
|
67
68
|
]
|
|
68
69
|
|
|
69
70
|
[[package]]
|
|
@@ -87,7 +88,7 @@ version = "0.69.5"
|
|
|
87
88
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
88
89
|
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
89
90
|
dependencies = [
|
|
90
|
-
"bitflags 2.
|
|
91
|
+
"bitflags 2.9.4",
|
|
91
92
|
"cexpr",
|
|
92
93
|
"clang-sys",
|
|
93
94
|
"itertools",
|
|
@@ -124,15 +125,15 @@ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
124
125
|
|
|
125
126
|
[[package]]
|
|
126
127
|
name = "bitflags"
|
|
127
|
-
version = "2.
|
|
128
|
+
version = "2.9.4"
|
|
128
129
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
129
|
-
checksum = "
|
|
130
|
+
checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
|
|
130
131
|
|
|
131
132
|
[[package]]
|
|
132
133
|
name = "bon"
|
|
133
|
-
version = "3.
|
|
134
|
+
version = "3.7.2"
|
|
134
135
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
-
checksum = "
|
|
136
|
+
checksum = "c2529c31017402be841eb45892278a6c21a000c0a17643af326c73a73f83f0fb"
|
|
136
137
|
dependencies = [
|
|
137
138
|
"bon-macros",
|
|
138
139
|
"rustversion",
|
|
@@ -140,9 +141,9 @@ dependencies = [
|
|
|
140
141
|
|
|
141
142
|
[[package]]
|
|
142
143
|
name = "bon-macros"
|
|
143
|
-
version = "3.
|
|
144
|
+
version = "3.7.2"
|
|
144
145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
-
checksum = "
|
|
146
|
+
checksum = "d82020dadcb845a345591863adb65d74fa8dc5c18a0b6d408470e13b7adc7005"
|
|
146
147
|
dependencies = [
|
|
147
148
|
"darling",
|
|
148
149
|
"ident_case",
|
|
@@ -155,26 +156,26 @@ dependencies = [
|
|
|
155
156
|
|
|
156
157
|
[[package]]
|
|
157
158
|
name = "bumpalo"
|
|
158
|
-
version = "3.
|
|
159
|
+
version = "3.19.0"
|
|
159
160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
160
|
-
checksum = "
|
|
161
|
+
checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
|
|
161
162
|
|
|
162
163
|
[[package]]
|
|
163
164
|
name = "caseless"
|
|
164
|
-
version = "0.2.
|
|
165
|
+
version = "0.2.2"
|
|
165
166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
167
|
+
checksum = "8b6fd507454086c8edfd769ca6ada439193cdb209c7681712ef6275cccbfe5d8"
|
|
167
168
|
dependencies = [
|
|
168
|
-
"regex",
|
|
169
169
|
"unicode-normalization",
|
|
170
170
|
]
|
|
171
171
|
|
|
172
172
|
[[package]]
|
|
173
173
|
name = "cc"
|
|
174
|
-
version = "1.2.
|
|
174
|
+
version = "1.2.37"
|
|
175
175
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
176
|
-
checksum = "
|
|
176
|
+
checksum = "65193589c6404eb80b450d618eaf9a2cafaaafd57ecce47370519ef674a7bd44"
|
|
177
177
|
dependencies = [
|
|
178
|
+
"find-msvc-tools",
|
|
178
179
|
"shlex",
|
|
179
180
|
]
|
|
180
181
|
|
|
@@ -189,9 +190,9 @@ dependencies = [
|
|
|
189
190
|
|
|
190
191
|
[[package]]
|
|
191
192
|
name = "cfg-if"
|
|
192
|
-
version = "1.0.
|
|
193
|
+
version = "1.0.3"
|
|
193
194
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
194
|
-
checksum = "
|
|
195
|
+
checksum = "2fd1289c04a9ea8cb22300a459a72a385d7c73d3259e2ed7dcb2af674838cfa9"
|
|
195
196
|
|
|
196
197
|
[[package]]
|
|
197
198
|
name = "clang-sys"
|
|
@@ -206,9 +207,9 @@ dependencies = [
|
|
|
206
207
|
|
|
207
208
|
[[package]]
|
|
208
209
|
name = "clap"
|
|
209
|
-
version = "4.5.
|
|
210
|
+
version = "4.5.47"
|
|
210
211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
211
|
-
checksum = "
|
|
212
|
+
checksum = "7eac00902d9d136acd712710d71823fb8ac8004ca445a89e73a41d45aa712931"
|
|
212
213
|
dependencies = [
|
|
213
214
|
"clap_builder",
|
|
214
215
|
"clap_derive",
|
|
@@ -216,9 +217,9 @@ dependencies = [
|
|
|
216
217
|
|
|
217
218
|
[[package]]
|
|
218
219
|
name = "clap_builder"
|
|
219
|
-
version = "4.5.
|
|
220
|
+
version = "4.5.47"
|
|
220
221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
-
checksum = "
|
|
222
|
+
checksum = "2ad9bbf750e73b5884fb8a211a9424a1906c1e156724260fdae972f31d70e1d6"
|
|
222
223
|
dependencies = [
|
|
223
224
|
"anstream",
|
|
224
225
|
"anstyle",
|
|
@@ -229,9 +230,9 @@ dependencies = [
|
|
|
229
230
|
|
|
230
231
|
[[package]]
|
|
231
232
|
name = "clap_derive"
|
|
232
|
-
version = "4.5.
|
|
233
|
+
version = "4.5.47"
|
|
233
234
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
234
|
-
checksum = "
|
|
235
|
+
checksum = "bbfd7eae0b0f1a6e63d4b13c9c478de77c2eb546fba158ad50b4203dc24b9f9c"
|
|
235
236
|
dependencies = [
|
|
236
237
|
"heck",
|
|
237
238
|
"proc-macro2",
|
|
@@ -241,15 +242,15 @@ dependencies = [
|
|
|
241
242
|
|
|
242
243
|
[[package]]
|
|
243
244
|
name = "clap_lex"
|
|
244
|
-
version = "0.7.
|
|
245
|
+
version = "0.7.5"
|
|
245
246
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
246
|
-
checksum = "
|
|
247
|
+
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
|
|
247
248
|
|
|
248
249
|
[[package]]
|
|
249
250
|
name = "colorchoice"
|
|
250
|
-
version = "1.0.
|
|
251
|
+
version = "1.0.4"
|
|
251
252
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
252
|
-
checksum = "
|
|
253
|
+
checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
|
|
253
254
|
|
|
254
255
|
[[package]]
|
|
255
256
|
name = "commonmarker"
|
|
@@ -265,9 +266,9 @@ dependencies = [
|
|
|
265
266
|
|
|
266
267
|
[[package]]
|
|
267
268
|
name = "comrak"
|
|
268
|
-
version = "0.
|
|
269
|
+
version = "0.41.1"
|
|
269
270
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
-
checksum = "
|
|
271
|
+
checksum = "9a45df55bc7f91b899160098a7c9b35d6e575dfb4fe22100f014b41a171af2c6"
|
|
271
272
|
dependencies = [
|
|
272
273
|
"bon",
|
|
273
274
|
"caseless",
|
|
@@ -285,18 +286,18 @@ dependencies = [
|
|
|
285
286
|
|
|
286
287
|
[[package]]
|
|
287
288
|
name = "crc32fast"
|
|
288
|
-
version = "1.
|
|
289
|
+
version = "1.5.0"
|
|
289
290
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
-
checksum = "
|
|
291
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
291
292
|
dependencies = [
|
|
292
293
|
"cfg-if",
|
|
293
294
|
]
|
|
294
295
|
|
|
295
296
|
[[package]]
|
|
296
297
|
name = "darling"
|
|
297
|
-
version = "0.
|
|
298
|
+
version = "0.21.3"
|
|
298
299
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
299
|
-
checksum = "
|
|
300
|
+
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
300
301
|
dependencies = [
|
|
301
302
|
"darling_core",
|
|
302
303
|
"darling_macro",
|
|
@@ -304,9 +305,9 @@ dependencies = [
|
|
|
304
305
|
|
|
305
306
|
[[package]]
|
|
306
307
|
name = "darling_core"
|
|
307
|
-
version = "0.
|
|
308
|
+
version = "0.21.3"
|
|
308
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
309
|
-
checksum = "
|
|
310
|
+
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
310
311
|
dependencies = [
|
|
311
312
|
"fnv",
|
|
312
313
|
"ident_case",
|
|
@@ -318,9 +319,9 @@ dependencies = [
|
|
|
318
319
|
|
|
319
320
|
[[package]]
|
|
320
321
|
name = "darling_macro"
|
|
321
|
-
version = "0.
|
|
322
|
+
version = "0.21.3"
|
|
322
323
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
-
checksum = "
|
|
324
|
+
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
324
325
|
dependencies = [
|
|
325
326
|
"darling_core",
|
|
326
327
|
"quote",
|
|
@@ -329,24 +330,24 @@ dependencies = [
|
|
|
329
330
|
|
|
330
331
|
[[package]]
|
|
331
332
|
name = "deranged"
|
|
332
|
-
version = "0.3
|
|
333
|
+
version = "0.5.3"
|
|
333
334
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
-
checksum = "
|
|
335
|
+
checksum = "d630bccd429a5bb5a64b5e94f693bfc48c9f8566418fda4c494cc94f911f87cc"
|
|
335
336
|
dependencies = [
|
|
336
337
|
"powerfmt",
|
|
337
338
|
]
|
|
338
339
|
|
|
339
340
|
[[package]]
|
|
340
341
|
name = "deunicode"
|
|
341
|
-
version = "1.6.
|
|
342
|
+
version = "1.6.2"
|
|
342
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
-
checksum = "
|
|
344
|
+
checksum = "abd57806937c9cc163efc8ea3910e00a62e2aeb0b8119f1793a978088f8f6b04"
|
|
344
345
|
|
|
345
346
|
[[package]]
|
|
346
347
|
name = "either"
|
|
347
|
-
version = "1.
|
|
348
|
+
version = "1.15.0"
|
|
348
349
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
-
checksum = "
|
|
350
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
350
351
|
|
|
351
352
|
[[package]]
|
|
352
353
|
name = "emojis"
|
|
@@ -365,18 +366,18 @@ checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
|
|
|
365
366
|
|
|
366
367
|
[[package]]
|
|
367
368
|
name = "equivalent"
|
|
368
|
-
version = "1.0.
|
|
369
|
+
version = "1.0.2"
|
|
369
370
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
-
checksum = "
|
|
371
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
371
372
|
|
|
372
373
|
[[package]]
|
|
373
374
|
name = "errno"
|
|
374
|
-
version = "0.3.
|
|
375
|
+
version = "0.3.14"
|
|
375
376
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
-
checksum = "
|
|
377
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
377
378
|
dependencies = [
|
|
378
379
|
"libc",
|
|
379
|
-
"windows-sys",
|
|
380
|
+
"windows-sys 0.61.0",
|
|
380
381
|
]
|
|
381
382
|
|
|
382
383
|
[[package]]
|
|
@@ -389,11 +390,17 @@ dependencies = [
|
|
|
389
390
|
"regex",
|
|
390
391
|
]
|
|
391
392
|
|
|
393
|
+
[[package]]
|
|
394
|
+
name = "find-msvc-tools"
|
|
395
|
+
version = "0.1.1"
|
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
397
|
+
checksum = "7fd99930f64d146689264c637b5af2f0233a933bef0d8570e2526bf9e083192d"
|
|
398
|
+
|
|
392
399
|
[[package]]
|
|
393
400
|
name = "flate2"
|
|
394
|
-
version = "1.
|
|
401
|
+
version = "1.1.2"
|
|
395
402
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
396
|
-
checksum = "
|
|
403
|
+
checksum = "4a3d7db9596fecd151c5f638c0ee5d5bd487b6e0ea232e5dc96d5250f6f94b1d"
|
|
397
404
|
dependencies = [
|
|
398
405
|
"crc32fast",
|
|
399
406
|
"miniz_oxide",
|
|
@@ -407,15 +414,15 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
407
414
|
|
|
408
415
|
[[package]]
|
|
409
416
|
name = "glob"
|
|
410
|
-
version = "0.3.
|
|
417
|
+
version = "0.3.3"
|
|
411
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
-
checksum = "
|
|
419
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
413
420
|
|
|
414
421
|
[[package]]
|
|
415
422
|
name = "hashbrown"
|
|
416
|
-
version = "0.15.
|
|
423
|
+
version = "0.15.5"
|
|
417
424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
-
checksum = "
|
|
425
|
+
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
419
426
|
|
|
420
427
|
[[package]]
|
|
421
428
|
name = "heck"
|
|
@@ -431,9 +438,9 @@ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
431
438
|
|
|
432
439
|
[[package]]
|
|
433
440
|
name = "indexmap"
|
|
434
|
-
version = "2.
|
|
441
|
+
version = "2.11.1"
|
|
435
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
-
checksum = "
|
|
443
|
+
checksum = "206a8042aec68fa4a62e8d3f7aa4ceb508177d9324faf261e1959e495b7a1921"
|
|
437
444
|
dependencies = [
|
|
438
445
|
"equivalent",
|
|
439
446
|
"hashbrown",
|
|
@@ -456,9 +463,9 @@ dependencies = [
|
|
|
456
463
|
|
|
457
464
|
[[package]]
|
|
458
465
|
name = "itoa"
|
|
459
|
-
version = "1.0.
|
|
466
|
+
version = "1.0.15"
|
|
460
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
461
|
-
checksum = "
|
|
468
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
462
469
|
|
|
463
470
|
[[package]]
|
|
464
471
|
name = "lazy_static"
|
|
@@ -474,15 +481,15 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
474
481
|
|
|
475
482
|
[[package]]
|
|
476
483
|
name = "libc"
|
|
477
|
-
version = "0.2.
|
|
484
|
+
version = "0.2.175"
|
|
478
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "
|
|
486
|
+
checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
|
|
480
487
|
|
|
481
488
|
[[package]]
|
|
482
489
|
name = "libloading"
|
|
483
|
-
version = "0.8.
|
|
490
|
+
version = "0.8.8"
|
|
484
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
485
|
-
checksum = "
|
|
492
|
+
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
|
|
486
493
|
dependencies = [
|
|
487
494
|
"cfg-if",
|
|
488
495
|
"windows-targets",
|
|
@@ -496,21 +503,21 @@ checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
|
|
496
503
|
|
|
497
504
|
[[package]]
|
|
498
505
|
name = "linux-raw-sys"
|
|
499
|
-
version = "0.
|
|
506
|
+
version = "0.11.0"
|
|
500
507
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "
|
|
508
|
+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
|
|
502
509
|
|
|
503
510
|
[[package]]
|
|
504
511
|
name = "log"
|
|
505
|
-
version = "0.4.
|
|
512
|
+
version = "0.4.28"
|
|
506
513
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
-
checksum = "
|
|
514
|
+
checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
|
|
508
515
|
|
|
509
516
|
[[package]]
|
|
510
517
|
name = "magnus"
|
|
511
|
-
version = "0.
|
|
518
|
+
version = "0.8.1"
|
|
512
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
-
checksum = "
|
|
520
|
+
checksum = "bd2ac6e71886be00ac34db92aa732c793c5107c95191805b9a1c7e70e6d342e0"
|
|
514
521
|
dependencies = [
|
|
515
522
|
"magnus-macros",
|
|
516
523
|
"rb-sys",
|
|
@@ -520,9 +527,9 @@ dependencies = [
|
|
|
520
527
|
|
|
521
528
|
[[package]]
|
|
522
529
|
name = "magnus-macros"
|
|
523
|
-
version = "0.
|
|
530
|
+
version = "0.8.0"
|
|
524
531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
525
|
-
checksum = "
|
|
532
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
526
533
|
dependencies = [
|
|
527
534
|
"proc-macro2",
|
|
528
535
|
"quote",
|
|
@@ -531,9 +538,9 @@ dependencies = [
|
|
|
531
538
|
|
|
532
539
|
[[package]]
|
|
533
540
|
name = "memchr"
|
|
534
|
-
version = "2.7.
|
|
541
|
+
version = "2.7.5"
|
|
535
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
-
checksum = "
|
|
543
|
+
checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
|
|
537
544
|
|
|
538
545
|
[[package]]
|
|
539
546
|
name = "minimal-lexical"
|
|
@@ -543,9 +550,9 @@ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
543
550
|
|
|
544
551
|
[[package]]
|
|
545
552
|
name = "miniz_oxide"
|
|
546
|
-
version = "0.8.
|
|
553
|
+
version = "0.8.9"
|
|
547
554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
-
checksum = "
|
|
555
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
549
556
|
dependencies = [
|
|
550
557
|
"adler2",
|
|
551
558
|
]
|
|
@@ -568,17 +575,23 @@ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
|
568
575
|
|
|
569
576
|
[[package]]
|
|
570
577
|
name = "once_cell"
|
|
571
|
-
version = "1.
|
|
578
|
+
version = "1.21.3"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
|
|
581
|
+
|
|
582
|
+
[[package]]
|
|
583
|
+
name = "once_cell_polyfill"
|
|
584
|
+
version = "1.70.1"
|
|
572
585
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
-
checksum = "
|
|
586
|
+
checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
|
|
574
587
|
|
|
575
588
|
[[package]]
|
|
576
589
|
name = "onig"
|
|
577
|
-
version = "6.
|
|
590
|
+
version = "6.5.1"
|
|
578
591
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
-
checksum = "
|
|
592
|
+
checksum = "336b9c63443aceef14bea841b899035ae3abe89b7c486aaf4c5bd8aafedac3f0"
|
|
580
593
|
dependencies = [
|
|
581
|
-
"bitflags
|
|
594
|
+
"bitflags 2.9.4",
|
|
582
595
|
"libc",
|
|
583
596
|
"once_cell",
|
|
584
597
|
"onig_sys",
|
|
@@ -586,9 +599,9 @@ dependencies = [
|
|
|
586
599
|
|
|
587
600
|
[[package]]
|
|
588
601
|
name = "onig_sys"
|
|
589
|
-
version = "69.
|
|
602
|
+
version = "69.9.1"
|
|
590
603
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
591
|
-
checksum = "
|
|
604
|
+
checksum = "c7f86c6eef3d6df15f23bcfb6af487cbd2fed4e5581d58d5bf1f5f8b7f6727dc"
|
|
592
605
|
dependencies = [
|
|
593
606
|
"cc",
|
|
594
607
|
"pkg-config",
|
|
@@ -596,33 +609,33 @@ dependencies = [
|
|
|
596
609
|
|
|
597
610
|
[[package]]
|
|
598
611
|
name = "phf"
|
|
599
|
-
version = "0.11.
|
|
612
|
+
version = "0.11.3"
|
|
600
613
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
601
|
-
checksum = "
|
|
614
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
602
615
|
dependencies = [
|
|
603
616
|
"phf_shared",
|
|
604
617
|
]
|
|
605
618
|
|
|
606
619
|
[[package]]
|
|
607
620
|
name = "phf_shared"
|
|
608
|
-
version = "0.11.
|
|
621
|
+
version = "0.11.3"
|
|
609
622
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
610
|
-
checksum = "
|
|
623
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
611
624
|
dependencies = [
|
|
612
625
|
"siphasher",
|
|
613
626
|
]
|
|
614
627
|
|
|
615
628
|
[[package]]
|
|
616
629
|
name = "pkg-config"
|
|
617
|
-
version = "0.3.
|
|
630
|
+
version = "0.3.32"
|
|
618
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
619
|
-
checksum = "
|
|
632
|
+
checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
|
|
620
633
|
|
|
621
634
|
[[package]]
|
|
622
635
|
name = "plist"
|
|
623
|
-
version = "1.7.
|
|
636
|
+
version = "1.7.4"
|
|
624
637
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
-
checksum = "
|
|
638
|
+
checksum = "3af6b589e163c5a788fab00ce0c0366f6efbb9959c2f9874b224936af7fce7e1"
|
|
626
639
|
dependencies = [
|
|
627
640
|
"base64",
|
|
628
641
|
"indexmap",
|
|
@@ -639,9 +652,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
|
639
652
|
|
|
640
653
|
[[package]]
|
|
641
654
|
name = "prettyplease"
|
|
642
|
-
version = "0.2.
|
|
655
|
+
version = "0.2.37"
|
|
643
656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
-
checksum = "
|
|
657
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
645
658
|
dependencies = [
|
|
646
659
|
"proc-macro2",
|
|
647
660
|
"syn",
|
|
@@ -649,45 +662,45 @@ dependencies = [
|
|
|
649
662
|
|
|
650
663
|
[[package]]
|
|
651
664
|
name = "proc-macro2"
|
|
652
|
-
version = "1.0.
|
|
665
|
+
version = "1.0.101"
|
|
653
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
654
|
-
checksum = "
|
|
667
|
+
checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
|
|
655
668
|
dependencies = [
|
|
656
669
|
"unicode-ident",
|
|
657
670
|
]
|
|
658
671
|
|
|
659
672
|
[[package]]
|
|
660
673
|
name = "quick-xml"
|
|
661
|
-
version = "0.
|
|
674
|
+
version = "0.38.3"
|
|
662
675
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
-
checksum = "
|
|
676
|
+
checksum = "42a232e7487fc2ef313d96dde7948e7a3c05101870d8985e4fd8d26aedd27b89"
|
|
664
677
|
dependencies = [
|
|
665
678
|
"memchr",
|
|
666
679
|
]
|
|
667
680
|
|
|
668
681
|
[[package]]
|
|
669
682
|
name = "quote"
|
|
670
|
-
version = "1.0.
|
|
683
|
+
version = "1.0.40"
|
|
671
684
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
672
|
-
checksum = "
|
|
685
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
673
686
|
dependencies = [
|
|
674
687
|
"proc-macro2",
|
|
675
688
|
]
|
|
676
689
|
|
|
677
690
|
[[package]]
|
|
678
691
|
name = "rb-sys"
|
|
679
|
-
version = "0.9.
|
|
692
|
+
version = "0.9.117"
|
|
680
693
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
681
|
-
checksum = "
|
|
694
|
+
checksum = "f900d1ce4629a2ebffaf5de74bd8f9c1188d4c5ed406df02f97e22f77a006f44"
|
|
682
695
|
dependencies = [
|
|
683
696
|
"rb-sys-build",
|
|
684
697
|
]
|
|
685
698
|
|
|
686
699
|
[[package]]
|
|
687
700
|
name = "rb-sys-build"
|
|
688
|
-
version = "0.9.
|
|
701
|
+
version = "0.9.117"
|
|
689
702
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
690
|
-
checksum = "
|
|
703
|
+
checksum = "ef1e9c857028f631056bcd6d88cec390c751e343ce2223ddb26d23eb4a151d59"
|
|
691
704
|
dependencies = [
|
|
692
705
|
"bindgen",
|
|
693
706
|
"lazy_static",
|
|
@@ -700,9 +713,9 @@ dependencies = [
|
|
|
700
713
|
|
|
701
714
|
[[package]]
|
|
702
715
|
name = "rb-sys-env"
|
|
703
|
-
version = "0.
|
|
716
|
+
version = "0.2.2"
|
|
704
717
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
-
checksum = "
|
|
718
|
+
checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
|
|
706
719
|
|
|
707
720
|
[[package]]
|
|
708
721
|
name = "rctree"
|
|
@@ -712,9 +725,9 @@ checksum = "e03e7866abec1101869ffa8e2c8355c4c2419d0214ece0cc3e428e5b94dea6e9"
|
|
|
712
725
|
|
|
713
726
|
[[package]]
|
|
714
727
|
name = "regex"
|
|
715
|
-
version = "1.11.
|
|
728
|
+
version = "1.11.2"
|
|
716
729
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
-
checksum = "
|
|
730
|
+
checksum = "23d7fd106d8c02486a8d64e778353d1cffe08ce79ac2e82f540c86d0facf6912"
|
|
718
731
|
dependencies = [
|
|
719
732
|
"aho-corasick",
|
|
720
733
|
"memchr",
|
|
@@ -724,9 +737,9 @@ dependencies = [
|
|
|
724
737
|
|
|
725
738
|
[[package]]
|
|
726
739
|
name = "regex-automata"
|
|
727
|
-
version = "0.4.
|
|
740
|
+
version = "0.4.10"
|
|
728
741
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
-
checksum = "
|
|
742
|
+
checksum = "6b9458fa0bfeeac22b5ca447c63aaf45f28439a709ccd244698632f9aa6394d6"
|
|
730
743
|
dependencies = [
|
|
731
744
|
"aho-corasick",
|
|
732
745
|
"memchr",
|
|
@@ -735,9 +748,9 @@ dependencies = [
|
|
|
735
748
|
|
|
736
749
|
[[package]]
|
|
737
750
|
name = "regex-syntax"
|
|
738
|
-
version = "0.8.
|
|
751
|
+
version = "0.8.6"
|
|
739
752
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
740
|
-
checksum = "
|
|
753
|
+
checksum = "caf4aa5b0f434c91fe5c7f1ecb6a5ece2130b02ad2a590589dda5146df959001"
|
|
741
754
|
|
|
742
755
|
[[package]]
|
|
743
756
|
name = "rustc-hash"
|
|
@@ -747,28 +760,28 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
|
747
760
|
|
|
748
761
|
[[package]]
|
|
749
762
|
name = "rustix"
|
|
750
|
-
version = "
|
|
763
|
+
version = "1.1.2"
|
|
751
764
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
752
|
-
checksum = "
|
|
765
|
+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
|
|
753
766
|
dependencies = [
|
|
754
|
-
"bitflags 2.
|
|
767
|
+
"bitflags 2.9.4",
|
|
755
768
|
"errno",
|
|
756
769
|
"libc",
|
|
757
770
|
"linux-raw-sys",
|
|
758
|
-
"windows-sys",
|
|
771
|
+
"windows-sys 0.61.0",
|
|
759
772
|
]
|
|
760
773
|
|
|
761
774
|
[[package]]
|
|
762
775
|
name = "rustversion"
|
|
763
|
-
version = "1.0.
|
|
776
|
+
version = "1.0.22"
|
|
764
777
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
-
checksum = "
|
|
778
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
766
779
|
|
|
767
780
|
[[package]]
|
|
768
781
|
name = "ryu"
|
|
769
|
-
version = "1.0.
|
|
782
|
+
version = "1.0.20"
|
|
770
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
-
checksum = "
|
|
784
|
+
checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
|
|
772
785
|
|
|
773
786
|
[[package]]
|
|
774
787
|
name = "same-file"
|
|
@@ -781,24 +794,33 @@ dependencies = [
|
|
|
781
794
|
|
|
782
795
|
[[package]]
|
|
783
796
|
name = "seq-macro"
|
|
784
|
-
version = "0.3.
|
|
797
|
+
version = "0.3.6"
|
|
785
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
786
|
-
checksum = "
|
|
799
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
787
800
|
|
|
788
801
|
[[package]]
|
|
789
802
|
name = "serde"
|
|
790
|
-
version = "1.0.
|
|
803
|
+
version = "1.0.223"
|
|
791
804
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
792
|
-
checksum = "
|
|
805
|
+
checksum = "a505d71960adde88e293da5cb5eda57093379f64e61cf77bf0e6a63af07a7bac"
|
|
806
|
+
dependencies = [
|
|
807
|
+
"serde_core",
|
|
808
|
+
]
|
|
809
|
+
|
|
810
|
+
[[package]]
|
|
811
|
+
name = "serde_core"
|
|
812
|
+
version = "1.0.223"
|
|
813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
814
|
+
checksum = "20f57cbd357666aa7b3ac84a90b4ea328f1d4ddb6772b430caa5d9e1309bb9e9"
|
|
793
815
|
dependencies = [
|
|
794
816
|
"serde_derive",
|
|
795
817
|
]
|
|
796
818
|
|
|
797
819
|
[[package]]
|
|
798
820
|
name = "serde_derive"
|
|
799
|
-
version = "1.0.
|
|
821
|
+
version = "1.0.223"
|
|
800
822
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
801
|
-
checksum = "
|
|
823
|
+
checksum = "3d428d07faf17e306e699ec1e91996e5a165ba5d6bce5b5155173e91a8a01a56"
|
|
802
824
|
dependencies = [
|
|
803
825
|
"proc-macro2",
|
|
804
826
|
"quote",
|
|
@@ -807,14 +829,15 @@ dependencies = [
|
|
|
807
829
|
|
|
808
830
|
[[package]]
|
|
809
831
|
name = "serde_json"
|
|
810
|
-
version = "1.0.
|
|
832
|
+
version = "1.0.145"
|
|
811
833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
-
checksum = "
|
|
834
|
+
checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
|
|
813
835
|
dependencies = [
|
|
814
836
|
"itoa",
|
|
815
837
|
"memchr",
|
|
816
838
|
"ryu",
|
|
817
839
|
"serde",
|
|
840
|
+
"serde_core",
|
|
818
841
|
]
|
|
819
842
|
|
|
820
843
|
[[package]]
|
|
@@ -831,9 +854,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
831
854
|
|
|
832
855
|
[[package]]
|
|
833
856
|
name = "siphasher"
|
|
834
|
-
version = "0.
|
|
857
|
+
version = "1.0.1"
|
|
835
858
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
-
checksum = "
|
|
859
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
837
860
|
|
|
838
861
|
[[package]]
|
|
839
862
|
name = "slug"
|
|
@@ -853,9 +876,9 @@ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
|
853
876
|
|
|
854
877
|
[[package]]
|
|
855
878
|
name = "syn"
|
|
856
|
-
version = "2.0.
|
|
879
|
+
version = "2.0.106"
|
|
857
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
858
|
-
checksum = "
|
|
881
|
+
checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
|
|
859
882
|
dependencies = [
|
|
860
883
|
"proc-macro2",
|
|
861
884
|
"quote",
|
|
@@ -887,12 +910,12 @@ dependencies = [
|
|
|
887
910
|
|
|
888
911
|
[[package]]
|
|
889
912
|
name = "terminal_size"
|
|
890
|
-
version = "0.4.
|
|
913
|
+
version = "0.4.3"
|
|
891
914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
892
|
-
checksum = "
|
|
915
|
+
checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
|
|
893
916
|
dependencies = [
|
|
894
917
|
"rustix",
|
|
895
|
-
"windows-sys",
|
|
918
|
+
"windows-sys 0.60.2",
|
|
896
919
|
]
|
|
897
920
|
|
|
898
921
|
[[package]]
|
|
@@ -917,12 +940,11 @@ dependencies = [
|
|
|
917
940
|
|
|
918
941
|
[[package]]
|
|
919
942
|
name = "time"
|
|
920
|
-
version = "0.3.
|
|
943
|
+
version = "0.3.43"
|
|
921
944
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
-
checksum = "
|
|
945
|
+
checksum = "83bde6f1ec10e72d583d91623c939f623002284ef622b87de38cfd546cbf2031"
|
|
923
946
|
dependencies = [
|
|
924
947
|
"deranged",
|
|
925
|
-
"itoa",
|
|
926
948
|
"num-conv",
|
|
927
949
|
"powerfmt",
|
|
928
950
|
"serde",
|
|
@@ -932,15 +954,15 @@ dependencies = [
|
|
|
932
954
|
|
|
933
955
|
[[package]]
|
|
934
956
|
name = "time-core"
|
|
935
|
-
version = "0.1.
|
|
957
|
+
version = "0.1.6"
|
|
936
958
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
-
checksum = "
|
|
959
|
+
checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
|
|
938
960
|
|
|
939
961
|
[[package]]
|
|
940
962
|
name = "time-macros"
|
|
941
|
-
version = "0.2.
|
|
963
|
+
version = "0.2.24"
|
|
942
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
-
checksum = "
|
|
965
|
+
checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
|
|
944
966
|
dependencies = [
|
|
945
967
|
"num-conv",
|
|
946
968
|
"time-core",
|
|
@@ -948,9 +970,9 @@ dependencies = [
|
|
|
948
970
|
|
|
949
971
|
[[package]]
|
|
950
972
|
name = "tinyvec"
|
|
951
|
-
version = "1.
|
|
973
|
+
version = "1.10.0"
|
|
952
974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
953
|
-
checksum = "
|
|
975
|
+
checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
|
|
954
976
|
dependencies = [
|
|
955
977
|
"tinyvec_macros",
|
|
956
978
|
]
|
|
@@ -969,9 +991,9 @@ checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
|
969
991
|
|
|
970
992
|
[[package]]
|
|
971
993
|
name = "unicode-ident"
|
|
972
|
-
version = "1.0.
|
|
994
|
+
version = "1.0.19"
|
|
973
995
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
974
|
-
checksum = "
|
|
996
|
+
checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
|
|
975
997
|
|
|
976
998
|
[[package]]
|
|
977
999
|
name = "unicode-normalization"
|
|
@@ -1006,20 +1028,22 @@ dependencies = [
|
|
|
1006
1028
|
|
|
1007
1029
|
[[package]]
|
|
1008
1030
|
name = "wasm-bindgen"
|
|
1009
|
-
version = "0.2.
|
|
1031
|
+
version = "0.2.101"
|
|
1010
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1011
|
-
checksum = "
|
|
1033
|
+
checksum = "7e14915cadd45b529bb8d1f343c4ed0ac1de926144b746e2710f9cd05df6603b"
|
|
1012
1034
|
dependencies = [
|
|
1013
1035
|
"cfg-if",
|
|
1014
1036
|
"once_cell",
|
|
1037
|
+
"rustversion",
|
|
1015
1038
|
"wasm-bindgen-macro",
|
|
1039
|
+
"wasm-bindgen-shared",
|
|
1016
1040
|
]
|
|
1017
1041
|
|
|
1018
1042
|
[[package]]
|
|
1019
1043
|
name = "wasm-bindgen-backend"
|
|
1020
|
-
version = "0.2.
|
|
1044
|
+
version = "0.2.101"
|
|
1021
1045
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
-
checksum = "
|
|
1046
|
+
checksum = "e28d1ba982ca7923fd01448d5c30c6864d0a14109560296a162f80f305fb93bb"
|
|
1023
1047
|
dependencies = [
|
|
1024
1048
|
"bumpalo",
|
|
1025
1049
|
"log",
|
|
@@ -1031,9 +1055,9 @@ dependencies = [
|
|
|
1031
1055
|
|
|
1032
1056
|
[[package]]
|
|
1033
1057
|
name = "wasm-bindgen-macro"
|
|
1034
|
-
version = "0.2.
|
|
1058
|
+
version = "0.2.101"
|
|
1035
1059
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1036
|
-
checksum = "
|
|
1060
|
+
checksum = "7c3d463ae3eff775b0c45df9da45d68837702ac35af998361e2c84e7c5ec1b0d"
|
|
1037
1061
|
dependencies = [
|
|
1038
1062
|
"quote",
|
|
1039
1063
|
"wasm-bindgen-macro-support",
|
|
@@ -1041,9 +1065,9 @@ dependencies = [
|
|
|
1041
1065
|
|
|
1042
1066
|
[[package]]
|
|
1043
1067
|
name = "wasm-bindgen-macro-support"
|
|
1044
|
-
version = "0.2.
|
|
1068
|
+
version = "0.2.101"
|
|
1045
1069
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1046
|
-
checksum = "
|
|
1070
|
+
checksum = "7bb4ce89b08211f923caf51d527662b75bdc9c9c7aab40f86dcb9fb85ac552aa"
|
|
1047
1071
|
dependencies = [
|
|
1048
1072
|
"proc-macro2",
|
|
1049
1073
|
"quote",
|
|
@@ -1054,34 +1078,59 @@ dependencies = [
|
|
|
1054
1078
|
|
|
1055
1079
|
[[package]]
|
|
1056
1080
|
name = "wasm-bindgen-shared"
|
|
1057
|
-
version = "0.2.
|
|
1081
|
+
version = "0.2.101"
|
|
1058
1082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
-
checksum = "
|
|
1083
|
+
checksum = "f143854a3b13752c6950862c906306adb27c7e839f7414cec8fea35beab624c1"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"unicode-ident",
|
|
1086
|
+
]
|
|
1060
1087
|
|
|
1061
1088
|
[[package]]
|
|
1062
1089
|
name = "winapi-util"
|
|
1063
|
-
version = "0.1.
|
|
1090
|
+
version = "0.1.11"
|
|
1064
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
-
checksum = "
|
|
1092
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
1066
1093
|
dependencies = [
|
|
1067
|
-
"windows-sys",
|
|
1094
|
+
"windows-sys 0.61.0",
|
|
1068
1095
|
]
|
|
1069
1096
|
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "windows-link"
|
|
1099
|
+
version = "0.1.3"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "windows-link"
|
|
1105
|
+
version = "0.2.0"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "45e46c0661abb7180e7b9c281db115305d49ca1709ab8242adf09666d2173c65"
|
|
1108
|
+
|
|
1070
1109
|
[[package]]
|
|
1071
1110
|
name = "windows-sys"
|
|
1072
|
-
version = "0.
|
|
1111
|
+
version = "0.60.2"
|
|
1073
1112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
-
checksum = "
|
|
1113
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1075
1114
|
dependencies = [
|
|
1076
1115
|
"windows-targets",
|
|
1077
1116
|
]
|
|
1078
1117
|
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "windows-sys"
|
|
1120
|
+
version = "0.61.0"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "e201184e40b2ede64bc2ea34968b28e33622acdbbf37104f0e4a33f7abe657aa"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"windows-link 0.2.0",
|
|
1125
|
+
]
|
|
1126
|
+
|
|
1079
1127
|
[[package]]
|
|
1080
1128
|
name = "windows-targets"
|
|
1081
|
-
version = "0.
|
|
1129
|
+
version = "0.53.3"
|
|
1082
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
-
checksum = "
|
|
1131
|
+
checksum = "d5fe6031c4041849d7c496a8ded650796e7b6ecc19df1a431c1a363342e5dc91"
|
|
1084
1132
|
dependencies = [
|
|
1133
|
+
"windows-link 0.1.3",
|
|
1085
1134
|
"windows_aarch64_gnullvm",
|
|
1086
1135
|
"windows_aarch64_msvc",
|
|
1087
1136
|
"windows_i686_gnu",
|
|
@@ -1094,51 +1143,51 @@ dependencies = [
|
|
|
1094
1143
|
|
|
1095
1144
|
[[package]]
|
|
1096
1145
|
name = "windows_aarch64_gnullvm"
|
|
1097
|
-
version = "0.
|
|
1146
|
+
version = "0.53.0"
|
|
1098
1147
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
-
checksum = "
|
|
1148
|
+
checksum = "86b8d5f90ddd19cb4a147a5fa63ca848db3df085e25fee3cc10b39b6eebae764"
|
|
1100
1149
|
|
|
1101
1150
|
[[package]]
|
|
1102
1151
|
name = "windows_aarch64_msvc"
|
|
1103
|
-
version = "0.
|
|
1152
|
+
version = "0.53.0"
|
|
1104
1153
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1154
|
+
checksum = "c7651a1f62a11b8cbd5e0d42526e55f2c99886c77e007179efff86c2b137e66c"
|
|
1106
1155
|
|
|
1107
1156
|
[[package]]
|
|
1108
1157
|
name = "windows_i686_gnu"
|
|
1109
|
-
version = "0.
|
|
1158
|
+
version = "0.53.0"
|
|
1110
1159
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
-
checksum = "
|
|
1160
|
+
checksum = "c1dc67659d35f387f5f6c479dc4e28f1d4bb90ddd1a5d3da2e5d97b42d6272c3"
|
|
1112
1161
|
|
|
1113
1162
|
[[package]]
|
|
1114
1163
|
name = "windows_i686_gnullvm"
|
|
1115
|
-
version = "0.
|
|
1164
|
+
version = "0.53.0"
|
|
1116
1165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
-
checksum = "
|
|
1166
|
+
checksum = "9ce6ccbdedbf6d6354471319e781c0dfef054c81fbc7cf83f338a4296c0cae11"
|
|
1118
1167
|
|
|
1119
1168
|
[[package]]
|
|
1120
1169
|
name = "windows_i686_msvc"
|
|
1121
|
-
version = "0.
|
|
1170
|
+
version = "0.53.0"
|
|
1122
1171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1123
|
-
checksum = "
|
|
1172
|
+
checksum = "581fee95406bb13382d2f65cd4a908ca7b1e4c2f1917f143ba16efe98a589b5d"
|
|
1124
1173
|
|
|
1125
1174
|
[[package]]
|
|
1126
1175
|
name = "windows_x86_64_gnu"
|
|
1127
|
-
version = "0.
|
|
1176
|
+
version = "0.53.0"
|
|
1128
1177
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
-
checksum = "
|
|
1178
|
+
checksum = "2e55b5ac9ea33f2fc1716d1742db15574fd6fc8dadc51caab1c16a3d3b4190ba"
|
|
1130
1179
|
|
|
1131
1180
|
[[package]]
|
|
1132
1181
|
name = "windows_x86_64_gnullvm"
|
|
1133
|
-
version = "0.
|
|
1182
|
+
version = "0.53.0"
|
|
1134
1183
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
-
checksum = "
|
|
1184
|
+
checksum = "0a6e035dd0599267ce1ee132e51c27dd29437f63325753051e71dd9e42406c57"
|
|
1136
1185
|
|
|
1137
1186
|
[[package]]
|
|
1138
1187
|
name = "windows_x86_64_msvc"
|
|
1139
|
-
version = "0.
|
|
1188
|
+
version = "0.53.0"
|
|
1140
1189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1141
|
-
checksum = "
|
|
1190
|
+
checksum = "271414315aff87387382ec3d271b52d7ae78726f5d44ac98b4f4030c91880486"
|
|
1142
1191
|
|
|
1143
1192
|
[[package]]
|
|
1144
1193
|
name = "xdg"
|