mayu-css 0.0.2-x86_64-linux → 0.0.3-x86_64-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 +270 -254
- data/lib/mayu/css/3.1/ext.so +0 -0
- data/lib/mayu/css/3.2/ext.so +0 -0
- data/lib/mayu/css/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 32599b3840ae9f500834dc537e18fa0f38946578ea0602c43cfe6d43203c29d9
|
4
|
+
data.tar.gz: 3164f219fc548221319452b72337fa5b981b076b473004206675595666e29a41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c5ed57fb760d8941e53e44f75326f677a0afdb5e9cca667832ff8d01a70636580e76a858f428e01bc0e5598241e76318518deca3ba9354fa5b80f30eebf8aa9
|
7
|
+
data.tar.gz: 971ae7dca1bd54f99c0c676044cdc2e6663c7f98110b9195851c0cfeac36a6facd7b6fb48de541ff88c9e5afcef0ba53c903e09eec787d7a7393b7de062fd529
|
data/Cargo.lock
CHANGED
@@ -8,16 +8,16 @@ version = "0.7.6"
|
|
8
8
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
9
|
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
|
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 = "0.
|
18
|
+
version = "1.0.2"
|
19
19
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
20
|
-
checksum = "
|
20
|
+
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
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.2"
|
34
34
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
35
|
-
checksum = "
|
35
|
+
checksum = "604178f6c5c21f02dc555784810edfb88d34ac2c73b2eae109655649ee73ce3d"
|
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.62.0"
|
49
49
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
50
|
-
checksum = "
|
50
|
+
checksum = "c6720a8b7b2d39dd533285ed438d458f65b31b5c257e6ac7bb3d7e82844dd722"
|
51
51
|
dependencies = [
|
52
|
-
"bitflags",
|
52
|
+
"bitflags 1.3.2",
|
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 1.0.109",
|
63
64
|
]
|
64
65
|
|
65
66
|
[[package]]
|
@@ -68,34 +69,53 @@ 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.3.3"
|
75
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
76
|
+
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
|
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]]
|
@@ -121,9 +141,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
121
141
|
|
122
142
|
[[package]]
|
123
143
|
name = "clang-sys"
|
124
|
-
version = "1.
|
144
|
+
version = "1.6.1"
|
125
145
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
126
|
-
checksum = "
|
146
|
+
checksum = "c688fc74432808e3eb684cae8830a86be1d66a2bd58e1f248ed0960a590baf6f"
|
127
147
|
dependencies = [
|
128
148
|
"glob",
|
129
149
|
"libc",
|
@@ -147,23 +167,23 @@ checksum = "5e1e0fdd2e5d3041e530e1b21158aeeef8b5d0e306bc5c1e3d6cf0930d10e25a"
|
|
147
167
|
dependencies = [
|
148
168
|
"proc-macro2",
|
149
169
|
"quote",
|
150
|
-
"syn",
|
170
|
+
"syn 1.0.109",
|
151
171
|
]
|
152
172
|
|
153
173
|
[[package]]
|
154
174
|
name = "cpufeatures"
|
155
|
-
version = "0.2.
|
175
|
+
version = "0.2.9"
|
156
176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
157
|
-
checksum = "
|
177
|
+
checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
|
158
178
|
dependencies = [
|
159
179
|
"libc",
|
160
180
|
]
|
161
181
|
|
162
182
|
[[package]]
|
163
183
|
name = "crossbeam-channel"
|
164
|
-
version = "0.5.
|
184
|
+
version = "0.5.8"
|
165
185
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
166
|
-
checksum = "
|
186
|
+
checksum = "a33c2bf77f2df06183c3aa30d1e96c0695a313d4f9c453cc3762a6db39f99200"
|
167
187
|
dependencies = [
|
168
188
|
"cfg-if",
|
169
189
|
"crossbeam-utils",
|
@@ -171,9 +191,9 @@ dependencies = [
|
|
171
191
|
|
172
192
|
[[package]]
|
173
193
|
name = "crossbeam-deque"
|
174
|
-
version = "0.8.
|
194
|
+
version = "0.8.3"
|
175
195
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
176
|
-
checksum = "
|
196
|
+
checksum = "ce6fd6f855243022dcecf8702fef0c297d4338e226845fe067f6341ad9fa0cef"
|
177
197
|
dependencies = [
|
178
198
|
"cfg-if",
|
179
199
|
"crossbeam-epoch",
|
@@ -182,9 +202,9 @@ dependencies = [
|
|
182
202
|
|
183
203
|
[[package]]
|
184
204
|
name = "crossbeam-epoch"
|
185
|
-
version = "0.9.
|
205
|
+
version = "0.9.15"
|
186
206
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
187
|
-
checksum = "
|
207
|
+
checksum = "ae211234986c545741a7dc064309f67ee1e5ad243d0e48335adc0484d960bcc7"
|
188
208
|
dependencies = [
|
189
209
|
"autocfg",
|
190
210
|
"cfg-if",
|
@@ -195,9 +215,9 @@ dependencies = [
|
|
195
215
|
|
196
216
|
[[package]]
|
197
217
|
name = "crossbeam-utils"
|
198
|
-
version = "0.8.
|
218
|
+
version = "0.8.16"
|
199
219
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
200
|
-
checksum = "
|
220
|
+
checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
|
201
221
|
dependencies = [
|
202
222
|
"cfg-if",
|
203
223
|
]
|
@@ -222,32 +242,32 @@ dependencies = [
|
|
222
242
|
"dtoa-short",
|
223
243
|
"itoa",
|
224
244
|
"matches",
|
225
|
-
"phf
|
245
|
+
"phf",
|
226
246
|
"proc-macro2",
|
227
247
|
"quote",
|
228
248
|
"serde",
|
229
249
|
"smallvec",
|
230
|
-
"syn",
|
250
|
+
"syn 1.0.109",
|
231
251
|
]
|
232
252
|
|
233
253
|
[[package]]
|
234
254
|
name = "cssparser-macros"
|
235
|
-
version = "0.6.
|
255
|
+
version = "0.6.1"
|
236
256
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
237
|
-
checksum = "
|
257
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
238
258
|
dependencies = [
|
239
259
|
"quote",
|
240
|
-
"syn",
|
260
|
+
"syn 2.0.26",
|
241
261
|
]
|
242
262
|
|
243
263
|
[[package]]
|
244
264
|
name = "dashmap"
|
245
|
-
version = "5.
|
265
|
+
version = "5.5.0"
|
246
266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
247
|
-
checksum = "
|
267
|
+
checksum = "6943ae99c34386c84a470c499d3414f66502a41340aa895406e0d2e4a207b91d"
|
248
268
|
dependencies = [
|
249
269
|
"cfg-if",
|
250
|
-
"hashbrown",
|
270
|
+
"hashbrown 0.14.0",
|
251
271
|
"lock_api",
|
252
272
|
"once_cell",
|
253
273
|
"parking_lot_core",
|
@@ -255,9 +275,9 @@ dependencies = [
|
|
255
275
|
|
256
276
|
[[package]]
|
257
277
|
name = "data-encoding"
|
258
|
-
version = "2.
|
278
|
+
version = "2.4.0"
|
259
279
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
260
|
-
checksum = "
|
280
|
+
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
|
261
281
|
|
262
282
|
[[package]]
|
263
283
|
name = "data-url"
|
@@ -270,9 +290,9 @@ dependencies = [
|
|
270
290
|
|
271
291
|
[[package]]
|
272
292
|
name = "digest"
|
273
|
-
version = "0.10.
|
293
|
+
version = "0.10.7"
|
274
294
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
275
|
-
checksum = "
|
295
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
276
296
|
dependencies = [
|
277
297
|
"block-buffer",
|
278
298
|
"crypto-common",
|
@@ -280,15 +300,15 @@ dependencies = [
|
|
280
300
|
|
281
301
|
[[package]]
|
282
302
|
name = "dtoa"
|
283
|
-
version = "0.
|
303
|
+
version = "1.0.9"
|
284
304
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
285
|
-
checksum = "
|
305
|
+
checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
|
286
306
|
|
287
307
|
[[package]]
|
288
308
|
name = "dtoa-short"
|
289
|
-
version = "0.3.
|
309
|
+
version = "0.3.4"
|
290
310
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
291
|
-
checksum = "
|
311
|
+
checksum = "dbaceec3c6e4211c79e7b1800fb9680527106beb2f9c51904a3210c03a448c74"
|
292
312
|
dependencies = [
|
293
313
|
"dtoa",
|
294
314
|
]
|
@@ -311,6 +331,12 @@ dependencies = [
|
|
311
331
|
"sha2",
|
312
332
|
]
|
313
333
|
|
334
|
+
[[package]]
|
335
|
+
name = "funty"
|
336
|
+
version = "2.0.0"
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
338
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
339
|
+
|
314
340
|
[[package]]
|
315
341
|
name = "fxhash"
|
316
342
|
version = "0.2.1"
|
@@ -322,9 +348,9 @@ dependencies = [
|
|
322
348
|
|
323
349
|
[[package]]
|
324
350
|
name = "generic-array"
|
325
|
-
version = "0.14.
|
351
|
+
version = "0.14.7"
|
326
352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
327
|
-
checksum = "
|
353
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
328
354
|
dependencies = [
|
329
355
|
"typenum",
|
330
356
|
"version_check",
|
@@ -332,24 +358,13 @@ dependencies = [
|
|
332
358
|
|
333
359
|
[[package]]
|
334
360
|
name = "getrandom"
|
335
|
-
version = "0.
|
336
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
337
|
-
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
338
|
-
dependencies = [
|
339
|
-
"cfg-if",
|
340
|
-
"libc",
|
341
|
-
"wasi 0.9.0+wasi-snapshot-preview1",
|
342
|
-
]
|
343
|
-
|
344
|
-
[[package]]
|
345
|
-
name = "getrandom"
|
346
|
-
version = "0.2.8"
|
361
|
+
version = "0.2.10"
|
347
362
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
348
|
-
checksum = "
|
363
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
349
364
|
dependencies = [
|
350
365
|
"cfg-if",
|
351
366
|
"libc",
|
352
|
-
"wasi
|
367
|
+
"wasi",
|
353
368
|
]
|
354
369
|
|
355
370
|
[[package]]
|
@@ -367,14 +382,17 @@ dependencies = [
|
|
367
382
|
"ahash",
|
368
383
|
]
|
369
384
|
|
385
|
+
[[package]]
|
386
|
+
name = "hashbrown"
|
387
|
+
version = "0.14.0"
|
388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
389
|
+
checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
|
390
|
+
|
370
391
|
[[package]]
|
371
392
|
name = "hermit-abi"
|
372
|
-
version = "0.2
|
393
|
+
version = "0.3.2"
|
373
394
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
374
|
-
checksum = "
|
375
|
-
dependencies = [
|
376
|
-
"libc",
|
377
|
-
]
|
395
|
+
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
|
378
396
|
|
379
397
|
[[package]]
|
380
398
|
name = "itertools"
|
@@ -387,9 +405,9 @@ dependencies = [
|
|
387
405
|
|
388
406
|
[[package]]
|
389
407
|
name = "itoa"
|
390
|
-
version = "1.0.
|
408
|
+
version = "1.0.9"
|
391
409
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
392
|
-
checksum = "
|
410
|
+
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
|
393
411
|
|
394
412
|
[[package]]
|
395
413
|
name = "lazy_static"
|
@@ -405,9 +423,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
|
405
423
|
|
406
424
|
[[package]]
|
407
425
|
name = "libc"
|
408
|
-
version = "0.2.
|
426
|
+
version = "0.2.147"
|
409
427
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
410
|
-
checksum = "
|
428
|
+
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
411
429
|
|
412
430
|
[[package]]
|
413
431
|
name = "libloading"
|
@@ -421,11 +439,12 @@ dependencies = [
|
|
421
439
|
|
422
440
|
[[package]]
|
423
441
|
name = "lightningcss"
|
424
|
-
version = "1.0.0-alpha.
|
442
|
+
version = "1.0.0-alpha.44"
|
425
443
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
426
|
-
checksum = "
|
444
|
+
checksum = "97cc864b2dc5f078725908d7be7b35ce934e156ff52db40643ba6cb55f813c14"
|
427
445
|
dependencies = [
|
428
|
-
"
|
446
|
+
"ahash",
|
447
|
+
"bitflags 2.3.3",
|
429
448
|
"const-str",
|
430
449
|
"cssparser",
|
431
450
|
"dashmap",
|
@@ -435,6 +454,7 @@ dependencies = [
|
|
435
454
|
"lightningcss-derive",
|
436
455
|
"parcel_selectors",
|
437
456
|
"parcel_sourcemap",
|
457
|
+
"paste",
|
438
458
|
"pathdiff",
|
439
459
|
"rayon",
|
440
460
|
"serde",
|
@@ -443,20 +463,20 @@ dependencies = [
|
|
443
463
|
|
444
464
|
[[package]]
|
445
465
|
name = "lightningcss-derive"
|
446
|
-
version = "1.0.0-alpha.
|
466
|
+
version = "1.0.0-alpha.39"
|
447
467
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
448
|
-
checksum = "
|
468
|
+
checksum = "80f9c05013e43faeef3f09a4c425f926b91a64fee540887a9857a5556b70ea5a"
|
449
469
|
dependencies = [
|
450
470
|
"proc-macro2",
|
451
471
|
"quote",
|
452
|
-
"syn",
|
472
|
+
"syn 1.0.109",
|
453
473
|
]
|
454
474
|
|
455
475
|
[[package]]
|
456
476
|
name = "lock_api"
|
457
|
-
version = "0.4.
|
477
|
+
version = "0.4.10"
|
458
478
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
459
|
-
checksum = "
|
479
|
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
460
480
|
dependencies = [
|
461
481
|
"autocfg",
|
462
482
|
"scopeguard",
|
@@ -464,12 +484,9 @@ dependencies = [
|
|
464
484
|
|
465
485
|
[[package]]
|
466
486
|
name = "log"
|
467
|
-
version = "0.4.
|
487
|
+
version = "0.4.19"
|
468
488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
469
|
-
checksum = "
|
470
|
-
dependencies = [
|
471
|
-
"cfg-if",
|
472
|
-
]
|
489
|
+
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
473
490
|
|
474
491
|
[[package]]
|
475
492
|
name = "magnus"
|
@@ -490,7 +507,7 @@ checksum = "206cb23bfeea05180c97522ef6a3e52a4eb17b0ed2f30ee3ca9c4f994d2378ae"
|
|
490
507
|
dependencies = [
|
491
508
|
"proc-macro2",
|
492
509
|
"quote",
|
493
|
-
"syn",
|
510
|
+
"syn 1.0.109",
|
494
511
|
]
|
495
512
|
|
496
513
|
[[package]]
|
@@ -507,9 +524,9 @@ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
|
507
524
|
|
508
525
|
[[package]]
|
509
526
|
name = "memoffset"
|
510
|
-
version = "0.
|
527
|
+
version = "0.9.0"
|
511
528
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
512
|
-
checksum = "
|
529
|
+
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c"
|
513
530
|
dependencies = [
|
514
531
|
"autocfg",
|
515
532
|
]
|
@@ -532,9 +549,9 @@ dependencies = [
|
|
532
549
|
|
533
550
|
[[package]]
|
534
551
|
name = "num_cpus"
|
535
|
-
version = "1.
|
552
|
+
version = "1.16.0"
|
536
553
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
537
|
-
checksum = "
|
554
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
538
555
|
dependencies = [
|
539
556
|
"hermit-abi",
|
540
557
|
"libc",
|
@@ -542,9 +559,9 @@ dependencies = [
|
|
542
559
|
|
543
560
|
[[package]]
|
544
561
|
name = "once_cell"
|
545
|
-
version = "1.
|
562
|
+
version = "1.18.0"
|
546
563
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
547
|
-
checksum = "
|
564
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
548
565
|
|
549
566
|
[[package]]
|
550
567
|
name = "outref"
|
@@ -554,15 +571,15 @@ checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4"
|
|
554
571
|
|
555
572
|
[[package]]
|
556
573
|
name = "parcel_selectors"
|
557
|
-
version = "0.
|
574
|
+
version = "0.26.0"
|
558
575
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
559
|
-
checksum = "
|
576
|
+
checksum = "d3e808c7a75aedcc522bd24187de6903adab3265d690a61f8b8181edaa988377"
|
560
577
|
dependencies = [
|
561
|
-
"bitflags",
|
578
|
+
"bitflags 2.3.3",
|
562
579
|
"cssparser",
|
563
580
|
"fxhash",
|
564
581
|
"log",
|
565
|
-
"phf
|
582
|
+
"phf",
|
566
583
|
"phf_codegen",
|
567
584
|
"precomputed-hash",
|
568
585
|
"serde",
|
@@ -585,17 +602,23 @@ dependencies = [
|
|
585
602
|
|
586
603
|
[[package]]
|
587
604
|
name = "parking_lot_core"
|
588
|
-
version = "0.9.
|
605
|
+
version = "0.9.8"
|
589
606
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
590
|
-
checksum = "
|
607
|
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
591
608
|
dependencies = [
|
592
609
|
"cfg-if",
|
593
610
|
"libc",
|
594
611
|
"redox_syscall",
|
595
612
|
"smallvec",
|
596
|
-
"windows-
|
613
|
+
"windows-targets",
|
597
614
|
]
|
598
615
|
|
616
|
+
[[package]]
|
617
|
+
name = "paste"
|
618
|
+
version = "1.0.14"
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
+
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
|
621
|
+
|
599
622
|
[[package]]
|
600
623
|
name = "pathdiff"
|
601
624
|
version = "0.2.1"
|
@@ -608,15 +631,6 @@ version = "0.1.2"
|
|
608
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
609
632
|
checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
|
610
633
|
|
611
|
-
[[package]]
|
612
|
-
name = "phf"
|
613
|
-
version = "0.8.0"
|
614
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
615
|
-
checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12"
|
616
|
-
dependencies = [
|
617
|
-
"phf_shared 0.8.0",
|
618
|
-
]
|
619
|
-
|
620
634
|
[[package]]
|
621
635
|
name = "phf"
|
622
636
|
version = "0.10.1"
|
@@ -624,28 +638,18 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
624
638
|
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
625
639
|
dependencies = [
|
626
640
|
"phf_macros",
|
627
|
-
"phf_shared
|
641
|
+
"phf_shared",
|
628
642
|
"proc-macro-hack",
|
629
643
|
]
|
630
644
|
|
631
645
|
[[package]]
|
632
646
|
name = "phf_codegen"
|
633
|
-
version = "0.
|
634
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
|
-
checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815"
|
636
|
-
dependencies = [
|
637
|
-
"phf_generator 0.8.0",
|
638
|
-
"phf_shared 0.8.0",
|
639
|
-
]
|
640
|
-
|
641
|
-
[[package]]
|
642
|
-
name = "phf_generator"
|
643
|
-
version = "0.8.0"
|
647
|
+
version = "0.10.0"
|
644
648
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
645
|
-
checksum = "
|
649
|
+
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
|
646
650
|
dependencies = [
|
647
|
-
"
|
648
|
-
"
|
651
|
+
"phf_generator",
|
652
|
+
"phf_shared",
|
649
653
|
]
|
650
654
|
|
651
655
|
[[package]]
|
@@ -654,8 +658,8 @@ version = "0.10.0"
|
|
654
658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
655
659
|
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
|
656
660
|
dependencies = [
|
657
|
-
"phf_shared
|
658
|
-
"rand
|
661
|
+
"phf_shared",
|
662
|
+
"rand",
|
659
663
|
]
|
660
664
|
|
661
665
|
[[package]]
|
@@ -664,21 +668,12 @@ version = "0.10.0"
|
|
664
668
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
665
669
|
checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
|
666
670
|
dependencies = [
|
667
|
-
"phf_generator
|
668
|
-
"phf_shared
|
671
|
+
"phf_generator",
|
672
|
+
"phf_shared",
|
669
673
|
"proc-macro-hack",
|
670
674
|
"proc-macro2",
|
671
675
|
"quote",
|
672
|
-
"syn",
|
673
|
-
]
|
674
|
-
|
675
|
-
[[package]]
|
676
|
-
name = "phf_shared"
|
677
|
-
version = "0.8.0"
|
678
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
679
|
-
checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7"
|
680
|
-
dependencies = [
|
681
|
-
"siphasher",
|
676
|
+
"syn 1.0.109",
|
682
677
|
]
|
683
678
|
|
684
679
|
[[package]]
|
@@ -710,9 +705,9 @@ checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
710
705
|
|
711
706
|
[[package]]
|
712
707
|
name = "proc-macro2"
|
713
|
-
version = "1.0.
|
708
|
+
version = "1.0.65"
|
714
709
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
715
|
-
checksum = "
|
710
|
+
checksum = "92de25114670a878b1261c79c9f8f729fb97e95bac93f6312f583c60dd6a1dfe"
|
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.30"
|
743
738
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
744
|
-
checksum = "
|
739
|
+
checksum = "5907a1b7c277254a8b15170f6e7c97cfa60ee7872a3217663bb81151e48184bb"
|
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.7.0"
|
833
783
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
834
|
-
checksum = "
|
784
|
+
checksum = "1d2df5196e37bcc87abebc0053e20787d73847bb33134a69841207dd0a47f03b"
|
835
785
|
dependencies = [
|
836
786
|
"either",
|
837
787
|
"rayon-core",
|
@@ -839,9 +789,9 @@ dependencies = [
|
|
839
789
|
|
840
790
|
[[package]]
|
841
791
|
name = "rayon-core"
|
842
|
-
version = "1.
|
792
|
+
version = "1.11.0"
|
843
793
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
844
|
-
checksum = "
|
794
|
+
checksum = "4b8f95bd6966f5c87776639160a66bd8ab9895d9d4ab01ddba9fc60661aebe8d"
|
845
795
|
dependencies = [
|
846
796
|
"crossbeam-channel",
|
847
797
|
"crossbeam-deque",
|
@@ -851,22 +801,26 @@ dependencies = [
|
|
851
801
|
|
852
802
|
[[package]]
|
853
803
|
name = "rb-sys"
|
854
|
-
version = "0.9.
|
804
|
+
version = "0.9.79"
|
855
805
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
856
|
-
checksum = "
|
806
|
+
checksum = "939fb78db3e4f26665c1d4c7b91ca66d3578335a19aba552d4a6445811d07072"
|
857
807
|
dependencies = [
|
858
808
|
"rb-sys-build",
|
859
809
|
]
|
860
810
|
|
861
811
|
[[package]]
|
862
812
|
name = "rb-sys-build"
|
863
|
-
version = "0.9.
|
813
|
+
version = "0.9.79"
|
864
814
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
865
|
-
checksum = "
|
815
|
+
checksum = "335a95eb0420d52fa94ef12019df3c2c250c6b19cbb3c60bd05cb7e9c362072c"
|
866
816
|
dependencies = [
|
867
817
|
"bindgen",
|
818
|
+
"lazy_static",
|
819
|
+
"proc-macro2",
|
820
|
+
"quote",
|
868
821
|
"regex",
|
869
822
|
"shell-words",
|
823
|
+
"syn 1.0.109",
|
870
824
|
]
|
871
825
|
|
872
826
|
[[package]]
|
@@ -877,18 +831,30 @@ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
|
877
831
|
|
878
832
|
[[package]]
|
879
833
|
name = "redox_syscall"
|
880
|
-
version = "0.
|
834
|
+
version = "0.3.5"
|
881
835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
882
|
-
checksum = "
|
836
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
883
837
|
dependencies = [
|
884
|
-
"bitflags",
|
838
|
+
"bitflags 1.3.2",
|
885
839
|
]
|
886
840
|
|
887
841
|
[[package]]
|
888
842
|
name = "regex"
|
889
|
-
version = "1.
|
843
|
+
version = "1.9.1"
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
845
|
+
checksum = "b2eae68fc220f7cf2532e4494aded17545fce192d59cd996e0fe7887f4ceb575"
|
846
|
+
dependencies = [
|
847
|
+
"aho-corasick",
|
848
|
+
"memchr",
|
849
|
+
"regex-automata",
|
850
|
+
"regex-syntax",
|
851
|
+
]
|
852
|
+
|
853
|
+
[[package]]
|
854
|
+
name = "regex-automata"
|
855
|
+
version = "0.3.3"
|
890
856
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
891
|
-
checksum = "
|
857
|
+
checksum = "39354c10dd07468c2e73926b23bb9c2caca74c5501e38a35da70406f1d923310"
|
892
858
|
dependencies = [
|
893
859
|
"aho-corasick",
|
894
860
|
"memchr",
|
@@ -897,42 +863,45 @@ dependencies = [
|
|
897
863
|
|
898
864
|
[[package]]
|
899
865
|
name = "regex-syntax"
|
900
|
-
version = "0.
|
866
|
+
version = "0.7.4"
|
901
867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
902
|
-
checksum = "
|
868
|
+
checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2"
|
903
869
|
|
904
870
|
[[package]]
|
905
871
|
name = "rend"
|
906
|
-
version = "0.
|
872
|
+
version = "0.4.0"
|
907
873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
908
|
-
checksum = "
|
874
|
+
checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
|
909
875
|
dependencies = [
|
910
876
|
"bytecheck",
|
911
877
|
]
|
912
878
|
|
913
879
|
[[package]]
|
914
880
|
name = "rkyv"
|
915
|
-
version = "0.7.
|
881
|
+
version = "0.7.42"
|
916
882
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
917
|
-
checksum = "
|
883
|
+
checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
|
918
884
|
dependencies = [
|
885
|
+
"bitvec",
|
919
886
|
"bytecheck",
|
920
|
-
"hashbrown",
|
887
|
+
"hashbrown 0.12.3",
|
921
888
|
"ptr_meta",
|
922
889
|
"rend",
|
923
890
|
"rkyv_derive",
|
924
891
|
"seahash",
|
892
|
+
"tinyvec",
|
893
|
+
"uuid",
|
925
894
|
]
|
926
895
|
|
927
896
|
[[package]]
|
928
897
|
name = "rkyv_derive"
|
929
|
-
version = "0.7.
|
898
|
+
version = "0.7.42"
|
930
899
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
931
|
-
checksum = "
|
900
|
+
checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
|
932
901
|
dependencies = [
|
933
902
|
"proc-macro2",
|
934
903
|
"quote",
|
935
|
-
"syn",
|
904
|
+
"syn 1.0.109",
|
936
905
|
]
|
937
906
|
|
938
907
|
[[package]]
|
@@ -943,9 +912,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
|
943
912
|
|
944
913
|
[[package]]
|
945
914
|
name = "ryu"
|
946
|
-
version = "1.0.
|
915
|
+
version = "1.0.15"
|
947
916
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
|
-
checksum = "
|
917
|
+
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
|
949
918
|
|
950
919
|
[[package]]
|
951
920
|
name = "scopeguard"
|
@@ -961,29 +930,29 @@ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
961
930
|
|
962
931
|
[[package]]
|
963
932
|
name = "serde"
|
964
|
-
version = "1.0.
|
933
|
+
version = "1.0.171"
|
965
934
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
-
checksum = "
|
935
|
+
checksum = "30e27d1e4fd7659406c492fd6cfaf2066ba8773de45ca75e855590f856dc34a9"
|
967
936
|
dependencies = [
|
968
937
|
"serde_derive",
|
969
938
|
]
|
970
939
|
|
971
940
|
[[package]]
|
972
941
|
name = "serde_derive"
|
973
|
-
version = "1.0.
|
942
|
+
version = "1.0.171"
|
974
943
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
975
|
-
checksum = "
|
944
|
+
checksum = "389894603bd18c46fa56231694f8d827779c0951a667087194cf9de94ed24682"
|
976
945
|
dependencies = [
|
977
946
|
"proc-macro2",
|
978
947
|
"quote",
|
979
|
-
"syn",
|
948
|
+
"syn 2.0.26",
|
980
949
|
]
|
981
950
|
|
982
951
|
[[package]]
|
983
952
|
name = "serde_json"
|
984
|
-
version = "1.0.
|
953
|
+
version = "1.0.103"
|
985
954
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
986
|
-
checksum = "
|
955
|
+
checksum = "d03b412469450d4404fe8499a268edd7f8b79fecb074b0d812ad64ca21f4031b"
|
987
956
|
dependencies = [
|
988
957
|
"itoa",
|
989
958
|
"ryu",
|
@@ -992,9 +961,9 @@ dependencies = [
|
|
992
961
|
|
993
962
|
[[package]]
|
994
963
|
name = "sha2"
|
995
|
-
version = "0.10.
|
964
|
+
version = "0.10.7"
|
996
965
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
997
|
-
checksum = "
|
966
|
+
checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
|
998
967
|
dependencies = [
|
999
968
|
"cfg-if",
|
1000
969
|
"cpufeatures",
|
@@ -1022,6 +991,12 @@ dependencies = [
|
|
1022
991
|
"outref",
|
1023
992
|
]
|
1024
993
|
|
994
|
+
[[package]]
|
995
|
+
name = "simdutf8"
|
996
|
+
version = "0.1.4"
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
+
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
999
|
+
|
1025
1000
|
[[package]]
|
1026
1001
|
name = "siphasher"
|
1027
1002
|
version = "0.3.10"
|
@@ -1030,24 +1005,56 @@ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
|
|
1030
1005
|
|
1031
1006
|
[[package]]
|
1032
1007
|
name = "smallvec"
|
1033
|
-
version = "1.
|
1008
|
+
version = "1.11.0"
|
1034
1009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1035
|
-
checksum = "
|
1010
|
+
checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
|
1036
1011
|
dependencies = [
|
1037
1012
|
"serde",
|
1038
1013
|
]
|
1039
1014
|
|
1040
1015
|
[[package]]
|
1041
1016
|
name = "syn"
|
1042
|
-
version = "1.0.
|
1017
|
+
version = "1.0.109"
|
1043
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1044
|
-
checksum = "
|
1019
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
1045
1020
|
dependencies = [
|
1046
1021
|
"proc-macro2",
|
1047
1022
|
"quote",
|
1048
1023
|
"unicode-ident",
|
1049
1024
|
]
|
1050
1025
|
|
1026
|
+
[[package]]
|
1027
|
+
name = "syn"
|
1028
|
+
version = "2.0.26"
|
1029
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1030
|
+
checksum = "45c3457aacde3c65315de5031ec191ce46604304d2446e803d71ade03308d970"
|
1031
|
+
dependencies = [
|
1032
|
+
"proc-macro2",
|
1033
|
+
"quote",
|
1034
|
+
"unicode-ident",
|
1035
|
+
]
|
1036
|
+
|
1037
|
+
[[package]]
|
1038
|
+
name = "tap"
|
1039
|
+
version = "1.0.1"
|
1040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1041
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
1042
|
+
|
1043
|
+
[[package]]
|
1044
|
+
name = "tinyvec"
|
1045
|
+
version = "1.6.0"
|
1046
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1047
|
+
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
1048
|
+
dependencies = [
|
1049
|
+
"tinyvec_macros",
|
1050
|
+
]
|
1051
|
+
|
1052
|
+
[[package]]
|
1053
|
+
name = "tinyvec_macros"
|
1054
|
+
version = "0.1.1"
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1056
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
1057
|
+
|
1051
1058
|
[[package]]
|
1052
1059
|
name = "typenum"
|
1053
1060
|
version = "1.16.0"
|
@@ -1056,9 +1063,15 @@ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
|
1056
1063
|
|
1057
1064
|
[[package]]
|
1058
1065
|
name = "unicode-ident"
|
1059
|
-
version = "1.0.
|
1066
|
+
version = "1.0.11"
|
1060
1067
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1061
|
-
checksum = "
|
1068
|
+
checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
|
1069
|
+
|
1070
|
+
[[package]]
|
1071
|
+
name = "uuid"
|
1072
|
+
version = "1.4.0"
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1074
|
+
checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
|
1062
1075
|
|
1063
1076
|
[[package]]
|
1064
1077
|
name = "version_check"
|
@@ -1072,12 +1085,6 @@ version = "0.5.1"
|
|
1072
1085
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1073
1086
|
checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff"
|
1074
1087
|
|
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
1088
|
[[package]]
|
1082
1089
|
name = "wasi"
|
1083
1090
|
version = "0.11.0+wasi-snapshot-preview1"
|
@@ -1107,10 +1114,10 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
1114
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
1108
1115
|
|
1109
1116
|
[[package]]
|
1110
|
-
name = "windows-
|
1111
|
-
version = "0.
|
1117
|
+
name = "windows-targets"
|
1118
|
+
version = "0.48.1"
|
1112
1119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1113
|
-
checksum = "
|
1120
|
+
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
1114
1121
|
dependencies = [
|
1115
1122
|
"windows_aarch64_gnullvm",
|
1116
1123
|
"windows_aarch64_msvc",
|
@@ -1123,42 +1130,51 @@ dependencies = [
|
|
1123
1130
|
|
1124
1131
|
[[package]]
|
1125
1132
|
name = "windows_aarch64_gnullvm"
|
1126
|
-
version = "0.
|
1133
|
+
version = "0.48.0"
|
1127
1134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1128
|
-
checksum = "
|
1135
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
1129
1136
|
|
1130
1137
|
[[package]]
|
1131
1138
|
name = "windows_aarch64_msvc"
|
1132
|
-
version = "0.
|
1139
|
+
version = "0.48.0"
|
1133
1140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1134
|
-
checksum = "
|
1141
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
1135
1142
|
|
1136
1143
|
[[package]]
|
1137
1144
|
name = "windows_i686_gnu"
|
1138
|
-
version = "0.
|
1145
|
+
version = "0.48.0"
|
1139
1146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1140
|
-
checksum = "
|
1147
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
1141
1148
|
|
1142
1149
|
[[package]]
|
1143
1150
|
name = "windows_i686_msvc"
|
1144
|
-
version = "0.
|
1151
|
+
version = "0.48.0"
|
1145
1152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1146
|
-
checksum = "
|
1153
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
1147
1154
|
|
1148
1155
|
[[package]]
|
1149
1156
|
name = "windows_x86_64_gnu"
|
1150
|
-
version = "0.
|
1157
|
+
version = "0.48.0"
|
1151
1158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1152
|
-
checksum = "
|
1159
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
1153
1160
|
|
1154
1161
|
[[package]]
|
1155
1162
|
name = "windows_x86_64_gnullvm"
|
1156
|
-
version = "0.
|
1163
|
+
version = "0.48.0"
|
1157
1164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1158
|
-
checksum = "
|
1165
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
1159
1166
|
|
1160
1167
|
[[package]]
|
1161
1168
|
name = "windows_x86_64_msvc"
|
1162
|
-
version = "0.
|
1169
|
+
version = "0.48.0"
|
1163
1170
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1164
|
-
checksum = "
|
1171
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
1172
|
+
|
1173
|
+
[[package]]
|
1174
|
+
name = "wyz"
|
1175
|
+
version = "0.5.1"
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1177
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
1178
|
+
dependencies = [
|
1179
|
+
"tap",
|
1180
|
+
]
|
data/lib/mayu/css/3.1/ext.so
CHANGED
Binary file
|
data/lib/mayu/css/3.2/ext.so
CHANGED
Binary file
|
data/lib/mayu/css/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mayu-css
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: x86_64-linux
|
6
6
|
authors:
|
7
7
|
- Andreas Alin
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake-compiler
|