lightningcss_rb 0.0.1
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 +7 -0
- data/CHANGELOG.md +4 -0
- data/Cargo.lock +1212 -0
- data/Cargo.toml +7 -0
- data/LICENSE.txt +21 -0
- data/NOTICE.md +17 -0
- data/README.md +57 -0
- data/Rakefile +25 -0
- data/ext/lightningcss_rb/Cargo.toml +15 -0
- data/ext/lightningcss_rb/extconf.rb +6 -0
- data/ext/lightningcss_rb/src/lib.rs +57 -0
- data/lib/lightningcss_rb/ast/selectors/attribute.rb +47 -0
- data/lib/lightningcss_rb/ast/selectors/base.rb +33 -0
- data/lib/lightningcss_rb/ast/selectors/class_selector.rb +13 -0
- data/lib/lightningcss_rb/ast/selectors/combinator.rb +25 -0
- data/lib/lightningcss_rb/ast/selectors/id.rb +13 -0
- data/lib/lightningcss_rb/ast/selectors/namespace.rb +22 -0
- data/lib/lightningcss_rb/ast/selectors/nesting.rb +11 -0
- data/lib/lightningcss_rb/ast/selectors/pseudo_class.rb +73 -0
- data/lib/lightningcss_rb/ast/selectors/pseudo_element.rb +67 -0
- data/lib/lightningcss_rb/ast/selectors/type_selector.rb +13 -0
- data/lib/lightningcss_rb/ast/selectors/universal.rb +11 -0
- data/lib/lightningcss_rb/ast/selectors.rb +39 -0
- data/lib/lightningcss_rb/ast.rb +56 -0
- data/lib/lightningcss_rb/error.rb +5 -0
- data/lib/lightningcss_rb/unknown_error.rb +20 -0
- data/lib/lightningcss_rb/version.rb +5 -0
- data/lib/lightningcss_rb.rb +65 -0
- data/lib/tasks/.keep +0 -0
- data/sig/lightningcss_rb.rbs +16 -0
- metadata +90 -0
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1212 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "ahash"
|
|
7
|
+
version = "0.7.8"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "891477e0c6a8957309ee5c45a6368af3ae14bb510732d2684ffa19af310920f9"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"getrandom 0.2.17",
|
|
12
|
+
"once_cell",
|
|
13
|
+
"version_check",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[[package]]
|
|
17
|
+
name = "ahash"
|
|
18
|
+
version = "0.8.12"
|
|
19
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
20
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
21
|
+
dependencies = [
|
|
22
|
+
"cfg-if",
|
|
23
|
+
"getrandom 0.3.4",
|
|
24
|
+
"once_cell",
|
|
25
|
+
"version_check",
|
|
26
|
+
"zerocopy",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "aho-corasick"
|
|
31
|
+
version = "1.1.4"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"memchr",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "base64-simd"
|
|
40
|
+
version = "0.7.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"simd-abstraction",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "bindgen"
|
|
49
|
+
version = "0.72.1"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"bitflags",
|
|
54
|
+
"cexpr",
|
|
55
|
+
"clang-sys",
|
|
56
|
+
"itertools 0.13.0",
|
|
57
|
+
"proc-macro2",
|
|
58
|
+
"quote",
|
|
59
|
+
"regex",
|
|
60
|
+
"rustc-hash",
|
|
61
|
+
"shlex",
|
|
62
|
+
"syn 2.0.117",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "bitflags"
|
|
67
|
+
version = "2.11.1"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"serde_core",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "bitvec"
|
|
76
|
+
version = "1.0.1"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"funty",
|
|
81
|
+
"radium",
|
|
82
|
+
"tap",
|
|
83
|
+
"wyz",
|
|
84
|
+
]
|
|
85
|
+
|
|
86
|
+
[[package]]
|
|
87
|
+
name = "bumpalo"
|
|
88
|
+
version = "3.20.3"
|
|
89
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
90
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "bytecheck"
|
|
94
|
+
version = "0.6.12"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
97
|
+
dependencies = [
|
|
98
|
+
"bytecheck_derive",
|
|
99
|
+
"ptr_meta",
|
|
100
|
+
"simdutf8",
|
|
101
|
+
]
|
|
102
|
+
|
|
103
|
+
[[package]]
|
|
104
|
+
name = "bytecheck_derive"
|
|
105
|
+
version = "0.6.12"
|
|
106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
107
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
108
|
+
dependencies = [
|
|
109
|
+
"proc-macro2",
|
|
110
|
+
"quote",
|
|
111
|
+
"syn 1.0.109",
|
|
112
|
+
]
|
|
113
|
+
|
|
114
|
+
[[package]]
|
|
115
|
+
name = "bytes"
|
|
116
|
+
version = "1.11.1"
|
|
117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
118
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
119
|
+
|
|
120
|
+
[[package]]
|
|
121
|
+
name = "cexpr"
|
|
122
|
+
version = "0.6.0"
|
|
123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
124
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
125
|
+
dependencies = [
|
|
126
|
+
"nom",
|
|
127
|
+
]
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "cfg-if"
|
|
131
|
+
version = "1.0.4"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "clang-sys"
|
|
137
|
+
version = "1.8.1"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"glob",
|
|
142
|
+
"libc",
|
|
143
|
+
"libloading",
|
|
144
|
+
]
|
|
145
|
+
|
|
146
|
+
[[package]]
|
|
147
|
+
name = "const-str"
|
|
148
|
+
version = "0.3.2"
|
|
149
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
150
|
+
checksum = "21077772762a1002bb421c3af42ac1725fa56066bfc53d9a55bb79905df2aaf3"
|
|
151
|
+
dependencies = [
|
|
152
|
+
"const-str-proc-macro",
|
|
153
|
+
]
|
|
154
|
+
|
|
155
|
+
[[package]]
|
|
156
|
+
name = "const-str-proc-macro"
|
|
157
|
+
version = "0.3.2"
|
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
159
|
+
checksum = "5e1e0fdd2e5d3041e530e1b21158aeeef8b5d0e306bc5c1e3d6cf0930d10e25a"
|
|
160
|
+
dependencies = [
|
|
161
|
+
"proc-macro2",
|
|
162
|
+
"quote",
|
|
163
|
+
"syn 1.0.109",
|
|
164
|
+
]
|
|
165
|
+
|
|
166
|
+
[[package]]
|
|
167
|
+
name = "convert_case"
|
|
168
|
+
version = "0.6.0"
|
|
169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
170
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
171
|
+
dependencies = [
|
|
172
|
+
"unicode-segmentation",
|
|
173
|
+
]
|
|
174
|
+
|
|
175
|
+
[[package]]
|
|
176
|
+
name = "crossbeam-deque"
|
|
177
|
+
version = "0.8.6"
|
|
178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
179
|
+
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
180
|
+
dependencies = [
|
|
181
|
+
"crossbeam-epoch",
|
|
182
|
+
"crossbeam-utils",
|
|
183
|
+
]
|
|
184
|
+
|
|
185
|
+
[[package]]
|
|
186
|
+
name = "crossbeam-epoch"
|
|
187
|
+
version = "0.9.18"
|
|
188
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
189
|
+
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
190
|
+
dependencies = [
|
|
191
|
+
"crossbeam-utils",
|
|
192
|
+
]
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "crossbeam-utils"
|
|
196
|
+
version = "0.8.21"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "cssparser"
|
|
202
|
+
version = "0.33.0"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "9be934d936a0fbed5bcdc01042b770de1398bf79d0e192f49fa7faea0e99281e"
|
|
205
|
+
dependencies = [
|
|
206
|
+
"cssparser-macros",
|
|
207
|
+
"dtoa-short",
|
|
208
|
+
"itoa",
|
|
209
|
+
"phf",
|
|
210
|
+
"serde",
|
|
211
|
+
"smallvec",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "cssparser-color"
|
|
216
|
+
version = "0.1.0"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "556c099a61d85989d7af52b692e35a8d68a57e7df8c6d07563dc0778b3960c9f"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"cssparser",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "cssparser-macros"
|
|
225
|
+
version = "0.6.1"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"quote",
|
|
230
|
+
"syn 2.0.117",
|
|
231
|
+
]
|
|
232
|
+
|
|
233
|
+
[[package]]
|
|
234
|
+
name = "dashmap"
|
|
235
|
+
version = "5.5.3"
|
|
236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
237
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
238
|
+
dependencies = [
|
|
239
|
+
"cfg-if",
|
|
240
|
+
"hashbrown 0.14.5",
|
|
241
|
+
"lock_api",
|
|
242
|
+
"once_cell",
|
|
243
|
+
"parking_lot_core",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "data-encoding"
|
|
248
|
+
version = "2.11.0"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
251
|
+
|
|
252
|
+
[[package]]
|
|
253
|
+
name = "data-url"
|
|
254
|
+
version = "0.1.1"
|
|
255
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
256
|
+
checksum = "3a30bfce702bcfa94e906ef82421f2c0e61c076ad76030c16ee5d2e9a32fe193"
|
|
257
|
+
dependencies = [
|
|
258
|
+
"matches",
|
|
259
|
+
]
|
|
260
|
+
|
|
261
|
+
[[package]]
|
|
262
|
+
name = "dtoa"
|
|
263
|
+
version = "1.0.11"
|
|
264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
265
|
+
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
266
|
+
|
|
267
|
+
[[package]]
|
|
268
|
+
name = "dtoa-short"
|
|
269
|
+
version = "0.3.5"
|
|
270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
271
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
272
|
+
dependencies = [
|
|
273
|
+
"dtoa",
|
|
274
|
+
]
|
|
275
|
+
|
|
276
|
+
[[package]]
|
|
277
|
+
name = "either"
|
|
278
|
+
version = "1.16.0"
|
|
279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
280
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
281
|
+
|
|
282
|
+
[[package]]
|
|
283
|
+
name = "equivalent"
|
|
284
|
+
version = "1.0.2"
|
|
285
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
286
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
287
|
+
|
|
288
|
+
[[package]]
|
|
289
|
+
name = "funty"
|
|
290
|
+
version = "2.0.0"
|
|
291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
292
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
293
|
+
|
|
294
|
+
[[package]]
|
|
295
|
+
name = "futures-core"
|
|
296
|
+
version = "0.3.32"
|
|
297
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
298
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "futures-task"
|
|
302
|
+
version = "0.3.32"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
305
|
+
|
|
306
|
+
[[package]]
|
|
307
|
+
name = "futures-util"
|
|
308
|
+
version = "0.3.32"
|
|
309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
310
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
311
|
+
dependencies = [
|
|
312
|
+
"futures-core",
|
|
313
|
+
"futures-task",
|
|
314
|
+
"pin-project-lite",
|
|
315
|
+
"slab",
|
|
316
|
+
]
|
|
317
|
+
|
|
318
|
+
[[package]]
|
|
319
|
+
name = "getrandom"
|
|
320
|
+
version = "0.2.17"
|
|
321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
322
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
323
|
+
dependencies = [
|
|
324
|
+
"cfg-if",
|
|
325
|
+
"libc",
|
|
326
|
+
"wasi",
|
|
327
|
+
]
|
|
328
|
+
|
|
329
|
+
[[package]]
|
|
330
|
+
name = "getrandom"
|
|
331
|
+
version = "0.3.4"
|
|
332
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
333
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
334
|
+
dependencies = [
|
|
335
|
+
"cfg-if",
|
|
336
|
+
"libc",
|
|
337
|
+
"r-efi",
|
|
338
|
+
"wasip2",
|
|
339
|
+
]
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "glob"
|
|
343
|
+
version = "0.3.3"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "hashbrown"
|
|
349
|
+
version = "0.12.3"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
352
|
+
dependencies = [
|
|
353
|
+
"ahash 0.7.8",
|
|
354
|
+
]
|
|
355
|
+
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "hashbrown"
|
|
358
|
+
version = "0.14.5"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
361
|
+
|
|
362
|
+
[[package]]
|
|
363
|
+
name = "hashbrown"
|
|
364
|
+
version = "0.17.1"
|
|
365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
366
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
367
|
+
|
|
368
|
+
[[package]]
|
|
369
|
+
name = "indexmap"
|
|
370
|
+
version = "2.14.0"
|
|
371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
372
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
373
|
+
dependencies = [
|
|
374
|
+
"equivalent",
|
|
375
|
+
"hashbrown 0.17.1",
|
|
376
|
+
"serde",
|
|
377
|
+
"serde_core",
|
|
378
|
+
]
|
|
379
|
+
|
|
380
|
+
[[package]]
|
|
381
|
+
name = "itertools"
|
|
382
|
+
version = "0.10.5"
|
|
383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
384
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
385
|
+
dependencies = [
|
|
386
|
+
"either",
|
|
387
|
+
]
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "itertools"
|
|
391
|
+
version = "0.13.0"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
394
|
+
dependencies = [
|
|
395
|
+
"either",
|
|
396
|
+
]
|
|
397
|
+
|
|
398
|
+
[[package]]
|
|
399
|
+
name = "itoa"
|
|
400
|
+
version = "1.0.18"
|
|
401
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
402
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "js-sys"
|
|
406
|
+
version = "0.3.99"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
|
|
409
|
+
dependencies = [
|
|
410
|
+
"cfg-if",
|
|
411
|
+
"futures-util",
|
|
412
|
+
"once_cell",
|
|
413
|
+
"wasm-bindgen",
|
|
414
|
+
]
|
|
415
|
+
|
|
416
|
+
[[package]]
|
|
417
|
+
name = "lazy_static"
|
|
418
|
+
version = "1.5.0"
|
|
419
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
420
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
421
|
+
|
|
422
|
+
[[package]]
|
|
423
|
+
name = "libc"
|
|
424
|
+
version = "0.2.186"
|
|
425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
426
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "libloading"
|
|
430
|
+
version = "0.8.9"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"cfg-if",
|
|
435
|
+
"windows-link",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "lightningcss"
|
|
440
|
+
version = "1.0.0-alpha.71"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "cb6314c2f0590ac93c86099b98bb7ba8abcf759bfd89604ffca906472bb54937"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"ahash 0.8.12",
|
|
445
|
+
"bitflags",
|
|
446
|
+
"const-str",
|
|
447
|
+
"cssparser",
|
|
448
|
+
"cssparser-color",
|
|
449
|
+
"dashmap",
|
|
450
|
+
"data-encoding",
|
|
451
|
+
"getrandom 0.3.4",
|
|
452
|
+
"indexmap",
|
|
453
|
+
"itertools 0.10.5",
|
|
454
|
+
"lazy_static",
|
|
455
|
+
"lightningcss-derive",
|
|
456
|
+
"parcel_selectors",
|
|
457
|
+
"parcel_sourcemap",
|
|
458
|
+
"pastey",
|
|
459
|
+
"pathdiff",
|
|
460
|
+
"rayon",
|
|
461
|
+
"serde",
|
|
462
|
+
"serde-content",
|
|
463
|
+
"smallvec",
|
|
464
|
+
"static-self",
|
|
465
|
+
]
|
|
466
|
+
|
|
467
|
+
[[package]]
|
|
468
|
+
name = "lightningcss-derive"
|
|
469
|
+
version = "1.0.0-alpha.43"
|
|
470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
471
|
+
checksum = "84c12744d1279367caed41739ef094c325d53fb0ffcd4f9b84a368796f870252"
|
|
472
|
+
dependencies = [
|
|
473
|
+
"convert_case",
|
|
474
|
+
"proc-macro2",
|
|
475
|
+
"quote",
|
|
476
|
+
"syn 1.0.109",
|
|
477
|
+
]
|
|
478
|
+
|
|
479
|
+
[[package]]
|
|
480
|
+
name = "lightningcss_rb"
|
|
481
|
+
version = "0.1.0"
|
|
482
|
+
dependencies = [
|
|
483
|
+
"lightningcss",
|
|
484
|
+
"magnus",
|
|
485
|
+
"serde_json",
|
|
486
|
+
]
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "lock_api"
|
|
490
|
+
version = "0.4.14"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"scopeguard",
|
|
495
|
+
]
|
|
496
|
+
|
|
497
|
+
[[package]]
|
|
498
|
+
name = "log"
|
|
499
|
+
version = "0.4.30"
|
|
500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
+
checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "magnus"
|
|
505
|
+
version = "0.8.2"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"magnus-macros",
|
|
510
|
+
"rb-sys",
|
|
511
|
+
"rb-sys-env",
|
|
512
|
+
"seq-macro",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "magnus-macros"
|
|
517
|
+
version = "0.8.0"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"proc-macro2",
|
|
522
|
+
"quote",
|
|
523
|
+
"syn 2.0.117",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "matches"
|
|
528
|
+
version = "0.1.10"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
531
|
+
|
|
532
|
+
[[package]]
|
|
533
|
+
name = "memchr"
|
|
534
|
+
version = "2.8.1"
|
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
536
|
+
checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "minimal-lexical"
|
|
540
|
+
version = "0.2.1"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "nom"
|
|
546
|
+
version = "7.1.3"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"memchr",
|
|
551
|
+
"minimal-lexical",
|
|
552
|
+
]
|
|
553
|
+
|
|
554
|
+
[[package]]
|
|
555
|
+
name = "once_cell"
|
|
556
|
+
version = "1.21.4"
|
|
557
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "outref"
|
|
562
|
+
version = "0.1.0"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "parcel_selectors"
|
|
568
|
+
version = "0.28.2"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "54fd03f1ad26cb6b3ec1b7414fa78a3bd639e7dbb421b1a60513c96ce886a196"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"bitflags",
|
|
573
|
+
"cssparser",
|
|
574
|
+
"log",
|
|
575
|
+
"phf",
|
|
576
|
+
"phf_codegen",
|
|
577
|
+
"precomputed-hash",
|
|
578
|
+
"rustc-hash",
|
|
579
|
+
"serde",
|
|
580
|
+
"smallvec",
|
|
581
|
+
"static-self",
|
|
582
|
+
]
|
|
583
|
+
|
|
584
|
+
[[package]]
|
|
585
|
+
name = "parcel_sourcemap"
|
|
586
|
+
version = "2.1.1"
|
|
587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
588
|
+
checksum = "485b74d7218068b2b7c0e3ff12fbc61ae11d57cb5d8224f525bd304c6be05bbb"
|
|
589
|
+
dependencies = [
|
|
590
|
+
"base64-simd",
|
|
591
|
+
"data-url",
|
|
592
|
+
"rkyv",
|
|
593
|
+
"serde",
|
|
594
|
+
"serde_json",
|
|
595
|
+
"vlq",
|
|
596
|
+
]
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "parking_lot_core"
|
|
600
|
+
version = "0.9.12"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
603
|
+
dependencies = [
|
|
604
|
+
"cfg-if",
|
|
605
|
+
"libc",
|
|
606
|
+
"redox_syscall",
|
|
607
|
+
"smallvec",
|
|
608
|
+
"windows-link",
|
|
609
|
+
]
|
|
610
|
+
|
|
611
|
+
[[package]]
|
|
612
|
+
name = "pastey"
|
|
613
|
+
version = "0.1.1"
|
|
614
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
615
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
616
|
+
|
|
617
|
+
[[package]]
|
|
618
|
+
name = "pathdiff"
|
|
619
|
+
version = "0.2.3"
|
|
620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
621
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
622
|
+
|
|
623
|
+
[[package]]
|
|
624
|
+
name = "phf"
|
|
625
|
+
version = "0.11.3"
|
|
626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
627
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
628
|
+
dependencies = [
|
|
629
|
+
"phf_macros",
|
|
630
|
+
"phf_shared",
|
|
631
|
+
]
|
|
632
|
+
|
|
633
|
+
[[package]]
|
|
634
|
+
name = "phf_codegen"
|
|
635
|
+
version = "0.11.3"
|
|
636
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
637
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
638
|
+
dependencies = [
|
|
639
|
+
"phf_generator",
|
|
640
|
+
"phf_shared",
|
|
641
|
+
]
|
|
642
|
+
|
|
643
|
+
[[package]]
|
|
644
|
+
name = "phf_generator"
|
|
645
|
+
version = "0.11.3"
|
|
646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
647
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
648
|
+
dependencies = [
|
|
649
|
+
"phf_shared",
|
|
650
|
+
"rand",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "phf_macros"
|
|
655
|
+
version = "0.11.3"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"phf_generator",
|
|
660
|
+
"phf_shared",
|
|
661
|
+
"proc-macro2",
|
|
662
|
+
"quote",
|
|
663
|
+
"syn 2.0.117",
|
|
664
|
+
]
|
|
665
|
+
|
|
666
|
+
[[package]]
|
|
667
|
+
name = "phf_shared"
|
|
668
|
+
version = "0.11.3"
|
|
669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
671
|
+
dependencies = [
|
|
672
|
+
"siphasher",
|
|
673
|
+
]
|
|
674
|
+
|
|
675
|
+
[[package]]
|
|
676
|
+
name = "pin-project-lite"
|
|
677
|
+
version = "0.2.17"
|
|
678
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
680
|
+
|
|
681
|
+
[[package]]
|
|
682
|
+
name = "precomputed-hash"
|
|
683
|
+
version = "0.1.1"
|
|
684
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
685
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
686
|
+
|
|
687
|
+
[[package]]
|
|
688
|
+
name = "proc-macro2"
|
|
689
|
+
version = "1.0.106"
|
|
690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
691
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
692
|
+
dependencies = [
|
|
693
|
+
"unicode-ident",
|
|
694
|
+
]
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "ptr_meta"
|
|
698
|
+
version = "0.1.4"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"ptr_meta_derive",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "ptr_meta_derive"
|
|
707
|
+
version = "0.1.4"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"proc-macro2",
|
|
712
|
+
"quote",
|
|
713
|
+
"syn 1.0.109",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "quote"
|
|
718
|
+
version = "1.0.45"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"proc-macro2",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "r-efi"
|
|
727
|
+
version = "5.3.0"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "radium"
|
|
733
|
+
version = "0.7.0"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "rand"
|
|
739
|
+
version = "0.8.6"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"rand_core",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "rand_core"
|
|
748
|
+
version = "0.6.4"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "rayon"
|
|
754
|
+
version = "1.12.0"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
757
|
+
dependencies = [
|
|
758
|
+
"either",
|
|
759
|
+
"rayon-core",
|
|
760
|
+
]
|
|
761
|
+
|
|
762
|
+
[[package]]
|
|
763
|
+
name = "rayon-core"
|
|
764
|
+
version = "1.13.0"
|
|
765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
766
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
767
|
+
dependencies = [
|
|
768
|
+
"crossbeam-deque",
|
|
769
|
+
"crossbeam-utils",
|
|
770
|
+
]
|
|
771
|
+
|
|
772
|
+
[[package]]
|
|
773
|
+
name = "rb-sys"
|
|
774
|
+
version = "0.9.128"
|
|
775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
776
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
777
|
+
dependencies = [
|
|
778
|
+
"rb-sys-build",
|
|
779
|
+
]
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "rb-sys-build"
|
|
783
|
+
version = "0.9.128"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
786
|
+
dependencies = [
|
|
787
|
+
"bindgen",
|
|
788
|
+
"lazy_static",
|
|
789
|
+
"proc-macro2",
|
|
790
|
+
"quote",
|
|
791
|
+
"regex",
|
|
792
|
+
"shell-words",
|
|
793
|
+
"syn 2.0.117",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "rb-sys-env"
|
|
798
|
+
version = "0.2.3"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "redox_syscall"
|
|
804
|
+
version = "0.5.18"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
807
|
+
dependencies = [
|
|
808
|
+
"bitflags",
|
|
809
|
+
]
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "regex"
|
|
813
|
+
version = "1.12.3"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
816
|
+
dependencies = [
|
|
817
|
+
"aho-corasick",
|
|
818
|
+
"memchr",
|
|
819
|
+
"regex-automata",
|
|
820
|
+
"regex-syntax",
|
|
821
|
+
]
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "regex-automata"
|
|
825
|
+
version = "0.4.14"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"aho-corasick",
|
|
830
|
+
"memchr",
|
|
831
|
+
"regex-syntax",
|
|
832
|
+
]
|
|
833
|
+
|
|
834
|
+
[[package]]
|
|
835
|
+
name = "regex-syntax"
|
|
836
|
+
version = "0.8.10"
|
|
837
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
838
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
839
|
+
|
|
840
|
+
[[package]]
|
|
841
|
+
name = "rend"
|
|
842
|
+
version = "0.4.2"
|
|
843
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
844
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
845
|
+
dependencies = [
|
|
846
|
+
"bytecheck",
|
|
847
|
+
]
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "rkyv"
|
|
851
|
+
version = "0.7.46"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
|
|
854
|
+
dependencies = [
|
|
855
|
+
"bitvec",
|
|
856
|
+
"bytecheck",
|
|
857
|
+
"bytes",
|
|
858
|
+
"hashbrown 0.12.3",
|
|
859
|
+
"ptr_meta",
|
|
860
|
+
"rend",
|
|
861
|
+
"rkyv_derive",
|
|
862
|
+
"seahash",
|
|
863
|
+
"tinyvec",
|
|
864
|
+
"uuid",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "rkyv_derive"
|
|
869
|
+
version = "0.7.46"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
|
|
872
|
+
dependencies = [
|
|
873
|
+
"proc-macro2",
|
|
874
|
+
"quote",
|
|
875
|
+
"syn 1.0.109",
|
|
876
|
+
]
|
|
877
|
+
|
|
878
|
+
[[package]]
|
|
879
|
+
name = "rustc-hash"
|
|
880
|
+
version = "2.1.2"
|
|
881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
882
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
883
|
+
|
|
884
|
+
[[package]]
|
|
885
|
+
name = "rustversion"
|
|
886
|
+
version = "1.0.22"
|
|
887
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
888
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
889
|
+
|
|
890
|
+
[[package]]
|
|
891
|
+
name = "scopeguard"
|
|
892
|
+
version = "1.2.0"
|
|
893
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
894
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
895
|
+
|
|
896
|
+
[[package]]
|
|
897
|
+
name = "seahash"
|
|
898
|
+
version = "4.1.0"
|
|
899
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
900
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "seq-macro"
|
|
904
|
+
version = "0.3.6"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
907
|
+
|
|
908
|
+
[[package]]
|
|
909
|
+
name = "serde"
|
|
910
|
+
version = "1.0.228"
|
|
911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
912
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
913
|
+
dependencies = [
|
|
914
|
+
"serde_core",
|
|
915
|
+
"serde_derive",
|
|
916
|
+
]
|
|
917
|
+
|
|
918
|
+
[[package]]
|
|
919
|
+
name = "serde-content"
|
|
920
|
+
version = "0.1.2"
|
|
921
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
922
|
+
checksum = "3753ca04f350fa92d00b6146a3555e63c55388c9ef2e11e09bce2ff1c0b509c6"
|
|
923
|
+
dependencies = [
|
|
924
|
+
"serde",
|
|
925
|
+
]
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "serde_core"
|
|
929
|
+
version = "1.0.228"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
932
|
+
dependencies = [
|
|
933
|
+
"serde_derive",
|
|
934
|
+
]
|
|
935
|
+
|
|
936
|
+
[[package]]
|
|
937
|
+
name = "serde_derive"
|
|
938
|
+
version = "1.0.228"
|
|
939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
940
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
941
|
+
dependencies = [
|
|
942
|
+
"proc-macro2",
|
|
943
|
+
"quote",
|
|
944
|
+
"syn 2.0.117",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "serde_json"
|
|
949
|
+
version = "1.0.150"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"itoa",
|
|
954
|
+
"memchr",
|
|
955
|
+
"serde",
|
|
956
|
+
"serde_core",
|
|
957
|
+
"zmij",
|
|
958
|
+
]
|
|
959
|
+
|
|
960
|
+
[[package]]
|
|
961
|
+
name = "shell-words"
|
|
962
|
+
version = "1.1.1"
|
|
963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
964
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
965
|
+
|
|
966
|
+
[[package]]
|
|
967
|
+
name = "shlex"
|
|
968
|
+
version = "1.3.0"
|
|
969
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
970
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "simd-abstraction"
|
|
974
|
+
version = "0.7.1"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"outref",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "simdutf8"
|
|
983
|
+
version = "0.1.5"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
986
|
+
|
|
987
|
+
[[package]]
|
|
988
|
+
name = "siphasher"
|
|
989
|
+
version = "1.0.3"
|
|
990
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
991
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
992
|
+
|
|
993
|
+
[[package]]
|
|
994
|
+
name = "slab"
|
|
995
|
+
version = "0.4.12"
|
|
996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
997
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "smallvec"
|
|
1001
|
+
version = "1.15.1"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"serde",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "static-self"
|
|
1010
|
+
version = "0.1.2"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "f6635404b73efc136af3a7956e53c53d4f34b2f16c95a15c438929add0f69412"
|
|
1013
|
+
dependencies = [
|
|
1014
|
+
"indexmap",
|
|
1015
|
+
"smallvec",
|
|
1016
|
+
"static-self-derive",
|
|
1017
|
+
]
|
|
1018
|
+
|
|
1019
|
+
[[package]]
|
|
1020
|
+
name = "static-self-derive"
|
|
1021
|
+
version = "0.1.1"
|
|
1022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1023
|
+
checksum = "5268c96d4b907c558a9a52d8492522d6c7b559651a5e1d8f2d551e461b9425d5"
|
|
1024
|
+
dependencies = [
|
|
1025
|
+
"proc-macro2",
|
|
1026
|
+
"quote",
|
|
1027
|
+
"syn 1.0.109",
|
|
1028
|
+
]
|
|
1029
|
+
|
|
1030
|
+
[[package]]
|
|
1031
|
+
name = "syn"
|
|
1032
|
+
version = "1.0.109"
|
|
1033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1034
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1035
|
+
dependencies = [
|
|
1036
|
+
"proc-macro2",
|
|
1037
|
+
"quote",
|
|
1038
|
+
"unicode-ident",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "syn"
|
|
1043
|
+
version = "2.0.117"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"proc-macro2",
|
|
1048
|
+
"quote",
|
|
1049
|
+
"unicode-ident",
|
|
1050
|
+
]
|
|
1051
|
+
|
|
1052
|
+
[[package]]
|
|
1053
|
+
name = "tap"
|
|
1054
|
+
version = "1.0.1"
|
|
1055
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1056
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1057
|
+
|
|
1058
|
+
[[package]]
|
|
1059
|
+
name = "tinyvec"
|
|
1060
|
+
version = "1.11.0"
|
|
1061
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1062
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1063
|
+
dependencies = [
|
|
1064
|
+
"tinyvec_macros",
|
|
1065
|
+
]
|
|
1066
|
+
|
|
1067
|
+
[[package]]
|
|
1068
|
+
name = "tinyvec_macros"
|
|
1069
|
+
version = "0.1.1"
|
|
1070
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1071
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "unicode-ident"
|
|
1075
|
+
version = "1.0.24"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "unicode-segmentation"
|
|
1081
|
+
version = "1.13.2"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
|
|
1084
|
+
|
|
1085
|
+
[[package]]
|
|
1086
|
+
name = "uuid"
|
|
1087
|
+
version = "1.23.2"
|
|
1088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1089
|
+
checksum = "d258b83ceec21034727ecee8c382cfa6c3e133699b0742c64571814fb420c9f7"
|
|
1090
|
+
dependencies = [
|
|
1091
|
+
"js-sys",
|
|
1092
|
+
"wasm-bindgen",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "version_check"
|
|
1097
|
+
version = "0.9.5"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1100
|
+
|
|
1101
|
+
[[package]]
|
|
1102
|
+
name = "vlq"
|
|
1103
|
+
version = "0.5.1"
|
|
1104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
+
checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff"
|
|
1106
|
+
|
|
1107
|
+
[[package]]
|
|
1108
|
+
name = "wasi"
|
|
1109
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1111
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1112
|
+
|
|
1113
|
+
[[package]]
|
|
1114
|
+
name = "wasip2"
|
|
1115
|
+
version = "1.0.3+wasi-0.2.9"
|
|
1116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1117
|
+
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
1118
|
+
dependencies = [
|
|
1119
|
+
"wit-bindgen",
|
|
1120
|
+
]
|
|
1121
|
+
|
|
1122
|
+
[[package]]
|
|
1123
|
+
name = "wasm-bindgen"
|
|
1124
|
+
version = "0.2.122"
|
|
1125
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1126
|
+
checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
|
|
1127
|
+
dependencies = [
|
|
1128
|
+
"cfg-if",
|
|
1129
|
+
"once_cell",
|
|
1130
|
+
"rustversion",
|
|
1131
|
+
"wasm-bindgen-macro",
|
|
1132
|
+
"wasm-bindgen-shared",
|
|
1133
|
+
]
|
|
1134
|
+
|
|
1135
|
+
[[package]]
|
|
1136
|
+
name = "wasm-bindgen-macro"
|
|
1137
|
+
version = "0.2.122"
|
|
1138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1139
|
+
checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
|
|
1140
|
+
dependencies = [
|
|
1141
|
+
"quote",
|
|
1142
|
+
"wasm-bindgen-macro-support",
|
|
1143
|
+
]
|
|
1144
|
+
|
|
1145
|
+
[[package]]
|
|
1146
|
+
name = "wasm-bindgen-macro-support"
|
|
1147
|
+
version = "0.2.122"
|
|
1148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1149
|
+
checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
|
|
1150
|
+
dependencies = [
|
|
1151
|
+
"bumpalo",
|
|
1152
|
+
"proc-macro2",
|
|
1153
|
+
"quote",
|
|
1154
|
+
"syn 2.0.117",
|
|
1155
|
+
"wasm-bindgen-shared",
|
|
1156
|
+
]
|
|
1157
|
+
|
|
1158
|
+
[[package]]
|
|
1159
|
+
name = "wasm-bindgen-shared"
|
|
1160
|
+
version = "0.2.122"
|
|
1161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1162
|
+
checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
|
|
1163
|
+
dependencies = [
|
|
1164
|
+
"unicode-ident",
|
|
1165
|
+
]
|
|
1166
|
+
|
|
1167
|
+
[[package]]
|
|
1168
|
+
name = "windows-link"
|
|
1169
|
+
version = "0.2.1"
|
|
1170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1171
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1172
|
+
|
|
1173
|
+
[[package]]
|
|
1174
|
+
name = "wit-bindgen"
|
|
1175
|
+
version = "0.57.1"
|
|
1176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1177
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "wyz"
|
|
1181
|
+
version = "0.5.1"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"tap",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "zerocopy"
|
|
1190
|
+
version = "0.8.50"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"zerocopy-derive",
|
|
1195
|
+
]
|
|
1196
|
+
|
|
1197
|
+
[[package]]
|
|
1198
|
+
name = "zerocopy-derive"
|
|
1199
|
+
version = "0.8.50"
|
|
1200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1201
|
+
checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
|
|
1202
|
+
dependencies = [
|
|
1203
|
+
"proc-macro2",
|
|
1204
|
+
"quote",
|
|
1205
|
+
"syn 2.0.117",
|
|
1206
|
+
]
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "zmij"
|
|
1210
|
+
version = "1.0.21"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|