turbo-surf 0.2.4__tar.gz
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.
- turbo_surf-0.2.4/Cargo.lock +4030 -0
- turbo_surf-0.2.4/Cargo.toml +17 -0
- turbo_surf-0.2.4/PKG-INFO +78 -0
- turbo_surf-0.2.4/README.md +58 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/Cargo.toml +36 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/cache.rs +111 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/cookies.rs +638 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/crawl.rs +870 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/frontier.rs +139 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/lib.rs +29 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/measure.rs +76 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/net.rs +786 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/robots.rs +405 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/src/url.rs +158 -0
- turbo_surf-0.2.4/crates/turbo-surf-core/tests/parity.rs +135 -0
- turbo_surf-0.2.4/crates/turbo-surf-py/Cargo.toml +35 -0
- turbo_surf-0.2.4/crates/turbo-surf-py/README.md +58 -0
- turbo_surf-0.2.4/crates/turbo-surf-py/src/errors.rs +12 -0
- turbo_surf-0.2.4/crates/turbo-surf-py/src/lib.rs +232 -0
- turbo_surf-0.2.4/crates/turbo-surf-py/tests/test_smoke.py +72 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/Cargo.toml +24 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/HYDRATION-BINDING-GAPS.md +117 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/scripts/vendor-browser-env.sh +37 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/src/browser_env.js +707 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/src/browser_env.rs +102 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/src/browser_env_upstream.rs +1829 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/src/lib.rs +15 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/src/runtime.rs +2569 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixture-gen/gen-flight-client.mjs +78 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixture-gen/gen-react-currenttarget.mjs +46 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixture-gen/gen-react-document.mjs +66 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixture-gen/gen-react-streaming.mjs +76 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixture-gen/gen-react-transition-suspense.mjs +66 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixtures/flight-client.html +3835 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixtures/react-currenttarget.html +299 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixtures/react-document-hydration.html +299 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixtures/react-streaming-hydration.html +304 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/fixtures/react-transition-suspense.html +299 -0
- turbo_surf-0.2.4/crates/turbo-surf-render/tests/render.rs +1893 -0
- turbo_surf-0.2.4/crates/turbo-surf-transform/Cargo.toml +18 -0
- turbo_surf-0.2.4/crates/turbo-surf-transform/src/lib.rs +122 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/Cargo.toml +22 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/benches/views.rs +56 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/actions.rs +385 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/aria.rs +164 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/aria_snapshot.rs +231 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/ax.rs +347 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/detect.rs +123 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/dom_ops.rs +205 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/extract.rs +186 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/hydration.rs +258 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/lib.rs +54 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/locator.rs +239 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/markdown.rs +339 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/query.rs +139 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/schema.rs +358 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/text.rs +214 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/visible.rs +173 -0
- turbo_surf-0.2.4/crates/turbo-surf-view/src/xpath.rs +403 -0
- turbo_surf-0.2.4/pyproject.toml +34 -0
- turbo_surf-0.2.4/python/turbo_surf/__init__.py +60 -0
- turbo_surf-0.2.4/python/turbo_surf/__init__.pyi +22 -0
- turbo_surf-0.2.4/python/turbo_surf/py.typed +0 -0
|
@@ -0,0 +1,4030 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"once_cell",
|
|
19
|
+
"version_check",
|
|
20
|
+
"zerocopy",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "aho-corasick"
|
|
25
|
+
version = "1.1.4"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"memchr",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "alloc-no-stdlib"
|
|
34
|
+
version = "2.0.4"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "alloc-stdlib"
|
|
40
|
+
version = "0.2.4"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"alloc-no-stdlib",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "allocator-api2"
|
|
49
|
+
version = "0.2.21"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anes"
|
|
55
|
+
version = "0.1.6"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle"
|
|
61
|
+
version = "1.0.14"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "anyhow"
|
|
67
|
+
version = "1.0.102"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
70
|
+
|
|
71
|
+
[[package]]
|
|
72
|
+
name = "ascii"
|
|
73
|
+
version = "1.1.0"
|
|
74
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
75
|
+
checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "ast_node"
|
|
79
|
+
version = "5.0.0"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "2eb025ef00a6da925cf40870b9c8d008526b6004ece399cb0974209720f0b194"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"quote",
|
|
84
|
+
"swc_macros_common",
|
|
85
|
+
"syn",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "async-compression"
|
|
90
|
+
version = "0.4.42"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
|
|
93
|
+
dependencies = [
|
|
94
|
+
"compression-codecs",
|
|
95
|
+
"compression-core",
|
|
96
|
+
"pin-project-lite",
|
|
97
|
+
"tokio",
|
|
98
|
+
]
|
|
99
|
+
|
|
100
|
+
[[package]]
|
|
101
|
+
name = "async-trait"
|
|
102
|
+
version = "0.1.89"
|
|
103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
104
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
105
|
+
dependencies = [
|
|
106
|
+
"proc-macro2",
|
|
107
|
+
"quote",
|
|
108
|
+
"syn",
|
|
109
|
+
]
|
|
110
|
+
|
|
111
|
+
[[package]]
|
|
112
|
+
name = "atomic-waker"
|
|
113
|
+
version = "1.1.2"
|
|
114
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
115
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
116
|
+
|
|
117
|
+
[[package]]
|
|
118
|
+
name = "autocfg"
|
|
119
|
+
version = "1.5.1"
|
|
120
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
121
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "az"
|
|
125
|
+
version = "1.3.0"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "be5eb007b7cacc6c660343e96f650fedf4b5a77512399eb952ca6642cf8d13f7"
|
|
128
|
+
|
|
129
|
+
[[package]]
|
|
130
|
+
name = "base64"
|
|
131
|
+
version = "0.22.1"
|
|
132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
133
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
134
|
+
|
|
135
|
+
[[package]]
|
|
136
|
+
name = "base64-simd"
|
|
137
|
+
version = "0.8.0"
|
|
138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
139
|
+
checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
|
|
140
|
+
dependencies = [
|
|
141
|
+
"outref",
|
|
142
|
+
"vsimd",
|
|
143
|
+
]
|
|
144
|
+
|
|
145
|
+
[[package]]
|
|
146
|
+
name = "better_scoped_tls"
|
|
147
|
+
version = "1.0.1"
|
|
148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
149
|
+
checksum = "7cd228125315b132eed175bf47619ac79b945b26e56b848ba203ae4ea8603609"
|
|
150
|
+
dependencies = [
|
|
151
|
+
"scoped-tls",
|
|
152
|
+
]
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "bincode"
|
|
156
|
+
version = "1.3.3"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
159
|
+
dependencies = [
|
|
160
|
+
"serde",
|
|
161
|
+
]
|
|
162
|
+
|
|
163
|
+
[[package]]
|
|
164
|
+
name = "bindgen"
|
|
165
|
+
version = "0.72.1"
|
|
166
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
167
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
168
|
+
dependencies = [
|
|
169
|
+
"bitflags",
|
|
170
|
+
"cexpr",
|
|
171
|
+
"clang-sys",
|
|
172
|
+
"itertools 0.13.0",
|
|
173
|
+
"log",
|
|
174
|
+
"prettyplease",
|
|
175
|
+
"proc-macro2",
|
|
176
|
+
"quote",
|
|
177
|
+
"regex",
|
|
178
|
+
"rustc-hash",
|
|
179
|
+
"shlex 1.3.0",
|
|
180
|
+
"syn",
|
|
181
|
+
]
|
|
182
|
+
|
|
183
|
+
[[package]]
|
|
184
|
+
name = "bit-set"
|
|
185
|
+
version = "0.8.0"
|
|
186
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
187
|
+
checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
|
|
188
|
+
dependencies = [
|
|
189
|
+
"bit-vec",
|
|
190
|
+
]
|
|
191
|
+
|
|
192
|
+
[[package]]
|
|
193
|
+
name = "bit-vec"
|
|
194
|
+
version = "0.8.0"
|
|
195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
196
|
+
checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
|
|
197
|
+
|
|
198
|
+
[[package]]
|
|
199
|
+
name = "bitflags"
|
|
200
|
+
version = "2.13.0"
|
|
201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
202
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "bitvec"
|
|
206
|
+
version = "1.1.1"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "ddcec3d12c579d40898fe0a9a358a803c23e9c52ca3c425707f81c9436211837"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"funty",
|
|
211
|
+
"radium",
|
|
212
|
+
"tap",
|
|
213
|
+
"wyz",
|
|
214
|
+
]
|
|
215
|
+
|
|
216
|
+
[[package]]
|
|
217
|
+
name = "block-buffer"
|
|
218
|
+
version = "0.10.4"
|
|
219
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
220
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
221
|
+
dependencies = [
|
|
222
|
+
"generic-array",
|
|
223
|
+
]
|
|
224
|
+
|
|
225
|
+
[[package]]
|
|
226
|
+
name = "boxed_error"
|
|
227
|
+
version = "0.2.3"
|
|
228
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
229
|
+
checksum = "17d4f95e880cfd28c4ca5a006cf7f6af52b4bcb7b5866f573b2faa126fb7affb"
|
|
230
|
+
dependencies = [
|
|
231
|
+
"quote",
|
|
232
|
+
"syn",
|
|
233
|
+
]
|
|
234
|
+
|
|
235
|
+
[[package]]
|
|
236
|
+
name = "brotli"
|
|
237
|
+
version = "8.0.4"
|
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
239
|
+
checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
|
|
240
|
+
dependencies = [
|
|
241
|
+
"alloc-no-stdlib",
|
|
242
|
+
"alloc-stdlib",
|
|
243
|
+
"brotli-decompressor",
|
|
244
|
+
]
|
|
245
|
+
|
|
246
|
+
[[package]]
|
|
247
|
+
name = "brotli-decompressor"
|
|
248
|
+
version = "5.0.3"
|
|
249
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
250
|
+
checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
|
|
251
|
+
dependencies = [
|
|
252
|
+
"alloc-no-stdlib",
|
|
253
|
+
"alloc-stdlib",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "bumpalo"
|
|
258
|
+
version = "3.20.3"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"allocator-api2",
|
|
263
|
+
]
|
|
264
|
+
|
|
265
|
+
[[package]]
|
|
266
|
+
name = "bytes"
|
|
267
|
+
version = "1.12.0"
|
|
268
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
269
|
+
checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "bytes-str"
|
|
273
|
+
version = "0.2.8"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "577d2bf5650f8554d5a372af5ac93535110a0fc75b3e702bb853369febf227c2"
|
|
276
|
+
dependencies = [
|
|
277
|
+
"bytes",
|
|
278
|
+
"serde",
|
|
279
|
+
]
|
|
280
|
+
|
|
281
|
+
[[package]]
|
|
282
|
+
name = "calendrical_calculations"
|
|
283
|
+
version = "0.2.4"
|
|
284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
285
|
+
checksum = "5abbd6eeda6885048d357edc66748eea6e0268e3dd11f326fff5bd248d779c26"
|
|
286
|
+
dependencies = [
|
|
287
|
+
"core_maths",
|
|
288
|
+
"displaydoc",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "camino"
|
|
293
|
+
version = "1.2.3"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "b4ce8d3bd5823c7504d3f579f13e7b2f3da252fcb938c594d5680ee508bf846f"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"serde_core",
|
|
298
|
+
]
|
|
299
|
+
|
|
300
|
+
[[package]]
|
|
301
|
+
name = "capacity_builder"
|
|
302
|
+
version = "0.5.0"
|
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
304
|
+
checksum = "8f2d24a6dcf0cd402a21b65d35340f3a49ff3475dc5fdac91d22d2733e6641c6"
|
|
305
|
+
dependencies = [
|
|
306
|
+
"capacity_builder_macros",
|
|
307
|
+
"itoa",
|
|
308
|
+
]
|
|
309
|
+
|
|
310
|
+
[[package]]
|
|
311
|
+
name = "capacity_builder_macros"
|
|
312
|
+
version = "0.3.0"
|
|
313
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
314
|
+
checksum = "3b4a6cae9efc04cc6cbb8faf338d2c497c165c83e74509cf4dbedea948bbf6e5"
|
|
315
|
+
dependencies = [
|
|
316
|
+
"quote",
|
|
317
|
+
"syn",
|
|
318
|
+
]
|
|
319
|
+
|
|
320
|
+
[[package]]
|
|
321
|
+
name = "cargo-platform"
|
|
322
|
+
version = "0.3.3"
|
|
323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
324
|
+
checksum = "dd0061da739915fae12ea00e16397555ed4371a6bb285431aab930f61b0aa4ba"
|
|
325
|
+
dependencies = [
|
|
326
|
+
"serde",
|
|
327
|
+
"serde_core",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "cargo_metadata"
|
|
332
|
+
version = "0.23.1"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "ef987d17b0a113becdd19d3d0022d04d7ef41f9efe4f3fb63ac44ba61df3ade9"
|
|
335
|
+
dependencies = [
|
|
336
|
+
"camino",
|
|
337
|
+
"cargo-platform",
|
|
338
|
+
"semver",
|
|
339
|
+
"serde",
|
|
340
|
+
"serde_json",
|
|
341
|
+
"thiserror",
|
|
342
|
+
]
|
|
343
|
+
|
|
344
|
+
[[package]]
|
|
345
|
+
name = "cast"
|
|
346
|
+
version = "0.3.0"
|
|
347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
348
|
+
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
349
|
+
|
|
350
|
+
[[package]]
|
|
351
|
+
name = "castaway"
|
|
352
|
+
version = "0.2.4"
|
|
353
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
354
|
+
checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
|
|
355
|
+
dependencies = [
|
|
356
|
+
"rustversion",
|
|
357
|
+
]
|
|
358
|
+
|
|
359
|
+
[[package]]
|
|
360
|
+
name = "cc"
|
|
361
|
+
version = "1.2.65"
|
|
362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
363
|
+
checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96"
|
|
364
|
+
dependencies = [
|
|
365
|
+
"find-msvc-tools",
|
|
366
|
+
"shlex 2.0.1",
|
|
367
|
+
]
|
|
368
|
+
|
|
369
|
+
[[package]]
|
|
370
|
+
name = "cexpr"
|
|
371
|
+
version = "0.6.0"
|
|
372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
373
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
374
|
+
dependencies = [
|
|
375
|
+
"nom",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "cfg-if"
|
|
380
|
+
version = "1.0.4"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "cfg_aliases"
|
|
386
|
+
version = "0.2.1"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
389
|
+
|
|
390
|
+
[[package]]
|
|
391
|
+
name = "ciborium"
|
|
392
|
+
version = "0.2.2"
|
|
393
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
394
|
+
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
395
|
+
dependencies = [
|
|
396
|
+
"ciborium-io",
|
|
397
|
+
"ciborium-ll",
|
|
398
|
+
"serde",
|
|
399
|
+
]
|
|
400
|
+
|
|
401
|
+
[[package]]
|
|
402
|
+
name = "ciborium-io"
|
|
403
|
+
version = "0.2.2"
|
|
404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
405
|
+
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
406
|
+
|
|
407
|
+
[[package]]
|
|
408
|
+
name = "ciborium-ll"
|
|
409
|
+
version = "0.2.2"
|
|
410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
411
|
+
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
412
|
+
dependencies = [
|
|
413
|
+
"ciborium-io",
|
|
414
|
+
"half",
|
|
415
|
+
]
|
|
416
|
+
|
|
417
|
+
[[package]]
|
|
418
|
+
name = "clang-sys"
|
|
419
|
+
version = "1.8.1"
|
|
420
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
421
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
422
|
+
dependencies = [
|
|
423
|
+
"glob",
|
|
424
|
+
"libc",
|
|
425
|
+
"libloading",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "clap"
|
|
430
|
+
version = "4.6.1"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"clap_builder",
|
|
435
|
+
]
|
|
436
|
+
|
|
437
|
+
[[package]]
|
|
438
|
+
name = "clap_builder"
|
|
439
|
+
version = "4.6.0"
|
|
440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
441
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
442
|
+
dependencies = [
|
|
443
|
+
"anstyle",
|
|
444
|
+
"clap_lex",
|
|
445
|
+
]
|
|
446
|
+
|
|
447
|
+
[[package]]
|
|
448
|
+
name = "clap_lex"
|
|
449
|
+
version = "1.1.0"
|
|
450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
451
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
452
|
+
|
|
453
|
+
[[package]]
|
|
454
|
+
name = "compact_str"
|
|
455
|
+
version = "0.7.1"
|
|
456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
457
|
+
checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f"
|
|
458
|
+
dependencies = [
|
|
459
|
+
"castaway",
|
|
460
|
+
"cfg-if",
|
|
461
|
+
"itoa",
|
|
462
|
+
"ryu",
|
|
463
|
+
"static_assertions",
|
|
464
|
+
]
|
|
465
|
+
|
|
466
|
+
[[package]]
|
|
467
|
+
name = "compression-codecs"
|
|
468
|
+
version = "0.4.38"
|
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
470
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
471
|
+
dependencies = [
|
|
472
|
+
"brotli",
|
|
473
|
+
"compression-core",
|
|
474
|
+
"flate2",
|
|
475
|
+
"memchr",
|
|
476
|
+
]
|
|
477
|
+
|
|
478
|
+
[[package]]
|
|
479
|
+
name = "compression-core"
|
|
480
|
+
version = "0.4.32"
|
|
481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
482
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
483
|
+
|
|
484
|
+
[[package]]
|
|
485
|
+
name = "convert_case"
|
|
486
|
+
version = "0.6.0"
|
|
487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
488
|
+
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
|
|
489
|
+
dependencies = [
|
|
490
|
+
"unicode-segmentation",
|
|
491
|
+
]
|
|
492
|
+
|
|
493
|
+
[[package]]
|
|
494
|
+
name = "cooked-waker"
|
|
495
|
+
version = "5.0.0"
|
|
496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
497
|
+
checksum = "147be55d677052dabc6b22252d5dd0fd4c29c8c27aa4f2fbef0f94aa003b406f"
|
|
498
|
+
|
|
499
|
+
[[package]]
|
|
500
|
+
name = "core_maths"
|
|
501
|
+
version = "0.1.1"
|
|
502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
503
|
+
checksum = "77745e017f5edba1a9c1d854f6f3a52dac8a12dd5af5d2f54aecf61e43d80d30"
|
|
504
|
+
dependencies = [
|
|
505
|
+
"libm",
|
|
506
|
+
]
|
|
507
|
+
|
|
508
|
+
[[package]]
|
|
509
|
+
name = "cpufeatures"
|
|
510
|
+
version = "0.2.17"
|
|
511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
512
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
513
|
+
dependencies = [
|
|
514
|
+
"libc",
|
|
515
|
+
]
|
|
516
|
+
|
|
517
|
+
[[package]]
|
|
518
|
+
name = "crc32fast"
|
|
519
|
+
version = "1.5.0"
|
|
520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
521
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
522
|
+
dependencies = [
|
|
523
|
+
"cfg-if",
|
|
524
|
+
]
|
|
525
|
+
|
|
526
|
+
[[package]]
|
|
527
|
+
name = "criterion"
|
|
528
|
+
version = "0.5.1"
|
|
529
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
530
|
+
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
531
|
+
dependencies = [
|
|
532
|
+
"anes",
|
|
533
|
+
"cast",
|
|
534
|
+
"ciborium",
|
|
535
|
+
"clap",
|
|
536
|
+
"criterion-plot",
|
|
537
|
+
"is-terminal",
|
|
538
|
+
"itertools 0.10.5",
|
|
539
|
+
"num-traits",
|
|
540
|
+
"once_cell",
|
|
541
|
+
"oorandom",
|
|
542
|
+
"regex",
|
|
543
|
+
"serde",
|
|
544
|
+
"serde_derive",
|
|
545
|
+
"serde_json",
|
|
546
|
+
"tinytemplate",
|
|
547
|
+
"walkdir",
|
|
548
|
+
]
|
|
549
|
+
|
|
550
|
+
[[package]]
|
|
551
|
+
name = "criterion-plot"
|
|
552
|
+
version = "0.5.0"
|
|
553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
554
|
+
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
555
|
+
dependencies = [
|
|
556
|
+
"cast",
|
|
557
|
+
"itertools 0.10.5",
|
|
558
|
+
]
|
|
559
|
+
|
|
560
|
+
[[package]]
|
|
561
|
+
name = "crunchy"
|
|
562
|
+
version = "0.2.4"
|
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
564
|
+
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
565
|
+
|
|
566
|
+
[[package]]
|
|
567
|
+
name = "crypto-common"
|
|
568
|
+
version = "0.1.7"
|
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
570
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
571
|
+
dependencies = [
|
|
572
|
+
"generic-array",
|
|
573
|
+
"typenum",
|
|
574
|
+
]
|
|
575
|
+
|
|
576
|
+
[[package]]
|
|
577
|
+
name = "ctor"
|
|
578
|
+
version = "0.2.9"
|
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
580
|
+
checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
|
|
581
|
+
dependencies = [
|
|
582
|
+
"quote",
|
|
583
|
+
"syn",
|
|
584
|
+
]
|
|
585
|
+
|
|
586
|
+
[[package]]
|
|
587
|
+
name = "darling"
|
|
588
|
+
version = "0.20.11"
|
|
589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
590
|
+
checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
|
|
591
|
+
dependencies = [
|
|
592
|
+
"darling_core",
|
|
593
|
+
"darling_macro",
|
|
594
|
+
]
|
|
595
|
+
|
|
596
|
+
[[package]]
|
|
597
|
+
name = "darling_core"
|
|
598
|
+
version = "0.20.11"
|
|
599
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
600
|
+
checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
|
|
601
|
+
dependencies = [
|
|
602
|
+
"fnv",
|
|
603
|
+
"ident_case",
|
|
604
|
+
"proc-macro2",
|
|
605
|
+
"quote",
|
|
606
|
+
"strsim",
|
|
607
|
+
"syn",
|
|
608
|
+
]
|
|
609
|
+
|
|
610
|
+
[[package]]
|
|
611
|
+
name = "darling_macro"
|
|
612
|
+
version = "0.20.11"
|
|
613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
614
|
+
checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
|
|
615
|
+
dependencies = [
|
|
616
|
+
"darling_core",
|
|
617
|
+
"quote",
|
|
618
|
+
"syn",
|
|
619
|
+
]
|
|
620
|
+
|
|
621
|
+
[[package]]
|
|
622
|
+
name = "data-encoding"
|
|
623
|
+
version = "2.11.0"
|
|
624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
625
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
626
|
+
|
|
627
|
+
[[package]]
|
|
628
|
+
name = "debugid"
|
|
629
|
+
version = "0.8.0"
|
|
630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
631
|
+
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
|
|
632
|
+
dependencies = [
|
|
633
|
+
"serde",
|
|
634
|
+
"uuid",
|
|
635
|
+
]
|
|
636
|
+
|
|
637
|
+
[[package]]
|
|
638
|
+
name = "deno_core"
|
|
639
|
+
version = "0.404.0"
|
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
641
|
+
checksum = "8ed0bfc2096207522de1b7826b0fdd85587e19d0d61368411ad3f193166376b2"
|
|
642
|
+
dependencies = [
|
|
643
|
+
"anyhow",
|
|
644
|
+
"az",
|
|
645
|
+
"base64",
|
|
646
|
+
"bincode",
|
|
647
|
+
"bit-set",
|
|
648
|
+
"bit-vec",
|
|
649
|
+
"boxed_error",
|
|
650
|
+
"bytes",
|
|
651
|
+
"capacity_builder",
|
|
652
|
+
"cooked-waker",
|
|
653
|
+
"deno_error",
|
|
654
|
+
"deno_ops",
|
|
655
|
+
"deno_path_util",
|
|
656
|
+
"deno_unsync",
|
|
657
|
+
"futures",
|
|
658
|
+
"indexmap",
|
|
659
|
+
"inventory",
|
|
660
|
+
"libc",
|
|
661
|
+
"num-bigint",
|
|
662
|
+
"parking_lot",
|
|
663
|
+
"percent-encoding",
|
|
664
|
+
"pin-project",
|
|
665
|
+
"serde",
|
|
666
|
+
"serde_json",
|
|
667
|
+
"serde_v8",
|
|
668
|
+
"smallvec",
|
|
669
|
+
"sourcemap",
|
|
670
|
+
"static_assertions",
|
|
671
|
+
"sys_traits",
|
|
672
|
+
"thiserror",
|
|
673
|
+
"tokio",
|
|
674
|
+
"url",
|
|
675
|
+
"v8",
|
|
676
|
+
"wasm_dep_analyzer",
|
|
677
|
+
"windows-sys 0.59.0",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "deno_error"
|
|
682
|
+
version = "0.7.1"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "bfafd2219b29886a71aecbb3449e462deed1b2c474dc5b12f855f0e58c478931"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"deno_error_macro",
|
|
687
|
+
"libc",
|
|
688
|
+
"serde",
|
|
689
|
+
"serde_json",
|
|
690
|
+
"tokio",
|
|
691
|
+
"url",
|
|
692
|
+
]
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "deno_error_macro"
|
|
696
|
+
version = "0.7.1"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "1c28ede88783f14cd8aae46ca89f230c226b40e4a81ab06fa52ed72af84beb2f"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"proc-macro2",
|
|
701
|
+
"quote",
|
|
702
|
+
"syn",
|
|
703
|
+
]
|
|
704
|
+
|
|
705
|
+
[[package]]
|
|
706
|
+
name = "deno_ops"
|
|
707
|
+
version = "0.280.0"
|
|
708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
709
|
+
checksum = "7404a038088a57bb9d73e48975a0359d869e69edc450f4a30fe5416652b4b470"
|
|
710
|
+
dependencies = [
|
|
711
|
+
"indexmap",
|
|
712
|
+
"proc-macro2",
|
|
713
|
+
"quote",
|
|
714
|
+
"stringcase",
|
|
715
|
+
"strum",
|
|
716
|
+
"strum_macros",
|
|
717
|
+
"syn",
|
|
718
|
+
"syn-match",
|
|
719
|
+
"thiserror",
|
|
720
|
+
]
|
|
721
|
+
|
|
722
|
+
[[package]]
|
|
723
|
+
name = "deno_path_util"
|
|
724
|
+
version = "0.6.4"
|
|
725
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
726
|
+
checksum = "78c7e98943f0d068928906db0c7bde89de684fa32c6a8018caacc4cee2cdd72b"
|
|
727
|
+
dependencies = [
|
|
728
|
+
"deno_error",
|
|
729
|
+
"percent-encoding",
|
|
730
|
+
"sys_traits",
|
|
731
|
+
"thiserror",
|
|
732
|
+
"url",
|
|
733
|
+
]
|
|
734
|
+
|
|
735
|
+
[[package]]
|
|
736
|
+
name = "deno_unsync"
|
|
737
|
+
version = "0.4.4"
|
|
738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
739
|
+
checksum = "6742a724e8becb372a74c650a1aefb8924a5b8107f7d75b3848763ea24b27a87"
|
|
740
|
+
dependencies = [
|
|
741
|
+
"futures-util",
|
|
742
|
+
"parking_lot",
|
|
743
|
+
"tokio",
|
|
744
|
+
]
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "derive_builder"
|
|
748
|
+
version = "0.20.2"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
|
|
751
|
+
dependencies = [
|
|
752
|
+
"derive_builder_macro",
|
|
753
|
+
]
|
|
754
|
+
|
|
755
|
+
[[package]]
|
|
756
|
+
name = "derive_builder_core"
|
|
757
|
+
version = "0.20.2"
|
|
758
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
759
|
+
checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
|
|
760
|
+
dependencies = [
|
|
761
|
+
"darling",
|
|
762
|
+
"proc-macro2",
|
|
763
|
+
"quote",
|
|
764
|
+
"syn",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "derive_builder_macro"
|
|
769
|
+
version = "0.20.2"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"derive_builder_core",
|
|
774
|
+
"syn",
|
|
775
|
+
]
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "digest"
|
|
779
|
+
version = "0.10.7"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"block-buffer",
|
|
784
|
+
"crypto-common",
|
|
785
|
+
]
|
|
786
|
+
|
|
787
|
+
[[package]]
|
|
788
|
+
name = "diplomat"
|
|
789
|
+
version = "0.15.0"
|
|
790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
791
|
+
checksum = "7935649d00000f5c5d735448ad3dc07b9738160727017914cf42138b8e8e6611"
|
|
792
|
+
dependencies = [
|
|
793
|
+
"diplomat_core",
|
|
794
|
+
"proc-macro2",
|
|
795
|
+
"quote",
|
|
796
|
+
"syn",
|
|
797
|
+
]
|
|
798
|
+
|
|
799
|
+
[[package]]
|
|
800
|
+
name = "diplomat-runtime"
|
|
801
|
+
version = "0.15.1"
|
|
802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
803
|
+
checksum = "970ac38ad677632efcee6d517e783958da9bc78ec206d8d5e35b459ffc5e4864"
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "diplomat_core"
|
|
807
|
+
version = "0.15.0"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "9cf41b94101a4bce993febaf0098092b0bb31deaf0ecaf6e0a2562465f61b383"
|
|
810
|
+
dependencies = [
|
|
811
|
+
"proc-macro2",
|
|
812
|
+
"quote",
|
|
813
|
+
"serde",
|
|
814
|
+
"smallvec",
|
|
815
|
+
"strck",
|
|
816
|
+
"syn",
|
|
817
|
+
]
|
|
818
|
+
|
|
819
|
+
[[package]]
|
|
820
|
+
name = "displaydoc"
|
|
821
|
+
version = "0.2.6"
|
|
822
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
823
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
824
|
+
dependencies = [
|
|
825
|
+
"proc-macro2",
|
|
826
|
+
"quote",
|
|
827
|
+
"syn",
|
|
828
|
+
]
|
|
829
|
+
|
|
830
|
+
[[package]]
|
|
831
|
+
name = "dragonbox_ecma"
|
|
832
|
+
version = "0.1.12"
|
|
833
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
834
|
+
checksum = "fd8e701084c37e7ef62d3f9e453b618130cbc0ef3573847785952a3ac3f746bf"
|
|
835
|
+
|
|
836
|
+
[[package]]
|
|
837
|
+
name = "either"
|
|
838
|
+
version = "1.16.0"
|
|
839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
840
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
841
|
+
|
|
842
|
+
[[package]]
|
|
843
|
+
name = "encoding_rs"
|
|
844
|
+
version = "0.8.35"
|
|
845
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
846
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
847
|
+
dependencies = [
|
|
848
|
+
"cfg-if",
|
|
849
|
+
]
|
|
850
|
+
|
|
851
|
+
[[package]]
|
|
852
|
+
name = "equivalent"
|
|
853
|
+
version = "1.0.2"
|
|
854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
855
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
856
|
+
|
|
857
|
+
[[package]]
|
|
858
|
+
name = "errno"
|
|
859
|
+
version = "0.3.14"
|
|
860
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
861
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
862
|
+
dependencies = [
|
|
863
|
+
"libc",
|
|
864
|
+
"windows-sys 0.61.2",
|
|
865
|
+
]
|
|
866
|
+
|
|
867
|
+
[[package]]
|
|
868
|
+
name = "fastrand"
|
|
869
|
+
version = "2.4.1"
|
|
870
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
871
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "find-msvc-tools"
|
|
875
|
+
version = "0.1.9"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "flate2"
|
|
881
|
+
version = "1.1.9"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"crc32fast",
|
|
886
|
+
"miniz_oxide",
|
|
887
|
+
]
|
|
888
|
+
|
|
889
|
+
[[package]]
|
|
890
|
+
name = "fnv"
|
|
891
|
+
version = "1.0.7"
|
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
893
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
894
|
+
|
|
895
|
+
[[package]]
|
|
896
|
+
name = "form_urlencoded"
|
|
897
|
+
version = "1.2.2"
|
|
898
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
899
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
900
|
+
dependencies = [
|
|
901
|
+
"percent-encoding",
|
|
902
|
+
]
|
|
903
|
+
|
|
904
|
+
[[package]]
|
|
905
|
+
name = "from_variant"
|
|
906
|
+
version = "3.0.0"
|
|
907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
908
|
+
checksum = "e5ff35a391aef949120a0340d690269b3d9f63460a6106e99bd07b961f345ea9"
|
|
909
|
+
dependencies = [
|
|
910
|
+
"swc_macros_common",
|
|
911
|
+
"syn",
|
|
912
|
+
]
|
|
913
|
+
|
|
914
|
+
[[package]]
|
|
915
|
+
name = "fslock"
|
|
916
|
+
version = "0.2.1"
|
|
917
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
918
|
+
checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
|
|
919
|
+
dependencies = [
|
|
920
|
+
"libc",
|
|
921
|
+
"winapi",
|
|
922
|
+
]
|
|
923
|
+
|
|
924
|
+
[[package]]
|
|
925
|
+
name = "funty"
|
|
926
|
+
version = "2.0.0"
|
|
927
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
928
|
+
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
929
|
+
|
|
930
|
+
[[package]]
|
|
931
|
+
name = "futures"
|
|
932
|
+
version = "0.3.32"
|
|
933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
934
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
935
|
+
dependencies = [
|
|
936
|
+
"futures-channel",
|
|
937
|
+
"futures-core",
|
|
938
|
+
"futures-executor",
|
|
939
|
+
"futures-io",
|
|
940
|
+
"futures-sink",
|
|
941
|
+
"futures-task",
|
|
942
|
+
"futures-util",
|
|
943
|
+
]
|
|
944
|
+
|
|
945
|
+
[[package]]
|
|
946
|
+
name = "futures-channel"
|
|
947
|
+
version = "0.3.32"
|
|
948
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
949
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
950
|
+
dependencies = [
|
|
951
|
+
"futures-core",
|
|
952
|
+
"futures-sink",
|
|
953
|
+
]
|
|
954
|
+
|
|
955
|
+
[[package]]
|
|
956
|
+
name = "futures-core"
|
|
957
|
+
version = "0.3.32"
|
|
958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
959
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
960
|
+
|
|
961
|
+
[[package]]
|
|
962
|
+
name = "futures-executor"
|
|
963
|
+
version = "0.3.32"
|
|
964
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
965
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
966
|
+
dependencies = [
|
|
967
|
+
"futures-core",
|
|
968
|
+
"futures-task",
|
|
969
|
+
"futures-util",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "futures-io"
|
|
974
|
+
version = "0.3.32"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "futures-macro"
|
|
980
|
+
version = "0.3.32"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
983
|
+
dependencies = [
|
|
984
|
+
"proc-macro2",
|
|
985
|
+
"quote",
|
|
986
|
+
"syn",
|
|
987
|
+
]
|
|
988
|
+
|
|
989
|
+
[[package]]
|
|
990
|
+
name = "futures-sink"
|
|
991
|
+
version = "0.3.32"
|
|
992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
993
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
994
|
+
|
|
995
|
+
[[package]]
|
|
996
|
+
name = "futures-task"
|
|
997
|
+
version = "0.3.32"
|
|
998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
999
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
1000
|
+
|
|
1001
|
+
[[package]]
|
|
1002
|
+
name = "futures-util"
|
|
1003
|
+
version = "0.3.32"
|
|
1004
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1005
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
1006
|
+
dependencies = [
|
|
1007
|
+
"futures-channel",
|
|
1008
|
+
"futures-core",
|
|
1009
|
+
"futures-io",
|
|
1010
|
+
"futures-macro",
|
|
1011
|
+
"futures-sink",
|
|
1012
|
+
"futures-task",
|
|
1013
|
+
"memchr",
|
|
1014
|
+
"pin-project-lite",
|
|
1015
|
+
"slab",
|
|
1016
|
+
]
|
|
1017
|
+
|
|
1018
|
+
[[package]]
|
|
1019
|
+
name = "generic-array"
|
|
1020
|
+
version = "0.14.7"
|
|
1021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1022
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
1023
|
+
dependencies = [
|
|
1024
|
+
"typenum",
|
|
1025
|
+
"version_check",
|
|
1026
|
+
]
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "getrandom"
|
|
1030
|
+
version = "0.2.17"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
1033
|
+
dependencies = [
|
|
1034
|
+
"cfg-if",
|
|
1035
|
+
"js-sys",
|
|
1036
|
+
"libc",
|
|
1037
|
+
"wasi",
|
|
1038
|
+
"wasm-bindgen",
|
|
1039
|
+
]
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "getrandom"
|
|
1043
|
+
version = "0.3.4"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"cfg-if",
|
|
1048
|
+
"js-sys",
|
|
1049
|
+
"libc",
|
|
1050
|
+
"r-efi",
|
|
1051
|
+
"wasip2",
|
|
1052
|
+
"wasm-bindgen",
|
|
1053
|
+
]
|
|
1054
|
+
|
|
1055
|
+
[[package]]
|
|
1056
|
+
name = "glob"
|
|
1057
|
+
version = "0.3.3"
|
|
1058
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1059
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
1060
|
+
|
|
1061
|
+
[[package]]
|
|
1062
|
+
name = "gzip-header"
|
|
1063
|
+
version = "1.1.0"
|
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1065
|
+
checksum = "86848f4fd157d91041a62c78046fb7b248bcc2dce78376d436a1756e9a038577"
|
|
1066
|
+
dependencies = [
|
|
1067
|
+
"crc32fast",
|
|
1068
|
+
]
|
|
1069
|
+
|
|
1070
|
+
[[package]]
|
|
1071
|
+
name = "half"
|
|
1072
|
+
version = "2.7.1"
|
|
1073
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1074
|
+
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
1075
|
+
dependencies = [
|
|
1076
|
+
"cfg-if",
|
|
1077
|
+
"crunchy",
|
|
1078
|
+
"zerocopy",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "hashbrown"
|
|
1083
|
+
version = "0.14.5"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"ahash",
|
|
1088
|
+
"allocator-api2",
|
|
1089
|
+
]
|
|
1090
|
+
|
|
1091
|
+
[[package]]
|
|
1092
|
+
name = "hashbrown"
|
|
1093
|
+
version = "0.17.1"
|
|
1094
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1095
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
1096
|
+
|
|
1097
|
+
[[package]]
|
|
1098
|
+
name = "heck"
|
|
1099
|
+
version = "0.5.0"
|
|
1100
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1101
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
1102
|
+
|
|
1103
|
+
[[package]]
|
|
1104
|
+
name = "hermit-abi"
|
|
1105
|
+
version = "0.5.2"
|
|
1106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1107
|
+
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
1108
|
+
|
|
1109
|
+
[[package]]
|
|
1110
|
+
name = "home"
|
|
1111
|
+
version = "0.5.12"
|
|
1112
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1113
|
+
checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
|
|
1114
|
+
dependencies = [
|
|
1115
|
+
"windows-sys 0.61.2",
|
|
1116
|
+
]
|
|
1117
|
+
|
|
1118
|
+
[[package]]
|
|
1119
|
+
name = "hstr"
|
|
1120
|
+
version = "3.0.6"
|
|
1121
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1122
|
+
checksum = "83bb87e4b300d73412f6dcc7022ee7741452b51b155c2b06e5994d0770c2dbe2"
|
|
1123
|
+
dependencies = [
|
|
1124
|
+
"hashbrown 0.14.5",
|
|
1125
|
+
"new_debug_unreachable",
|
|
1126
|
+
"once_cell",
|
|
1127
|
+
"rustc-hash",
|
|
1128
|
+
"serde",
|
|
1129
|
+
"triomphe",
|
|
1130
|
+
]
|
|
1131
|
+
|
|
1132
|
+
[[package]]
|
|
1133
|
+
name = "html5ever"
|
|
1134
|
+
version = "0.39.0"
|
|
1135
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1136
|
+
checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
|
|
1137
|
+
dependencies = [
|
|
1138
|
+
"log",
|
|
1139
|
+
"markup5ever",
|
|
1140
|
+
]
|
|
1141
|
+
|
|
1142
|
+
[[package]]
|
|
1143
|
+
name = "http"
|
|
1144
|
+
version = "1.4.2"
|
|
1145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1146
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
1147
|
+
dependencies = [
|
|
1148
|
+
"bytes",
|
|
1149
|
+
"itoa",
|
|
1150
|
+
]
|
|
1151
|
+
|
|
1152
|
+
[[package]]
|
|
1153
|
+
name = "http-body"
|
|
1154
|
+
version = "1.0.1"
|
|
1155
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1156
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
1157
|
+
dependencies = [
|
|
1158
|
+
"bytes",
|
|
1159
|
+
"http",
|
|
1160
|
+
]
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "http-body-util"
|
|
1164
|
+
version = "0.1.3"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"bytes",
|
|
1169
|
+
"futures-core",
|
|
1170
|
+
"http",
|
|
1171
|
+
"http-body",
|
|
1172
|
+
"pin-project-lite",
|
|
1173
|
+
]
|
|
1174
|
+
|
|
1175
|
+
[[package]]
|
|
1176
|
+
name = "httparse"
|
|
1177
|
+
version = "1.10.1"
|
|
1178
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1179
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "hyper"
|
|
1183
|
+
version = "1.10.1"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
|
|
1186
|
+
dependencies = [
|
|
1187
|
+
"atomic-waker",
|
|
1188
|
+
"bytes",
|
|
1189
|
+
"futures-channel",
|
|
1190
|
+
"futures-core",
|
|
1191
|
+
"http",
|
|
1192
|
+
"http-body",
|
|
1193
|
+
"httparse",
|
|
1194
|
+
"itoa",
|
|
1195
|
+
"pin-project-lite",
|
|
1196
|
+
"smallvec",
|
|
1197
|
+
"tokio",
|
|
1198
|
+
"want",
|
|
1199
|
+
]
|
|
1200
|
+
|
|
1201
|
+
[[package]]
|
|
1202
|
+
name = "hyper-rustls"
|
|
1203
|
+
version = "0.27.9"
|
|
1204
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1205
|
+
checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
|
|
1206
|
+
dependencies = [
|
|
1207
|
+
"http",
|
|
1208
|
+
"hyper",
|
|
1209
|
+
"hyper-util",
|
|
1210
|
+
"rustls",
|
|
1211
|
+
"tokio",
|
|
1212
|
+
"tokio-rustls",
|
|
1213
|
+
"tower-service",
|
|
1214
|
+
"webpki-roots",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "hyper-util"
|
|
1219
|
+
version = "0.1.20"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"base64",
|
|
1224
|
+
"bytes",
|
|
1225
|
+
"futures-channel",
|
|
1226
|
+
"futures-util",
|
|
1227
|
+
"http",
|
|
1228
|
+
"http-body",
|
|
1229
|
+
"hyper",
|
|
1230
|
+
"ipnet",
|
|
1231
|
+
"libc",
|
|
1232
|
+
"percent-encoding",
|
|
1233
|
+
"pin-project-lite",
|
|
1234
|
+
"socket2",
|
|
1235
|
+
"tokio",
|
|
1236
|
+
"tower-service",
|
|
1237
|
+
"tracing",
|
|
1238
|
+
]
|
|
1239
|
+
|
|
1240
|
+
[[package]]
|
|
1241
|
+
name = "icu_calendar"
|
|
1242
|
+
version = "2.2.1"
|
|
1243
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1244
|
+
checksum = "a2b2acc6263f494f1df50685b53ff8e57869e47d5c6fe39c23d518ae9a4f3e45"
|
|
1245
|
+
dependencies = [
|
|
1246
|
+
"calendrical_calculations",
|
|
1247
|
+
"displaydoc",
|
|
1248
|
+
"icu_calendar_data",
|
|
1249
|
+
"icu_locale",
|
|
1250
|
+
"icu_locale_core",
|
|
1251
|
+
"icu_provider",
|
|
1252
|
+
"tinystr",
|
|
1253
|
+
"zerovec",
|
|
1254
|
+
]
|
|
1255
|
+
|
|
1256
|
+
[[package]]
|
|
1257
|
+
name = "icu_calendar_data"
|
|
1258
|
+
version = "2.2.0"
|
|
1259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1260
|
+
checksum = "118577bcf3a0fa7c6ac0a7d6e951814da84ee56b9b1f68fb4d8d10b08cefaf4d"
|
|
1261
|
+
|
|
1262
|
+
[[package]]
|
|
1263
|
+
name = "icu_collections"
|
|
1264
|
+
version = "2.2.0"
|
|
1265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1266
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
1267
|
+
dependencies = [
|
|
1268
|
+
"displaydoc",
|
|
1269
|
+
"potential_utf",
|
|
1270
|
+
"utf8_iter",
|
|
1271
|
+
"yoke",
|
|
1272
|
+
"zerofrom",
|
|
1273
|
+
"zerovec",
|
|
1274
|
+
]
|
|
1275
|
+
|
|
1276
|
+
[[package]]
|
|
1277
|
+
name = "icu_locale"
|
|
1278
|
+
version = "2.2.0"
|
|
1279
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1280
|
+
checksum = "d5a396343c7208121dc86e35623d3dfe19814a7613cfd14964994cdc9c9a2e26"
|
|
1281
|
+
dependencies = [
|
|
1282
|
+
"icu_collections",
|
|
1283
|
+
"icu_locale_core",
|
|
1284
|
+
"icu_locale_data",
|
|
1285
|
+
"icu_provider",
|
|
1286
|
+
"potential_utf",
|
|
1287
|
+
"tinystr",
|
|
1288
|
+
"zerovec",
|
|
1289
|
+
]
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "icu_locale_core"
|
|
1293
|
+
version = "2.2.0"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
1296
|
+
dependencies = [
|
|
1297
|
+
"displaydoc",
|
|
1298
|
+
"litemap",
|
|
1299
|
+
"serde",
|
|
1300
|
+
"tinystr",
|
|
1301
|
+
"writeable",
|
|
1302
|
+
"zerovec",
|
|
1303
|
+
]
|
|
1304
|
+
|
|
1305
|
+
[[package]]
|
|
1306
|
+
name = "icu_locale_data"
|
|
1307
|
+
version = "2.2.0"
|
|
1308
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1309
|
+
checksum = "d5fdcc9ac77c6d74ff5cf6e65ef3181d6af32003b16fce3a77fb451d2f695993"
|
|
1310
|
+
|
|
1311
|
+
[[package]]
|
|
1312
|
+
name = "icu_normalizer"
|
|
1313
|
+
version = "2.2.0"
|
|
1314
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1315
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
1316
|
+
dependencies = [
|
|
1317
|
+
"icu_collections",
|
|
1318
|
+
"icu_normalizer_data",
|
|
1319
|
+
"icu_properties",
|
|
1320
|
+
"icu_provider",
|
|
1321
|
+
"smallvec",
|
|
1322
|
+
"zerovec",
|
|
1323
|
+
]
|
|
1324
|
+
|
|
1325
|
+
[[package]]
|
|
1326
|
+
name = "icu_normalizer_data"
|
|
1327
|
+
version = "2.2.0"
|
|
1328
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1329
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
1330
|
+
|
|
1331
|
+
[[package]]
|
|
1332
|
+
name = "icu_properties"
|
|
1333
|
+
version = "2.2.0"
|
|
1334
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1335
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
1336
|
+
dependencies = [
|
|
1337
|
+
"icu_collections",
|
|
1338
|
+
"icu_locale_core",
|
|
1339
|
+
"icu_properties_data",
|
|
1340
|
+
"icu_provider",
|
|
1341
|
+
"zerotrie",
|
|
1342
|
+
"zerovec",
|
|
1343
|
+
]
|
|
1344
|
+
|
|
1345
|
+
[[package]]
|
|
1346
|
+
name = "icu_properties_data"
|
|
1347
|
+
version = "2.2.0"
|
|
1348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1349
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
1350
|
+
|
|
1351
|
+
[[package]]
|
|
1352
|
+
name = "icu_provider"
|
|
1353
|
+
version = "2.2.0"
|
|
1354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1355
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
1356
|
+
dependencies = [
|
|
1357
|
+
"displaydoc",
|
|
1358
|
+
"icu_locale_core",
|
|
1359
|
+
"serde",
|
|
1360
|
+
"stable_deref_trait",
|
|
1361
|
+
"writeable",
|
|
1362
|
+
"yoke",
|
|
1363
|
+
"zerofrom",
|
|
1364
|
+
"zerotrie",
|
|
1365
|
+
"zerovec",
|
|
1366
|
+
]
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "ident_case"
|
|
1370
|
+
version = "1.0.1"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
1373
|
+
|
|
1374
|
+
[[package]]
|
|
1375
|
+
name = "idna"
|
|
1376
|
+
version = "1.1.0"
|
|
1377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1378
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
1379
|
+
dependencies = [
|
|
1380
|
+
"idna_adapter",
|
|
1381
|
+
"smallvec",
|
|
1382
|
+
"utf8_iter",
|
|
1383
|
+
]
|
|
1384
|
+
|
|
1385
|
+
[[package]]
|
|
1386
|
+
name = "idna_adapter"
|
|
1387
|
+
version = "1.2.2"
|
|
1388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1389
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
1390
|
+
dependencies = [
|
|
1391
|
+
"icu_normalizer",
|
|
1392
|
+
"icu_properties",
|
|
1393
|
+
]
|
|
1394
|
+
|
|
1395
|
+
[[package]]
|
|
1396
|
+
name = "if_chain"
|
|
1397
|
+
version = "1.0.3"
|
|
1398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1399
|
+
checksum = "cd62e6b5e86ea8eeeb8db1de02880a6abc01a397b2ebb64b5d74ac255318f5cb"
|
|
1400
|
+
|
|
1401
|
+
[[package]]
|
|
1402
|
+
name = "indexmap"
|
|
1403
|
+
version = "2.14.0"
|
|
1404
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1405
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
1406
|
+
dependencies = [
|
|
1407
|
+
"equivalent",
|
|
1408
|
+
"hashbrown 0.17.1",
|
|
1409
|
+
"serde",
|
|
1410
|
+
"serde_core",
|
|
1411
|
+
]
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "indoc"
|
|
1415
|
+
version = "2.0.7"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
|
|
1418
|
+
dependencies = [
|
|
1419
|
+
"rustversion",
|
|
1420
|
+
]
|
|
1421
|
+
|
|
1422
|
+
[[package]]
|
|
1423
|
+
name = "inventory"
|
|
1424
|
+
version = "0.3.24"
|
|
1425
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1426
|
+
checksum = "a4f0c30c76f2f4ccee3fe55a2435f691ca00c0e4bd87abe4f4a851b1d4dac39b"
|
|
1427
|
+
dependencies = [
|
|
1428
|
+
"rustversion",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "ipnet"
|
|
1433
|
+
version = "2.12.0"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
1436
|
+
|
|
1437
|
+
[[package]]
|
|
1438
|
+
name = "is-macro"
|
|
1439
|
+
version = "0.3.7"
|
|
1440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1441
|
+
checksum = "1d57a3e447e24c22647738e4607f1df1e0ec6f72e16182c4cd199f647cdfb0e4"
|
|
1442
|
+
dependencies = [
|
|
1443
|
+
"heck",
|
|
1444
|
+
"proc-macro2",
|
|
1445
|
+
"quote",
|
|
1446
|
+
"syn",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "is-terminal"
|
|
1451
|
+
version = "0.4.17"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
1454
|
+
dependencies = [
|
|
1455
|
+
"hermit-abi",
|
|
1456
|
+
"libc",
|
|
1457
|
+
"windows-sys 0.61.2",
|
|
1458
|
+
]
|
|
1459
|
+
|
|
1460
|
+
[[package]]
|
|
1461
|
+
name = "itertools"
|
|
1462
|
+
version = "0.10.5"
|
|
1463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1464
|
+
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
1465
|
+
dependencies = [
|
|
1466
|
+
"either",
|
|
1467
|
+
]
|
|
1468
|
+
|
|
1469
|
+
[[package]]
|
|
1470
|
+
name = "itertools"
|
|
1471
|
+
version = "0.13.0"
|
|
1472
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1473
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
1474
|
+
dependencies = [
|
|
1475
|
+
"either",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "itoa"
|
|
1480
|
+
version = "1.0.18"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1483
|
+
|
|
1484
|
+
[[package]]
|
|
1485
|
+
name = "ixdtf"
|
|
1486
|
+
version = "0.6.5"
|
|
1487
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1488
|
+
checksum = "2ceaf4c6c48465bead8cb6a0b7c4ee0c86ecbb31239032b9c66ab9a08d2f3ee1"
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "js-sys"
|
|
1492
|
+
version = "0.3.102"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"cfg-if",
|
|
1497
|
+
"futures-util",
|
|
1498
|
+
"wasm-bindgen",
|
|
1499
|
+
]
|
|
1500
|
+
|
|
1501
|
+
[[package]]
|
|
1502
|
+
name = "libc"
|
|
1503
|
+
version = "0.2.186"
|
|
1504
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1505
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1506
|
+
|
|
1507
|
+
[[package]]
|
|
1508
|
+
name = "libloading"
|
|
1509
|
+
version = "0.8.9"
|
|
1510
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1511
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1512
|
+
dependencies = [
|
|
1513
|
+
"cfg-if",
|
|
1514
|
+
"windows-link",
|
|
1515
|
+
]
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "libm"
|
|
1519
|
+
version = "0.2.16"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "linux-raw-sys"
|
|
1525
|
+
version = "0.4.15"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "litemap"
|
|
1531
|
+
version = "0.8.2"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1534
|
+
|
|
1535
|
+
[[package]]
|
|
1536
|
+
name = "lock_api"
|
|
1537
|
+
version = "0.4.14"
|
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1539
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1540
|
+
dependencies = [
|
|
1541
|
+
"scopeguard",
|
|
1542
|
+
]
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "log"
|
|
1546
|
+
version = "0.4.33"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "lru-slab"
|
|
1552
|
+
version = "0.1.2"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "markup5ever"
|
|
1558
|
+
version = "0.39.0"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"log",
|
|
1563
|
+
"tendril",
|
|
1564
|
+
"web_atoms",
|
|
1565
|
+
]
|
|
1566
|
+
|
|
1567
|
+
[[package]]
|
|
1568
|
+
name = "markup5ever_rcdom"
|
|
1569
|
+
version = "0.39.0+unofficial"
|
|
1570
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1571
|
+
checksum = "3ac010f19d6c4af81eeb4018a39d7a115de9d285af45c126a4ac02e6fc5716b7"
|
|
1572
|
+
dependencies = [
|
|
1573
|
+
"html5ever",
|
|
1574
|
+
"markup5ever",
|
|
1575
|
+
"tendril",
|
|
1576
|
+
"xml5ever",
|
|
1577
|
+
]
|
|
1578
|
+
|
|
1579
|
+
[[package]]
|
|
1580
|
+
name = "memchr"
|
|
1581
|
+
version = "2.8.2"
|
|
1582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1583
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
1584
|
+
|
|
1585
|
+
[[package]]
|
|
1586
|
+
name = "memoffset"
|
|
1587
|
+
version = "0.9.1"
|
|
1588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1589
|
+
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
|
|
1590
|
+
dependencies = [
|
|
1591
|
+
"autocfg",
|
|
1592
|
+
]
|
|
1593
|
+
|
|
1594
|
+
[[package]]
|
|
1595
|
+
name = "minimal-lexical"
|
|
1596
|
+
version = "0.2.1"
|
|
1597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1598
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1599
|
+
|
|
1600
|
+
[[package]]
|
|
1601
|
+
name = "miniz_oxide"
|
|
1602
|
+
version = "0.8.9"
|
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1604
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1605
|
+
dependencies = [
|
|
1606
|
+
"adler2",
|
|
1607
|
+
"simd-adler32",
|
|
1608
|
+
]
|
|
1609
|
+
|
|
1610
|
+
[[package]]
|
|
1611
|
+
name = "mio"
|
|
1612
|
+
version = "1.2.1"
|
|
1613
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1614
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1615
|
+
dependencies = [
|
|
1616
|
+
"libc",
|
|
1617
|
+
"wasi",
|
|
1618
|
+
"windows-sys 0.61.2",
|
|
1619
|
+
]
|
|
1620
|
+
|
|
1621
|
+
[[package]]
|
|
1622
|
+
name = "napi"
|
|
1623
|
+
version = "2.16.17"
|
|
1624
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1625
|
+
checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
|
|
1626
|
+
dependencies = [
|
|
1627
|
+
"bitflags",
|
|
1628
|
+
"ctor",
|
|
1629
|
+
"napi-derive",
|
|
1630
|
+
"napi-sys",
|
|
1631
|
+
"once_cell",
|
|
1632
|
+
"tokio",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "napi-build"
|
|
1637
|
+
version = "2.3.2"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
|
|
1640
|
+
|
|
1641
|
+
[[package]]
|
|
1642
|
+
name = "napi-derive"
|
|
1643
|
+
version = "2.16.13"
|
|
1644
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1645
|
+
checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
|
|
1646
|
+
dependencies = [
|
|
1647
|
+
"cfg-if",
|
|
1648
|
+
"convert_case",
|
|
1649
|
+
"napi-derive-backend",
|
|
1650
|
+
"proc-macro2",
|
|
1651
|
+
"quote",
|
|
1652
|
+
"syn",
|
|
1653
|
+
]
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "napi-derive-backend"
|
|
1657
|
+
version = "1.0.75"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
|
|
1660
|
+
dependencies = [
|
|
1661
|
+
"convert_case",
|
|
1662
|
+
"once_cell",
|
|
1663
|
+
"proc-macro2",
|
|
1664
|
+
"quote",
|
|
1665
|
+
"regex",
|
|
1666
|
+
"semver",
|
|
1667
|
+
"syn",
|
|
1668
|
+
]
|
|
1669
|
+
|
|
1670
|
+
[[package]]
|
|
1671
|
+
name = "napi-sys"
|
|
1672
|
+
version = "2.4.0"
|
|
1673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1674
|
+
checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
|
|
1675
|
+
dependencies = [
|
|
1676
|
+
"libloading",
|
|
1677
|
+
]
|
|
1678
|
+
|
|
1679
|
+
[[package]]
|
|
1680
|
+
name = "new_debug_unreachable"
|
|
1681
|
+
version = "1.0.6"
|
|
1682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1683
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1684
|
+
|
|
1685
|
+
[[package]]
|
|
1686
|
+
name = "nom"
|
|
1687
|
+
version = "7.1.3"
|
|
1688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1689
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1690
|
+
dependencies = [
|
|
1691
|
+
"memchr",
|
|
1692
|
+
"minimal-lexical",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "num-bigint"
|
|
1697
|
+
version = "0.4.6"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
|
|
1700
|
+
dependencies = [
|
|
1701
|
+
"num-integer",
|
|
1702
|
+
"num-traits",
|
|
1703
|
+
"rand 0.8.6",
|
|
1704
|
+
"serde",
|
|
1705
|
+
]
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "num-integer"
|
|
1709
|
+
version = "0.1.46"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"num-traits",
|
|
1714
|
+
]
|
|
1715
|
+
|
|
1716
|
+
[[package]]
|
|
1717
|
+
name = "num-traits"
|
|
1718
|
+
version = "0.2.19"
|
|
1719
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1720
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1721
|
+
dependencies = [
|
|
1722
|
+
"autocfg",
|
|
1723
|
+
]
|
|
1724
|
+
|
|
1725
|
+
[[package]]
|
|
1726
|
+
name = "num_cpus"
|
|
1727
|
+
version = "1.17.0"
|
|
1728
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1729
|
+
checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
|
|
1730
|
+
dependencies = [
|
|
1731
|
+
"hermit-abi",
|
|
1732
|
+
"libc",
|
|
1733
|
+
]
|
|
1734
|
+
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "once_cell"
|
|
1737
|
+
version = "1.21.4"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1740
|
+
|
|
1741
|
+
[[package]]
|
|
1742
|
+
name = "oorandom"
|
|
1743
|
+
version = "11.1.5"
|
|
1744
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1745
|
+
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
1746
|
+
|
|
1747
|
+
[[package]]
|
|
1748
|
+
name = "outref"
|
|
1749
|
+
version = "0.5.2"
|
|
1750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1751
|
+
checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
|
|
1752
|
+
|
|
1753
|
+
[[package]]
|
|
1754
|
+
name = "par-core"
|
|
1755
|
+
version = "2.0.0"
|
|
1756
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1757
|
+
checksum = "e96cbd21255b7fb29a5d51ef38a779b517a91abd59e2756c039583f43ef4c90f"
|
|
1758
|
+
dependencies = [
|
|
1759
|
+
"once_cell",
|
|
1760
|
+
]
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "parking_lot"
|
|
1764
|
+
version = "0.12.5"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1767
|
+
dependencies = [
|
|
1768
|
+
"lock_api",
|
|
1769
|
+
"parking_lot_core",
|
|
1770
|
+
]
|
|
1771
|
+
|
|
1772
|
+
[[package]]
|
|
1773
|
+
name = "parking_lot_core"
|
|
1774
|
+
version = "0.9.12"
|
|
1775
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1776
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1777
|
+
dependencies = [
|
|
1778
|
+
"cfg-if",
|
|
1779
|
+
"libc",
|
|
1780
|
+
"redox_syscall",
|
|
1781
|
+
"smallvec",
|
|
1782
|
+
"windows-link",
|
|
1783
|
+
]
|
|
1784
|
+
|
|
1785
|
+
[[package]]
|
|
1786
|
+
name = "paste"
|
|
1787
|
+
version = "1.0.15"
|
|
1788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1789
|
+
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
1790
|
+
|
|
1791
|
+
[[package]]
|
|
1792
|
+
name = "percent-encoding"
|
|
1793
|
+
version = "2.3.2"
|
|
1794
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1795
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1796
|
+
|
|
1797
|
+
[[package]]
|
|
1798
|
+
name = "phf"
|
|
1799
|
+
version = "0.11.3"
|
|
1800
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1801
|
+
checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
|
|
1802
|
+
dependencies = [
|
|
1803
|
+
"phf_macros",
|
|
1804
|
+
"phf_shared 0.11.3",
|
|
1805
|
+
]
|
|
1806
|
+
|
|
1807
|
+
[[package]]
|
|
1808
|
+
name = "phf"
|
|
1809
|
+
version = "0.13.1"
|
|
1810
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1811
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
1812
|
+
dependencies = [
|
|
1813
|
+
"phf_shared 0.13.1",
|
|
1814
|
+
"serde",
|
|
1815
|
+
]
|
|
1816
|
+
|
|
1817
|
+
[[package]]
|
|
1818
|
+
name = "phf_codegen"
|
|
1819
|
+
version = "0.13.1"
|
|
1820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1821
|
+
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
|
1822
|
+
dependencies = [
|
|
1823
|
+
"phf_generator 0.13.1",
|
|
1824
|
+
"phf_shared 0.13.1",
|
|
1825
|
+
]
|
|
1826
|
+
|
|
1827
|
+
[[package]]
|
|
1828
|
+
name = "phf_generator"
|
|
1829
|
+
version = "0.11.3"
|
|
1830
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1831
|
+
checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
|
|
1832
|
+
dependencies = [
|
|
1833
|
+
"phf_shared 0.11.3",
|
|
1834
|
+
"rand 0.8.6",
|
|
1835
|
+
]
|
|
1836
|
+
|
|
1837
|
+
[[package]]
|
|
1838
|
+
name = "phf_generator"
|
|
1839
|
+
version = "0.13.1"
|
|
1840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1841
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
1842
|
+
dependencies = [
|
|
1843
|
+
"fastrand",
|
|
1844
|
+
"phf_shared 0.13.1",
|
|
1845
|
+
]
|
|
1846
|
+
|
|
1847
|
+
[[package]]
|
|
1848
|
+
name = "phf_macros"
|
|
1849
|
+
version = "0.11.3"
|
|
1850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1851
|
+
checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216"
|
|
1852
|
+
dependencies = [
|
|
1853
|
+
"phf_generator 0.11.3",
|
|
1854
|
+
"phf_shared 0.11.3",
|
|
1855
|
+
"proc-macro2",
|
|
1856
|
+
"quote",
|
|
1857
|
+
"syn",
|
|
1858
|
+
]
|
|
1859
|
+
|
|
1860
|
+
[[package]]
|
|
1861
|
+
name = "phf_shared"
|
|
1862
|
+
version = "0.11.3"
|
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
+
checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
|
|
1865
|
+
dependencies = [
|
|
1866
|
+
"siphasher 1.0.3",
|
|
1867
|
+
]
|
|
1868
|
+
|
|
1869
|
+
[[package]]
|
|
1870
|
+
name = "phf_shared"
|
|
1871
|
+
version = "0.13.1"
|
|
1872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1873
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
1874
|
+
dependencies = [
|
|
1875
|
+
"siphasher 1.0.3",
|
|
1876
|
+
]
|
|
1877
|
+
|
|
1878
|
+
[[package]]
|
|
1879
|
+
name = "pin-project"
|
|
1880
|
+
version = "1.1.13"
|
|
1881
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1882
|
+
checksum = "2466b2336ed02bcdca6b294417127b90ec92038d1d5c4fbeac971a922e0e0924"
|
|
1883
|
+
dependencies = [
|
|
1884
|
+
"pin-project-internal",
|
|
1885
|
+
]
|
|
1886
|
+
|
|
1887
|
+
[[package]]
|
|
1888
|
+
name = "pin-project-internal"
|
|
1889
|
+
version = "1.1.13"
|
|
1890
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1891
|
+
checksum = "c96395f0a926bc13b1c17622aaddda1ecb55d49c8f1bf9777e4d877800a43f8b"
|
|
1892
|
+
dependencies = [
|
|
1893
|
+
"proc-macro2",
|
|
1894
|
+
"quote",
|
|
1895
|
+
"syn",
|
|
1896
|
+
]
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "pin-project-lite"
|
|
1900
|
+
version = "0.2.17"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "portable-atomic"
|
|
1906
|
+
version = "1.13.1"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
|
|
1909
|
+
|
|
1910
|
+
[[package]]
|
|
1911
|
+
name = "potential_utf"
|
|
1912
|
+
version = "0.1.5"
|
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1914
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1915
|
+
dependencies = [
|
|
1916
|
+
"serde_core",
|
|
1917
|
+
"writeable",
|
|
1918
|
+
"zerovec",
|
|
1919
|
+
]
|
|
1920
|
+
|
|
1921
|
+
[[package]]
|
|
1922
|
+
name = "ppv-lite86"
|
|
1923
|
+
version = "0.2.21"
|
|
1924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1925
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1926
|
+
dependencies = [
|
|
1927
|
+
"zerocopy",
|
|
1928
|
+
]
|
|
1929
|
+
|
|
1930
|
+
[[package]]
|
|
1931
|
+
name = "precomputed-hash"
|
|
1932
|
+
version = "0.1.1"
|
|
1933
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1934
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
1935
|
+
|
|
1936
|
+
[[package]]
|
|
1937
|
+
name = "prettyplease"
|
|
1938
|
+
version = "0.2.37"
|
|
1939
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1940
|
+
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
1941
|
+
dependencies = [
|
|
1942
|
+
"proc-macro2",
|
|
1943
|
+
"syn",
|
|
1944
|
+
]
|
|
1945
|
+
|
|
1946
|
+
[[package]]
|
|
1947
|
+
name = "proc-macro2"
|
|
1948
|
+
version = "1.0.106"
|
|
1949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1950
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1951
|
+
dependencies = [
|
|
1952
|
+
"unicode-ident",
|
|
1953
|
+
]
|
|
1954
|
+
|
|
1955
|
+
[[package]]
|
|
1956
|
+
name = "pyo3"
|
|
1957
|
+
version = "0.23.5"
|
|
1958
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1959
|
+
checksum = "7778bffd85cf38175ac1f545509665d0b9b92a198ca7941f131f85f7a4f9a872"
|
|
1960
|
+
dependencies = [
|
|
1961
|
+
"cfg-if",
|
|
1962
|
+
"indoc",
|
|
1963
|
+
"libc",
|
|
1964
|
+
"memoffset",
|
|
1965
|
+
"once_cell",
|
|
1966
|
+
"portable-atomic",
|
|
1967
|
+
"pyo3-build-config",
|
|
1968
|
+
"pyo3-ffi",
|
|
1969
|
+
"pyo3-macros",
|
|
1970
|
+
"unindent",
|
|
1971
|
+
]
|
|
1972
|
+
|
|
1973
|
+
[[package]]
|
|
1974
|
+
name = "pyo3-build-config"
|
|
1975
|
+
version = "0.23.5"
|
|
1976
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1977
|
+
checksum = "94f6cbe86ef3bf18998d9df6e0f3fc1050a8c5efa409bf712e661a4366e010fb"
|
|
1978
|
+
dependencies = [
|
|
1979
|
+
"once_cell",
|
|
1980
|
+
"target-lexicon",
|
|
1981
|
+
]
|
|
1982
|
+
|
|
1983
|
+
[[package]]
|
|
1984
|
+
name = "pyo3-ffi"
|
|
1985
|
+
version = "0.23.5"
|
|
1986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1987
|
+
checksum = "e9f1b4c431c0bb1c8fb0a338709859eed0d030ff6daa34368d3b152a63dfdd8d"
|
|
1988
|
+
dependencies = [
|
|
1989
|
+
"libc",
|
|
1990
|
+
"pyo3-build-config",
|
|
1991
|
+
]
|
|
1992
|
+
|
|
1993
|
+
[[package]]
|
|
1994
|
+
name = "pyo3-macros"
|
|
1995
|
+
version = "0.23.5"
|
|
1996
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1997
|
+
checksum = "fbc2201328f63c4710f68abdf653c89d8dbc2858b88c5d88b0ff38a75288a9da"
|
|
1998
|
+
dependencies = [
|
|
1999
|
+
"proc-macro2",
|
|
2000
|
+
"pyo3-macros-backend",
|
|
2001
|
+
"quote",
|
|
2002
|
+
"syn",
|
|
2003
|
+
]
|
|
2004
|
+
|
|
2005
|
+
[[package]]
|
|
2006
|
+
name = "pyo3-macros-backend"
|
|
2007
|
+
version = "0.23.5"
|
|
2008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2009
|
+
checksum = "fca6726ad0f3da9c9de093d6f116a93c1a38e417ed73bf138472cf4064f72028"
|
|
2010
|
+
dependencies = [
|
|
2011
|
+
"heck",
|
|
2012
|
+
"proc-macro2",
|
|
2013
|
+
"pyo3-build-config",
|
|
2014
|
+
"quote",
|
|
2015
|
+
"syn",
|
|
2016
|
+
]
|
|
2017
|
+
|
|
2018
|
+
[[package]]
|
|
2019
|
+
name = "quinn"
|
|
2020
|
+
version = "0.11.11"
|
|
2021
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2022
|
+
checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
|
|
2023
|
+
dependencies = [
|
|
2024
|
+
"bytes",
|
|
2025
|
+
"cfg_aliases",
|
|
2026
|
+
"pin-project-lite",
|
|
2027
|
+
"quinn-proto",
|
|
2028
|
+
"quinn-udp",
|
|
2029
|
+
"rustc-hash",
|
|
2030
|
+
"rustls",
|
|
2031
|
+
"socket2",
|
|
2032
|
+
"thiserror",
|
|
2033
|
+
"tokio",
|
|
2034
|
+
"tracing",
|
|
2035
|
+
"web-time",
|
|
2036
|
+
]
|
|
2037
|
+
|
|
2038
|
+
[[package]]
|
|
2039
|
+
name = "quinn-proto"
|
|
2040
|
+
version = "0.11.15"
|
|
2041
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2042
|
+
checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e"
|
|
2043
|
+
dependencies = [
|
|
2044
|
+
"bytes",
|
|
2045
|
+
"getrandom 0.3.4",
|
|
2046
|
+
"lru-slab",
|
|
2047
|
+
"rand 0.9.4",
|
|
2048
|
+
"ring",
|
|
2049
|
+
"rustc-hash",
|
|
2050
|
+
"rustls",
|
|
2051
|
+
"rustls-pki-types",
|
|
2052
|
+
"slab",
|
|
2053
|
+
"thiserror",
|
|
2054
|
+
"tinyvec",
|
|
2055
|
+
"tracing",
|
|
2056
|
+
"web-time",
|
|
2057
|
+
]
|
|
2058
|
+
|
|
2059
|
+
[[package]]
|
|
2060
|
+
name = "quinn-udp"
|
|
2061
|
+
version = "0.5.14"
|
|
2062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2063
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
2064
|
+
dependencies = [
|
|
2065
|
+
"cfg_aliases",
|
|
2066
|
+
"libc",
|
|
2067
|
+
"once_cell",
|
|
2068
|
+
"socket2",
|
|
2069
|
+
"tracing",
|
|
2070
|
+
"windows-sys 0.60.2",
|
|
2071
|
+
]
|
|
2072
|
+
|
|
2073
|
+
[[package]]
|
|
2074
|
+
name = "quote"
|
|
2075
|
+
version = "1.0.46"
|
|
2076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2077
|
+
checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
|
|
2078
|
+
dependencies = [
|
|
2079
|
+
"proc-macro2",
|
|
2080
|
+
]
|
|
2081
|
+
|
|
2082
|
+
[[package]]
|
|
2083
|
+
name = "r-efi"
|
|
2084
|
+
version = "5.3.0"
|
|
2085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2086
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
2087
|
+
|
|
2088
|
+
[[package]]
|
|
2089
|
+
name = "radium"
|
|
2090
|
+
version = "0.7.0"
|
|
2091
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2092
|
+
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
2093
|
+
|
|
2094
|
+
[[package]]
|
|
2095
|
+
name = "rand"
|
|
2096
|
+
version = "0.8.6"
|
|
2097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2098
|
+
checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
|
|
2099
|
+
dependencies = [
|
|
2100
|
+
"rand_core 0.6.4",
|
|
2101
|
+
]
|
|
2102
|
+
|
|
2103
|
+
[[package]]
|
|
2104
|
+
name = "rand"
|
|
2105
|
+
version = "0.9.4"
|
|
2106
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2107
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
2108
|
+
dependencies = [
|
|
2109
|
+
"rand_chacha",
|
|
2110
|
+
"rand_core 0.9.5",
|
|
2111
|
+
]
|
|
2112
|
+
|
|
2113
|
+
[[package]]
|
|
2114
|
+
name = "rand_chacha"
|
|
2115
|
+
version = "0.9.0"
|
|
2116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2117
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
2118
|
+
dependencies = [
|
|
2119
|
+
"ppv-lite86",
|
|
2120
|
+
"rand_core 0.9.5",
|
|
2121
|
+
]
|
|
2122
|
+
|
|
2123
|
+
[[package]]
|
|
2124
|
+
name = "rand_core"
|
|
2125
|
+
version = "0.6.4"
|
|
2126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2127
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
|
2128
|
+
|
|
2129
|
+
[[package]]
|
|
2130
|
+
name = "rand_core"
|
|
2131
|
+
version = "0.9.5"
|
|
2132
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2133
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
2134
|
+
dependencies = [
|
|
2135
|
+
"getrandom 0.3.4",
|
|
2136
|
+
]
|
|
2137
|
+
|
|
2138
|
+
[[package]]
|
|
2139
|
+
name = "redox_syscall"
|
|
2140
|
+
version = "0.5.18"
|
|
2141
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2142
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
2143
|
+
dependencies = [
|
|
2144
|
+
"bitflags",
|
|
2145
|
+
]
|
|
2146
|
+
|
|
2147
|
+
[[package]]
|
|
2148
|
+
name = "regex"
|
|
2149
|
+
version = "1.12.4"
|
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2151
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
2152
|
+
dependencies = [
|
|
2153
|
+
"aho-corasick",
|
|
2154
|
+
"memchr",
|
|
2155
|
+
"regex-automata",
|
|
2156
|
+
"regex-syntax",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "regex-automata"
|
|
2161
|
+
version = "0.4.14"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"aho-corasick",
|
|
2166
|
+
"memchr",
|
|
2167
|
+
"regex-syntax",
|
|
2168
|
+
]
|
|
2169
|
+
|
|
2170
|
+
[[package]]
|
|
2171
|
+
name = "regex-syntax"
|
|
2172
|
+
version = "0.8.11"
|
|
2173
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2174
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
2175
|
+
|
|
2176
|
+
[[package]]
|
|
2177
|
+
name = "reqwest"
|
|
2178
|
+
version = "0.12.28"
|
|
2179
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2180
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
2181
|
+
dependencies = [
|
|
2182
|
+
"base64",
|
|
2183
|
+
"bytes",
|
|
2184
|
+
"futures-core",
|
|
2185
|
+
"futures-util",
|
|
2186
|
+
"http",
|
|
2187
|
+
"http-body",
|
|
2188
|
+
"http-body-util",
|
|
2189
|
+
"hyper",
|
|
2190
|
+
"hyper-rustls",
|
|
2191
|
+
"hyper-util",
|
|
2192
|
+
"js-sys",
|
|
2193
|
+
"log",
|
|
2194
|
+
"percent-encoding",
|
|
2195
|
+
"pin-project-lite",
|
|
2196
|
+
"quinn",
|
|
2197
|
+
"rustls",
|
|
2198
|
+
"rustls-pki-types",
|
|
2199
|
+
"serde",
|
|
2200
|
+
"serde_json",
|
|
2201
|
+
"serde_urlencoded",
|
|
2202
|
+
"sync_wrapper",
|
|
2203
|
+
"tokio",
|
|
2204
|
+
"tokio-rustls",
|
|
2205
|
+
"tokio-util",
|
|
2206
|
+
"tower",
|
|
2207
|
+
"tower-http",
|
|
2208
|
+
"tower-service",
|
|
2209
|
+
"url",
|
|
2210
|
+
"wasm-bindgen",
|
|
2211
|
+
"wasm-bindgen-futures",
|
|
2212
|
+
"wasm-streams",
|
|
2213
|
+
"web-sys",
|
|
2214
|
+
"webpki-roots",
|
|
2215
|
+
]
|
|
2216
|
+
|
|
2217
|
+
[[package]]
|
|
2218
|
+
name = "resb"
|
|
2219
|
+
version = "0.1.2"
|
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2221
|
+
checksum = "22d392791f3c6802a1905a509e9d1a6039cbbcb5e9e00e5a6d3661f7c874f390"
|
|
2222
|
+
dependencies = [
|
|
2223
|
+
"potential_utf",
|
|
2224
|
+
"serde_core",
|
|
2225
|
+
]
|
|
2226
|
+
|
|
2227
|
+
[[package]]
|
|
2228
|
+
name = "ring"
|
|
2229
|
+
version = "0.17.14"
|
|
2230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2231
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
2232
|
+
dependencies = [
|
|
2233
|
+
"cc",
|
|
2234
|
+
"cfg-if",
|
|
2235
|
+
"getrandom 0.2.17",
|
|
2236
|
+
"libc",
|
|
2237
|
+
"untrusted",
|
|
2238
|
+
"windows-sys 0.52.0",
|
|
2239
|
+
]
|
|
2240
|
+
|
|
2241
|
+
[[package]]
|
|
2242
|
+
name = "rustc-hash"
|
|
2243
|
+
version = "2.1.2"
|
|
2244
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2245
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
2246
|
+
|
|
2247
|
+
[[package]]
|
|
2248
|
+
name = "rustix"
|
|
2249
|
+
version = "0.38.44"
|
|
2250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2251
|
+
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
2252
|
+
dependencies = [
|
|
2253
|
+
"bitflags",
|
|
2254
|
+
"errno",
|
|
2255
|
+
"libc",
|
|
2256
|
+
"linux-raw-sys",
|
|
2257
|
+
"windows-sys 0.59.0",
|
|
2258
|
+
]
|
|
2259
|
+
|
|
2260
|
+
[[package]]
|
|
2261
|
+
name = "rustls"
|
|
2262
|
+
version = "0.23.41"
|
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2264
|
+
checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
|
|
2265
|
+
dependencies = [
|
|
2266
|
+
"once_cell",
|
|
2267
|
+
"ring",
|
|
2268
|
+
"rustls-pki-types",
|
|
2269
|
+
"rustls-webpki",
|
|
2270
|
+
"subtle",
|
|
2271
|
+
"zeroize",
|
|
2272
|
+
]
|
|
2273
|
+
|
|
2274
|
+
[[package]]
|
|
2275
|
+
name = "rustls-pki-types"
|
|
2276
|
+
version = "1.14.1"
|
|
2277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2278
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
2279
|
+
dependencies = [
|
|
2280
|
+
"web-time",
|
|
2281
|
+
"zeroize",
|
|
2282
|
+
]
|
|
2283
|
+
|
|
2284
|
+
[[package]]
|
|
2285
|
+
name = "rustls-webpki"
|
|
2286
|
+
version = "0.103.13"
|
|
2287
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2288
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
2289
|
+
dependencies = [
|
|
2290
|
+
"ring",
|
|
2291
|
+
"rustls-pki-types",
|
|
2292
|
+
"untrusted",
|
|
2293
|
+
]
|
|
2294
|
+
|
|
2295
|
+
[[package]]
|
|
2296
|
+
name = "rustversion"
|
|
2297
|
+
version = "1.0.22"
|
|
2298
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2299
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
2300
|
+
|
|
2301
|
+
[[package]]
|
|
2302
|
+
name = "ryu"
|
|
2303
|
+
version = "1.0.23"
|
|
2304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2305
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
2306
|
+
|
|
2307
|
+
[[package]]
|
|
2308
|
+
name = "same-file"
|
|
2309
|
+
version = "1.0.6"
|
|
2310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2311
|
+
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
2312
|
+
dependencies = [
|
|
2313
|
+
"winapi-util",
|
|
2314
|
+
]
|
|
2315
|
+
|
|
2316
|
+
[[package]]
|
|
2317
|
+
name = "scoped-tls"
|
|
2318
|
+
version = "1.0.1"
|
|
2319
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2320
|
+
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
|
|
2321
|
+
|
|
2322
|
+
[[package]]
|
|
2323
|
+
name = "scopeguard"
|
|
2324
|
+
version = "1.2.0"
|
|
2325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2326
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
2327
|
+
|
|
2328
|
+
[[package]]
|
|
2329
|
+
name = "semver"
|
|
2330
|
+
version = "1.0.28"
|
|
2331
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2332
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
2333
|
+
dependencies = [
|
|
2334
|
+
"serde",
|
|
2335
|
+
"serde_core",
|
|
2336
|
+
]
|
|
2337
|
+
|
|
2338
|
+
[[package]]
|
|
2339
|
+
name = "seq-macro"
|
|
2340
|
+
version = "0.3.6"
|
|
2341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2342
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
2343
|
+
|
|
2344
|
+
[[package]]
|
|
2345
|
+
name = "serde"
|
|
2346
|
+
version = "1.0.228"
|
|
2347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2348
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
2349
|
+
dependencies = [
|
|
2350
|
+
"serde_core",
|
|
2351
|
+
"serde_derive",
|
|
2352
|
+
]
|
|
2353
|
+
|
|
2354
|
+
[[package]]
|
|
2355
|
+
name = "serde_core"
|
|
2356
|
+
version = "1.0.228"
|
|
2357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2358
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
2359
|
+
dependencies = [
|
|
2360
|
+
"serde_derive",
|
|
2361
|
+
]
|
|
2362
|
+
|
|
2363
|
+
[[package]]
|
|
2364
|
+
name = "serde_derive"
|
|
2365
|
+
version = "1.0.228"
|
|
2366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2367
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
2368
|
+
dependencies = [
|
|
2369
|
+
"proc-macro2",
|
|
2370
|
+
"quote",
|
|
2371
|
+
"syn",
|
|
2372
|
+
]
|
|
2373
|
+
|
|
2374
|
+
[[package]]
|
|
2375
|
+
name = "serde_json"
|
|
2376
|
+
version = "1.0.150"
|
|
2377
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2378
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
2379
|
+
dependencies = [
|
|
2380
|
+
"indexmap",
|
|
2381
|
+
"itoa",
|
|
2382
|
+
"memchr",
|
|
2383
|
+
"serde",
|
|
2384
|
+
"serde_core",
|
|
2385
|
+
"zmij",
|
|
2386
|
+
]
|
|
2387
|
+
|
|
2388
|
+
[[package]]
|
|
2389
|
+
name = "serde_urlencoded"
|
|
2390
|
+
version = "0.7.1"
|
|
2391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2392
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
2393
|
+
dependencies = [
|
|
2394
|
+
"form_urlencoded",
|
|
2395
|
+
"itoa",
|
|
2396
|
+
"ryu",
|
|
2397
|
+
"serde",
|
|
2398
|
+
]
|
|
2399
|
+
|
|
2400
|
+
[[package]]
|
|
2401
|
+
name = "serde_v8"
|
|
2402
|
+
version = "0.313.0"
|
|
2403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2404
|
+
checksum = "3b033e7b24fef6a1c2b47c7a435568504955392440b3562a89dbd4b6a390c27a"
|
|
2405
|
+
dependencies = [
|
|
2406
|
+
"deno_error",
|
|
2407
|
+
"num-bigint",
|
|
2408
|
+
"serde",
|
|
2409
|
+
"smallvec",
|
|
2410
|
+
"thiserror",
|
|
2411
|
+
"v8",
|
|
2412
|
+
]
|
|
2413
|
+
|
|
2414
|
+
[[package]]
|
|
2415
|
+
name = "sha1"
|
|
2416
|
+
version = "0.10.6"
|
|
2417
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2418
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
2419
|
+
dependencies = [
|
|
2420
|
+
"cfg-if",
|
|
2421
|
+
"cpufeatures",
|
|
2422
|
+
"digest",
|
|
2423
|
+
]
|
|
2424
|
+
|
|
2425
|
+
[[package]]
|
|
2426
|
+
name = "shlex"
|
|
2427
|
+
version = "1.3.0"
|
|
2428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2429
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
2430
|
+
|
|
2431
|
+
[[package]]
|
|
2432
|
+
name = "shlex"
|
|
2433
|
+
version = "2.0.1"
|
|
2434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2435
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
2436
|
+
|
|
2437
|
+
[[package]]
|
|
2438
|
+
name = "signal-hook-registry"
|
|
2439
|
+
version = "1.4.8"
|
|
2440
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2441
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
2442
|
+
dependencies = [
|
|
2443
|
+
"errno",
|
|
2444
|
+
"libc",
|
|
2445
|
+
]
|
|
2446
|
+
|
|
2447
|
+
[[package]]
|
|
2448
|
+
name = "simd-adler32"
|
|
2449
|
+
version = "0.3.9"
|
|
2450
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2451
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
2452
|
+
|
|
2453
|
+
[[package]]
|
|
2454
|
+
name = "siphasher"
|
|
2455
|
+
version = "0.3.11"
|
|
2456
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2457
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "siphasher"
|
|
2461
|
+
version = "1.0.3"
|
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "slab"
|
|
2467
|
+
version = "0.4.12"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
2470
|
+
|
|
2471
|
+
[[package]]
|
|
2472
|
+
name = "smallvec"
|
|
2473
|
+
version = "1.15.2"
|
|
2474
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2475
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
2476
|
+
|
|
2477
|
+
[[package]]
|
|
2478
|
+
name = "smartstring"
|
|
2479
|
+
version = "1.0.1"
|
|
2480
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2481
|
+
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
|
|
2482
|
+
dependencies = [
|
|
2483
|
+
"autocfg",
|
|
2484
|
+
"static_assertions",
|
|
2485
|
+
"version_check",
|
|
2486
|
+
]
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "socket2"
|
|
2490
|
+
version = "0.6.4"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
2493
|
+
dependencies = [
|
|
2494
|
+
"libc",
|
|
2495
|
+
"windows-sys 0.61.2",
|
|
2496
|
+
]
|
|
2497
|
+
|
|
2498
|
+
[[package]]
|
|
2499
|
+
name = "sourcemap"
|
|
2500
|
+
version = "9.3.2"
|
|
2501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2502
|
+
checksum = "314d62a489431668f719ada776ca1d49b924db951b7450f8974c9ae51ab05ad7"
|
|
2503
|
+
dependencies = [
|
|
2504
|
+
"base64-simd",
|
|
2505
|
+
"bitvec",
|
|
2506
|
+
"data-encoding",
|
|
2507
|
+
"debugid",
|
|
2508
|
+
"if_chain",
|
|
2509
|
+
"rustc-hash",
|
|
2510
|
+
"serde",
|
|
2511
|
+
"serde_json",
|
|
2512
|
+
"unicode-id-start",
|
|
2513
|
+
"url",
|
|
2514
|
+
]
|
|
2515
|
+
|
|
2516
|
+
[[package]]
|
|
2517
|
+
name = "stable_deref_trait"
|
|
2518
|
+
version = "1.2.1"
|
|
2519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2520
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
2521
|
+
|
|
2522
|
+
[[package]]
|
|
2523
|
+
name = "static_assertions"
|
|
2524
|
+
version = "1.1.0"
|
|
2525
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2526
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
2527
|
+
|
|
2528
|
+
[[package]]
|
|
2529
|
+
name = "strck"
|
|
2530
|
+
version = "1.0.0"
|
|
2531
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2532
|
+
checksum = "42316e70da376f3d113a68d138a60d8a9883c604fe97942721ec2068dab13a9f"
|
|
2533
|
+
dependencies = [
|
|
2534
|
+
"unicode-ident",
|
|
2535
|
+
]
|
|
2536
|
+
|
|
2537
|
+
[[package]]
|
|
2538
|
+
name = "string_cache"
|
|
2539
|
+
version = "0.9.0"
|
|
2540
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2541
|
+
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
|
2542
|
+
dependencies = [
|
|
2543
|
+
"new_debug_unreachable",
|
|
2544
|
+
"parking_lot",
|
|
2545
|
+
"phf_shared 0.13.1",
|
|
2546
|
+
"precomputed-hash",
|
|
2547
|
+
"serde",
|
|
2548
|
+
]
|
|
2549
|
+
|
|
2550
|
+
[[package]]
|
|
2551
|
+
name = "string_cache_codegen"
|
|
2552
|
+
version = "0.6.1"
|
|
2553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2554
|
+
checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
|
|
2555
|
+
dependencies = [
|
|
2556
|
+
"phf_generator 0.13.1",
|
|
2557
|
+
"phf_shared 0.13.1",
|
|
2558
|
+
"proc-macro2",
|
|
2559
|
+
"quote",
|
|
2560
|
+
]
|
|
2561
|
+
|
|
2562
|
+
[[package]]
|
|
2563
|
+
name = "string_enum"
|
|
2564
|
+
version = "1.0.2"
|
|
2565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2566
|
+
checksum = "ae36a4951ca7bd1cfd991c241584a9824a70f6aff1e7d4f693fb3f2465e4030e"
|
|
2567
|
+
dependencies = [
|
|
2568
|
+
"quote",
|
|
2569
|
+
"swc_macros_common",
|
|
2570
|
+
"syn",
|
|
2571
|
+
]
|
|
2572
|
+
|
|
2573
|
+
[[package]]
|
|
2574
|
+
name = "stringcase"
|
|
2575
|
+
version = "0.4.0"
|
|
2576
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2577
|
+
checksum = "72abeda133c49d7bddece6c154728f83eec8172380c80ab7096da9487e20d27c"
|
|
2578
|
+
|
|
2579
|
+
[[package]]
|
|
2580
|
+
name = "strsim"
|
|
2581
|
+
version = "0.11.1"
|
|
2582
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2583
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
2584
|
+
|
|
2585
|
+
[[package]]
|
|
2586
|
+
name = "strum"
|
|
2587
|
+
version = "0.27.2"
|
|
2588
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2589
|
+
checksum = "af23d6f6c1a224baef9d3f61e287d2761385a5b88fdab4eb4c6f11aeb54c4bcf"
|
|
2590
|
+
dependencies = [
|
|
2591
|
+
"strum_macros",
|
|
2592
|
+
]
|
|
2593
|
+
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "strum_macros"
|
|
2596
|
+
version = "0.27.2"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "7695ce3845ea4b33927c055a39dc438a45b059f7c1b3d91d38d10355fb8cbca7"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"heck",
|
|
2601
|
+
"proc-macro2",
|
|
2602
|
+
"quote",
|
|
2603
|
+
"syn",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "subtle"
|
|
2608
|
+
version = "2.6.1"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
2611
|
+
|
|
2612
|
+
[[package]]
|
|
2613
|
+
name = "swc_allocator"
|
|
2614
|
+
version = "4.0.1"
|
|
2615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2616
|
+
checksum = "9d7eefd2c8b228a8c73056482b2ae4b3a1071fbe07638e3b55ceca8570cc48bb"
|
|
2617
|
+
dependencies = [
|
|
2618
|
+
"allocator-api2",
|
|
2619
|
+
"bumpalo",
|
|
2620
|
+
"hashbrown 0.14.5",
|
|
2621
|
+
"rustc-hash",
|
|
2622
|
+
]
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "swc_atoms"
|
|
2626
|
+
version = "9.0.3"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "845f31910b5236db42dba106e8277681098d183b9b65b8dfa88ca8abe464aeff"
|
|
2629
|
+
dependencies = [
|
|
2630
|
+
"hstr",
|
|
2631
|
+
"once_cell",
|
|
2632
|
+
"serde",
|
|
2633
|
+
]
|
|
2634
|
+
|
|
2635
|
+
[[package]]
|
|
2636
|
+
name = "swc_common"
|
|
2637
|
+
version = "23.0.2"
|
|
2638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2639
|
+
checksum = "176fb11b1abd0a175e8ac47d4b061c5c8a9ae13b9196f30d44fe5db9cb7dfcbd"
|
|
2640
|
+
dependencies = [
|
|
2641
|
+
"anyhow",
|
|
2642
|
+
"ast_node",
|
|
2643
|
+
"better_scoped_tls",
|
|
2644
|
+
"bytes-str",
|
|
2645
|
+
"either",
|
|
2646
|
+
"from_variant",
|
|
2647
|
+
"num-bigint",
|
|
2648
|
+
"once_cell",
|
|
2649
|
+
"rustc-hash",
|
|
2650
|
+
"serde",
|
|
2651
|
+
"siphasher 0.3.11",
|
|
2652
|
+
"swc_atoms",
|
|
2653
|
+
"swc_eq_ignore_macros",
|
|
2654
|
+
"swc_visit",
|
|
2655
|
+
"tracing",
|
|
2656
|
+
"unicode-width",
|
|
2657
|
+
"url",
|
|
2658
|
+
]
|
|
2659
|
+
|
|
2660
|
+
[[package]]
|
|
2661
|
+
name = "swc_config"
|
|
2662
|
+
version = "5.0.0"
|
|
2663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2664
|
+
checksum = "6ee60aaa4eaea81fb9c730e64a0b88c363b5c237b774d114c97cba82f8655fdb"
|
|
2665
|
+
dependencies = [
|
|
2666
|
+
"anyhow",
|
|
2667
|
+
"bytes-str",
|
|
2668
|
+
"indexmap",
|
|
2669
|
+
"serde",
|
|
2670
|
+
"serde_json",
|
|
2671
|
+
"swc_config_macro",
|
|
2672
|
+
]
|
|
2673
|
+
|
|
2674
|
+
[[package]]
|
|
2675
|
+
name = "swc_config_macro"
|
|
2676
|
+
version = "1.0.1"
|
|
2677
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2678
|
+
checksum = "7b416e8ce6de17dc5ea496e10c7012b35bbc0e3fef38d2e065eed936490db0b3"
|
|
2679
|
+
dependencies = [
|
|
2680
|
+
"proc-macro2",
|
|
2681
|
+
"quote",
|
|
2682
|
+
"swc_macros_common",
|
|
2683
|
+
"syn",
|
|
2684
|
+
]
|
|
2685
|
+
|
|
2686
|
+
[[package]]
|
|
2687
|
+
name = "swc_core"
|
|
2688
|
+
version = "70.0.0"
|
|
2689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2690
|
+
checksum = "cf20433400c103927d9b6f458cea00642394331eda25514649e66fe1af60a72a"
|
|
2691
|
+
dependencies = [
|
|
2692
|
+
"swc_allocator",
|
|
2693
|
+
"swc_atoms",
|
|
2694
|
+
"swc_common",
|
|
2695
|
+
"swc_ecma_ast",
|
|
2696
|
+
"swc_ecma_codegen",
|
|
2697
|
+
"swc_ecma_parser",
|
|
2698
|
+
"swc_ecma_transforms_base",
|
|
2699
|
+
"swc_ecma_transforms_react",
|
|
2700
|
+
"swc_ecma_transforms_typescript",
|
|
2701
|
+
"swc_ecma_visit",
|
|
2702
|
+
"vergen",
|
|
2703
|
+
]
|
|
2704
|
+
|
|
2705
|
+
[[package]]
|
|
2706
|
+
name = "swc_ecma_ast"
|
|
2707
|
+
version = "25.0.0"
|
|
2708
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2709
|
+
checksum = "a207e09f23885ff1f4354ebfdd4e715ccd4a68fca2e7e0df09baafbca850762e"
|
|
2710
|
+
dependencies = [
|
|
2711
|
+
"bitflags",
|
|
2712
|
+
"is-macro",
|
|
2713
|
+
"num-bigint",
|
|
2714
|
+
"once_cell",
|
|
2715
|
+
"phf 0.11.3",
|
|
2716
|
+
"rustc-hash",
|
|
2717
|
+
"string_enum",
|
|
2718
|
+
"swc_atoms",
|
|
2719
|
+
"swc_common",
|
|
2720
|
+
"swc_visit",
|
|
2721
|
+
"unicode-id-start",
|
|
2722
|
+
]
|
|
2723
|
+
|
|
2724
|
+
[[package]]
|
|
2725
|
+
name = "swc_ecma_codegen"
|
|
2726
|
+
version = "28.0.2"
|
|
2727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2728
|
+
checksum = "a5a2fbf46c8cc66e112b6d8226ae0dacc6b983589df6192b38c7669d7721e02a"
|
|
2729
|
+
dependencies = [
|
|
2730
|
+
"ascii",
|
|
2731
|
+
"compact_str",
|
|
2732
|
+
"dragonbox_ecma",
|
|
2733
|
+
"memchr",
|
|
2734
|
+
"num-bigint",
|
|
2735
|
+
"once_cell",
|
|
2736
|
+
"regex",
|
|
2737
|
+
"rustc-hash",
|
|
2738
|
+
"serde",
|
|
2739
|
+
"swc_allocator",
|
|
2740
|
+
"swc_atoms",
|
|
2741
|
+
"swc_common",
|
|
2742
|
+
"swc_ecma_ast",
|
|
2743
|
+
"swc_ecma_codegen_macros",
|
|
2744
|
+
"tracing",
|
|
2745
|
+
]
|
|
2746
|
+
|
|
2747
|
+
[[package]]
|
|
2748
|
+
name = "swc_ecma_codegen_macros"
|
|
2749
|
+
version = "2.0.2"
|
|
2750
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2751
|
+
checksum = "e276dc62c0a2625a560397827989c82a93fd545fcf6f7faec0935a82cc4ddbb8"
|
|
2752
|
+
dependencies = [
|
|
2753
|
+
"proc-macro2",
|
|
2754
|
+
"swc_macros_common",
|
|
2755
|
+
"syn",
|
|
2756
|
+
]
|
|
2757
|
+
|
|
2758
|
+
[[package]]
|
|
2759
|
+
name = "swc_ecma_hooks"
|
|
2760
|
+
version = "0.9.0"
|
|
2761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2762
|
+
checksum = "9b3085866c59066b1346b50a70e12f28b9c06e44048370f7b20a25a769be92a0"
|
|
2763
|
+
dependencies = [
|
|
2764
|
+
"swc_atoms",
|
|
2765
|
+
"swc_common",
|
|
2766
|
+
"swc_ecma_ast",
|
|
2767
|
+
"swc_ecma_visit",
|
|
2768
|
+
]
|
|
2769
|
+
|
|
2770
|
+
[[package]]
|
|
2771
|
+
name = "swc_ecma_parser"
|
|
2772
|
+
version = "41.1.2"
|
|
2773
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2774
|
+
checksum = "f0f6c9c63026f4d1a70c3c6703446d42ce7b0fe83d4c33b6fe985faf96753f3e"
|
|
2775
|
+
dependencies = [
|
|
2776
|
+
"bitflags",
|
|
2777
|
+
"either",
|
|
2778
|
+
"num-bigint",
|
|
2779
|
+
"phf 0.11.3",
|
|
2780
|
+
"rustc-hash",
|
|
2781
|
+
"seq-macro",
|
|
2782
|
+
"serde",
|
|
2783
|
+
"smartstring",
|
|
2784
|
+
"swc_atoms",
|
|
2785
|
+
"swc_common",
|
|
2786
|
+
"swc_ecma_ast",
|
|
2787
|
+
"tracing",
|
|
2788
|
+
]
|
|
2789
|
+
|
|
2790
|
+
[[package]]
|
|
2791
|
+
name = "swc_ecma_transforms_base"
|
|
2792
|
+
version = "44.0.3"
|
|
2793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2794
|
+
checksum = "f6b7a16c57147fed92672f74a76a71dd39d3dd8ae557126ba5028bd23f3a1930"
|
|
2795
|
+
dependencies = [
|
|
2796
|
+
"better_scoped_tls",
|
|
2797
|
+
"indexmap",
|
|
2798
|
+
"once_cell",
|
|
2799
|
+
"par-core",
|
|
2800
|
+
"phf 0.11.3",
|
|
2801
|
+
"rustc-hash",
|
|
2802
|
+
"serde",
|
|
2803
|
+
"swc_atoms",
|
|
2804
|
+
"swc_common",
|
|
2805
|
+
"swc_ecma_ast",
|
|
2806
|
+
"swc_ecma_parser",
|
|
2807
|
+
"swc_ecma_utils",
|
|
2808
|
+
"swc_ecma_visit",
|
|
2809
|
+
"tracing",
|
|
2810
|
+
]
|
|
2811
|
+
|
|
2812
|
+
[[package]]
|
|
2813
|
+
name = "swc_ecma_transforms_react"
|
|
2814
|
+
version = "50.0.0"
|
|
2815
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2816
|
+
checksum = "b687bdb5a08c62d320a6f94ca55348d1e7673fa59c8345294124c36c57aeeee8"
|
|
2817
|
+
dependencies = [
|
|
2818
|
+
"base64",
|
|
2819
|
+
"bytes-str",
|
|
2820
|
+
"indexmap",
|
|
2821
|
+
"once_cell",
|
|
2822
|
+
"rustc-hash",
|
|
2823
|
+
"serde",
|
|
2824
|
+
"sha1",
|
|
2825
|
+
"string_enum",
|
|
2826
|
+
"swc_atoms",
|
|
2827
|
+
"swc_common",
|
|
2828
|
+
"swc_config",
|
|
2829
|
+
"swc_ecma_ast",
|
|
2830
|
+
"swc_ecma_hooks",
|
|
2831
|
+
"swc_ecma_parser",
|
|
2832
|
+
"swc_ecma_transforms_base",
|
|
2833
|
+
"swc_ecma_utils",
|
|
2834
|
+
"swc_ecma_visit",
|
|
2835
|
+
]
|
|
2836
|
+
|
|
2837
|
+
[[package]]
|
|
2838
|
+
name = "swc_ecma_transforms_typescript"
|
|
2839
|
+
version = "50.0.0"
|
|
2840
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2841
|
+
checksum = "eb5da7478a27b01150af2b20b7fc1693fdf5235e9ca35866c293cd2997713809"
|
|
2842
|
+
dependencies = [
|
|
2843
|
+
"bytes-str",
|
|
2844
|
+
"rustc-hash",
|
|
2845
|
+
"serde",
|
|
2846
|
+
"swc_atoms",
|
|
2847
|
+
"swc_common",
|
|
2848
|
+
"swc_ecma_ast",
|
|
2849
|
+
"swc_ecma_transforms_base",
|
|
2850
|
+
"swc_ecma_transforms_react",
|
|
2851
|
+
"swc_ecma_utils",
|
|
2852
|
+
"swc_ecma_visit",
|
|
2853
|
+
]
|
|
2854
|
+
|
|
2855
|
+
[[package]]
|
|
2856
|
+
name = "swc_ecma_utils"
|
|
2857
|
+
version = "31.0.1"
|
|
2858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2859
|
+
checksum = "0d6dfe3d8deb3a2d399425996dddb2c421d268dbaf8132d2c1a859f6b9f7d8a2"
|
|
2860
|
+
dependencies = [
|
|
2861
|
+
"dragonbox_ecma",
|
|
2862
|
+
"indexmap",
|
|
2863
|
+
"num_cpus",
|
|
2864
|
+
"once_cell",
|
|
2865
|
+
"par-core",
|
|
2866
|
+
"rustc-hash",
|
|
2867
|
+
"swc_atoms",
|
|
2868
|
+
"swc_common",
|
|
2869
|
+
"swc_ecma_ast",
|
|
2870
|
+
"swc_ecma_visit",
|
|
2871
|
+
"tracing",
|
|
2872
|
+
]
|
|
2873
|
+
|
|
2874
|
+
[[package]]
|
|
2875
|
+
name = "swc_ecma_visit"
|
|
2876
|
+
version = "25.0.0"
|
|
2877
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2878
|
+
checksum = "1f9cb1e958e57fa6427c106674a12190c4578684beee783e3a0508f048d1b372"
|
|
2879
|
+
dependencies = [
|
|
2880
|
+
"new_debug_unreachable",
|
|
2881
|
+
"num-bigint",
|
|
2882
|
+
"swc_atoms",
|
|
2883
|
+
"swc_common",
|
|
2884
|
+
"swc_ecma_ast",
|
|
2885
|
+
"swc_visit",
|
|
2886
|
+
"tracing",
|
|
2887
|
+
]
|
|
2888
|
+
|
|
2889
|
+
[[package]]
|
|
2890
|
+
name = "swc_eq_ignore_macros"
|
|
2891
|
+
version = "1.0.1"
|
|
2892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2893
|
+
checksum = "c16ce73424a6316e95e09065ba6a207eba7765496fed113702278b7711d4b632"
|
|
2894
|
+
dependencies = [
|
|
2895
|
+
"proc-macro2",
|
|
2896
|
+
"quote",
|
|
2897
|
+
"syn",
|
|
2898
|
+
]
|
|
2899
|
+
|
|
2900
|
+
[[package]]
|
|
2901
|
+
name = "swc_macros_common"
|
|
2902
|
+
version = "1.0.1"
|
|
2903
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2904
|
+
checksum = "aae1efbaa74943dc5ad2a2fb16cbd78b77d7e4d63188f3c5b4df2b4dcd2faaae"
|
|
2905
|
+
dependencies = [
|
|
2906
|
+
"proc-macro2",
|
|
2907
|
+
"quote",
|
|
2908
|
+
"syn",
|
|
2909
|
+
]
|
|
2910
|
+
|
|
2911
|
+
[[package]]
|
|
2912
|
+
name = "swc_visit"
|
|
2913
|
+
version = "2.0.1"
|
|
2914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2915
|
+
checksum = "62fb71484b486c185e34d2172f0eabe7f4722742aad700f426a494bb2de232a2"
|
|
2916
|
+
dependencies = [
|
|
2917
|
+
"either",
|
|
2918
|
+
"new_debug_unreachable",
|
|
2919
|
+
]
|
|
2920
|
+
|
|
2921
|
+
[[package]]
|
|
2922
|
+
name = "syn"
|
|
2923
|
+
version = "2.0.118"
|
|
2924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2925
|
+
checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
|
|
2926
|
+
dependencies = [
|
|
2927
|
+
"proc-macro2",
|
|
2928
|
+
"quote",
|
|
2929
|
+
"unicode-ident",
|
|
2930
|
+
]
|
|
2931
|
+
|
|
2932
|
+
[[package]]
|
|
2933
|
+
name = "syn-match"
|
|
2934
|
+
version = "0.3.1"
|
|
2935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2936
|
+
checksum = "54b8f0a9004d6aafa6a588602a1119e6cdaacec9921aa1605383e6e7d6258fd6"
|
|
2937
|
+
dependencies = [
|
|
2938
|
+
"proc-macro2",
|
|
2939
|
+
"quote",
|
|
2940
|
+
"syn",
|
|
2941
|
+
]
|
|
2942
|
+
|
|
2943
|
+
[[package]]
|
|
2944
|
+
name = "sync_wrapper"
|
|
2945
|
+
version = "1.0.2"
|
|
2946
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2947
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
2948
|
+
dependencies = [
|
|
2949
|
+
"futures-core",
|
|
2950
|
+
]
|
|
2951
|
+
|
|
2952
|
+
[[package]]
|
|
2953
|
+
name = "synstructure"
|
|
2954
|
+
version = "0.13.2"
|
|
2955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2956
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
2957
|
+
dependencies = [
|
|
2958
|
+
"proc-macro2",
|
|
2959
|
+
"quote",
|
|
2960
|
+
"syn",
|
|
2961
|
+
]
|
|
2962
|
+
|
|
2963
|
+
[[package]]
|
|
2964
|
+
name = "sys_traits"
|
|
2965
|
+
version = "0.1.28"
|
|
2966
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2967
|
+
checksum = "88826d6169418c98e8bc52a43f79d50907dfa3e87ba5161930d42c6f980b35ee"
|
|
2968
|
+
dependencies = [
|
|
2969
|
+
"sys_traits_macros",
|
|
2970
|
+
]
|
|
2971
|
+
|
|
2972
|
+
[[package]]
|
|
2973
|
+
name = "sys_traits_macros"
|
|
2974
|
+
version = "0.1.0"
|
|
2975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2976
|
+
checksum = "181f22127402abcf8ee5c83ccd5b408933fec36a6095cf82cda545634692657e"
|
|
2977
|
+
dependencies = [
|
|
2978
|
+
"proc-macro2",
|
|
2979
|
+
"quote",
|
|
2980
|
+
"syn",
|
|
2981
|
+
]
|
|
2982
|
+
|
|
2983
|
+
[[package]]
|
|
2984
|
+
name = "tap"
|
|
2985
|
+
version = "1.0.1"
|
|
2986
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2987
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
2988
|
+
|
|
2989
|
+
[[package]]
|
|
2990
|
+
name = "target-lexicon"
|
|
2991
|
+
version = "0.12.16"
|
|
2992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2993
|
+
checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
2994
|
+
|
|
2995
|
+
[[package]]
|
|
2996
|
+
name = "temporal_capi"
|
|
2997
|
+
version = "0.2.3"
|
|
2998
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2999
|
+
checksum = "8a2a1f001e756a9f5f2d175a9965c4c0b3a054f09f30de3a75ab49765f2deb36"
|
|
3000
|
+
dependencies = [
|
|
3001
|
+
"diplomat",
|
|
3002
|
+
"diplomat-runtime",
|
|
3003
|
+
"icu_calendar",
|
|
3004
|
+
"icu_locale_core",
|
|
3005
|
+
"num-traits",
|
|
3006
|
+
"temporal_rs",
|
|
3007
|
+
"timezone_provider",
|
|
3008
|
+
"writeable",
|
|
3009
|
+
"zoneinfo64",
|
|
3010
|
+
]
|
|
3011
|
+
|
|
3012
|
+
[[package]]
|
|
3013
|
+
name = "temporal_rs"
|
|
3014
|
+
version = "0.2.3"
|
|
3015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3016
|
+
checksum = "9a902a45282e5175186b21d355efc92564601efe6e2d92818dc9e333d50bd4de"
|
|
3017
|
+
dependencies = [
|
|
3018
|
+
"calendrical_calculations",
|
|
3019
|
+
"core_maths",
|
|
3020
|
+
"icu_calendar",
|
|
3021
|
+
"icu_locale_core",
|
|
3022
|
+
"ixdtf",
|
|
3023
|
+
"num-traits",
|
|
3024
|
+
"timezone_provider",
|
|
3025
|
+
"tinystr",
|
|
3026
|
+
"writeable",
|
|
3027
|
+
]
|
|
3028
|
+
|
|
3029
|
+
[[package]]
|
|
3030
|
+
name = "tendril"
|
|
3031
|
+
version = "0.5.0"
|
|
3032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3033
|
+
checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
|
|
3034
|
+
dependencies = [
|
|
3035
|
+
"new_debug_unreachable",
|
|
3036
|
+
"utf-8",
|
|
3037
|
+
]
|
|
3038
|
+
|
|
3039
|
+
[[package]]
|
|
3040
|
+
name = "thiserror"
|
|
3041
|
+
version = "2.0.18"
|
|
3042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3043
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
3044
|
+
dependencies = [
|
|
3045
|
+
"thiserror-impl",
|
|
3046
|
+
]
|
|
3047
|
+
|
|
3048
|
+
[[package]]
|
|
3049
|
+
name = "thiserror-impl"
|
|
3050
|
+
version = "2.0.18"
|
|
3051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3052
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
3053
|
+
dependencies = [
|
|
3054
|
+
"proc-macro2",
|
|
3055
|
+
"quote",
|
|
3056
|
+
"syn",
|
|
3057
|
+
]
|
|
3058
|
+
|
|
3059
|
+
[[package]]
|
|
3060
|
+
name = "timezone_provider"
|
|
3061
|
+
version = "0.2.3"
|
|
3062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3063
|
+
checksum = "c48f9b04628a2b813051e4dfe97c65281e49625eabd09ec343190e31e399a8c2"
|
|
3064
|
+
dependencies = [
|
|
3065
|
+
"tinystr",
|
|
3066
|
+
"zerotrie",
|
|
3067
|
+
"zerovec",
|
|
3068
|
+
"zoneinfo64",
|
|
3069
|
+
]
|
|
3070
|
+
|
|
3071
|
+
[[package]]
|
|
3072
|
+
name = "tinystr"
|
|
3073
|
+
version = "0.8.3"
|
|
3074
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3075
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
3076
|
+
dependencies = [
|
|
3077
|
+
"displaydoc",
|
|
3078
|
+
"serde_core",
|
|
3079
|
+
"zerovec",
|
|
3080
|
+
]
|
|
3081
|
+
|
|
3082
|
+
[[package]]
|
|
3083
|
+
name = "tinytemplate"
|
|
3084
|
+
version = "1.2.1"
|
|
3085
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3086
|
+
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
3087
|
+
dependencies = [
|
|
3088
|
+
"serde",
|
|
3089
|
+
"serde_json",
|
|
3090
|
+
]
|
|
3091
|
+
|
|
3092
|
+
[[package]]
|
|
3093
|
+
name = "tinyvec"
|
|
3094
|
+
version = "1.11.0"
|
|
3095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3096
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
3097
|
+
dependencies = [
|
|
3098
|
+
"tinyvec_macros",
|
|
3099
|
+
]
|
|
3100
|
+
|
|
3101
|
+
[[package]]
|
|
3102
|
+
name = "tinyvec_macros"
|
|
3103
|
+
version = "0.1.1"
|
|
3104
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3105
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
3106
|
+
|
|
3107
|
+
[[package]]
|
|
3108
|
+
name = "tokio"
|
|
3109
|
+
version = "1.52.3"
|
|
3110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3111
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
3112
|
+
dependencies = [
|
|
3113
|
+
"bytes",
|
|
3114
|
+
"libc",
|
|
3115
|
+
"mio",
|
|
3116
|
+
"parking_lot",
|
|
3117
|
+
"pin-project-lite",
|
|
3118
|
+
"signal-hook-registry",
|
|
3119
|
+
"socket2",
|
|
3120
|
+
"tokio-macros",
|
|
3121
|
+
"windows-sys 0.61.2",
|
|
3122
|
+
]
|
|
3123
|
+
|
|
3124
|
+
[[package]]
|
|
3125
|
+
name = "tokio-macros"
|
|
3126
|
+
version = "2.7.0"
|
|
3127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3128
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
3129
|
+
dependencies = [
|
|
3130
|
+
"proc-macro2",
|
|
3131
|
+
"quote",
|
|
3132
|
+
"syn",
|
|
3133
|
+
]
|
|
3134
|
+
|
|
3135
|
+
[[package]]
|
|
3136
|
+
name = "tokio-rustls"
|
|
3137
|
+
version = "0.26.4"
|
|
3138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3139
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
3140
|
+
dependencies = [
|
|
3141
|
+
"rustls",
|
|
3142
|
+
"tokio",
|
|
3143
|
+
]
|
|
3144
|
+
|
|
3145
|
+
[[package]]
|
|
3146
|
+
name = "tokio-util"
|
|
3147
|
+
version = "0.7.18"
|
|
3148
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3149
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
3150
|
+
dependencies = [
|
|
3151
|
+
"bytes",
|
|
3152
|
+
"futures-core",
|
|
3153
|
+
"futures-sink",
|
|
3154
|
+
"pin-project-lite",
|
|
3155
|
+
"tokio",
|
|
3156
|
+
]
|
|
3157
|
+
|
|
3158
|
+
[[package]]
|
|
3159
|
+
name = "tower"
|
|
3160
|
+
version = "0.5.3"
|
|
3161
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3162
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
3163
|
+
dependencies = [
|
|
3164
|
+
"futures-core",
|
|
3165
|
+
"futures-util",
|
|
3166
|
+
"pin-project-lite",
|
|
3167
|
+
"sync_wrapper",
|
|
3168
|
+
"tokio",
|
|
3169
|
+
"tower-layer",
|
|
3170
|
+
"tower-service",
|
|
3171
|
+
]
|
|
3172
|
+
|
|
3173
|
+
[[package]]
|
|
3174
|
+
name = "tower-http"
|
|
3175
|
+
version = "0.6.11"
|
|
3176
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3177
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
3178
|
+
dependencies = [
|
|
3179
|
+
"async-compression",
|
|
3180
|
+
"bitflags",
|
|
3181
|
+
"bytes",
|
|
3182
|
+
"futures-core",
|
|
3183
|
+
"futures-util",
|
|
3184
|
+
"http",
|
|
3185
|
+
"http-body",
|
|
3186
|
+
"http-body-util",
|
|
3187
|
+
"pin-project-lite",
|
|
3188
|
+
"tokio",
|
|
3189
|
+
"tokio-util",
|
|
3190
|
+
"tower",
|
|
3191
|
+
"tower-layer",
|
|
3192
|
+
"tower-service",
|
|
3193
|
+
"url",
|
|
3194
|
+
]
|
|
3195
|
+
|
|
3196
|
+
[[package]]
|
|
3197
|
+
name = "tower-layer"
|
|
3198
|
+
version = "0.3.3"
|
|
3199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3200
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
3201
|
+
|
|
3202
|
+
[[package]]
|
|
3203
|
+
name = "tower-service"
|
|
3204
|
+
version = "0.3.3"
|
|
3205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3206
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
3207
|
+
|
|
3208
|
+
[[package]]
|
|
3209
|
+
name = "tracing"
|
|
3210
|
+
version = "0.1.44"
|
|
3211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3212
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
3213
|
+
dependencies = [
|
|
3214
|
+
"pin-project-lite",
|
|
3215
|
+
"tracing-attributes",
|
|
3216
|
+
"tracing-core",
|
|
3217
|
+
]
|
|
3218
|
+
|
|
3219
|
+
[[package]]
|
|
3220
|
+
name = "tracing-attributes"
|
|
3221
|
+
version = "0.1.31"
|
|
3222
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3223
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
3224
|
+
dependencies = [
|
|
3225
|
+
"proc-macro2",
|
|
3226
|
+
"quote",
|
|
3227
|
+
"syn",
|
|
3228
|
+
]
|
|
3229
|
+
|
|
3230
|
+
[[package]]
|
|
3231
|
+
name = "tracing-core"
|
|
3232
|
+
version = "0.1.36"
|
|
3233
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3234
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
3235
|
+
dependencies = [
|
|
3236
|
+
"once_cell",
|
|
3237
|
+
]
|
|
3238
|
+
|
|
3239
|
+
[[package]]
|
|
3240
|
+
name = "triomphe"
|
|
3241
|
+
version = "0.1.15"
|
|
3242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3243
|
+
checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
|
|
3244
|
+
dependencies = [
|
|
3245
|
+
"serde",
|
|
3246
|
+
"stable_deref_trait",
|
|
3247
|
+
]
|
|
3248
|
+
|
|
3249
|
+
[[package]]
|
|
3250
|
+
name = "try-lock"
|
|
3251
|
+
version = "0.2.5"
|
|
3252
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3253
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
3254
|
+
|
|
3255
|
+
[[package]]
|
|
3256
|
+
name = "turbo-dom"
|
|
3257
|
+
version = "0.3.5"
|
|
3258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3259
|
+
checksum = "3db008f2a346434770eaffa25c40cb117b48b90382e620a86edb9f5302949130"
|
|
3260
|
+
dependencies = [
|
|
3261
|
+
"html5ever",
|
|
3262
|
+
"markup5ever_rcdom",
|
|
3263
|
+
"rustc-hash",
|
|
3264
|
+
]
|
|
3265
|
+
|
|
3266
|
+
[[package]]
|
|
3267
|
+
name = "turbo-surf-core"
|
|
3268
|
+
version = "0.2.4"
|
|
3269
|
+
dependencies = [
|
|
3270
|
+
"async-trait",
|
|
3271
|
+
"bytes",
|
|
3272
|
+
"encoding_rs",
|
|
3273
|
+
"futures-util",
|
|
3274
|
+
"reqwest",
|
|
3275
|
+
"serde",
|
|
3276
|
+
"serde_json",
|
|
3277
|
+
"tokio",
|
|
3278
|
+
"url",
|
|
3279
|
+
]
|
|
3280
|
+
|
|
3281
|
+
[[package]]
|
|
3282
|
+
name = "turbo-surf-mcp"
|
|
3283
|
+
version = "0.2.4"
|
|
3284
|
+
dependencies = [
|
|
3285
|
+
"async-trait",
|
|
3286
|
+
"serde_json",
|
|
3287
|
+
"tokio",
|
|
3288
|
+
"turbo-dom",
|
|
3289
|
+
"turbo-surf-core",
|
|
3290
|
+
"turbo-surf-page",
|
|
3291
|
+
"turbo-surf-render",
|
|
3292
|
+
"turbo-surf-view",
|
|
3293
|
+
]
|
|
3294
|
+
|
|
3295
|
+
[[package]]
|
|
3296
|
+
name = "turbo-surf-napi"
|
|
3297
|
+
version = "0.2.4"
|
|
3298
|
+
dependencies = [
|
|
3299
|
+
"napi",
|
|
3300
|
+
"napi-build",
|
|
3301
|
+
"napi-derive",
|
|
3302
|
+
"serde",
|
|
3303
|
+
"serde_json",
|
|
3304
|
+
"tokio",
|
|
3305
|
+
"turbo-dom",
|
|
3306
|
+
"turbo-surf-core",
|
|
3307
|
+
"turbo-surf-page",
|
|
3308
|
+
"turbo-surf-render",
|
|
3309
|
+
"turbo-surf-transform",
|
|
3310
|
+
"turbo-surf-view",
|
|
3311
|
+
]
|
|
3312
|
+
|
|
3313
|
+
[[package]]
|
|
3314
|
+
name = "turbo-surf-page"
|
|
3315
|
+
version = "0.2.4"
|
|
3316
|
+
dependencies = [
|
|
3317
|
+
"async-trait",
|
|
3318
|
+
"futures-util",
|
|
3319
|
+
"reqwest",
|
|
3320
|
+
"tokio",
|
|
3321
|
+
"turbo-dom",
|
|
3322
|
+
"turbo-surf-core",
|
|
3323
|
+
]
|
|
3324
|
+
|
|
3325
|
+
[[package]]
|
|
3326
|
+
name = "turbo-surf-py"
|
|
3327
|
+
version = "0.2.4"
|
|
3328
|
+
dependencies = [
|
|
3329
|
+
"pyo3",
|
|
3330
|
+
"serde",
|
|
3331
|
+
"serde_json",
|
|
3332
|
+
"tokio",
|
|
3333
|
+
"turbo-dom",
|
|
3334
|
+
"turbo-surf-render",
|
|
3335
|
+
"turbo-surf-transform",
|
|
3336
|
+
"turbo-surf-view",
|
|
3337
|
+
]
|
|
3338
|
+
|
|
3339
|
+
[[package]]
|
|
3340
|
+
name = "turbo-surf-render"
|
|
3341
|
+
version = "0.2.4"
|
|
3342
|
+
dependencies = [
|
|
3343
|
+
"deno_core",
|
|
3344
|
+
"deno_error",
|
|
3345
|
+
"serde",
|
|
3346
|
+
"serde_json",
|
|
3347
|
+
"tokio",
|
|
3348
|
+
"turbo-dom",
|
|
3349
|
+
"turbo-surf-core",
|
|
3350
|
+
"v8",
|
|
3351
|
+
]
|
|
3352
|
+
|
|
3353
|
+
[[package]]
|
|
3354
|
+
name = "turbo-surf-transform"
|
|
3355
|
+
version = "0.2.4"
|
|
3356
|
+
dependencies = [
|
|
3357
|
+
"swc_core",
|
|
3358
|
+
]
|
|
3359
|
+
|
|
3360
|
+
[[package]]
|
|
3361
|
+
name = "turbo-surf-view"
|
|
3362
|
+
version = "0.2.4"
|
|
3363
|
+
dependencies = [
|
|
3364
|
+
"criterion",
|
|
3365
|
+
"regex",
|
|
3366
|
+
"serde",
|
|
3367
|
+
"serde_json",
|
|
3368
|
+
"turbo-dom",
|
|
3369
|
+
"turbo-surf-core",
|
|
3370
|
+
"url",
|
|
3371
|
+
]
|
|
3372
|
+
|
|
3373
|
+
[[package]]
|
|
3374
|
+
name = "typenum"
|
|
3375
|
+
version = "1.20.1"
|
|
3376
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3377
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
3378
|
+
|
|
3379
|
+
[[package]]
|
|
3380
|
+
name = "unicode-id-start"
|
|
3381
|
+
version = "1.4.0"
|
|
3382
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3383
|
+
checksum = "81b79ad29b5e19de4260020f8919b443b2ef0277d242ce532ec7b7a2cc8b6007"
|
|
3384
|
+
|
|
3385
|
+
[[package]]
|
|
3386
|
+
name = "unicode-ident"
|
|
3387
|
+
version = "1.0.24"
|
|
3388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3389
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
3390
|
+
|
|
3391
|
+
[[package]]
|
|
3392
|
+
name = "unicode-segmentation"
|
|
3393
|
+
version = "1.13.3"
|
|
3394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3395
|
+
checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
|
|
3396
|
+
|
|
3397
|
+
[[package]]
|
|
3398
|
+
name = "unicode-width"
|
|
3399
|
+
version = "0.2.2"
|
|
3400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3401
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
3402
|
+
|
|
3403
|
+
[[package]]
|
|
3404
|
+
name = "unindent"
|
|
3405
|
+
version = "0.2.4"
|
|
3406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3407
|
+
checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
|
|
3408
|
+
|
|
3409
|
+
[[package]]
|
|
3410
|
+
name = "untrusted"
|
|
3411
|
+
version = "0.9.0"
|
|
3412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3413
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
3414
|
+
|
|
3415
|
+
[[package]]
|
|
3416
|
+
name = "url"
|
|
3417
|
+
version = "2.5.8"
|
|
3418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3419
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
3420
|
+
dependencies = [
|
|
3421
|
+
"form_urlencoded",
|
|
3422
|
+
"idna",
|
|
3423
|
+
"percent-encoding",
|
|
3424
|
+
"serde",
|
|
3425
|
+
"serde_derive",
|
|
3426
|
+
]
|
|
3427
|
+
|
|
3428
|
+
[[package]]
|
|
3429
|
+
name = "utf-8"
|
|
3430
|
+
version = "0.7.6"
|
|
3431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3432
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
3433
|
+
|
|
3434
|
+
[[package]]
|
|
3435
|
+
name = "utf8_iter"
|
|
3436
|
+
version = "1.0.4"
|
|
3437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3438
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
3439
|
+
|
|
3440
|
+
[[package]]
|
|
3441
|
+
name = "uuid"
|
|
3442
|
+
version = "1.23.3"
|
|
3443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3444
|
+
checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
|
|
3445
|
+
dependencies = [
|
|
3446
|
+
"js-sys",
|
|
3447
|
+
"wasm-bindgen",
|
|
3448
|
+
]
|
|
3449
|
+
|
|
3450
|
+
[[package]]
|
|
3451
|
+
name = "v8"
|
|
3452
|
+
version = "149.4.0"
|
|
3453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3454
|
+
checksum = "ebfd8d6919bfb4b627ca778a67f85ca45e5fb442d352947ba093798bdf9b07e0"
|
|
3455
|
+
dependencies = [
|
|
3456
|
+
"bindgen",
|
|
3457
|
+
"bitflags",
|
|
3458
|
+
"fslock",
|
|
3459
|
+
"gzip-header",
|
|
3460
|
+
"home",
|
|
3461
|
+
"miniz_oxide",
|
|
3462
|
+
"paste",
|
|
3463
|
+
"temporal_capi",
|
|
3464
|
+
"which",
|
|
3465
|
+
]
|
|
3466
|
+
|
|
3467
|
+
[[package]]
|
|
3468
|
+
name = "vergen"
|
|
3469
|
+
version = "9.1.0"
|
|
3470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3471
|
+
checksum = "b849a1f6d8639e8de261e81ee0fc881e3e3620db1af9f2e0da015d4382ceaf75"
|
|
3472
|
+
dependencies = [
|
|
3473
|
+
"anyhow",
|
|
3474
|
+
"cargo_metadata",
|
|
3475
|
+
"derive_builder",
|
|
3476
|
+
"regex",
|
|
3477
|
+
"rustversion",
|
|
3478
|
+
"vergen-lib",
|
|
3479
|
+
]
|
|
3480
|
+
|
|
3481
|
+
[[package]]
|
|
3482
|
+
name = "vergen-lib"
|
|
3483
|
+
version = "9.1.0"
|
|
3484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3485
|
+
checksum = "b34a29ba7e9c59e62f229ae1932fb1b8fb8a6fdcc99215a641913f5f5a59a569"
|
|
3486
|
+
dependencies = [
|
|
3487
|
+
"anyhow",
|
|
3488
|
+
"derive_builder",
|
|
3489
|
+
"rustversion",
|
|
3490
|
+
]
|
|
3491
|
+
|
|
3492
|
+
[[package]]
|
|
3493
|
+
name = "version_check"
|
|
3494
|
+
version = "0.9.5"
|
|
3495
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3496
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
3497
|
+
|
|
3498
|
+
[[package]]
|
|
3499
|
+
name = "vsimd"
|
|
3500
|
+
version = "0.8.0"
|
|
3501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3502
|
+
checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
|
|
3503
|
+
|
|
3504
|
+
[[package]]
|
|
3505
|
+
name = "walkdir"
|
|
3506
|
+
version = "2.5.0"
|
|
3507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3508
|
+
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
3509
|
+
dependencies = [
|
|
3510
|
+
"same-file",
|
|
3511
|
+
"winapi-util",
|
|
3512
|
+
]
|
|
3513
|
+
|
|
3514
|
+
[[package]]
|
|
3515
|
+
name = "want"
|
|
3516
|
+
version = "0.3.1"
|
|
3517
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3518
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
3519
|
+
dependencies = [
|
|
3520
|
+
"try-lock",
|
|
3521
|
+
]
|
|
3522
|
+
|
|
3523
|
+
[[package]]
|
|
3524
|
+
name = "wasi"
|
|
3525
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
3526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3527
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
3528
|
+
|
|
3529
|
+
[[package]]
|
|
3530
|
+
name = "wasip2"
|
|
3531
|
+
version = "1.0.4+wasi-0.2.12"
|
|
3532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3533
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
3534
|
+
dependencies = [
|
|
3535
|
+
"wit-bindgen",
|
|
3536
|
+
]
|
|
3537
|
+
|
|
3538
|
+
[[package]]
|
|
3539
|
+
name = "wasm-bindgen"
|
|
3540
|
+
version = "0.2.125"
|
|
3541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3542
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
3543
|
+
dependencies = [
|
|
3544
|
+
"cfg-if",
|
|
3545
|
+
"once_cell",
|
|
3546
|
+
"rustversion",
|
|
3547
|
+
"wasm-bindgen-macro",
|
|
3548
|
+
"wasm-bindgen-shared",
|
|
3549
|
+
]
|
|
3550
|
+
|
|
3551
|
+
[[package]]
|
|
3552
|
+
name = "wasm-bindgen-futures"
|
|
3553
|
+
version = "0.4.75"
|
|
3554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3555
|
+
checksum = "503b14d284f2c8dac03b819967e155ea753f573586193b2b2c95990cb5d69280"
|
|
3556
|
+
dependencies = [
|
|
3557
|
+
"js-sys",
|
|
3558
|
+
"wasm-bindgen",
|
|
3559
|
+
]
|
|
3560
|
+
|
|
3561
|
+
[[package]]
|
|
3562
|
+
name = "wasm-bindgen-macro"
|
|
3563
|
+
version = "0.2.125"
|
|
3564
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3565
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
3566
|
+
dependencies = [
|
|
3567
|
+
"quote",
|
|
3568
|
+
"wasm-bindgen-macro-support",
|
|
3569
|
+
]
|
|
3570
|
+
|
|
3571
|
+
[[package]]
|
|
3572
|
+
name = "wasm-bindgen-macro-support"
|
|
3573
|
+
version = "0.2.125"
|
|
3574
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3575
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
3576
|
+
dependencies = [
|
|
3577
|
+
"bumpalo",
|
|
3578
|
+
"proc-macro2",
|
|
3579
|
+
"quote",
|
|
3580
|
+
"syn",
|
|
3581
|
+
"wasm-bindgen-shared",
|
|
3582
|
+
]
|
|
3583
|
+
|
|
3584
|
+
[[package]]
|
|
3585
|
+
name = "wasm-bindgen-shared"
|
|
3586
|
+
version = "0.2.125"
|
|
3587
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3588
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
3589
|
+
dependencies = [
|
|
3590
|
+
"unicode-ident",
|
|
3591
|
+
]
|
|
3592
|
+
|
|
3593
|
+
[[package]]
|
|
3594
|
+
name = "wasm-streams"
|
|
3595
|
+
version = "0.4.2"
|
|
3596
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3597
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
3598
|
+
dependencies = [
|
|
3599
|
+
"futures-util",
|
|
3600
|
+
"js-sys",
|
|
3601
|
+
"wasm-bindgen",
|
|
3602
|
+
"wasm-bindgen-futures",
|
|
3603
|
+
"web-sys",
|
|
3604
|
+
]
|
|
3605
|
+
|
|
3606
|
+
[[package]]
|
|
3607
|
+
name = "wasm_dep_analyzer"
|
|
3608
|
+
version = "0.4.0"
|
|
3609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3610
|
+
checksum = "a10e6b67c951a84de7029487e0e0a496860dae49f6699edd279d5ff35b8fbf54"
|
|
3611
|
+
dependencies = [
|
|
3612
|
+
"deno_error",
|
|
3613
|
+
"thiserror",
|
|
3614
|
+
]
|
|
3615
|
+
|
|
3616
|
+
[[package]]
|
|
3617
|
+
name = "web-sys"
|
|
3618
|
+
version = "0.3.102"
|
|
3619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3620
|
+
checksum = "a6430a72df5eb332242960fe84b3002a241163998241eb596d4f739b9757061d"
|
|
3621
|
+
dependencies = [
|
|
3622
|
+
"js-sys",
|
|
3623
|
+
"wasm-bindgen",
|
|
3624
|
+
]
|
|
3625
|
+
|
|
3626
|
+
[[package]]
|
|
3627
|
+
name = "web-time"
|
|
3628
|
+
version = "1.1.0"
|
|
3629
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3630
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
3631
|
+
dependencies = [
|
|
3632
|
+
"js-sys",
|
|
3633
|
+
"wasm-bindgen",
|
|
3634
|
+
]
|
|
3635
|
+
|
|
3636
|
+
[[package]]
|
|
3637
|
+
name = "web_atoms"
|
|
3638
|
+
version = "0.2.5"
|
|
3639
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3640
|
+
checksum = "075474b12bcb3d2e3d4546580e9de478eeeead668a1761e2a8860c836b7ef297"
|
|
3641
|
+
dependencies = [
|
|
3642
|
+
"phf 0.13.1",
|
|
3643
|
+
"phf_codegen",
|
|
3644
|
+
"string_cache",
|
|
3645
|
+
"string_cache_codegen",
|
|
3646
|
+
]
|
|
3647
|
+
|
|
3648
|
+
[[package]]
|
|
3649
|
+
name = "webpki-roots"
|
|
3650
|
+
version = "1.0.8"
|
|
3651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3652
|
+
checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
|
|
3653
|
+
dependencies = [
|
|
3654
|
+
"rustls-pki-types",
|
|
3655
|
+
]
|
|
3656
|
+
|
|
3657
|
+
[[package]]
|
|
3658
|
+
name = "which"
|
|
3659
|
+
version = "6.0.3"
|
|
3660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3661
|
+
checksum = "b4ee928febd44d98f2f459a4a79bd4d928591333a494a10a868418ac1b39cf1f"
|
|
3662
|
+
dependencies = [
|
|
3663
|
+
"either",
|
|
3664
|
+
"home",
|
|
3665
|
+
"rustix",
|
|
3666
|
+
"winsafe",
|
|
3667
|
+
]
|
|
3668
|
+
|
|
3669
|
+
[[package]]
|
|
3670
|
+
name = "winapi"
|
|
3671
|
+
version = "0.3.9"
|
|
3672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3673
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
3674
|
+
dependencies = [
|
|
3675
|
+
"winapi-i686-pc-windows-gnu",
|
|
3676
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
3677
|
+
]
|
|
3678
|
+
|
|
3679
|
+
[[package]]
|
|
3680
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
3681
|
+
version = "0.4.0"
|
|
3682
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3683
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
3684
|
+
|
|
3685
|
+
[[package]]
|
|
3686
|
+
name = "winapi-util"
|
|
3687
|
+
version = "0.1.11"
|
|
3688
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3689
|
+
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
3690
|
+
dependencies = [
|
|
3691
|
+
"windows-sys 0.61.2",
|
|
3692
|
+
]
|
|
3693
|
+
|
|
3694
|
+
[[package]]
|
|
3695
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
3696
|
+
version = "0.4.0"
|
|
3697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3698
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
3699
|
+
|
|
3700
|
+
[[package]]
|
|
3701
|
+
name = "windows-link"
|
|
3702
|
+
version = "0.2.1"
|
|
3703
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3704
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
3705
|
+
|
|
3706
|
+
[[package]]
|
|
3707
|
+
name = "windows-sys"
|
|
3708
|
+
version = "0.52.0"
|
|
3709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3710
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
3711
|
+
dependencies = [
|
|
3712
|
+
"windows-targets 0.52.6",
|
|
3713
|
+
]
|
|
3714
|
+
|
|
3715
|
+
[[package]]
|
|
3716
|
+
name = "windows-sys"
|
|
3717
|
+
version = "0.59.0"
|
|
3718
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3719
|
+
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
3720
|
+
dependencies = [
|
|
3721
|
+
"windows-targets 0.52.6",
|
|
3722
|
+
]
|
|
3723
|
+
|
|
3724
|
+
[[package]]
|
|
3725
|
+
name = "windows-sys"
|
|
3726
|
+
version = "0.60.2"
|
|
3727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3728
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
3729
|
+
dependencies = [
|
|
3730
|
+
"windows-targets 0.53.5",
|
|
3731
|
+
]
|
|
3732
|
+
|
|
3733
|
+
[[package]]
|
|
3734
|
+
name = "windows-sys"
|
|
3735
|
+
version = "0.61.2"
|
|
3736
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3737
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
3738
|
+
dependencies = [
|
|
3739
|
+
"windows-link",
|
|
3740
|
+
]
|
|
3741
|
+
|
|
3742
|
+
[[package]]
|
|
3743
|
+
name = "windows-targets"
|
|
3744
|
+
version = "0.52.6"
|
|
3745
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3746
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
3747
|
+
dependencies = [
|
|
3748
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
3749
|
+
"windows_aarch64_msvc 0.52.6",
|
|
3750
|
+
"windows_i686_gnu 0.52.6",
|
|
3751
|
+
"windows_i686_gnullvm 0.52.6",
|
|
3752
|
+
"windows_i686_msvc 0.52.6",
|
|
3753
|
+
"windows_x86_64_gnu 0.52.6",
|
|
3754
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
3755
|
+
"windows_x86_64_msvc 0.52.6",
|
|
3756
|
+
]
|
|
3757
|
+
|
|
3758
|
+
[[package]]
|
|
3759
|
+
name = "windows-targets"
|
|
3760
|
+
version = "0.53.5"
|
|
3761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3762
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
3763
|
+
dependencies = [
|
|
3764
|
+
"windows-link",
|
|
3765
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
3766
|
+
"windows_aarch64_msvc 0.53.1",
|
|
3767
|
+
"windows_i686_gnu 0.53.1",
|
|
3768
|
+
"windows_i686_gnullvm 0.53.1",
|
|
3769
|
+
"windows_i686_msvc 0.53.1",
|
|
3770
|
+
"windows_x86_64_gnu 0.53.1",
|
|
3771
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
3772
|
+
"windows_x86_64_msvc 0.53.1",
|
|
3773
|
+
]
|
|
3774
|
+
|
|
3775
|
+
[[package]]
|
|
3776
|
+
name = "windows_aarch64_gnullvm"
|
|
3777
|
+
version = "0.52.6"
|
|
3778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3779
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
3780
|
+
|
|
3781
|
+
[[package]]
|
|
3782
|
+
name = "windows_aarch64_gnullvm"
|
|
3783
|
+
version = "0.53.1"
|
|
3784
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3785
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
3786
|
+
|
|
3787
|
+
[[package]]
|
|
3788
|
+
name = "windows_aarch64_msvc"
|
|
3789
|
+
version = "0.52.6"
|
|
3790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3791
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
3792
|
+
|
|
3793
|
+
[[package]]
|
|
3794
|
+
name = "windows_aarch64_msvc"
|
|
3795
|
+
version = "0.53.1"
|
|
3796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3797
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
3798
|
+
|
|
3799
|
+
[[package]]
|
|
3800
|
+
name = "windows_i686_gnu"
|
|
3801
|
+
version = "0.52.6"
|
|
3802
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3803
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
3804
|
+
|
|
3805
|
+
[[package]]
|
|
3806
|
+
name = "windows_i686_gnu"
|
|
3807
|
+
version = "0.53.1"
|
|
3808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3809
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
3810
|
+
|
|
3811
|
+
[[package]]
|
|
3812
|
+
name = "windows_i686_gnullvm"
|
|
3813
|
+
version = "0.52.6"
|
|
3814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3815
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
3816
|
+
|
|
3817
|
+
[[package]]
|
|
3818
|
+
name = "windows_i686_gnullvm"
|
|
3819
|
+
version = "0.53.1"
|
|
3820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3821
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
3822
|
+
|
|
3823
|
+
[[package]]
|
|
3824
|
+
name = "windows_i686_msvc"
|
|
3825
|
+
version = "0.52.6"
|
|
3826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3827
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
3828
|
+
|
|
3829
|
+
[[package]]
|
|
3830
|
+
name = "windows_i686_msvc"
|
|
3831
|
+
version = "0.53.1"
|
|
3832
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3833
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
3834
|
+
|
|
3835
|
+
[[package]]
|
|
3836
|
+
name = "windows_x86_64_gnu"
|
|
3837
|
+
version = "0.52.6"
|
|
3838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3839
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
3840
|
+
|
|
3841
|
+
[[package]]
|
|
3842
|
+
name = "windows_x86_64_gnu"
|
|
3843
|
+
version = "0.53.1"
|
|
3844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3845
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
3846
|
+
|
|
3847
|
+
[[package]]
|
|
3848
|
+
name = "windows_x86_64_gnullvm"
|
|
3849
|
+
version = "0.52.6"
|
|
3850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3851
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
3852
|
+
|
|
3853
|
+
[[package]]
|
|
3854
|
+
name = "windows_x86_64_gnullvm"
|
|
3855
|
+
version = "0.53.1"
|
|
3856
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3857
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
3858
|
+
|
|
3859
|
+
[[package]]
|
|
3860
|
+
name = "windows_x86_64_msvc"
|
|
3861
|
+
version = "0.52.6"
|
|
3862
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3863
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
3864
|
+
|
|
3865
|
+
[[package]]
|
|
3866
|
+
name = "windows_x86_64_msvc"
|
|
3867
|
+
version = "0.53.1"
|
|
3868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3869
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
3870
|
+
|
|
3871
|
+
[[package]]
|
|
3872
|
+
name = "winsafe"
|
|
3873
|
+
version = "0.0.19"
|
|
3874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3875
|
+
checksum = "d135d17ab770252ad95e9a872d365cf3090e3be864a34ab46f48555993efc904"
|
|
3876
|
+
|
|
3877
|
+
[[package]]
|
|
3878
|
+
name = "wit-bindgen"
|
|
3879
|
+
version = "0.57.1"
|
|
3880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3881
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
3882
|
+
|
|
3883
|
+
[[package]]
|
|
3884
|
+
name = "writeable"
|
|
3885
|
+
version = "0.6.3"
|
|
3886
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3887
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
3888
|
+
|
|
3889
|
+
[[package]]
|
|
3890
|
+
name = "wyz"
|
|
3891
|
+
version = "0.5.1"
|
|
3892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3893
|
+
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
3894
|
+
dependencies = [
|
|
3895
|
+
"tap",
|
|
3896
|
+
]
|
|
3897
|
+
|
|
3898
|
+
[[package]]
|
|
3899
|
+
name = "xml5ever"
|
|
3900
|
+
version = "0.39.0"
|
|
3901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3902
|
+
checksum = "5ab627f34ff61b80d756180d556f9c68801d836d271b3b8c094504ceca69d221"
|
|
3903
|
+
dependencies = [
|
|
3904
|
+
"log",
|
|
3905
|
+
"markup5ever",
|
|
3906
|
+
]
|
|
3907
|
+
|
|
3908
|
+
[[package]]
|
|
3909
|
+
name = "yoke"
|
|
3910
|
+
version = "0.8.3"
|
|
3911
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3912
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
3913
|
+
dependencies = [
|
|
3914
|
+
"stable_deref_trait",
|
|
3915
|
+
"yoke-derive",
|
|
3916
|
+
"zerofrom",
|
|
3917
|
+
]
|
|
3918
|
+
|
|
3919
|
+
[[package]]
|
|
3920
|
+
name = "yoke-derive"
|
|
3921
|
+
version = "0.8.2"
|
|
3922
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3923
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
3924
|
+
dependencies = [
|
|
3925
|
+
"proc-macro2",
|
|
3926
|
+
"quote",
|
|
3927
|
+
"syn",
|
|
3928
|
+
"synstructure",
|
|
3929
|
+
]
|
|
3930
|
+
|
|
3931
|
+
[[package]]
|
|
3932
|
+
name = "zerocopy"
|
|
3933
|
+
version = "0.8.52"
|
|
3934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3935
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
3936
|
+
dependencies = [
|
|
3937
|
+
"zerocopy-derive",
|
|
3938
|
+
]
|
|
3939
|
+
|
|
3940
|
+
[[package]]
|
|
3941
|
+
name = "zerocopy-derive"
|
|
3942
|
+
version = "0.8.52"
|
|
3943
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3944
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
3945
|
+
dependencies = [
|
|
3946
|
+
"proc-macro2",
|
|
3947
|
+
"quote",
|
|
3948
|
+
"syn",
|
|
3949
|
+
]
|
|
3950
|
+
|
|
3951
|
+
[[package]]
|
|
3952
|
+
name = "zerofrom"
|
|
3953
|
+
version = "0.1.8"
|
|
3954
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3955
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
3956
|
+
dependencies = [
|
|
3957
|
+
"zerofrom-derive",
|
|
3958
|
+
]
|
|
3959
|
+
|
|
3960
|
+
[[package]]
|
|
3961
|
+
name = "zerofrom-derive"
|
|
3962
|
+
version = "0.1.7"
|
|
3963
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3964
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
3965
|
+
dependencies = [
|
|
3966
|
+
"proc-macro2",
|
|
3967
|
+
"quote",
|
|
3968
|
+
"syn",
|
|
3969
|
+
"synstructure",
|
|
3970
|
+
]
|
|
3971
|
+
|
|
3972
|
+
[[package]]
|
|
3973
|
+
name = "zeroize"
|
|
3974
|
+
version = "1.9.0"
|
|
3975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3976
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
3977
|
+
|
|
3978
|
+
[[package]]
|
|
3979
|
+
name = "zerotrie"
|
|
3980
|
+
version = "0.2.4"
|
|
3981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3982
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
3983
|
+
dependencies = [
|
|
3984
|
+
"displaydoc",
|
|
3985
|
+
"yoke",
|
|
3986
|
+
"zerofrom",
|
|
3987
|
+
"zerovec",
|
|
3988
|
+
]
|
|
3989
|
+
|
|
3990
|
+
[[package]]
|
|
3991
|
+
name = "zerovec"
|
|
3992
|
+
version = "0.11.6"
|
|
3993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
3994
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
3995
|
+
dependencies = [
|
|
3996
|
+
"serde",
|
|
3997
|
+
"yoke",
|
|
3998
|
+
"zerofrom",
|
|
3999
|
+
"zerovec-derive",
|
|
4000
|
+
]
|
|
4001
|
+
|
|
4002
|
+
[[package]]
|
|
4003
|
+
name = "zerovec-derive"
|
|
4004
|
+
version = "0.11.3"
|
|
4005
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4006
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
4007
|
+
dependencies = [
|
|
4008
|
+
"proc-macro2",
|
|
4009
|
+
"quote",
|
|
4010
|
+
"syn",
|
|
4011
|
+
]
|
|
4012
|
+
|
|
4013
|
+
[[package]]
|
|
4014
|
+
name = "zmij"
|
|
4015
|
+
version = "1.0.21"
|
|
4016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4017
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
4018
|
+
|
|
4019
|
+
[[package]]
|
|
4020
|
+
name = "zoneinfo64"
|
|
4021
|
+
version = "0.3.0"
|
|
4022
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4023
|
+
checksum = "ed6eb2607e906160c457fd573e9297e65029669906b9ac8fb1b5cd5e055f0705"
|
|
4024
|
+
dependencies = [
|
|
4025
|
+
"calendrical_calculations",
|
|
4026
|
+
"icu_locale_core",
|
|
4027
|
+
"potential_utf",
|
|
4028
|
+
"resb",
|
|
4029
|
+
"serde",
|
|
4030
|
+
]
|