mayu-css 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: b1bae70bbcde47b8bceb6ec9e790c1271f143110667087e2e6ea14f2726fbb90
4
+ data.tar.gz: 32eafb34174de4c75d8c5e7a9ccd2f761ce2f7839b5212f53f7c3a8037c24044
5
+ SHA512:
6
+ metadata.gz: 80ae1217edc942f021d12218e16b7c9bb9ea359ea36b939c1cc6c490de8fba340bbe2bcda1d8c5e70c40e8c25b3e675a5a3872f969da868e8c8e7fb22879b85c
7
+ data.tar.gz: 7d444feb17b7d0e904a3a78318a3a4f295278f0ae8b50c23a27de31d6eba2338b1e6bb802ca0e3c1a68554ea5be498d36d2689425d144341528c254c645a22d4
data/Cargo.lock ADDED
@@ -0,0 +1,1164 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "ahash"
7
+ version = "0.7.6"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
10
+ dependencies = [
11
+ "getrandom 0.2.8",
12
+ "once_cell",
13
+ "version_check",
14
+ ]
15
+
16
+ [[package]]
17
+ name = "aho-corasick"
18
+ version = "0.7.20"
19
+ source = "registry+https://github.com/rust-lang/crates.io-index"
20
+ checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
21
+ dependencies = [
22
+ "memchr",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "autocfg"
27
+ version = "1.1.0"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
30
+
31
+ [[package]]
32
+ name = "base64"
33
+ version = "0.21.0"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
36
+
37
+ [[package]]
38
+ name = "base64-simd"
39
+ version = "0.7.0"
40
+ source = "registry+https://github.com/rust-lang/crates.io-index"
41
+ checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5"
42
+ dependencies = [
43
+ "simd-abstraction",
44
+ ]
45
+
46
+ [[package]]
47
+ name = "bindgen"
48
+ version = "0.60.1"
49
+ source = "registry+https://github.com/rust-lang/crates.io-index"
50
+ checksum = "062dddbc1ba4aca46de6338e2bf87771414c335f7b2f2036e8f3e9befebf88e6"
51
+ dependencies = [
52
+ "bitflags",
53
+ "cexpr",
54
+ "clang-sys",
55
+ "lazy_static",
56
+ "lazycell",
57
+ "peeking_take_while",
58
+ "proc-macro2",
59
+ "quote",
60
+ "regex",
61
+ "rustc-hash",
62
+ "shlex",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "bitflags"
67
+ version = "1.3.2"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
70
+
71
+ [[package]]
72
+ name = "block-buffer"
73
+ version = "0.10.3"
74
+ source = "registry+https://github.com/rust-lang/crates.io-index"
75
+ checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
76
+ dependencies = [
77
+ "generic-array",
78
+ ]
79
+
80
+ [[package]]
81
+ name = "bytecheck"
82
+ version = "0.6.9"
83
+ source = "registry+https://github.com/rust-lang/crates.io-index"
84
+ checksum = "d11cac2c12b5adc6570dad2ee1b87eff4955dac476fe12d81e5fdd352e52406f"
85
+ dependencies = [
86
+ "bytecheck_derive",
87
+ "ptr_meta",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "bytecheck_derive"
92
+ version = "0.6.9"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "13e576ebe98e605500b3c8041bb888e966653577172df6dd97398714eb30b9bf"
95
+ dependencies = [
96
+ "proc-macro2",
97
+ "quote",
98
+ "syn",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "byteorder"
103
+ version = "1.4.3"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
106
+
107
+ [[package]]
108
+ name = "cexpr"
109
+ version = "0.6.0"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
112
+ dependencies = [
113
+ "nom",
114
+ ]
115
+
116
+ [[package]]
117
+ name = "cfg-if"
118
+ version = "1.0.0"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
121
+
122
+ [[package]]
123
+ name = "clang-sys"
124
+ version = "1.4.0"
125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
126
+ checksum = "fa2e27ae6ab525c3d369ded447057bca5438d86dc3a68f6faafb8269ba82ebf3"
127
+ dependencies = [
128
+ "glob",
129
+ "libc",
130
+ "libloading",
131
+ ]
132
+
133
+ [[package]]
134
+ name = "const-str"
135
+ version = "0.3.2"
136
+ source = "registry+https://github.com/rust-lang/crates.io-index"
137
+ checksum = "21077772762a1002bb421c3af42ac1725fa56066bfc53d9a55bb79905df2aaf3"
138
+ dependencies = [
139
+ "const-str-proc-macro",
140
+ ]
141
+
142
+ [[package]]
143
+ name = "const-str-proc-macro"
144
+ version = "0.3.2"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "5e1e0fdd2e5d3041e530e1b21158aeeef8b5d0e306bc5c1e3d6cf0930d10e25a"
147
+ dependencies = [
148
+ "proc-macro2",
149
+ "quote",
150
+ "syn",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "cpufeatures"
155
+ version = "0.2.5"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
158
+ dependencies = [
159
+ "libc",
160
+ ]
161
+
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
+ [[package]]
173
+ name = "crossbeam-deque"
174
+ version = "0.8.2"
175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
176
+ checksum = "715e8152b692bba2d374b53d4875445368fdf21a94751410af607a5ac677d1fc"
177
+ dependencies = [
178
+ "cfg-if",
179
+ "crossbeam-epoch",
180
+ "crossbeam-utils",
181
+ ]
182
+
183
+ [[package]]
184
+ name = "crossbeam-epoch"
185
+ version = "0.9.13"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "01a9af1f4c2ef74bb8aa1f7e19706bc72d03598c8a570bb5de72243c7a9d9d5a"
188
+ dependencies = [
189
+ "autocfg",
190
+ "cfg-if",
191
+ "crossbeam-utils",
192
+ "memoffset",
193
+ "scopeguard",
194
+ ]
195
+
196
+ [[package]]
197
+ name = "crossbeam-utils"
198
+ version = "0.8.14"
199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
200
+ checksum = "4fb766fa798726286dbbb842f174001dab8abc7b627a1dd86e0b7222a95d929f"
201
+ dependencies = [
202
+ "cfg-if",
203
+ ]
204
+
205
+ [[package]]
206
+ name = "crypto-common"
207
+ version = "0.1.6"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
210
+ dependencies = [
211
+ "generic-array",
212
+ "typenum",
213
+ ]
214
+
215
+ [[package]]
216
+ name = "cssparser"
217
+ version = "0.29.6"
218
+ source = "registry+https://github.com/rust-lang/crates.io-index"
219
+ checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa"
220
+ dependencies = [
221
+ "cssparser-macros",
222
+ "dtoa-short",
223
+ "itoa",
224
+ "matches",
225
+ "phf 0.10.1",
226
+ "proc-macro2",
227
+ "quote",
228
+ "serde",
229
+ "smallvec",
230
+ "syn",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "cssparser-macros"
235
+ version = "0.6.0"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "dfae75de57f2b2e85e8768c3ea840fd159c8f33e2b6522c7835b7abac81be16e"
238
+ dependencies = [
239
+ "quote",
240
+ "syn",
241
+ ]
242
+
243
+ [[package]]
244
+ name = "dashmap"
245
+ version = "5.4.0"
246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
247
+ checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
248
+ dependencies = [
249
+ "cfg-if",
250
+ "hashbrown",
251
+ "lock_api",
252
+ "once_cell",
253
+ "parking_lot_core",
254
+ ]
255
+
256
+ [[package]]
257
+ name = "data-encoding"
258
+ version = "2.3.3"
259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
260
+ checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
261
+
262
+ [[package]]
263
+ name = "data-url"
264
+ version = "0.1.1"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "3a30bfce702bcfa94e906ef82421f2c0e61c076ad76030c16ee5d2e9a32fe193"
267
+ dependencies = [
268
+ "matches",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "digest"
273
+ version = "0.10.6"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
276
+ dependencies = [
277
+ "block-buffer",
278
+ "crypto-common",
279
+ ]
280
+
281
+ [[package]]
282
+ name = "dtoa"
283
+ version = "0.4.8"
284
+ source = "registry+https://github.com/rust-lang/crates.io-index"
285
+ checksum = "56899898ce76aaf4a0f24d914c97ea6ed976d42fec6ad33fcbb0a1103e07b2b0"
286
+
287
+ [[package]]
288
+ name = "dtoa-short"
289
+ version = "0.3.3"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "bde03329ae10e79ede66c9ce4dc930aa8599043b0743008548680f25b91502d6"
292
+ dependencies = [
293
+ "dtoa",
294
+ ]
295
+
296
+ [[package]]
297
+ name = "either"
298
+ version = "1.8.1"
299
+ source = "registry+https://github.com/rust-lang/crates.io-index"
300
+ checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
301
+
302
+ [[package]]
303
+ name = "ext"
304
+ version = "0.1.0"
305
+ dependencies = [
306
+ "base64",
307
+ "lightningcss",
308
+ "magnus",
309
+ "serde",
310
+ "serde_json",
311
+ "sha2",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "fxhash"
316
+ version = "0.2.1"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
319
+ dependencies = [
320
+ "byteorder",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "generic-array"
325
+ version = "0.14.6"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
328
+ dependencies = [
329
+ "typenum",
330
+ "version_check",
331
+ ]
332
+
333
+ [[package]]
334
+ name = "getrandom"
335
+ version = "0.1.16"
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"
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",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "glob"
357
+ version = "0.3.1"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
360
+
361
+ [[package]]
362
+ name = "hashbrown"
363
+ version = "0.12.3"
364
+ source = "registry+https://github.com/rust-lang/crates.io-index"
365
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
366
+ dependencies = [
367
+ "ahash",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "hermit-abi"
372
+ version = "0.2.6"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
375
+ dependencies = [
376
+ "libc",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "itertools"
381
+ version = "0.10.5"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
384
+ dependencies = [
385
+ "either",
386
+ ]
387
+
388
+ [[package]]
389
+ name = "itoa"
390
+ version = "1.0.5"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
393
+
394
+ [[package]]
395
+ name = "lazy_static"
396
+ version = "1.4.0"
397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
398
+ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
399
+
400
+ [[package]]
401
+ name = "lazycell"
402
+ version = "1.3.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
405
+
406
+ [[package]]
407
+ name = "libc"
408
+ version = "0.2.139"
409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
410
+ checksum = "201de327520df007757c1f0adce6e827fe8562fbc28bfd9c15571c66ca1f5f79"
411
+
412
+ [[package]]
413
+ name = "libloading"
414
+ version = "0.7.4"
415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
416
+ checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f"
417
+ dependencies = [
418
+ "cfg-if",
419
+ "winapi",
420
+ ]
421
+
422
+ [[package]]
423
+ name = "lightningcss"
424
+ version = "1.0.0-alpha.39"
425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
426
+ checksum = "a7c81dddc54b0f70e5b291dfa95b4d756dab6426ac53ccc44a275c92c87f1c8f"
427
+ dependencies = [
428
+ "bitflags",
429
+ "const-str",
430
+ "cssparser",
431
+ "dashmap",
432
+ "data-encoding",
433
+ "itertools",
434
+ "lazy_static",
435
+ "lightningcss-derive",
436
+ "parcel_selectors",
437
+ "parcel_sourcemap",
438
+ "pathdiff",
439
+ "rayon",
440
+ "serde",
441
+ "smallvec",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "lightningcss-derive"
446
+ version = "1.0.0-alpha.36"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "0c942efb5785a55fe9f9305d569090f9782535341bcf6e373171f2f9a566546b"
449
+ dependencies = [
450
+ "proc-macro2",
451
+ "quote",
452
+ "syn",
453
+ ]
454
+
455
+ [[package]]
456
+ name = "lock_api"
457
+ version = "0.4.9"
458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
459
+ checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
460
+ dependencies = [
461
+ "autocfg",
462
+ "scopeguard",
463
+ ]
464
+
465
+ [[package]]
466
+ name = "log"
467
+ version = "0.4.17"
468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
469
+ checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
470
+ dependencies = [
471
+ "cfg-if",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "magnus"
476
+ version = "0.4.4"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "fc87660cd7daa49fddbfd524c836de54d5c927d520cd163f43700c5087c57d6c"
479
+ dependencies = [
480
+ "magnus-macros",
481
+ "rb-sys",
482
+ "rb-sys-env",
483
+ ]
484
+
485
+ [[package]]
486
+ name = "magnus-macros"
487
+ version = "0.3.0"
488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
489
+ checksum = "206cb23bfeea05180c97522ef6a3e52a4eb17b0ed2f30ee3ca9c4f994d2378ae"
490
+ dependencies = [
491
+ "proc-macro2",
492
+ "quote",
493
+ "syn",
494
+ ]
495
+
496
+ [[package]]
497
+ name = "matches"
498
+ version = "0.1.10"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
501
+
502
+ [[package]]
503
+ name = "memchr"
504
+ version = "2.5.0"
505
+ source = "registry+https://github.com/rust-lang/crates.io-index"
506
+ checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
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
+ ]
516
+
517
+ [[package]]
518
+ name = "minimal-lexical"
519
+ version = "0.2.1"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
522
+
523
+ [[package]]
524
+ name = "nom"
525
+ version = "7.1.3"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
528
+ dependencies = [
529
+ "memchr",
530
+ "minimal-lexical",
531
+ ]
532
+
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
+ [[package]]
544
+ name = "once_cell"
545
+ version = "1.17.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "6f61fba1741ea2b3d6a1e3178721804bb716a68a6aeba1149b5d52e3d464ea66"
548
+
549
+ [[package]]
550
+ name = "outref"
551
+ version = "0.1.0"
552
+ source = "registry+https://github.com/rust-lang/crates.io-index"
553
+ checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4"
554
+
555
+ [[package]]
556
+ name = "parcel_selectors"
557
+ version = "0.25.0"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "f2c9c34c94f61e0f95e7c0b1fe98556be452ebc15ef131ee01f0204696d95956"
560
+ dependencies = [
561
+ "bitflags",
562
+ "cssparser",
563
+ "fxhash",
564
+ "log",
565
+ "phf 0.8.0",
566
+ "phf_codegen",
567
+ "precomputed-hash",
568
+ "serde",
569
+ "smallvec",
570
+ ]
571
+
572
+ [[package]]
573
+ name = "parcel_sourcemap"
574
+ version = "2.1.1"
575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
576
+ checksum = "485b74d7218068b2b7c0e3ff12fbc61ae11d57cb5d8224f525bd304c6be05bbb"
577
+ dependencies = [
578
+ "base64-simd",
579
+ "data-url",
580
+ "rkyv",
581
+ "serde",
582
+ "serde_json",
583
+ "vlq",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "parking_lot_core"
588
+ version = "0.9.6"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
591
+ dependencies = [
592
+ "cfg-if",
593
+ "libc",
594
+ "redox_syscall",
595
+ "smallvec",
596
+ "windows-sys",
597
+ ]
598
+
599
+ [[package]]
600
+ name = "pathdiff"
601
+ version = "0.2.1"
602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
603
+ checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
604
+
605
+ [[package]]
606
+ name = "peeking_take_while"
607
+ version = "0.1.2"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "19b17cddbe7ec3f8bc800887bab5e717348c95ea2ca0b1bf0837fb964dc67099"
610
+
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
+ [[package]]
621
+ name = "phf"
622
+ version = "0.10.1"
623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
624
+ checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
625
+ dependencies = [
626
+ "phf_macros",
627
+ "phf_shared 0.10.0",
628
+ "proc-macro-hack",
629
+ ]
630
+
631
+ [[package]]
632
+ name = "phf_codegen"
633
+ version = "0.8.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"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526"
646
+ dependencies = [
647
+ "phf_shared 0.8.0",
648
+ "rand 0.7.3",
649
+ ]
650
+
651
+ [[package]]
652
+ name = "phf_generator"
653
+ version = "0.10.0"
654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
655
+ checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
656
+ dependencies = [
657
+ "phf_shared 0.10.0",
658
+ "rand 0.8.5",
659
+ ]
660
+
661
+ [[package]]
662
+ name = "phf_macros"
663
+ version = "0.10.0"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
666
+ dependencies = [
667
+ "phf_generator 0.10.0",
668
+ "phf_shared 0.10.0",
669
+ "proc-macro-hack",
670
+ "proc-macro2",
671
+ "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",
682
+ ]
683
+
684
+ [[package]]
685
+ name = "phf_shared"
686
+ version = "0.10.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
689
+ dependencies = [
690
+ "siphasher",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "ppv-lite86"
695
+ version = "0.2.17"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
698
+
699
+ [[package]]
700
+ name = "precomputed-hash"
701
+ version = "0.1.1"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
704
+
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
+ [[package]]
712
+ name = "proc-macro2"
713
+ version = "1.0.50"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "6ef7d57beacfaf2d8aee5937dab7b7f28de3cb8b1828479bb5de2a7106f2bae2"
716
+ dependencies = [
717
+ "unicode-ident",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "ptr_meta"
722
+ version = "0.1.4"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
725
+ dependencies = [
726
+ "ptr_meta_derive",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "ptr_meta_derive"
731
+ version = "0.1.4"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
734
+ dependencies = [
735
+ "proc-macro2",
736
+ "quote",
737
+ "syn",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "quote"
742
+ version = "1.0.23"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b"
745
+ dependencies = [
746
+ "proc-macro2",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "rand"
751
+ version = "0.7.3"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
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
+ ]
762
+
763
+ [[package]]
764
+ name = "rand"
765
+ version = "0.8.5"
766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
767
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
768
+ dependencies = [
769
+ "libc",
770
+ "rand_chacha 0.3.1",
771
+ "rand_core 0.6.4",
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",
782
+ ]
783
+
784
+ [[package]]
785
+ name = "rand_chacha"
786
+ version = "0.3.1"
787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
788
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
789
+ dependencies = [
790
+ "ppv-lite86",
791
+ "rand_core 0.6.4",
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",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "rand_core"
805
+ version = "0.6.4"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
808
+ dependencies = [
809
+ "getrandom 0.2.8",
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",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "rayon"
832
+ version = "1.6.1"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7"
835
+ dependencies = [
836
+ "either",
837
+ "rayon-core",
838
+ ]
839
+
840
+ [[package]]
841
+ name = "rayon-core"
842
+ version = "1.10.2"
843
+ source = "registry+https://github.com/rust-lang/crates.io-index"
844
+ checksum = "356a0625f1954f730c0201cdab48611198dc6ce21f4acff55089b5a78e6e835b"
845
+ dependencies = [
846
+ "crossbeam-channel",
847
+ "crossbeam-deque",
848
+ "crossbeam-utils",
849
+ "num_cpus",
850
+ ]
851
+
852
+ [[package]]
853
+ name = "rb-sys"
854
+ version = "0.9.58"
855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
856
+ checksum = "0158f5115e1ad04a2ee231f597e86306af96f36a8b93ac0c01f8852d0ba89278"
857
+ dependencies = [
858
+ "rb-sys-build",
859
+ ]
860
+
861
+ [[package]]
862
+ name = "rb-sys-build"
863
+ version = "0.9.58"
864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
865
+ checksum = "6c27b779db4a2863db74ddad0011f0d0c55c528e9601126d4613ad688063bc05"
866
+ dependencies = [
867
+ "bindgen",
868
+ "regex",
869
+ "shell-words",
870
+ ]
871
+
872
+ [[package]]
873
+ name = "rb-sys-env"
874
+ version = "0.1.2"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
877
+
878
+ [[package]]
879
+ name = "redox_syscall"
880
+ version = "0.2.16"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
883
+ dependencies = [
884
+ "bitflags",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "regex"
889
+ version = "1.7.1"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "48aaa5748ba571fb95cd2c85c09f629215d3a6ece942baa100950af03a34f733"
892
+ dependencies = [
893
+ "aho-corasick",
894
+ "memchr",
895
+ "regex-syntax",
896
+ ]
897
+
898
+ [[package]]
899
+ name = "regex-syntax"
900
+ version = "0.6.28"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848"
903
+
904
+ [[package]]
905
+ name = "rend"
906
+ version = "0.3.6"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "79af64b4b6362ffba04eef3a4e10829718a4896dac19daa741851c86781edf95"
909
+ dependencies = [
910
+ "bytecheck",
911
+ ]
912
+
913
+ [[package]]
914
+ name = "rkyv"
915
+ version = "0.7.39"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "cec2b3485b07d96ddfd3134767b8a447b45ea4eb91448d0a35180ec0ffd5ed15"
918
+ dependencies = [
919
+ "bytecheck",
920
+ "hashbrown",
921
+ "ptr_meta",
922
+ "rend",
923
+ "rkyv_derive",
924
+ "seahash",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "rkyv_derive"
929
+ version = "0.7.39"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "6eaedadc88b53e36dd32d940ed21ae4d850d5916f2581526921f553a72ac34c4"
932
+ dependencies = [
933
+ "proc-macro2",
934
+ "quote",
935
+ "syn",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "rustc-hash"
940
+ version = "1.1.0"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
943
+
944
+ [[package]]
945
+ name = "ryu"
946
+ version = "1.0.12"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "7b4b9743ed687d4b4bcedf9ff5eaa7398495ae14e61cba0a295704edbc7decde"
949
+
950
+ [[package]]
951
+ name = "scopeguard"
952
+ version = "1.1.0"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
955
+
956
+ [[package]]
957
+ name = "seahash"
958
+ version = "4.1.0"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
961
+
962
+ [[package]]
963
+ name = "serde"
964
+ version = "1.0.152"
965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
966
+ checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb"
967
+ dependencies = [
968
+ "serde_derive",
969
+ ]
970
+
971
+ [[package]]
972
+ name = "serde_derive"
973
+ version = "1.0.152"
974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
975
+ checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e"
976
+ dependencies = [
977
+ "proc-macro2",
978
+ "quote",
979
+ "syn",
980
+ ]
981
+
982
+ [[package]]
983
+ name = "serde_json"
984
+ version = "1.0.91"
985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
986
+ checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
987
+ dependencies = [
988
+ "itoa",
989
+ "ryu",
990
+ "serde",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "sha2"
995
+ version = "0.10.6"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
998
+ dependencies = [
999
+ "cfg-if",
1000
+ "cpufeatures",
1001
+ "digest",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "shell-words"
1006
+ version = "1.1.0"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1009
+
1010
+ [[package]]
1011
+ name = "shlex"
1012
+ version = "1.1.0"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "43b2853a4d09f215c24cc5489c992ce46052d359b5109343cbafbf26bc62f8a3"
1015
+
1016
+ [[package]]
1017
+ name = "simd-abstraction"
1018
+ version = "0.7.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987"
1021
+ dependencies = [
1022
+ "outref",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "siphasher"
1027
+ version = "0.3.10"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
1030
+
1031
+ [[package]]
1032
+ name = "smallvec"
1033
+ version = "1.10.0"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
1036
+ dependencies = [
1037
+ "serde",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "syn"
1042
+ version = "1.0.107"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5"
1045
+ dependencies = [
1046
+ "proc-macro2",
1047
+ "quote",
1048
+ "unicode-ident",
1049
+ ]
1050
+
1051
+ [[package]]
1052
+ name = "typenum"
1053
+ version = "1.16.0"
1054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1055
+ checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
1056
+
1057
+ [[package]]
1058
+ name = "unicode-ident"
1059
+ version = "1.0.6"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc"
1062
+
1063
+ [[package]]
1064
+ name = "version_check"
1065
+ version = "0.9.4"
1066
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1067
+ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
1068
+
1069
+ [[package]]
1070
+ name = "vlq"
1071
+ version = "0.5.1"
1072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1073
+ checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff"
1074
+
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
+ [[package]]
1082
+ name = "wasi"
1083
+ version = "0.11.0+wasi-snapshot-preview1"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1086
+
1087
+ [[package]]
1088
+ name = "winapi"
1089
+ version = "0.3.9"
1090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1091
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
1092
+ dependencies = [
1093
+ "winapi-i686-pc-windows-gnu",
1094
+ "winapi-x86_64-pc-windows-gnu",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "winapi-i686-pc-windows-gnu"
1099
+ version = "0.4.0"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
1102
+
1103
+ [[package]]
1104
+ name = "winapi-x86_64-pc-windows-gnu"
1105
+ version = "0.4.0"
1106
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1107
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
1108
+
1109
+ [[package]]
1110
+ name = "windows-sys"
1111
+ version = "0.42.0"
1112
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1113
+ checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
1114
+ dependencies = [
1115
+ "windows_aarch64_gnullvm",
1116
+ "windows_aarch64_msvc",
1117
+ "windows_i686_gnu",
1118
+ "windows_i686_msvc",
1119
+ "windows_x86_64_gnu",
1120
+ "windows_x86_64_gnullvm",
1121
+ "windows_x86_64_msvc",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "windows_aarch64_gnullvm"
1126
+ version = "0.42.1"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
1129
+
1130
+ [[package]]
1131
+ name = "windows_aarch64_msvc"
1132
+ version = "0.42.1"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
1135
+
1136
+ [[package]]
1137
+ name = "windows_i686_gnu"
1138
+ version = "0.42.1"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
1141
+
1142
+ [[package]]
1143
+ name = "windows_i686_msvc"
1144
+ version = "0.42.1"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
1147
+
1148
+ [[package]]
1149
+ name = "windows_x86_64_gnu"
1150
+ version = "0.42.1"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
1153
+
1154
+ [[package]]
1155
+ name = "windows_x86_64_gnullvm"
1156
+ version = "0.42.1"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
1159
+
1160
+ [[package]]
1161
+ name = "windows_x86_64_msvc"
1162
+ version = "0.42.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
data/Cargo.toml ADDED
@@ -0,0 +1,7 @@
1
+ # This Cargo.toml is here to let externals tools (IDEs, etc.) know that this is
2
+ # a Rust project. Your extensions dependencies should be added to the Cargo.toml
3
+ # in the ext/ directory.
4
+
5
+ [workspace]
6
+ members = ["./ext"]
7
+ resolver = "2"
data/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # Mayu::CSS
2
+
3
+ This library is used for CSS parsing/transformations/minifications in [Mayu Live](https://github.com/mayu-live/framework).
4
+
5
+ It uses [lightningcss](https://github.com/parcel-bundler/lightningcss) ([webpage](https://lightningcss.dev/))
6
+ which is a state-of-the-art CSS parser/transformer/bundler/minifier.
7
+
8
+ I do not know Rust. I have no idea what I'm doing.
9
+
10
+ ## Installation
11
+
12
+ Mayu::CSS is [published on rubygems.org](https://rubygems.org/gems/mayu-css)
13
+ and there are pre-built extensions for:
14
+
15
+ * `aarch64-linux`
16
+ * `arm64-darwin`
17
+ * `x86_64-darwin`
18
+ * `x86_64-linux`
19
+
20
+ ```
21
+ gem install mayu-css
22
+ ```
23
+
24
+ ## Usage
25
+
26
+ ```ruby
27
+ require "mayu/css"
28
+
29
+ result = Mayu::CSS.transform("/app/components/Hello.css", <<~CSS)
30
+ ul { background: rgb(0 128 255 / 50%); }
31
+ li { border: 1px solid #f0f; }
32
+ .foo { border: 1px solid #f0f; }
33
+ .bar { background: url("./bar.png"); }
34
+ CSS
35
+
36
+ puts "Code:"
37
+ puts result.code
38
+ puts "Classes:"
39
+ pp result.classes
40
+ puts "Elements:"
41
+ pp result.elements
42
+ puts "Dependencies:"
43
+ pp result.dependencies
44
+ ```
45
+
46
+ ## Development
47
+
48
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
49
+
50
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
51
+
52
+ ## Contributing
53
+
54
+ Bug reports and pull requests are welcome on GitHub at https://github.com/mayu-live/css.
55
+
56
+ ## License
57
+
58
+ The gem is available as open source under the terms of the [MPL License](https://opensource.org/licenses/MPL).
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Mayu
4
+ module CSS
5
+ VERSION = "0.0.1"
6
+ end
7
+ end
data/lib/mayu/css.rb ADDED
@@ -0,0 +1,23 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "json"
4
+ require_relative "css/version"
5
+
6
+ begin
7
+ RUBY_VERSION =~ /(\d+\.\d+)/
8
+ require "mayu/css/#{$1}/ext"
9
+ rescue LoadError
10
+ require "mayu/css/ext"
11
+ end
12
+
13
+ module Mayu
14
+ module CSS
15
+ class Error < StandardError; end
16
+
17
+ class TransformResult
18
+ def dependencies
19
+ JSON.parse(serialized_dependencies, symbolize_names: true)
20
+ end
21
+ end
22
+ end
23
+ end
metadata ADDED
@@ -0,0 +1,91 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: mayu-css
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Andreas Alin
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2023-02-03 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake-compiler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.2.1
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.2.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: rb_sys
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.9.58
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.9.58
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '13.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '13.0'
55
+ description:
56
+ email:
57
+ - andreas.alin@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - Cargo.lock
63
+ - Cargo.toml
64
+ - README.md
65
+ - lib/mayu/css.rb
66
+ - lib/mayu/css/version.rb
67
+ homepage: https://github.com/mayu-live/mayu-css
68
+ licenses:
69
+ - MPL
70
+ metadata:
71
+ homepage_uri: https://github.com/mayu-live/mayu-css
72
+ post_install_message:
73
+ rdoc_options: []
74
+ require_paths:
75
+ - lib
76
+ required_ruby_version: !ruby/object:Gem::Requirement
77
+ requirements:
78
+ - - ">="
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ required_rubygems_version: !ruby/object:Gem::Requirement
82
+ requirements:
83
+ - - ">="
84
+ - !ruby/object:Gem::Version
85
+ version: '0'
86
+ requirements: []
87
+ rubygems_version: 3.4.1
88
+ signing_key:
89
+ specification_version: 4
90
+ summary: CSS parser/transformer for Mayu Live
91
+ test_files: []