@tarojs/helper 3.6.9-alpha.7 → 3.6.9-alpha.8
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.
- package/dist/esbuild/index.js +1 -0
- package/dist/esbuild/index.js.map +1 -1
- package/dist/swcRegister.d.ts +0 -6
- package/dist/swcRegister.js +0 -15
- package/dist/swcRegister.js.map +1 -1
- package/dist/utils.d.ts +5 -1
- package/dist/utils.js +5 -1
- package/dist/utils.js.map +1 -1
- package/package.json +4 -4
- package/swc/plugin-define-config/Cargo.lock +492 -340
- package/swc/plugin-define-config/Cargo.toml +3 -11
- package/swc/plugin-define-config/src/lib.rs +126 -120
- package/swc/plugin-define-config/target/wasm32-wasi/release/swc_plugin_define_config.wasm +0 -0
|
@@ -14,9 +14,9 @@ dependencies = [
|
|
|
14
14
|
|
|
15
15
|
[[package]]
|
|
16
16
|
name = "addr2line"
|
|
17
|
-
version = "0.
|
|
17
|
+
version = "0.20.0"
|
|
18
18
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
-
checksum = "
|
|
19
|
+
checksum = "f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3"
|
|
20
20
|
dependencies = [
|
|
21
21
|
"gimli",
|
|
22
22
|
]
|
|
@@ -38,11 +38,23 @@ dependencies = [
|
|
|
38
38
|
"version_check",
|
|
39
39
|
]
|
|
40
40
|
|
|
41
|
+
[[package]]
|
|
42
|
+
name = "ahash"
|
|
43
|
+
version = "0.8.3"
|
|
44
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
+
checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
|
|
46
|
+
dependencies = [
|
|
47
|
+
"cfg-if",
|
|
48
|
+
"getrandom",
|
|
49
|
+
"once_cell",
|
|
50
|
+
"version_check",
|
|
51
|
+
]
|
|
52
|
+
|
|
41
53
|
[[package]]
|
|
42
54
|
name = "aho-corasick"
|
|
43
|
-
version = "0.
|
|
55
|
+
version = "1.0.2"
|
|
44
56
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
57
|
+
checksum = "43f6cb1bf222025340178f382c426f13757b2960e89779dfcb319c32542a5a41"
|
|
46
58
|
dependencies = [
|
|
47
59
|
"memchr",
|
|
48
60
|
]
|
|
@@ -58,22 +70,21 @@ dependencies = [
|
|
|
58
70
|
|
|
59
71
|
[[package]]
|
|
60
72
|
name = "anyhow"
|
|
61
|
-
version = "1.0.
|
|
73
|
+
version = "1.0.71"
|
|
62
74
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
-
checksum = "
|
|
75
|
+
checksum = "9c7d0618f0e0b7e8ff11427422b64564d5fb0be1940354bfe2e0529b18a9d9b8"
|
|
64
76
|
|
|
65
77
|
[[package]]
|
|
66
78
|
name = "ast_node"
|
|
67
|
-
version = "0.
|
|
79
|
+
version = "0.9.5"
|
|
68
80
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
81
|
+
checksum = "c09c69dffe06d222d072c878c3afe86eee2179806f20503faec97250268b4c24"
|
|
70
82
|
dependencies = [
|
|
71
|
-
"darling",
|
|
72
83
|
"pmutil",
|
|
73
84
|
"proc-macro2",
|
|
74
85
|
"quote",
|
|
75
86
|
"swc_macros_common",
|
|
76
|
-
"syn",
|
|
87
|
+
"syn 2.0.23",
|
|
77
88
|
]
|
|
78
89
|
|
|
79
90
|
[[package]]
|
|
@@ -82,7 +93,7 @@ version = "0.2.14"
|
|
|
82
93
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
94
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
84
95
|
dependencies = [
|
|
85
|
-
"hermit-abi",
|
|
96
|
+
"hermit-abi 0.1.19",
|
|
86
97
|
"libc",
|
|
87
98
|
"winapi",
|
|
88
99
|
]
|
|
@@ -95,9 +106,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
95
106
|
|
|
96
107
|
[[package]]
|
|
97
108
|
name = "backtrace"
|
|
98
|
-
version = "0.3.
|
|
109
|
+
version = "0.3.68"
|
|
99
110
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "
|
|
111
|
+
checksum = "4319208da049c43661739c5fade2ba182f09d1dc2299b32298d3a31692b17e12"
|
|
101
112
|
dependencies = [
|
|
102
113
|
"addr2line",
|
|
103
114
|
"cc",
|
|
@@ -116,9 +127,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
|
116
127
|
|
|
117
128
|
[[package]]
|
|
118
129
|
name = "better_scoped_tls"
|
|
119
|
-
version = "0.1.
|
|
130
|
+
version = "0.1.1"
|
|
120
131
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
-
checksum = "
|
|
132
|
+
checksum = "794edcc9b3fb07bb4aecaa11f093fd45663b4feadb782d68303a2268bc2701de"
|
|
122
133
|
dependencies = [
|
|
123
134
|
"scoped-tls",
|
|
124
135
|
]
|
|
@@ -129,41 +140,92 @@ version = "1.3.2"
|
|
|
129
140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
141
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
131
142
|
|
|
143
|
+
[[package]]
|
|
144
|
+
name = "bitflags"
|
|
145
|
+
version = "2.3.3"
|
|
146
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
147
|
+
checksum = "630be753d4e58660abd17930c71b647fe46c27ea6b63cc59e1e3851406972e42"
|
|
148
|
+
|
|
149
|
+
[[package]]
|
|
150
|
+
name = "bitvec"
|
|
151
|
+
version = "1.0.1"
|
|
152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
153
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
154
|
+
dependencies = [
|
|
155
|
+
"funty",
|
|
156
|
+
"radium",
|
|
157
|
+
"tap",
|
|
158
|
+
"wyz",
|
|
159
|
+
]
|
|
160
|
+
|
|
132
161
|
[[package]]
|
|
133
162
|
name = "block-buffer"
|
|
134
|
-
version = "0.10.
|
|
163
|
+
version = "0.10.4"
|
|
135
164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
-
checksum = "
|
|
165
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
137
166
|
dependencies = [
|
|
138
167
|
"generic-array",
|
|
139
168
|
]
|
|
140
169
|
|
|
141
170
|
[[package]]
|
|
142
171
|
name = "bytecheck"
|
|
143
|
-
version = "0.6.
|
|
172
|
+
version = "0.6.11"
|
|
144
173
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
-
checksum = "
|
|
174
|
+
checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
|
|
146
175
|
dependencies = [
|
|
147
176
|
"bytecheck_derive",
|
|
148
177
|
"ptr_meta",
|
|
178
|
+
"simdutf8",
|
|
149
179
|
]
|
|
150
180
|
|
|
151
181
|
[[package]]
|
|
152
182
|
name = "bytecheck_derive"
|
|
153
|
-
version = "0.6.
|
|
183
|
+
version = "0.6.11"
|
|
154
184
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
-
checksum = "
|
|
185
|
+
checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
|
|
156
186
|
dependencies = [
|
|
157
187
|
"proc-macro2",
|
|
158
188
|
"quote",
|
|
159
|
-
"syn",
|
|
189
|
+
"syn 1.0.109",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "camino"
|
|
194
|
+
version = "1.1.4"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "c530edf18f37068ac2d977409ed5cd50d53d73bc653c7647b48eb78976ac9ae2"
|
|
197
|
+
dependencies = [
|
|
198
|
+
"serde",
|
|
199
|
+
]
|
|
200
|
+
|
|
201
|
+
[[package]]
|
|
202
|
+
name = "cargo-platform"
|
|
203
|
+
version = "0.1.2"
|
|
204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
205
|
+
checksum = "cbdb825da8a5df079a43676dbe042702f1707b1109f713a01420fbb4cc71fa27"
|
|
206
|
+
dependencies = [
|
|
207
|
+
"serde",
|
|
208
|
+
]
|
|
209
|
+
|
|
210
|
+
[[package]]
|
|
211
|
+
name = "cargo_metadata"
|
|
212
|
+
version = "0.15.4"
|
|
213
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
214
|
+
checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
|
|
215
|
+
dependencies = [
|
|
216
|
+
"camino",
|
|
217
|
+
"cargo-platform",
|
|
218
|
+
"semver 1.0.17",
|
|
219
|
+
"serde",
|
|
220
|
+
"serde_json",
|
|
221
|
+
"thiserror",
|
|
160
222
|
]
|
|
161
223
|
|
|
162
224
|
[[package]]
|
|
163
225
|
name = "cc"
|
|
164
|
-
version = "1.0.
|
|
226
|
+
version = "1.0.79"
|
|
165
227
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
228
|
+
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
|
167
229
|
|
|
168
230
|
[[package]]
|
|
169
231
|
name = "cfg-if"
|
|
@@ -173,9 +235,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
173
235
|
|
|
174
236
|
[[package]]
|
|
175
237
|
name = "cpufeatures"
|
|
176
|
-
version = "0.2.
|
|
238
|
+
version = "0.2.8"
|
|
177
239
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
-
checksum = "
|
|
240
|
+
checksum = "03e69e28e9f7f77debdedbaafa2866e1de9ba56df55a8bd7cfc724c25a09987c"
|
|
179
241
|
dependencies = [
|
|
180
242
|
"libc",
|
|
181
243
|
]
|
|
@@ -197,43 +259,14 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
197
259
|
checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096"
|
|
198
260
|
dependencies = [
|
|
199
261
|
"quote",
|
|
200
|
-
"syn",
|
|
262
|
+
"syn 1.0.109",
|
|
201
263
|
]
|
|
202
264
|
|
|
203
265
|
[[package]]
|
|
204
|
-
name = "
|
|
205
|
-
version = "
|
|
266
|
+
name = "data-encoding"
|
|
267
|
+
version = "2.4.0"
|
|
206
268
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
-
checksum = "
|
|
208
|
-
dependencies = [
|
|
209
|
-
"darling_core",
|
|
210
|
-
"darling_macro",
|
|
211
|
-
]
|
|
212
|
-
|
|
213
|
-
[[package]]
|
|
214
|
-
name = "darling_core"
|
|
215
|
-
version = "0.13.4"
|
|
216
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
217
|
-
checksum = "859d65a907b6852c9361e3185c862aae7fafd2887876799fa55f5f99dc40d610"
|
|
218
|
-
dependencies = [
|
|
219
|
-
"fnv",
|
|
220
|
-
"ident_case",
|
|
221
|
-
"proc-macro2",
|
|
222
|
-
"quote",
|
|
223
|
-
"strsim",
|
|
224
|
-
"syn",
|
|
225
|
-
]
|
|
226
|
-
|
|
227
|
-
[[package]]
|
|
228
|
-
name = "darling_macro"
|
|
229
|
-
version = "0.13.4"
|
|
230
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
-
checksum = "9c972679f83bdf9c42bd905396b6c3588a843a17f0f16dfcfa3e2c5d57441835"
|
|
232
|
-
dependencies = [
|
|
233
|
-
"darling_core",
|
|
234
|
-
"quote",
|
|
235
|
-
"syn",
|
|
236
|
-
]
|
|
269
|
+
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
|
|
237
270
|
|
|
238
271
|
[[package]]
|
|
239
272
|
name = "diff"
|
|
@@ -249,9 +282,9 @@ checksum = "524cbf6897b527295dff137cec09ecf3a05f4fddffd7dfcd1585403449e74198"
|
|
|
249
282
|
|
|
250
283
|
[[package]]
|
|
251
284
|
name = "digest"
|
|
252
|
-
version = "0.10.
|
|
285
|
+
version = "0.10.7"
|
|
253
286
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
254
|
-
checksum = "
|
|
287
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
255
288
|
dependencies = [
|
|
256
289
|
"block-buffer",
|
|
257
290
|
"crypto-common",
|
|
@@ -259,83 +292,92 @@ dependencies = [
|
|
|
259
292
|
|
|
260
293
|
[[package]]
|
|
261
294
|
name = "either"
|
|
262
|
-
version = "1.8.
|
|
295
|
+
version = "1.8.1"
|
|
263
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
-
checksum = "
|
|
297
|
+
checksum = "7fcaabb2fef8c910e7f4c7ce9f67a1283a1715879a7c230ca9d6d1ae31f16d91"
|
|
265
298
|
|
|
266
299
|
[[package]]
|
|
267
300
|
name = "enum-iterator"
|
|
268
|
-
version = "1.1
|
|
301
|
+
version = "1.4.1"
|
|
269
302
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
270
|
-
checksum = "
|
|
303
|
+
checksum = "7add3873b5dd076766ee79c8e406ad1a472c385476b9e38849f8eec24f1be689"
|
|
271
304
|
dependencies = [
|
|
272
305
|
"enum-iterator-derive",
|
|
273
306
|
]
|
|
274
307
|
|
|
275
308
|
[[package]]
|
|
276
309
|
name = "enum-iterator-derive"
|
|
277
|
-
version = "1.1
|
|
310
|
+
version = "1.2.1"
|
|
278
311
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
279
|
-
checksum = "
|
|
312
|
+
checksum = "eecf8589574ce9b895052fa12d69af7a233f99e6107f5cb8dd1044f2a17bfdcb"
|
|
280
313
|
dependencies = [
|
|
281
314
|
"proc-macro2",
|
|
282
315
|
"quote",
|
|
283
|
-
"syn",
|
|
316
|
+
"syn 2.0.23",
|
|
284
317
|
]
|
|
285
318
|
|
|
286
319
|
[[package]]
|
|
287
|
-
name = "
|
|
288
|
-
version = "0.
|
|
320
|
+
name = "errno"
|
|
321
|
+
version = "0.3.1"
|
|
289
322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
-
checksum = "
|
|
323
|
+
checksum = "4bcfec3a70f97c962c307b2d2c56e358cf1d00b558d74262b5f929ee8cc7e73a"
|
|
291
324
|
dependencies = [
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"
|
|
295
|
-
"syn",
|
|
325
|
+
"errno-dragonfly",
|
|
326
|
+
"libc",
|
|
327
|
+
"windows-sys",
|
|
296
328
|
]
|
|
297
329
|
|
|
298
330
|
[[package]]
|
|
299
|
-
name = "
|
|
300
|
-
version = "1.
|
|
331
|
+
name = "errno-dragonfly"
|
|
332
|
+
version = "0.1.2"
|
|
301
333
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
-
checksum = "
|
|
334
|
+
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
303
335
|
dependencies = [
|
|
304
|
-
"
|
|
336
|
+
"cc",
|
|
337
|
+
"libc",
|
|
305
338
|
]
|
|
306
339
|
|
|
307
340
|
[[package]]
|
|
308
|
-
name = "
|
|
309
|
-
version = "1.0
|
|
341
|
+
name = "fastrand"
|
|
342
|
+
version = "1.9.0"
|
|
310
343
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
-
checksum = "
|
|
344
|
+
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
|
345
|
+
dependencies = [
|
|
346
|
+
"instant",
|
|
347
|
+
]
|
|
312
348
|
|
|
313
349
|
[[package]]
|
|
314
350
|
name = "form_urlencoded"
|
|
315
|
-
version = "1.
|
|
351
|
+
version = "1.2.0"
|
|
316
352
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
-
checksum = "
|
|
353
|
+
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
|
|
318
354
|
dependencies = [
|
|
319
355
|
"percent-encoding",
|
|
320
356
|
]
|
|
321
357
|
|
|
322
358
|
[[package]]
|
|
323
359
|
name = "from_variant"
|
|
324
|
-
version = "0.1.
|
|
360
|
+
version = "0.1.6"
|
|
325
361
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
-
checksum = "
|
|
362
|
+
checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f"
|
|
327
363
|
dependencies = [
|
|
328
364
|
"pmutil",
|
|
329
365
|
"proc-macro2",
|
|
330
366
|
"swc_macros_common",
|
|
331
|
-
"syn",
|
|
367
|
+
"syn 2.0.23",
|
|
332
368
|
]
|
|
333
369
|
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "funty"
|
|
372
|
+
version = "2.0.0"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
375
|
+
|
|
334
376
|
[[package]]
|
|
335
377
|
name = "generic-array"
|
|
336
|
-
version = "0.14.
|
|
378
|
+
version = "0.14.7"
|
|
337
379
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "
|
|
380
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
339
381
|
dependencies = [
|
|
340
382
|
"typenum",
|
|
341
383
|
"version_check",
|
|
@@ -343,9 +385,9 @@ dependencies = [
|
|
|
343
385
|
|
|
344
386
|
[[package]]
|
|
345
387
|
name = "getrandom"
|
|
346
|
-
version = "0.2.
|
|
388
|
+
version = "0.2.10"
|
|
347
389
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
390
|
+
checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
|
|
349
391
|
dependencies = [
|
|
350
392
|
"cfg-if",
|
|
351
393
|
"libc",
|
|
@@ -361,20 +403,20 @@ dependencies = [
|
|
|
361
403
|
"proc-macro-error",
|
|
362
404
|
"proc-macro2",
|
|
363
405
|
"quote",
|
|
364
|
-
"syn",
|
|
406
|
+
"syn 1.0.109",
|
|
365
407
|
]
|
|
366
408
|
|
|
367
409
|
[[package]]
|
|
368
410
|
name = "gimli"
|
|
369
|
-
version = "0.
|
|
411
|
+
version = "0.27.3"
|
|
370
412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
413
|
+
checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
|
|
372
414
|
|
|
373
415
|
[[package]]
|
|
374
416
|
name = "glob"
|
|
375
|
-
version = "0.3.
|
|
417
|
+
version = "0.3.1"
|
|
376
418
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
419
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
378
420
|
|
|
379
421
|
[[package]]
|
|
380
422
|
name = "hashbrown"
|
|
@@ -382,7 +424,7 @@ version = "0.12.3"
|
|
|
382
424
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
383
425
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
384
426
|
dependencies = [
|
|
385
|
-
"ahash",
|
|
427
|
+
"ahash 0.7.6",
|
|
386
428
|
]
|
|
387
429
|
|
|
388
430
|
[[package]]
|
|
@@ -395,22 +437,22 @@ dependencies = [
|
|
|
395
437
|
]
|
|
396
438
|
|
|
397
439
|
[[package]]
|
|
398
|
-
name = "
|
|
399
|
-
version = "0.
|
|
440
|
+
name = "hermit-abi"
|
|
441
|
+
version = "0.3.1"
|
|
400
442
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
401
|
-
checksum = "
|
|
443
|
+
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
|
402
444
|
|
|
403
445
|
[[package]]
|
|
404
|
-
name = "
|
|
405
|
-
version = "
|
|
446
|
+
name = "hex"
|
|
447
|
+
version = "0.4.3"
|
|
406
448
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
-
checksum = "
|
|
449
|
+
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
408
450
|
|
|
409
451
|
[[package]]
|
|
410
452
|
name = "idna"
|
|
411
|
-
version = "0.
|
|
453
|
+
version = "0.4.0"
|
|
412
454
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
-
checksum = "
|
|
455
|
+
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
|
|
414
456
|
dependencies = [
|
|
415
457
|
"unicode-bidi",
|
|
416
458
|
"unicode-normalization",
|
|
@@ -424,9 +466,9 @@ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
|
|
|
424
466
|
|
|
425
467
|
[[package]]
|
|
426
468
|
name = "indexmap"
|
|
427
|
-
version = "1.9.
|
|
469
|
+
version = "1.9.3"
|
|
428
470
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
-
checksum = "
|
|
471
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
430
472
|
dependencies = [
|
|
431
473
|
"autocfg",
|
|
432
474
|
"hashbrown",
|
|
@@ -441,17 +483,28 @@ dependencies = [
|
|
|
441
483
|
"cfg-if",
|
|
442
484
|
]
|
|
443
485
|
|
|
486
|
+
[[package]]
|
|
487
|
+
name = "io-lifetimes"
|
|
488
|
+
version = "1.0.11"
|
|
489
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
490
|
+
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
|
491
|
+
dependencies = [
|
|
492
|
+
"hermit-abi 0.3.1",
|
|
493
|
+
"libc",
|
|
494
|
+
"windows-sys",
|
|
495
|
+
]
|
|
496
|
+
|
|
444
497
|
[[package]]
|
|
445
498
|
name = "is-macro"
|
|
446
|
-
version = "0.
|
|
499
|
+
version = "0.3.0"
|
|
447
500
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
-
checksum = "
|
|
501
|
+
checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e"
|
|
449
502
|
dependencies = [
|
|
450
503
|
"Inflector",
|
|
451
504
|
"pmutil",
|
|
452
505
|
"proc-macro2",
|
|
453
506
|
"quote",
|
|
454
|
-
"syn",
|
|
507
|
+
"syn 2.0.23",
|
|
455
508
|
]
|
|
456
509
|
|
|
457
510
|
[[package]]
|
|
@@ -462,9 +515,9 @@ checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
|
|
|
462
515
|
|
|
463
516
|
[[package]]
|
|
464
517
|
name = "itoa"
|
|
465
|
-
version = "1.0.
|
|
518
|
+
version = "1.0.6"
|
|
466
519
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
-
checksum = "
|
|
520
|
+
checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
|
|
468
521
|
|
|
469
522
|
[[package]]
|
|
470
523
|
name = "lazy_static"
|
|
@@ -547,15 +600,21 @@ dependencies = [
|
|
|
547
600
|
|
|
548
601
|
[[package]]
|
|
549
602
|
name = "libc"
|
|
550
|
-
version = "0.2.
|
|
603
|
+
version = "0.2.147"
|
|
604
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
605
|
+
checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
|
|
606
|
+
|
|
607
|
+
[[package]]
|
|
608
|
+
name = "linux-raw-sys"
|
|
609
|
+
version = "0.3.8"
|
|
551
610
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
611
|
+
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
|
553
612
|
|
|
554
613
|
[[package]]
|
|
555
614
|
name = "lock_api"
|
|
556
|
-
version = "0.4.
|
|
615
|
+
version = "0.4.10"
|
|
557
616
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
-
checksum = "
|
|
617
|
+
checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
|
|
559
618
|
dependencies = [
|
|
560
619
|
"autocfg",
|
|
561
620
|
"scopeguard",
|
|
@@ -563,12 +622,9 @@ dependencies = [
|
|
|
563
622
|
|
|
564
623
|
[[package]]
|
|
565
624
|
name = "log"
|
|
566
|
-
version = "0.4.
|
|
625
|
+
version = "0.4.19"
|
|
567
626
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
-
checksum = "
|
|
569
|
-
dependencies = [
|
|
570
|
-
"cfg-if",
|
|
571
|
-
]
|
|
627
|
+
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
|
572
628
|
|
|
573
629
|
[[package]]
|
|
574
630
|
name = "matchers"
|
|
@@ -613,14 +669,14 @@ checksum = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c"
|
|
|
613
669
|
dependencies = [
|
|
614
670
|
"proc-macro2",
|
|
615
671
|
"quote",
|
|
616
|
-
"syn",
|
|
672
|
+
"syn 1.0.109",
|
|
617
673
|
]
|
|
618
674
|
|
|
619
675
|
[[package]]
|
|
620
676
|
name = "miniz_oxide"
|
|
621
|
-
version = "0.
|
|
677
|
+
version = "0.7.1"
|
|
622
678
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
679
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
|
624
680
|
dependencies = [
|
|
625
681
|
"adler",
|
|
626
682
|
]
|
|
@@ -674,37 +730,28 @@ dependencies = [
|
|
|
674
730
|
|
|
675
731
|
[[package]]
|
|
676
732
|
name = "num_cpus"
|
|
677
|
-
version = "1.
|
|
678
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
679
|
-
checksum = "f6058e64324c71e02bc2b150e4f3bc8286db6c83092132ffa3f6b1eab0f9def5"
|
|
680
|
-
dependencies = [
|
|
681
|
-
"hermit-abi",
|
|
682
|
-
"libc",
|
|
683
|
-
]
|
|
684
|
-
|
|
685
|
-
[[package]]
|
|
686
|
-
name = "num_threads"
|
|
687
|
-
version = "0.1.6"
|
|
733
|
+
version = "1.16.0"
|
|
688
734
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
-
checksum = "
|
|
735
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
690
736
|
dependencies = [
|
|
737
|
+
"hermit-abi 0.3.1",
|
|
691
738
|
"libc",
|
|
692
739
|
]
|
|
693
740
|
|
|
694
741
|
[[package]]
|
|
695
742
|
name = "object"
|
|
696
|
-
version = "0.
|
|
743
|
+
version = "0.31.1"
|
|
697
744
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
-
checksum = "
|
|
745
|
+
checksum = "8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1"
|
|
699
746
|
dependencies = [
|
|
700
747
|
"memchr",
|
|
701
748
|
]
|
|
702
749
|
|
|
703
750
|
[[package]]
|
|
704
751
|
name = "once_cell"
|
|
705
|
-
version = "1.
|
|
752
|
+
version = "1.18.0"
|
|
706
753
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
-
checksum = "
|
|
754
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
|
708
755
|
|
|
709
756
|
[[package]]
|
|
710
757
|
name = "output_vt100"
|
|
@@ -739,22 +786,22 @@ dependencies = [
|
|
|
739
786
|
|
|
740
787
|
[[package]]
|
|
741
788
|
name = "parking_lot_core"
|
|
742
|
-
version = "0.9.
|
|
789
|
+
version = "0.9.8"
|
|
743
790
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
-
checksum = "
|
|
791
|
+
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
|
|
745
792
|
dependencies = [
|
|
746
793
|
"cfg-if",
|
|
747
794
|
"libc",
|
|
748
795
|
"redox_syscall",
|
|
749
796
|
"smallvec",
|
|
750
|
-
"windows-
|
|
797
|
+
"windows-targets",
|
|
751
798
|
]
|
|
752
799
|
|
|
753
800
|
[[package]]
|
|
754
801
|
name = "percent-encoding"
|
|
755
|
-
version = "2.
|
|
802
|
+
version = "2.3.0"
|
|
756
803
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
-
checksum = "
|
|
804
|
+
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
|
758
805
|
|
|
759
806
|
[[package]]
|
|
760
807
|
name = "phf"
|
|
@@ -788,7 +835,7 @@ dependencies = [
|
|
|
788
835
|
"proc-macro-hack",
|
|
789
836
|
"proc-macro2",
|
|
790
837
|
"quote",
|
|
791
|
-
"syn",
|
|
838
|
+
"syn 1.0.109",
|
|
792
839
|
]
|
|
793
840
|
|
|
794
841
|
[[package]]
|
|
@@ -802,26 +849,26 @@ dependencies = [
|
|
|
802
849
|
|
|
803
850
|
[[package]]
|
|
804
851
|
name = "pin-project-lite"
|
|
805
|
-
version = "0.2.
|
|
852
|
+
version = "0.2.10"
|
|
806
853
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
-
checksum = "
|
|
854
|
+
checksum = "4c40d25201921e5ff0c862a505c6557ea88568a4e3ace775ab55e93f2f4f9d57"
|
|
808
855
|
|
|
809
856
|
[[package]]
|
|
810
857
|
name = "pmutil"
|
|
811
|
-
version = "0.
|
|
858
|
+
version = "0.6.1"
|
|
812
859
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
860
|
+
checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6"
|
|
814
861
|
dependencies = [
|
|
815
862
|
"proc-macro2",
|
|
816
863
|
"quote",
|
|
817
|
-
"syn",
|
|
864
|
+
"syn 2.0.23",
|
|
818
865
|
]
|
|
819
866
|
|
|
820
867
|
[[package]]
|
|
821
868
|
name = "ppv-lite86"
|
|
822
|
-
version = "0.2.
|
|
869
|
+
version = "0.2.17"
|
|
823
870
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
-
checksum = "
|
|
871
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
825
872
|
|
|
826
873
|
[[package]]
|
|
827
874
|
name = "precomputed-hash"
|
|
@@ -850,7 +897,7 @@ dependencies = [
|
|
|
850
897
|
"proc-macro-error-attr",
|
|
851
898
|
"proc-macro2",
|
|
852
899
|
"quote",
|
|
853
|
-
"syn",
|
|
900
|
+
"syn 1.0.109",
|
|
854
901
|
"version_check",
|
|
855
902
|
]
|
|
856
903
|
|
|
@@ -867,19 +914,28 @@ dependencies = [
|
|
|
867
914
|
|
|
868
915
|
[[package]]
|
|
869
916
|
name = "proc-macro-hack"
|
|
870
|
-
version = "0.5.
|
|
917
|
+
version = "0.5.20+deprecated"
|
|
871
918
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
-
checksum = "
|
|
919
|
+
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
873
920
|
|
|
874
921
|
[[package]]
|
|
875
922
|
name = "proc-macro2"
|
|
876
|
-
version = "1.0.
|
|
923
|
+
version = "1.0.63"
|
|
877
924
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "
|
|
925
|
+
checksum = "7b368fba921b0dce7e60f5e04ec15e565b3303972b42bcfde1d0713b881959eb"
|
|
879
926
|
dependencies = [
|
|
880
927
|
"unicode-ident",
|
|
881
928
|
]
|
|
882
929
|
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "psm"
|
|
932
|
+
version = "0.1.21"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"cc",
|
|
937
|
+
]
|
|
938
|
+
|
|
883
939
|
[[package]]
|
|
884
940
|
name = "ptr_meta"
|
|
885
941
|
version = "0.1.4"
|
|
@@ -897,18 +953,24 @@ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
|
897
953
|
dependencies = [
|
|
898
954
|
"proc-macro2",
|
|
899
955
|
"quote",
|
|
900
|
-
"syn",
|
|
956
|
+
"syn 1.0.109",
|
|
901
957
|
]
|
|
902
958
|
|
|
903
959
|
[[package]]
|
|
904
960
|
name = "quote"
|
|
905
|
-
version = "1.0.
|
|
961
|
+
version = "1.0.29"
|
|
906
962
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
-
checksum = "
|
|
963
|
+
checksum = "573015e8ab27661678357f27dc26460738fd2b6c86e46f386fde94cb5d913105"
|
|
908
964
|
dependencies = [
|
|
909
965
|
"proc-macro2",
|
|
910
966
|
]
|
|
911
967
|
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "radium"
|
|
970
|
+
version = "0.7.0"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
973
|
+
|
|
912
974
|
[[package]]
|
|
913
975
|
name = "rand"
|
|
914
976
|
version = "0.8.5"
|
|
@@ -941,22 +1003,22 @@ dependencies = [
|
|
|
941
1003
|
|
|
942
1004
|
[[package]]
|
|
943
1005
|
name = "redox_syscall"
|
|
944
|
-
version = "0.
|
|
1006
|
+
version = "0.3.5"
|
|
945
1007
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
-
checksum = "
|
|
1008
|
+
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
|
|
947
1009
|
dependencies = [
|
|
948
|
-
"bitflags",
|
|
1010
|
+
"bitflags 1.3.2",
|
|
949
1011
|
]
|
|
950
1012
|
|
|
951
1013
|
[[package]]
|
|
952
1014
|
name = "regex"
|
|
953
|
-
version = "1.
|
|
1015
|
+
version = "1.8.4"
|
|
954
1016
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
-
checksum = "
|
|
1017
|
+
checksum = "d0ab3ca65655bb1e41f2a8c8cd662eb4fb035e67c3f78da1d61dffe89d07300f"
|
|
956
1018
|
dependencies = [
|
|
957
1019
|
"aho-corasick",
|
|
958
1020
|
"memchr",
|
|
959
|
-
"regex-syntax",
|
|
1021
|
+
"regex-syntax 0.7.2",
|
|
960
1022
|
]
|
|
961
1023
|
|
|
962
1024
|
[[package]]
|
|
@@ -965,69 +1027,69 @@ version = "0.1.10"
|
|
|
965
1027
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
1028
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
967
1029
|
dependencies = [
|
|
968
|
-
"regex-syntax",
|
|
1030
|
+
"regex-syntax 0.6.29",
|
|
969
1031
|
]
|
|
970
1032
|
|
|
971
1033
|
[[package]]
|
|
972
1034
|
name = "regex-syntax"
|
|
973
|
-
version = "0.6.
|
|
1035
|
+
version = "0.6.29"
|
|
974
1036
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
-
checksum = "
|
|
1037
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
976
1038
|
|
|
977
1039
|
[[package]]
|
|
978
|
-
name = "
|
|
979
|
-
version = "
|
|
1040
|
+
name = "regex-syntax"
|
|
1041
|
+
version = "0.7.2"
|
|
980
1042
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
-
checksum = "
|
|
1043
|
+
checksum = "436b050e76ed2903236f032a59761c1eb99e1b0aead2c257922771dab1fc8c78"
|
|
982
1044
|
|
|
983
1045
|
[[package]]
|
|
984
|
-
name = "
|
|
985
|
-
version = "
|
|
1046
|
+
name = "relative-path"
|
|
1047
|
+
version = "1.8.0"
|
|
986
1048
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
-
checksum = "
|
|
988
|
-
dependencies = [
|
|
989
|
-
"winapi",
|
|
990
|
-
]
|
|
1049
|
+
checksum = "4bf2521270932c3c7bed1a59151222bd7643c79310f2916f01925e1e16255698"
|
|
991
1050
|
|
|
992
1051
|
[[package]]
|
|
993
1052
|
name = "rend"
|
|
994
|
-
version = "0.
|
|
1053
|
+
version = "0.4.0"
|
|
995
1054
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
-
checksum = "
|
|
1055
|
+
checksum = "581008d2099240d37fb08d77ad713bcaec2c4d89d50b5b21a8bb1996bbab68ab"
|
|
997
1056
|
dependencies = [
|
|
998
1057
|
"bytecheck",
|
|
999
1058
|
]
|
|
1000
1059
|
|
|
1001
1060
|
[[package]]
|
|
1002
1061
|
name = "rkyv"
|
|
1003
|
-
version = "0.7.
|
|
1062
|
+
version = "0.7.42"
|
|
1004
1063
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1064
|
+
checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
|
|
1006
1065
|
dependencies = [
|
|
1066
|
+
"bitvec",
|
|
1007
1067
|
"bytecheck",
|
|
1008
1068
|
"hashbrown",
|
|
1009
1069
|
"ptr_meta",
|
|
1010
1070
|
"rend",
|
|
1011
1071
|
"rkyv_derive",
|
|
1012
1072
|
"seahash",
|
|
1073
|
+
"tinyvec",
|
|
1074
|
+
"uuid",
|
|
1013
1075
|
]
|
|
1014
1076
|
|
|
1015
1077
|
[[package]]
|
|
1016
1078
|
name = "rkyv_derive"
|
|
1017
|
-
version = "0.7.
|
|
1079
|
+
version = "0.7.42"
|
|
1018
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
1081
|
+
checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
|
|
1020
1082
|
dependencies = [
|
|
1021
1083
|
"proc-macro2",
|
|
1022
1084
|
"quote",
|
|
1023
|
-
"syn",
|
|
1085
|
+
"syn 1.0.109",
|
|
1024
1086
|
]
|
|
1025
1087
|
|
|
1026
1088
|
[[package]]
|
|
1027
1089
|
name = "rustc-demangle"
|
|
1028
|
-
version = "0.1.
|
|
1090
|
+
version = "0.1.23"
|
|
1029
1091
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
-
checksum = "
|
|
1092
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
1031
1093
|
|
|
1032
1094
|
[[package]]
|
|
1033
1095
|
name = "rustc-hash"
|
|
@@ -1041,20 +1103,34 @@ version = "0.2.3"
|
|
|
1041
1103
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
1104
|
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
|
1043
1105
|
dependencies = [
|
|
1044
|
-
"semver",
|
|
1106
|
+
"semver 0.9.0",
|
|
1107
|
+
]
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "rustix"
|
|
1111
|
+
version = "0.37.22"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "8818fa822adcc98b18fedbb3632a6a33213c070556b5aa7c4c8cc21cff565c4c"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"bitflags 1.3.2",
|
|
1116
|
+
"errno",
|
|
1117
|
+
"io-lifetimes",
|
|
1118
|
+
"libc",
|
|
1119
|
+
"linux-raw-sys",
|
|
1120
|
+
"windows-sys",
|
|
1045
1121
|
]
|
|
1046
1122
|
|
|
1047
1123
|
[[package]]
|
|
1048
1124
|
name = "rustversion"
|
|
1049
|
-
version = "1.0.
|
|
1125
|
+
version = "1.0.12"
|
|
1050
1126
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1127
|
+
checksum = "4f3208ce4d8448b3f3e7d168a73f5e0c43a61e32930de3bceeccedb388b6bf06"
|
|
1052
1128
|
|
|
1053
1129
|
[[package]]
|
|
1054
1130
|
name = "ryu"
|
|
1055
|
-
version = "1.0.
|
|
1131
|
+
version = "1.0.13"
|
|
1056
1132
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
-
checksum = "
|
|
1133
|
+
checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
|
|
1058
1134
|
|
|
1059
1135
|
[[package]]
|
|
1060
1136
|
name = "scoped-tls"
|
|
@@ -1083,6 +1159,15 @@ dependencies = [
|
|
|
1083
1159
|
"semver-parser",
|
|
1084
1160
|
]
|
|
1085
1161
|
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "semver"
|
|
1164
|
+
version = "1.0.17"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "bebd363326d05ec3e2f532ab7660680f3b02130d780c299bca73469d521bc0ed"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"serde",
|
|
1169
|
+
]
|
|
1170
|
+
|
|
1086
1171
|
[[package]]
|
|
1087
1172
|
name = "semver-parser"
|
|
1088
1173
|
version = "0.7.0"
|
|
@@ -1091,29 +1176,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
1091
1176
|
|
|
1092
1177
|
[[package]]
|
|
1093
1178
|
name = "serde"
|
|
1094
|
-
version = "1.0.
|
|
1179
|
+
version = "1.0.164"
|
|
1095
1180
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1181
|
+
checksum = "9e8c8cf938e98f769bc164923b06dce91cea1751522f46f8466461af04c9027d"
|
|
1097
1182
|
dependencies = [
|
|
1098
1183
|
"serde_derive",
|
|
1099
1184
|
]
|
|
1100
1185
|
|
|
1101
1186
|
[[package]]
|
|
1102
1187
|
name = "serde_derive"
|
|
1103
|
-
version = "1.0.
|
|
1188
|
+
version = "1.0.164"
|
|
1104
1189
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1190
|
+
checksum = "d9735b638ccc51c28bf6914d90a2e9725b377144fc612c49a611fddd1b631d68"
|
|
1106
1191
|
dependencies = [
|
|
1107
1192
|
"proc-macro2",
|
|
1108
1193
|
"quote",
|
|
1109
|
-
"syn",
|
|
1194
|
+
"syn 2.0.23",
|
|
1110
1195
|
]
|
|
1111
1196
|
|
|
1112
1197
|
[[package]]
|
|
1113
1198
|
name = "serde_json"
|
|
1114
|
-
version = "1.0.
|
|
1199
|
+
version = "1.0.99"
|
|
1115
1200
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
-
checksum = "
|
|
1201
|
+
checksum = "46266871c240a00b8f503b877622fe33430b3c7d963bdc0f2adc511e54a1eae3"
|
|
1117
1202
|
dependencies = [
|
|
1118
1203
|
"itoa",
|
|
1119
1204
|
"ryu",
|
|
@@ -1122,9 +1207,9 @@ dependencies = [
|
|
|
1122
1207
|
|
|
1123
1208
|
[[package]]
|
|
1124
1209
|
name = "sha-1"
|
|
1125
|
-
version = "0.10.
|
|
1210
|
+
version = "0.10.1"
|
|
1126
1211
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
-
checksum = "
|
|
1212
|
+
checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
|
|
1128
1213
|
dependencies = [
|
|
1129
1214
|
"cfg-if",
|
|
1130
1215
|
"cpufeatures",
|
|
@@ -1140,6 +1225,12 @@ dependencies = [
|
|
|
1140
1225
|
"lazy_static",
|
|
1141
1226
|
]
|
|
1142
1227
|
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "simdutf8"
|
|
1230
|
+
version = "0.1.4"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
|
1233
|
+
|
|
1143
1234
|
[[package]]
|
|
1144
1235
|
name = "siphasher"
|
|
1145
1236
|
version = "0.3.10"
|
|
@@ -1152,6 +1243,17 @@ version = "1.10.0"
|
|
|
1152
1243
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
1244
|
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
|
1154
1245
|
|
|
1246
|
+
[[package]]
|
|
1247
|
+
name = "smartstring"
|
|
1248
|
+
version = "1.0.1"
|
|
1249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1250
|
+
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
|
1251
|
+
dependencies = [
|
|
1252
|
+
"autocfg",
|
|
1253
|
+
"static_assertions",
|
|
1254
|
+
"version_check",
|
|
1255
|
+
]
|
|
1256
|
+
|
|
1155
1257
|
[[package]]
|
|
1156
1258
|
name = "smawk"
|
|
1157
1259
|
version = "0.3.1"
|
|
@@ -1160,17 +1262,16 @@ checksum = "f67ad224767faa3c7d8b6d91985b78e70a1324408abcb1cfcc2be4c06bc06043"
|
|
|
1160
1262
|
|
|
1161
1263
|
[[package]]
|
|
1162
1264
|
name = "sourcemap"
|
|
1163
|
-
version = "6.2.
|
|
1265
|
+
version = "6.2.3"
|
|
1164
1266
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
-
checksum = "
|
|
1267
|
+
checksum = "eed16231c92d0a6f0388f56e0ab2be24ecff1173f8e22f0ea5e074d0525631cb"
|
|
1166
1268
|
dependencies = [
|
|
1167
|
-
"
|
|
1269
|
+
"data-encoding",
|
|
1168
1270
|
"if_chain",
|
|
1169
|
-
"lazy_static",
|
|
1170
|
-
"regex",
|
|
1171
1271
|
"rustc_version",
|
|
1172
1272
|
"serde",
|
|
1173
1273
|
"serde_json",
|
|
1274
|
+
"unicode-id",
|
|
1174
1275
|
"url",
|
|
1175
1276
|
]
|
|
1176
1277
|
|
|
@@ -1180,6 +1281,19 @@ version = "1.2.0"
|
|
|
1180
1281
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
1282
|
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
|
1182
1283
|
|
|
1284
|
+
[[package]]
|
|
1285
|
+
name = "stacker"
|
|
1286
|
+
version = "0.1.15"
|
|
1287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1288
|
+
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
|
|
1289
|
+
dependencies = [
|
|
1290
|
+
"cc",
|
|
1291
|
+
"cfg-if",
|
|
1292
|
+
"libc",
|
|
1293
|
+
"psm",
|
|
1294
|
+
"winapi",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1183
1297
|
[[package]]
|
|
1184
1298
|
name = "static_assertions"
|
|
1185
1299
|
version = "1.1.0"
|
|
@@ -1188,9 +1302,9 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
|
1188
1302
|
|
|
1189
1303
|
[[package]]
|
|
1190
1304
|
name = "string_cache"
|
|
1191
|
-
version = "0.8.
|
|
1305
|
+
version = "0.8.7"
|
|
1192
1306
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
-
checksum = "
|
|
1307
|
+
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
|
|
1194
1308
|
dependencies = [
|
|
1195
1309
|
"new_debug_unreachable",
|
|
1196
1310
|
"once_cell",
|
|
@@ -1214,28 +1328,22 @@ dependencies = [
|
|
|
1214
1328
|
|
|
1215
1329
|
[[package]]
|
|
1216
1330
|
name = "string_enum"
|
|
1217
|
-
version = "0.
|
|
1331
|
+
version = "0.4.1"
|
|
1218
1332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
-
checksum = "
|
|
1333
|
+
checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252"
|
|
1220
1334
|
dependencies = [
|
|
1221
1335
|
"pmutil",
|
|
1222
1336
|
"proc-macro2",
|
|
1223
1337
|
"quote",
|
|
1224
1338
|
"swc_macros_common",
|
|
1225
|
-
"syn",
|
|
1339
|
+
"syn 2.0.23",
|
|
1226
1340
|
]
|
|
1227
1341
|
|
|
1228
|
-
[[package]]
|
|
1229
|
-
name = "strsim"
|
|
1230
|
-
version = "0.10.0"
|
|
1231
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
-
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
1233
|
-
|
|
1234
1342
|
[[package]]
|
|
1235
1343
|
name = "supports-color"
|
|
1236
|
-
version = "1.3.
|
|
1344
|
+
version = "1.3.1"
|
|
1237
1345
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
-
checksum = "
|
|
1346
|
+
checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f"
|
|
1239
1347
|
dependencies = [
|
|
1240
1348
|
"atty",
|
|
1241
1349
|
"is_ci",
|
|
@@ -1265,14 +1373,16 @@ version = "0.1.0"
|
|
|
1265
1373
|
dependencies = [
|
|
1266
1374
|
"serde",
|
|
1267
1375
|
"swc_core",
|
|
1376
|
+
"swc_ecma_utils",
|
|
1268
1377
|
]
|
|
1269
1378
|
|
|
1270
1379
|
[[package]]
|
|
1271
1380
|
name = "swc_atoms"
|
|
1272
|
-
version = "0.
|
|
1381
|
+
version = "0.5.6"
|
|
1273
1382
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
-
checksum = "
|
|
1383
|
+
checksum = "93d0307dc4bfd107d49c7528350c372758cfca94fb503629b9a056e6a1572860"
|
|
1275
1384
|
dependencies = [
|
|
1385
|
+
"bytecheck",
|
|
1276
1386
|
"once_cell",
|
|
1277
1387
|
"rkyv",
|
|
1278
1388
|
"rustc-hash",
|
|
@@ -1284,15 +1394,16 @@ dependencies = [
|
|
|
1284
1394
|
|
|
1285
1395
|
[[package]]
|
|
1286
1396
|
name = "swc_common"
|
|
1287
|
-
version = "0.
|
|
1397
|
+
version = "0.31.16"
|
|
1288
1398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "
|
|
1399
|
+
checksum = "c6414bd4e553f5638961d39b07075ffd37a3d63176829592f4a5900260d94ca1"
|
|
1290
1400
|
dependencies = [
|
|
1291
|
-
"ahash",
|
|
1401
|
+
"ahash 0.8.3",
|
|
1292
1402
|
"anyhow",
|
|
1293
1403
|
"ast_node",
|
|
1294
1404
|
"atty",
|
|
1295
1405
|
"better_scoped_tls",
|
|
1406
|
+
"bytecheck",
|
|
1296
1407
|
"cfg-if",
|
|
1297
1408
|
"either",
|
|
1298
1409
|
"from_variant",
|
|
@@ -1317,9 +1428,9 @@ dependencies = [
|
|
|
1317
1428
|
|
|
1318
1429
|
[[package]]
|
|
1319
1430
|
name = "swc_core"
|
|
1320
|
-
version = "0.
|
|
1431
|
+
version = "0.79.5"
|
|
1321
1432
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
-
checksum = "
|
|
1433
|
+
checksum = "27baebce1019107aad3e3ce538f340d2b69b4998cd5666c1f8bd94b91caa9bc9"
|
|
1323
1434
|
dependencies = [
|
|
1324
1435
|
"once_cell",
|
|
1325
1436
|
"swc_atoms",
|
|
@@ -1336,16 +1447,16 @@ dependencies = [
|
|
|
1336
1447
|
|
|
1337
1448
|
[[package]]
|
|
1338
1449
|
name = "swc_ecma_ast"
|
|
1339
|
-
version = "0.
|
|
1450
|
+
version = "0.107.0"
|
|
1340
1451
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
-
checksum = "
|
|
1452
|
+
checksum = "5693558188efdd5b664e517b69ba8056a7f64c214ca8cd034e3ae8314566b866"
|
|
1342
1453
|
dependencies = [
|
|
1343
|
-
"bitflags",
|
|
1454
|
+
"bitflags 2.3.3",
|
|
1455
|
+
"bytecheck",
|
|
1344
1456
|
"is-macro",
|
|
1345
1457
|
"num-bigint",
|
|
1346
1458
|
"rkyv",
|
|
1347
1459
|
"scoped-tls",
|
|
1348
|
-
"serde",
|
|
1349
1460
|
"string_enum",
|
|
1350
1461
|
"swc_atoms",
|
|
1351
1462
|
"swc_common",
|
|
@@ -1354,9 +1465,9 @@ dependencies = [
|
|
|
1354
1465
|
|
|
1355
1466
|
[[package]]
|
|
1356
1467
|
name = "swc_ecma_codegen"
|
|
1357
|
-
version = "0.
|
|
1468
|
+
version = "0.142.1"
|
|
1358
1469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1470
|
+
checksum = "12a1e2c520108525667676df493a636afe679112f19fc51a2d226f853f7513a1"
|
|
1360
1471
|
dependencies = [
|
|
1361
1472
|
"memchr",
|
|
1362
1473
|
"num-bigint",
|
|
@@ -1373,29 +1484,30 @@ dependencies = [
|
|
|
1373
1484
|
|
|
1374
1485
|
[[package]]
|
|
1375
1486
|
name = "swc_ecma_codegen_macros"
|
|
1376
|
-
version = "0.7.
|
|
1487
|
+
version = "0.7.3"
|
|
1377
1488
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
-
checksum = "
|
|
1489
|
+
checksum = "dcdff076dccca6cc6a0e0b2a2c8acfb066014382bc6df98ec99e755484814384"
|
|
1379
1490
|
dependencies = [
|
|
1380
1491
|
"pmutil",
|
|
1381
1492
|
"proc-macro2",
|
|
1382
1493
|
"quote",
|
|
1383
1494
|
"swc_macros_common",
|
|
1384
|
-
"syn",
|
|
1495
|
+
"syn 2.0.23",
|
|
1385
1496
|
]
|
|
1386
1497
|
|
|
1387
1498
|
[[package]]
|
|
1388
1499
|
name = "swc_ecma_parser"
|
|
1389
|
-
version = "0.
|
|
1500
|
+
version = "0.137.1"
|
|
1390
1501
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
-
checksum = "
|
|
1502
|
+
checksum = "8ea1915adb15d9ca1695e76d41524beb4806e9b603280edb7eedbaebe706a41c"
|
|
1392
1503
|
dependencies = [
|
|
1393
1504
|
"either",
|
|
1394
|
-
"enum_kind",
|
|
1395
1505
|
"lexical",
|
|
1396
1506
|
"num-bigint",
|
|
1397
1507
|
"serde",
|
|
1398
1508
|
"smallvec",
|
|
1509
|
+
"smartstring",
|
|
1510
|
+
"stacker",
|
|
1399
1511
|
"swc_atoms",
|
|
1400
1512
|
"swc_common",
|
|
1401
1513
|
"swc_ecma_ast",
|
|
@@ -1405,28 +1517,26 @@ dependencies = [
|
|
|
1405
1517
|
|
|
1406
1518
|
[[package]]
|
|
1407
1519
|
name = "swc_ecma_testing"
|
|
1408
|
-
version = "0.20.
|
|
1520
|
+
version = "0.20.13"
|
|
1409
1521
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
1522
|
+
checksum = "b90ea04390a92f949fbf2d3c411bc7ab82c0981dea04cc18fe6ae1a4e471f121"
|
|
1411
1523
|
dependencies = [
|
|
1412
1524
|
"anyhow",
|
|
1413
1525
|
"hex",
|
|
1414
1526
|
"sha-1",
|
|
1415
|
-
"swc_atoms",
|
|
1416
|
-
"swc_common",
|
|
1417
|
-
"swc_ecma_ast",
|
|
1418
1527
|
"testing",
|
|
1419
1528
|
"tracing",
|
|
1420
1529
|
]
|
|
1421
1530
|
|
|
1422
1531
|
[[package]]
|
|
1423
1532
|
name = "swc_ecma_transforms_base"
|
|
1424
|
-
version = "0.
|
|
1533
|
+
version = "0.130.1"
|
|
1425
1534
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
-
checksum = "
|
|
1535
|
+
checksum = "84594423bc24ec9133265197c314db437c42c2cdbaba275c81e1d3673b8d6beb"
|
|
1427
1536
|
dependencies = [
|
|
1428
1537
|
"better_scoped_tls",
|
|
1429
|
-
"bitflags",
|
|
1538
|
+
"bitflags 2.3.3",
|
|
1539
|
+
"indexmap",
|
|
1430
1540
|
"once_cell",
|
|
1431
1541
|
"phf",
|
|
1432
1542
|
"rustc-hash",
|
|
@@ -1443,9 +1553,9 @@ dependencies = [
|
|
|
1443
1553
|
|
|
1444
1554
|
[[package]]
|
|
1445
1555
|
name = "swc_ecma_transforms_testing"
|
|
1446
|
-
version = "0.
|
|
1556
|
+
version = "0.133.1"
|
|
1447
1557
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
-
checksum = "
|
|
1558
|
+
checksum = "82e320d374f63a1b1d3b519c8bb4c500759b76a2b57055e23db02b662383160b"
|
|
1449
1559
|
dependencies = [
|
|
1450
1560
|
"ansi_term",
|
|
1451
1561
|
"anyhow",
|
|
@@ -1469,13 +1579,14 @@ dependencies = [
|
|
|
1469
1579
|
|
|
1470
1580
|
[[package]]
|
|
1471
1581
|
name = "swc_ecma_utils"
|
|
1472
|
-
version = "0.
|
|
1582
|
+
version = "0.120.1"
|
|
1473
1583
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
-
checksum = "
|
|
1584
|
+
checksum = "58ce2d8b6a3ed69ac1a8146efe1f0b1bdb8676cab204b839f42ac8b62fefc772"
|
|
1475
1585
|
dependencies = [
|
|
1476
1586
|
"indexmap",
|
|
1477
1587
|
"num_cpus",
|
|
1478
1588
|
"once_cell",
|
|
1589
|
+
"rustc-hash",
|
|
1479
1590
|
"swc_atoms",
|
|
1480
1591
|
"swc_common",
|
|
1481
1592
|
"swc_ecma_ast",
|
|
@@ -1486,9 +1597,9 @@ dependencies = [
|
|
|
1486
1597
|
|
|
1487
1598
|
[[package]]
|
|
1488
1599
|
name = "swc_ecma_visit"
|
|
1489
|
-
version = "0.
|
|
1600
|
+
version = "0.93.0"
|
|
1490
1601
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1602
|
+
checksum = "82bb87ee3345a7049efcbedc419f121933e0e3967457922848d0026fb3b79dac"
|
|
1492
1603
|
dependencies = [
|
|
1493
1604
|
"num-bigint",
|
|
1494
1605
|
"swc_atoms",
|
|
@@ -1500,21 +1611,21 @@ dependencies = [
|
|
|
1500
1611
|
|
|
1501
1612
|
[[package]]
|
|
1502
1613
|
name = "swc_eq_ignore_macros"
|
|
1503
|
-
version = "0.1.
|
|
1614
|
+
version = "0.1.2"
|
|
1504
1615
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
-
checksum = "
|
|
1616
|
+
checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8"
|
|
1506
1617
|
dependencies = [
|
|
1507
1618
|
"pmutil",
|
|
1508
1619
|
"proc-macro2",
|
|
1509
1620
|
"quote",
|
|
1510
|
-
"syn",
|
|
1621
|
+
"syn 2.0.23",
|
|
1511
1622
|
]
|
|
1512
1623
|
|
|
1513
1624
|
[[package]]
|
|
1514
1625
|
name = "swc_error_reporters"
|
|
1515
|
-
version = "0.
|
|
1626
|
+
version = "0.15.16"
|
|
1516
1627
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
-
checksum = "
|
|
1628
|
+
checksum = "108322b719696e8c368c39dc6d8748494ea2aa870e7d80ea5956078aa6b4dd4d"
|
|
1518
1629
|
dependencies = [
|
|
1519
1630
|
"anyhow",
|
|
1520
1631
|
"miette",
|
|
@@ -1525,14 +1636,14 @@ dependencies = [
|
|
|
1525
1636
|
|
|
1526
1637
|
[[package]]
|
|
1527
1638
|
name = "swc_macros_common"
|
|
1528
|
-
version = "0.3.
|
|
1639
|
+
version = "0.3.8"
|
|
1529
1640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
-
checksum = "
|
|
1641
|
+
checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832"
|
|
1531
1642
|
dependencies = [
|
|
1532
1643
|
"pmutil",
|
|
1533
1644
|
"proc-macro2",
|
|
1534
1645
|
"quote",
|
|
1535
|
-
"syn",
|
|
1646
|
+
"syn 2.0.23",
|
|
1536
1647
|
]
|
|
1537
1648
|
|
|
1538
1649
|
[[package]]
|
|
@@ -1546,20 +1657,20 @@ dependencies = [
|
|
|
1546
1657
|
|
|
1547
1658
|
[[package]]
|
|
1548
1659
|
name = "swc_plugin_macro"
|
|
1549
|
-
version = "0.9.
|
|
1660
|
+
version = "0.9.15"
|
|
1550
1661
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "
|
|
1662
|
+
checksum = "785309d342a69df4c929ee59e14e36889ca832f1d2a3c1d03c47c93126c72dbc"
|
|
1552
1663
|
dependencies = [
|
|
1553
1664
|
"proc-macro2",
|
|
1554
1665
|
"quote",
|
|
1555
|
-
"syn",
|
|
1666
|
+
"syn 2.0.23",
|
|
1556
1667
|
]
|
|
1557
1668
|
|
|
1558
1669
|
[[package]]
|
|
1559
1670
|
name = "swc_plugin_proxy"
|
|
1560
|
-
version = "0.
|
|
1671
|
+
version = "0.36.0"
|
|
1561
1672
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1673
|
+
checksum = "2b4607dd860acd0fb7e2c1f171830b6cc93321e3934166292a9c40072a7d5e26"
|
|
1563
1674
|
dependencies = [
|
|
1564
1675
|
"better_scoped_tls",
|
|
1565
1676
|
"rkyv",
|
|
@@ -1571,20 +1682,20 @@ dependencies = [
|
|
|
1571
1682
|
|
|
1572
1683
|
[[package]]
|
|
1573
1684
|
name = "swc_trace_macro"
|
|
1574
|
-
version = "0.1.
|
|
1685
|
+
version = "0.1.3"
|
|
1575
1686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
-
checksum = "
|
|
1687
|
+
checksum = "ff9719b6085dd2824fd61938a881937be14b08f95e2d27c64c825a9f65e052ba"
|
|
1577
1688
|
dependencies = [
|
|
1578
1689
|
"proc-macro2",
|
|
1579
1690
|
"quote",
|
|
1580
|
-
"syn",
|
|
1691
|
+
"syn 2.0.23",
|
|
1581
1692
|
]
|
|
1582
1693
|
|
|
1583
1694
|
[[package]]
|
|
1584
1695
|
name = "swc_visit"
|
|
1585
|
-
version = "0.5.
|
|
1696
|
+
version = "0.5.7"
|
|
1586
1697
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
-
checksum = "
|
|
1698
|
+
checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3"
|
|
1588
1699
|
dependencies = [
|
|
1589
1700
|
"either",
|
|
1590
1701
|
"swc_visit_macros",
|
|
@@ -1592,48 +1703,65 @@ dependencies = [
|
|
|
1592
1703
|
|
|
1593
1704
|
[[package]]
|
|
1594
1705
|
name = "swc_visit_macros"
|
|
1595
|
-
version = "0.5.
|
|
1706
|
+
version = "0.5.8"
|
|
1596
1707
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
-
checksum = "
|
|
1708
|
+
checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99"
|
|
1598
1709
|
dependencies = [
|
|
1599
1710
|
"Inflector",
|
|
1600
1711
|
"pmutil",
|
|
1601
1712
|
"proc-macro2",
|
|
1602
1713
|
"quote",
|
|
1603
1714
|
"swc_macros_common",
|
|
1604
|
-
"syn",
|
|
1715
|
+
"syn 2.0.23",
|
|
1605
1716
|
]
|
|
1606
1717
|
|
|
1607
1718
|
[[package]]
|
|
1608
1719
|
name = "syn"
|
|
1609
|
-
version = "1.0.
|
|
1720
|
+
version = "1.0.109"
|
|
1610
1721
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
-
checksum = "
|
|
1722
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1612
1723
|
dependencies = [
|
|
1613
1724
|
"proc-macro2",
|
|
1614
1725
|
"quote",
|
|
1615
1726
|
"unicode-ident",
|
|
1616
1727
|
]
|
|
1617
1728
|
|
|
1729
|
+
[[package]]
|
|
1730
|
+
name = "syn"
|
|
1731
|
+
version = "2.0.23"
|
|
1732
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1733
|
+
checksum = "59fb7d6d8281a51045d62b8eb3a7d1ce347b76f312af50cd3dc0af39c87c1737"
|
|
1734
|
+
dependencies = [
|
|
1735
|
+
"proc-macro2",
|
|
1736
|
+
"quote",
|
|
1737
|
+
"unicode-ident",
|
|
1738
|
+
]
|
|
1739
|
+
|
|
1740
|
+
[[package]]
|
|
1741
|
+
name = "tap"
|
|
1742
|
+
version = "1.0.1"
|
|
1743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1744
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1745
|
+
|
|
1618
1746
|
[[package]]
|
|
1619
1747
|
name = "tempfile"
|
|
1620
|
-
version = "3.
|
|
1748
|
+
version = "3.6.0"
|
|
1621
1749
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
-
checksum = "
|
|
1750
|
+
checksum = "31c0432476357e58790aaa47a8efb0c5138f137343f3b5f23bd36a27e3b0a6d6"
|
|
1623
1751
|
dependencies = [
|
|
1752
|
+
"autocfg",
|
|
1624
1753
|
"cfg-if",
|
|
1625
1754
|
"fastrand",
|
|
1626
|
-
"libc",
|
|
1627
1755
|
"redox_syscall",
|
|
1628
|
-
"
|
|
1629
|
-
"
|
|
1756
|
+
"rustix",
|
|
1757
|
+
"windows-sys",
|
|
1630
1758
|
]
|
|
1631
1759
|
|
|
1632
1760
|
[[package]]
|
|
1633
1761
|
name = "termcolor"
|
|
1634
|
-
version = "1.
|
|
1762
|
+
version = "1.2.0"
|
|
1635
1763
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
-
checksum = "
|
|
1764
|
+
checksum = "be55cf8942feac5c765c2c993422806843c9a9a45d4d5c407ad6dd2ea95eb9b6"
|
|
1637
1765
|
dependencies = [
|
|
1638
1766
|
"winapi-util",
|
|
1639
1767
|
]
|
|
@@ -1650,11 +1778,12 @@ dependencies = [
|
|
|
1650
1778
|
|
|
1651
1779
|
[[package]]
|
|
1652
1780
|
name = "testing"
|
|
1653
|
-
version = "0.
|
|
1781
|
+
version = "0.33.19"
|
|
1654
1782
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
-
checksum = "
|
|
1783
|
+
checksum = "359d2548f4919624af6cd1001e0a3ac9f081f8312e47fdca7650c11c9935981b"
|
|
1656
1784
|
dependencies = [
|
|
1657
1785
|
"ansi_term",
|
|
1786
|
+
"cargo_metadata",
|
|
1658
1787
|
"difference",
|
|
1659
1788
|
"once_cell",
|
|
1660
1789
|
"pretty_assertions",
|
|
@@ -1669,9 +1798,9 @@ dependencies = [
|
|
|
1669
1798
|
|
|
1670
1799
|
[[package]]
|
|
1671
1800
|
name = "testing_macros"
|
|
1672
|
-
version = "0.2.
|
|
1801
|
+
version = "0.2.11"
|
|
1673
1802
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1803
|
+
checksum = "d1c15b796025051a07f1ac695ee0cac0883f05a0d510c9d171ef8d31a992e6a5"
|
|
1675
1804
|
dependencies = [
|
|
1676
1805
|
"anyhow",
|
|
1677
1806
|
"glob",
|
|
@@ -1681,7 +1810,7 @@ dependencies = [
|
|
|
1681
1810
|
"quote",
|
|
1682
1811
|
"regex",
|
|
1683
1812
|
"relative-path",
|
|
1684
|
-
"syn",
|
|
1813
|
+
"syn 2.0.23",
|
|
1685
1814
|
]
|
|
1686
1815
|
|
|
1687
1816
|
[[package]]
|
|
@@ -1697,42 +1826,41 @@ dependencies = [
|
|
|
1697
1826
|
|
|
1698
1827
|
[[package]]
|
|
1699
1828
|
name = "thiserror"
|
|
1700
|
-
version = "1.0.
|
|
1829
|
+
version = "1.0.40"
|
|
1701
1830
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
1831
|
+
checksum = "978c9a314bd8dc99be594bc3c175faaa9794be04a5a5e153caba6915336cebac"
|
|
1703
1832
|
dependencies = [
|
|
1704
1833
|
"thiserror-impl",
|
|
1705
1834
|
]
|
|
1706
1835
|
|
|
1707
1836
|
[[package]]
|
|
1708
1837
|
name = "thiserror-impl"
|
|
1709
|
-
version = "1.0.
|
|
1838
|
+
version = "1.0.40"
|
|
1710
1839
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
-
checksum = "
|
|
1840
|
+
checksum = "f9456a42c5b0d803c8cd86e73dd7cc9edd429499f37a3550d286d5e86720569f"
|
|
1712
1841
|
dependencies = [
|
|
1713
1842
|
"proc-macro2",
|
|
1714
1843
|
"quote",
|
|
1715
|
-
"syn",
|
|
1844
|
+
"syn 2.0.23",
|
|
1716
1845
|
]
|
|
1717
1846
|
|
|
1718
1847
|
[[package]]
|
|
1719
1848
|
name = "thread_local"
|
|
1720
|
-
version = "1.1.
|
|
1849
|
+
version = "1.1.7"
|
|
1721
1850
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
-
checksum = "
|
|
1851
|
+
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
|
1723
1852
|
dependencies = [
|
|
1853
|
+
"cfg-if",
|
|
1724
1854
|
"once_cell",
|
|
1725
1855
|
]
|
|
1726
1856
|
|
|
1727
1857
|
[[package]]
|
|
1728
1858
|
name = "time"
|
|
1729
|
-
version = "0.3.
|
|
1859
|
+
version = "0.3.22"
|
|
1730
1860
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
-
checksum = "
|
|
1861
|
+
checksum = "ea9e1b3cf1243ae005d9e74085d4d542f3125458f3a81af210d901dcd7411efd"
|
|
1732
1862
|
dependencies = [
|
|
1733
1863
|
"itoa",
|
|
1734
|
-
"libc",
|
|
1735
|
-
"num_threads",
|
|
1736
1864
|
"serde",
|
|
1737
1865
|
"time-core",
|
|
1738
1866
|
"time-macros",
|
|
@@ -1740,15 +1868,15 @@ dependencies = [
|
|
|
1740
1868
|
|
|
1741
1869
|
[[package]]
|
|
1742
1870
|
name = "time-core"
|
|
1743
|
-
version = "0.1.
|
|
1871
|
+
version = "0.1.1"
|
|
1744
1872
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
-
checksum = "
|
|
1873
|
+
checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
|
|
1746
1874
|
|
|
1747
1875
|
[[package]]
|
|
1748
1876
|
name = "time-macros"
|
|
1749
|
-
version = "0.2.
|
|
1877
|
+
version = "0.2.9"
|
|
1750
1878
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "
|
|
1879
|
+
checksum = "372950940a5f07bf38dbe211d7283c9e6d7327df53794992d293e534c733d09b"
|
|
1752
1880
|
dependencies = [
|
|
1753
1881
|
"time-core",
|
|
1754
1882
|
]
|
|
@@ -1764,9 +1892,9 @@ dependencies = [
|
|
|
1764
1892
|
|
|
1765
1893
|
[[package]]
|
|
1766
1894
|
name = "tinyvec_macros"
|
|
1767
|
-
version = "0.1.
|
|
1895
|
+
version = "0.1.1"
|
|
1768
1896
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
-
checksum = "
|
|
1897
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1770
1898
|
|
|
1771
1899
|
[[package]]
|
|
1772
1900
|
name = "tracing"
|
|
@@ -1782,20 +1910,20 @@ dependencies = [
|
|
|
1782
1910
|
|
|
1783
1911
|
[[package]]
|
|
1784
1912
|
name = "tracing-attributes"
|
|
1785
|
-
version = "0.1.
|
|
1913
|
+
version = "0.1.26"
|
|
1786
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
-
checksum = "
|
|
1915
|
+
checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
|
|
1788
1916
|
dependencies = [
|
|
1789
1917
|
"proc-macro2",
|
|
1790
1918
|
"quote",
|
|
1791
|
-
"syn",
|
|
1919
|
+
"syn 2.0.23",
|
|
1792
1920
|
]
|
|
1793
1921
|
|
|
1794
1922
|
[[package]]
|
|
1795
1923
|
name = "tracing-core"
|
|
1796
|
-
version = "0.1.
|
|
1924
|
+
version = "0.1.31"
|
|
1797
1925
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
-
checksum = "
|
|
1926
|
+
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
|
|
1799
1927
|
dependencies = [
|
|
1800
1928
|
"once_cell",
|
|
1801
1929
|
"valuable",
|
|
@@ -1814,9 +1942,9 @@ dependencies = [
|
|
|
1814
1942
|
|
|
1815
1943
|
[[package]]
|
|
1816
1944
|
name = "tracing-subscriber"
|
|
1817
|
-
version = "0.3.
|
|
1945
|
+
version = "0.3.17"
|
|
1818
1946
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
-
checksum = "
|
|
1947
|
+
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
|
|
1820
1948
|
dependencies = [
|
|
1821
1949
|
"matchers",
|
|
1822
1950
|
"nu-ansi-term",
|
|
@@ -1842,21 +1970,21 @@ dependencies = [
|
|
|
1842
1970
|
|
|
1843
1971
|
[[package]]
|
|
1844
1972
|
name = "typed-arena"
|
|
1845
|
-
version = "2.0.
|
|
1973
|
+
version = "2.0.2"
|
|
1846
1974
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
-
checksum = "
|
|
1975
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
1848
1976
|
|
|
1849
1977
|
[[package]]
|
|
1850
1978
|
name = "typenum"
|
|
1851
|
-
version = "1.
|
|
1979
|
+
version = "1.16.0"
|
|
1852
1980
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1981
|
+
checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
|
|
1854
1982
|
|
|
1855
1983
|
[[package]]
|
|
1856
1984
|
name = "unicode-bidi"
|
|
1857
|
-
version = "0.3.
|
|
1985
|
+
version = "0.3.13"
|
|
1858
1986
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
-
checksum = "
|
|
1987
|
+
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
1860
1988
|
|
|
1861
1989
|
[[package]]
|
|
1862
1990
|
name = "unicode-id"
|
|
@@ -1866,9 +1994,9 @@ checksum = "d70b6494226b36008c8366c288d77190b3fad2eb4c10533139c1c1f461127f1a"
|
|
|
1866
1994
|
|
|
1867
1995
|
[[package]]
|
|
1868
1996
|
name = "unicode-ident"
|
|
1869
|
-
version = "1.0.
|
|
1997
|
+
version = "1.0.9"
|
|
1870
1998
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
1999
|
+
checksum = "b15811caf2415fb889178633e7724bad2509101cde276048e013b9def5e51fa0"
|
|
1872
2000
|
|
|
1873
2001
|
[[package]]
|
|
1874
2002
|
name = "unicode-linebreak"
|
|
@@ -1897,15 +2025,21 @@ checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
|
|
|
1897
2025
|
|
|
1898
2026
|
[[package]]
|
|
1899
2027
|
name = "url"
|
|
1900
|
-
version = "2.
|
|
2028
|
+
version = "2.4.0"
|
|
1901
2029
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
-
checksum = "
|
|
2030
|
+
checksum = "50bff7831e19200a85b17131d085c25d7811bc4e186efdaf54bbd132994a88cb"
|
|
1903
2031
|
dependencies = [
|
|
1904
2032
|
"form_urlencoded",
|
|
1905
2033
|
"idna",
|
|
1906
2034
|
"percent-encoding",
|
|
1907
2035
|
]
|
|
1908
2036
|
|
|
2037
|
+
[[package]]
|
|
2038
|
+
name = "uuid"
|
|
2039
|
+
version = "1.4.0"
|
|
2040
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2041
|
+
checksum = "d023da39d1fde5a8a3fe1f3e01ca9632ada0a63e9797de55a879d6e2236277be"
|
|
2042
|
+
|
|
1909
2043
|
[[package]]
|
|
1910
2044
|
name = "valuable"
|
|
1911
2045
|
version = "0.1.0"
|
|
@@ -1914,9 +2048,9 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
|
1914
2048
|
|
|
1915
2049
|
[[package]]
|
|
1916
2050
|
name = "vergen"
|
|
1917
|
-
version = "7.
|
|
2051
|
+
version = "7.5.1"
|
|
1918
2052
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
-
checksum = "
|
|
2053
|
+
checksum = "f21b881cd6636ece9735721cf03c1fe1e774fe258683d084bb2812ab67435749"
|
|
1920
2054
|
dependencies = [
|
|
1921
2055
|
"anyhow",
|
|
1922
2056
|
"cfg-if",
|
|
@@ -1972,9 +2106,18 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
1972
2106
|
|
|
1973
2107
|
[[package]]
|
|
1974
2108
|
name = "windows-sys"
|
|
1975
|
-
version = "0.
|
|
2109
|
+
version = "0.48.0"
|
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2111
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2112
|
+
dependencies = [
|
|
2113
|
+
"windows-targets",
|
|
2114
|
+
]
|
|
2115
|
+
|
|
2116
|
+
[[package]]
|
|
2117
|
+
name = "windows-targets"
|
|
2118
|
+
version = "0.48.1"
|
|
1976
2119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
-
checksum = "
|
|
2120
|
+
checksum = "05d4b17490f70499f20b9e791dcf6a299785ce8af4d709018206dc5b4953e95f"
|
|
1978
2121
|
dependencies = [
|
|
1979
2122
|
"windows_aarch64_gnullvm",
|
|
1980
2123
|
"windows_aarch64_msvc",
|
|
@@ -1987,45 +2130,54 @@ dependencies = [
|
|
|
1987
2130
|
|
|
1988
2131
|
[[package]]
|
|
1989
2132
|
name = "windows_aarch64_gnullvm"
|
|
1990
|
-
version = "0.
|
|
2133
|
+
version = "0.48.0"
|
|
1991
2134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
-
checksum = "
|
|
2135
|
+
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
1993
2136
|
|
|
1994
2137
|
[[package]]
|
|
1995
2138
|
name = "windows_aarch64_msvc"
|
|
1996
|
-
version = "0.
|
|
2139
|
+
version = "0.48.0"
|
|
1997
2140
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
-
checksum = "
|
|
2141
|
+
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
1999
2142
|
|
|
2000
2143
|
[[package]]
|
|
2001
2144
|
name = "windows_i686_gnu"
|
|
2002
|
-
version = "0.
|
|
2145
|
+
version = "0.48.0"
|
|
2003
2146
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
-
checksum = "
|
|
2147
|
+
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
2005
2148
|
|
|
2006
2149
|
[[package]]
|
|
2007
2150
|
name = "windows_i686_msvc"
|
|
2008
|
-
version = "0.
|
|
2151
|
+
version = "0.48.0"
|
|
2009
2152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
-
checksum = "
|
|
2153
|
+
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
2011
2154
|
|
|
2012
2155
|
[[package]]
|
|
2013
2156
|
name = "windows_x86_64_gnu"
|
|
2014
|
-
version = "0.
|
|
2157
|
+
version = "0.48.0"
|
|
2015
2158
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
-
checksum = "
|
|
2159
|
+
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
2017
2160
|
|
|
2018
2161
|
[[package]]
|
|
2019
2162
|
name = "windows_x86_64_gnullvm"
|
|
2020
|
-
version = "0.
|
|
2163
|
+
version = "0.48.0"
|
|
2021
2164
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
-
checksum = "
|
|
2165
|
+
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
2023
2166
|
|
|
2024
2167
|
[[package]]
|
|
2025
2168
|
name = "windows_x86_64_msvc"
|
|
2026
|
-
version = "0.
|
|
2169
|
+
version = "0.48.0"
|
|
2170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2171
|
+
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
2172
|
+
|
|
2173
|
+
[[package]]
|
|
2174
|
+
name = "wyz"
|
|
2175
|
+
version = "0.5.1"
|
|
2027
2176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
2177
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
2178
|
+
dependencies = [
|
|
2179
|
+
"tap",
|
|
2180
|
+
]
|
|
2029
2181
|
|
|
2030
2182
|
[[package]]
|
|
2031
2183
|
name = "yansi"
|