mayu-css 0.0.2-aarch64-linux → 0.1.0-aarch64-linux
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 +346 -304
- data/lib/mayu/css/3.0/ext.so +0 -0
- data/lib/mayu/css/3.1/ext.so +0 -0
- data/lib/mayu/css/3.2/ext.so +0 -0
- data/lib/mayu/css/3.3/ext.so +0 -0
- data/lib/mayu/css/version.rb +1 -1
- data/lib/mayu/css.rb +96 -3
- metadata +26 -10
data/Cargo.lock
CHANGED
@@ -4,20 +4,20 @@ version = 3
|
|
4
4
|
|
5
5
|
[[package]]
|
6
6
|
name = "ahash"
|
7
|
-
version = "0.7.
|
7
|
+
version = "0.7.7"
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
-
checksum = "
|
9
|
+
checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
|
10
10
|
dependencies = [
|
11
|
-
"getrandom
|
11
|
+
"getrandom",
|
12
12
|
"once_cell",
|
13
13
|
"version_check",
|
14
14
|
]
|
15
15
|
|
16
16
|
[[package]]
|
17
17
|
name = "aho-corasick"
|
18
|
-
version = "
|
18
|
+
version = "1.1.2"
|
19
19
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
20
|
-
checksum = "
|
20
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
21
21
|
dependencies = [
|
22
22
|
"memchr",
|
23
23
|
]
|
@@ -30,9 +30,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
30
30
|
|
31
31
|
[[package]]
|
32
32
|
name = "base64"
|
33
|
-
version = "0.21.
|
33
|
+
version = "0.21.5"
|
34
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
35
|
-
checksum = "
|
35
|
+
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
|
36
36
|
|
37
37
|
[[package]]
|
38
38
|
name = "base64-simd"
|
@@ -45,11 +45,11 @@ dependencies = [
|
|
45
45
|
|
46
46
|
[[package]]
|
47
47
|
name = "bindgen"
|
48
|
-
version = "0.
|
48
|
+
version = "0.69.1"
|
49
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
-
checksum = "
|
50
|
+
checksum = "9ffcebc3849946a7170a05992aac39da343a90676ab392c51a4280981d6379c2"
|
51
51
|
dependencies = [
|
52
|
-
"bitflags",
|
52
|
+
"bitflags 2.4.1",
|
53
53
|
"cexpr",
|
54
54
|
"clang-sys",
|
55
55
|
"lazy_static",
|
@@ -60,6 +60,7 @@ dependencies = [
|
|
60
60
|
"regex",
|
61
61
|
"rustc-hash",
|
62
62
|
"shlex",
|
63
|
+
"syn 2.0.43",
|
63
64
|
]
|
64
65
|
|
65
66
|
[[package]]
|
@@ -68,41 +69,66 @@ version = "1.3.2"
|
|
68
69
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
69
70
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
70
71
|
|
72
|
+
[[package]]
|
73
|
+
name = "bitflags"
|
74
|
+
version = "2.4.1"
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
76
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
77
|
+
|
78
|
+
[[package]]
|
79
|
+
name = "bitvec"
|
80
|
+
version = "1.0.1"
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
83
|
+
dependencies = [
|
84
|
+
"funty",
|
85
|
+
"radium",
|
86
|
+
"tap",
|
87
|
+
"wyz",
|
88
|
+
]
|
89
|
+
|
71
90
|
[[package]]
|
72
91
|
name = "block-buffer"
|
73
|
-
version = "0.10.
|
92
|
+
version = "0.10.4"
|
74
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
75
|
-
checksum = "
|
94
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
76
95
|
dependencies = [
|
77
96
|
"generic-array",
|
78
97
|
]
|
79
98
|
|
80
99
|
[[package]]
|
81
100
|
name = "bytecheck"
|
82
|
-
version = "0.6.
|
101
|
+
version = "0.6.11"
|
83
102
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
84
|
-
checksum = "
|
103
|
+
checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
|
85
104
|
dependencies = [
|
86
105
|
"bytecheck_derive",
|
87
106
|
"ptr_meta",
|
107
|
+
"simdutf8",
|
88
108
|
]
|
89
109
|
|
90
110
|
[[package]]
|
91
111
|
name = "bytecheck_derive"
|
92
|
-
version = "0.6.
|
112
|
+
version = "0.6.11"
|
93
113
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
94
|
-
checksum = "
|
114
|
+
checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
|
95
115
|
dependencies = [
|
96
116
|
"proc-macro2",
|
97
117
|
"quote",
|
98
|
-
"syn",
|
118
|
+
"syn 1.0.109",
|
99
119
|
]
|
100
120
|
|
101
121
|
[[package]]
|
102
122
|
name = "byteorder"
|
103
|
-
version = "1.
|
123
|
+
version = "1.5.0"
|
104
124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
105
|
-
checksum = "
|
125
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
126
|
+
|
127
|
+
[[package]]
|
128
|
+
name = "bytes"
|
129
|
+
version = "1.5.0"
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
131
|
+
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
106
132
|
|
107
133
|
[[package]]
|
108
134
|
name = "cexpr"
|
@@ -121,9 +147,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
121
147
|
|
122
148
|
[[package]]
|
123
149
|
name = "clang-sys"
|
124
|
-
version = "1.
|
150
|
+
version = "1.6.1"
|
125
151
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
126
|
-
checksum = "
|
152
|
+
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
|
127
153
|
dependencies = [
|
128
154
|
"glob",
|
129
155
|
"libc",
|
@@ -147,33 +173,23 @@ checksum = "5e1e0fdd2e5d3041e530e1b21158aeeef8b5d0e306bc5c1e3d6cf0930d10e25a"
|
|
147
173
|
dependencies = [
|
148
174
|
"proc-macro2",
|
149
175
|
"quote",
|
150
|
-
"syn",
|
176
|
+
"syn 1.0.109",
|
151
177
|
]
|
152
178
|
|
153
179
|
[[package]]
|
154
180
|
name = "cpufeatures"
|
155
|
-
version = "0.2.
|
181
|
+
version = "0.2.11"
|
156
182
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
-
checksum = "
|
183
|
+
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
|
158
184
|
dependencies = [
|
159
185
|
"libc",
|
160
186
|
]
|
161
187
|
|
162
|
-
[[package]]
|
163
|
-
name = "crossbeam-channel"
|
164
|
-
version = "0.5.6"
|
165
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
166
|
-
checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521"
|
167
|
-
dependencies = [
|
168
|
-
"cfg-if",
|
169
|
-
"crossbeam-utils",
|
170
|
-
]
|
171
|
-
|
172
188
|
[[package]]
|
173
189
|
name = "crossbeam-deque"
|
174
|
-
version = "0.8.
|
190
|
+
version = "0.8.4"
|
175
191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
-
checksum = "
|
192
|
+
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
|
177
193
|
dependencies = [
|
178
194
|
"cfg-if",
|
179
195
|
"crossbeam-epoch",
|
@@ -182,22 +198,20 @@ dependencies = [
|
|
182
198
|
|
183
199
|
[[package]]
|
184
200
|
name = "crossbeam-epoch"
|
185
|
-
version = "0.9.
|
201
|
+
version = "0.9.17"
|
186
202
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
-
checksum = "
|
203
|
+
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
|
188
204
|
dependencies = [
|
189
205
|
"autocfg",
|
190
206
|
"cfg-if",
|
191
207
|
"crossbeam-utils",
|
192
|
-
"memoffset",
|
193
|
-
"scopeguard",
|
194
208
|
]
|
195
209
|
|
196
210
|
[[package]]
|
197
211
|
name = "crossbeam-utils"
|
198
|
-
version = "0.8.
|
212
|
+
version = "0.8.18"
|
199
213
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
-
checksum = "
|
214
|
+
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
|
201
215
|
dependencies = [
|
202
216
|
"cfg-if",
|
203
217
|
]
|
@@ -214,40 +228,45 @@ dependencies = [
|
|
214
228
|
|
215
229
|
[[package]]
|
216
230
|
name = "cssparser"
|
217
|
-
version = "0.
|
231
|
+
version = "0.33.0"
|
218
232
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
219
|
-
checksum = "
|
233
|
+
checksum = "9be934d936a0fbed5bcdc01042b770de1398bf79d0e192f49fa7faea0e99281e"
|
220
234
|
dependencies = [
|
221
235
|
"cssparser-macros",
|
222
236
|
"dtoa-short",
|
223
237
|
"itoa",
|
224
|
-
"
|
225
|
-
"phf 0.10.1",
|
226
|
-
"proc-macro2",
|
227
|
-
"quote",
|
238
|
+
"phf 0.11.2",
|
228
239
|
"serde",
|
229
240
|
"smallvec",
|
230
|
-
|
241
|
+
]
|
242
|
+
|
243
|
+
[[package]]
|
244
|
+
name = "cssparser-color"
|
245
|
+
version = "0.1.0"
|
246
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
247
|
+
checksum = "556c099a61d85989d7af52b692e35a8d68a57e7df8c6d07563dc0778b3960c9f"
|
248
|
+
dependencies = [
|
249
|
+
"cssparser",
|
231
250
|
]
|
232
251
|
|
233
252
|
[[package]]
|
234
253
|
name = "cssparser-macros"
|
235
|
-
version = "0.6.
|
254
|
+
version = "0.6.1"
|
236
255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
237
|
-
checksum = "
|
256
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
238
257
|
dependencies = [
|
239
258
|
"quote",
|
240
|
-
"syn",
|
259
|
+
"syn 2.0.43",
|
241
260
|
]
|
242
261
|
|
243
262
|
[[package]]
|
244
263
|
name = "dashmap"
|
245
|
-
version = "5.
|
264
|
+
version = "5.5.3"
|
246
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
247
|
-
checksum = "
|
266
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
248
267
|
dependencies = [
|
249
268
|
"cfg-if",
|
250
|
-
"hashbrown",
|
269
|
+
"hashbrown 0.14.3",
|
251
270
|
"lock_api",
|
252
271
|
"once_cell",
|
253
272
|
"parking_lot_core",
|
@@ -255,9 +274,9 @@ dependencies = [
|
|
255
274
|
|
256
275
|
[[package]]
|
257
276
|
name = "data-encoding"
|
258
|
-
version = "2.
|
277
|
+
version = "2.5.0"
|
259
278
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
260
|
-
checksum = "
|
279
|
+
checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
|
261
280
|
|
262
281
|
[[package]]
|
263
282
|
name = "data-url"
|
@@ -270,9 +289,9 @@ dependencies = [
|
|
270
289
|
|
271
290
|
[[package]]
|
272
291
|
name = "digest"
|
273
|
-
version = "0.10.
|
292
|
+
version = "0.10.7"
|
274
293
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
-
checksum = "
|
294
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
276
295
|
dependencies = [
|
277
296
|
"block-buffer",
|
278
297
|
"crypto-common",
|
@@ -280,24 +299,24 @@ dependencies = [
|
|
280
299
|
|
281
300
|
[[package]]
|
282
301
|
name = "dtoa"
|
283
|
-
version = "0.
|
302
|
+
version = "1.0.9"
|
284
303
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
285
|
-
checksum = "
|
304
|
+
checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
|
286
305
|
|
287
306
|
[[package]]
|
288
307
|
name = "dtoa-short"
|
289
|
-
version = "0.3.
|
308
|
+
version = "0.3.4"
|
290
309
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
291
|
-
checksum = "
|
310
|
+
checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
|
292
311
|
dependencies = [
|
293
312
|
"dtoa",
|
294
313
|
]
|
295
314
|
|
296
315
|
[[package]]
|
297
316
|
name = "either"
|
298
|
-
version = "1.
|
317
|
+
version = "1.9.0"
|
299
318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
300
|
-
checksum = "
|
319
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
301
320
|
|
302
321
|
[[package]]
|
303
322
|
name = "ext"
|
@@ -306,11 +325,19 @@ dependencies = [
|
|
306
325
|
"base64",
|
307
326
|
"lightningcss",
|
308
327
|
"magnus",
|
328
|
+
"parcel_sourcemap",
|
329
|
+
"rb-sys",
|
309
330
|
"serde",
|
310
331
|
"serde_json",
|
311
332
|
"sha2",
|
312
333
|
]
|
313
334
|
|
335
|
+
[[package]]
|
336
|
+
name = "funty"
|
337
|
+
version = "2.0.0"
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
339
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
340
|
+
|
314
341
|
[[package]]
|
315
342
|
name = "fxhash"
|
316
343
|
version = "0.2.1"
|
@@ -322,9 +349,9 @@ dependencies = [
|
|
322
349
|
|
323
350
|
[[package]]
|
324
351
|
name = "generic-array"
|
325
|
-
version = "0.14.
|
352
|
+
version = "0.14.7"
|
326
353
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
-
checksum = "
|
354
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
328
355
|
dependencies = [
|
329
356
|
"typenum",
|
330
357
|
"version_check",
|
@@ -332,24 +359,13 @@ dependencies = [
|
|
332
359
|
|
333
360
|
[[package]]
|
334
361
|
name = "getrandom"
|
335
|
-
version = "0.
|
362
|
+
version = "0.2.11"
|
336
363
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
|
-
checksum = "
|
364
|
+
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
|
338
365
|
dependencies = [
|
339
366
|
"cfg-if",
|
340
367
|
"libc",
|
341
|
-
"wasi
|
342
|
-
]
|
343
|
-
|
344
|
-
[[package]]
|
345
|
-
name = "getrandom"
|
346
|
-
version = "0.2.8"
|
347
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
348
|
-
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
349
|
-
dependencies = [
|
350
|
-
"cfg-if",
|
351
|
-
"libc",
|
352
|
-
"wasi 0.11.0+wasi-snapshot-preview1",
|
368
|
+
"wasi",
|
353
369
|
]
|
354
370
|
|
355
371
|
[[package]]
|
@@ -368,13 +384,10 @@ dependencies = [
|
|
368
384
|
]
|
369
385
|
|
370
386
|
[[package]]
|
371
|
-
name = "
|
372
|
-
version = "0.
|
387
|
+
name = "hashbrown"
|
388
|
+
version = "0.14.3"
|
373
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
-
checksum = "
|
375
|
-
dependencies = [
|
376
|
-
"libc",
|
377
|
-
]
|
390
|
+
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
378
391
|
|
379
392
|
[[package]]
|
380
393
|
name = "itertools"
|
@@ -387,9 +400,9 @@ dependencies = [
|
|
387
400
|
|
388
401
|
[[package]]
|
389
402
|
name = "itoa"
|
390
|
-
version = "1.0.
|
403
|
+
version = "1.0.10"
|
391
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
392
|
-
checksum = "
|
405
|
+
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
393
406
|
|
394
407
|
[[package]]
|
395
408
|
name = "lazy_static"
|
@@ -405,9 +418,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
405
418
|
|
406
419
|
[[package]]
|
407
420
|
name = "libc"
|
408
|
-
version = "0.2.
|
421
|
+
version = "0.2.151"
|
409
422
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
410
|
-
checksum = "
|
423
|
+
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
|
411
424
|
|
412
425
|
[[package]]
|
413
426
|
name = "libloading"
|
@@ -421,13 +434,15 @@ dependencies = [
|
|
421
434
|
|
422
435
|
[[package]]
|
423
436
|
name = "lightningcss"
|
424
|
-
version = "1.0.0-alpha.
|
437
|
+
version = "1.0.0-alpha.51"
|
425
438
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
-
checksum = "
|
439
|
+
checksum = "99d6ad516c08b24c246b339159dc2ee2144c012e8ebdf4db4bddefb8734b2b69"
|
427
440
|
dependencies = [
|
428
|
-
"
|
441
|
+
"ahash",
|
442
|
+
"bitflags 2.4.1",
|
429
443
|
"const-str",
|
430
444
|
"cssparser",
|
445
|
+
"cssparser-color",
|
431
446
|
"dashmap",
|
432
447
|
"data-encoding",
|
433
448
|
"itertools",
|
@@ -435,28 +450,30 @@ dependencies = [
|
|
435
450
|
"lightningcss-derive",
|
436
451
|
"parcel_selectors",
|
437
452
|
"parcel_sourcemap",
|
453
|
+
"paste",
|
438
454
|
"pathdiff",
|
439
455
|
"rayon",
|
440
456
|
"serde",
|
441
457
|
"smallvec",
|
458
|
+
"static-self",
|
442
459
|
]
|
443
460
|
|
444
461
|
[[package]]
|
445
462
|
name = "lightningcss-derive"
|
446
|
-
version = "1.0.0-alpha.
|
463
|
+
version = "1.0.0-alpha.42"
|
447
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
448
|
-
checksum = "
|
465
|
+
checksum = "8f02a09f0b79d31f1ee13ea55e2f7021037c6b72e0a3ab6c1cb0e9bd7ac8a295"
|
449
466
|
dependencies = [
|
450
467
|
"proc-macro2",
|
451
468
|
"quote",
|
452
|
-
"syn",
|
469
|
+
"syn 1.0.109",
|
453
470
|
]
|
454
471
|
|
455
472
|
[[package]]
|
456
473
|
name = "lock_api"
|
457
|
-
version = "0.4.
|
474
|
+
version = "0.4.11"
|
458
475
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
|
-
checksum = "
|
476
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
460
477
|
dependencies = [
|
461
478
|
"autocfg",
|
462
479
|
"scopeguard",
|
@@ -464,33 +481,31 @@ dependencies = [
|
|
464
481
|
|
465
482
|
[[package]]
|
466
483
|
name = "log"
|
467
|
-
version = "0.4.
|
484
|
+
version = "0.4.20"
|
468
485
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
469
|
-
checksum = "
|
470
|
-
dependencies = [
|
471
|
-
"cfg-if",
|
472
|
-
]
|
486
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
473
487
|
|
474
488
|
[[package]]
|
475
489
|
name = "magnus"
|
476
|
-
version = "0.
|
490
|
+
version = "0.6.2"
|
477
491
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
478
|
-
checksum = "
|
492
|
+
checksum = "4778544796676e8428e9c622460ebf284bea52d8b10db3aeb449d8b5e61b3a13"
|
479
493
|
dependencies = [
|
480
494
|
"magnus-macros",
|
481
495
|
"rb-sys",
|
482
496
|
"rb-sys-env",
|
497
|
+
"seq-macro",
|
483
498
|
]
|
484
499
|
|
485
500
|
[[package]]
|
486
501
|
name = "magnus-macros"
|
487
|
-
version = "0.
|
502
|
+
version = "0.6.0"
|
488
503
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
489
|
-
checksum = "
|
504
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
490
505
|
dependencies = [
|
491
506
|
"proc-macro2",
|
492
507
|
"quote",
|
493
|
-
"syn",
|
508
|
+
"syn 2.0.43",
|
494
509
|
]
|
495
510
|
|
496
511
|
[[package]]
|
@@ -501,18 +516,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
501
516
|
|
502
517
|
[[package]]
|
503
518
|
name = "memchr"
|
504
|
-
version = "2.
|
519
|
+
version = "2.6.4"
|
505
520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
506
|
-
checksum = "
|
507
|
-
|
508
|
-
[[package]]
|
509
|
-
name = "memoffset"
|
510
|
-
version = "0.7.1"
|
511
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
-
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
513
|
-
dependencies = [
|
514
|
-
"autocfg",
|
515
|
-
]
|
521
|
+
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
|
516
522
|
|
517
523
|
[[package]]
|
518
524
|
name = "minimal-lexical"
|
@@ -530,21 +536,11 @@ dependencies = [
|
|
530
536
|
"minimal-lexical",
|
531
537
|
]
|
532
538
|
|
533
|
-
[[package]]
|
534
|
-
name = "num_cpus"
|
535
|
-
version = "1.15.0"
|
536
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
537
|
-
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
538
|
-
dependencies = [
|
539
|
-
"hermit-abi",
|
540
|
-
"libc",
|
541
|
-
]
|
542
|
-
|
543
539
|
[[package]]
|
544
540
|
name = "once_cell"
|
545
|
-
version = "1.
|
541
|
+
version = "1.19.0"
|
546
542
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
547
|
-
checksum = "
|
543
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
548
544
|
|
549
545
|
[[package]]
|
550
546
|
name = "outref"
|
@@ -554,19 +550,20 @@ checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4"
|
|
554
550
|
|
555
551
|
[[package]]
|
556
552
|
name = "parcel_selectors"
|
557
|
-
version = "0.
|
553
|
+
version = "0.26.4"
|
558
554
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
559
|
-
checksum = "
|
555
|
+
checksum = "05d74befe2d076330d9a58bf9ca2da424568724ab278adf15fb5718253133887"
|
560
556
|
dependencies = [
|
561
|
-
"bitflags",
|
557
|
+
"bitflags 2.4.1",
|
562
558
|
"cssparser",
|
563
559
|
"fxhash",
|
564
560
|
"log",
|
565
|
-
"phf 0.
|
561
|
+
"phf 0.10.1",
|
566
562
|
"phf_codegen",
|
567
563
|
"precomputed-hash",
|
568
564
|
"serde",
|
569
565
|
"smallvec",
|
566
|
+
"static-self",
|
570
567
|
]
|
571
568
|
|
572
569
|
[[package]]
|
@@ -585,17 +582,23 @@ dependencies = [
|
|
585
582
|
|
586
583
|
[[package]]
|
587
584
|
name = "parking_lot_core"
|
588
|
-
version = "0.9.
|
585
|
+
version = "0.9.9"
|
589
586
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
-
checksum = "
|
587
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
591
588
|
dependencies = [
|
592
589
|
"cfg-if",
|
593
590
|
"libc",
|
594
591
|
"redox_syscall",
|
595
592
|
"smallvec",
|
596
|
-
"windows-
|
593
|
+
"windows-targets",
|
597
594
|
]
|
598
595
|
|
596
|
+
[[package]]
|
597
|
+
name = "paste"
|
598
|
+
version = "1.0.14"
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
600
|
+
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
|
601
|
+
|
599
602
|
[[package]]
|
600
603
|
name = "pathdiff"
|
601
604
|
version = "0.2.1"
|
@@ -610,82 +613,80 @@ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
|
610
613
|
|
611
614
|
[[package]]
|
612
615
|
name = "phf"
|
613
|
-
version = "0.
|
616
|
+
version = "0.10.1"
|
614
617
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
615
|
-
checksum = "
|
618
|
+
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
616
619
|
dependencies = [
|
617
|
-
"phf_shared 0.
|
620
|
+
"phf_shared 0.10.0",
|
618
621
|
]
|
619
622
|
|
620
623
|
[[package]]
|
621
624
|
name = "phf"
|
622
|
-
version = "0.
|
625
|
+
version = "0.11.2"
|
623
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
624
|
-
checksum = "
|
627
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
625
628
|
dependencies = [
|
626
629
|
"phf_macros",
|
627
|
-
"phf_shared 0.
|
628
|
-
"proc-macro-hack",
|
630
|
+
"phf_shared 0.11.2",
|
629
631
|
]
|
630
632
|
|
631
633
|
[[package]]
|
632
634
|
name = "phf_codegen"
|
633
|
-
version = "0.
|
635
|
+
version = "0.10.0"
|
634
636
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
|
-
checksum = "
|
637
|
+
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
|
636
638
|
dependencies = [
|
637
|
-
"phf_generator 0.
|
638
|
-
"phf_shared 0.
|
639
|
+
"phf_generator 0.10.0",
|
640
|
+
"phf_shared 0.10.0",
|
639
641
|
]
|
640
642
|
|
641
643
|
[[package]]
|
642
644
|
name = "phf_generator"
|
643
|
-
version = "0.
|
645
|
+
version = "0.10.0"
|
644
646
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
-
checksum = "
|
647
|
+
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
|
646
648
|
dependencies = [
|
647
|
-
"phf_shared 0.
|
648
|
-
"rand
|
649
|
+
"phf_shared 0.10.0",
|
650
|
+
"rand",
|
649
651
|
]
|
650
652
|
|
651
653
|
[[package]]
|
652
654
|
name = "phf_generator"
|
653
|
-
version = "0.
|
655
|
+
version = "0.11.2"
|
654
656
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
|
-
checksum = "
|
657
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
656
658
|
dependencies = [
|
657
|
-
"phf_shared 0.
|
658
|
-
"rand
|
659
|
+
"phf_shared 0.11.2",
|
660
|
+
"rand",
|
659
661
|
]
|
660
662
|
|
661
663
|
[[package]]
|
662
664
|
name = "phf_macros"
|
663
|
-
version = "0.
|
665
|
+
version = "0.11.2"
|
664
666
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
665
|
-
checksum = "
|
667
|
+
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
666
668
|
dependencies = [
|
667
|
-
"phf_generator 0.
|
668
|
-
"phf_shared 0.
|
669
|
-
"proc-macro-hack",
|
669
|
+
"phf_generator 0.11.2",
|
670
|
+
"phf_shared 0.11.2",
|
670
671
|
"proc-macro2",
|
671
672
|
"quote",
|
672
|
-
"syn",
|
673
|
+
"syn 2.0.43",
|
673
674
|
]
|
674
675
|
|
675
676
|
[[package]]
|
676
677
|
name = "phf_shared"
|
677
|
-
version = "0.
|
678
|
+
version = "0.10.0"
|
678
679
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
679
|
-
checksum = "
|
680
|
+
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
680
681
|
dependencies = [
|
681
682
|
"siphasher",
|
682
683
|
]
|
683
684
|
|
684
685
|
[[package]]
|
685
686
|
name = "phf_shared"
|
686
|
-
version = "0.
|
687
|
+
version = "0.11.2"
|
687
688
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
688
|
-
checksum = "
|
689
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
689
690
|
dependencies = [
|
690
691
|
"siphasher",
|
691
692
|
]
|
@@ -702,17 +703,11 @@ version = "0.1.1"
|
|
702
703
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
703
704
|
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
704
705
|
|
705
|
-
[[package]]
|
706
|
-
name = "proc-macro-hack"
|
707
|
-
version = "0.5.20+deprecated"
|
708
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
709
|
-
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
710
|
-
|
711
706
|
[[package]]
|
712
707
|
name = "proc-macro2"
|
713
|
-
version = "1.0.
|
708
|
+
version = "1.0.71"
|
714
709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
-
checksum = "
|
710
|
+
checksum = "75cb1540fadbd5b8fbccc4dddad2734eba435053f725621c070711a14bb5f4b8"
|
716
711
|
dependencies = [
|
717
712
|
"unicode-ident",
|
718
713
|
]
|
@@ -734,31 +729,23 @@ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
734
729
|
dependencies = [
|
735
730
|
"proc-macro2",
|
736
731
|
"quote",
|
737
|
-
"syn",
|
732
|
+
"syn 1.0.109",
|
738
733
|
]
|
739
734
|
|
740
735
|
[[package]]
|
741
736
|
name = "quote"
|
742
|
-
version = "1.0.
|
737
|
+
version = "1.0.33"
|
743
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
744
|
-
checksum = "
|
739
|
+
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
|
745
740
|
dependencies = [
|
746
741
|
"proc-macro2",
|
747
742
|
]
|
748
743
|
|
749
744
|
[[package]]
|
750
|
-
name = "
|
751
|
-
version = "0.7.
|
745
|
+
name = "radium"
|
746
|
+
version = "0.7.0"
|
752
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
753
|
-
checksum = "
|
754
|
-
dependencies = [
|
755
|
-
"getrandom 0.1.16",
|
756
|
-
"libc",
|
757
|
-
"rand_chacha 0.2.2",
|
758
|
-
"rand_core 0.5.1",
|
759
|
-
"rand_hc",
|
760
|
-
"rand_pcg",
|
761
|
-
]
|
748
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
762
749
|
|
763
750
|
[[package]]
|
764
751
|
name = "rand"
|
@@ -767,18 +754,8 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
767
754
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
768
755
|
dependencies = [
|
769
756
|
"libc",
|
770
|
-
"rand_chacha
|
771
|
-
"rand_core
|
772
|
-
]
|
773
|
-
|
774
|
-
[[package]]
|
775
|
-
name = "rand_chacha"
|
776
|
-
version = "0.2.2"
|
777
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
778
|
-
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
779
|
-
dependencies = [
|
780
|
-
"ppv-lite86",
|
781
|
-
"rand_core 0.5.1",
|
757
|
+
"rand_chacha",
|
758
|
+
"rand_core",
|
782
759
|
]
|
783
760
|
|
784
761
|
[[package]]
|
@@ -788,16 +765,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
788
765
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
789
766
|
dependencies = [
|
790
767
|
"ppv-lite86",
|
791
|
-
"rand_core
|
792
|
-
]
|
793
|
-
|
794
|
-
[[package]]
|
795
|
-
name = "rand_core"
|
796
|
-
version = "0.5.1"
|
797
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
798
|
-
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
799
|
-
dependencies = [
|
800
|
-
"getrandom 0.1.16",
|
768
|
+
"rand_core",
|
801
769
|
]
|
802
770
|
|
803
771
|
[[package]]
|
@@ -806,32 +774,14 @@ version = "0.6.4"
|
|
806
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
807
775
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
808
776
|
dependencies = [
|
809
|
-
"getrandom
|
810
|
-
]
|
811
|
-
|
812
|
-
[[package]]
|
813
|
-
name = "rand_hc"
|
814
|
-
version = "0.2.0"
|
815
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
816
|
-
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
817
|
-
dependencies = [
|
818
|
-
"rand_core 0.5.1",
|
819
|
-
]
|
820
|
-
|
821
|
-
[[package]]
|
822
|
-
name = "rand_pcg"
|
823
|
-
version = "0.2.1"
|
824
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
825
|
-
checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429"
|
826
|
-
dependencies = [
|
827
|
-
"rand_core 0.5.1",
|
777
|
+
"getrandom",
|
828
778
|
]
|
829
779
|
|
830
780
|
[[package]]
|
831
781
|
name = "rayon"
|
832
|
-
version = "1.
|
782
|
+
version = "1.8.0"
|
833
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
-
checksum = "
|
784
|
+
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
|
835
785
|
dependencies = [
|
836
786
|
"either",
|
837
787
|
"rayon-core",
|
@@ -839,34 +789,36 @@ dependencies = [
|
|
839
789
|
|
840
790
|
[[package]]
|
841
791
|
name = "rayon-core"
|
842
|
-
version = "1.
|
792
|
+
version = "1.12.0"
|
843
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
-
checksum = "
|
794
|
+
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
|
845
795
|
dependencies = [
|
846
|
-
"crossbeam-channel",
|
847
796
|
"crossbeam-deque",
|
848
797
|
"crossbeam-utils",
|
849
|
-
"num_cpus",
|
850
798
|
]
|
851
799
|
|
852
800
|
[[package]]
|
853
801
|
name = "rb-sys"
|
854
|
-
version = "0.9.
|
802
|
+
version = "0.9.85"
|
855
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
856
|
-
checksum = "
|
804
|
+
checksum = "05b780e6858b0b0eced1d55d0f097c024b77a37b41f83bd35341130f78e37c51"
|
857
805
|
dependencies = [
|
858
806
|
"rb-sys-build",
|
859
807
|
]
|
860
808
|
|
861
809
|
[[package]]
|
862
810
|
name = "rb-sys-build"
|
863
|
-
version = "0.9.
|
811
|
+
version = "0.9.85"
|
864
812
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
-
checksum = "
|
813
|
+
checksum = "44957a3bc513dad1b0f20bdd0ee3b82e729a59da44086a6b40d8bc71958a6db8"
|
866
814
|
dependencies = [
|
867
815
|
"bindgen",
|
816
|
+
"lazy_static",
|
817
|
+
"proc-macro2",
|
818
|
+
"quote",
|
868
819
|
"regex",
|
869
820
|
"shell-words",
|
821
|
+
"syn 2.0.43",
|
870
822
|
]
|
871
823
|
|
872
824
|
[[package]]
|
@@ -877,18 +829,30 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
877
829
|
|
878
830
|
[[package]]
|
879
831
|
name = "redox_syscall"
|
880
|
-
version = "0.
|
832
|
+
version = "0.4.1"
|
881
833
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
-
checksum = "
|
834
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
883
835
|
dependencies = [
|
884
|
-
"bitflags",
|
836
|
+
"bitflags 1.3.2",
|
885
837
|
]
|
886
838
|
|
887
839
|
[[package]]
|
888
840
|
name = "regex"
|
889
|
-
version = "1.
|
841
|
+
version = "1.10.2"
|
842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
843
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
844
|
+
dependencies = [
|
845
|
+
"aho-corasick",
|
846
|
+
"memchr",
|
847
|
+
"regex-automata",
|
848
|
+
"regex-syntax",
|
849
|
+
]
|
850
|
+
|
851
|
+
[[package]]
|
852
|
+
name = "regex-automata"
|
853
|
+
version = "0.4.3"
|
890
854
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
-
checksum = "
|
855
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
892
856
|
dependencies = [
|
893
857
|
"aho-corasick",
|
894
858
|
"memchr",
|
@@ -897,42 +861,46 @@ dependencies = [
|
|
897
861
|
|
898
862
|
[[package]]
|
899
863
|
name = "regex-syntax"
|
900
|
-
version = "0.
|
864
|
+
version = "0.8.2"
|
901
865
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
902
|
-
checksum = "
|
866
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
903
867
|
|
904
868
|
[[package]]
|
905
869
|
name = "rend"
|
906
|
-
version = "0.
|
870
|
+
version = "0.4.1"
|
907
871
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
908
|
-
checksum = "
|
872
|
+
checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd"
|
909
873
|
dependencies = [
|
910
874
|
"bytecheck",
|
911
875
|
]
|
912
876
|
|
913
877
|
[[package]]
|
914
878
|
name = "rkyv"
|
915
|
-
version = "0.7.
|
879
|
+
version = "0.7.43"
|
916
880
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
-
checksum = "
|
881
|
+
checksum = "527a97cdfef66f65998b5f3b637c26f5a5ec09cc52a3f9932313ac645f4190f5"
|
918
882
|
dependencies = [
|
883
|
+
"bitvec",
|
919
884
|
"bytecheck",
|
920
|
-
"
|
885
|
+
"bytes",
|
886
|
+
"hashbrown 0.12.3",
|
921
887
|
"ptr_meta",
|
922
888
|
"rend",
|
923
889
|
"rkyv_derive",
|
924
890
|
"seahash",
|
891
|
+
"tinyvec",
|
892
|
+
"uuid",
|
925
893
|
]
|
926
894
|
|
927
895
|
[[package]]
|
928
896
|
name = "rkyv_derive"
|
929
|
-
version = "0.7.
|
897
|
+
version = "0.7.43"
|
930
898
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
931
|
-
checksum = "
|
899
|
+
checksum = "b5c462a1328c8e67e4d6dbad1eb0355dd43e8ab432c6e227a43657f16ade5033"
|
932
900
|
dependencies = [
|
933
901
|
"proc-macro2",
|
934
902
|
"quote",
|
935
|
-
"syn",
|
903
|
+
"syn 1.0.109",
|
936
904
|
]
|
937
905
|
|
938
906
|
[[package]]
|
@@ -943,15 +911,15 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
943
911
|
|
944
912
|
[[package]]
|
945
913
|
name = "ryu"
|
946
|
-
version = "1.0.
|
914
|
+
version = "1.0.16"
|
947
915
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
|
-
checksum = "
|
916
|
+
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
949
917
|
|
950
918
|
[[package]]
|
951
919
|
name = "scopeguard"
|
952
|
-
version = "1.
|
920
|
+
version = "1.2.0"
|
953
921
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
954
|
-
checksum = "
|
922
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
955
923
|
|
956
924
|
[[package]]
|
957
925
|
name = "seahash"
|
@@ -959,31 +927,37 @@ version = "4.1.0"
|
|
959
927
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
960
928
|
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
961
929
|
|
930
|
+
[[package]]
|
931
|
+
name = "seq-macro"
|
932
|
+
version = "0.3.5"
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
934
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
935
|
+
|
962
936
|
[[package]]
|
963
937
|
name = "serde"
|
964
|
-
version = "1.0.
|
938
|
+
version = "1.0.193"
|
965
939
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
-
checksum = "
|
940
|
+
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89"
|
967
941
|
dependencies = [
|
968
942
|
"serde_derive",
|
969
943
|
]
|
970
944
|
|
971
945
|
[[package]]
|
972
946
|
name = "serde_derive"
|
973
|
-
version = "1.0.
|
947
|
+
version = "1.0.193"
|
974
948
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
-
checksum = "
|
949
|
+
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3"
|
976
950
|
dependencies = [
|
977
951
|
"proc-macro2",
|
978
952
|
"quote",
|
979
|
-
"syn",
|
953
|
+
"syn 2.0.43",
|
980
954
|
]
|
981
955
|
|
982
956
|
[[package]]
|
983
957
|
name = "serde_json"
|
984
|
-
version = "1.0.
|
958
|
+
version = "1.0.108"
|
985
959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
-
checksum = "
|
960
|
+
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
|
987
961
|
dependencies = [
|
988
962
|
"itoa",
|
989
963
|
"ryu",
|
@@ -992,9 +966,9 @@ dependencies = [
|
|
992
966
|
|
993
967
|
[[package]]
|
994
968
|
name = "sha2"
|
995
|
-
version = "0.10.
|
969
|
+
version = "0.10.8"
|
996
970
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
971
|
+
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
|
998
972
|
dependencies = [
|
999
973
|
"cfg-if",
|
1000
974
|
"cpufeatures",
|
@@ -1009,9 +983,9 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
1009
983
|
|
1010
984
|
[[package]]
|
1011
985
|
name = "shlex"
|
1012
|
-
version = "1.
|
986
|
+
version = "1.2.0"
|
1013
987
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1014
|
-
checksum = "
|
988
|
+
checksum = "a7cee0529a6d40f580e7a5e6c495c8fbfe21b7b52795ed4bb5e62cdf92bc6380"
|
1015
989
|
|
1016
990
|
[[package]]
|
1017
991
|
name = "simd-abstraction"
|
@@ -1022,43 +996,108 @@ dependencies = [
|
|
1022
996
|
"outref",
|
1023
997
|
]
|
1024
998
|
|
999
|
+
[[package]]
|
1000
|
+
name = "simdutf8"
|
1001
|
+
version = "0.1.4"
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1003
|
+
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
1004
|
+
|
1025
1005
|
[[package]]
|
1026
1006
|
name = "siphasher"
|
1027
|
-
version = "0.3.
|
1007
|
+
version = "0.3.11"
|
1028
1008
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1029
|
-
checksum = "
|
1009
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
1030
1010
|
|
1031
1011
|
[[package]]
|
1032
1012
|
name = "smallvec"
|
1033
|
-
version = "1.
|
1013
|
+
version = "1.11.2"
|
1034
1014
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1035
|
-
checksum = "
|
1015
|
+
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
1036
1016
|
dependencies = [
|
1037
1017
|
"serde",
|
1038
1018
|
]
|
1039
1019
|
|
1020
|
+
[[package]]
|
1021
|
+
name = "static-self"
|
1022
|
+
version = "0.1.1"
|
1023
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1024
|
+
checksum = "253e76c8c993a7b1b201b0539228b334582153cd4364292822d2c30776d469c7"
|
1025
|
+
dependencies = [
|
1026
|
+
"smallvec",
|
1027
|
+
"static-self-derive",
|
1028
|
+
]
|
1029
|
+
|
1030
|
+
[[package]]
|
1031
|
+
name = "static-self-derive"
|
1032
|
+
version = "0.1.1"
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1034
|
+
checksum = "5268c96d4b907c558a9a52d8492522d6c7b559651a5e1d8f2d551e461b9425d5"
|
1035
|
+
dependencies = [
|
1036
|
+
"proc-macro2",
|
1037
|
+
"quote",
|
1038
|
+
"syn 1.0.109",
|
1039
|
+
]
|
1040
|
+
|
1040
1041
|
[[package]]
|
1041
1042
|
name = "syn"
|
1042
|
-
version = "1.0.
|
1043
|
+
version = "1.0.109"
|
1043
1044
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
-
checksum = "
|
1045
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
1045
1046
|
dependencies = [
|
1046
1047
|
"proc-macro2",
|
1047
1048
|
"quote",
|
1048
1049
|
"unicode-ident",
|
1049
1050
|
]
|
1050
1051
|
|
1052
|
+
[[package]]
|
1053
|
+
name = "syn"
|
1054
|
+
version = "2.0.43"
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1056
|
+
checksum = "ee659fb5f3d355364e1f3e5bc10fb82068efbf824a1e9d1c9504244a6469ad53"
|
1057
|
+
dependencies = [
|
1058
|
+
"proc-macro2",
|
1059
|
+
"quote",
|
1060
|
+
"unicode-ident",
|
1061
|
+
]
|
1062
|
+
|
1063
|
+
[[package]]
|
1064
|
+
name = "tap"
|
1065
|
+
version = "1.0.1"
|
1066
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1067
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
1068
|
+
|
1069
|
+
[[package]]
|
1070
|
+
name = "tinyvec"
|
1071
|
+
version = "1.6.0"
|
1072
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1073
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
1074
|
+
dependencies = [
|
1075
|
+
"tinyvec_macros",
|
1076
|
+
]
|
1077
|
+
|
1078
|
+
[[package]]
|
1079
|
+
name = "tinyvec_macros"
|
1080
|
+
version = "0.1.1"
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1082
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1083
|
+
|
1051
1084
|
[[package]]
|
1052
1085
|
name = "typenum"
|
1053
|
-
version = "1.
|
1086
|
+
version = "1.17.0"
|
1054
1087
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1055
|
-
checksum = "
|
1088
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
1056
1089
|
|
1057
1090
|
[[package]]
|
1058
1091
|
name = "unicode-ident"
|
1059
|
-
version = "1.0.
|
1092
|
+
version = "1.0.12"
|
1093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1094
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
1095
|
+
|
1096
|
+
[[package]]
|
1097
|
+
name = "uuid"
|
1098
|
+
version = "1.6.1"
|
1060
1099
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1061
|
-
checksum = "
|
1100
|
+
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
|
1062
1101
|
|
1063
1102
|
[[package]]
|
1064
1103
|
name = "version_check"
|
@@ -1072,12 +1111,6 @@ version = "0.5.1"
|
|
1072
1111
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1073
1112
|
checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff"
|
1074
1113
|
|
1075
|
-
[[package]]
|
1076
|
-
name = "wasi"
|
1077
|
-
version = "0.9.0+wasi-snapshot-preview1"
|
1078
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1079
|
-
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
1080
|
-
|
1081
1114
|
[[package]]
|
1082
1115
|
name = "wasi"
|
1083
1116
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -1107,10 +1140,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
1140
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1108
1141
|
|
1109
1142
|
[[package]]
|
1110
|
-
name = "windows-
|
1111
|
-
version = "0.
|
1143
|
+
name = "windows-targets"
|
1144
|
+
version = "0.48.5"
|
1112
1145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1113
|
-
checksum = "
|
1146
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
1114
1147
|
dependencies = [
|
1115
1148
|
"windows_aarch64_gnullvm",
|
1116
1149
|
"windows_aarch64_msvc",
|
@@ -1123,42 +1156,51 @@ dependencies = [
|
|
1123
1156
|
|
1124
1157
|
[[package]]
|
1125
1158
|
name = "windows_aarch64_gnullvm"
|
1126
|
-
version = "0.
|
1159
|
+
version = "0.48.5"
|
1127
1160
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
-
checksum = "
|
1161
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
1129
1162
|
|
1130
1163
|
[[package]]
|
1131
1164
|
name = "windows_aarch64_msvc"
|
1132
|
-
version = "0.
|
1165
|
+
version = "0.48.5"
|
1133
1166
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
-
checksum = "
|
1167
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
1135
1168
|
|
1136
1169
|
[[package]]
|
1137
1170
|
name = "windows_i686_gnu"
|
1138
|
-
version = "0.
|
1171
|
+
version = "0.48.5"
|
1139
1172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
-
checksum = "
|
1173
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
1141
1174
|
|
1142
1175
|
[[package]]
|
1143
1176
|
name = "windows_i686_msvc"
|
1144
|
-
version = "0.
|
1177
|
+
version = "0.48.5"
|
1145
1178
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
-
checksum = "
|
1179
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
1147
1180
|
|
1148
1181
|
[[package]]
|
1149
1182
|
name = "windows_x86_64_gnu"
|
1150
|
-
version = "0.
|
1183
|
+
version = "0.48.5"
|
1151
1184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
-
checksum = "
|
1185
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
1153
1186
|
|
1154
1187
|
[[package]]
|
1155
1188
|
name = "windows_x86_64_gnullvm"
|
1156
|
-
version = "0.
|
1189
|
+
version = "0.48.5"
|
1157
1190
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1158
|
-
checksum = "
|
1191
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
1159
1192
|
|
1160
1193
|
[[package]]
|
1161
1194
|
name = "windows_x86_64_msvc"
|
1162
|
-
version = "0.
|
1195
|
+
version = "0.48.5"
|
1163
1196
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1164
|
-
checksum = "
|
1197
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
1198
|
+
|
1199
|
+
[[package]]
|
1200
|
+
name = "wyz"
|
1201
|
+
version = "0.5.1"
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1203
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
1204
|
+
dependencies = [
|
1205
|
+
"tap",
|
1206
|
+
]
|