mayu-css 0.1.2-aarch64-linux → 0.1.5-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 +344 -293
- data/lib/mayu/css/3.2/ext.so +0 -0
- data/lib/mayu/css/3.3/ext.so +0 -0
- data/lib/mayu/css/3.4/ext.so +0 -0
- data/lib/mayu/css/4.0/ext.so +0 -0
- data/lib/mayu/css/version.rb +1 -1
- metadata +16 -14
- data/lib/mayu/css/3.0/ext.so +0 -0
data/Cargo.lock
CHANGED
|
@@ -1,38 +1,51 @@
|
|
|
1
1
|
# This file is automatically @generated by Cargo.
|
|
2
2
|
# It is not intended for manual editing.
|
|
3
|
-
version =
|
|
3
|
+
version = 4
|
|
4
4
|
|
|
5
5
|
[[package]]
|
|
6
6
|
name = "ahash"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.8"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
-
checksum = "
|
|
9
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
10
10
|
dependencies = [
|
|
11
|
-
"getrandom",
|
|
11
|
+
"getrandom 0.2.15",
|
|
12
12
|
"once_cell",
|
|
13
13
|
"version_check",
|
|
14
14
|
]
|
|
15
15
|
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "ahash"
|
|
18
|
+
version = "0.8.11"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"cfg-if",
|
|
23
|
+
"getrandom 0.2.15",
|
|
24
|
+
"once_cell",
|
|
25
|
+
"version_check",
|
|
26
|
+
"zerocopy",
|
|
27
|
+
]
|
|
28
|
+
|
|
16
29
|
[[package]]
|
|
17
30
|
name = "aho-corasick"
|
|
18
|
-
version = "1.1.
|
|
31
|
+
version = "1.1.3"
|
|
19
32
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
-
checksum = "
|
|
33
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
|
21
34
|
dependencies = [
|
|
22
35
|
"memchr",
|
|
23
36
|
]
|
|
24
37
|
|
|
25
38
|
[[package]]
|
|
26
39
|
name = "autocfg"
|
|
27
|
-
version = "1.
|
|
40
|
+
version = "1.4.0"
|
|
28
41
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
29
|
-
checksum = "
|
|
42
|
+
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
30
43
|
|
|
31
44
|
[[package]]
|
|
32
45
|
name = "base64"
|
|
33
|
-
version = "0.
|
|
46
|
+
version = "0.22.1"
|
|
34
47
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
35
|
-
checksum = "
|
|
48
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
36
49
|
|
|
37
50
|
[[package]]
|
|
38
51
|
name = "base64-simd"
|
|
@@ -45,35 +58,32 @@ dependencies = [
|
|
|
45
58
|
|
|
46
59
|
[[package]]
|
|
47
60
|
name = "bindgen"
|
|
48
|
-
version = "0.69.
|
|
61
|
+
version = "0.69.5"
|
|
49
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
50
|
-
checksum = "
|
|
63
|
+
checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
|
|
51
64
|
dependencies = [
|
|
52
|
-
"bitflags
|
|
65
|
+
"bitflags",
|
|
53
66
|
"cexpr",
|
|
54
67
|
"clang-sys",
|
|
68
|
+
"itertools 0.12.1",
|
|
55
69
|
"lazy_static",
|
|
56
70
|
"lazycell",
|
|
57
|
-
"peeking_take_while",
|
|
58
71
|
"proc-macro2",
|
|
59
72
|
"quote",
|
|
60
73
|
"regex",
|
|
61
|
-
"rustc-hash",
|
|
74
|
+
"rustc-hash 1.1.0",
|
|
62
75
|
"shlex",
|
|
63
|
-
"syn 2.0.
|
|
76
|
+
"syn 2.0.100",
|
|
64
77
|
]
|
|
65
78
|
|
|
66
79
|
[[package]]
|
|
67
80
|
name = "bitflags"
|
|
68
|
-
version = "
|
|
69
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
70
|
-
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
71
|
-
|
|
72
|
-
[[package]]
|
|
73
|
-
name = "bitflags"
|
|
74
|
-
version = "2.4.1"
|
|
81
|
+
version = "2.9.0"
|
|
75
82
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
76
|
-
checksum = "
|
|
83
|
+
checksum = "5c8214115b7bf84099f1309324e63141d4c5d7cc26862f97a0a857dbefe165bd"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"serde",
|
|
86
|
+
]
|
|
77
87
|
|
|
78
88
|
[[package]]
|
|
79
89
|
name = "bitvec"
|
|
@@ -98,9 +108,9 @@ dependencies = [
|
|
|
98
108
|
|
|
99
109
|
[[package]]
|
|
100
110
|
name = "bytecheck"
|
|
101
|
-
version = "0.6.
|
|
111
|
+
version = "0.6.12"
|
|
102
112
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
103
|
-
checksum = "
|
|
113
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
104
114
|
dependencies = [
|
|
105
115
|
"bytecheck_derive",
|
|
106
116
|
"ptr_meta",
|
|
@@ -109,26 +119,20 @@ dependencies = [
|
|
|
109
119
|
|
|
110
120
|
[[package]]
|
|
111
121
|
name = "bytecheck_derive"
|
|
112
|
-
version = "0.6.
|
|
122
|
+
version = "0.6.12"
|
|
113
123
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
-
checksum = "
|
|
124
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
115
125
|
dependencies = [
|
|
116
126
|
"proc-macro2",
|
|
117
127
|
"quote",
|
|
118
128
|
"syn 1.0.109",
|
|
119
129
|
]
|
|
120
130
|
|
|
121
|
-
[[package]]
|
|
122
|
-
name = "byteorder"
|
|
123
|
-
version = "1.5.0"
|
|
124
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
125
|
-
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
126
|
-
|
|
127
131
|
[[package]]
|
|
128
132
|
name = "bytes"
|
|
129
|
-
version = "1.
|
|
133
|
+
version = "1.10.1"
|
|
130
134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
-
checksum = "
|
|
135
|
+
checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
|
|
132
136
|
|
|
133
137
|
[[package]]
|
|
134
138
|
name = "cexpr"
|
|
@@ -147,9 +151,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
147
151
|
|
|
148
152
|
[[package]]
|
|
149
153
|
name = "clang-sys"
|
|
150
|
-
version = "1.
|
|
154
|
+
version = "1.8.1"
|
|
151
155
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
-
checksum = "
|
|
156
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
153
157
|
dependencies = [
|
|
154
158
|
"glob",
|
|
155
159
|
"libc",
|
|
@@ -176,45 +180,48 @@ dependencies = [
|
|
|
176
180
|
"syn 1.0.109",
|
|
177
181
|
]
|
|
178
182
|
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "convert_case"
|
|
185
|
+
version = "0.6.0"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"unicode-segmentation",
|
|
190
|
+
]
|
|
191
|
+
|
|
179
192
|
[[package]]
|
|
180
193
|
name = "cpufeatures"
|
|
181
|
-
version = "0.2.
|
|
194
|
+
version = "0.2.17"
|
|
182
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
183
|
-
checksum = "
|
|
196
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
184
197
|
dependencies = [
|
|
185
198
|
"libc",
|
|
186
199
|
]
|
|
187
200
|
|
|
188
201
|
[[package]]
|
|
189
202
|
name = "crossbeam-deque"
|
|
190
|
-
version = "0.8.
|
|
203
|
+
version = "0.8.6"
|
|
191
204
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
-
checksum = "
|
|
205
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
193
206
|
dependencies = [
|
|
194
|
-
"cfg-if",
|
|
195
207
|
"crossbeam-epoch",
|
|
196
208
|
"crossbeam-utils",
|
|
197
209
|
]
|
|
198
210
|
|
|
199
211
|
[[package]]
|
|
200
212
|
name = "crossbeam-epoch"
|
|
201
|
-
version = "0.9.
|
|
213
|
+
version = "0.9.18"
|
|
202
214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
203
|
-
checksum = "
|
|
215
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
204
216
|
dependencies = [
|
|
205
|
-
"autocfg",
|
|
206
|
-
"cfg-if",
|
|
207
217
|
"crossbeam-utils",
|
|
208
218
|
]
|
|
209
219
|
|
|
210
220
|
[[package]]
|
|
211
221
|
name = "crossbeam-utils"
|
|
212
|
-
version = "0.8.
|
|
222
|
+
version = "0.8.21"
|
|
213
223
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
-
checksum = "
|
|
215
|
-
dependencies = [
|
|
216
|
-
"cfg-if",
|
|
217
|
-
]
|
|
224
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
218
225
|
|
|
219
226
|
[[package]]
|
|
220
227
|
name = "crypto-common"
|
|
@@ -235,7 +242,7 @@ dependencies = [
|
|
|
235
242
|
"cssparser-macros",
|
|
236
243
|
"dtoa-short",
|
|
237
244
|
"itoa",
|
|
238
|
-
"phf
|
|
245
|
+
"phf",
|
|
239
246
|
"serde",
|
|
240
247
|
"smallvec",
|
|
241
248
|
]
|
|
@@ -256,7 +263,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
256
263
|
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
257
264
|
dependencies = [
|
|
258
265
|
"quote",
|
|
259
|
-
"syn 2.0.
|
|
266
|
+
"syn 2.0.100",
|
|
260
267
|
]
|
|
261
268
|
|
|
262
269
|
[[package]]
|
|
@@ -266,7 +273,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
266
273
|
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
267
274
|
dependencies = [
|
|
268
275
|
"cfg-if",
|
|
269
|
-
"hashbrown 0.14.
|
|
276
|
+
"hashbrown 0.14.5",
|
|
270
277
|
"lock_api",
|
|
271
278
|
"once_cell",
|
|
272
279
|
"parking_lot_core",
|
|
@@ -274,9 +281,9 @@ dependencies = [
|
|
|
274
281
|
|
|
275
282
|
[[package]]
|
|
276
283
|
name = "data-encoding"
|
|
277
|
-
version = "2.
|
|
284
|
+
version = "2.8.0"
|
|
278
285
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
286
|
+
checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010"
|
|
280
287
|
|
|
281
288
|
[[package]]
|
|
282
289
|
name = "data-url"
|
|
@@ -299,24 +306,30 @@ dependencies = [
|
|
|
299
306
|
|
|
300
307
|
[[package]]
|
|
301
308
|
name = "dtoa"
|
|
302
|
-
version = "1.0.
|
|
309
|
+
version = "1.0.10"
|
|
303
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
-
checksum = "
|
|
311
|
+
checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
|
|
305
312
|
|
|
306
313
|
[[package]]
|
|
307
314
|
name = "dtoa-short"
|
|
308
|
-
version = "0.3.
|
|
315
|
+
version = "0.3.5"
|
|
309
316
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
-
checksum = "
|
|
317
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
311
318
|
dependencies = [
|
|
312
319
|
"dtoa",
|
|
313
320
|
]
|
|
314
321
|
|
|
315
322
|
[[package]]
|
|
316
323
|
name = "either"
|
|
317
|
-
version = "1.
|
|
324
|
+
version = "1.15.0"
|
|
318
325
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
-
checksum = "
|
|
326
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
327
|
+
|
|
328
|
+
[[package]]
|
|
329
|
+
name = "equivalent"
|
|
330
|
+
version = "1.0.2"
|
|
331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
332
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
320
333
|
|
|
321
334
|
[[package]]
|
|
322
335
|
name = "ext"
|
|
@@ -338,15 +351,6 @@ version = "2.0.0"
|
|
|
338
351
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
352
|
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
340
353
|
|
|
341
|
-
[[package]]
|
|
342
|
-
name = "fxhash"
|
|
343
|
-
version = "0.2.1"
|
|
344
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
-
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
|
346
|
-
dependencies = [
|
|
347
|
-
"byteorder",
|
|
348
|
-
]
|
|
349
|
-
|
|
350
354
|
[[package]]
|
|
351
355
|
name = "generic-array"
|
|
352
356
|
version = "0.14.7"
|
|
@@ -359,20 +363,32 @@ dependencies = [
|
|
|
359
363
|
|
|
360
364
|
[[package]]
|
|
361
365
|
name = "getrandom"
|
|
362
|
-
version = "0.2.
|
|
366
|
+
version = "0.2.15"
|
|
363
367
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
364
|
-
checksum = "
|
|
368
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
|
365
369
|
dependencies = [
|
|
366
370
|
"cfg-if",
|
|
367
371
|
"libc",
|
|
368
372
|
"wasi",
|
|
369
373
|
]
|
|
370
374
|
|
|
375
|
+
[[package]]
|
|
376
|
+
name = "getrandom"
|
|
377
|
+
version = "0.3.4"
|
|
378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
379
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
380
|
+
dependencies = [
|
|
381
|
+
"cfg-if",
|
|
382
|
+
"libc",
|
|
383
|
+
"r-efi",
|
|
384
|
+
"wasip2",
|
|
385
|
+
]
|
|
386
|
+
|
|
371
387
|
[[package]]
|
|
372
388
|
name = "glob"
|
|
373
|
-
version = "0.3.
|
|
389
|
+
version = "0.3.2"
|
|
374
390
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
-
checksum = "
|
|
391
|
+
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
|
376
392
|
|
|
377
393
|
[[package]]
|
|
378
394
|
name = "hashbrown"
|
|
@@ -380,14 +396,31 @@ version = "0.12.3"
|
|
|
380
396
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
381
397
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
382
398
|
dependencies = [
|
|
383
|
-
"ahash",
|
|
399
|
+
"ahash 0.7.8",
|
|
384
400
|
]
|
|
385
401
|
|
|
386
402
|
[[package]]
|
|
387
403
|
name = "hashbrown"
|
|
388
|
-
version = "0.14.
|
|
404
|
+
version = "0.14.5"
|
|
389
405
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
390
|
-
checksum = "
|
|
406
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
407
|
+
|
|
408
|
+
[[package]]
|
|
409
|
+
name = "hashbrown"
|
|
410
|
+
version = "0.15.2"
|
|
411
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
412
|
+
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "indexmap"
|
|
416
|
+
version = "2.8.0"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "3954d50fe15b02142bf25d3b8bdadb634ec3948f103d04ffe3031bc8fe9d7058"
|
|
419
|
+
dependencies = [
|
|
420
|
+
"equivalent",
|
|
421
|
+
"hashbrown 0.15.2",
|
|
422
|
+
"serde",
|
|
423
|
+
]
|
|
391
424
|
|
|
392
425
|
[[package]]
|
|
393
426
|
name = "itertools"
|
|
@@ -398,17 +431,26 @@ dependencies = [
|
|
|
398
431
|
"either",
|
|
399
432
|
]
|
|
400
433
|
|
|
434
|
+
[[package]]
|
|
435
|
+
name = "itertools"
|
|
436
|
+
version = "0.12.1"
|
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
438
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
|
439
|
+
dependencies = [
|
|
440
|
+
"either",
|
|
441
|
+
]
|
|
442
|
+
|
|
401
443
|
[[package]]
|
|
402
444
|
name = "itoa"
|
|
403
|
-
version = "1.0.
|
|
445
|
+
version = "1.0.15"
|
|
404
446
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
-
checksum = "
|
|
447
|
+
checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
|
|
406
448
|
|
|
407
449
|
[[package]]
|
|
408
450
|
name = "lazy_static"
|
|
409
|
-
version = "1.
|
|
451
|
+
version = "1.5.0"
|
|
410
452
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
-
checksum = "
|
|
453
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
412
454
|
|
|
413
455
|
[[package]]
|
|
414
456
|
name = "lazycell"
|
|
@@ -418,52 +460,56 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
|
418
460
|
|
|
419
461
|
[[package]]
|
|
420
462
|
name = "libc"
|
|
421
|
-
version = "0.2.
|
|
463
|
+
version = "0.2.171"
|
|
422
464
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
-
checksum = "
|
|
465
|
+
checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
|
|
424
466
|
|
|
425
467
|
[[package]]
|
|
426
468
|
name = "libloading"
|
|
427
|
-
version = "0.
|
|
469
|
+
version = "0.8.6"
|
|
428
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
-
checksum = "
|
|
471
|
+
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
|
|
430
472
|
dependencies = [
|
|
431
473
|
"cfg-if",
|
|
432
|
-
"
|
|
474
|
+
"windows-targets",
|
|
433
475
|
]
|
|
434
476
|
|
|
435
477
|
[[package]]
|
|
436
478
|
name = "lightningcss"
|
|
437
|
-
version = "1.0.0-alpha.
|
|
479
|
+
version = "1.0.0-alpha.70"
|
|
438
480
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "
|
|
481
|
+
checksum = "9efb6a77b2389e62735b0b8157be9cc10a159eb4d1c3b864e99db9f297ada1b0"
|
|
440
482
|
dependencies = [
|
|
441
|
-
"ahash",
|
|
442
|
-
"bitflags
|
|
483
|
+
"ahash 0.8.11",
|
|
484
|
+
"bitflags",
|
|
443
485
|
"const-str",
|
|
444
486
|
"cssparser",
|
|
445
487
|
"cssparser-color",
|
|
446
488
|
"dashmap",
|
|
447
489
|
"data-encoding",
|
|
448
|
-
"
|
|
490
|
+
"getrandom 0.3.4",
|
|
491
|
+
"indexmap",
|
|
492
|
+
"itertools 0.10.5",
|
|
449
493
|
"lazy_static",
|
|
450
494
|
"lightningcss-derive",
|
|
451
495
|
"parcel_selectors",
|
|
452
496
|
"parcel_sourcemap",
|
|
453
|
-
"
|
|
497
|
+
"pastey",
|
|
454
498
|
"pathdiff",
|
|
455
499
|
"rayon",
|
|
456
500
|
"serde",
|
|
501
|
+
"serde-content",
|
|
457
502
|
"smallvec",
|
|
458
503
|
"static-self",
|
|
459
504
|
]
|
|
460
505
|
|
|
461
506
|
[[package]]
|
|
462
507
|
name = "lightningcss-derive"
|
|
463
|
-
version = "1.0.0-alpha.
|
|
508
|
+
version = "1.0.0-alpha.43"
|
|
464
509
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
-
checksum = "
|
|
510
|
+
checksum = "84c12744d1279367caed41739ef094c325d53fb0ffcd4f9b84a368796f870252"
|
|
466
511
|
dependencies = [
|
|
512
|
+
"convert_case",
|
|
467
513
|
"proc-macro2",
|
|
468
514
|
"quote",
|
|
469
515
|
"syn 1.0.109",
|
|
@@ -471,9 +517,9 @@ dependencies = [
|
|
|
471
517
|
|
|
472
518
|
[[package]]
|
|
473
519
|
name = "lock_api"
|
|
474
|
-
version = "0.4.
|
|
520
|
+
version = "0.4.12"
|
|
475
521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
476
|
-
checksum = "
|
|
522
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
477
523
|
dependencies = [
|
|
478
524
|
"autocfg",
|
|
479
525
|
"scopeguard",
|
|
@@ -481,15 +527,15 @@ dependencies = [
|
|
|
481
527
|
|
|
482
528
|
[[package]]
|
|
483
529
|
name = "log"
|
|
484
|
-
version = "0.4.
|
|
530
|
+
version = "0.4.26"
|
|
485
531
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
-
checksum = "
|
|
532
|
+
checksum = "30bde2b3dc3671ae49d8e2e9f044c7c005836e7a023ee57cffa25ab82764bb9e"
|
|
487
533
|
|
|
488
534
|
[[package]]
|
|
489
535
|
name = "magnus"
|
|
490
|
-
version = "0.
|
|
536
|
+
version = "0.8.2"
|
|
491
537
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
-
checksum = "
|
|
538
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
493
539
|
dependencies = [
|
|
494
540
|
"magnus-macros",
|
|
495
541
|
"rb-sys",
|
|
@@ -499,13 +545,13 @@ dependencies = [
|
|
|
499
545
|
|
|
500
546
|
[[package]]
|
|
501
547
|
name = "magnus-macros"
|
|
502
|
-
version = "0.
|
|
548
|
+
version = "0.8.0"
|
|
503
549
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
504
|
-
checksum = "
|
|
550
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
505
551
|
dependencies = [
|
|
506
552
|
"proc-macro2",
|
|
507
553
|
"quote",
|
|
508
|
-
"syn 2.0.
|
|
554
|
+
"syn 2.0.100",
|
|
509
555
|
]
|
|
510
556
|
|
|
511
557
|
[[package]]
|
|
@@ -516,9 +562,9 @@ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
|
516
562
|
|
|
517
563
|
[[package]]
|
|
518
564
|
name = "memchr"
|
|
519
|
-
version = "2.
|
|
565
|
+
version = "2.7.4"
|
|
520
566
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
-
checksum = "
|
|
567
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
|
522
568
|
|
|
523
569
|
[[package]]
|
|
524
570
|
name = "minimal-lexical"
|
|
@@ -538,9 +584,9 @@ dependencies = [
|
|
|
538
584
|
|
|
539
585
|
[[package]]
|
|
540
586
|
name = "once_cell"
|
|
541
|
-
version = "1.
|
|
587
|
+
version = "1.21.1"
|
|
542
588
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
543
|
-
checksum = "
|
|
589
|
+
checksum = "d75b0bedcc4fe52caa0e03d9f1151a323e4aa5e2d78ba3580400cd3c9e2bc4bc"
|
|
544
590
|
|
|
545
591
|
[[package]]
|
|
546
592
|
name = "outref"
|
|
@@ -550,17 +596,17 @@ checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4"
|
|
|
550
596
|
|
|
551
597
|
[[package]]
|
|
552
598
|
name = "parcel_selectors"
|
|
553
|
-
version = "0.
|
|
599
|
+
version = "0.28.2"
|
|
554
600
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
-
checksum = "
|
|
601
|
+
checksum = "54fd03f1ad26cb6b3ec1b7414fa78a3bd639e7dbb421b1a60513c96ce886a196"
|
|
556
602
|
dependencies = [
|
|
557
|
-
"bitflags
|
|
603
|
+
"bitflags",
|
|
558
604
|
"cssparser",
|
|
559
|
-
"fxhash",
|
|
560
605
|
"log",
|
|
561
|
-
"phf
|
|
606
|
+
"phf",
|
|
562
607
|
"phf_codegen",
|
|
563
608
|
"precomputed-hash",
|
|
609
|
+
"rustc-hash 2.1.1",
|
|
564
610
|
"serde",
|
|
565
611
|
"smallvec",
|
|
566
612
|
"static-self",
|
|
@@ -582,9 +628,9 @@ dependencies = [
|
|
|
582
628
|
|
|
583
629
|
[[package]]
|
|
584
630
|
name = "parking_lot_core"
|
|
585
|
-
version = "0.9.
|
|
631
|
+
version = "0.9.10"
|
|
586
632
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
-
checksum = "
|
|
633
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
|
588
634
|
dependencies = [
|
|
589
635
|
"cfg-if",
|
|
590
636
|
"libc",
|
|
@@ -594,109 +640,69 @@ dependencies = [
|
|
|
594
640
|
]
|
|
595
641
|
|
|
596
642
|
[[package]]
|
|
597
|
-
name = "
|
|
598
|
-
version = "1.
|
|
643
|
+
name = "pastey"
|
|
644
|
+
version = "0.1.1"
|
|
599
645
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
-
checksum = "
|
|
646
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
601
647
|
|
|
602
648
|
[[package]]
|
|
603
649
|
name = "pathdiff"
|
|
604
|
-
version = "0.2.
|
|
605
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
606
|
-
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
|
|
607
|
-
|
|
608
|
-
[[package]]
|
|
609
|
-
name = "peeking_take_while"
|
|
610
|
-
version = "0.1.2"
|
|
650
|
+
version = "0.2.3"
|
|
611
651
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
612
|
-
checksum = "
|
|
652
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
613
653
|
|
|
614
654
|
[[package]]
|
|
615
655
|
name = "phf"
|
|
616
|
-
version = "0.
|
|
656
|
+
version = "0.11.3"
|
|
617
657
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
-
checksum = "
|
|
619
|
-
dependencies = [
|
|
620
|
-
"phf_shared 0.10.0",
|
|
621
|
-
]
|
|
622
|
-
|
|
623
|
-
[[package]]
|
|
624
|
-
name = "phf"
|
|
625
|
-
version = "0.11.2"
|
|
626
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
-
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
658
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
628
659
|
dependencies = [
|
|
629
660
|
"phf_macros",
|
|
630
|
-
"phf_shared
|
|
661
|
+
"phf_shared",
|
|
631
662
|
]
|
|
632
663
|
|
|
633
664
|
[[package]]
|
|
634
665
|
name = "phf_codegen"
|
|
635
|
-
version = "0.
|
|
636
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
-
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
|
|
638
|
-
dependencies = [
|
|
639
|
-
"phf_generator 0.10.0",
|
|
640
|
-
"phf_shared 0.10.0",
|
|
641
|
-
]
|
|
642
|
-
|
|
643
|
-
[[package]]
|
|
644
|
-
name = "phf_generator"
|
|
645
|
-
version = "0.10.0"
|
|
666
|
+
version = "0.11.3"
|
|
646
667
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
-
checksum = "
|
|
668
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
648
669
|
dependencies = [
|
|
649
|
-
"
|
|
650
|
-
"
|
|
670
|
+
"phf_generator",
|
|
671
|
+
"phf_shared",
|
|
651
672
|
]
|
|
652
673
|
|
|
653
674
|
[[package]]
|
|
654
675
|
name = "phf_generator"
|
|
655
|
-
version = "0.11.
|
|
676
|
+
version = "0.11.3"
|
|
656
677
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
-
checksum = "
|
|
678
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
658
679
|
dependencies = [
|
|
659
|
-
"phf_shared
|
|
680
|
+
"phf_shared",
|
|
660
681
|
"rand",
|
|
661
682
|
]
|
|
662
683
|
|
|
663
684
|
[[package]]
|
|
664
685
|
name = "phf_macros"
|
|
665
|
-
version = "0.11.
|
|
686
|
+
version = "0.11.3"
|
|
666
687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
667
|
-
checksum = "
|
|
688
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
668
689
|
dependencies = [
|
|
669
|
-
"phf_generator
|
|
670
|
-
"phf_shared
|
|
690
|
+
"phf_generator",
|
|
691
|
+
"phf_shared",
|
|
671
692
|
"proc-macro2",
|
|
672
693
|
"quote",
|
|
673
|
-
"syn 2.0.
|
|
694
|
+
"syn 2.0.100",
|
|
674
695
|
]
|
|
675
696
|
|
|
676
697
|
[[package]]
|
|
677
698
|
name = "phf_shared"
|
|
678
|
-
version = "0.
|
|
699
|
+
version = "0.11.3"
|
|
679
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
680
|
-
checksum = "
|
|
701
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
681
702
|
dependencies = [
|
|
682
703
|
"siphasher",
|
|
683
704
|
]
|
|
684
705
|
|
|
685
|
-
[[package]]
|
|
686
|
-
name = "phf_shared"
|
|
687
|
-
version = "0.11.2"
|
|
688
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
-
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
690
|
-
dependencies = [
|
|
691
|
-
"siphasher",
|
|
692
|
-
]
|
|
693
|
-
|
|
694
|
-
[[package]]
|
|
695
|
-
name = "ppv-lite86"
|
|
696
|
-
version = "0.2.17"
|
|
697
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
-
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
699
|
-
|
|
700
706
|
[[package]]
|
|
701
707
|
name = "precomputed-hash"
|
|
702
708
|
version = "0.1.1"
|
|
@@ -705,9 +711,9 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
705
711
|
|
|
706
712
|
[[package]]
|
|
707
713
|
name = "proc-macro2"
|
|
708
|
-
version = "1.0.
|
|
714
|
+
version = "1.0.94"
|
|
709
715
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
-
checksum = "
|
|
716
|
+
checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
|
|
711
717
|
dependencies = [
|
|
712
718
|
"unicode-ident",
|
|
713
719
|
]
|
|
@@ -734,13 +740,19 @@ dependencies = [
|
|
|
734
740
|
|
|
735
741
|
[[package]]
|
|
736
742
|
name = "quote"
|
|
737
|
-
version = "1.0.
|
|
743
|
+
version = "1.0.40"
|
|
738
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
-
checksum = "
|
|
745
|
+
checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
|
|
740
746
|
dependencies = [
|
|
741
747
|
"proc-macro2",
|
|
742
748
|
]
|
|
743
749
|
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "r-efi"
|
|
752
|
+
version = "5.3.0"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
755
|
+
|
|
744
756
|
[[package]]
|
|
745
757
|
name = "radium"
|
|
746
758
|
version = "0.7.0"
|
|
@@ -753,18 +765,6 @@ version = "0.8.5"
|
|
|
753
765
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
766
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
|
755
767
|
dependencies = [
|
|
756
|
-
"libc",
|
|
757
|
-
"rand_chacha",
|
|
758
|
-
"rand_core",
|
|
759
|
-
]
|
|
760
|
-
|
|
761
|
-
[[package]]
|
|
762
|
-
name = "rand_chacha"
|
|
763
|
-
version = "0.3.1"
|
|
764
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
765
|
-
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
766
|
-
dependencies = [
|
|
767
|
-
"ppv-lite86",
|
|
768
768
|
"rand_core",
|
|
769
769
|
]
|
|
770
770
|
|
|
@@ -773,15 +773,12 @@ name = "rand_core"
|
|
|
773
773
|
version = "0.6.4"
|
|
774
774
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
775
775
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
776
|
-
dependencies = [
|
|
777
|
-
"getrandom",
|
|
778
|
-
]
|
|
779
776
|
|
|
780
777
|
[[package]]
|
|
781
778
|
name = "rayon"
|
|
782
|
-
version = "1.
|
|
779
|
+
version = "1.10.0"
|
|
783
780
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
-
checksum = "
|
|
781
|
+
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
|
|
785
782
|
dependencies = [
|
|
786
783
|
"either",
|
|
787
784
|
"rayon-core",
|
|
@@ -789,9 +786,9 @@ dependencies = [
|
|
|
789
786
|
|
|
790
787
|
[[package]]
|
|
791
788
|
name = "rayon-core"
|
|
792
|
-
version = "1.12.
|
|
789
|
+
version = "1.12.1"
|
|
793
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
-
checksum = "
|
|
791
|
+
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
|
|
795
792
|
dependencies = [
|
|
796
793
|
"crossbeam-deque",
|
|
797
794
|
"crossbeam-utils",
|
|
@@ -799,18 +796,18 @@ dependencies = [
|
|
|
799
796
|
|
|
800
797
|
[[package]]
|
|
801
798
|
name = "rb-sys"
|
|
802
|
-
version = "0.9.
|
|
799
|
+
version = "0.9.124"
|
|
803
800
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
804
|
-
checksum = "
|
|
801
|
+
checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
|
|
805
802
|
dependencies = [
|
|
806
803
|
"rb-sys-build",
|
|
807
804
|
]
|
|
808
805
|
|
|
809
806
|
[[package]]
|
|
810
807
|
name = "rb-sys-build"
|
|
811
|
-
version = "0.9.
|
|
808
|
+
version = "0.9.124"
|
|
812
809
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
810
|
+
checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
|
|
814
811
|
dependencies = [
|
|
815
812
|
"bindgen",
|
|
816
813
|
"lazy_static",
|
|
@@ -818,29 +815,29 @@ dependencies = [
|
|
|
818
815
|
"quote",
|
|
819
816
|
"regex",
|
|
820
817
|
"shell-words",
|
|
821
|
-
"syn 2.0.
|
|
818
|
+
"syn 2.0.100",
|
|
822
819
|
]
|
|
823
820
|
|
|
824
821
|
[[package]]
|
|
825
822
|
name = "rb-sys-env"
|
|
826
|
-
version = "0.
|
|
823
|
+
version = "0.2.3"
|
|
827
824
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
828
|
-
checksum = "
|
|
825
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
829
826
|
|
|
830
827
|
[[package]]
|
|
831
828
|
name = "redox_syscall"
|
|
832
|
-
version = "0.
|
|
829
|
+
version = "0.5.10"
|
|
833
830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
-
checksum = "
|
|
831
|
+
checksum = "0b8c0c260b63a8219631167be35e6a988e9554dbd323f8bd08439c8ed1302bd1"
|
|
835
832
|
dependencies = [
|
|
836
|
-
"bitflags
|
|
833
|
+
"bitflags",
|
|
837
834
|
]
|
|
838
835
|
|
|
839
836
|
[[package]]
|
|
840
837
|
name = "regex"
|
|
841
|
-
version = "1.
|
|
838
|
+
version = "1.11.1"
|
|
842
839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
843
|
-
checksum = "
|
|
840
|
+
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
|
|
844
841
|
dependencies = [
|
|
845
842
|
"aho-corasick",
|
|
846
843
|
"memchr",
|
|
@@ -850,9 +847,9 @@ dependencies = [
|
|
|
850
847
|
|
|
851
848
|
[[package]]
|
|
852
849
|
name = "regex-automata"
|
|
853
|
-
version = "0.4.
|
|
850
|
+
version = "0.4.9"
|
|
854
851
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
-
checksum = "
|
|
852
|
+
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
|
|
856
853
|
dependencies = [
|
|
857
854
|
"aho-corasick",
|
|
858
855
|
"memchr",
|
|
@@ -861,24 +858,24 @@ dependencies = [
|
|
|
861
858
|
|
|
862
859
|
[[package]]
|
|
863
860
|
name = "regex-syntax"
|
|
864
|
-
version = "0.8.
|
|
861
|
+
version = "0.8.5"
|
|
865
862
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
866
|
-
checksum = "
|
|
863
|
+
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
|
|
867
864
|
|
|
868
865
|
[[package]]
|
|
869
866
|
name = "rend"
|
|
870
|
-
version = "0.4.
|
|
867
|
+
version = "0.4.2"
|
|
871
868
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
-
checksum = "
|
|
869
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
873
870
|
dependencies = [
|
|
874
871
|
"bytecheck",
|
|
875
872
|
]
|
|
876
873
|
|
|
877
874
|
[[package]]
|
|
878
875
|
name = "rkyv"
|
|
879
|
-
version = "0.7.
|
|
876
|
+
version = "0.7.45"
|
|
880
877
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
-
checksum = "
|
|
878
|
+
checksum = "9008cd6385b9e161d8229e1f6549dd23c3d022f132a2ea37ac3a10ac4935779b"
|
|
882
879
|
dependencies = [
|
|
883
880
|
"bitvec",
|
|
884
881
|
"bytecheck",
|
|
@@ -894,9 +891,9 @@ dependencies = [
|
|
|
894
891
|
|
|
895
892
|
[[package]]
|
|
896
893
|
name = "rkyv_derive"
|
|
897
|
-
version = "0.7.
|
|
894
|
+
version = "0.7.45"
|
|
898
895
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
-
checksum = "
|
|
896
|
+
checksum = "503d1d27590a2b0a3a4ca4c94755aa2875657196ecbf401a42eff41d7de532c0"
|
|
900
897
|
dependencies = [
|
|
901
898
|
"proc-macro2",
|
|
902
899
|
"quote",
|
|
@@ -910,10 +907,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
910
907
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
911
908
|
|
|
912
909
|
[[package]]
|
|
913
|
-
name = "
|
|
914
|
-
version = "1.
|
|
910
|
+
name = "rustc-hash"
|
|
911
|
+
version = "2.1.1"
|
|
915
912
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
-
checksum = "
|
|
913
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
917
914
|
|
|
918
915
|
[[package]]
|
|
919
916
|
name = "scopeguard"
|
|
@@ -929,46 +926,67 @@ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
|
929
926
|
|
|
930
927
|
[[package]]
|
|
931
928
|
name = "seq-macro"
|
|
932
|
-
version = "0.3.
|
|
929
|
+
version = "0.3.6"
|
|
933
930
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
-
checksum = "
|
|
931
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
935
932
|
|
|
936
933
|
[[package]]
|
|
937
934
|
name = "serde"
|
|
938
|
-
version = "1.0.
|
|
935
|
+
version = "1.0.228"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
938
|
+
dependencies = [
|
|
939
|
+
"serde_core",
|
|
940
|
+
"serde_derive",
|
|
941
|
+
]
|
|
942
|
+
|
|
943
|
+
[[package]]
|
|
944
|
+
name = "serde-content"
|
|
945
|
+
version = "0.1.2"
|
|
939
946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
-
checksum = "
|
|
947
|
+
checksum = "3753ca04f350fa92d00b6146a3555e63c55388c9ef2e11e09bce2ff1c0b509c6"
|
|
948
|
+
dependencies = [
|
|
949
|
+
"serde",
|
|
950
|
+
]
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "serde_core"
|
|
954
|
+
version = "1.0.228"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
941
957
|
dependencies = [
|
|
942
958
|
"serde_derive",
|
|
943
959
|
]
|
|
944
960
|
|
|
945
961
|
[[package]]
|
|
946
962
|
name = "serde_derive"
|
|
947
|
-
version = "1.0.
|
|
963
|
+
version = "1.0.228"
|
|
948
964
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
-
checksum = "
|
|
965
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
950
966
|
dependencies = [
|
|
951
967
|
"proc-macro2",
|
|
952
968
|
"quote",
|
|
953
|
-
"syn 2.0.
|
|
969
|
+
"syn 2.0.100",
|
|
954
970
|
]
|
|
955
971
|
|
|
956
972
|
[[package]]
|
|
957
973
|
name = "serde_json"
|
|
958
|
-
version = "1.0.
|
|
974
|
+
version = "1.0.149"
|
|
959
975
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
-
checksum = "
|
|
976
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
961
977
|
dependencies = [
|
|
962
978
|
"itoa",
|
|
963
|
-
"
|
|
979
|
+
"memchr",
|
|
964
980
|
"serde",
|
|
981
|
+
"serde_core",
|
|
982
|
+
"zmij",
|
|
965
983
|
]
|
|
966
984
|
|
|
967
985
|
[[package]]
|
|
968
986
|
name = "sha2"
|
|
969
|
-
version = "0.10.
|
|
987
|
+
version = "0.10.9"
|
|
970
988
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
971
|
-
checksum = "
|
|
989
|
+
checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
|
|
972
990
|
dependencies = [
|
|
973
991
|
"cfg-if",
|
|
974
992
|
"cpufeatures",
|
|
@@ -983,9 +1001,9 @@ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
|
|
983
1001
|
|
|
984
1002
|
[[package]]
|
|
985
1003
|
name = "shlex"
|
|
986
|
-
version = "1.
|
|
1004
|
+
version = "1.3.0"
|
|
987
1005
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
-
checksum = "
|
|
1006
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
989
1007
|
|
|
990
1008
|
[[package]]
|
|
991
1009
|
name = "simd-abstraction"
|
|
@@ -998,31 +1016,32 @@ dependencies = [
|
|
|
998
1016
|
|
|
999
1017
|
[[package]]
|
|
1000
1018
|
name = "simdutf8"
|
|
1001
|
-
version = "0.1.
|
|
1019
|
+
version = "0.1.5"
|
|
1002
1020
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
-
checksum = "
|
|
1021
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
1004
1022
|
|
|
1005
1023
|
[[package]]
|
|
1006
1024
|
name = "siphasher"
|
|
1007
|
-
version = "0.
|
|
1025
|
+
version = "1.0.1"
|
|
1008
1026
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
-
checksum = "
|
|
1027
|
+
checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
|
|
1010
1028
|
|
|
1011
1029
|
[[package]]
|
|
1012
1030
|
name = "smallvec"
|
|
1013
|
-
version = "1.
|
|
1031
|
+
version = "1.14.0"
|
|
1014
1032
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1015
|
-
checksum = "
|
|
1033
|
+
checksum = "7fcf8323ef1faaee30a44a340193b1ac6814fd9b7b4e88e9d4519a3e4abe1cfd"
|
|
1016
1034
|
dependencies = [
|
|
1017
1035
|
"serde",
|
|
1018
1036
|
]
|
|
1019
1037
|
|
|
1020
1038
|
[[package]]
|
|
1021
1039
|
name = "static-self"
|
|
1022
|
-
version = "0.1.
|
|
1040
|
+
version = "0.1.2"
|
|
1023
1041
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1024
|
-
checksum = "
|
|
1042
|
+
checksum = "f6635404b73efc136af3a7956e53c53d4f34b2f16c95a15c438929add0f69412"
|
|
1025
1043
|
dependencies = [
|
|
1044
|
+
"indexmap",
|
|
1026
1045
|
"smallvec",
|
|
1027
1046
|
"static-self-derive",
|
|
1028
1047
|
]
|
|
@@ -1051,9 +1070,9 @@ dependencies = [
|
|
|
1051
1070
|
|
|
1052
1071
|
[[package]]
|
|
1053
1072
|
name = "syn"
|
|
1054
|
-
version = "2.0.
|
|
1073
|
+
version = "2.0.100"
|
|
1055
1074
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
-
checksum = "
|
|
1075
|
+
checksum = "b09a44accad81e1ba1cd74a32461ba89dee89095ba17b32f5d03683b1b1fc2a0"
|
|
1057
1076
|
dependencies = [
|
|
1058
1077
|
"proc-macro2",
|
|
1059
1078
|
"quote",
|
|
@@ -1068,9 +1087,9 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
|
1068
1087
|
|
|
1069
1088
|
[[package]]
|
|
1070
1089
|
name = "tinyvec"
|
|
1071
|
-
version = "1.
|
|
1090
|
+
version = "1.9.0"
|
|
1072
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1073
|
-
checksum = "
|
|
1092
|
+
checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
|
|
1074
1093
|
dependencies = [
|
|
1075
1094
|
"tinyvec_macros",
|
|
1076
1095
|
]
|
|
@@ -1083,27 +1102,33 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
|
1083
1102
|
|
|
1084
1103
|
[[package]]
|
|
1085
1104
|
name = "typenum"
|
|
1086
|
-
version = "1.
|
|
1105
|
+
version = "1.18.0"
|
|
1087
1106
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
-
checksum = "
|
|
1107
|
+
checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
|
|
1089
1108
|
|
|
1090
1109
|
[[package]]
|
|
1091
1110
|
name = "unicode-ident"
|
|
1092
|
-
version = "1.0.
|
|
1111
|
+
version = "1.0.18"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "unicode-segmentation"
|
|
1117
|
+
version = "1.12.0"
|
|
1093
1118
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1094
|
-
checksum = "
|
|
1119
|
+
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
|
|
1095
1120
|
|
|
1096
1121
|
[[package]]
|
|
1097
1122
|
name = "uuid"
|
|
1098
|
-
version = "1.
|
|
1123
|
+
version = "1.16.0"
|
|
1099
1124
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1100
|
-
checksum = "
|
|
1125
|
+
checksum = "458f7a779bf54acc9f347480ac654f68407d3aab21269a6e3c9f922acd9e2da9"
|
|
1101
1126
|
|
|
1102
1127
|
[[package]]
|
|
1103
1128
|
name = "version_check"
|
|
1104
|
-
version = "0.9.
|
|
1129
|
+
version = "0.9.5"
|
|
1105
1130
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1106
|
-
checksum = "
|
|
1131
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1107
1132
|
|
|
1108
1133
|
[[package]]
|
|
1109
1134
|
name = "vlq"
|
|
@@ -1118,36 +1143,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
1118
1143
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
1119
1144
|
|
|
1120
1145
|
[[package]]
|
|
1121
|
-
name = "
|
|
1122
|
-
version = "0.
|
|
1146
|
+
name = "wasip2"
|
|
1147
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1123
1148
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
-
checksum = "
|
|
1149
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1125
1150
|
dependencies = [
|
|
1126
|
-
"
|
|
1127
|
-
"winapi-x86_64-pc-windows-gnu",
|
|
1151
|
+
"wit-bindgen",
|
|
1128
1152
|
]
|
|
1129
1153
|
|
|
1130
|
-
[[package]]
|
|
1131
|
-
name = "winapi-i686-pc-windows-gnu"
|
|
1132
|
-
version = "0.4.0"
|
|
1133
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
-
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1135
|
-
|
|
1136
|
-
[[package]]
|
|
1137
|
-
name = "winapi-x86_64-pc-windows-gnu"
|
|
1138
|
-
version = "0.4.0"
|
|
1139
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
-
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1141
|
-
|
|
1142
1154
|
[[package]]
|
|
1143
1155
|
name = "windows-targets"
|
|
1144
|
-
version = "0.
|
|
1156
|
+
version = "0.52.6"
|
|
1145
1157
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
-
checksum = "
|
|
1158
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1147
1159
|
dependencies = [
|
|
1148
1160
|
"windows_aarch64_gnullvm",
|
|
1149
1161
|
"windows_aarch64_msvc",
|
|
1150
1162
|
"windows_i686_gnu",
|
|
1163
|
+
"windows_i686_gnullvm",
|
|
1151
1164
|
"windows_i686_msvc",
|
|
1152
1165
|
"windows_x86_64_gnu",
|
|
1153
1166
|
"windows_x86_64_gnullvm",
|
|
@@ -1156,45 +1169,57 @@ dependencies = [
|
|
|
1156
1169
|
|
|
1157
1170
|
[[package]]
|
|
1158
1171
|
name = "windows_aarch64_gnullvm"
|
|
1159
|
-
version = "0.
|
|
1172
|
+
version = "0.52.6"
|
|
1160
1173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1161
|
-
checksum = "
|
|
1174
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1162
1175
|
|
|
1163
1176
|
[[package]]
|
|
1164
1177
|
name = "windows_aarch64_msvc"
|
|
1165
|
-
version = "0.
|
|
1178
|
+
version = "0.52.6"
|
|
1166
1179
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1167
|
-
checksum = "
|
|
1180
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1168
1181
|
|
|
1169
1182
|
[[package]]
|
|
1170
1183
|
name = "windows_i686_gnu"
|
|
1171
|
-
version = "0.
|
|
1184
|
+
version = "0.52.6"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "windows_i686_gnullvm"
|
|
1190
|
+
version = "0.52.6"
|
|
1172
1191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1173
|
-
checksum = "
|
|
1192
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1174
1193
|
|
|
1175
1194
|
[[package]]
|
|
1176
1195
|
name = "windows_i686_msvc"
|
|
1177
|
-
version = "0.
|
|
1196
|
+
version = "0.52.6"
|
|
1178
1197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
-
checksum = "
|
|
1198
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1180
1199
|
|
|
1181
1200
|
[[package]]
|
|
1182
1201
|
name = "windows_x86_64_gnu"
|
|
1183
|
-
version = "0.
|
|
1202
|
+
version = "0.52.6"
|
|
1184
1203
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
-
checksum = "
|
|
1204
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1186
1205
|
|
|
1187
1206
|
[[package]]
|
|
1188
1207
|
name = "windows_x86_64_gnullvm"
|
|
1189
|
-
version = "0.
|
|
1208
|
+
version = "0.52.6"
|
|
1190
1209
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
-
checksum = "
|
|
1210
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1192
1211
|
|
|
1193
1212
|
[[package]]
|
|
1194
1213
|
name = "windows_x86_64_msvc"
|
|
1195
|
-
version = "0.
|
|
1214
|
+
version = "0.52.6"
|
|
1215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1216
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1217
|
+
|
|
1218
|
+
[[package]]
|
|
1219
|
+
name = "wit-bindgen"
|
|
1220
|
+
version = "0.51.0"
|
|
1196
1221
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
-
checksum = "
|
|
1222
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1198
1223
|
|
|
1199
1224
|
[[package]]
|
|
1200
1225
|
name = "wyz"
|
|
@@ -1204,3 +1229,29 @@ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
|
1204
1229
|
dependencies = [
|
|
1205
1230
|
"tap",
|
|
1206
1231
|
]
|
|
1232
|
+
|
|
1233
|
+
[[package]]
|
|
1234
|
+
name = "zerocopy"
|
|
1235
|
+
version = "0.7.35"
|
|
1236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1237
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"zerocopy-derive",
|
|
1240
|
+
]
|
|
1241
|
+
|
|
1242
|
+
[[package]]
|
|
1243
|
+
name = "zerocopy-derive"
|
|
1244
|
+
version = "0.7.35"
|
|
1245
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1246
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
|
1247
|
+
dependencies = [
|
|
1248
|
+
"proc-macro2",
|
|
1249
|
+
"quote",
|
|
1250
|
+
"syn 2.0.100",
|
|
1251
|
+
]
|
|
1252
|
+
|
|
1253
|
+
[[package]]
|
|
1254
|
+
name = "zmij"
|
|
1255
|
+
version = "1.0.16"
|
|
1256
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1257
|
+
checksum = "dfcd145825aace48cff44a8844de64bf75feec3080e0aa5cdbde72961ae51a65"
|