@tarojs/helper 3.7.0-alpha.25 → 3.7.0-alpha.27
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/constants.d.ts +3 -3
- package/dist/constants.js +3 -3
- package/dist/constants.js.map +1 -1
- 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 +8 -2
- package/dist/utils.js +12 -3
- package/dist/utils.js.map +1 -1
- package/package.json +5 -5
- package/swc/plugin-compile-mode/.cargo/config +5 -0
- package/swc/plugin-compile-mode/.editorconfig +6 -0
- package/swc/plugin-compile-mode/.vscode/settings.json +3 -0
- package/swc/plugin-compile-mode/Cargo.lock +2021 -0
- package/swc/plugin-compile-mode/Cargo.toml +19 -0
- package/swc/plugin-compile-mode/package.json +15 -0
- package/swc/plugin-compile-mode/src/lib.rs +71 -0
- package/swc/plugin-compile-mode/src/tests/attributes.rs +54 -0
- package/swc/plugin-compile-mode/src/tests/children.rs +86 -0
- package/swc/plugin-compile-mode/src/tests/condition.rs +50 -0
- package/swc/plugin-compile-mode/src/tests/entry.rs +20 -0
- package/swc/plugin-compile-mode/src/tests/harmony/attributes.rs +45 -0
- package/swc/plugin-compile-mode/src/tests/harmony/children.rs +74 -0
- package/swc/plugin-compile-mode/src/tests/harmony/condition.rs +79 -0
- package/swc/plugin-compile-mode/src/tests/harmony/entry.rs +67 -0
- package/swc/plugin-compile-mode/src/tests/harmony/looping.rs +62 -0
- package/swc/plugin-compile-mode/src/tests/harmony/mod.rs +45 -0
- package/swc/plugin-compile-mode/src/tests/looping.rs +84 -0
- package/swc/plugin-compile-mode/src/tests/mod.rs +100 -0
- package/swc/plugin-compile-mode/src/tests/shake.rs +27 -0
- package/swc/plugin-compile-mode/src/transform.rs +480 -0
- package/swc/plugin-compile-mode/src/transform_harmony.rs +526 -0
- package/swc/plugin-compile-mode/src/utils/constants.rs +149 -0
- package/swc/plugin-compile-mode/src/utils/harmony/components.rs +61 -0
- package/swc/plugin-compile-mode/src/utils/harmony/mod.rs +1 -0
- package/swc/plugin-compile-mode/src/utils/mod.rs +346 -0
- package/swc/plugin-compile-mode/target/wasm32-wasi/release/swc_plugin_compile_mode.wasm +0 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/attributes.rs/should_handle_events.js +8 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/attributes.rs/should_keep_static_attrs_only_in_templates.js +8 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/attributes.rs/should_turn_dynamic_attrs.js +11 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_render_native_component.js +7 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_render_react_component.js +7 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_support_fragment.js +44 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/children.rs/should_support_render_fn.js +8 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/condition.rs/should_support_and_expr.js +14 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/condition.rs/should_support_conditional_expr.js +15 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/entry.rs/should_support_multi_compile_mode.js +10 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/attributes.rs/should_handle_events.js +181 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/attributes.rs/should_turn_dynamic_attrs.js +184 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/children.rs/should_render_react_component.js +75 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/children.rs/should_support_fragment.js +339 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/children.rs/should_support_render_fn.js +184 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_and_expr.js +209 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_complex_condition.js +242 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_conditional_and_unkonw_component.js +137 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/condition.rs/should_support_conditional_expr.js +342 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_compile_child_node.js +139 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_component_not_in_config.js +90 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_multi_compile_mode.js +206 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/entry.rs/should_support_single_compile_mode.js +65 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/looping.rs/should_loop_with_arrow_function_with_blockstmt.js +75 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/looping.rs/should_loop_with_arrow_function_with_blockstmt_and_set_parent_dynamic_id.js +88 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/harmony/looping.rs/should_loop_with_function_expr.js +85 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_loop_with_arrow_function_with_blockstmt.js +8 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_loop_with_arrow_function_with_expr.js +6 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_loop_with_function_expr.js +20 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/looping.rs/should_support_nested_loop.js +15 -0
- package/swc/plugin-compile-mode/tests/__swc_snapshots__/src/tests/shake.rs/should_static_jsx_being_shaked.js +20 -0
- package/swc/plugin-define-config/.cargo/config +5 -0
- package/swc/plugin-define-config/Cargo.lock +582 -506
- package/swc/plugin-define-config/Cargo.toml +2 -11
- package/swc/plugin-define-config/src/lib.rs +81 -128
- package/swc/plugin-define-config/target/wasm32-wasi/release/swc_plugin_define_config.wasm +0 -0
- package/swc/plugin-define-config/tests/__swc_snapshots__/src/lib.rs/module_decl_default_app.js +2 -0
- package/swc/plugin-define-config/tests/__swc_snapshots__/src/lib.rs/module_decl_default_page.js +2 -0
- package/swc/plugin-define-config/tests/__swc_snapshots__/src/lib.rs/module_exports.js +11 -0
- package/swc/plugin-define-config/tests/__swc_snapshots__/src/lib.rs/var_decl_app.js +3 -0
- package/swc/plugin-define-config/tests/__swc_snapshots__/src/lib.rs/var_decl_page.js +3 -0
|
@@ -14,9 +14,9 @@ dependencies = [
|
|
|
14
14
|
|
|
15
15
|
[[package]]
|
|
16
16
|
name = "addr2line"
|
|
17
|
-
version = "0.
|
|
17
|
+
version = "0.21.0"
|
|
18
18
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
19
|
-
checksum = "
|
|
19
|
+
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
|
20
20
|
dependencies = [
|
|
21
21
|
"gimli",
|
|
22
22
|
]
|
|
@@ -29,9 +29,9 @@ checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
|
|
29
29
|
|
|
30
30
|
[[package]]
|
|
31
31
|
name = "ahash"
|
|
32
|
-
version = "0.7.
|
|
32
|
+
version = "0.7.7"
|
|
33
33
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
34
|
-
checksum = "
|
|
34
|
+
checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd"
|
|
35
35
|
dependencies = [
|
|
36
36
|
"getrandom",
|
|
37
37
|
"once_cell",
|
|
@@ -40,9 +40,9 @@ dependencies = [
|
|
|
40
40
|
|
|
41
41
|
[[package]]
|
|
42
42
|
name = "aho-corasick"
|
|
43
|
-
version = "
|
|
43
|
+
version = "1.1.2"
|
|
44
44
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
45
|
-
checksum = "
|
|
45
|
+
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
|
46
46
|
dependencies = [
|
|
47
47
|
"memchr",
|
|
48
48
|
]
|
|
@@ -58,22 +58,21 @@ dependencies = [
|
|
|
58
58
|
|
|
59
59
|
[[package]]
|
|
60
60
|
name = "anyhow"
|
|
61
|
-
version = "1.0.
|
|
61
|
+
version = "1.0.75"
|
|
62
62
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
-
checksum = "
|
|
63
|
+
checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
|
|
64
64
|
|
|
65
65
|
[[package]]
|
|
66
66
|
name = "ast_node"
|
|
67
|
-
version = "0.
|
|
67
|
+
version = "0.9.5"
|
|
68
68
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
-
checksum = "
|
|
69
|
+
checksum = "c09c69dffe06d222d072c878c3afe86eee2179806f20503faec97250268b4c24"
|
|
70
70
|
dependencies = [
|
|
71
|
-
"darling",
|
|
72
71
|
"pmutil",
|
|
73
72
|
"proc-macro2",
|
|
74
73
|
"quote",
|
|
75
74
|
"swc_macros_common",
|
|
76
|
-
"syn",
|
|
75
|
+
"syn 2.0.39",
|
|
77
76
|
]
|
|
78
77
|
|
|
79
78
|
[[package]]
|
|
@@ -82,7 +81,7 @@ version = "0.2.14"
|
|
|
82
81
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
83
82
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
84
83
|
dependencies = [
|
|
85
|
-
"hermit-abi",
|
|
84
|
+
"hermit-abi 0.1.19",
|
|
86
85
|
"libc",
|
|
87
86
|
"winapi",
|
|
88
87
|
]
|
|
@@ -95,9 +94,9 @@ checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
|
|
95
94
|
|
|
96
95
|
[[package]]
|
|
97
96
|
name = "backtrace"
|
|
98
|
-
version = "0.3.
|
|
97
|
+
version = "0.3.69"
|
|
99
98
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
100
|
-
checksum = "
|
|
99
|
+
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
|
101
100
|
dependencies = [
|
|
102
101
|
"addr2line",
|
|
103
102
|
"cc",
|
|
@@ -116,9 +115,9 @@ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
|
|
116
115
|
|
|
117
116
|
[[package]]
|
|
118
117
|
name = "better_scoped_tls"
|
|
119
|
-
version = "0.1.
|
|
118
|
+
version = "0.1.1"
|
|
120
119
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
-
checksum = "
|
|
120
|
+
checksum = "794edcc9b3fb07bb4aecaa11f093fd45663b4feadb782d68303a2268bc2701de"
|
|
122
121
|
dependencies = [
|
|
123
122
|
"scoped-tls",
|
|
124
123
|
]
|
|
@@ -129,41 +128,95 @@ version = "1.3.2"
|
|
|
129
128
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
130
129
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
131
130
|
|
|
131
|
+
[[package]]
|
|
132
|
+
name = "bitflags"
|
|
133
|
+
version = "2.4.1"
|
|
134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
135
|
+
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
|
136
|
+
|
|
137
|
+
[[package]]
|
|
138
|
+
name = "bitvec"
|
|
139
|
+
version = "1.0.1"
|
|
140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
141
|
+
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
142
|
+
dependencies = [
|
|
143
|
+
"funty",
|
|
144
|
+
"radium",
|
|
145
|
+
"tap",
|
|
146
|
+
"wyz",
|
|
147
|
+
]
|
|
148
|
+
|
|
132
149
|
[[package]]
|
|
133
150
|
name = "block-buffer"
|
|
134
|
-
version = "0.10.
|
|
151
|
+
version = "0.10.4"
|
|
135
152
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
136
|
-
checksum = "
|
|
153
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
137
154
|
dependencies = [
|
|
138
155
|
"generic-array",
|
|
139
156
|
]
|
|
140
157
|
|
|
141
158
|
[[package]]
|
|
142
159
|
name = "bytecheck"
|
|
143
|
-
version = "0.6.
|
|
160
|
+
version = "0.6.11"
|
|
144
161
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
145
|
-
checksum = "
|
|
162
|
+
checksum = "8b6372023ac861f6e6dc89c8344a8f398fb42aaba2b5dbc649ca0c0e9dbcb627"
|
|
146
163
|
dependencies = [
|
|
147
164
|
"bytecheck_derive",
|
|
148
165
|
"ptr_meta",
|
|
166
|
+
"simdutf8",
|
|
149
167
|
]
|
|
150
168
|
|
|
151
169
|
[[package]]
|
|
152
170
|
name = "bytecheck_derive"
|
|
153
|
-
version = "0.6.
|
|
171
|
+
version = "0.6.11"
|
|
154
172
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
155
|
-
checksum = "
|
|
173
|
+
checksum = "a7ec4c6f261935ad534c0c22dbef2201b45918860eb1c574b972bd213a76af61"
|
|
156
174
|
dependencies = [
|
|
157
175
|
"proc-macro2",
|
|
158
176
|
"quote",
|
|
159
|
-
"syn",
|
|
177
|
+
"syn 1.0.109",
|
|
178
|
+
]
|
|
179
|
+
|
|
180
|
+
[[package]]
|
|
181
|
+
name = "camino"
|
|
182
|
+
version = "1.1.6"
|
|
183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
184
|
+
checksum = "c59e92b5a388f549b863a7bea62612c09f24c8393560709a54558a9abdfb3b9c"
|
|
185
|
+
dependencies = [
|
|
186
|
+
"serde",
|
|
187
|
+
]
|
|
188
|
+
|
|
189
|
+
[[package]]
|
|
190
|
+
name = "cargo-platform"
|
|
191
|
+
version = "0.1.4"
|
|
192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
193
|
+
checksum = "12024c4645c97566567129c204f65d5815a8c9aecf30fcbe682b2fe034996d36"
|
|
194
|
+
dependencies = [
|
|
195
|
+
"serde",
|
|
196
|
+
]
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "cargo_metadata"
|
|
200
|
+
version = "0.15.4"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
|
|
203
|
+
dependencies = [
|
|
204
|
+
"camino",
|
|
205
|
+
"cargo-platform",
|
|
206
|
+
"semver 1.0.20",
|
|
207
|
+
"serde",
|
|
208
|
+
"serde_json",
|
|
209
|
+
"thiserror",
|
|
160
210
|
]
|
|
161
211
|
|
|
162
212
|
[[package]]
|
|
163
213
|
name = "cc"
|
|
164
|
-
version = "1.0.
|
|
214
|
+
version = "1.0.83"
|
|
165
215
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
-
checksum = "
|
|
216
|
+
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"libc",
|
|
219
|
+
]
|
|
167
220
|
|
|
168
221
|
[[package]]
|
|
169
222
|
name = "cfg-if"
|
|
@@ -173,9 +226,9 @@ checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
173
226
|
|
|
174
227
|
[[package]]
|
|
175
228
|
name = "cpufeatures"
|
|
176
|
-
version = "0.2.
|
|
229
|
+
version = "0.2.11"
|
|
177
230
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
178
|
-
checksum = "
|
|
231
|
+
checksum = "ce420fe07aecd3e67c5f910618fe65e94158f6dcc0adf44e00d69ce2bdfe0fd0"
|
|
179
232
|
dependencies = [
|
|
180
233
|
"libc",
|
|
181
234
|
]
|
|
@@ -191,48 +244,28 @@ dependencies = [
|
|
|
191
244
|
]
|
|
192
245
|
|
|
193
246
|
[[package]]
|
|
194
|
-
name = "
|
|
195
|
-
version = "
|
|
247
|
+
name = "data-encoding"
|
|
248
|
+
version = "2.4.0"
|
|
196
249
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
-
checksum = "
|
|
198
|
-
dependencies = [
|
|
199
|
-
"quote",
|
|
200
|
-
"syn",
|
|
201
|
-
]
|
|
250
|
+
checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
|
|
202
251
|
|
|
203
252
|
[[package]]
|
|
204
|
-
name = "
|
|
205
|
-
version = "0.
|
|
253
|
+
name = "debugid"
|
|
254
|
+
version = "0.8.0"
|
|
206
255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
207
|
-
checksum = "
|
|
256
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
208
257
|
dependencies = [
|
|
209
|
-
"
|
|
210
|
-
"
|
|
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",
|
|
258
|
+
"serde",
|
|
259
|
+
"uuid",
|
|
225
260
|
]
|
|
226
261
|
|
|
227
262
|
[[package]]
|
|
228
|
-
name = "
|
|
229
|
-
version = "0.
|
|
263
|
+
name = "deranged"
|
|
264
|
+
version = "0.3.9"
|
|
230
265
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
-
checksum = "
|
|
266
|
+
checksum = "0f32d04922c60427da6f9fef14d042d9edddef64cb9d4ce0d64d0685fbeb1fd3"
|
|
232
267
|
dependencies = [
|
|
233
|
-
"
|
|
234
|
-
"quote",
|
|
235
|
-
"syn",
|
|
268
|
+
"powerfmt",
|
|
236
269
|
]
|
|
237
270
|
|
|
238
271
|
[[package]]
|
|
@@ -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,78 @@ dependencies = [
|
|
|
259
292
|
|
|
260
293
|
[[package]]
|
|
261
294
|
name = "either"
|
|
262
|
-
version = "1.
|
|
295
|
+
version = "1.9.0"
|
|
263
296
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
264
|
-
checksum = "
|
|
297
|
+
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
|
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.39",
|
|
284
317
|
]
|
|
285
318
|
|
|
286
319
|
[[package]]
|
|
287
|
-
name = "
|
|
288
|
-
version = "0.
|
|
320
|
+
name = "errno"
|
|
321
|
+
version = "0.3.6"
|
|
289
322
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
290
|
-
checksum = "
|
|
323
|
+
checksum = "7c18ee0ed65a5f1f81cac6b1d213b69c35fa47d4252ad41f1486dbd8226fe36e"
|
|
291
324
|
dependencies = [
|
|
292
|
-
"
|
|
293
|
-
"
|
|
294
|
-
"swc_macros_common",
|
|
295
|
-
"syn",
|
|
325
|
+
"libc",
|
|
326
|
+
"windows-sys",
|
|
296
327
|
]
|
|
297
328
|
|
|
298
329
|
[[package]]
|
|
299
330
|
name = "fastrand"
|
|
300
|
-
version = "
|
|
301
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
302
|
-
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
|
|
303
|
-
dependencies = [
|
|
304
|
-
"instant",
|
|
305
|
-
]
|
|
306
|
-
|
|
307
|
-
[[package]]
|
|
308
|
-
name = "fnv"
|
|
309
|
-
version = "1.0.7"
|
|
331
|
+
version = "2.0.1"
|
|
310
332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
311
|
-
checksum = "
|
|
333
|
+
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
|
312
334
|
|
|
313
335
|
[[package]]
|
|
314
336
|
name = "form_urlencoded"
|
|
315
|
-
version = "1.
|
|
337
|
+
version = "1.2.0"
|
|
316
338
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
317
|
-
checksum = "
|
|
339
|
+
checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
|
|
318
340
|
dependencies = [
|
|
319
341
|
"percent-encoding",
|
|
320
342
|
]
|
|
321
343
|
|
|
322
344
|
[[package]]
|
|
323
345
|
name = "from_variant"
|
|
324
|
-
version = "0.1.
|
|
346
|
+
version = "0.1.6"
|
|
325
347
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
-
checksum = "
|
|
348
|
+
checksum = "03ec5dc38ee19078d84a692b1c41181ff9f94331c76cee66ff0208c770b5e54f"
|
|
327
349
|
dependencies = [
|
|
328
350
|
"pmutil",
|
|
329
351
|
"proc-macro2",
|
|
330
352
|
"swc_macros_common",
|
|
331
|
-
"syn",
|
|
353
|
+
"syn 2.0.39",
|
|
332
354
|
]
|
|
333
355
|
|
|
356
|
+
[[package]]
|
|
357
|
+
name = "funty"
|
|
358
|
+
version = "2.0.0"
|
|
359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
360
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
361
|
+
|
|
334
362
|
[[package]]
|
|
335
363
|
name = "generic-array"
|
|
336
|
-
version = "0.14.
|
|
364
|
+
version = "0.14.7"
|
|
337
365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
-
checksum = "
|
|
366
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
339
367
|
dependencies = [
|
|
340
368
|
"typenum",
|
|
341
369
|
"version_check",
|
|
@@ -343,9 +371,9 @@ dependencies = [
|
|
|
343
371
|
|
|
344
372
|
[[package]]
|
|
345
373
|
name = "getrandom"
|
|
346
|
-
version = "0.2.
|
|
374
|
+
version = "0.2.11"
|
|
347
375
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
-
checksum = "
|
|
376
|
+
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
|
|
349
377
|
dependencies = [
|
|
350
378
|
"cfg-if",
|
|
351
379
|
"libc",
|
|
@@ -361,20 +389,20 @@ dependencies = [
|
|
|
361
389
|
"proc-macro-error",
|
|
362
390
|
"proc-macro2",
|
|
363
391
|
"quote",
|
|
364
|
-
"syn",
|
|
392
|
+
"syn 1.0.109",
|
|
365
393
|
]
|
|
366
394
|
|
|
367
395
|
[[package]]
|
|
368
396
|
name = "gimli"
|
|
369
|
-
version = "0.
|
|
397
|
+
version = "0.28.0"
|
|
370
398
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
-
checksum = "
|
|
399
|
+
checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
|
|
372
400
|
|
|
373
401
|
[[package]]
|
|
374
402
|
name = "glob"
|
|
375
|
-
version = "0.3.
|
|
403
|
+
version = "0.3.1"
|
|
376
404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
377
|
-
checksum = "
|
|
405
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
|
378
406
|
|
|
379
407
|
[[package]]
|
|
380
408
|
name = "hashbrown"
|
|
@@ -394,6 +422,12 @@ dependencies = [
|
|
|
394
422
|
"libc",
|
|
395
423
|
]
|
|
396
424
|
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "hermit-abi"
|
|
427
|
+
version = "0.3.3"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
|
430
|
+
|
|
397
431
|
[[package]]
|
|
398
432
|
name = "hex"
|
|
399
433
|
version = "0.4.3"
|
|
@@ -401,16 +435,23 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
401
435
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
402
436
|
|
|
403
437
|
[[package]]
|
|
404
|
-
name = "
|
|
405
|
-
version = "
|
|
438
|
+
name = "hstr"
|
|
439
|
+
version = "0.2.6"
|
|
406
440
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
407
|
-
checksum = "
|
|
441
|
+
checksum = "de90d3db62411eb62eddabe402d706ac4970f7ac8d088c05f11069cad9be9857"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"new_debug_unreachable",
|
|
444
|
+
"once_cell",
|
|
445
|
+
"phf 0.11.2",
|
|
446
|
+
"rustc-hash",
|
|
447
|
+
"smallvec",
|
|
448
|
+
]
|
|
408
449
|
|
|
409
450
|
[[package]]
|
|
410
451
|
name = "idna"
|
|
411
|
-
version = "0.
|
|
452
|
+
version = "0.4.0"
|
|
412
453
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
413
|
-
checksum = "
|
|
454
|
+
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
|
|
414
455
|
dependencies = [
|
|
415
456
|
"unicode-bidi",
|
|
416
457
|
"unicode-normalization",
|
|
@@ -424,34 +465,25 @@ checksum = "cb56e1aa765b4b4f3aadfab769793b7087bb03a4ea4920644a6d238e2df5b9ed"
|
|
|
424
465
|
|
|
425
466
|
[[package]]
|
|
426
467
|
name = "indexmap"
|
|
427
|
-
version = "1.9.
|
|
468
|
+
version = "1.9.3"
|
|
428
469
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
-
checksum = "
|
|
470
|
+
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
430
471
|
dependencies = [
|
|
431
472
|
"autocfg",
|
|
432
473
|
"hashbrown",
|
|
433
474
|
]
|
|
434
475
|
|
|
435
|
-
[[package]]
|
|
436
|
-
name = "instant"
|
|
437
|
-
version = "0.1.12"
|
|
438
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
439
|
-
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
440
|
-
dependencies = [
|
|
441
|
-
"cfg-if",
|
|
442
|
-
]
|
|
443
|
-
|
|
444
476
|
[[package]]
|
|
445
477
|
name = "is-macro"
|
|
446
|
-
version = "0.
|
|
478
|
+
version = "0.3.0"
|
|
447
479
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
448
|
-
checksum = "
|
|
480
|
+
checksum = "f4467ed1321b310c2625c5aa6c1b1ffc5de4d9e42668cf697a08fb033ee8265e"
|
|
449
481
|
dependencies = [
|
|
450
482
|
"Inflector",
|
|
451
483
|
"pmutil",
|
|
452
484
|
"proc-macro2",
|
|
453
485
|
"quote",
|
|
454
|
-
"syn",
|
|
486
|
+
"syn 2.0.39",
|
|
455
487
|
]
|
|
456
488
|
|
|
457
489
|
[[package]]
|
|
@@ -462,9 +494,9 @@ checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
|
|
|
462
494
|
|
|
463
495
|
[[package]]
|
|
464
496
|
name = "itoa"
|
|
465
|
-
version = "1.0.
|
|
497
|
+
version = "1.0.9"
|
|
466
498
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
-
checksum = "
|
|
499
|
+
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
|
|
468
500
|
|
|
469
501
|
[[package]]
|
|
470
502
|
name = "lazy_static"
|
|
@@ -473,89 +505,22 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
473
505
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
474
506
|
|
|
475
507
|
[[package]]
|
|
476
|
-
name = "
|
|
477
|
-
version = "
|
|
478
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
479
|
-
checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
|
|
480
|
-
dependencies = [
|
|
481
|
-
"lexical-core",
|
|
482
|
-
]
|
|
483
|
-
|
|
484
|
-
[[package]]
|
|
485
|
-
name = "lexical-core"
|
|
486
|
-
version = "0.8.5"
|
|
487
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
-
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
|
|
489
|
-
dependencies = [
|
|
490
|
-
"lexical-parse-float",
|
|
491
|
-
"lexical-parse-integer",
|
|
492
|
-
"lexical-util",
|
|
493
|
-
"lexical-write-float",
|
|
494
|
-
"lexical-write-integer",
|
|
495
|
-
]
|
|
496
|
-
|
|
497
|
-
[[package]]
|
|
498
|
-
name = "lexical-parse-float"
|
|
499
|
-
version = "0.8.5"
|
|
500
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
501
|
-
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
|
|
502
|
-
dependencies = [
|
|
503
|
-
"lexical-parse-integer",
|
|
504
|
-
"lexical-util",
|
|
505
|
-
"static_assertions",
|
|
506
|
-
]
|
|
507
|
-
|
|
508
|
-
[[package]]
|
|
509
|
-
name = "lexical-parse-integer"
|
|
510
|
-
version = "0.8.6"
|
|
511
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
-
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
|
|
513
|
-
dependencies = [
|
|
514
|
-
"lexical-util",
|
|
515
|
-
"static_assertions",
|
|
516
|
-
]
|
|
517
|
-
|
|
518
|
-
[[package]]
|
|
519
|
-
name = "lexical-util"
|
|
520
|
-
version = "0.8.5"
|
|
521
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
522
|
-
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
|
|
523
|
-
dependencies = [
|
|
524
|
-
"static_assertions",
|
|
525
|
-
]
|
|
526
|
-
|
|
527
|
-
[[package]]
|
|
528
|
-
name = "lexical-write-float"
|
|
529
|
-
version = "0.8.5"
|
|
530
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
531
|
-
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
|
|
532
|
-
dependencies = [
|
|
533
|
-
"lexical-util",
|
|
534
|
-
"lexical-write-integer",
|
|
535
|
-
"static_assertions",
|
|
536
|
-
]
|
|
537
|
-
|
|
538
|
-
[[package]]
|
|
539
|
-
name = "lexical-write-integer"
|
|
540
|
-
version = "0.8.5"
|
|
508
|
+
name = "libc"
|
|
509
|
+
version = "0.2.150"
|
|
541
510
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
-
checksum = "
|
|
543
|
-
dependencies = [
|
|
544
|
-
"lexical-util",
|
|
545
|
-
"static_assertions",
|
|
546
|
-
]
|
|
511
|
+
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c"
|
|
547
512
|
|
|
548
513
|
[[package]]
|
|
549
|
-
name = "
|
|
550
|
-
version = "0.
|
|
514
|
+
name = "linux-raw-sys"
|
|
515
|
+
version = "0.4.11"
|
|
551
516
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
552
|
-
checksum = "
|
|
517
|
+
checksum = "969488b55f8ac402214f3f5fd243ebb7206cf82de60d3172994707a4bcc2b829"
|
|
553
518
|
|
|
554
519
|
[[package]]
|
|
555
520
|
name = "lock_api"
|
|
556
|
-
version = "0.4.
|
|
521
|
+
version = "0.4.11"
|
|
557
522
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
558
|
-
checksum = "
|
|
523
|
+
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
|
559
524
|
dependencies = [
|
|
560
525
|
"autocfg",
|
|
561
526
|
"scopeguard",
|
|
@@ -563,12 +528,9 @@ dependencies = [
|
|
|
563
528
|
|
|
564
529
|
[[package]]
|
|
565
530
|
name = "log"
|
|
566
|
-
version = "0.4.
|
|
531
|
+
version = "0.4.20"
|
|
567
532
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
568
|
-
checksum = "
|
|
569
|
-
dependencies = [
|
|
570
|
-
"cfg-if",
|
|
571
|
-
]
|
|
533
|
+
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
|
572
534
|
|
|
573
535
|
[[package]]
|
|
574
536
|
name = "matchers"
|
|
@@ -576,14 +538,14 @@ version = "0.1.0"
|
|
|
576
538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
577
539
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
578
540
|
dependencies = [
|
|
579
|
-
"regex-automata",
|
|
541
|
+
"regex-automata 0.1.10",
|
|
580
542
|
]
|
|
581
543
|
|
|
582
544
|
[[package]]
|
|
583
545
|
name = "memchr"
|
|
584
|
-
version = "2.
|
|
546
|
+
version = "2.6.4"
|
|
585
547
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
586
|
-
checksum = "
|
|
548
|
+
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167"
|
|
587
549
|
|
|
588
550
|
[[package]]
|
|
589
551
|
name = "miette"
|
|
@@ -613,14 +575,14 @@ checksum = "6b5bc45b761bcf1b5e6e6c4128cd93b84c218721a8d9b894aa0aff4ed180174c"
|
|
|
613
575
|
dependencies = [
|
|
614
576
|
"proc-macro2",
|
|
615
577
|
"quote",
|
|
616
|
-
"syn",
|
|
578
|
+
"syn 1.0.109",
|
|
617
579
|
]
|
|
618
580
|
|
|
619
581
|
[[package]]
|
|
620
582
|
name = "miniz_oxide"
|
|
621
|
-
version = "0.
|
|
583
|
+
version = "0.7.1"
|
|
622
584
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
623
|
-
checksum = "
|
|
585
|
+
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
|
624
586
|
dependencies = [
|
|
625
587
|
"adler",
|
|
626
588
|
]
|
|
@@ -643,9 +605,9 @@ dependencies = [
|
|
|
643
605
|
|
|
644
606
|
[[package]]
|
|
645
607
|
name = "num-bigint"
|
|
646
|
-
version = "0.4.
|
|
608
|
+
version = "0.4.4"
|
|
647
609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
-
checksum = "
|
|
610
|
+
checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
|
|
649
611
|
dependencies = [
|
|
650
612
|
"autocfg",
|
|
651
613
|
"num-integer",
|
|
@@ -665,55 +627,37 @@ dependencies = [
|
|
|
665
627
|
|
|
666
628
|
[[package]]
|
|
667
629
|
name = "num-traits"
|
|
668
|
-
version = "0.2.
|
|
630
|
+
version = "0.2.17"
|
|
669
631
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
670
|
-
checksum = "
|
|
632
|
+
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
|
671
633
|
dependencies = [
|
|
672
634
|
"autocfg",
|
|
673
635
|
]
|
|
674
636
|
|
|
675
637
|
[[package]]
|
|
676
638
|
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"
|
|
639
|
+
version = "1.16.0"
|
|
688
640
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
689
|
-
checksum = "
|
|
641
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
|
690
642
|
dependencies = [
|
|
643
|
+
"hermit-abi 0.3.3",
|
|
691
644
|
"libc",
|
|
692
645
|
]
|
|
693
646
|
|
|
694
647
|
[[package]]
|
|
695
648
|
name = "object"
|
|
696
|
-
version = "0.
|
|
649
|
+
version = "0.32.1"
|
|
697
650
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
-
checksum = "
|
|
651
|
+
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
|
|
699
652
|
dependencies = [
|
|
700
653
|
"memchr",
|
|
701
654
|
]
|
|
702
655
|
|
|
703
656
|
[[package]]
|
|
704
657
|
name = "once_cell"
|
|
705
|
-
version = "1.
|
|
658
|
+
version = "1.18.0"
|
|
706
659
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
707
|
-
checksum = "
|
|
708
|
-
|
|
709
|
-
[[package]]
|
|
710
|
-
name = "output_vt100"
|
|
711
|
-
version = "0.1.3"
|
|
712
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
713
|
-
checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66"
|
|
714
|
-
dependencies = [
|
|
715
|
-
"winapi",
|
|
716
|
-
]
|
|
660
|
+
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
|
|
717
661
|
|
|
718
662
|
[[package]]
|
|
719
663
|
name = "overload"
|
|
@@ -739,22 +683,22 @@ dependencies = [
|
|
|
739
683
|
|
|
740
684
|
[[package]]
|
|
741
685
|
name = "parking_lot_core"
|
|
742
|
-
version = "0.9.
|
|
686
|
+
version = "0.9.9"
|
|
743
687
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
-
checksum = "
|
|
688
|
+
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
|
745
689
|
dependencies = [
|
|
746
690
|
"cfg-if",
|
|
747
691
|
"libc",
|
|
748
692
|
"redox_syscall",
|
|
749
693
|
"smallvec",
|
|
750
|
-
"windows-
|
|
694
|
+
"windows-targets",
|
|
751
695
|
]
|
|
752
696
|
|
|
753
697
|
[[package]]
|
|
754
698
|
name = "percent-encoding"
|
|
755
|
-
version = "2.
|
|
699
|
+
version = "2.3.0"
|
|
756
700
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
757
|
-
checksum = "
|
|
701
|
+
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
|
|
758
702
|
|
|
759
703
|
[[package]]
|
|
760
704
|
name = "phf"
|
|
@@ -762,18 +706,38 @@ version = "0.10.1"
|
|
|
762
706
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
763
707
|
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
|
764
708
|
dependencies = [
|
|
765
|
-
"phf_macros",
|
|
766
|
-
"phf_shared",
|
|
709
|
+
"phf_macros 0.10.0",
|
|
710
|
+
"phf_shared 0.10.0",
|
|
767
711
|
"proc-macro-hack",
|
|
768
712
|
]
|
|
769
713
|
|
|
714
|
+
[[package]]
|
|
715
|
+
name = "phf"
|
|
716
|
+
version = "0.11.2"
|
|
717
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
718
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
|
719
|
+
dependencies = [
|
|
720
|
+
"phf_macros 0.11.2",
|
|
721
|
+
"phf_shared 0.11.2",
|
|
722
|
+
]
|
|
723
|
+
|
|
770
724
|
[[package]]
|
|
771
725
|
name = "phf_generator"
|
|
772
726
|
version = "0.10.0"
|
|
773
727
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
774
728
|
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
|
|
775
729
|
dependencies = [
|
|
776
|
-
"phf_shared",
|
|
730
|
+
"phf_shared 0.10.0",
|
|
731
|
+
"rand",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "phf_generator"
|
|
736
|
+
version = "0.11.2"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"phf_shared 0.11.2",
|
|
777
741
|
"rand",
|
|
778
742
|
]
|
|
779
743
|
|
|
@@ -783,12 +747,25 @@ version = "0.10.0"
|
|
|
783
747
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
748
|
checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
|
|
785
749
|
dependencies = [
|
|
786
|
-
"phf_generator",
|
|
787
|
-
"phf_shared",
|
|
750
|
+
"phf_generator 0.10.0",
|
|
751
|
+
"phf_shared 0.10.0",
|
|
788
752
|
"proc-macro-hack",
|
|
789
753
|
"proc-macro2",
|
|
790
754
|
"quote",
|
|
791
|
-
"syn",
|
|
755
|
+
"syn 1.0.109",
|
|
756
|
+
]
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "phf_macros"
|
|
760
|
+
version = "0.11.2"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"phf_generator 0.11.2",
|
|
765
|
+
"phf_shared 0.11.2",
|
|
766
|
+
"proc-macro2",
|
|
767
|
+
"quote",
|
|
768
|
+
"syn 2.0.39",
|
|
792
769
|
]
|
|
793
770
|
|
|
794
771
|
[[package]]
|
|
@@ -800,28 +777,43 @@ dependencies = [
|
|
|
800
777
|
"siphasher",
|
|
801
778
|
]
|
|
802
779
|
|
|
780
|
+
[[package]]
|
|
781
|
+
name = "phf_shared"
|
|
782
|
+
version = "0.11.2"
|
|
783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
784
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
|
785
|
+
dependencies = [
|
|
786
|
+
"siphasher",
|
|
787
|
+
]
|
|
788
|
+
|
|
803
789
|
[[package]]
|
|
804
790
|
name = "pin-project-lite"
|
|
805
|
-
version = "0.2.
|
|
791
|
+
version = "0.2.13"
|
|
806
792
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
-
checksum = "
|
|
793
|
+
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
|
808
794
|
|
|
809
795
|
[[package]]
|
|
810
796
|
name = "pmutil"
|
|
811
|
-
version = "0.
|
|
797
|
+
version = "0.6.1"
|
|
812
798
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
813
|
-
checksum = "
|
|
799
|
+
checksum = "52a40bc70c2c58040d2d8b167ba9a5ff59fc9dab7ad44771cfde3dcfde7a09c6"
|
|
814
800
|
dependencies = [
|
|
815
801
|
"proc-macro2",
|
|
816
802
|
"quote",
|
|
817
|
-
"syn",
|
|
803
|
+
"syn 2.0.39",
|
|
818
804
|
]
|
|
819
805
|
|
|
806
|
+
[[package]]
|
|
807
|
+
name = "powerfmt"
|
|
808
|
+
version = "0.2.0"
|
|
809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
810
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
811
|
+
|
|
820
812
|
[[package]]
|
|
821
813
|
name = "ppv-lite86"
|
|
822
|
-
version = "0.2.
|
|
814
|
+
version = "0.2.17"
|
|
823
815
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
824
|
-
checksum = "
|
|
816
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
|
825
817
|
|
|
826
818
|
[[package]]
|
|
827
819
|
name = "precomputed-hash"
|
|
@@ -831,13 +823,11 @@ checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
831
823
|
|
|
832
824
|
[[package]]
|
|
833
825
|
name = "pretty_assertions"
|
|
834
|
-
version = "1.
|
|
826
|
+
version = "1.4.0"
|
|
835
827
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
-
checksum = "
|
|
828
|
+
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
|
|
837
829
|
dependencies = [
|
|
838
|
-
"ctor",
|
|
839
830
|
"diff",
|
|
840
|
-
"output_vt100",
|
|
841
831
|
"yansi",
|
|
842
832
|
]
|
|
843
833
|
|
|
@@ -850,7 +840,7 @@ dependencies = [
|
|
|
850
840
|
"proc-macro-error-attr",
|
|
851
841
|
"proc-macro2",
|
|
852
842
|
"quote",
|
|
853
|
-
"syn",
|
|
843
|
+
"syn 1.0.109",
|
|
854
844
|
"version_check",
|
|
855
845
|
]
|
|
856
846
|
|
|
@@ -867,19 +857,28 @@ dependencies = [
|
|
|
867
857
|
|
|
868
858
|
[[package]]
|
|
869
859
|
name = "proc-macro-hack"
|
|
870
|
-
version = "0.5.
|
|
860
|
+
version = "0.5.20+deprecated"
|
|
871
861
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
872
|
-
checksum = "
|
|
862
|
+
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
873
863
|
|
|
874
864
|
[[package]]
|
|
875
865
|
name = "proc-macro2"
|
|
876
|
-
version = "1.0.
|
|
866
|
+
version = "1.0.69"
|
|
877
867
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
878
|
-
checksum = "
|
|
868
|
+
checksum = "134c189feb4956b20f6f547d2cf727d4c0fe06722b20a0eec87ed445a97f92da"
|
|
879
869
|
dependencies = [
|
|
880
870
|
"unicode-ident",
|
|
881
871
|
]
|
|
882
872
|
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "psm"
|
|
875
|
+
version = "0.1.21"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "5787f7cda34e3033a72192c018bc5883100330f362ef279a8cbccfce8bb4e874"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"cc",
|
|
880
|
+
]
|
|
881
|
+
|
|
883
882
|
[[package]]
|
|
884
883
|
name = "ptr_meta"
|
|
885
884
|
version = "0.1.4"
|
|
@@ -897,18 +896,24 @@ checksum = "16b845dbfca988fa33db069c0e230574d15a3088f147a87b64c7589eb662c9ac"
|
|
|
897
896
|
dependencies = [
|
|
898
897
|
"proc-macro2",
|
|
899
898
|
"quote",
|
|
900
|
-
"syn",
|
|
899
|
+
"syn 1.0.109",
|
|
901
900
|
]
|
|
902
901
|
|
|
903
902
|
[[package]]
|
|
904
903
|
name = "quote"
|
|
905
|
-
version = "1.0.
|
|
904
|
+
version = "1.0.33"
|
|
906
905
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
907
|
-
checksum = "
|
|
906
|
+
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
|
|
908
907
|
dependencies = [
|
|
909
908
|
"proc-macro2",
|
|
910
909
|
]
|
|
911
910
|
|
|
911
|
+
[[package]]
|
|
912
|
+
name = "radium"
|
|
913
|
+
version = "0.7.0"
|
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
915
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
916
|
+
|
|
912
917
|
[[package]]
|
|
913
918
|
name = "rand"
|
|
914
919
|
version = "0.8.5"
|
|
@@ -941,22 +946,23 @@ dependencies = [
|
|
|
941
946
|
|
|
942
947
|
[[package]]
|
|
943
948
|
name = "redox_syscall"
|
|
944
|
-
version = "0.
|
|
949
|
+
version = "0.4.1"
|
|
945
950
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
946
|
-
checksum = "
|
|
951
|
+
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
|
947
952
|
dependencies = [
|
|
948
|
-
"bitflags",
|
|
953
|
+
"bitflags 1.3.2",
|
|
949
954
|
]
|
|
950
955
|
|
|
951
956
|
[[package]]
|
|
952
957
|
name = "regex"
|
|
953
|
-
version = "1.
|
|
958
|
+
version = "1.10.2"
|
|
954
959
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
955
|
-
checksum = "
|
|
960
|
+
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
|
956
961
|
dependencies = [
|
|
957
962
|
"aho-corasick",
|
|
958
963
|
"memchr",
|
|
959
|
-
"regex-
|
|
964
|
+
"regex-automata 0.4.3",
|
|
965
|
+
"regex-syntax 0.8.2",
|
|
960
966
|
]
|
|
961
967
|
|
|
962
968
|
[[package]]
|
|
@@ -965,69 +971,80 @@ version = "0.1.10"
|
|
|
965
971
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
972
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
967
973
|
dependencies = [
|
|
968
|
-
"regex-syntax",
|
|
974
|
+
"regex-syntax 0.6.29",
|
|
975
|
+
]
|
|
976
|
+
|
|
977
|
+
[[package]]
|
|
978
|
+
name = "regex-automata"
|
|
979
|
+
version = "0.4.3"
|
|
980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
+
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
|
982
|
+
dependencies = [
|
|
983
|
+
"aho-corasick",
|
|
984
|
+
"memchr",
|
|
985
|
+
"regex-syntax 0.8.2",
|
|
969
986
|
]
|
|
970
987
|
|
|
971
988
|
[[package]]
|
|
972
989
|
name = "regex-syntax"
|
|
973
|
-
version = "0.6.
|
|
990
|
+
version = "0.6.29"
|
|
974
991
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
975
|
-
checksum = "
|
|
992
|
+
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
|
976
993
|
|
|
977
994
|
[[package]]
|
|
978
|
-
name = "
|
|
979
|
-
version = "
|
|
995
|
+
name = "regex-syntax"
|
|
996
|
+
version = "0.8.2"
|
|
980
997
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
981
|
-
checksum = "
|
|
998
|
+
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
|
982
999
|
|
|
983
1000
|
[[package]]
|
|
984
|
-
name = "
|
|
985
|
-
version = "
|
|
1001
|
+
name = "relative-path"
|
|
1002
|
+
version = "1.9.0"
|
|
986
1003
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
987
|
-
checksum = "
|
|
988
|
-
dependencies = [
|
|
989
|
-
"winapi",
|
|
990
|
-
]
|
|
1004
|
+
checksum = "c707298afce11da2efef2f600116fa93ffa7a032b5d7b628aa17711ec81383ca"
|
|
991
1005
|
|
|
992
1006
|
[[package]]
|
|
993
1007
|
name = "rend"
|
|
994
|
-
version = "0.
|
|
1008
|
+
version = "0.4.1"
|
|
995
1009
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
-
checksum = "
|
|
1010
|
+
checksum = "a2571463863a6bd50c32f94402933f03457a3fbaf697a707c5be741e459f08fd"
|
|
997
1011
|
dependencies = [
|
|
998
1012
|
"bytecheck",
|
|
999
1013
|
]
|
|
1000
1014
|
|
|
1001
1015
|
[[package]]
|
|
1002
1016
|
name = "rkyv"
|
|
1003
|
-
version = "0.7.
|
|
1017
|
+
version = "0.7.42"
|
|
1004
1018
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
-
checksum = "
|
|
1019
|
+
checksum = "0200c8230b013893c0b2d6213d6ec64ed2b9be2e0e016682b7224ff82cff5c58"
|
|
1006
1020
|
dependencies = [
|
|
1021
|
+
"bitvec",
|
|
1007
1022
|
"bytecheck",
|
|
1008
1023
|
"hashbrown",
|
|
1009
1024
|
"ptr_meta",
|
|
1010
1025
|
"rend",
|
|
1011
1026
|
"rkyv_derive",
|
|
1012
1027
|
"seahash",
|
|
1028
|
+
"tinyvec",
|
|
1029
|
+
"uuid",
|
|
1013
1030
|
]
|
|
1014
1031
|
|
|
1015
1032
|
[[package]]
|
|
1016
1033
|
name = "rkyv_derive"
|
|
1017
|
-
version = "0.7.
|
|
1034
|
+
version = "0.7.42"
|
|
1018
1035
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1019
|
-
checksum = "
|
|
1036
|
+
checksum = "b2e06b915b5c230a17d7a736d1e2e63ee753c256a8614ef3f5147b13a4f5541d"
|
|
1020
1037
|
dependencies = [
|
|
1021
1038
|
"proc-macro2",
|
|
1022
1039
|
"quote",
|
|
1023
|
-
"syn",
|
|
1040
|
+
"syn 1.0.109",
|
|
1024
1041
|
]
|
|
1025
1042
|
|
|
1026
1043
|
[[package]]
|
|
1027
1044
|
name = "rustc-demangle"
|
|
1028
|
-
version = "0.1.
|
|
1045
|
+
version = "0.1.23"
|
|
1029
1046
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1030
|
-
checksum = "
|
|
1047
|
+
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
1031
1048
|
|
|
1032
1049
|
[[package]]
|
|
1033
1050
|
name = "rustc-hash"
|
|
@@ -1041,20 +1058,33 @@ version = "0.2.3"
|
|
|
1041
1058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1042
1059
|
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
|
1043
1060
|
dependencies = [
|
|
1044
|
-
"semver",
|
|
1061
|
+
"semver 0.9.0",
|
|
1062
|
+
]
|
|
1063
|
+
|
|
1064
|
+
[[package]]
|
|
1065
|
+
name = "rustix"
|
|
1066
|
+
version = "0.38.21"
|
|
1067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1068
|
+
checksum = "2b426b0506e5d50a7d8dafcf2e81471400deb602392c7dd110815afb4eaf02a3"
|
|
1069
|
+
dependencies = [
|
|
1070
|
+
"bitflags 2.4.1",
|
|
1071
|
+
"errno",
|
|
1072
|
+
"libc",
|
|
1073
|
+
"linux-raw-sys",
|
|
1074
|
+
"windows-sys",
|
|
1045
1075
|
]
|
|
1046
1076
|
|
|
1047
1077
|
[[package]]
|
|
1048
1078
|
name = "rustversion"
|
|
1049
|
-
version = "1.0.
|
|
1079
|
+
version = "1.0.14"
|
|
1050
1080
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1051
|
-
checksum = "
|
|
1081
|
+
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
|
1052
1082
|
|
|
1053
1083
|
[[package]]
|
|
1054
1084
|
name = "ryu"
|
|
1055
|
-
version = "1.0.
|
|
1085
|
+
version = "1.0.15"
|
|
1056
1086
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
-
checksum = "
|
|
1087
|
+
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
|
|
1058
1088
|
|
|
1059
1089
|
[[package]]
|
|
1060
1090
|
name = "scoped-tls"
|
|
@@ -1064,9 +1094,9 @@ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
|
1064
1094
|
|
|
1065
1095
|
[[package]]
|
|
1066
1096
|
name = "scopeguard"
|
|
1067
|
-
version = "1.
|
|
1097
|
+
version = "1.2.0"
|
|
1068
1098
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1069
|
-
checksum = "
|
|
1099
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1070
1100
|
|
|
1071
1101
|
[[package]]
|
|
1072
1102
|
name = "seahash"
|
|
@@ -1083,6 +1113,15 @@ dependencies = [
|
|
|
1083
1113
|
"semver-parser",
|
|
1084
1114
|
]
|
|
1085
1115
|
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "semver"
|
|
1118
|
+
version = "1.0.20"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "836fa6a3e1e547f9a2c4040802ec865b5d85f4014efe00555d7090a3dcaa1090"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"serde",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1086
1125
|
[[package]]
|
|
1087
1126
|
name = "semver-parser"
|
|
1088
1127
|
version = "0.7.0"
|
|
@@ -1091,29 +1130,29 @@ checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
1091
1130
|
|
|
1092
1131
|
[[package]]
|
|
1093
1132
|
name = "serde"
|
|
1094
|
-
version = "1.0.
|
|
1133
|
+
version = "1.0.192"
|
|
1095
1134
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
-
checksum = "
|
|
1135
|
+
checksum = "bca2a08484b285dcb282d0f67b26cadc0df8b19f8c12502c13d966bf9482f001"
|
|
1097
1136
|
dependencies = [
|
|
1098
1137
|
"serde_derive",
|
|
1099
1138
|
]
|
|
1100
1139
|
|
|
1101
1140
|
[[package]]
|
|
1102
1141
|
name = "serde_derive"
|
|
1103
|
-
version = "1.0.
|
|
1142
|
+
version = "1.0.192"
|
|
1104
1143
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1105
|
-
checksum = "
|
|
1144
|
+
checksum = "d6c7207fbec9faa48073f3e3074cbe553af6ea512d7c21ba46e434e70ea9fbc1"
|
|
1106
1145
|
dependencies = [
|
|
1107
1146
|
"proc-macro2",
|
|
1108
1147
|
"quote",
|
|
1109
|
-
"syn",
|
|
1148
|
+
"syn 2.0.39",
|
|
1110
1149
|
]
|
|
1111
1150
|
|
|
1112
1151
|
[[package]]
|
|
1113
1152
|
name = "serde_json"
|
|
1114
|
-
version = "1.0.
|
|
1153
|
+
version = "1.0.108"
|
|
1115
1154
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1116
|
-
checksum = "
|
|
1155
|
+
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b"
|
|
1117
1156
|
dependencies = [
|
|
1118
1157
|
"itoa",
|
|
1119
1158
|
"ryu",
|
|
@@ -1122,9 +1161,9 @@ dependencies = [
|
|
|
1122
1161
|
|
|
1123
1162
|
[[package]]
|
|
1124
1163
|
name = "sha-1"
|
|
1125
|
-
version = "0.10.
|
|
1164
|
+
version = "0.10.1"
|
|
1126
1165
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1127
|
-
checksum = "
|
|
1166
|
+
checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
|
|
1128
1167
|
dependencies = [
|
|
1129
1168
|
"cfg-if",
|
|
1130
1169
|
"cpufeatures",
|
|
@@ -1133,52 +1172,76 @@ dependencies = [
|
|
|
1133
1172
|
|
|
1134
1173
|
[[package]]
|
|
1135
1174
|
name = "sharded-slab"
|
|
1136
|
-
version = "0.1.
|
|
1175
|
+
version = "0.1.7"
|
|
1137
1176
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1138
|
-
checksum = "
|
|
1177
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1139
1178
|
dependencies = [
|
|
1140
1179
|
"lazy_static",
|
|
1141
1180
|
]
|
|
1142
1181
|
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "simdutf8"
|
|
1184
|
+
version = "0.1.4"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "f27f6278552951f1f2b8cf9da965d10969b2efdea95a6ec47987ab46edfe263a"
|
|
1187
|
+
|
|
1143
1188
|
[[package]]
|
|
1144
1189
|
name = "siphasher"
|
|
1145
|
-
version = "0.3.
|
|
1190
|
+
version = "0.3.11"
|
|
1146
1191
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1147
|
-
checksum = "
|
|
1192
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
1148
1193
|
|
|
1149
1194
|
[[package]]
|
|
1150
1195
|
name = "smallvec"
|
|
1151
|
-
version = "1.
|
|
1196
|
+
version = "1.11.1"
|
|
1152
1197
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
-
checksum = "
|
|
1198
|
+
checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
|
|
1199
|
+
|
|
1200
|
+
[[package]]
|
|
1201
|
+
name = "smartstring"
|
|
1202
|
+
version = "1.0.1"
|
|
1203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1204
|
+
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
|
1205
|
+
dependencies = [
|
|
1206
|
+
"autocfg",
|
|
1207
|
+
"static_assertions",
|
|
1208
|
+
"version_check",
|
|
1209
|
+
]
|
|
1154
1210
|
|
|
1155
1211
|
[[package]]
|
|
1156
1212
|
name = "smawk"
|
|
1157
|
-
version = "0.3.
|
|
1213
|
+
version = "0.3.2"
|
|
1158
1214
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1159
|
-
checksum = "
|
|
1215
|
+
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
1160
1216
|
|
|
1161
1217
|
[[package]]
|
|
1162
1218
|
name = "sourcemap"
|
|
1163
|
-
version = "6.
|
|
1219
|
+
version = "6.4.1"
|
|
1164
1220
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1165
|
-
checksum = "
|
|
1221
|
+
checksum = "e4cbf65ca7dc576cf50e21f8d0712d96d4fcfd797389744b7b222a85cdf5bd90"
|
|
1166
1222
|
dependencies = [
|
|
1167
|
-
"
|
|
1223
|
+
"data-encoding",
|
|
1224
|
+
"debugid",
|
|
1168
1225
|
"if_chain",
|
|
1169
|
-
"lazy_static",
|
|
1170
|
-
"regex",
|
|
1171
1226
|
"rustc_version",
|
|
1172
1227
|
"serde",
|
|
1173
1228
|
"serde_json",
|
|
1229
|
+
"unicode-id",
|
|
1174
1230
|
"url",
|
|
1175
1231
|
]
|
|
1176
1232
|
|
|
1177
1233
|
[[package]]
|
|
1178
|
-
name = "
|
|
1179
|
-
version = "1.
|
|
1234
|
+
name = "stacker"
|
|
1235
|
+
version = "0.1.15"
|
|
1180
1236
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1181
|
-
checksum = "
|
|
1237
|
+
checksum = "c886bd4480155fd3ef527d45e9ac8dd7118a898a46530b7b94c3e21866259fce"
|
|
1238
|
+
dependencies = [
|
|
1239
|
+
"cc",
|
|
1240
|
+
"cfg-if",
|
|
1241
|
+
"libc",
|
|
1242
|
+
"psm",
|
|
1243
|
+
"winapi",
|
|
1244
|
+
]
|
|
1182
1245
|
|
|
1183
1246
|
[[package]]
|
|
1184
1247
|
name = "static_assertions"
|
|
@@ -1188,54 +1251,36 @@ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
|
1188
1251
|
|
|
1189
1252
|
[[package]]
|
|
1190
1253
|
name = "string_cache"
|
|
1191
|
-
version = "0.8.
|
|
1254
|
+
version = "0.8.7"
|
|
1192
1255
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
-
checksum = "
|
|
1256
|
+
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
|
|
1194
1257
|
dependencies = [
|
|
1195
1258
|
"new_debug_unreachable",
|
|
1196
1259
|
"once_cell",
|
|
1197
1260
|
"parking_lot",
|
|
1198
|
-
"phf_shared",
|
|
1261
|
+
"phf_shared 0.10.0",
|
|
1199
1262
|
"precomputed-hash",
|
|
1200
1263
|
"serde",
|
|
1201
1264
|
]
|
|
1202
1265
|
|
|
1203
|
-
[[package]]
|
|
1204
|
-
name = "string_cache_codegen"
|
|
1205
|
-
version = "0.5.2"
|
|
1206
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1207
|
-
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
|
|
1208
|
-
dependencies = [
|
|
1209
|
-
"phf_generator",
|
|
1210
|
-
"phf_shared",
|
|
1211
|
-
"proc-macro2",
|
|
1212
|
-
"quote",
|
|
1213
|
-
]
|
|
1214
|
-
|
|
1215
1266
|
[[package]]
|
|
1216
1267
|
name = "string_enum"
|
|
1217
|
-
version = "0.
|
|
1268
|
+
version = "0.4.1"
|
|
1218
1269
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
-
checksum = "
|
|
1270
|
+
checksum = "8fa4d4f81d7c05b9161f8de839975d3326328b8ba2831164b465524cc2f55252"
|
|
1220
1271
|
dependencies = [
|
|
1221
1272
|
"pmutil",
|
|
1222
1273
|
"proc-macro2",
|
|
1223
1274
|
"quote",
|
|
1224
1275
|
"swc_macros_common",
|
|
1225
|
-
"syn",
|
|
1276
|
+
"syn 2.0.39",
|
|
1226
1277
|
]
|
|
1227
1278
|
|
|
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
1279
|
[[package]]
|
|
1235
1280
|
name = "supports-color"
|
|
1236
|
-
version = "1.3.
|
|
1281
|
+
version = "1.3.1"
|
|
1237
1282
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1238
|
-
checksum = "
|
|
1283
|
+
checksum = "8ba6faf2ca7ee42fdd458f4347ae0a9bd6bcc445ad7cb57ad82b383f18870d6f"
|
|
1239
1284
|
dependencies = [
|
|
1240
1285
|
"atty",
|
|
1241
1286
|
"is_ci",
|
|
@@ -1261,7 +1306,7 @@ dependencies = [
|
|
|
1261
1306
|
|
|
1262
1307
|
[[package]]
|
|
1263
1308
|
name = "swc-plugin-define-config"
|
|
1264
|
-
version = "0.
|
|
1309
|
+
version = "0.2.0"
|
|
1265
1310
|
dependencies = [
|
|
1266
1311
|
"serde",
|
|
1267
1312
|
"swc_core",
|
|
@@ -1269,30 +1314,29 @@ dependencies = [
|
|
|
1269
1314
|
|
|
1270
1315
|
[[package]]
|
|
1271
1316
|
name = "swc_atoms"
|
|
1272
|
-
version = "0.4
|
|
1317
|
+
version = "0.6.4"
|
|
1273
1318
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
-
checksum = "
|
|
1319
|
+
checksum = "b8a9e1b6d97f27b6abe5571f8fe3bdbd2fa987299fc2126450c7cde6214896ef"
|
|
1275
1320
|
dependencies = [
|
|
1321
|
+
"bytecheck",
|
|
1322
|
+
"hstr",
|
|
1276
1323
|
"once_cell",
|
|
1277
1324
|
"rkyv",
|
|
1278
1325
|
"rustc-hash",
|
|
1279
1326
|
"serde",
|
|
1280
|
-
"string_cache",
|
|
1281
|
-
"string_cache_codegen",
|
|
1282
|
-
"triomphe",
|
|
1283
1327
|
]
|
|
1284
1328
|
|
|
1285
1329
|
[[package]]
|
|
1286
1330
|
name = "swc_common"
|
|
1287
|
-
version = "0.
|
|
1331
|
+
version = "0.33.8"
|
|
1288
1332
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
-
checksum = "
|
|
1333
|
+
checksum = "49fba1ce1d44f142b9e8212a6360fc7818e2c99c7f5ebe8b4fa4061c5764e48e"
|
|
1290
1334
|
dependencies = [
|
|
1291
|
-
"ahash",
|
|
1292
1335
|
"anyhow",
|
|
1293
1336
|
"ast_node",
|
|
1294
1337
|
"atty",
|
|
1295
1338
|
"better_scoped_tls",
|
|
1339
|
+
"bytecheck",
|
|
1296
1340
|
"cfg-if",
|
|
1297
1341
|
"either",
|
|
1298
1342
|
"from_variant",
|
|
@@ -1317,9 +1361,9 @@ dependencies = [
|
|
|
1317
1361
|
|
|
1318
1362
|
[[package]]
|
|
1319
1363
|
name = "swc_core"
|
|
1320
|
-
version = "0.
|
|
1364
|
+
version = "0.86.46"
|
|
1321
1365
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
-
checksum = "
|
|
1366
|
+
checksum = "689c41189ddb907b4513ea979035bdf1768a2d222b060e3dfc3925cbeba7da13"
|
|
1323
1367
|
dependencies = [
|
|
1324
1368
|
"once_cell",
|
|
1325
1369
|
"swc_atoms",
|
|
@@ -1327,6 +1371,7 @@ dependencies = [
|
|
|
1327
1371
|
"swc_ecma_ast",
|
|
1328
1372
|
"swc_ecma_transforms_base",
|
|
1329
1373
|
"swc_ecma_transforms_testing",
|
|
1374
|
+
"swc_ecma_utils",
|
|
1330
1375
|
"swc_ecma_visit",
|
|
1331
1376
|
"swc_plugin",
|
|
1332
1377
|
"swc_plugin_macro",
|
|
@@ -1336,16 +1381,17 @@ dependencies = [
|
|
|
1336
1381
|
|
|
1337
1382
|
[[package]]
|
|
1338
1383
|
name = "swc_ecma_ast"
|
|
1339
|
-
version = "0.
|
|
1384
|
+
version = "0.110.9"
|
|
1340
1385
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1341
|
-
checksum = "
|
|
1386
|
+
checksum = "4cefcc1c71bf00e48da7b65801d1fccf7eed2b7fa1fc5c4848ed09801bfe2403"
|
|
1342
1387
|
dependencies = [
|
|
1343
|
-
"bitflags",
|
|
1388
|
+
"bitflags 2.4.1",
|
|
1389
|
+
"bytecheck",
|
|
1344
1390
|
"is-macro",
|
|
1345
1391
|
"num-bigint",
|
|
1392
|
+
"phf 0.11.2",
|
|
1346
1393
|
"rkyv",
|
|
1347
1394
|
"scoped-tls",
|
|
1348
|
-
"serde",
|
|
1349
1395
|
"string_enum",
|
|
1350
1396
|
"swc_atoms",
|
|
1351
1397
|
"swc_common",
|
|
@@ -1354,9 +1400,9 @@ dependencies = [
|
|
|
1354
1400
|
|
|
1355
1401
|
[[package]]
|
|
1356
1402
|
name = "swc_ecma_codegen"
|
|
1357
|
-
version = "0.
|
|
1403
|
+
version = "0.146.20"
|
|
1358
1404
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1359
|
-
checksum = "
|
|
1405
|
+
checksum = "299bcdefed3c532dbc880dc0539d9df5402e5021fc4ae05cb574eae37e9c6beb"
|
|
1360
1406
|
dependencies = [
|
|
1361
1407
|
"memchr",
|
|
1362
1408
|
"num-bigint",
|
|
@@ -1373,29 +1419,32 @@ dependencies = [
|
|
|
1373
1419
|
|
|
1374
1420
|
[[package]]
|
|
1375
1421
|
name = "swc_ecma_codegen_macros"
|
|
1376
|
-
version = "0.7.
|
|
1422
|
+
version = "0.7.3"
|
|
1377
1423
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
-
checksum = "
|
|
1424
|
+
checksum = "dcdff076dccca6cc6a0e0b2a2c8acfb066014382bc6df98ec99e755484814384"
|
|
1379
1425
|
dependencies = [
|
|
1380
1426
|
"pmutil",
|
|
1381
1427
|
"proc-macro2",
|
|
1382
1428
|
"quote",
|
|
1383
1429
|
"swc_macros_common",
|
|
1384
|
-
"syn",
|
|
1430
|
+
"syn 2.0.39",
|
|
1385
1431
|
]
|
|
1386
1432
|
|
|
1387
1433
|
[[package]]
|
|
1388
1434
|
name = "swc_ecma_parser"
|
|
1389
|
-
version = "0.
|
|
1435
|
+
version = "0.141.18"
|
|
1390
1436
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1391
|
-
checksum = "
|
|
1437
|
+
checksum = "4aee08d307d2d4719715e9917a05cde1eee980667939854939443c583bc41823"
|
|
1392
1438
|
dependencies = [
|
|
1393
1439
|
"either",
|
|
1394
|
-
"
|
|
1395
|
-
"lexical",
|
|
1440
|
+
"new_debug_unreachable",
|
|
1396
1441
|
"num-bigint",
|
|
1442
|
+
"num-traits",
|
|
1443
|
+
"phf 0.11.2",
|
|
1397
1444
|
"serde",
|
|
1398
1445
|
"smallvec",
|
|
1446
|
+
"smartstring",
|
|
1447
|
+
"stacker",
|
|
1399
1448
|
"swc_atoms",
|
|
1400
1449
|
"swc_common",
|
|
1401
1450
|
"swc_ecma_ast",
|
|
@@ -1405,30 +1454,28 @@ dependencies = [
|
|
|
1405
1454
|
|
|
1406
1455
|
[[package]]
|
|
1407
1456
|
name = "swc_ecma_testing"
|
|
1408
|
-
version = "0.
|
|
1457
|
+
version = "0.22.10"
|
|
1409
1458
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
-
checksum = "
|
|
1459
|
+
checksum = "62dc3d273ef4f7fe39b670b7f1fdd2dd33518f5de987e7f7fe9d1b44e650e891"
|
|
1411
1460
|
dependencies = [
|
|
1412
1461
|
"anyhow",
|
|
1413
1462
|
"hex",
|
|
1414
1463
|
"sha-1",
|
|
1415
|
-
"swc_atoms",
|
|
1416
|
-
"swc_common",
|
|
1417
|
-
"swc_ecma_ast",
|
|
1418
1464
|
"testing",
|
|
1419
1465
|
"tracing",
|
|
1420
1466
|
]
|
|
1421
1467
|
|
|
1422
1468
|
[[package]]
|
|
1423
1469
|
name = "swc_ecma_transforms_base"
|
|
1424
|
-
version = "0.
|
|
1470
|
+
version = "0.134.26"
|
|
1425
1471
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
-
checksum = "
|
|
1472
|
+
checksum = "65783a0d7526e85b5ed6f2d1b0e2a596063932bd51d5fd1b450c095f09ff4399"
|
|
1427
1473
|
dependencies = [
|
|
1428
1474
|
"better_scoped_tls",
|
|
1429
|
-
"bitflags",
|
|
1475
|
+
"bitflags 2.4.1",
|
|
1476
|
+
"indexmap",
|
|
1430
1477
|
"once_cell",
|
|
1431
|
-
"phf",
|
|
1478
|
+
"phf 0.10.1",
|
|
1432
1479
|
"rustc-hash",
|
|
1433
1480
|
"serde",
|
|
1434
1481
|
"smallvec",
|
|
@@ -1443,9 +1490,9 @@ dependencies = [
|
|
|
1443
1490
|
|
|
1444
1491
|
[[package]]
|
|
1445
1492
|
name = "swc_ecma_transforms_testing"
|
|
1446
|
-
version = "0.
|
|
1493
|
+
version = "0.137.28"
|
|
1447
1494
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1448
|
-
checksum = "
|
|
1495
|
+
checksum = "7d9c1ae9114283f417ee2c9149158a6c3277ea30e0a239ae04f489612f77b3e8"
|
|
1449
1496
|
dependencies = [
|
|
1450
1497
|
"ansi_term",
|
|
1451
1498
|
"anyhow",
|
|
@@ -1469,13 +1516,14 @@ dependencies = [
|
|
|
1469
1516
|
|
|
1470
1517
|
[[package]]
|
|
1471
1518
|
name = "swc_ecma_utils"
|
|
1472
|
-
version = "0.
|
|
1519
|
+
version = "0.124.23"
|
|
1473
1520
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1474
|
-
checksum = "
|
|
1521
|
+
checksum = "45f418621edc2eee974901df082ff575680c784340172d6ba4a2ffc93c11ce32"
|
|
1475
1522
|
dependencies = [
|
|
1476
1523
|
"indexmap",
|
|
1477
1524
|
"num_cpus",
|
|
1478
1525
|
"once_cell",
|
|
1526
|
+
"rustc-hash",
|
|
1479
1527
|
"swc_atoms",
|
|
1480
1528
|
"swc_common",
|
|
1481
1529
|
"swc_ecma_ast",
|
|
@@ -1486,9 +1534,9 @@ dependencies = [
|
|
|
1486
1534
|
|
|
1487
1535
|
[[package]]
|
|
1488
1536
|
name = "swc_ecma_visit"
|
|
1489
|
-
version = "0.
|
|
1537
|
+
version = "0.96.9"
|
|
1490
1538
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
-
checksum = "
|
|
1539
|
+
checksum = "21305b130986e771206c9f447c8040f9b3be47c9fbbb1f659904e223b8e1c007"
|
|
1492
1540
|
dependencies = [
|
|
1493
1541
|
"num-bigint",
|
|
1494
1542
|
"swc_atoms",
|
|
@@ -1500,21 +1548,21 @@ dependencies = [
|
|
|
1500
1548
|
|
|
1501
1549
|
[[package]]
|
|
1502
1550
|
name = "swc_eq_ignore_macros"
|
|
1503
|
-
version = "0.1.
|
|
1551
|
+
version = "0.1.2"
|
|
1504
1552
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
-
checksum = "
|
|
1553
|
+
checksum = "05a95d367e228d52484c53336991fdcf47b6b553ef835d9159db4ba40efb0ee8"
|
|
1506
1554
|
dependencies = [
|
|
1507
1555
|
"pmutil",
|
|
1508
1556
|
"proc-macro2",
|
|
1509
1557
|
"quote",
|
|
1510
|
-
"syn",
|
|
1558
|
+
"syn 2.0.39",
|
|
1511
1559
|
]
|
|
1512
1560
|
|
|
1513
1561
|
[[package]]
|
|
1514
1562
|
name = "swc_error_reporters"
|
|
1515
|
-
version = "0.
|
|
1563
|
+
version = "0.17.8"
|
|
1516
1564
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1517
|
-
checksum = "
|
|
1565
|
+
checksum = "4a80f674bef7baf65c979f684bbe9fa8f4e275e3b61589b62d6dc260331a102b"
|
|
1518
1566
|
dependencies = [
|
|
1519
1567
|
"anyhow",
|
|
1520
1568
|
"miette",
|
|
@@ -1525,14 +1573,14 @@ dependencies = [
|
|
|
1525
1573
|
|
|
1526
1574
|
[[package]]
|
|
1527
1575
|
name = "swc_macros_common"
|
|
1528
|
-
version = "0.3.
|
|
1576
|
+
version = "0.3.8"
|
|
1529
1577
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1530
|
-
checksum = "
|
|
1578
|
+
checksum = "7a273205ccb09b51fabe88c49f3b34c5a4631c4c00a16ae20e03111d6a42e832"
|
|
1531
1579
|
dependencies = [
|
|
1532
1580
|
"pmutil",
|
|
1533
1581
|
"proc-macro2",
|
|
1534
1582
|
"quote",
|
|
1535
|
-
"syn",
|
|
1583
|
+
"syn 2.0.39",
|
|
1536
1584
|
]
|
|
1537
1585
|
|
|
1538
1586
|
[[package]]
|
|
@@ -1546,20 +1594,20 @@ dependencies = [
|
|
|
1546
1594
|
|
|
1547
1595
|
[[package]]
|
|
1548
1596
|
name = "swc_plugin_macro"
|
|
1549
|
-
version = "0.9.
|
|
1597
|
+
version = "0.9.15"
|
|
1550
1598
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1551
|
-
checksum = "
|
|
1599
|
+
checksum = "785309d342a69df4c929ee59e14e36889ca832f1d2a3c1d03c47c93126c72dbc"
|
|
1552
1600
|
dependencies = [
|
|
1553
1601
|
"proc-macro2",
|
|
1554
1602
|
"quote",
|
|
1555
|
-
"syn",
|
|
1603
|
+
"syn 2.0.39",
|
|
1556
1604
|
]
|
|
1557
1605
|
|
|
1558
1606
|
[[package]]
|
|
1559
1607
|
name = "swc_plugin_proxy"
|
|
1560
|
-
version = "0.
|
|
1608
|
+
version = "0.39.9"
|
|
1561
1609
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
-
checksum = "
|
|
1610
|
+
checksum = "e73aa3453e0026b009f35462b77f7dbc2e1b9a91cd92fae6f517802f3b6f4561"
|
|
1563
1611
|
dependencies = [
|
|
1564
1612
|
"better_scoped_tls",
|
|
1565
1613
|
"rkyv",
|
|
@@ -1571,20 +1619,20 @@ dependencies = [
|
|
|
1571
1619
|
|
|
1572
1620
|
[[package]]
|
|
1573
1621
|
name = "swc_trace_macro"
|
|
1574
|
-
version = "0.1.
|
|
1622
|
+
version = "0.1.3"
|
|
1575
1623
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1576
|
-
checksum = "
|
|
1624
|
+
checksum = "ff9719b6085dd2824fd61938a881937be14b08f95e2d27c64c825a9f65e052ba"
|
|
1577
1625
|
dependencies = [
|
|
1578
1626
|
"proc-macro2",
|
|
1579
1627
|
"quote",
|
|
1580
|
-
"syn",
|
|
1628
|
+
"syn 2.0.39",
|
|
1581
1629
|
]
|
|
1582
1630
|
|
|
1583
1631
|
[[package]]
|
|
1584
1632
|
name = "swc_visit"
|
|
1585
|
-
version = "0.5.
|
|
1633
|
+
version = "0.5.7"
|
|
1586
1634
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1587
|
-
checksum = "
|
|
1635
|
+
checksum = "e87c337fbb2d191bf371173dea6a957f01899adb8f189c6c31b122a6cfc98fc3"
|
|
1588
1636
|
dependencies = [
|
|
1589
1637
|
"either",
|
|
1590
1638
|
"swc_visit_macros",
|
|
@@ -1592,48 +1640,64 @@ dependencies = [
|
|
|
1592
1640
|
|
|
1593
1641
|
[[package]]
|
|
1594
1642
|
name = "swc_visit_macros"
|
|
1595
|
-
version = "0.5.
|
|
1643
|
+
version = "0.5.8"
|
|
1596
1644
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1597
|
-
checksum = "
|
|
1645
|
+
checksum = "0f322730fb82f3930a450ac24de8c98523af7d34ab8cb2f46bcb405839891a99"
|
|
1598
1646
|
dependencies = [
|
|
1599
1647
|
"Inflector",
|
|
1600
1648
|
"pmutil",
|
|
1601
1649
|
"proc-macro2",
|
|
1602
1650
|
"quote",
|
|
1603
1651
|
"swc_macros_common",
|
|
1604
|
-
"syn",
|
|
1652
|
+
"syn 2.0.39",
|
|
1605
1653
|
]
|
|
1606
1654
|
|
|
1607
1655
|
[[package]]
|
|
1608
1656
|
name = "syn"
|
|
1609
|
-
version = "1.0.
|
|
1657
|
+
version = "1.0.109"
|
|
1610
1658
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1611
|
-
checksum = "
|
|
1659
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
1612
1660
|
dependencies = [
|
|
1613
1661
|
"proc-macro2",
|
|
1614
1662
|
"quote",
|
|
1615
1663
|
"unicode-ident",
|
|
1616
1664
|
]
|
|
1617
1665
|
|
|
1666
|
+
[[package]]
|
|
1667
|
+
name = "syn"
|
|
1668
|
+
version = "2.0.39"
|
|
1669
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1670
|
+
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a"
|
|
1671
|
+
dependencies = [
|
|
1672
|
+
"proc-macro2",
|
|
1673
|
+
"quote",
|
|
1674
|
+
"unicode-ident",
|
|
1675
|
+
]
|
|
1676
|
+
|
|
1677
|
+
[[package]]
|
|
1678
|
+
name = "tap"
|
|
1679
|
+
version = "1.0.1"
|
|
1680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1681
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1682
|
+
|
|
1618
1683
|
[[package]]
|
|
1619
1684
|
name = "tempfile"
|
|
1620
|
-
version = "3.
|
|
1685
|
+
version = "3.8.1"
|
|
1621
1686
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
-
checksum = "
|
|
1687
|
+
checksum = "7ef1adac450ad7f4b3c28589471ade84f25f731a7a0fe30d71dfa9f60fd808e5"
|
|
1623
1688
|
dependencies = [
|
|
1624
1689
|
"cfg-if",
|
|
1625
1690
|
"fastrand",
|
|
1626
|
-
"libc",
|
|
1627
1691
|
"redox_syscall",
|
|
1628
|
-
"
|
|
1629
|
-
"
|
|
1692
|
+
"rustix",
|
|
1693
|
+
"windows-sys",
|
|
1630
1694
|
]
|
|
1631
1695
|
|
|
1632
1696
|
[[package]]
|
|
1633
1697
|
name = "termcolor"
|
|
1634
|
-
version = "1.
|
|
1698
|
+
version = "1.3.0"
|
|
1635
1699
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1636
|
-
checksum = "
|
|
1700
|
+
checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64"
|
|
1637
1701
|
dependencies = [
|
|
1638
1702
|
"winapi-util",
|
|
1639
1703
|
]
|
|
@@ -1650,15 +1714,17 @@ dependencies = [
|
|
|
1650
1714
|
|
|
1651
1715
|
[[package]]
|
|
1652
1716
|
name = "testing"
|
|
1653
|
-
version = "0.
|
|
1717
|
+
version = "0.35.10"
|
|
1654
1718
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1655
|
-
checksum = "
|
|
1719
|
+
checksum = "94fa85c2c4605cd16c3b358b125a23b36e01fe04a0ef687d22df97baa4b25fa8"
|
|
1656
1720
|
dependencies = [
|
|
1657
1721
|
"ansi_term",
|
|
1722
|
+
"cargo_metadata",
|
|
1658
1723
|
"difference",
|
|
1659
1724
|
"once_cell",
|
|
1660
1725
|
"pretty_assertions",
|
|
1661
1726
|
"regex",
|
|
1727
|
+
"serde",
|
|
1662
1728
|
"serde_json",
|
|
1663
1729
|
"swc_common",
|
|
1664
1730
|
"swc_error_reporters",
|
|
@@ -1669,9 +1735,9 @@ dependencies = [
|
|
|
1669
1735
|
|
|
1670
1736
|
[[package]]
|
|
1671
1737
|
name = "testing_macros"
|
|
1672
|
-
version = "0.2.
|
|
1738
|
+
version = "0.2.11"
|
|
1673
1739
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
-
checksum = "
|
|
1740
|
+
checksum = "d1c15b796025051a07f1ac695ee0cac0883f05a0d510c9d171ef8d31a992e6a5"
|
|
1675
1741
|
dependencies = [
|
|
1676
1742
|
"anyhow",
|
|
1677
1743
|
"glob",
|
|
@@ -1681,7 +1747,7 @@ dependencies = [
|
|
|
1681
1747
|
"quote",
|
|
1682
1748
|
"regex",
|
|
1683
1749
|
"relative-path",
|
|
1684
|
-
"syn",
|
|
1750
|
+
"syn 2.0.39",
|
|
1685
1751
|
]
|
|
1686
1752
|
|
|
1687
1753
|
[[package]]
|
|
@@ -1697,42 +1763,43 @@ dependencies = [
|
|
|
1697
1763
|
|
|
1698
1764
|
[[package]]
|
|
1699
1765
|
name = "thiserror"
|
|
1700
|
-
version = "1.0.
|
|
1766
|
+
version = "1.0.50"
|
|
1701
1767
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1702
|
-
checksum = "
|
|
1768
|
+
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2"
|
|
1703
1769
|
dependencies = [
|
|
1704
1770
|
"thiserror-impl",
|
|
1705
1771
|
]
|
|
1706
1772
|
|
|
1707
1773
|
[[package]]
|
|
1708
1774
|
name = "thiserror-impl"
|
|
1709
|
-
version = "1.0.
|
|
1775
|
+
version = "1.0.50"
|
|
1710
1776
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
-
checksum = "
|
|
1777
|
+
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8"
|
|
1712
1778
|
dependencies = [
|
|
1713
1779
|
"proc-macro2",
|
|
1714
1780
|
"quote",
|
|
1715
|
-
"syn",
|
|
1781
|
+
"syn 2.0.39",
|
|
1716
1782
|
]
|
|
1717
1783
|
|
|
1718
1784
|
[[package]]
|
|
1719
1785
|
name = "thread_local"
|
|
1720
|
-
version = "1.1.
|
|
1786
|
+
version = "1.1.7"
|
|
1721
1787
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
-
checksum = "
|
|
1788
|
+
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
|
1723
1789
|
dependencies = [
|
|
1790
|
+
"cfg-if",
|
|
1724
1791
|
"once_cell",
|
|
1725
1792
|
]
|
|
1726
1793
|
|
|
1727
1794
|
[[package]]
|
|
1728
1795
|
name = "time"
|
|
1729
|
-
version = "0.3.
|
|
1796
|
+
version = "0.3.30"
|
|
1730
1797
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1731
|
-
checksum = "
|
|
1798
|
+
checksum = "c4a34ab300f2dee6e562c10a046fc05e358b29f9bf92277f30c3c8d82275f6f5"
|
|
1732
1799
|
dependencies = [
|
|
1800
|
+
"deranged",
|
|
1733
1801
|
"itoa",
|
|
1734
|
-
"
|
|
1735
|
-
"num_threads",
|
|
1802
|
+
"powerfmt",
|
|
1736
1803
|
"serde",
|
|
1737
1804
|
"time-core",
|
|
1738
1805
|
"time-macros",
|
|
@@ -1740,15 +1807,15 @@ dependencies = [
|
|
|
1740
1807
|
|
|
1741
1808
|
[[package]]
|
|
1742
1809
|
name = "time-core"
|
|
1743
|
-
version = "0.1.
|
|
1810
|
+
version = "0.1.2"
|
|
1744
1811
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
-
checksum = "
|
|
1812
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
|
1746
1813
|
|
|
1747
1814
|
[[package]]
|
|
1748
1815
|
name = "time-macros"
|
|
1749
|
-
version = "0.2.
|
|
1816
|
+
version = "0.2.15"
|
|
1750
1817
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
-
checksum = "
|
|
1818
|
+
checksum = "4ad70d68dba9e1f8aceda7aa6711965dfec1cac869f311a51bd08b3a2ccbce20"
|
|
1752
1819
|
dependencies = [
|
|
1753
1820
|
"time-core",
|
|
1754
1821
|
]
|
|
@@ -1764,17 +1831,16 @@ dependencies = [
|
|
|
1764
1831
|
|
|
1765
1832
|
[[package]]
|
|
1766
1833
|
name = "tinyvec_macros"
|
|
1767
|
-
version = "0.1.
|
|
1834
|
+
version = "0.1.1"
|
|
1768
1835
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1769
|
-
checksum = "
|
|
1836
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1770
1837
|
|
|
1771
1838
|
[[package]]
|
|
1772
1839
|
name = "tracing"
|
|
1773
|
-
version = "0.1.
|
|
1840
|
+
version = "0.1.40"
|
|
1774
1841
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1775
|
-
checksum = "
|
|
1842
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
|
1776
1843
|
dependencies = [
|
|
1777
|
-
"cfg-if",
|
|
1778
1844
|
"pin-project-lite",
|
|
1779
1845
|
"tracing-attributes",
|
|
1780
1846
|
"tracing-core",
|
|
@@ -1782,20 +1848,20 @@ dependencies = [
|
|
|
1782
1848
|
|
|
1783
1849
|
[[package]]
|
|
1784
1850
|
name = "tracing-attributes"
|
|
1785
|
-
version = "0.1.
|
|
1851
|
+
version = "0.1.27"
|
|
1786
1852
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1787
|
-
checksum = "
|
|
1853
|
+
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
|
1788
1854
|
dependencies = [
|
|
1789
1855
|
"proc-macro2",
|
|
1790
1856
|
"quote",
|
|
1791
|
-
"syn",
|
|
1857
|
+
"syn 2.0.39",
|
|
1792
1858
|
]
|
|
1793
1859
|
|
|
1794
1860
|
[[package]]
|
|
1795
1861
|
name = "tracing-core"
|
|
1796
|
-
version = "0.1.
|
|
1862
|
+
version = "0.1.32"
|
|
1797
1863
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1798
|
-
checksum = "
|
|
1864
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
|
1799
1865
|
dependencies = [
|
|
1800
1866
|
"once_cell",
|
|
1801
1867
|
"valuable",
|
|
@@ -1803,20 +1869,20 @@ dependencies = [
|
|
|
1803
1869
|
|
|
1804
1870
|
[[package]]
|
|
1805
1871
|
name = "tracing-log"
|
|
1806
|
-
version = "0.1.
|
|
1872
|
+
version = "0.1.4"
|
|
1807
1873
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
-
checksum = "
|
|
1874
|
+
checksum = "f751112709b4e791d8ce53e32c4ed2d353565a795ce84da2285393f41557bdf2"
|
|
1809
1875
|
dependencies = [
|
|
1810
|
-
"lazy_static",
|
|
1811
1876
|
"log",
|
|
1877
|
+
"once_cell",
|
|
1812
1878
|
"tracing-core",
|
|
1813
1879
|
]
|
|
1814
1880
|
|
|
1815
1881
|
[[package]]
|
|
1816
1882
|
name = "tracing-subscriber"
|
|
1817
|
-
version = "0.3.
|
|
1883
|
+
version = "0.3.17"
|
|
1818
1884
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1819
|
-
checksum = "
|
|
1885
|
+
checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
|
|
1820
1886
|
dependencies = [
|
|
1821
1887
|
"matchers",
|
|
1822
1888
|
"nu-ansi-term",
|
|
@@ -1830,55 +1896,41 @@ dependencies = [
|
|
|
1830
1896
|
"tracing-log",
|
|
1831
1897
|
]
|
|
1832
1898
|
|
|
1833
|
-
[[package]]
|
|
1834
|
-
name = "triomphe"
|
|
1835
|
-
version = "0.1.8"
|
|
1836
|
-
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1837
|
-
checksum = "f1ee9bd9239c339d714d657fac840c6d2a4f9c45f4f9ec7b0975113458be78db"
|
|
1838
|
-
dependencies = [
|
|
1839
|
-
"serde",
|
|
1840
|
-
"stable_deref_trait",
|
|
1841
|
-
]
|
|
1842
|
-
|
|
1843
1899
|
[[package]]
|
|
1844
1900
|
name = "typed-arena"
|
|
1845
|
-
version = "2.0.
|
|
1901
|
+
version = "2.0.2"
|
|
1846
1902
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1847
|
-
checksum = "
|
|
1903
|
+
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
1848
1904
|
|
|
1849
1905
|
[[package]]
|
|
1850
1906
|
name = "typenum"
|
|
1851
|
-
version = "1.
|
|
1907
|
+
version = "1.17.0"
|
|
1852
1908
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1853
|
-
checksum = "
|
|
1909
|
+
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
|
1854
1910
|
|
|
1855
1911
|
[[package]]
|
|
1856
1912
|
name = "unicode-bidi"
|
|
1857
|
-
version = "0.3.
|
|
1913
|
+
version = "0.3.13"
|
|
1858
1914
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1859
|
-
checksum = "
|
|
1915
|
+
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
|
|
1860
1916
|
|
|
1861
1917
|
[[package]]
|
|
1862
1918
|
name = "unicode-id"
|
|
1863
|
-
version = "0.3.
|
|
1919
|
+
version = "0.3.4"
|
|
1864
1920
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
-
checksum = "
|
|
1921
|
+
checksum = "b1b6def86329695390197b82c1e244a54a131ceb66c996f2088a3876e2ae083f"
|
|
1866
1922
|
|
|
1867
1923
|
[[package]]
|
|
1868
1924
|
name = "unicode-ident"
|
|
1869
|
-
version = "1.0.
|
|
1925
|
+
version = "1.0.12"
|
|
1870
1926
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1871
|
-
checksum = "
|
|
1927
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
1872
1928
|
|
|
1873
1929
|
[[package]]
|
|
1874
1930
|
name = "unicode-linebreak"
|
|
1875
|
-
version = "0.1.
|
|
1931
|
+
version = "0.1.5"
|
|
1876
1932
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1877
|
-
checksum = "
|
|
1878
|
-
dependencies = [
|
|
1879
|
-
"hashbrown",
|
|
1880
|
-
"regex",
|
|
1881
|
-
]
|
|
1933
|
+
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
1882
1934
|
|
|
1883
1935
|
[[package]]
|
|
1884
1936
|
name = "unicode-normalization"
|
|
@@ -1891,21 +1943,27 @@ dependencies = [
|
|
|
1891
1943
|
|
|
1892
1944
|
[[package]]
|
|
1893
1945
|
name = "unicode-width"
|
|
1894
|
-
version = "0.1.
|
|
1946
|
+
version = "0.1.11"
|
|
1895
1947
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
-
checksum = "
|
|
1948
|
+
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
|
1897
1949
|
|
|
1898
1950
|
[[package]]
|
|
1899
1951
|
name = "url"
|
|
1900
|
-
version = "2.
|
|
1952
|
+
version = "2.4.1"
|
|
1901
1953
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
-
checksum = "
|
|
1954
|
+
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
|
|
1903
1955
|
dependencies = [
|
|
1904
1956
|
"form_urlencoded",
|
|
1905
1957
|
"idna",
|
|
1906
1958
|
"percent-encoding",
|
|
1907
1959
|
]
|
|
1908
1960
|
|
|
1961
|
+
[[package]]
|
|
1962
|
+
name = "uuid"
|
|
1963
|
+
version = "1.5.0"
|
|
1964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1965
|
+
checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc"
|
|
1966
|
+
|
|
1909
1967
|
[[package]]
|
|
1910
1968
|
name = "valuable"
|
|
1911
1969
|
version = "0.1.0"
|
|
@@ -1914,9 +1972,9 @@ checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
|
|
|
1914
1972
|
|
|
1915
1973
|
[[package]]
|
|
1916
1974
|
name = "vergen"
|
|
1917
|
-
version = "7.
|
|
1975
|
+
version = "7.5.1"
|
|
1918
1976
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1919
|
-
checksum = "
|
|
1977
|
+
checksum = "f21b881cd6636ece9735721cf03c1fe1e774fe258683d084bb2812ab67435749"
|
|
1920
1978
|
dependencies = [
|
|
1921
1979
|
"anyhow",
|
|
1922
1980
|
"cfg-if",
|
|
@@ -1957,9 +2015,9 @@ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
1957
2015
|
|
|
1958
2016
|
[[package]]
|
|
1959
2017
|
name = "winapi-util"
|
|
1960
|
-
version = "0.1.
|
|
2018
|
+
version = "0.1.6"
|
|
1961
2019
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1962
|
-
checksum = "
|
|
2020
|
+
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
|
|
1963
2021
|
dependencies = [
|
|
1964
2022
|
"winapi",
|
|
1965
2023
|
]
|
|
@@ -1972,9 +2030,18 @@ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
1972
2030
|
|
|
1973
2031
|
[[package]]
|
|
1974
2032
|
name = "windows-sys"
|
|
1975
|
-
version = "0.
|
|
2033
|
+
version = "0.48.0"
|
|
1976
2034
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
-
checksum = "
|
|
2035
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
2036
|
+
dependencies = [
|
|
2037
|
+
"windows-targets",
|
|
2038
|
+
]
|
|
2039
|
+
|
|
2040
|
+
[[package]]
|
|
2041
|
+
name = "windows-targets"
|
|
2042
|
+
version = "0.48.5"
|
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2044
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
|
1978
2045
|
dependencies = [
|
|
1979
2046
|
"windows_aarch64_gnullvm",
|
|
1980
2047
|
"windows_aarch64_msvc",
|
|
@@ -1987,45 +2054,54 @@ dependencies = [
|
|
|
1987
2054
|
|
|
1988
2055
|
[[package]]
|
|
1989
2056
|
name = "windows_aarch64_gnullvm"
|
|
1990
|
-
version = "0.
|
|
2057
|
+
version = "0.48.5"
|
|
1991
2058
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1992
|
-
checksum = "
|
|
2059
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
|
1993
2060
|
|
|
1994
2061
|
[[package]]
|
|
1995
2062
|
name = "windows_aarch64_msvc"
|
|
1996
|
-
version = "0.
|
|
2063
|
+
version = "0.48.5"
|
|
1997
2064
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1998
|
-
checksum = "
|
|
2065
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
|
1999
2066
|
|
|
2000
2067
|
[[package]]
|
|
2001
2068
|
name = "windows_i686_gnu"
|
|
2002
|
-
version = "0.
|
|
2069
|
+
version = "0.48.5"
|
|
2003
2070
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2004
|
-
checksum = "
|
|
2071
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
|
2005
2072
|
|
|
2006
2073
|
[[package]]
|
|
2007
2074
|
name = "windows_i686_msvc"
|
|
2008
|
-
version = "0.
|
|
2075
|
+
version = "0.48.5"
|
|
2009
2076
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2010
|
-
checksum = "
|
|
2077
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
|
2011
2078
|
|
|
2012
2079
|
[[package]]
|
|
2013
2080
|
name = "windows_x86_64_gnu"
|
|
2014
|
-
version = "0.
|
|
2081
|
+
version = "0.48.5"
|
|
2015
2082
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2016
|
-
checksum = "
|
|
2083
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
|
2017
2084
|
|
|
2018
2085
|
[[package]]
|
|
2019
2086
|
name = "windows_x86_64_gnullvm"
|
|
2020
|
-
version = "0.
|
|
2087
|
+
version = "0.48.5"
|
|
2021
2088
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
-
checksum = "
|
|
2089
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
|
2023
2090
|
|
|
2024
2091
|
[[package]]
|
|
2025
2092
|
name = "windows_x86_64_msvc"
|
|
2026
|
-
version = "0.
|
|
2093
|
+
version = "0.48.5"
|
|
2027
2094
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
-
checksum = "
|
|
2095
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
|
2096
|
+
|
|
2097
|
+
[[package]]
|
|
2098
|
+
name = "wyz"
|
|
2099
|
+
version = "0.5.1"
|
|
2100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2101
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
2102
|
+
dependencies = [
|
|
2103
|
+
"tap",
|
|
2104
|
+
]
|
|
2029
2105
|
|
|
2030
2106
|
[[package]]
|
|
2031
2107
|
name = "yansi"
|