lightningcss 0.1.0-x86_64-linux-gnu
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/LICENSE.txt +21 -0
- data/README.md +231 -0
- data/ext/lightningcss/extconf.rb +112 -0
- data/ext/lightningcss/include/lightningcss.h +28 -0
- data/ext/lightningcss/lightningcss.c +101 -0
- data/lib/lightningcss/3.2/lightningcss.so +0 -0
- data/lib/lightningcss/3.3/lightningcss.so +0 -0
- data/lib/lightningcss/3.4/lightningcss.so +0 -0
- data/lib/lightningcss/4.0/lightningcss.so +0 -0
- data/lib/lightningcss/backend.rb +36 -0
- data/lib/lightningcss/errors.rb +8 -0
- data/lib/lightningcss/options.rb +82 -0
- data/lib/lightningcss/result.rb +57 -0
- data/lib/lightningcss/transformer.rb +56 -0
- data/lib/lightningcss/version.rb +5 -0
- data/lib/lightningcss.rb +60 -0
- data/licenses/README.md +12 -0
- data/licenses/lightningcss-MPL-2.0.txt +373 -0
- data/lightningcss.gemspec +43 -0
- data/rust/Cargo.lock +1283 -0
- data/rust/Cargo.toml +24 -0
- data/rust/build.rs +15 -0
- data/rust/cbindgen.toml +23 -0
- data/rust/rustfmt.toml +3 -0
- data/rust/src/lib.rs +308 -0
- data/rust/src/options.rs +98 -0
- data/rust/src/scope.rs +63 -0
- data/sig/lightningcss/backend.rbs +26 -0
- data/sig/lightningcss/errors.rbs +15 -0
- data/sig/lightningcss/options.rbs +38 -0
- data/sig/lightningcss/result.rbs +34 -0
- data/sig/lightningcss/transformer.rbs +39 -0
- data/sig/lightningcss/types.rbs +26 -0
- data/sig/lightningcss/version.rbs +5 -0
- data/sig/lightningcss.rbs +31 -0
- metadata +86 -0
data/rust/Cargo.lock
ADDED
|
@@ -0,0 +1,1283 @@
|
|
|
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 = "anstream"
|
|
31
|
+
version = "1.0.0"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"anstyle",
|
|
36
|
+
"anstyle-parse",
|
|
37
|
+
"anstyle-query",
|
|
38
|
+
"anstyle-wincon",
|
|
39
|
+
"colorchoice",
|
|
40
|
+
"is_terminal_polyfill",
|
|
41
|
+
"utf8parse",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "anstyle"
|
|
46
|
+
version = "1.0.14"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "anstyle-parse"
|
|
52
|
+
version = "1.0.0"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"utf8parse",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-query"
|
|
61
|
+
version = "1.1.5"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"windows-sys",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "anstyle-wincon"
|
|
70
|
+
version = "3.0.11"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"anstyle",
|
|
75
|
+
"once_cell_polyfill",
|
|
76
|
+
"windows-sys",
|
|
77
|
+
]
|
|
78
|
+
|
|
79
|
+
[[package]]
|
|
80
|
+
name = "base64-simd"
|
|
81
|
+
version = "0.7.0"
|
|
82
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
|
+
checksum = "781dd20c3aff0bd194fe7d2a977dd92f21c173891f3a03b677359e5fa457e5d5"
|
|
84
|
+
dependencies = [
|
|
85
|
+
"simd-abstraction",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "bitflags"
|
|
90
|
+
version = "2.13.1"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "b588b76d00fde79687d7646a9b5bdf3cc0f655e0bbd080335a95d7e96f3587da"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "bitvec"
|
|
96
|
+
version = "1.1.1"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"funty",
|
|
101
|
+
"radium",
|
|
102
|
+
"tap",
|
|
103
|
+
"wyz",
|
|
104
|
+
]
|
|
105
|
+
|
|
106
|
+
[[package]]
|
|
107
|
+
name = "bumpalo"
|
|
108
|
+
version = "3.20.3"
|
|
109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
110
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
111
|
+
|
|
112
|
+
[[package]]
|
|
113
|
+
name = "bytecheck"
|
|
114
|
+
version = "0.6.12"
|
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
116
|
+
checksum = "23cdc57ce23ac53c931e88a43d06d070a6fd142f2617be5855eb75efc9beb1c2"
|
|
117
|
+
dependencies = [
|
|
118
|
+
"bytecheck_derive",
|
|
119
|
+
"ptr_meta",
|
|
120
|
+
"simdutf8",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "bytecheck_derive"
|
|
125
|
+
version = "0.6.12"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "3db406d29fbcd95542e92559bed4d8ad92636d1ca8b3b72ede10b4bcc010e659"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"proc-macro2",
|
|
130
|
+
"quote",
|
|
131
|
+
"syn 1.0.109",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "bytes"
|
|
136
|
+
version = "1.12.1"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "fc652a48c352aef3ea3aed32080501cf3ef6ed5da78602a020c991775b0aff04"
|
|
139
|
+
|
|
140
|
+
[[package]]
|
|
141
|
+
name = "cbindgen"
|
|
142
|
+
version = "0.28.0"
|
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
144
|
+
checksum = "eadd868a2ce9ca38de7eeafdcec9c7065ef89b42b32f0839278d55f35c54d1ff"
|
|
145
|
+
dependencies = [
|
|
146
|
+
"clap",
|
|
147
|
+
"heck",
|
|
148
|
+
"indexmap",
|
|
149
|
+
"log",
|
|
150
|
+
"proc-macro2",
|
|
151
|
+
"quote",
|
|
152
|
+
"serde",
|
|
153
|
+
"serde_json",
|
|
154
|
+
"syn 2.0.119",
|
|
155
|
+
"tempfile",
|
|
156
|
+
"toml",
|
|
157
|
+
]
|
|
158
|
+
|
|
159
|
+
[[package]]
|
|
160
|
+
name = "cfg-if"
|
|
161
|
+
version = "1.0.4"
|
|
162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
163
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
164
|
+
|
|
165
|
+
[[package]]
|
|
166
|
+
name = "clap"
|
|
167
|
+
version = "4.6.6"
|
|
168
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
169
|
+
checksum = "473c7e07f409a8d772161724aa8db6a765a2532a70f9667eeb7b49d3d02fbdca"
|
|
170
|
+
dependencies = [
|
|
171
|
+
"clap_builder",
|
|
172
|
+
]
|
|
173
|
+
|
|
174
|
+
[[package]]
|
|
175
|
+
name = "clap_builder"
|
|
176
|
+
version = "4.6.6"
|
|
177
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
+
checksum = "7b48fea5a88e9ae728a2dcbedbfc0e730f7d60da42e1cb049a83c9fb8b789889"
|
|
179
|
+
dependencies = [
|
|
180
|
+
"anstream",
|
|
181
|
+
"anstyle",
|
|
182
|
+
"clap_lex",
|
|
183
|
+
"strsim",
|
|
184
|
+
]
|
|
185
|
+
|
|
186
|
+
[[package]]
|
|
187
|
+
name = "clap_lex"
|
|
188
|
+
version = "1.1.0"
|
|
189
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
190
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "colorchoice"
|
|
194
|
+
version = "1.0.5"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "const-str"
|
|
200
|
+
version = "1.1.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "18f12cc9948ed9604230cdddc7c86e270f9401ccbe3c2e98a4378c5e7632212f"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "convert_case"
|
|
206
|
+
version = "0.6.0"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"unicode-segmentation",
|
|
211
|
+
]
|
|
212
|
+
|
|
213
|
+
[[package]]
|
|
214
|
+
name = "crossbeam-deque"
|
|
215
|
+
version = "0.8.7"
|
|
216
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
+
checksum = "5181e0de7b61eb03a81e347d6dd8797bae9da5146707b51077e2d71a54ec0ceb"
|
|
218
|
+
dependencies = [
|
|
219
|
+
"crossbeam-epoch",
|
|
220
|
+
"crossbeam-utils",
|
|
221
|
+
]
|
|
222
|
+
|
|
223
|
+
[[package]]
|
|
224
|
+
name = "crossbeam-epoch"
|
|
225
|
+
version = "0.9.20"
|
|
226
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
227
|
+
checksum = "2d6914041f254d6e9176c01941b21115dcfb7089e55135a35411081bd106ef3f"
|
|
228
|
+
dependencies = [
|
|
229
|
+
"crossbeam-utils",
|
|
230
|
+
]
|
|
231
|
+
|
|
232
|
+
[[package]]
|
|
233
|
+
name = "crossbeam-utils"
|
|
234
|
+
version = "0.8.22"
|
|
235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
236
|
+
checksum = "61803da095bee82a81bb1a452ecc25d3b2f1416d1897eb86430c6159ef717c17"
|
|
237
|
+
|
|
238
|
+
[[package]]
|
|
239
|
+
name = "cssparser"
|
|
240
|
+
version = "0.37.0"
|
|
241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
242
|
+
checksum = "8c9cdaae01d5ed7882b04d795e7f752f46ff52d2fa3b50a20d28c464510bba98"
|
|
243
|
+
dependencies = [
|
|
244
|
+
"cssparser-macros",
|
|
245
|
+
"dtoa-short",
|
|
246
|
+
"itoa",
|
|
247
|
+
"phf 0.13.1",
|
|
248
|
+
"smallvec",
|
|
249
|
+
]
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "cssparser-color"
|
|
253
|
+
version = "0.5.0"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "bbaa233e1dcd9c13a5d3e3a8a2c0f5a727bac380398345dbcb31db4597edc86b"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"cssparser",
|
|
258
|
+
]
|
|
259
|
+
|
|
260
|
+
[[package]]
|
|
261
|
+
name = "cssparser-macros"
|
|
262
|
+
version = "0.7.0"
|
|
263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
+
checksum = "10a2a99df6e410a8ff4245aa2006499ea662245f967cc7c0a38c83ef8eb44dbf"
|
|
265
|
+
dependencies = [
|
|
266
|
+
"quote",
|
|
267
|
+
"syn 2.0.119",
|
|
268
|
+
]
|
|
269
|
+
|
|
270
|
+
[[package]]
|
|
271
|
+
name = "dashmap"
|
|
272
|
+
version = "5.5.3"
|
|
273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
274
|
+
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
|
275
|
+
dependencies = [
|
|
276
|
+
"cfg-if",
|
|
277
|
+
"hashbrown 0.14.5",
|
|
278
|
+
"lock_api",
|
|
279
|
+
"once_cell",
|
|
280
|
+
"parking_lot_core",
|
|
281
|
+
]
|
|
282
|
+
|
|
283
|
+
[[package]]
|
|
284
|
+
name = "data-encoding"
|
|
285
|
+
version = "2.11.1"
|
|
286
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
287
|
+
checksum = "4583a4551df46e2792f82ceeac45e850d2e2d5debba0b91f102385cda5b11f06"
|
|
288
|
+
|
|
289
|
+
[[package]]
|
|
290
|
+
name = "data-url"
|
|
291
|
+
version = "0.1.1"
|
|
292
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
293
|
+
checksum = "3a30bfce702bcfa94e906ef82421f2c0e61c076ad76030c16ee5d2e9a32fe193"
|
|
294
|
+
dependencies = [
|
|
295
|
+
"matches",
|
|
296
|
+
]
|
|
297
|
+
|
|
298
|
+
[[package]]
|
|
299
|
+
name = "dtoa"
|
|
300
|
+
version = "1.0.11"
|
|
301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
+
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
303
|
+
|
|
304
|
+
[[package]]
|
|
305
|
+
name = "dtoa-short"
|
|
306
|
+
version = "0.3.5"
|
|
307
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
308
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
309
|
+
dependencies = [
|
|
310
|
+
"dtoa",
|
|
311
|
+
]
|
|
312
|
+
|
|
313
|
+
[[package]]
|
|
314
|
+
name = "either"
|
|
315
|
+
version = "1.18.0"
|
|
316
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
+
checksum = "252afb9ae5eaa683babdc6a068b3f5726eb19e05070c731f9b2a23a7c3e8ed34"
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "equivalent"
|
|
321
|
+
version = "1.0.2"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
324
|
+
|
|
325
|
+
[[package]]
|
|
326
|
+
name = "errno"
|
|
327
|
+
version = "0.3.14"
|
|
328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
329
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
330
|
+
dependencies = [
|
|
331
|
+
"libc",
|
|
332
|
+
"windows-sys",
|
|
333
|
+
]
|
|
334
|
+
|
|
335
|
+
[[package]]
|
|
336
|
+
name = "fastrand"
|
|
337
|
+
version = "2.5.0"
|
|
338
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
339
|
+
checksum = "da7c62ceae207dd37ea5b845da6a0696c799f85e97da1ab5b7910be3c1c80223"
|
|
340
|
+
|
|
341
|
+
[[package]]
|
|
342
|
+
name = "funty"
|
|
343
|
+
version = "2.0.0"
|
|
344
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
345
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
346
|
+
|
|
347
|
+
[[package]]
|
|
348
|
+
name = "futures-core"
|
|
349
|
+
version = "0.3.34"
|
|
350
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
351
|
+
checksum = "92d699e522242e69e3003b94ecc1f960f3a5e015aa7c5d7486e65ad01dd94f5e"
|
|
352
|
+
|
|
353
|
+
[[package]]
|
|
354
|
+
name = "futures-task"
|
|
355
|
+
version = "0.3.34"
|
|
356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
357
|
+
checksum = "cd417de3d1d015fc3bfd2b1ea46dfc7bab72ef86f1cc7cc9c78e728b34a6d1fd"
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "futures-util"
|
|
361
|
+
version = "0.3.34"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "0d50a92467f8ba5dd6e3ee5d4bd04d73ab2e4e1c44474a0674821dfce14b79bc"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"futures-core",
|
|
366
|
+
"futures-task",
|
|
367
|
+
"pin-project-lite",
|
|
368
|
+
"slab",
|
|
369
|
+
]
|
|
370
|
+
|
|
371
|
+
[[package]]
|
|
372
|
+
name = "getrandom"
|
|
373
|
+
version = "0.2.17"
|
|
374
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
375
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
376
|
+
dependencies = [
|
|
377
|
+
"cfg-if",
|
|
378
|
+
"libc",
|
|
379
|
+
"wasi",
|
|
380
|
+
]
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "getrandom"
|
|
384
|
+
version = "0.3.4"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
387
|
+
dependencies = [
|
|
388
|
+
"cfg-if",
|
|
389
|
+
"libc",
|
|
390
|
+
"r-efi 5.3.0",
|
|
391
|
+
"wasip2",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "getrandom"
|
|
396
|
+
version = "0.4.3"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"cfg-if",
|
|
401
|
+
"libc",
|
|
402
|
+
"r-efi 6.0.0",
|
|
403
|
+
]
|
|
404
|
+
|
|
405
|
+
[[package]]
|
|
406
|
+
name = "hashbrown"
|
|
407
|
+
version = "0.12.3"
|
|
408
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
409
|
+
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
410
|
+
dependencies = [
|
|
411
|
+
"ahash 0.7.8",
|
|
412
|
+
]
|
|
413
|
+
|
|
414
|
+
[[package]]
|
|
415
|
+
name = "hashbrown"
|
|
416
|
+
version = "0.14.5"
|
|
417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
418
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
419
|
+
|
|
420
|
+
[[package]]
|
|
421
|
+
name = "hashbrown"
|
|
422
|
+
version = "0.17.1"
|
|
423
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
424
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
425
|
+
|
|
426
|
+
[[package]]
|
|
427
|
+
name = "heck"
|
|
428
|
+
version = "0.4.1"
|
|
429
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
430
|
+
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
431
|
+
|
|
432
|
+
[[package]]
|
|
433
|
+
name = "indexmap"
|
|
434
|
+
version = "2.14.0"
|
|
435
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
436
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
437
|
+
dependencies = [
|
|
438
|
+
"equivalent",
|
|
439
|
+
"hashbrown 0.17.1",
|
|
440
|
+
"serde",
|
|
441
|
+
"serde_core",
|
|
442
|
+
]
|
|
443
|
+
|
|
444
|
+
[[package]]
|
|
445
|
+
name = "is_terminal_polyfill"
|
|
446
|
+
version = "1.70.2"
|
|
447
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "itertools"
|
|
452
|
+
version = "0.10.5"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"either",
|
|
457
|
+
]
|
|
458
|
+
|
|
459
|
+
[[package]]
|
|
460
|
+
name = "itoa"
|
|
461
|
+
version = "1.0.18"
|
|
462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
463
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
464
|
+
|
|
465
|
+
[[package]]
|
|
466
|
+
name = "js-sys"
|
|
467
|
+
version = "0.3.104"
|
|
468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
469
|
+
checksum = "0e0c1080212aad755ea003d18543e8768dd432c48819efd73a7bf1e39b7a5a3a"
|
|
470
|
+
dependencies = [
|
|
471
|
+
"cfg-if",
|
|
472
|
+
"futures-util",
|
|
473
|
+
"wasm-bindgen",
|
|
474
|
+
]
|
|
475
|
+
|
|
476
|
+
[[package]]
|
|
477
|
+
name = "lazy_static"
|
|
478
|
+
version = "1.5.0"
|
|
479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
480
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "libc"
|
|
484
|
+
version = "0.2.189"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "3eaf3ede3fee6db1a4c2ee091bf8a8b4dccdc6d17f656fb07896ee72867612f2"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "lightningcss"
|
|
490
|
+
version = "1.0.0-alpha.72"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "d31b760f96e8fdfe1d0c295e4bf76c503d6f15d2d470d53bd8cd1f7aa8c7d934"
|
|
493
|
+
dependencies = [
|
|
494
|
+
"ahash 0.8.12",
|
|
495
|
+
"bitflags",
|
|
496
|
+
"const-str",
|
|
497
|
+
"cssparser",
|
|
498
|
+
"cssparser-color",
|
|
499
|
+
"dashmap",
|
|
500
|
+
"data-encoding",
|
|
501
|
+
"getrandom 0.3.4",
|
|
502
|
+
"indexmap",
|
|
503
|
+
"itertools",
|
|
504
|
+
"lazy_static",
|
|
505
|
+
"lightningcss-derive",
|
|
506
|
+
"parcel_selectors",
|
|
507
|
+
"parcel_sourcemap",
|
|
508
|
+
"pastey",
|
|
509
|
+
"pathdiff",
|
|
510
|
+
"rayon",
|
|
511
|
+
"serde",
|
|
512
|
+
"serde-content",
|
|
513
|
+
"smallvec",
|
|
514
|
+
]
|
|
515
|
+
|
|
516
|
+
[[package]]
|
|
517
|
+
name = "lightningcss-derive"
|
|
518
|
+
version = "1.0.0-alpha.43"
|
|
519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
520
|
+
checksum = "84c12744d1279367caed41739ef094c325d53fb0ffcd4f9b84a368796f870252"
|
|
521
|
+
dependencies = [
|
|
522
|
+
"convert_case",
|
|
523
|
+
"proc-macro2",
|
|
524
|
+
"quote",
|
|
525
|
+
"syn 1.0.109",
|
|
526
|
+
]
|
|
527
|
+
|
|
528
|
+
[[package]]
|
|
529
|
+
name = "lightningcss-ffi"
|
|
530
|
+
version = "0.1.0"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"cbindgen",
|
|
533
|
+
"lightningcss",
|
|
534
|
+
"serde",
|
|
535
|
+
"serde_json",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "linux-raw-sys"
|
|
540
|
+
version = "0.12.1"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
|
|
543
|
+
|
|
544
|
+
[[package]]
|
|
545
|
+
name = "lock_api"
|
|
546
|
+
version = "0.4.14"
|
|
547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
548
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
549
|
+
dependencies = [
|
|
550
|
+
"scopeguard",
|
|
551
|
+
]
|
|
552
|
+
|
|
553
|
+
[[package]]
|
|
554
|
+
name = "log"
|
|
555
|
+
version = "0.4.34"
|
|
556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
557
|
+
checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
|
|
558
|
+
|
|
559
|
+
[[package]]
|
|
560
|
+
name = "matches"
|
|
561
|
+
version = "0.1.10"
|
|
562
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
563
|
+
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
564
|
+
|
|
565
|
+
[[package]]
|
|
566
|
+
name = "memchr"
|
|
567
|
+
version = "2.8.3"
|
|
568
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
569
|
+
checksum = "cf8baf1c55e62ffcace7a9f06f4bd9cd3f0c4beb022d3b367256b91b87513d98"
|
|
570
|
+
|
|
571
|
+
[[package]]
|
|
572
|
+
name = "once_cell"
|
|
573
|
+
version = "1.21.4"
|
|
574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
575
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
576
|
+
|
|
577
|
+
[[package]]
|
|
578
|
+
name = "once_cell_polyfill"
|
|
579
|
+
version = "1.70.2"
|
|
580
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
581
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
582
|
+
|
|
583
|
+
[[package]]
|
|
584
|
+
name = "outref"
|
|
585
|
+
version = "0.1.0"
|
|
586
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
587
|
+
checksum = "7f222829ae9293e33a9f5e9f440c6760a3d450a64affe1846486b140db81c1f4"
|
|
588
|
+
|
|
589
|
+
[[package]]
|
|
590
|
+
name = "parcel_selectors"
|
|
591
|
+
version = "0.28.3"
|
|
592
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
593
|
+
checksum = "d05f71e01edca03d245ab0a9f7ce13a974ceb79baaae8faf2ba0b11de6b90913"
|
|
594
|
+
dependencies = [
|
|
595
|
+
"bitflags",
|
|
596
|
+
"cssparser",
|
|
597
|
+
"log",
|
|
598
|
+
"phf 0.11.3",
|
|
599
|
+
"phf_codegen",
|
|
600
|
+
"precomputed-hash",
|
|
601
|
+
"rustc-hash",
|
|
602
|
+
"smallvec",
|
|
603
|
+
]
|
|
604
|
+
|
|
605
|
+
[[package]]
|
|
606
|
+
name = "parcel_sourcemap"
|
|
607
|
+
version = "2.1.1"
|
|
608
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
609
|
+
checksum = "485b74d7218068b2b7c0e3ff12fbc61ae11d57cb5d8224f525bd304c6be05bbb"
|
|
610
|
+
dependencies = [
|
|
611
|
+
"base64-simd",
|
|
612
|
+
"data-url",
|
|
613
|
+
"rkyv",
|
|
614
|
+
"serde",
|
|
615
|
+
"serde_json",
|
|
616
|
+
"vlq",
|
|
617
|
+
]
|
|
618
|
+
|
|
619
|
+
[[package]]
|
|
620
|
+
name = "parking_lot_core"
|
|
621
|
+
version = "0.9.12"
|
|
622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
624
|
+
dependencies = [
|
|
625
|
+
"cfg-if",
|
|
626
|
+
"libc",
|
|
627
|
+
"redox_syscall",
|
|
628
|
+
"smallvec",
|
|
629
|
+
"windows-link",
|
|
630
|
+
]
|
|
631
|
+
|
|
632
|
+
[[package]]
|
|
633
|
+
name = "pastey"
|
|
634
|
+
version = "0.1.1"
|
|
635
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
636
|
+
checksum = "35fb2e5f958ec131621fdd531e9fc186ed768cbe395337403ae56c17a74c68ec"
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "pathdiff"
|
|
640
|
+
version = "0.2.3"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "phf"
|
|
646
|
+
version = "0.11.3"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"phf_shared 0.11.3",
|
|
651
|
+
]
|
|
652
|
+
|
|
653
|
+
[[package]]
|
|
654
|
+
name = "phf"
|
|
655
|
+
version = "0.13.1"
|
|
656
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
657
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
658
|
+
dependencies = [
|
|
659
|
+
"phf_macros",
|
|
660
|
+
"phf_shared 0.13.1",
|
|
661
|
+
"serde",
|
|
662
|
+
]
|
|
663
|
+
|
|
664
|
+
[[package]]
|
|
665
|
+
name = "phf_codegen"
|
|
666
|
+
version = "0.11.3"
|
|
667
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
668
|
+
checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
|
|
669
|
+
dependencies = [
|
|
670
|
+
"phf_generator 0.11.3",
|
|
671
|
+
"phf_shared 0.11.3",
|
|
672
|
+
]
|
|
673
|
+
|
|
674
|
+
[[package]]
|
|
675
|
+
name = "phf_generator"
|
|
676
|
+
version = "0.11.3"
|
|
677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
678
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
679
|
+
dependencies = [
|
|
680
|
+
"phf_shared 0.11.3",
|
|
681
|
+
"rand",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "phf_generator"
|
|
686
|
+
version = "0.13.1"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"fastrand",
|
|
691
|
+
"phf_shared 0.13.1",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "phf_macros"
|
|
696
|
+
version = "0.13.1"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"phf_generator 0.13.1",
|
|
701
|
+
"phf_shared 0.13.1",
|
|
702
|
+
"proc-macro2",
|
|
703
|
+
"quote",
|
|
704
|
+
"syn 2.0.119",
|
|
705
|
+
]
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "phf_shared"
|
|
709
|
+
version = "0.11.3"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
712
|
+
dependencies = [
|
|
713
|
+
"siphasher",
|
|
714
|
+
]
|
|
715
|
+
|
|
716
|
+
[[package]]
|
|
717
|
+
name = "phf_shared"
|
|
718
|
+
version = "0.13.1"
|
|
719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
720
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
721
|
+
dependencies = [
|
|
722
|
+
"siphasher",
|
|
723
|
+
]
|
|
724
|
+
|
|
725
|
+
[[package]]
|
|
726
|
+
name = "pin-project-lite"
|
|
727
|
+
version = "0.2.17"
|
|
728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
729
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
730
|
+
|
|
731
|
+
[[package]]
|
|
732
|
+
name = "precomputed-hash"
|
|
733
|
+
version = "0.1.1"
|
|
734
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
735
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
736
|
+
|
|
737
|
+
[[package]]
|
|
738
|
+
name = "proc-macro2"
|
|
739
|
+
version = "1.0.107"
|
|
740
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
741
|
+
checksum = "985e7ec9bb745e6ce6535b544d84d6cd6f7ad8bd711c398938ae983b91a766d9"
|
|
742
|
+
dependencies = [
|
|
743
|
+
"unicode-ident",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "ptr_meta"
|
|
748
|
+
version = "0.1.4"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "0738ccf7ea06b608c10564b31debd4f5bc5e197fc8bfe088f68ae5ce81e7a4f1"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"ptr_meta_derive",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "ptr_meta_derive"
|
|
757
|
+
version = "0.1.4"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"proc-macro2",
|
|
762
|
+
"quote",
|
|
763
|
+
"syn 1.0.109",
|
|
764
|
+
]
|
|
765
|
+
|
|
766
|
+
[[package]]
|
|
767
|
+
name = "quote"
|
|
768
|
+
version = "1.0.47"
|
|
769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
770
|
+
checksum = "1fbf4db142a473a8d80c26bbf18454ed458bf8d26c8219c331daecfdbd079001"
|
|
771
|
+
dependencies = [
|
|
772
|
+
"proc-macro2",
|
|
773
|
+
]
|
|
774
|
+
|
|
775
|
+
[[package]]
|
|
776
|
+
name = "r-efi"
|
|
777
|
+
version = "5.3.0"
|
|
778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
779
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
780
|
+
|
|
781
|
+
[[package]]
|
|
782
|
+
name = "r-efi"
|
|
783
|
+
version = "6.0.0"
|
|
784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
785
|
+
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "radium"
|
|
789
|
+
version = "0.7.0"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "rand"
|
|
795
|
+
version = "0.8.7"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "22f6172bdec972074665ed81ed53b71da00bfc44b65a753cfde883ec4c702a1a"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"rand_core",
|
|
800
|
+
]
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "rand_core"
|
|
804
|
+
version = "0.6.4"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "rayon"
|
|
810
|
+
version = "1.12.0"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"either",
|
|
815
|
+
"rayon-core",
|
|
816
|
+
]
|
|
817
|
+
|
|
818
|
+
[[package]]
|
|
819
|
+
name = "rayon-core"
|
|
820
|
+
version = "1.13.0"
|
|
821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
822
|
+
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
823
|
+
dependencies = [
|
|
824
|
+
"crossbeam-deque",
|
|
825
|
+
"crossbeam-utils",
|
|
826
|
+
]
|
|
827
|
+
|
|
828
|
+
[[package]]
|
|
829
|
+
name = "redox_syscall"
|
|
830
|
+
version = "0.5.18"
|
|
831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
832
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
833
|
+
dependencies = [
|
|
834
|
+
"bitflags",
|
|
835
|
+
]
|
|
836
|
+
|
|
837
|
+
[[package]]
|
|
838
|
+
name = "rend"
|
|
839
|
+
version = "0.4.2"
|
|
840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
841
|
+
checksum = "71fe3824f5629716b1589be05dacd749f6aa084c87e00e016714a8cdfccc997c"
|
|
842
|
+
dependencies = [
|
|
843
|
+
"bytecheck",
|
|
844
|
+
]
|
|
845
|
+
|
|
846
|
+
[[package]]
|
|
847
|
+
name = "rkyv"
|
|
848
|
+
version = "0.7.46"
|
|
849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
850
|
+
checksum = "2297bf9c81a3f0dc96bc9521370b88f054168c29826a75e89c55ff196e7ed6a1"
|
|
851
|
+
dependencies = [
|
|
852
|
+
"bitvec",
|
|
853
|
+
"bytecheck",
|
|
854
|
+
"bytes",
|
|
855
|
+
"hashbrown 0.12.3",
|
|
856
|
+
"ptr_meta",
|
|
857
|
+
"rend",
|
|
858
|
+
"rkyv_derive",
|
|
859
|
+
"seahash",
|
|
860
|
+
"tinyvec",
|
|
861
|
+
"uuid",
|
|
862
|
+
]
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "rkyv_derive"
|
|
866
|
+
version = "0.7.46"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "84d7b42d4b8d06048d3ac8db0eb31bcb942cbeb709f0b5f2b2ebde398d3038f5"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"proc-macro2",
|
|
871
|
+
"quote",
|
|
872
|
+
"syn 1.0.109",
|
|
873
|
+
]
|
|
874
|
+
|
|
875
|
+
[[package]]
|
|
876
|
+
name = "rustc-hash"
|
|
877
|
+
version = "2.1.3"
|
|
878
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
879
|
+
checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
|
|
880
|
+
|
|
881
|
+
[[package]]
|
|
882
|
+
name = "rustix"
|
|
883
|
+
version = "1.1.4"
|
|
884
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
885
|
+
checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
|
|
886
|
+
dependencies = [
|
|
887
|
+
"bitflags",
|
|
888
|
+
"errno",
|
|
889
|
+
"libc",
|
|
890
|
+
"linux-raw-sys",
|
|
891
|
+
"windows-sys",
|
|
892
|
+
]
|
|
893
|
+
|
|
894
|
+
[[package]]
|
|
895
|
+
name = "rustversion"
|
|
896
|
+
version = "1.0.23"
|
|
897
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
898
|
+
checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
|
|
899
|
+
|
|
900
|
+
[[package]]
|
|
901
|
+
name = "scopeguard"
|
|
902
|
+
version = "1.2.0"
|
|
903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
904
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "seahash"
|
|
908
|
+
version = "4.1.0"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "serde"
|
|
914
|
+
version = "1.0.229"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "4148590afebada386688f18773da617792bf2ef03ffc1e4cbd2b1d45b023e0ba"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"serde_core",
|
|
919
|
+
"serde_derive",
|
|
920
|
+
]
|
|
921
|
+
|
|
922
|
+
[[package]]
|
|
923
|
+
name = "serde-content"
|
|
924
|
+
version = "0.1.2"
|
|
925
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
926
|
+
checksum = "3753ca04f350fa92d00b6146a3555e63c55388c9ef2e11e09bce2ff1c0b509c6"
|
|
927
|
+
dependencies = [
|
|
928
|
+
"serde",
|
|
929
|
+
]
|
|
930
|
+
|
|
931
|
+
[[package]]
|
|
932
|
+
name = "serde_core"
|
|
933
|
+
version = "1.0.229"
|
|
934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
935
|
+
checksum = "67dca2c9c51e58a4791a4b1ed58308b39c64224d349a935ab5039aa360942a48"
|
|
936
|
+
dependencies = [
|
|
937
|
+
"serde_derive",
|
|
938
|
+
]
|
|
939
|
+
|
|
940
|
+
[[package]]
|
|
941
|
+
name = "serde_derive"
|
|
942
|
+
version = "1.0.229"
|
|
943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
944
|
+
checksum = "e7a5d71263a5a7d47b41f6b3f06ba276f10cc18b0931f1799f710578e2309348"
|
|
945
|
+
dependencies = [
|
|
946
|
+
"proc-macro2",
|
|
947
|
+
"quote",
|
|
948
|
+
"syn 3.0.4",
|
|
949
|
+
]
|
|
950
|
+
|
|
951
|
+
[[package]]
|
|
952
|
+
name = "serde_json"
|
|
953
|
+
version = "1.0.151"
|
|
954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
+
checksum = "c841b55ecdae098c80dcae9cf767f6f8a0c2cdb3416bbef72181df4d0fe73f14"
|
|
956
|
+
dependencies = [
|
|
957
|
+
"itoa",
|
|
958
|
+
"memchr",
|
|
959
|
+
"serde",
|
|
960
|
+
"serde_core",
|
|
961
|
+
"zmij",
|
|
962
|
+
]
|
|
963
|
+
|
|
964
|
+
[[package]]
|
|
965
|
+
name = "serde_spanned"
|
|
966
|
+
version = "0.6.9"
|
|
967
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
968
|
+
checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
|
|
969
|
+
dependencies = [
|
|
970
|
+
"serde",
|
|
971
|
+
]
|
|
972
|
+
|
|
973
|
+
[[package]]
|
|
974
|
+
name = "simd-abstraction"
|
|
975
|
+
version = "0.7.1"
|
|
976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
977
|
+
checksum = "9cadb29c57caadc51ff8346233b5cec1d240b68ce55cf1afc764818791876987"
|
|
978
|
+
dependencies = [
|
|
979
|
+
"outref",
|
|
980
|
+
]
|
|
981
|
+
|
|
982
|
+
[[package]]
|
|
983
|
+
name = "simdutf8"
|
|
984
|
+
version = "0.1.5"
|
|
985
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
986
|
+
checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
|
|
987
|
+
|
|
988
|
+
[[package]]
|
|
989
|
+
name = "siphasher"
|
|
990
|
+
version = "1.0.3"
|
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
992
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
993
|
+
|
|
994
|
+
[[package]]
|
|
995
|
+
name = "slab"
|
|
996
|
+
version = "0.4.12"
|
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
998
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
999
|
+
|
|
1000
|
+
[[package]]
|
|
1001
|
+
name = "smallvec"
|
|
1002
|
+
version = "1.15.2"
|
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1004
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1005
|
+
|
|
1006
|
+
[[package]]
|
|
1007
|
+
name = "strsim"
|
|
1008
|
+
version = "0.11.1"
|
|
1009
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1010
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1011
|
+
|
|
1012
|
+
[[package]]
|
|
1013
|
+
name = "syn"
|
|
1014
|
+
version = "1.0.109"
|
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1016
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1017
|
+
dependencies = [
|
|
1018
|
+
"proc-macro2",
|
|
1019
|
+
"quote",
|
|
1020
|
+
"unicode-ident",
|
|
1021
|
+
]
|
|
1022
|
+
|
|
1023
|
+
[[package]]
|
|
1024
|
+
name = "syn"
|
|
1025
|
+
version = "2.0.119"
|
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1027
|
+
checksum = "872831b642d1a07999a962a351ed35b955ea2cfc8f3862091e2a240a84f17297"
|
|
1028
|
+
dependencies = [
|
|
1029
|
+
"proc-macro2",
|
|
1030
|
+
"quote",
|
|
1031
|
+
"unicode-ident",
|
|
1032
|
+
]
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "syn"
|
|
1036
|
+
version = "3.0.4"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "e6275cddf4610d1775e6d1fe9469b2e77d0f39fd98fb7450901b821e0c53649f"
|
|
1039
|
+
dependencies = [
|
|
1040
|
+
"proc-macro2",
|
|
1041
|
+
"quote",
|
|
1042
|
+
"unicode-ident",
|
|
1043
|
+
]
|
|
1044
|
+
|
|
1045
|
+
[[package]]
|
|
1046
|
+
name = "tap"
|
|
1047
|
+
version = "1.0.1"
|
|
1048
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1049
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "tempfile"
|
|
1053
|
+
version = "3.27.0"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
|
|
1056
|
+
dependencies = [
|
|
1057
|
+
"fastrand",
|
|
1058
|
+
"getrandom 0.4.3",
|
|
1059
|
+
"once_cell",
|
|
1060
|
+
"rustix",
|
|
1061
|
+
"windows-sys",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "tinyvec"
|
|
1066
|
+
version = "1.12.0"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "bb4ebadaa0af04fab11ae01eb5f9fdb5f9c5b875506e210e71c07873528baa7f"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"tinyvec_macros",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "tinyvec_macros"
|
|
1075
|
+
version = "0.1.1"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1078
|
+
|
|
1079
|
+
[[package]]
|
|
1080
|
+
name = "toml"
|
|
1081
|
+
version = "0.8.23"
|
|
1082
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1083
|
+
checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
|
|
1084
|
+
dependencies = [
|
|
1085
|
+
"serde",
|
|
1086
|
+
"serde_spanned",
|
|
1087
|
+
"toml_datetime",
|
|
1088
|
+
"toml_edit",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "toml_datetime"
|
|
1093
|
+
version = "0.6.11"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
|
|
1096
|
+
dependencies = [
|
|
1097
|
+
"serde",
|
|
1098
|
+
]
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "toml_edit"
|
|
1102
|
+
version = "0.22.27"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
|
|
1105
|
+
dependencies = [
|
|
1106
|
+
"indexmap",
|
|
1107
|
+
"serde",
|
|
1108
|
+
"serde_spanned",
|
|
1109
|
+
"toml_datetime",
|
|
1110
|
+
"toml_write",
|
|
1111
|
+
"winnow",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "toml_write"
|
|
1116
|
+
version = "0.1.2"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
|
|
1119
|
+
|
|
1120
|
+
[[package]]
|
|
1121
|
+
name = "unicode-ident"
|
|
1122
|
+
version = "1.0.24"
|
|
1123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1124
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1125
|
+
|
|
1126
|
+
[[package]]
|
|
1127
|
+
name = "unicode-segmentation"
|
|
1128
|
+
version = "1.13.3"
|
|
1129
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1130
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "utf8parse"
|
|
1134
|
+
version = "0.2.2"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1137
|
+
|
|
1138
|
+
[[package]]
|
|
1139
|
+
name = "uuid"
|
|
1140
|
+
version = "1.25.0"
|
|
1141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1142
|
+
checksum = "f053576934f05a761a402421fbbe3d425d9366f75f978806a037b3ca481abecc"
|
|
1143
|
+
dependencies = [
|
|
1144
|
+
"js-sys",
|
|
1145
|
+
"wasm-bindgen",
|
|
1146
|
+
]
|
|
1147
|
+
|
|
1148
|
+
[[package]]
|
|
1149
|
+
name = "version_check"
|
|
1150
|
+
version = "0.9.5"
|
|
1151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1152
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1153
|
+
|
|
1154
|
+
[[package]]
|
|
1155
|
+
name = "vlq"
|
|
1156
|
+
version = "0.5.1"
|
|
1157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1158
|
+
checksum = "65dd7eed29412da847b0f78bcec0ac98588165988a8cfe41d4ea1d429f8ccfff"
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "wasi"
|
|
1162
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1165
|
+
|
|
1166
|
+
[[package]]
|
|
1167
|
+
name = "wasip2"
|
|
1168
|
+
version = "1.0.4+wasi-0.2.12"
|
|
1169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1170
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
1171
|
+
dependencies = [
|
|
1172
|
+
"wit-bindgen",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "wasm-bindgen"
|
|
1177
|
+
version = "0.2.127"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "1b70935747edd64d89de3efa29d73789b806c15798f8e7dca4d8ac356b50ce70"
|
|
1180
|
+
dependencies = [
|
|
1181
|
+
"cfg-if",
|
|
1182
|
+
"once_cell",
|
|
1183
|
+
"rustversion",
|
|
1184
|
+
"wasm-bindgen-macro",
|
|
1185
|
+
"wasm-bindgen-shared",
|
|
1186
|
+
]
|
|
1187
|
+
|
|
1188
|
+
[[package]]
|
|
1189
|
+
name = "wasm-bindgen-macro"
|
|
1190
|
+
version = "0.2.127"
|
|
1191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1192
|
+
checksum = "77775f8f3f7217702089053b94958f8f54061a3f663417df76e19cbdcca29bc1"
|
|
1193
|
+
dependencies = [
|
|
1194
|
+
"quote",
|
|
1195
|
+
"wasm-bindgen-macro-support",
|
|
1196
|
+
]
|
|
1197
|
+
|
|
1198
|
+
[[package]]
|
|
1199
|
+
name = "wasm-bindgen-macro-support"
|
|
1200
|
+
version = "0.2.127"
|
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1202
|
+
checksum = "e11d33f857dc2fb11b8bc75aee111aa9cbeb12cd9f25efd3d4c2a3dd4e235284"
|
|
1203
|
+
dependencies = [
|
|
1204
|
+
"bumpalo",
|
|
1205
|
+
"proc-macro2",
|
|
1206
|
+
"quote",
|
|
1207
|
+
"syn 2.0.119",
|
|
1208
|
+
"wasm-bindgen-shared",
|
|
1209
|
+
]
|
|
1210
|
+
|
|
1211
|
+
[[package]]
|
|
1212
|
+
name = "wasm-bindgen-shared"
|
|
1213
|
+
version = "0.2.127"
|
|
1214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1215
|
+
checksum = "7ef64dbcc55df09c7e5a46182d181c2cfa3e925f3da937ea764728b4bbb9dcbf"
|
|
1216
|
+
dependencies = [
|
|
1217
|
+
"unicode-ident",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "windows-link"
|
|
1222
|
+
version = "0.2.1"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1225
|
+
|
|
1226
|
+
[[package]]
|
|
1227
|
+
name = "windows-sys"
|
|
1228
|
+
version = "0.61.2"
|
|
1229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1230
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1231
|
+
dependencies = [
|
|
1232
|
+
"windows-link",
|
|
1233
|
+
]
|
|
1234
|
+
|
|
1235
|
+
[[package]]
|
|
1236
|
+
name = "winnow"
|
|
1237
|
+
version = "0.7.15"
|
|
1238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1239
|
+
checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
|
|
1240
|
+
dependencies = [
|
|
1241
|
+
"memchr",
|
|
1242
|
+
]
|
|
1243
|
+
|
|
1244
|
+
[[package]]
|
|
1245
|
+
name = "wit-bindgen"
|
|
1246
|
+
version = "0.57.1"
|
|
1247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1248
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
1249
|
+
|
|
1250
|
+
[[package]]
|
|
1251
|
+
name = "wyz"
|
|
1252
|
+
version = "0.5.1"
|
|
1253
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1254
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
1255
|
+
dependencies = [
|
|
1256
|
+
"tap",
|
|
1257
|
+
]
|
|
1258
|
+
|
|
1259
|
+
[[package]]
|
|
1260
|
+
name = "zerocopy"
|
|
1261
|
+
version = "0.8.56"
|
|
1262
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1263
|
+
checksum = "556764e583adb45a9f8d413c2a147fa7e8d821e48e12b14fd560b607998b75eb"
|
|
1264
|
+
dependencies = [
|
|
1265
|
+
"zerocopy-derive",
|
|
1266
|
+
]
|
|
1267
|
+
|
|
1268
|
+
[[package]]
|
|
1269
|
+
name = "zerocopy-derive"
|
|
1270
|
+
version = "0.8.56"
|
|
1271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1272
|
+
checksum = "f2ab42fc20575779bd240faa45f94a74256f755c0fa9e89f0ede20d91d0cdfc1"
|
|
1273
|
+
dependencies = [
|
|
1274
|
+
"proc-macro2",
|
|
1275
|
+
"quote",
|
|
1276
|
+
"syn 2.0.119",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "zmij"
|
|
1281
|
+
version = "1.0.23"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "29666d0abbfad1e3dc4dcf6144730dd3a3ab225bbbdac83319345b1b44ccfc1b"
|