agent-finance-cli 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +2632 -0
- package/Cargo.toml +31 -0
- package/LICENSE-APACHE +202 -0
- package/LICENSE-MIT +21 -0
- package/README.md +119 -0
- package/bin/agent-finance.js +27 -0
- package/npm/check-binary-links.js +50 -0
- package/npm/check-package.js +39 -0
- package/npm/create-platform-package.js +90 -0
- package/npm/platform.js +33 -0
- package/npm/postinstall.js +62 -0
- package/npm/resolve-binary.js +38 -0
- package/package.json +54 -0
- package/skills/core-full.md +74 -0
- package/skills/core.md +59 -0
- package/skills/futures.md +18 -0
- package/skills/history-indicators.md +42 -0
- package/skills/price.md +40 -0
- package/skills/providers.md +25 -0
- package/skills/research-data.md +34 -0
- package/src/app.rs +642 -0
- package/src/cache.rs +67 -0
- package/src/cli.rs +651 -0
- package/src/history.rs +150 -0
- package/src/http.rs +76 -0
- package/src/indicators.rs +82 -0
- package/src/lib.rs +15 -0
- package/src/main.rs +4 -0
- package/src/model.rs +347 -0
- package/src/output.rs +544 -0
- package/src/page_read.rs +443 -0
- package/src/price.rs +255 -0
- package/src/providers/binance_futures.rs +342 -0
- package/src/providers/capabilities.rs +322 -0
- package/src/providers/cnbc.rs +302 -0
- package/src/providers/mod.rs +117 -0
- package/src/providers/robinhood.rs +580 -0
- package/src/providers/sec_edgar.rs +399 -0
- package/src/providers/stooq/catalog.rs +159 -0
- package/src/providers/stooq.rs +904 -0
- package/src/providers/yahoo.rs +836 -0
- package/src/research/fetchers.rs +111 -0
- package/src/research/highlights.rs +345 -0
- package/src/research/mod.rs +943 -0
- package/src/research/tests.rs +42 -0
- package/src/skills.rs +58 -0
- package/src/stream.rs +356 -0
- package/src/time.rs +21 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,2632 @@
|
|
|
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 = "agent-finance-cli"
|
|
13
|
+
version = "0.1.0"
|
|
14
|
+
dependencies = [
|
|
15
|
+
"anyhow",
|
|
16
|
+
"base64",
|
|
17
|
+
"chrono",
|
|
18
|
+
"chrono-tz",
|
|
19
|
+
"clap",
|
|
20
|
+
"csv",
|
|
21
|
+
"futures-util",
|
|
22
|
+
"prost",
|
|
23
|
+
"rustls",
|
|
24
|
+
"scraper",
|
|
25
|
+
"serde",
|
|
26
|
+
"serde_json",
|
|
27
|
+
"tokio",
|
|
28
|
+
"tokio-tungstenite",
|
|
29
|
+
"url",
|
|
30
|
+
"wreq",
|
|
31
|
+
"wreq-util",
|
|
32
|
+
"zip",
|
|
33
|
+
]
|
|
34
|
+
|
|
35
|
+
[[package]]
|
|
36
|
+
name = "aho-corasick"
|
|
37
|
+
version = "1.1.4"
|
|
38
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
39
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
40
|
+
dependencies = [
|
|
41
|
+
"memchr",
|
|
42
|
+
]
|
|
43
|
+
|
|
44
|
+
[[package]]
|
|
45
|
+
name = "alloc-no-stdlib"
|
|
46
|
+
version = "2.0.4"
|
|
47
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
48
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
49
|
+
|
|
50
|
+
[[package]]
|
|
51
|
+
name = "alloc-stdlib"
|
|
52
|
+
version = "0.2.4"
|
|
53
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
54
|
+
checksum = "0e76a019e91224d279006ff972f1e984179a6e9feb050adba6ce8274aef23195"
|
|
55
|
+
dependencies = [
|
|
56
|
+
"alloc-no-stdlib",
|
|
57
|
+
]
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "allocator-api2"
|
|
61
|
+
version = "0.2.21"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
64
|
+
|
|
65
|
+
[[package]]
|
|
66
|
+
name = "android_system_properties"
|
|
67
|
+
version = "0.1.5"
|
|
68
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
69
|
+
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
70
|
+
dependencies = [
|
|
71
|
+
"libc",
|
|
72
|
+
]
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "anstream"
|
|
76
|
+
version = "1.0.0"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"anstyle",
|
|
81
|
+
"anstyle-parse",
|
|
82
|
+
"anstyle-query",
|
|
83
|
+
"anstyle-wincon",
|
|
84
|
+
"colorchoice",
|
|
85
|
+
"is_terminal_polyfill",
|
|
86
|
+
"utf8parse",
|
|
87
|
+
]
|
|
88
|
+
|
|
89
|
+
[[package]]
|
|
90
|
+
name = "anstyle"
|
|
91
|
+
version = "1.0.14"
|
|
92
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
93
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
94
|
+
|
|
95
|
+
[[package]]
|
|
96
|
+
name = "anstyle-parse"
|
|
97
|
+
version = "1.0.0"
|
|
98
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
99
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
100
|
+
dependencies = [
|
|
101
|
+
"utf8parse",
|
|
102
|
+
]
|
|
103
|
+
|
|
104
|
+
[[package]]
|
|
105
|
+
name = "anstyle-query"
|
|
106
|
+
version = "1.1.5"
|
|
107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
108
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
109
|
+
dependencies = [
|
|
110
|
+
"windows-sys 0.61.2",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
[[package]]
|
|
114
|
+
name = "anstyle-wincon"
|
|
115
|
+
version = "3.0.11"
|
|
116
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
117
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
118
|
+
dependencies = [
|
|
119
|
+
"anstyle",
|
|
120
|
+
"once_cell_polyfill",
|
|
121
|
+
"windows-sys 0.61.2",
|
|
122
|
+
]
|
|
123
|
+
|
|
124
|
+
[[package]]
|
|
125
|
+
name = "anyhow"
|
|
126
|
+
version = "1.0.102"
|
|
127
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
128
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
129
|
+
|
|
130
|
+
[[package]]
|
|
131
|
+
name = "async-compression"
|
|
132
|
+
version = "0.4.42"
|
|
133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
134
|
+
checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
|
|
135
|
+
dependencies = [
|
|
136
|
+
"compression-codecs",
|
|
137
|
+
"compression-core",
|
|
138
|
+
"pin-project-lite",
|
|
139
|
+
"tokio",
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
[[package]]
|
|
143
|
+
name = "atomic-waker"
|
|
144
|
+
version = "1.1.2"
|
|
145
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
146
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
147
|
+
|
|
148
|
+
[[package]]
|
|
149
|
+
name = "autocfg"
|
|
150
|
+
version = "1.5.1"
|
|
151
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
152
|
+
checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
|
|
153
|
+
|
|
154
|
+
[[package]]
|
|
155
|
+
name = "base64"
|
|
156
|
+
version = "0.22.1"
|
|
157
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
158
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
159
|
+
|
|
160
|
+
[[package]]
|
|
161
|
+
name = "bindgen"
|
|
162
|
+
version = "0.72.1"
|
|
163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
164
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
165
|
+
dependencies = [
|
|
166
|
+
"bitflags",
|
|
167
|
+
"cexpr",
|
|
168
|
+
"clang-sys",
|
|
169
|
+
"itertools 0.13.0",
|
|
170
|
+
"proc-macro2",
|
|
171
|
+
"quote",
|
|
172
|
+
"regex",
|
|
173
|
+
"rustc-hash",
|
|
174
|
+
"shlex 1.3.0",
|
|
175
|
+
"syn",
|
|
176
|
+
]
|
|
177
|
+
|
|
178
|
+
[[package]]
|
|
179
|
+
name = "bitflags"
|
|
180
|
+
version = "2.13.0"
|
|
181
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
182
|
+
checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
|
|
183
|
+
|
|
184
|
+
[[package]]
|
|
185
|
+
name = "block-buffer"
|
|
186
|
+
version = "0.10.4"
|
|
187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
188
|
+
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
189
|
+
dependencies = [
|
|
190
|
+
"generic-array",
|
|
191
|
+
]
|
|
192
|
+
|
|
193
|
+
[[package]]
|
|
194
|
+
name = "brotli"
|
|
195
|
+
version = "8.0.4"
|
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
197
|
+
checksum = "5cc91aac060a7a1e25823bdccbfb6af1875b88f17c6daac97894eed8207166b3"
|
|
198
|
+
dependencies = [
|
|
199
|
+
"alloc-no-stdlib",
|
|
200
|
+
"alloc-stdlib",
|
|
201
|
+
"brotli-decompressor",
|
|
202
|
+
]
|
|
203
|
+
|
|
204
|
+
[[package]]
|
|
205
|
+
name = "brotli-decompressor"
|
|
206
|
+
version = "5.0.3"
|
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
208
|
+
checksum = "3a32acac15fe1967bc3986b2a6347dffc965602354ea6f450ad07e8bfd253583"
|
|
209
|
+
dependencies = [
|
|
210
|
+
"alloc-no-stdlib",
|
|
211
|
+
"alloc-stdlib",
|
|
212
|
+
]
|
|
213
|
+
|
|
214
|
+
[[package]]
|
|
215
|
+
name = "btls"
|
|
216
|
+
version = "0.5.6"
|
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
218
|
+
checksum = "2c5e60b8c8d282c86360cab651ded04ab0335a7b5390c8d34145cbeab8cacf5f"
|
|
219
|
+
dependencies = [
|
|
220
|
+
"bitflags",
|
|
221
|
+
"btls-sys",
|
|
222
|
+
"foreign-types",
|
|
223
|
+
"libc",
|
|
224
|
+
"openssl-macros",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "btls-sys"
|
|
229
|
+
version = "0.5.6"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "9b1b8638a2e1c38a5ae4efa90ae57e643baec35a30d03fc5b399b893adc4954b"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"bindgen",
|
|
234
|
+
"cmake",
|
|
235
|
+
"fs_extra",
|
|
236
|
+
"fslock",
|
|
237
|
+
]
|
|
238
|
+
|
|
239
|
+
[[package]]
|
|
240
|
+
name = "bumpalo"
|
|
241
|
+
version = "3.20.3"
|
|
242
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
243
|
+
checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "bytes"
|
|
247
|
+
version = "1.11.1"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
250
|
+
|
|
251
|
+
[[package]]
|
|
252
|
+
name = "cc"
|
|
253
|
+
version = "1.2.64"
|
|
254
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
255
|
+
checksum = "dad887fd958be91b5098c0248def011f4523ab786cd411be668777e55063501f"
|
|
256
|
+
dependencies = [
|
|
257
|
+
"find-msvc-tools",
|
|
258
|
+
"jobserver",
|
|
259
|
+
"libc",
|
|
260
|
+
"shlex 2.0.1",
|
|
261
|
+
]
|
|
262
|
+
|
|
263
|
+
[[package]]
|
|
264
|
+
name = "cexpr"
|
|
265
|
+
version = "0.6.0"
|
|
266
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
267
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
268
|
+
dependencies = [
|
|
269
|
+
"nom",
|
|
270
|
+
]
|
|
271
|
+
|
|
272
|
+
[[package]]
|
|
273
|
+
name = "cfg-if"
|
|
274
|
+
version = "1.0.4"
|
|
275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
276
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
277
|
+
|
|
278
|
+
[[package]]
|
|
279
|
+
name = "chrono"
|
|
280
|
+
version = "0.4.45"
|
|
281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
282
|
+
checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
|
|
283
|
+
dependencies = [
|
|
284
|
+
"iana-time-zone",
|
|
285
|
+
"js-sys",
|
|
286
|
+
"num-traits",
|
|
287
|
+
"wasm-bindgen",
|
|
288
|
+
"windows-link",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "chrono-tz"
|
|
293
|
+
version = "0.10.4"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "a6139a8597ed92cf816dfb33f5dd6cf0bb93a6adc938f11039f371bc5bcd26c3"
|
|
296
|
+
dependencies = [
|
|
297
|
+
"chrono",
|
|
298
|
+
"phf 0.12.1",
|
|
299
|
+
]
|
|
300
|
+
|
|
301
|
+
[[package]]
|
|
302
|
+
name = "clang-sys"
|
|
303
|
+
version = "1.8.1"
|
|
304
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
305
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
306
|
+
dependencies = [
|
|
307
|
+
"glob",
|
|
308
|
+
"libc",
|
|
309
|
+
"libloading",
|
|
310
|
+
]
|
|
311
|
+
|
|
312
|
+
[[package]]
|
|
313
|
+
name = "clap"
|
|
314
|
+
version = "4.6.1"
|
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
316
|
+
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
317
|
+
dependencies = [
|
|
318
|
+
"clap_builder",
|
|
319
|
+
"clap_derive",
|
|
320
|
+
]
|
|
321
|
+
|
|
322
|
+
[[package]]
|
|
323
|
+
name = "clap_builder"
|
|
324
|
+
version = "4.6.0"
|
|
325
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
326
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
327
|
+
dependencies = [
|
|
328
|
+
"anstream",
|
|
329
|
+
"anstyle",
|
|
330
|
+
"clap_lex",
|
|
331
|
+
"strsim",
|
|
332
|
+
]
|
|
333
|
+
|
|
334
|
+
[[package]]
|
|
335
|
+
name = "clap_derive"
|
|
336
|
+
version = "4.6.1"
|
|
337
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
338
|
+
checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
|
|
339
|
+
dependencies = [
|
|
340
|
+
"heck",
|
|
341
|
+
"proc-macro2",
|
|
342
|
+
"quote",
|
|
343
|
+
"syn",
|
|
344
|
+
]
|
|
345
|
+
|
|
346
|
+
[[package]]
|
|
347
|
+
name = "clap_lex"
|
|
348
|
+
version = "1.1.0"
|
|
349
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
350
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
351
|
+
|
|
352
|
+
[[package]]
|
|
353
|
+
name = "cmake"
|
|
354
|
+
version = "0.1.58"
|
|
355
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
356
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
357
|
+
dependencies = [
|
|
358
|
+
"cc",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "colorchoice"
|
|
363
|
+
version = "1.0.5"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
366
|
+
|
|
367
|
+
[[package]]
|
|
368
|
+
name = "compression-codecs"
|
|
369
|
+
version = "0.4.38"
|
|
370
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
371
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
372
|
+
dependencies = [
|
|
373
|
+
"compression-core",
|
|
374
|
+
"flate2",
|
|
375
|
+
"memchr",
|
|
376
|
+
]
|
|
377
|
+
|
|
378
|
+
[[package]]
|
|
379
|
+
name = "compression-core"
|
|
380
|
+
version = "0.4.32"
|
|
381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
382
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
383
|
+
|
|
384
|
+
[[package]]
|
|
385
|
+
name = "cookie"
|
|
386
|
+
version = "0.18.1"
|
|
387
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
388
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
389
|
+
dependencies = [
|
|
390
|
+
"time",
|
|
391
|
+
"version_check",
|
|
392
|
+
]
|
|
393
|
+
|
|
394
|
+
[[package]]
|
|
395
|
+
name = "core-foundation"
|
|
396
|
+
version = "0.9.4"
|
|
397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
398
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
|
399
|
+
dependencies = [
|
|
400
|
+
"core-foundation-sys",
|
|
401
|
+
"libc",
|
|
402
|
+
]
|
|
403
|
+
|
|
404
|
+
[[package]]
|
|
405
|
+
name = "core-foundation-sys"
|
|
406
|
+
version = "0.8.7"
|
|
407
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
408
|
+
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
|
|
409
|
+
|
|
410
|
+
[[package]]
|
|
411
|
+
name = "cpufeatures"
|
|
412
|
+
version = "0.2.17"
|
|
413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
414
|
+
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
415
|
+
dependencies = [
|
|
416
|
+
"libc",
|
|
417
|
+
]
|
|
418
|
+
|
|
419
|
+
[[package]]
|
|
420
|
+
name = "crc32fast"
|
|
421
|
+
version = "1.5.0"
|
|
422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
423
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
424
|
+
dependencies = [
|
|
425
|
+
"cfg-if",
|
|
426
|
+
]
|
|
427
|
+
|
|
428
|
+
[[package]]
|
|
429
|
+
name = "crypto-common"
|
|
430
|
+
version = "0.1.7"
|
|
431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
432
|
+
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
433
|
+
dependencies = [
|
|
434
|
+
"generic-array",
|
|
435
|
+
"typenum",
|
|
436
|
+
]
|
|
437
|
+
|
|
438
|
+
[[package]]
|
|
439
|
+
name = "cssparser"
|
|
440
|
+
version = "0.37.0"
|
|
441
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
442
|
+
checksum = "8c9cdaae01d5ed7882b04d795e7f752f46ff52d2fa3b50a20d28c464510bba98"
|
|
443
|
+
dependencies = [
|
|
444
|
+
"cssparser-macros",
|
|
445
|
+
"dtoa-short",
|
|
446
|
+
"itoa",
|
|
447
|
+
"phf 0.13.1",
|
|
448
|
+
"smallvec",
|
|
449
|
+
]
|
|
450
|
+
|
|
451
|
+
[[package]]
|
|
452
|
+
name = "cssparser-macros"
|
|
453
|
+
version = "0.7.0"
|
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
455
|
+
checksum = "10a2a99df6e410a8ff4245aa2006499ea662245f967cc7c0a38c83ef8eb44dbf"
|
|
456
|
+
dependencies = [
|
|
457
|
+
"quote",
|
|
458
|
+
"syn",
|
|
459
|
+
]
|
|
460
|
+
|
|
461
|
+
[[package]]
|
|
462
|
+
name = "csv"
|
|
463
|
+
version = "1.4.0"
|
|
464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
465
|
+
checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
|
|
466
|
+
dependencies = [
|
|
467
|
+
"csv-core",
|
|
468
|
+
"itoa",
|
|
469
|
+
"ryu",
|
|
470
|
+
"serde_core",
|
|
471
|
+
]
|
|
472
|
+
|
|
473
|
+
[[package]]
|
|
474
|
+
name = "csv-core"
|
|
475
|
+
version = "0.1.13"
|
|
476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
477
|
+
checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
|
|
478
|
+
dependencies = [
|
|
479
|
+
"memchr",
|
|
480
|
+
]
|
|
481
|
+
|
|
482
|
+
[[package]]
|
|
483
|
+
name = "data-encoding"
|
|
484
|
+
version = "2.11.0"
|
|
485
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
486
|
+
checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
|
|
487
|
+
|
|
488
|
+
[[package]]
|
|
489
|
+
name = "deranged"
|
|
490
|
+
version = "0.5.8"
|
|
491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
492
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
493
|
+
|
|
494
|
+
[[package]]
|
|
495
|
+
name = "derive_more"
|
|
496
|
+
version = "2.1.1"
|
|
497
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
498
|
+
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
499
|
+
dependencies = [
|
|
500
|
+
"derive_more-impl",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "derive_more-impl"
|
|
505
|
+
version = "2.1.1"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
508
|
+
dependencies = [
|
|
509
|
+
"proc-macro2",
|
|
510
|
+
"quote",
|
|
511
|
+
"rustc_version",
|
|
512
|
+
"syn",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "digest"
|
|
517
|
+
version = "0.10.7"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"block-buffer",
|
|
522
|
+
"crypto-common",
|
|
523
|
+
]
|
|
524
|
+
|
|
525
|
+
[[package]]
|
|
526
|
+
name = "displaydoc"
|
|
527
|
+
version = "0.2.6"
|
|
528
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
529
|
+
checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
|
|
530
|
+
dependencies = [
|
|
531
|
+
"proc-macro2",
|
|
532
|
+
"quote",
|
|
533
|
+
"syn",
|
|
534
|
+
]
|
|
535
|
+
|
|
536
|
+
[[package]]
|
|
537
|
+
name = "dtoa"
|
|
538
|
+
version = "1.0.11"
|
|
539
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
540
|
+
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
541
|
+
|
|
542
|
+
[[package]]
|
|
543
|
+
name = "dtoa-short"
|
|
544
|
+
version = "0.3.5"
|
|
545
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
546
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
547
|
+
dependencies = [
|
|
548
|
+
"dtoa",
|
|
549
|
+
]
|
|
550
|
+
|
|
551
|
+
[[package]]
|
|
552
|
+
name = "ego-tree"
|
|
553
|
+
version = "0.11.0"
|
|
554
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
555
|
+
checksum = "b04dc5a38e4f151a79d9f2451ae6037fb6eaf5cba34771f44781f80e508498e3"
|
|
556
|
+
|
|
557
|
+
[[package]]
|
|
558
|
+
name = "either"
|
|
559
|
+
version = "1.16.0"
|
|
560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
561
|
+
checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
|
|
562
|
+
|
|
563
|
+
[[package]]
|
|
564
|
+
name = "equivalent"
|
|
565
|
+
version = "1.0.2"
|
|
566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
567
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
568
|
+
|
|
569
|
+
[[package]]
|
|
570
|
+
name = "fastrand"
|
|
571
|
+
version = "2.4.1"
|
|
572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
573
|
+
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
574
|
+
|
|
575
|
+
[[package]]
|
|
576
|
+
name = "find-msvc-tools"
|
|
577
|
+
version = "0.1.9"
|
|
578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
579
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "flate2"
|
|
583
|
+
version = "1.1.9"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"crc32fast",
|
|
588
|
+
"miniz_oxide",
|
|
589
|
+
"zlib-rs",
|
|
590
|
+
]
|
|
591
|
+
|
|
592
|
+
[[package]]
|
|
593
|
+
name = "fnv"
|
|
594
|
+
version = "1.0.7"
|
|
595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
596
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
597
|
+
|
|
598
|
+
[[package]]
|
|
599
|
+
name = "foldhash"
|
|
600
|
+
version = "0.2.0"
|
|
601
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
602
|
+
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "foreign-types"
|
|
606
|
+
version = "0.5.0"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"foreign-types-macros",
|
|
611
|
+
"foreign-types-shared",
|
|
612
|
+
]
|
|
613
|
+
|
|
614
|
+
[[package]]
|
|
615
|
+
name = "foreign-types-macros"
|
|
616
|
+
version = "0.2.3"
|
|
617
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
618
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
619
|
+
dependencies = [
|
|
620
|
+
"proc-macro2",
|
|
621
|
+
"quote",
|
|
622
|
+
"syn",
|
|
623
|
+
]
|
|
624
|
+
|
|
625
|
+
[[package]]
|
|
626
|
+
name = "foreign-types-shared"
|
|
627
|
+
version = "0.3.1"
|
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
629
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
630
|
+
|
|
631
|
+
[[package]]
|
|
632
|
+
name = "form_urlencoded"
|
|
633
|
+
version = "1.2.2"
|
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
635
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
636
|
+
dependencies = [
|
|
637
|
+
"percent-encoding",
|
|
638
|
+
]
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "fs_extra"
|
|
642
|
+
version = "1.3.0"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "fslock"
|
|
648
|
+
version = "0.2.1"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"libc",
|
|
653
|
+
"winapi",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "futures-channel"
|
|
658
|
+
version = "0.3.32"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
661
|
+
dependencies = [
|
|
662
|
+
"futures-core",
|
|
663
|
+
]
|
|
664
|
+
|
|
665
|
+
[[package]]
|
|
666
|
+
name = "futures-core"
|
|
667
|
+
version = "0.3.32"
|
|
668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
669
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "futures-macro"
|
|
673
|
+
version = "0.3.32"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"proc-macro2",
|
|
678
|
+
"quote",
|
|
679
|
+
"syn",
|
|
680
|
+
]
|
|
681
|
+
|
|
682
|
+
[[package]]
|
|
683
|
+
name = "futures-sink"
|
|
684
|
+
version = "0.3.32"
|
|
685
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
686
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
687
|
+
|
|
688
|
+
[[package]]
|
|
689
|
+
name = "futures-task"
|
|
690
|
+
version = "0.3.32"
|
|
691
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
692
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
693
|
+
|
|
694
|
+
[[package]]
|
|
695
|
+
name = "futures-util"
|
|
696
|
+
version = "0.3.32"
|
|
697
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
698
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
699
|
+
dependencies = [
|
|
700
|
+
"futures-core",
|
|
701
|
+
"futures-macro",
|
|
702
|
+
"futures-sink",
|
|
703
|
+
"futures-task",
|
|
704
|
+
"pin-project-lite",
|
|
705
|
+
"slab",
|
|
706
|
+
]
|
|
707
|
+
|
|
708
|
+
[[package]]
|
|
709
|
+
name = "generic-array"
|
|
710
|
+
version = "0.14.7"
|
|
711
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
712
|
+
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
713
|
+
dependencies = [
|
|
714
|
+
"typenum",
|
|
715
|
+
"version_check",
|
|
716
|
+
]
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "getopts"
|
|
720
|
+
version = "0.2.24"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "cfe4fbac503b8d1f88e6676011885f34b7174f46e59956bba534ba83abded4df"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"unicode-width",
|
|
725
|
+
]
|
|
726
|
+
|
|
727
|
+
[[package]]
|
|
728
|
+
name = "getrandom"
|
|
729
|
+
version = "0.2.17"
|
|
730
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
731
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
732
|
+
dependencies = [
|
|
733
|
+
"cfg-if",
|
|
734
|
+
"libc",
|
|
735
|
+
"wasi",
|
|
736
|
+
]
|
|
737
|
+
|
|
738
|
+
[[package]]
|
|
739
|
+
name = "getrandom"
|
|
740
|
+
version = "0.3.4"
|
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
742
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
743
|
+
dependencies = [
|
|
744
|
+
"cfg-if",
|
|
745
|
+
"libc",
|
|
746
|
+
"r-efi",
|
|
747
|
+
"wasip2",
|
|
748
|
+
]
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "glob"
|
|
752
|
+
version = "0.3.3"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "hashbrown"
|
|
758
|
+
version = "0.17.1"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"allocator-api2",
|
|
763
|
+
"equivalent",
|
|
764
|
+
"foldhash",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "heck"
|
|
769
|
+
version = "0.5.0"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "html5ever"
|
|
775
|
+
version = "0.39.0"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "46a1761807faccc9a19e86944bbf40610014066306f96edcdedc2fb714bcb7b8"
|
|
778
|
+
dependencies = [
|
|
779
|
+
"log",
|
|
780
|
+
"markup5ever",
|
|
781
|
+
]
|
|
782
|
+
|
|
783
|
+
[[package]]
|
|
784
|
+
name = "http"
|
|
785
|
+
version = "1.4.2"
|
|
786
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
787
|
+
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
|
|
788
|
+
dependencies = [
|
|
789
|
+
"bytes",
|
|
790
|
+
"itoa",
|
|
791
|
+
]
|
|
792
|
+
|
|
793
|
+
[[package]]
|
|
794
|
+
name = "http-body"
|
|
795
|
+
version = "1.0.1"
|
|
796
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
797
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
798
|
+
dependencies = [
|
|
799
|
+
"bytes",
|
|
800
|
+
"http",
|
|
801
|
+
]
|
|
802
|
+
|
|
803
|
+
[[package]]
|
|
804
|
+
name = "http-body-util"
|
|
805
|
+
version = "0.1.3"
|
|
806
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
807
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
808
|
+
dependencies = [
|
|
809
|
+
"bytes",
|
|
810
|
+
"futures-core",
|
|
811
|
+
"http",
|
|
812
|
+
"http-body",
|
|
813
|
+
"pin-project-lite",
|
|
814
|
+
]
|
|
815
|
+
|
|
816
|
+
[[package]]
|
|
817
|
+
name = "http2"
|
|
818
|
+
version = "0.5.19"
|
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
820
|
+
checksum = "39fa01ed3820381df693c455ba2109d229c0cb02c95a51108ef45ddd758d91b9"
|
|
821
|
+
dependencies = [
|
|
822
|
+
"atomic-waker",
|
|
823
|
+
"bytes",
|
|
824
|
+
"fnv",
|
|
825
|
+
"futures-core",
|
|
826
|
+
"futures-sink",
|
|
827
|
+
"http",
|
|
828
|
+
"indexmap",
|
|
829
|
+
"slab",
|
|
830
|
+
"smallvec",
|
|
831
|
+
"tokio",
|
|
832
|
+
"tokio-util",
|
|
833
|
+
]
|
|
834
|
+
|
|
835
|
+
[[package]]
|
|
836
|
+
name = "httparse"
|
|
837
|
+
version = "1.10.1"
|
|
838
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
839
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "iana-time-zone"
|
|
843
|
+
version = "0.1.65"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
|
|
846
|
+
dependencies = [
|
|
847
|
+
"android_system_properties",
|
|
848
|
+
"core-foundation-sys",
|
|
849
|
+
"iana-time-zone-haiku",
|
|
850
|
+
"js-sys",
|
|
851
|
+
"log",
|
|
852
|
+
"wasm-bindgen",
|
|
853
|
+
"windows-core",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "iana-time-zone-haiku"
|
|
858
|
+
version = "0.1.2"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"cc",
|
|
863
|
+
]
|
|
864
|
+
|
|
865
|
+
[[package]]
|
|
866
|
+
name = "icu_collections"
|
|
867
|
+
version = "2.2.0"
|
|
868
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
869
|
+
checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
|
|
870
|
+
dependencies = [
|
|
871
|
+
"displaydoc",
|
|
872
|
+
"potential_utf",
|
|
873
|
+
"utf8_iter",
|
|
874
|
+
"yoke",
|
|
875
|
+
"zerofrom",
|
|
876
|
+
"zerovec",
|
|
877
|
+
]
|
|
878
|
+
|
|
879
|
+
[[package]]
|
|
880
|
+
name = "icu_locale_core"
|
|
881
|
+
version = "2.2.0"
|
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
883
|
+
checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
|
|
884
|
+
dependencies = [
|
|
885
|
+
"displaydoc",
|
|
886
|
+
"litemap",
|
|
887
|
+
"tinystr",
|
|
888
|
+
"writeable",
|
|
889
|
+
"zerovec",
|
|
890
|
+
]
|
|
891
|
+
|
|
892
|
+
[[package]]
|
|
893
|
+
name = "icu_normalizer"
|
|
894
|
+
version = "2.2.0"
|
|
895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
896
|
+
checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
|
|
897
|
+
dependencies = [
|
|
898
|
+
"icu_collections",
|
|
899
|
+
"icu_normalizer_data",
|
|
900
|
+
"icu_properties",
|
|
901
|
+
"icu_provider",
|
|
902
|
+
"smallvec",
|
|
903
|
+
"zerovec",
|
|
904
|
+
]
|
|
905
|
+
|
|
906
|
+
[[package]]
|
|
907
|
+
name = "icu_normalizer_data"
|
|
908
|
+
version = "2.2.0"
|
|
909
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
910
|
+
checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
|
|
911
|
+
|
|
912
|
+
[[package]]
|
|
913
|
+
name = "icu_properties"
|
|
914
|
+
version = "2.2.0"
|
|
915
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
916
|
+
checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
|
|
917
|
+
dependencies = [
|
|
918
|
+
"icu_collections",
|
|
919
|
+
"icu_locale_core",
|
|
920
|
+
"icu_properties_data",
|
|
921
|
+
"icu_provider",
|
|
922
|
+
"zerotrie",
|
|
923
|
+
"zerovec",
|
|
924
|
+
]
|
|
925
|
+
|
|
926
|
+
[[package]]
|
|
927
|
+
name = "icu_properties_data"
|
|
928
|
+
version = "2.2.0"
|
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
930
|
+
checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
|
|
931
|
+
|
|
932
|
+
[[package]]
|
|
933
|
+
name = "icu_provider"
|
|
934
|
+
version = "2.2.0"
|
|
935
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
936
|
+
checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
|
|
937
|
+
dependencies = [
|
|
938
|
+
"displaydoc",
|
|
939
|
+
"icu_locale_core",
|
|
940
|
+
"writeable",
|
|
941
|
+
"yoke",
|
|
942
|
+
"zerofrom",
|
|
943
|
+
"zerotrie",
|
|
944
|
+
"zerovec",
|
|
945
|
+
]
|
|
946
|
+
|
|
947
|
+
[[package]]
|
|
948
|
+
name = "idna"
|
|
949
|
+
version = "1.1.0"
|
|
950
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
951
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
952
|
+
dependencies = [
|
|
953
|
+
"idna_adapter",
|
|
954
|
+
"smallvec",
|
|
955
|
+
"utf8_iter",
|
|
956
|
+
]
|
|
957
|
+
|
|
958
|
+
[[package]]
|
|
959
|
+
name = "idna_adapter"
|
|
960
|
+
version = "1.2.2"
|
|
961
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
962
|
+
checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
|
|
963
|
+
dependencies = [
|
|
964
|
+
"icu_normalizer",
|
|
965
|
+
"icu_properties",
|
|
966
|
+
]
|
|
967
|
+
|
|
968
|
+
[[package]]
|
|
969
|
+
name = "indexmap"
|
|
970
|
+
version = "2.14.0"
|
|
971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
972
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
973
|
+
dependencies = [
|
|
974
|
+
"equivalent",
|
|
975
|
+
"hashbrown",
|
|
976
|
+
]
|
|
977
|
+
|
|
978
|
+
[[package]]
|
|
979
|
+
name = "ipnet"
|
|
980
|
+
version = "2.12.0"
|
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
982
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
983
|
+
|
|
984
|
+
[[package]]
|
|
985
|
+
name = "is_terminal_polyfill"
|
|
986
|
+
version = "1.70.2"
|
|
987
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
988
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
989
|
+
|
|
990
|
+
[[package]]
|
|
991
|
+
name = "itertools"
|
|
992
|
+
version = "0.13.0"
|
|
993
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
994
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
995
|
+
dependencies = [
|
|
996
|
+
"either",
|
|
997
|
+
]
|
|
998
|
+
|
|
999
|
+
[[package]]
|
|
1000
|
+
name = "itertools"
|
|
1001
|
+
version = "0.14.0"
|
|
1002
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1003
|
+
checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
|
|
1004
|
+
dependencies = [
|
|
1005
|
+
"either",
|
|
1006
|
+
]
|
|
1007
|
+
|
|
1008
|
+
[[package]]
|
|
1009
|
+
name = "itoa"
|
|
1010
|
+
version = "1.0.18"
|
|
1011
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1012
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
1013
|
+
|
|
1014
|
+
[[package]]
|
|
1015
|
+
name = "jobserver"
|
|
1016
|
+
version = "0.1.34"
|
|
1017
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1018
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
1019
|
+
dependencies = [
|
|
1020
|
+
"getrandom 0.3.4",
|
|
1021
|
+
"libc",
|
|
1022
|
+
]
|
|
1023
|
+
|
|
1024
|
+
[[package]]
|
|
1025
|
+
name = "js-sys"
|
|
1026
|
+
version = "0.3.102"
|
|
1027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1028
|
+
checksum = "03d04c30968dffe80775bd4d7fb676131cd04a1fb46d2686dbffbaec2d9dfd31"
|
|
1029
|
+
dependencies = [
|
|
1030
|
+
"cfg-if",
|
|
1031
|
+
"futures-util",
|
|
1032
|
+
"wasm-bindgen",
|
|
1033
|
+
]
|
|
1034
|
+
|
|
1035
|
+
[[package]]
|
|
1036
|
+
name = "libc"
|
|
1037
|
+
version = "0.2.186"
|
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1039
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
1040
|
+
|
|
1041
|
+
[[package]]
|
|
1042
|
+
name = "libloading"
|
|
1043
|
+
version = "0.8.9"
|
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1045
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
1046
|
+
dependencies = [
|
|
1047
|
+
"cfg-if",
|
|
1048
|
+
"windows-link",
|
|
1049
|
+
]
|
|
1050
|
+
|
|
1051
|
+
[[package]]
|
|
1052
|
+
name = "litemap"
|
|
1053
|
+
version = "0.8.2"
|
|
1054
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1055
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
1056
|
+
|
|
1057
|
+
[[package]]
|
|
1058
|
+
name = "lock_api"
|
|
1059
|
+
version = "0.4.14"
|
|
1060
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1061
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
1062
|
+
dependencies = [
|
|
1063
|
+
"scopeguard",
|
|
1064
|
+
]
|
|
1065
|
+
|
|
1066
|
+
[[package]]
|
|
1067
|
+
name = "log"
|
|
1068
|
+
version = "0.4.32"
|
|
1069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1070
|
+
checksum = "953f07c43838f8e6f9758cab68bf5bed85465e7587ebe0b823f1bcd81978ad3a"
|
|
1071
|
+
|
|
1072
|
+
[[package]]
|
|
1073
|
+
name = "lru"
|
|
1074
|
+
version = "0.18.0"
|
|
1075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1076
|
+
checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9"
|
|
1077
|
+
dependencies = [
|
|
1078
|
+
"hashbrown",
|
|
1079
|
+
]
|
|
1080
|
+
|
|
1081
|
+
[[package]]
|
|
1082
|
+
name = "markup5ever"
|
|
1083
|
+
version = "0.39.0"
|
|
1084
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1085
|
+
checksum = "7122d987ec5f704ee56f6e5b41a7d93722e9aae27ae07cafa4036c4d3f9757de"
|
|
1086
|
+
dependencies = [
|
|
1087
|
+
"log",
|
|
1088
|
+
"tendril",
|
|
1089
|
+
"web_atoms",
|
|
1090
|
+
]
|
|
1091
|
+
|
|
1092
|
+
[[package]]
|
|
1093
|
+
name = "memchr"
|
|
1094
|
+
version = "2.8.2"
|
|
1095
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1096
|
+
checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
|
|
1097
|
+
|
|
1098
|
+
[[package]]
|
|
1099
|
+
name = "minimal-lexical"
|
|
1100
|
+
version = "0.2.1"
|
|
1101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1102
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "miniz_oxide"
|
|
1106
|
+
version = "0.8.9"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"adler2",
|
|
1111
|
+
"simd-adler32",
|
|
1112
|
+
]
|
|
1113
|
+
|
|
1114
|
+
[[package]]
|
|
1115
|
+
name = "mio"
|
|
1116
|
+
version = "1.2.1"
|
|
1117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1118
|
+
checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
|
|
1119
|
+
dependencies = [
|
|
1120
|
+
"libc",
|
|
1121
|
+
"wasi",
|
|
1122
|
+
"windows-sys 0.61.2",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "new_debug_unreachable"
|
|
1127
|
+
version = "1.0.6"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
1130
|
+
|
|
1131
|
+
[[package]]
|
|
1132
|
+
name = "nom"
|
|
1133
|
+
version = "7.1.3"
|
|
1134
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1135
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
1136
|
+
dependencies = [
|
|
1137
|
+
"memchr",
|
|
1138
|
+
"minimal-lexical",
|
|
1139
|
+
]
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "num-conv"
|
|
1143
|
+
version = "0.2.2"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
|
|
1146
|
+
|
|
1147
|
+
[[package]]
|
|
1148
|
+
name = "num-traits"
|
|
1149
|
+
version = "0.2.19"
|
|
1150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1151
|
+
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
1152
|
+
dependencies = [
|
|
1153
|
+
"autocfg",
|
|
1154
|
+
]
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "once_cell"
|
|
1158
|
+
version = "1.21.4"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "once_cell_polyfill"
|
|
1164
|
+
version = "1.70.2"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
1167
|
+
|
|
1168
|
+
[[package]]
|
|
1169
|
+
name = "openssl-macros"
|
|
1170
|
+
version = "0.1.1"
|
|
1171
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1172
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
1173
|
+
dependencies = [
|
|
1174
|
+
"proc-macro2",
|
|
1175
|
+
"quote",
|
|
1176
|
+
"syn",
|
|
1177
|
+
]
|
|
1178
|
+
|
|
1179
|
+
[[package]]
|
|
1180
|
+
name = "parking_lot"
|
|
1181
|
+
version = "0.12.5"
|
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1183
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
1184
|
+
dependencies = [
|
|
1185
|
+
"lock_api",
|
|
1186
|
+
"parking_lot_core",
|
|
1187
|
+
]
|
|
1188
|
+
|
|
1189
|
+
[[package]]
|
|
1190
|
+
name = "parking_lot_core"
|
|
1191
|
+
version = "0.9.12"
|
|
1192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1193
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
1194
|
+
dependencies = [
|
|
1195
|
+
"cfg-if",
|
|
1196
|
+
"libc",
|
|
1197
|
+
"redox_syscall",
|
|
1198
|
+
"smallvec",
|
|
1199
|
+
"windows-link",
|
|
1200
|
+
]
|
|
1201
|
+
|
|
1202
|
+
[[package]]
|
|
1203
|
+
name = "percent-encoding"
|
|
1204
|
+
version = "2.3.2"
|
|
1205
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1206
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
1207
|
+
|
|
1208
|
+
[[package]]
|
|
1209
|
+
name = "phf"
|
|
1210
|
+
version = "0.12.1"
|
|
1211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1212
|
+
checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7"
|
|
1213
|
+
dependencies = [
|
|
1214
|
+
"phf_shared 0.12.1",
|
|
1215
|
+
]
|
|
1216
|
+
|
|
1217
|
+
[[package]]
|
|
1218
|
+
name = "phf"
|
|
1219
|
+
version = "0.13.1"
|
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1221
|
+
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
1222
|
+
dependencies = [
|
|
1223
|
+
"phf_macros",
|
|
1224
|
+
"phf_shared 0.13.1",
|
|
1225
|
+
"serde",
|
|
1226
|
+
]
|
|
1227
|
+
|
|
1228
|
+
[[package]]
|
|
1229
|
+
name = "phf_codegen"
|
|
1230
|
+
version = "0.13.1"
|
|
1231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1232
|
+
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
|
1233
|
+
dependencies = [
|
|
1234
|
+
"phf_generator",
|
|
1235
|
+
"phf_shared 0.13.1",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "phf_generator"
|
|
1240
|
+
version = "0.13.1"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"fastrand",
|
|
1245
|
+
"phf_shared 0.13.1",
|
|
1246
|
+
]
|
|
1247
|
+
|
|
1248
|
+
[[package]]
|
|
1249
|
+
name = "phf_macros"
|
|
1250
|
+
version = "0.13.1"
|
|
1251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1252
|
+
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
1253
|
+
dependencies = [
|
|
1254
|
+
"phf_generator",
|
|
1255
|
+
"phf_shared 0.13.1",
|
|
1256
|
+
"proc-macro2",
|
|
1257
|
+
"quote",
|
|
1258
|
+
"syn",
|
|
1259
|
+
]
|
|
1260
|
+
|
|
1261
|
+
[[package]]
|
|
1262
|
+
name = "phf_shared"
|
|
1263
|
+
version = "0.12.1"
|
|
1264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1265
|
+
checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981"
|
|
1266
|
+
dependencies = [
|
|
1267
|
+
"siphasher",
|
|
1268
|
+
]
|
|
1269
|
+
|
|
1270
|
+
[[package]]
|
|
1271
|
+
name = "phf_shared"
|
|
1272
|
+
version = "0.13.1"
|
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1274
|
+
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
1275
|
+
dependencies = [
|
|
1276
|
+
"siphasher",
|
|
1277
|
+
]
|
|
1278
|
+
|
|
1279
|
+
[[package]]
|
|
1280
|
+
name = "pin-project-lite"
|
|
1281
|
+
version = "0.2.17"
|
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1283
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
1284
|
+
|
|
1285
|
+
[[package]]
|
|
1286
|
+
name = "pkg-config"
|
|
1287
|
+
version = "0.3.33"
|
|
1288
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1289
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
1290
|
+
|
|
1291
|
+
[[package]]
|
|
1292
|
+
name = "potential_utf"
|
|
1293
|
+
version = "0.1.5"
|
|
1294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1295
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
1296
|
+
dependencies = [
|
|
1297
|
+
"zerovec",
|
|
1298
|
+
]
|
|
1299
|
+
|
|
1300
|
+
[[package]]
|
|
1301
|
+
name = "powerfmt"
|
|
1302
|
+
version = "0.2.0"
|
|
1303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1304
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "ppv-lite86"
|
|
1308
|
+
version = "0.2.21"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
1311
|
+
dependencies = [
|
|
1312
|
+
"zerocopy",
|
|
1313
|
+
]
|
|
1314
|
+
|
|
1315
|
+
[[package]]
|
|
1316
|
+
name = "precomputed-hash"
|
|
1317
|
+
version = "0.1.1"
|
|
1318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1319
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
1320
|
+
|
|
1321
|
+
[[package]]
|
|
1322
|
+
name = "proc-macro2"
|
|
1323
|
+
version = "1.0.106"
|
|
1324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1325
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
1326
|
+
dependencies = [
|
|
1327
|
+
"unicode-ident",
|
|
1328
|
+
]
|
|
1329
|
+
|
|
1330
|
+
[[package]]
|
|
1331
|
+
name = "prost"
|
|
1332
|
+
version = "0.14.4"
|
|
1333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1334
|
+
checksum = "528ac67416ff8646872a3c02cad9cc4ee5dc9f9540c9b10771855c95cb2e5ae1"
|
|
1335
|
+
dependencies = [
|
|
1336
|
+
"bytes",
|
|
1337
|
+
"prost-derive",
|
|
1338
|
+
]
|
|
1339
|
+
|
|
1340
|
+
[[package]]
|
|
1341
|
+
name = "prost-derive"
|
|
1342
|
+
version = "0.14.4"
|
|
1343
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1344
|
+
checksum = "b570b25f7617e43d59005d0990ccb79e950a423952cea19671b7a876da390adf"
|
|
1345
|
+
dependencies = [
|
|
1346
|
+
"anyhow",
|
|
1347
|
+
"itertools 0.14.0",
|
|
1348
|
+
"proc-macro2",
|
|
1349
|
+
"quote",
|
|
1350
|
+
"syn",
|
|
1351
|
+
]
|
|
1352
|
+
|
|
1353
|
+
[[package]]
|
|
1354
|
+
name = "quote"
|
|
1355
|
+
version = "1.0.45"
|
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1357
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
1358
|
+
dependencies = [
|
|
1359
|
+
"proc-macro2",
|
|
1360
|
+
]
|
|
1361
|
+
|
|
1362
|
+
[[package]]
|
|
1363
|
+
name = "r-efi"
|
|
1364
|
+
version = "5.3.0"
|
|
1365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1366
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
1367
|
+
|
|
1368
|
+
[[package]]
|
|
1369
|
+
name = "rand"
|
|
1370
|
+
version = "0.9.4"
|
|
1371
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1372
|
+
checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
|
|
1373
|
+
dependencies = [
|
|
1374
|
+
"rand_chacha",
|
|
1375
|
+
"rand_core",
|
|
1376
|
+
]
|
|
1377
|
+
|
|
1378
|
+
[[package]]
|
|
1379
|
+
name = "rand_chacha"
|
|
1380
|
+
version = "0.9.0"
|
|
1381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1382
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
1383
|
+
dependencies = [
|
|
1384
|
+
"ppv-lite86",
|
|
1385
|
+
"rand_core",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "rand_core"
|
|
1390
|
+
version = "0.9.5"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"getrandom 0.3.4",
|
|
1395
|
+
]
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "redox_syscall"
|
|
1399
|
+
version = "0.5.18"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
1402
|
+
dependencies = [
|
|
1403
|
+
"bitflags",
|
|
1404
|
+
]
|
|
1405
|
+
|
|
1406
|
+
[[package]]
|
|
1407
|
+
name = "regex"
|
|
1408
|
+
version = "1.12.4"
|
|
1409
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1410
|
+
checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
|
|
1411
|
+
dependencies = [
|
|
1412
|
+
"aho-corasick",
|
|
1413
|
+
"memchr",
|
|
1414
|
+
"regex-automata",
|
|
1415
|
+
"regex-syntax",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "regex-automata"
|
|
1420
|
+
version = "0.4.14"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
1423
|
+
dependencies = [
|
|
1424
|
+
"aho-corasick",
|
|
1425
|
+
"memchr",
|
|
1426
|
+
"regex-syntax",
|
|
1427
|
+
]
|
|
1428
|
+
|
|
1429
|
+
[[package]]
|
|
1430
|
+
name = "regex-syntax"
|
|
1431
|
+
version = "0.8.11"
|
|
1432
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1433
|
+
checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
|
|
1434
|
+
|
|
1435
|
+
[[package]]
|
|
1436
|
+
name = "ring"
|
|
1437
|
+
version = "0.17.14"
|
|
1438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1439
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1440
|
+
dependencies = [
|
|
1441
|
+
"cc",
|
|
1442
|
+
"cfg-if",
|
|
1443
|
+
"getrandom 0.2.17",
|
|
1444
|
+
"libc",
|
|
1445
|
+
"untrusted",
|
|
1446
|
+
"windows-sys 0.52.0",
|
|
1447
|
+
]
|
|
1448
|
+
|
|
1449
|
+
[[package]]
|
|
1450
|
+
name = "rustc-hash"
|
|
1451
|
+
version = "2.1.2"
|
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1453
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
1454
|
+
|
|
1455
|
+
[[package]]
|
|
1456
|
+
name = "rustc_version"
|
|
1457
|
+
version = "0.4.1"
|
|
1458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1459
|
+
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
1460
|
+
dependencies = [
|
|
1461
|
+
"semver",
|
|
1462
|
+
]
|
|
1463
|
+
|
|
1464
|
+
[[package]]
|
|
1465
|
+
name = "rustls"
|
|
1466
|
+
version = "0.23.40"
|
|
1467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1468
|
+
checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
|
|
1469
|
+
dependencies = [
|
|
1470
|
+
"once_cell",
|
|
1471
|
+
"ring",
|
|
1472
|
+
"rustls-pki-types",
|
|
1473
|
+
"rustls-webpki",
|
|
1474
|
+
"subtle",
|
|
1475
|
+
"zeroize",
|
|
1476
|
+
]
|
|
1477
|
+
|
|
1478
|
+
[[package]]
|
|
1479
|
+
name = "rustls-pki-types"
|
|
1480
|
+
version = "1.14.1"
|
|
1481
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1482
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
1483
|
+
dependencies = [
|
|
1484
|
+
"zeroize",
|
|
1485
|
+
]
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "rustls-webpki"
|
|
1489
|
+
version = "0.103.13"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
|
|
1492
|
+
dependencies = [
|
|
1493
|
+
"ring",
|
|
1494
|
+
"rustls-pki-types",
|
|
1495
|
+
"untrusted",
|
|
1496
|
+
]
|
|
1497
|
+
|
|
1498
|
+
[[package]]
|
|
1499
|
+
name = "rustversion"
|
|
1500
|
+
version = "1.0.22"
|
|
1501
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1502
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1503
|
+
|
|
1504
|
+
[[package]]
|
|
1505
|
+
name = "ryu"
|
|
1506
|
+
version = "1.0.23"
|
|
1507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1508
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1509
|
+
|
|
1510
|
+
[[package]]
|
|
1511
|
+
name = "scopeguard"
|
|
1512
|
+
version = "1.2.0"
|
|
1513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1514
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
1515
|
+
|
|
1516
|
+
[[package]]
|
|
1517
|
+
name = "scraper"
|
|
1518
|
+
version = "0.27.0"
|
|
1519
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1520
|
+
checksum = "bdd0be4d296f048bfb06dd01bbc80ef789ddd2e55583e8d2e6b804942abfabc2"
|
|
1521
|
+
dependencies = [
|
|
1522
|
+
"cssparser",
|
|
1523
|
+
"ego-tree",
|
|
1524
|
+
"getopts",
|
|
1525
|
+
"html5ever",
|
|
1526
|
+
"precomputed-hash",
|
|
1527
|
+
"selectors",
|
|
1528
|
+
"tendril",
|
|
1529
|
+
]
|
|
1530
|
+
|
|
1531
|
+
[[package]]
|
|
1532
|
+
name = "selectors"
|
|
1533
|
+
version = "0.38.0"
|
|
1534
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1535
|
+
checksum = "8adfa1c298912827b8a28b223b3b874357397ae706e6190acd9bf28cee99114d"
|
|
1536
|
+
dependencies = [
|
|
1537
|
+
"bitflags",
|
|
1538
|
+
"cssparser",
|
|
1539
|
+
"derive_more",
|
|
1540
|
+
"log",
|
|
1541
|
+
"new_debug_unreachable",
|
|
1542
|
+
"phf 0.13.1",
|
|
1543
|
+
"phf_codegen",
|
|
1544
|
+
"precomputed-hash",
|
|
1545
|
+
"rustc-hash",
|
|
1546
|
+
"servo_arc",
|
|
1547
|
+
"smallvec",
|
|
1548
|
+
]
|
|
1549
|
+
|
|
1550
|
+
[[package]]
|
|
1551
|
+
name = "semver"
|
|
1552
|
+
version = "1.0.28"
|
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1554
|
+
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
1555
|
+
|
|
1556
|
+
[[package]]
|
|
1557
|
+
name = "serde"
|
|
1558
|
+
version = "1.0.228"
|
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1560
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1561
|
+
dependencies = [
|
|
1562
|
+
"serde_core",
|
|
1563
|
+
"serde_derive",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "serde_core"
|
|
1568
|
+
version = "1.0.228"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"serde_derive",
|
|
1573
|
+
]
|
|
1574
|
+
|
|
1575
|
+
[[package]]
|
|
1576
|
+
name = "serde_derive"
|
|
1577
|
+
version = "1.0.228"
|
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1579
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1580
|
+
dependencies = [
|
|
1581
|
+
"proc-macro2",
|
|
1582
|
+
"quote",
|
|
1583
|
+
"syn",
|
|
1584
|
+
]
|
|
1585
|
+
|
|
1586
|
+
[[package]]
|
|
1587
|
+
name = "serde_json"
|
|
1588
|
+
version = "1.0.150"
|
|
1589
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1590
|
+
checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
|
|
1591
|
+
dependencies = [
|
|
1592
|
+
"itoa",
|
|
1593
|
+
"memchr",
|
|
1594
|
+
"serde",
|
|
1595
|
+
"serde_core",
|
|
1596
|
+
"zmij",
|
|
1597
|
+
]
|
|
1598
|
+
|
|
1599
|
+
[[package]]
|
|
1600
|
+
name = "servo_arc"
|
|
1601
|
+
version = "0.4.3"
|
|
1602
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1603
|
+
checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
|
|
1604
|
+
dependencies = [
|
|
1605
|
+
"stable_deref_trait",
|
|
1606
|
+
]
|
|
1607
|
+
|
|
1608
|
+
[[package]]
|
|
1609
|
+
name = "sha1"
|
|
1610
|
+
version = "0.10.6"
|
|
1611
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1612
|
+
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
|
1613
|
+
dependencies = [
|
|
1614
|
+
"cfg-if",
|
|
1615
|
+
"cpufeatures",
|
|
1616
|
+
"digest",
|
|
1617
|
+
]
|
|
1618
|
+
|
|
1619
|
+
[[package]]
|
|
1620
|
+
name = "shlex"
|
|
1621
|
+
version = "1.3.0"
|
|
1622
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1623
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "shlex"
|
|
1627
|
+
version = "2.0.1"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
|
|
1630
|
+
|
|
1631
|
+
[[package]]
|
|
1632
|
+
name = "simd-adler32"
|
|
1633
|
+
version = "0.3.9"
|
|
1634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1635
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1636
|
+
|
|
1637
|
+
[[package]]
|
|
1638
|
+
name = "siphasher"
|
|
1639
|
+
version = "1.0.3"
|
|
1640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1641
|
+
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
1642
|
+
|
|
1643
|
+
[[package]]
|
|
1644
|
+
name = "slab"
|
|
1645
|
+
version = "0.4.12"
|
|
1646
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1647
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1648
|
+
|
|
1649
|
+
[[package]]
|
|
1650
|
+
name = "smallvec"
|
|
1651
|
+
version = "1.15.2"
|
|
1652
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1653
|
+
checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
|
|
1654
|
+
|
|
1655
|
+
[[package]]
|
|
1656
|
+
name = "socket2"
|
|
1657
|
+
version = "0.6.4"
|
|
1658
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1659
|
+
checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
|
|
1660
|
+
dependencies = [
|
|
1661
|
+
"libc",
|
|
1662
|
+
"windows-sys 0.61.2",
|
|
1663
|
+
]
|
|
1664
|
+
|
|
1665
|
+
[[package]]
|
|
1666
|
+
name = "stable_deref_trait"
|
|
1667
|
+
version = "1.2.1"
|
|
1668
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1669
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1670
|
+
|
|
1671
|
+
[[package]]
|
|
1672
|
+
name = "string_cache"
|
|
1673
|
+
version = "0.9.0"
|
|
1674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1675
|
+
checksum = "a18596f8c785a729f2819c0f6a7eae6ebeebdfffbfe4214ae6b087f690e31901"
|
|
1676
|
+
dependencies = [
|
|
1677
|
+
"new_debug_unreachable",
|
|
1678
|
+
"parking_lot",
|
|
1679
|
+
"phf_shared 0.13.1",
|
|
1680
|
+
"precomputed-hash",
|
|
1681
|
+
]
|
|
1682
|
+
|
|
1683
|
+
[[package]]
|
|
1684
|
+
name = "string_cache_codegen"
|
|
1685
|
+
version = "0.6.1"
|
|
1686
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1687
|
+
checksum = "585635e46db231059f76c5849798146164652513eb9e8ab2685939dd90f29b69"
|
|
1688
|
+
dependencies = [
|
|
1689
|
+
"phf_generator",
|
|
1690
|
+
"phf_shared 0.13.1",
|
|
1691
|
+
"proc-macro2",
|
|
1692
|
+
"quote",
|
|
1693
|
+
]
|
|
1694
|
+
|
|
1695
|
+
[[package]]
|
|
1696
|
+
name = "strsim"
|
|
1697
|
+
version = "0.11.1"
|
|
1698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1699
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1700
|
+
|
|
1701
|
+
[[package]]
|
|
1702
|
+
name = "subtle"
|
|
1703
|
+
version = "2.6.1"
|
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1705
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1706
|
+
|
|
1707
|
+
[[package]]
|
|
1708
|
+
name = "syn"
|
|
1709
|
+
version = "2.0.117"
|
|
1710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1711
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1712
|
+
dependencies = [
|
|
1713
|
+
"proc-macro2",
|
|
1714
|
+
"quote",
|
|
1715
|
+
"unicode-ident",
|
|
1716
|
+
]
|
|
1717
|
+
|
|
1718
|
+
[[package]]
|
|
1719
|
+
name = "sync_wrapper"
|
|
1720
|
+
version = "1.0.2"
|
|
1721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1722
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1723
|
+
|
|
1724
|
+
[[package]]
|
|
1725
|
+
name = "synstructure"
|
|
1726
|
+
version = "0.13.2"
|
|
1727
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1728
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1729
|
+
dependencies = [
|
|
1730
|
+
"proc-macro2",
|
|
1731
|
+
"quote",
|
|
1732
|
+
"syn",
|
|
1733
|
+
]
|
|
1734
|
+
|
|
1735
|
+
[[package]]
|
|
1736
|
+
name = "system-configuration"
|
|
1737
|
+
version = "0.7.0"
|
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1739
|
+
checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
|
|
1740
|
+
dependencies = [
|
|
1741
|
+
"bitflags",
|
|
1742
|
+
"core-foundation",
|
|
1743
|
+
"system-configuration-sys",
|
|
1744
|
+
]
|
|
1745
|
+
|
|
1746
|
+
[[package]]
|
|
1747
|
+
name = "system-configuration-sys"
|
|
1748
|
+
version = "0.6.0"
|
|
1749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1750
|
+
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
|
|
1751
|
+
dependencies = [
|
|
1752
|
+
"core-foundation-sys",
|
|
1753
|
+
"libc",
|
|
1754
|
+
]
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "tendril"
|
|
1758
|
+
version = "0.5.0"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "c4790fc369d5a530f4b544b094e31388b9b3a37c0f4652ade4505945f5660d24"
|
|
1761
|
+
dependencies = [
|
|
1762
|
+
"new_debug_unreachable",
|
|
1763
|
+
"utf-8",
|
|
1764
|
+
]
|
|
1765
|
+
|
|
1766
|
+
[[package]]
|
|
1767
|
+
name = "thiserror"
|
|
1768
|
+
version = "1.0.69"
|
|
1769
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1770
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1771
|
+
dependencies = [
|
|
1772
|
+
"thiserror-impl 1.0.69",
|
|
1773
|
+
]
|
|
1774
|
+
|
|
1775
|
+
[[package]]
|
|
1776
|
+
name = "thiserror"
|
|
1777
|
+
version = "2.0.18"
|
|
1778
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1779
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1780
|
+
dependencies = [
|
|
1781
|
+
"thiserror-impl 2.0.18",
|
|
1782
|
+
]
|
|
1783
|
+
|
|
1784
|
+
[[package]]
|
|
1785
|
+
name = "thiserror-impl"
|
|
1786
|
+
version = "1.0.69"
|
|
1787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1788
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1789
|
+
dependencies = [
|
|
1790
|
+
"proc-macro2",
|
|
1791
|
+
"quote",
|
|
1792
|
+
"syn",
|
|
1793
|
+
]
|
|
1794
|
+
|
|
1795
|
+
[[package]]
|
|
1796
|
+
name = "thiserror-impl"
|
|
1797
|
+
version = "2.0.18"
|
|
1798
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1799
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1800
|
+
dependencies = [
|
|
1801
|
+
"proc-macro2",
|
|
1802
|
+
"quote",
|
|
1803
|
+
"syn",
|
|
1804
|
+
]
|
|
1805
|
+
|
|
1806
|
+
[[package]]
|
|
1807
|
+
name = "time"
|
|
1808
|
+
version = "0.3.49"
|
|
1809
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1810
|
+
checksum = "711a53c2d47bbd818258c498c8dbfe186a2526c631495cfe7e078567f86b8469"
|
|
1811
|
+
dependencies = [
|
|
1812
|
+
"deranged",
|
|
1813
|
+
"num-conv",
|
|
1814
|
+
"powerfmt",
|
|
1815
|
+
"serde_core",
|
|
1816
|
+
"time-core",
|
|
1817
|
+
"time-macros",
|
|
1818
|
+
]
|
|
1819
|
+
|
|
1820
|
+
[[package]]
|
|
1821
|
+
name = "time-core"
|
|
1822
|
+
version = "0.1.9"
|
|
1823
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1824
|
+
checksum = "9e1c906769ad99c88eaa54e728060edef082f8e358ff32030cb7c7d315e81109"
|
|
1825
|
+
|
|
1826
|
+
[[package]]
|
|
1827
|
+
name = "time-macros"
|
|
1828
|
+
version = "0.2.29"
|
|
1829
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1830
|
+
checksum = "71c652a3727a9cbb9a02f707f530b618ce00d0ccd762009c8c23bd191df3c17d"
|
|
1831
|
+
dependencies = [
|
|
1832
|
+
"num-conv",
|
|
1833
|
+
"time-core",
|
|
1834
|
+
]
|
|
1835
|
+
|
|
1836
|
+
[[package]]
|
|
1837
|
+
name = "tinystr"
|
|
1838
|
+
version = "0.8.3"
|
|
1839
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1840
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1841
|
+
dependencies = [
|
|
1842
|
+
"displaydoc",
|
|
1843
|
+
"zerovec",
|
|
1844
|
+
]
|
|
1845
|
+
|
|
1846
|
+
[[package]]
|
|
1847
|
+
name = "tokio"
|
|
1848
|
+
version = "1.52.3"
|
|
1849
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1850
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1851
|
+
dependencies = [
|
|
1852
|
+
"bytes",
|
|
1853
|
+
"libc",
|
|
1854
|
+
"mio",
|
|
1855
|
+
"pin-project-lite",
|
|
1856
|
+
"socket2",
|
|
1857
|
+
"tokio-macros",
|
|
1858
|
+
"windows-sys 0.61.2",
|
|
1859
|
+
]
|
|
1860
|
+
|
|
1861
|
+
[[package]]
|
|
1862
|
+
name = "tokio-btls"
|
|
1863
|
+
version = "0.5.6"
|
|
1864
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1865
|
+
checksum = "2e1fd638ec35427faf3b8f412e0fdd6fae76591d79dba40f38fa667d22bc44dd"
|
|
1866
|
+
dependencies = [
|
|
1867
|
+
"btls",
|
|
1868
|
+
"tokio",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "tokio-macros"
|
|
1873
|
+
version = "2.7.0"
|
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1876
|
+
dependencies = [
|
|
1877
|
+
"proc-macro2",
|
|
1878
|
+
"quote",
|
|
1879
|
+
"syn",
|
|
1880
|
+
]
|
|
1881
|
+
|
|
1882
|
+
[[package]]
|
|
1883
|
+
name = "tokio-rustls"
|
|
1884
|
+
version = "0.26.4"
|
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1886
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1887
|
+
dependencies = [
|
|
1888
|
+
"rustls",
|
|
1889
|
+
"tokio",
|
|
1890
|
+
]
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "tokio-socks"
|
|
1894
|
+
version = "0.5.3"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "a7e2948f60dbe26b35f2c7fb74ac2854c1fddded0fe9d7548fcc674a246f7615"
|
|
1897
|
+
dependencies = [
|
|
1898
|
+
"either",
|
|
1899
|
+
"futures-util",
|
|
1900
|
+
"thiserror 1.0.69",
|
|
1901
|
+
"tokio",
|
|
1902
|
+
]
|
|
1903
|
+
|
|
1904
|
+
[[package]]
|
|
1905
|
+
name = "tokio-tungstenite"
|
|
1906
|
+
version = "0.29.0"
|
|
1907
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1908
|
+
checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
|
|
1909
|
+
dependencies = [
|
|
1910
|
+
"futures-util",
|
|
1911
|
+
"log",
|
|
1912
|
+
"rustls",
|
|
1913
|
+
"rustls-pki-types",
|
|
1914
|
+
"tokio",
|
|
1915
|
+
"tokio-rustls",
|
|
1916
|
+
"tungstenite",
|
|
1917
|
+
"webpki-roots 0.26.11",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "tokio-util"
|
|
1922
|
+
version = "0.7.18"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"bytes",
|
|
1927
|
+
"futures-core",
|
|
1928
|
+
"futures-sink",
|
|
1929
|
+
"pin-project-lite",
|
|
1930
|
+
"tokio",
|
|
1931
|
+
]
|
|
1932
|
+
|
|
1933
|
+
[[package]]
|
|
1934
|
+
name = "tower"
|
|
1935
|
+
version = "0.5.3"
|
|
1936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1937
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1938
|
+
dependencies = [
|
|
1939
|
+
"futures-core",
|
|
1940
|
+
"futures-util",
|
|
1941
|
+
"pin-project-lite",
|
|
1942
|
+
"sync_wrapper",
|
|
1943
|
+
"tokio",
|
|
1944
|
+
"tower-layer",
|
|
1945
|
+
"tower-service",
|
|
1946
|
+
]
|
|
1947
|
+
|
|
1948
|
+
[[package]]
|
|
1949
|
+
name = "tower-http"
|
|
1950
|
+
version = "0.6.11"
|
|
1951
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1952
|
+
checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
|
|
1953
|
+
dependencies = [
|
|
1954
|
+
"async-compression",
|
|
1955
|
+
"bitflags",
|
|
1956
|
+
"bytes",
|
|
1957
|
+
"futures-core",
|
|
1958
|
+
"http",
|
|
1959
|
+
"http-body",
|
|
1960
|
+
"http-body-util",
|
|
1961
|
+
"pin-project-lite",
|
|
1962
|
+
"tokio",
|
|
1963
|
+
"tokio-util",
|
|
1964
|
+
"tower-layer",
|
|
1965
|
+
"tower-service",
|
|
1966
|
+
]
|
|
1967
|
+
|
|
1968
|
+
[[package]]
|
|
1969
|
+
name = "tower-layer"
|
|
1970
|
+
version = "0.3.3"
|
|
1971
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1972
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1973
|
+
|
|
1974
|
+
[[package]]
|
|
1975
|
+
name = "tower-service"
|
|
1976
|
+
version = "0.3.3"
|
|
1977
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1978
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1979
|
+
|
|
1980
|
+
[[package]]
|
|
1981
|
+
name = "try-lock"
|
|
1982
|
+
version = "0.2.5"
|
|
1983
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1984
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1985
|
+
|
|
1986
|
+
[[package]]
|
|
1987
|
+
name = "tungstenite"
|
|
1988
|
+
version = "0.29.0"
|
|
1989
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1990
|
+
checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
|
|
1991
|
+
dependencies = [
|
|
1992
|
+
"bytes",
|
|
1993
|
+
"data-encoding",
|
|
1994
|
+
"http",
|
|
1995
|
+
"httparse",
|
|
1996
|
+
"log",
|
|
1997
|
+
"rand",
|
|
1998
|
+
"rustls",
|
|
1999
|
+
"rustls-pki-types",
|
|
2000
|
+
"sha1",
|
|
2001
|
+
"thiserror 2.0.18",
|
|
2002
|
+
]
|
|
2003
|
+
|
|
2004
|
+
[[package]]
|
|
2005
|
+
name = "typed-builder"
|
|
2006
|
+
version = "0.23.2"
|
|
2007
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2008
|
+
checksum = "31aa81521b70f94402501d848ccc0ecaa8f93c8eb6999eb9747e72287757ffda"
|
|
2009
|
+
dependencies = [
|
|
2010
|
+
"typed-builder-macro",
|
|
2011
|
+
]
|
|
2012
|
+
|
|
2013
|
+
[[package]]
|
|
2014
|
+
name = "typed-builder-macro"
|
|
2015
|
+
version = "0.23.2"
|
|
2016
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2017
|
+
checksum = "076a02dc54dd46795c2e9c8282ed40bcfb1e22747e955de9389a1de28190fb26"
|
|
2018
|
+
dependencies = [
|
|
2019
|
+
"proc-macro2",
|
|
2020
|
+
"quote",
|
|
2021
|
+
"syn",
|
|
2022
|
+
]
|
|
2023
|
+
|
|
2024
|
+
[[package]]
|
|
2025
|
+
name = "typed-path"
|
|
2026
|
+
version = "0.12.3"
|
|
2027
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2028
|
+
checksum = "8e28f89b80c87b8fb0cf04ab448d5dd0dd0ade2f8891bae878de66a75a28600e"
|
|
2029
|
+
|
|
2030
|
+
[[package]]
|
|
2031
|
+
name = "typenum"
|
|
2032
|
+
version = "1.20.1"
|
|
2033
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2034
|
+
checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
|
|
2035
|
+
|
|
2036
|
+
[[package]]
|
|
2037
|
+
name = "unicode-ident"
|
|
2038
|
+
version = "1.0.24"
|
|
2039
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2040
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
2041
|
+
|
|
2042
|
+
[[package]]
|
|
2043
|
+
name = "unicode-width"
|
|
2044
|
+
version = "0.2.2"
|
|
2045
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2046
|
+
checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
|
|
2047
|
+
|
|
2048
|
+
[[package]]
|
|
2049
|
+
name = "untrusted"
|
|
2050
|
+
version = "0.9.0"
|
|
2051
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2052
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
2053
|
+
|
|
2054
|
+
[[package]]
|
|
2055
|
+
name = "url"
|
|
2056
|
+
version = "2.5.8"
|
|
2057
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2058
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
2059
|
+
dependencies = [
|
|
2060
|
+
"form_urlencoded",
|
|
2061
|
+
"idna",
|
|
2062
|
+
"percent-encoding",
|
|
2063
|
+
"serde",
|
|
2064
|
+
]
|
|
2065
|
+
|
|
2066
|
+
[[package]]
|
|
2067
|
+
name = "utf-8"
|
|
2068
|
+
version = "0.7.6"
|
|
2069
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2070
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
|
2071
|
+
|
|
2072
|
+
[[package]]
|
|
2073
|
+
name = "utf8_iter"
|
|
2074
|
+
version = "1.0.4"
|
|
2075
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2076
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
2077
|
+
|
|
2078
|
+
[[package]]
|
|
2079
|
+
name = "utf8parse"
|
|
2080
|
+
version = "0.2.2"
|
|
2081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2082
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
2083
|
+
|
|
2084
|
+
[[package]]
|
|
2085
|
+
name = "version_check"
|
|
2086
|
+
version = "0.9.5"
|
|
2087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2088
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
2089
|
+
|
|
2090
|
+
[[package]]
|
|
2091
|
+
name = "want"
|
|
2092
|
+
version = "0.3.1"
|
|
2093
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2094
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
2095
|
+
dependencies = [
|
|
2096
|
+
"try-lock",
|
|
2097
|
+
]
|
|
2098
|
+
|
|
2099
|
+
[[package]]
|
|
2100
|
+
name = "wasi"
|
|
2101
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
2102
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2103
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
2104
|
+
|
|
2105
|
+
[[package]]
|
|
2106
|
+
name = "wasip2"
|
|
2107
|
+
version = "1.0.4+wasi-0.2.12"
|
|
2108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2109
|
+
checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
|
|
2110
|
+
dependencies = [
|
|
2111
|
+
"wit-bindgen",
|
|
2112
|
+
]
|
|
2113
|
+
|
|
2114
|
+
[[package]]
|
|
2115
|
+
name = "wasm-bindgen"
|
|
2116
|
+
version = "0.2.125"
|
|
2117
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2118
|
+
checksum = "8ddb3f79143bced6de84270411622a2699cee572fc0875aeaf1e7867cf9fca1a"
|
|
2119
|
+
dependencies = [
|
|
2120
|
+
"cfg-if",
|
|
2121
|
+
"once_cell",
|
|
2122
|
+
"rustversion",
|
|
2123
|
+
"wasm-bindgen-macro",
|
|
2124
|
+
"wasm-bindgen-shared",
|
|
2125
|
+
]
|
|
2126
|
+
|
|
2127
|
+
[[package]]
|
|
2128
|
+
name = "wasm-bindgen-macro"
|
|
2129
|
+
version = "0.2.125"
|
|
2130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2131
|
+
checksum = "4e21a184b13fb19e157296e2c46056aec9092264fab83e4ba59e68c61b323c3d"
|
|
2132
|
+
dependencies = [
|
|
2133
|
+
"quote",
|
|
2134
|
+
"wasm-bindgen-macro-support",
|
|
2135
|
+
]
|
|
2136
|
+
|
|
2137
|
+
[[package]]
|
|
2138
|
+
name = "wasm-bindgen-macro-support"
|
|
2139
|
+
version = "0.2.125"
|
|
2140
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2141
|
+
checksum = "fecefd9c35bd935a20fc3fc344b5f29138961e4f47fb03297d88f2587afb5ebd"
|
|
2142
|
+
dependencies = [
|
|
2143
|
+
"bumpalo",
|
|
2144
|
+
"proc-macro2",
|
|
2145
|
+
"quote",
|
|
2146
|
+
"syn",
|
|
2147
|
+
"wasm-bindgen-shared",
|
|
2148
|
+
]
|
|
2149
|
+
|
|
2150
|
+
[[package]]
|
|
2151
|
+
name = "wasm-bindgen-shared"
|
|
2152
|
+
version = "0.2.125"
|
|
2153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2154
|
+
checksum = "23939e44bb9a5d7576fa2b563dc2e136628f1224e88a8deed09e04858b77871f"
|
|
2155
|
+
dependencies = [
|
|
2156
|
+
"unicode-ident",
|
|
2157
|
+
]
|
|
2158
|
+
|
|
2159
|
+
[[package]]
|
|
2160
|
+
name = "web_atoms"
|
|
2161
|
+
version = "0.2.4"
|
|
2162
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2163
|
+
checksum = "d7cff6eef815df1834fd250e3a2ff436044d82a9f1bc1980ca1dbdf07effc538"
|
|
2164
|
+
dependencies = [
|
|
2165
|
+
"phf 0.13.1",
|
|
2166
|
+
"phf_codegen",
|
|
2167
|
+
"string_cache",
|
|
2168
|
+
"string_cache_codegen",
|
|
2169
|
+
]
|
|
2170
|
+
|
|
2171
|
+
[[package]]
|
|
2172
|
+
name = "webpki-root-certs"
|
|
2173
|
+
version = "1.0.7"
|
|
2174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2175
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
2176
|
+
dependencies = [
|
|
2177
|
+
"rustls-pki-types",
|
|
2178
|
+
]
|
|
2179
|
+
|
|
2180
|
+
[[package]]
|
|
2181
|
+
name = "webpki-roots"
|
|
2182
|
+
version = "0.26.11"
|
|
2183
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2184
|
+
checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
|
|
2185
|
+
dependencies = [
|
|
2186
|
+
"webpki-roots 1.0.7",
|
|
2187
|
+
]
|
|
2188
|
+
|
|
2189
|
+
[[package]]
|
|
2190
|
+
name = "webpki-roots"
|
|
2191
|
+
version = "1.0.7"
|
|
2192
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2193
|
+
checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
|
|
2194
|
+
dependencies = [
|
|
2195
|
+
"rustls-pki-types",
|
|
2196
|
+
]
|
|
2197
|
+
|
|
2198
|
+
[[package]]
|
|
2199
|
+
name = "winapi"
|
|
2200
|
+
version = "0.3.9"
|
|
2201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2202
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
2203
|
+
dependencies = [
|
|
2204
|
+
"winapi-i686-pc-windows-gnu",
|
|
2205
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
2206
|
+
]
|
|
2207
|
+
|
|
2208
|
+
[[package]]
|
|
2209
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
2210
|
+
version = "0.4.0"
|
|
2211
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2212
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
2213
|
+
|
|
2214
|
+
[[package]]
|
|
2215
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
2216
|
+
version = "0.4.0"
|
|
2217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2218
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
2219
|
+
|
|
2220
|
+
[[package]]
|
|
2221
|
+
name = "windows-core"
|
|
2222
|
+
version = "0.62.2"
|
|
2223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2224
|
+
checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
|
|
2225
|
+
dependencies = [
|
|
2226
|
+
"windows-implement",
|
|
2227
|
+
"windows-interface",
|
|
2228
|
+
"windows-link",
|
|
2229
|
+
"windows-result",
|
|
2230
|
+
"windows-strings",
|
|
2231
|
+
]
|
|
2232
|
+
|
|
2233
|
+
[[package]]
|
|
2234
|
+
name = "windows-implement"
|
|
2235
|
+
version = "0.60.2"
|
|
2236
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2237
|
+
checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
|
|
2238
|
+
dependencies = [
|
|
2239
|
+
"proc-macro2",
|
|
2240
|
+
"quote",
|
|
2241
|
+
"syn",
|
|
2242
|
+
]
|
|
2243
|
+
|
|
2244
|
+
[[package]]
|
|
2245
|
+
name = "windows-interface"
|
|
2246
|
+
version = "0.59.3"
|
|
2247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2248
|
+
checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
|
|
2249
|
+
dependencies = [
|
|
2250
|
+
"proc-macro2",
|
|
2251
|
+
"quote",
|
|
2252
|
+
"syn",
|
|
2253
|
+
]
|
|
2254
|
+
|
|
2255
|
+
[[package]]
|
|
2256
|
+
name = "windows-link"
|
|
2257
|
+
version = "0.2.1"
|
|
2258
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2259
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
2260
|
+
|
|
2261
|
+
[[package]]
|
|
2262
|
+
name = "windows-registry"
|
|
2263
|
+
version = "0.6.1"
|
|
2264
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2265
|
+
checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
|
|
2266
|
+
dependencies = [
|
|
2267
|
+
"windows-link",
|
|
2268
|
+
"windows-result",
|
|
2269
|
+
"windows-strings",
|
|
2270
|
+
]
|
|
2271
|
+
|
|
2272
|
+
[[package]]
|
|
2273
|
+
name = "windows-result"
|
|
2274
|
+
version = "0.4.1"
|
|
2275
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2276
|
+
checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
|
|
2277
|
+
dependencies = [
|
|
2278
|
+
"windows-link",
|
|
2279
|
+
]
|
|
2280
|
+
|
|
2281
|
+
[[package]]
|
|
2282
|
+
name = "windows-strings"
|
|
2283
|
+
version = "0.5.1"
|
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2285
|
+
checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
|
|
2286
|
+
dependencies = [
|
|
2287
|
+
"windows-link",
|
|
2288
|
+
]
|
|
2289
|
+
|
|
2290
|
+
[[package]]
|
|
2291
|
+
name = "windows-sys"
|
|
2292
|
+
version = "0.52.0"
|
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2294
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
2295
|
+
dependencies = [
|
|
2296
|
+
"windows-targets",
|
|
2297
|
+
]
|
|
2298
|
+
|
|
2299
|
+
[[package]]
|
|
2300
|
+
name = "windows-sys"
|
|
2301
|
+
version = "0.61.2"
|
|
2302
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2303
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
2304
|
+
dependencies = [
|
|
2305
|
+
"windows-link",
|
|
2306
|
+
]
|
|
2307
|
+
|
|
2308
|
+
[[package]]
|
|
2309
|
+
name = "windows-targets"
|
|
2310
|
+
version = "0.52.6"
|
|
2311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2312
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
2313
|
+
dependencies = [
|
|
2314
|
+
"windows_aarch64_gnullvm",
|
|
2315
|
+
"windows_aarch64_msvc",
|
|
2316
|
+
"windows_i686_gnu",
|
|
2317
|
+
"windows_i686_gnullvm",
|
|
2318
|
+
"windows_i686_msvc",
|
|
2319
|
+
"windows_x86_64_gnu",
|
|
2320
|
+
"windows_x86_64_gnullvm",
|
|
2321
|
+
"windows_x86_64_msvc",
|
|
2322
|
+
]
|
|
2323
|
+
|
|
2324
|
+
[[package]]
|
|
2325
|
+
name = "windows_aarch64_gnullvm"
|
|
2326
|
+
version = "0.52.6"
|
|
2327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2328
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
2329
|
+
|
|
2330
|
+
[[package]]
|
|
2331
|
+
name = "windows_aarch64_msvc"
|
|
2332
|
+
version = "0.52.6"
|
|
2333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2334
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
2335
|
+
|
|
2336
|
+
[[package]]
|
|
2337
|
+
name = "windows_i686_gnu"
|
|
2338
|
+
version = "0.52.6"
|
|
2339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2340
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
2341
|
+
|
|
2342
|
+
[[package]]
|
|
2343
|
+
name = "windows_i686_gnullvm"
|
|
2344
|
+
version = "0.52.6"
|
|
2345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2346
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
2347
|
+
|
|
2348
|
+
[[package]]
|
|
2349
|
+
name = "windows_i686_msvc"
|
|
2350
|
+
version = "0.52.6"
|
|
2351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2352
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
2353
|
+
|
|
2354
|
+
[[package]]
|
|
2355
|
+
name = "windows_x86_64_gnu"
|
|
2356
|
+
version = "0.52.6"
|
|
2357
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2358
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
2359
|
+
|
|
2360
|
+
[[package]]
|
|
2361
|
+
name = "windows_x86_64_gnullvm"
|
|
2362
|
+
version = "0.52.6"
|
|
2363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2364
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
2365
|
+
|
|
2366
|
+
[[package]]
|
|
2367
|
+
name = "windows_x86_64_msvc"
|
|
2368
|
+
version = "0.52.6"
|
|
2369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2370
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
2371
|
+
|
|
2372
|
+
[[package]]
|
|
2373
|
+
name = "wit-bindgen"
|
|
2374
|
+
version = "0.57.1"
|
|
2375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2376
|
+
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
2377
|
+
|
|
2378
|
+
[[package]]
|
|
2379
|
+
name = "wreq"
|
|
2380
|
+
version = "6.0.0-rc.29"
|
|
2381
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2382
|
+
checksum = "3f0eba5f5814a94e5f1a99156f187133464e525b66bdbc69a9627d46530af2e1"
|
|
2383
|
+
dependencies = [
|
|
2384
|
+
"btls",
|
|
2385
|
+
"btls-sys",
|
|
2386
|
+
"bytes",
|
|
2387
|
+
"cookie",
|
|
2388
|
+
"futures-util",
|
|
2389
|
+
"http",
|
|
2390
|
+
"http-body",
|
|
2391
|
+
"http-body-util",
|
|
2392
|
+
"http2",
|
|
2393
|
+
"httparse",
|
|
2394
|
+
"ipnet",
|
|
2395
|
+
"libc",
|
|
2396
|
+
"lru",
|
|
2397
|
+
"percent-encoding",
|
|
2398
|
+
"pin-project-lite",
|
|
2399
|
+
"serde",
|
|
2400
|
+
"serde_json",
|
|
2401
|
+
"socket2",
|
|
2402
|
+
"system-configuration",
|
|
2403
|
+
"tokio",
|
|
2404
|
+
"tokio-btls",
|
|
2405
|
+
"tokio-socks",
|
|
2406
|
+
"tower",
|
|
2407
|
+
"tower-http",
|
|
2408
|
+
"url",
|
|
2409
|
+
"webpki-root-certs",
|
|
2410
|
+
"windows-registry",
|
|
2411
|
+
"wreq-proto",
|
|
2412
|
+
"wreq-rt",
|
|
2413
|
+
]
|
|
2414
|
+
|
|
2415
|
+
[[package]]
|
|
2416
|
+
name = "wreq-proto"
|
|
2417
|
+
version = "0.2.5"
|
|
2418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2419
|
+
checksum = "a43942f024bb303f1042c9aa3c87fa1d9149f507c65db6e5220a11ccdb207387"
|
|
2420
|
+
dependencies = [
|
|
2421
|
+
"bytes",
|
|
2422
|
+
"futures-channel",
|
|
2423
|
+
"futures-util",
|
|
2424
|
+
"http",
|
|
2425
|
+
"http-body",
|
|
2426
|
+
"http2",
|
|
2427
|
+
"httparse",
|
|
2428
|
+
"pin-project-lite",
|
|
2429
|
+
"smallvec",
|
|
2430
|
+
"tokio",
|
|
2431
|
+
"tokio-util",
|
|
2432
|
+
"want",
|
|
2433
|
+
]
|
|
2434
|
+
|
|
2435
|
+
[[package]]
|
|
2436
|
+
name = "wreq-rt"
|
|
2437
|
+
version = "0.2.2-rc.4"
|
|
2438
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2439
|
+
checksum = "99e9bce67a3fa3dd3f1503f066d86661c9caf399a763d3bd184da7afaf886c8b"
|
|
2440
|
+
dependencies = [
|
|
2441
|
+
"pin-project-lite",
|
|
2442
|
+
"tokio",
|
|
2443
|
+
"wreq-proto",
|
|
2444
|
+
]
|
|
2445
|
+
|
|
2446
|
+
[[package]]
|
|
2447
|
+
name = "wreq-util"
|
|
2448
|
+
version = "3.0.0-rc.12"
|
|
2449
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2450
|
+
checksum = "baa5d2ab72139256916ca352a3d05c53d74e1dd360052eb5ba7691033c417c65"
|
|
2451
|
+
dependencies = [
|
|
2452
|
+
"brotli",
|
|
2453
|
+
"flate2",
|
|
2454
|
+
"typed-builder",
|
|
2455
|
+
"wreq",
|
|
2456
|
+
"zstd",
|
|
2457
|
+
]
|
|
2458
|
+
|
|
2459
|
+
[[package]]
|
|
2460
|
+
name = "writeable"
|
|
2461
|
+
version = "0.6.3"
|
|
2462
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2463
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
2464
|
+
|
|
2465
|
+
[[package]]
|
|
2466
|
+
name = "yoke"
|
|
2467
|
+
version = "0.8.3"
|
|
2468
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2469
|
+
checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
|
|
2470
|
+
dependencies = [
|
|
2471
|
+
"stable_deref_trait",
|
|
2472
|
+
"yoke-derive",
|
|
2473
|
+
"zerofrom",
|
|
2474
|
+
]
|
|
2475
|
+
|
|
2476
|
+
[[package]]
|
|
2477
|
+
name = "yoke-derive"
|
|
2478
|
+
version = "0.8.2"
|
|
2479
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2480
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
2481
|
+
dependencies = [
|
|
2482
|
+
"proc-macro2",
|
|
2483
|
+
"quote",
|
|
2484
|
+
"syn",
|
|
2485
|
+
"synstructure",
|
|
2486
|
+
]
|
|
2487
|
+
|
|
2488
|
+
[[package]]
|
|
2489
|
+
name = "zerocopy"
|
|
2490
|
+
version = "0.8.52"
|
|
2491
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2492
|
+
checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f"
|
|
2493
|
+
dependencies = [
|
|
2494
|
+
"zerocopy-derive",
|
|
2495
|
+
]
|
|
2496
|
+
|
|
2497
|
+
[[package]]
|
|
2498
|
+
name = "zerocopy-derive"
|
|
2499
|
+
version = "0.8.52"
|
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2501
|
+
checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930"
|
|
2502
|
+
dependencies = [
|
|
2503
|
+
"proc-macro2",
|
|
2504
|
+
"quote",
|
|
2505
|
+
"syn",
|
|
2506
|
+
]
|
|
2507
|
+
|
|
2508
|
+
[[package]]
|
|
2509
|
+
name = "zerofrom"
|
|
2510
|
+
version = "0.1.8"
|
|
2511
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2512
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
2513
|
+
dependencies = [
|
|
2514
|
+
"zerofrom-derive",
|
|
2515
|
+
]
|
|
2516
|
+
|
|
2517
|
+
[[package]]
|
|
2518
|
+
name = "zerofrom-derive"
|
|
2519
|
+
version = "0.1.7"
|
|
2520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2521
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
2522
|
+
dependencies = [
|
|
2523
|
+
"proc-macro2",
|
|
2524
|
+
"quote",
|
|
2525
|
+
"syn",
|
|
2526
|
+
"synstructure",
|
|
2527
|
+
]
|
|
2528
|
+
|
|
2529
|
+
[[package]]
|
|
2530
|
+
name = "zeroize"
|
|
2531
|
+
version = "1.9.0"
|
|
2532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2533
|
+
checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
|
|
2534
|
+
|
|
2535
|
+
[[package]]
|
|
2536
|
+
name = "zerotrie"
|
|
2537
|
+
version = "0.2.4"
|
|
2538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2539
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
2540
|
+
dependencies = [
|
|
2541
|
+
"displaydoc",
|
|
2542
|
+
"yoke",
|
|
2543
|
+
"zerofrom",
|
|
2544
|
+
]
|
|
2545
|
+
|
|
2546
|
+
[[package]]
|
|
2547
|
+
name = "zerovec"
|
|
2548
|
+
version = "0.11.6"
|
|
2549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2550
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
2551
|
+
dependencies = [
|
|
2552
|
+
"yoke",
|
|
2553
|
+
"zerofrom",
|
|
2554
|
+
"zerovec-derive",
|
|
2555
|
+
]
|
|
2556
|
+
|
|
2557
|
+
[[package]]
|
|
2558
|
+
name = "zerovec-derive"
|
|
2559
|
+
version = "0.11.3"
|
|
2560
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2561
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
2562
|
+
dependencies = [
|
|
2563
|
+
"proc-macro2",
|
|
2564
|
+
"quote",
|
|
2565
|
+
"syn",
|
|
2566
|
+
]
|
|
2567
|
+
|
|
2568
|
+
[[package]]
|
|
2569
|
+
name = "zip"
|
|
2570
|
+
version = "8.6.0"
|
|
2571
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2572
|
+
checksum = "2d04a6b5381502aa6087c94c669499eb1602eb9c5e8198e534de571f7154809b"
|
|
2573
|
+
dependencies = [
|
|
2574
|
+
"crc32fast",
|
|
2575
|
+
"flate2",
|
|
2576
|
+
"indexmap",
|
|
2577
|
+
"memchr",
|
|
2578
|
+
"typed-path",
|
|
2579
|
+
"zopfli",
|
|
2580
|
+
]
|
|
2581
|
+
|
|
2582
|
+
[[package]]
|
|
2583
|
+
name = "zlib-rs"
|
|
2584
|
+
version = "0.6.3"
|
|
2585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2586
|
+
checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
|
|
2587
|
+
|
|
2588
|
+
[[package]]
|
|
2589
|
+
name = "zmij"
|
|
2590
|
+
version = "1.0.21"
|
|
2591
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2592
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
2593
|
+
|
|
2594
|
+
[[package]]
|
|
2595
|
+
name = "zopfli"
|
|
2596
|
+
version = "0.8.3"
|
|
2597
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2598
|
+
checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
|
|
2599
|
+
dependencies = [
|
|
2600
|
+
"bumpalo",
|
|
2601
|
+
"crc32fast",
|
|
2602
|
+
"log",
|
|
2603
|
+
"simd-adler32",
|
|
2604
|
+
]
|
|
2605
|
+
|
|
2606
|
+
[[package]]
|
|
2607
|
+
name = "zstd"
|
|
2608
|
+
version = "0.13.3"
|
|
2609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2610
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
2611
|
+
dependencies = [
|
|
2612
|
+
"zstd-safe",
|
|
2613
|
+
]
|
|
2614
|
+
|
|
2615
|
+
[[package]]
|
|
2616
|
+
name = "zstd-safe"
|
|
2617
|
+
version = "7.2.4"
|
|
2618
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2619
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
2620
|
+
dependencies = [
|
|
2621
|
+
"zstd-sys",
|
|
2622
|
+
]
|
|
2623
|
+
|
|
2624
|
+
[[package]]
|
|
2625
|
+
name = "zstd-sys"
|
|
2626
|
+
version = "2.0.16+zstd.1.5.7"
|
|
2627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
2628
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
2629
|
+
dependencies = [
|
|
2630
|
+
"cc",
|
|
2631
|
+
"pkg-config",
|
|
2632
|
+
]
|