vore 0.2.0-arm64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Cargo.lock +2595 -0
- data/Cargo.toml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +41 -0
- data/exe/vore-spider +0 -0
- data/ext/vore/Cargo.toml +17 -0
- data/ext/vore/extconf.rb +6 -0
- data/ext/vore/src/lib.rs +13 -0
- data/ext/vore/src/page.rs +9 -0
- data/ext/vore/src/website.rs +40 -0
- data/lib/vore/configuration.rb +9 -0
- data/lib/vore/crawler.rb +72 -0
- data/lib/vore/handlers/content_extractor.rb +44 -0
- data/lib/vore/logger.rb +30 -0
- data/lib/vore/page.rb +6 -0
- data/lib/vore/page_data.rb +14 -0
- data/lib/vore/version.rb +5 -0
- data/lib/vore/website.rb +6 -0
- data/lib/vore.rb +22 -0
- metadata +80 -0
data/Cargo.lock
ADDED
@@ -0,0 +1,2595 @@
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
2
|
+
# It is not intended for manual editing.
|
3
|
+
version = 3
|
4
|
+
|
5
|
+
[[package]]
|
6
|
+
name = "addr2line"
|
7
|
+
version = "0.22.0"
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
9
|
+
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
|
10
|
+
dependencies = [
|
11
|
+
"gimli",
|
12
|
+
]
|
13
|
+
|
14
|
+
[[package]]
|
15
|
+
name = "adler"
|
16
|
+
version = "1.0.2"
|
17
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
18
|
+
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
19
|
+
|
20
|
+
[[package]]
|
21
|
+
name = "ahash"
|
22
|
+
version = "0.8.11"
|
23
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
24
|
+
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
|
25
|
+
dependencies = [
|
26
|
+
"cfg-if",
|
27
|
+
"getrandom",
|
28
|
+
"once_cell",
|
29
|
+
"version_check",
|
30
|
+
"zerocopy",
|
31
|
+
]
|
32
|
+
|
33
|
+
[[package]]
|
34
|
+
name = "aho-corasick"
|
35
|
+
version = "1.1.3"
|
36
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
37
|
+
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
|
38
|
+
dependencies = [
|
39
|
+
"memchr",
|
40
|
+
]
|
41
|
+
|
42
|
+
[[package]]
|
43
|
+
name = "alloc-no-stdlib"
|
44
|
+
version = "2.0.4"
|
45
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
46
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
47
|
+
|
48
|
+
[[package]]
|
49
|
+
name = "alloc-stdlib"
|
50
|
+
version = "0.2.2"
|
51
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
52
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
53
|
+
dependencies = [
|
54
|
+
"alloc-no-stdlib",
|
55
|
+
]
|
56
|
+
|
57
|
+
[[package]]
|
58
|
+
name = "allocator-api2"
|
59
|
+
version = "0.2.18"
|
60
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
61
|
+
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
|
62
|
+
|
63
|
+
[[package]]
|
64
|
+
name = "anstream"
|
65
|
+
version = "0.6.14"
|
66
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
67
|
+
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
|
68
|
+
dependencies = [
|
69
|
+
"anstyle",
|
70
|
+
"anstyle-parse",
|
71
|
+
"anstyle-query",
|
72
|
+
"anstyle-wincon",
|
73
|
+
"colorchoice",
|
74
|
+
"is_terminal_polyfill",
|
75
|
+
"utf8parse",
|
76
|
+
]
|
77
|
+
|
78
|
+
[[package]]
|
79
|
+
name = "anstyle"
|
80
|
+
version = "1.0.7"
|
81
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
82
|
+
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
|
83
|
+
|
84
|
+
[[package]]
|
85
|
+
name = "anstyle-parse"
|
86
|
+
version = "0.2.4"
|
87
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
88
|
+
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
|
89
|
+
dependencies = [
|
90
|
+
"utf8parse",
|
91
|
+
]
|
92
|
+
|
93
|
+
[[package]]
|
94
|
+
name = "anstyle-query"
|
95
|
+
version = "1.1.0"
|
96
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
97
|
+
checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391"
|
98
|
+
dependencies = [
|
99
|
+
"windows-sys 0.52.0",
|
100
|
+
]
|
101
|
+
|
102
|
+
[[package]]
|
103
|
+
name = "anstyle-wincon"
|
104
|
+
version = "3.0.3"
|
105
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
106
|
+
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
|
107
|
+
dependencies = [
|
108
|
+
"anstyle",
|
109
|
+
"windows-sys 0.52.0",
|
110
|
+
]
|
111
|
+
|
112
|
+
[[package]]
|
113
|
+
name = "async-compression"
|
114
|
+
version = "0.4.11"
|
115
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
116
|
+
checksum = "cd066d0b4ef8ecb03a55319dc13aa6910616d0f44008a045bb1835af830abff5"
|
117
|
+
dependencies = [
|
118
|
+
"brotli",
|
119
|
+
"flate2",
|
120
|
+
"futures-core",
|
121
|
+
"memchr",
|
122
|
+
"pin-project-lite",
|
123
|
+
"tokio",
|
124
|
+
"zstd",
|
125
|
+
"zstd-safe",
|
126
|
+
]
|
127
|
+
|
128
|
+
[[package]]
|
129
|
+
name = "atomic-waker"
|
130
|
+
version = "1.1.2"
|
131
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
132
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
133
|
+
|
134
|
+
[[package]]
|
135
|
+
name = "autocfg"
|
136
|
+
version = "1.3.0"
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
138
|
+
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
139
|
+
|
140
|
+
[[package]]
|
141
|
+
name = "backtrace"
|
142
|
+
version = "0.3.73"
|
143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
144
|
+
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
|
145
|
+
dependencies = [
|
146
|
+
"addr2line",
|
147
|
+
"cc",
|
148
|
+
"cfg-if",
|
149
|
+
"libc",
|
150
|
+
"miniz_oxide",
|
151
|
+
"object",
|
152
|
+
"rustc-demangle",
|
153
|
+
]
|
154
|
+
|
155
|
+
[[package]]
|
156
|
+
name = "base64"
|
157
|
+
version = "0.22.1"
|
158
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
159
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
160
|
+
|
161
|
+
[[package]]
|
162
|
+
name = "bindgen"
|
163
|
+
version = "0.69.4"
|
164
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
165
|
+
checksum = "a00dc851838a2120612785d195287475a3ac45514741da670b735818822129a0"
|
166
|
+
dependencies = [
|
167
|
+
"bitflags 2.6.0",
|
168
|
+
"cexpr",
|
169
|
+
"clang-sys",
|
170
|
+
"itertools",
|
171
|
+
"lazy_static",
|
172
|
+
"lazycell",
|
173
|
+
"proc-macro2",
|
174
|
+
"quote",
|
175
|
+
"regex",
|
176
|
+
"rustc-hash",
|
177
|
+
"shlex",
|
178
|
+
"syn 2.0.71",
|
179
|
+
]
|
180
|
+
|
181
|
+
[[package]]
|
182
|
+
name = "bitflags"
|
183
|
+
version = "1.3.2"
|
184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
185
|
+
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
186
|
+
|
187
|
+
[[package]]
|
188
|
+
name = "bitflags"
|
189
|
+
version = "2.6.0"
|
190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
191
|
+
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
|
192
|
+
|
193
|
+
[[package]]
|
194
|
+
name = "brotli"
|
195
|
+
version = "6.0.0"
|
196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
197
|
+
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
|
198
|
+
dependencies = [
|
199
|
+
"alloc-no-stdlib",
|
200
|
+
"alloc-stdlib",
|
201
|
+
"brotli-decompressor",
|
202
|
+
]
|
203
|
+
|
204
|
+
[[package]]
|
205
|
+
name = "brotli-decompressor"
|
206
|
+
version = "4.0.1"
|
207
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
208
|
+
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
|
209
|
+
dependencies = [
|
210
|
+
"alloc-no-stdlib",
|
211
|
+
"alloc-stdlib",
|
212
|
+
]
|
213
|
+
|
214
|
+
[[package]]
|
215
|
+
name = "bumpalo"
|
216
|
+
version = "3.16.0"
|
217
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
218
|
+
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
|
219
|
+
|
220
|
+
[[package]]
|
221
|
+
name = "byteorder"
|
222
|
+
version = "1.5.0"
|
223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
224
|
+
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
225
|
+
|
226
|
+
[[package]]
|
227
|
+
name = "bytes"
|
228
|
+
version = "1.6.1"
|
229
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
230
|
+
checksum = "a12916984aab3fa6e39d655a33e09c0071eb36d6ab3aea5c2d78551f1df6d952"
|
231
|
+
dependencies = [
|
232
|
+
"serde",
|
233
|
+
]
|
234
|
+
|
235
|
+
[[package]]
|
236
|
+
name = "case_insensitive_string"
|
237
|
+
version = "0.2.3"
|
238
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
239
|
+
checksum = "fc229be27b394115abdc89e09500d5030407734d21a143a833eae5f136821bcd"
|
240
|
+
dependencies = [
|
241
|
+
"compact_str",
|
242
|
+
"serde",
|
243
|
+
]
|
244
|
+
|
245
|
+
[[package]]
|
246
|
+
name = "castaway"
|
247
|
+
version = "0.2.3"
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
249
|
+
checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
|
250
|
+
dependencies = [
|
251
|
+
"rustversion",
|
252
|
+
]
|
253
|
+
|
254
|
+
[[package]]
|
255
|
+
name = "cc"
|
256
|
+
version = "1.1.5"
|
257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
258
|
+
checksum = "324c74f2155653c90b04f25b2a47a8a631360cb908f92a772695f430c7e31052"
|
259
|
+
dependencies = [
|
260
|
+
"jobserver",
|
261
|
+
"libc",
|
262
|
+
]
|
263
|
+
|
264
|
+
[[package]]
|
265
|
+
name = "cexpr"
|
266
|
+
version = "0.6.0"
|
267
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
268
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
269
|
+
dependencies = [
|
270
|
+
"nom",
|
271
|
+
]
|
272
|
+
|
273
|
+
[[package]]
|
274
|
+
name = "cfg-if"
|
275
|
+
version = "1.0.0"
|
276
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
277
|
+
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
278
|
+
|
279
|
+
[[package]]
|
280
|
+
name = "clang-sys"
|
281
|
+
version = "1.8.1"
|
282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
283
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
284
|
+
dependencies = [
|
285
|
+
"glob",
|
286
|
+
"libc",
|
287
|
+
"libloading",
|
288
|
+
]
|
289
|
+
|
290
|
+
[[package]]
|
291
|
+
name = "clap"
|
292
|
+
version = "4.5.9"
|
293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
294
|
+
checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462"
|
295
|
+
dependencies = [
|
296
|
+
"clap_builder",
|
297
|
+
"clap_derive",
|
298
|
+
]
|
299
|
+
|
300
|
+
[[package]]
|
301
|
+
name = "clap_builder"
|
302
|
+
version = "4.5.9"
|
303
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
304
|
+
checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942"
|
305
|
+
dependencies = [
|
306
|
+
"anstream",
|
307
|
+
"anstyle",
|
308
|
+
"clap_lex",
|
309
|
+
"strsim",
|
310
|
+
]
|
311
|
+
|
312
|
+
[[package]]
|
313
|
+
name = "clap_derive"
|
314
|
+
version = "4.5.8"
|
315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
316
|
+
checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085"
|
317
|
+
dependencies = [
|
318
|
+
"heck",
|
319
|
+
"proc-macro2",
|
320
|
+
"quote",
|
321
|
+
"syn 2.0.71",
|
322
|
+
]
|
323
|
+
|
324
|
+
[[package]]
|
325
|
+
name = "clap_lex"
|
326
|
+
version = "0.7.1"
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
328
|
+
checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70"
|
329
|
+
|
330
|
+
[[package]]
|
331
|
+
name = "colorchoice"
|
332
|
+
version = "1.0.1"
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
334
|
+
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
|
335
|
+
|
336
|
+
[[package]]
|
337
|
+
name = "compact_str"
|
338
|
+
version = "0.7.1"
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
340
|
+
checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f"
|
341
|
+
dependencies = [
|
342
|
+
"castaway",
|
343
|
+
"cfg-if",
|
344
|
+
"itoa",
|
345
|
+
"ryu",
|
346
|
+
"static_assertions",
|
347
|
+
]
|
348
|
+
|
349
|
+
[[package]]
|
350
|
+
name = "cookie"
|
351
|
+
version = "0.18.1"
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
353
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
354
|
+
dependencies = [
|
355
|
+
"percent-encoding",
|
356
|
+
"time",
|
357
|
+
"version_check",
|
358
|
+
]
|
359
|
+
|
360
|
+
[[package]]
|
361
|
+
name = "cookie_store"
|
362
|
+
version = "0.21.0"
|
363
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
364
|
+
checksum = "4934e6b7e8419148b6ef56950d277af8561060b56afd59e2aadf98b59fce6baa"
|
365
|
+
dependencies = [
|
366
|
+
"cookie",
|
367
|
+
"idna 0.5.0",
|
368
|
+
"log",
|
369
|
+
"publicsuffix",
|
370
|
+
"serde",
|
371
|
+
"serde_derive",
|
372
|
+
"serde_json",
|
373
|
+
"time",
|
374
|
+
"url",
|
375
|
+
]
|
376
|
+
|
377
|
+
[[package]]
|
378
|
+
name = "core-foundation"
|
379
|
+
version = "0.9.4"
|
380
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
381
|
+
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
382
|
+
dependencies = [
|
383
|
+
"core-foundation-sys",
|
384
|
+
"libc",
|
385
|
+
]
|
386
|
+
|
387
|
+
[[package]]
|
388
|
+
name = "core-foundation-sys"
|
389
|
+
version = "0.8.6"
|
390
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
391
|
+
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
392
|
+
|
393
|
+
[[package]]
|
394
|
+
name = "crc32fast"
|
395
|
+
version = "1.4.2"
|
396
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
397
|
+
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
398
|
+
dependencies = [
|
399
|
+
"cfg-if",
|
400
|
+
]
|
401
|
+
|
402
|
+
[[package]]
|
403
|
+
name = "cssparser"
|
404
|
+
version = "0.31.2"
|
405
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
406
|
+
checksum = "5b3df4f93e5fbbe73ec01ec8d3f68bba73107993a5b1e7519273c32db9b0d5be"
|
407
|
+
dependencies = [
|
408
|
+
"cssparser-macros",
|
409
|
+
"dtoa-short",
|
410
|
+
"itoa",
|
411
|
+
"phf 0.11.2",
|
412
|
+
"smallvec",
|
413
|
+
]
|
414
|
+
|
415
|
+
[[package]]
|
416
|
+
name = "cssparser-macros"
|
417
|
+
version = "0.6.1"
|
418
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
419
|
+
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
420
|
+
dependencies = [
|
421
|
+
"quote",
|
422
|
+
"syn 2.0.71",
|
423
|
+
]
|
424
|
+
|
425
|
+
[[package]]
|
426
|
+
name = "deranged"
|
427
|
+
version = "0.3.11"
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
429
|
+
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
430
|
+
dependencies = [
|
431
|
+
"powerfmt",
|
432
|
+
]
|
433
|
+
|
434
|
+
[[package]]
|
435
|
+
name = "derive_more"
|
436
|
+
version = "0.99.18"
|
437
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
438
|
+
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
|
439
|
+
dependencies = [
|
440
|
+
"proc-macro2",
|
441
|
+
"quote",
|
442
|
+
"syn 2.0.71",
|
443
|
+
]
|
444
|
+
|
445
|
+
[[package]]
|
446
|
+
name = "dtoa"
|
447
|
+
version = "1.0.9"
|
448
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
449
|
+
checksum = "dcbb2bf8e87535c23f7a8a321e364ce21462d0ff10cb6407820e8e96dfff6653"
|
450
|
+
|
451
|
+
[[package]]
|
452
|
+
name = "dtoa-short"
|
453
|
+
version = "0.3.5"
|
454
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
455
|
+
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
456
|
+
dependencies = [
|
457
|
+
"dtoa",
|
458
|
+
]
|
459
|
+
|
460
|
+
[[package]]
|
461
|
+
name = "ego-tree"
|
462
|
+
version = "0.6.2"
|
463
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
464
|
+
checksum = "3a68a4904193147e0a8dec3314640e6db742afd5f6e634f428a6af230d9b3591"
|
465
|
+
|
466
|
+
[[package]]
|
467
|
+
name = "either"
|
468
|
+
version = "1.13.0"
|
469
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
470
|
+
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
|
471
|
+
|
472
|
+
[[package]]
|
473
|
+
name = "encoding_rs"
|
474
|
+
version = "0.8.34"
|
475
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
476
|
+
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
|
477
|
+
dependencies = [
|
478
|
+
"cfg-if",
|
479
|
+
]
|
480
|
+
|
481
|
+
[[package]]
|
482
|
+
name = "env_filter"
|
483
|
+
version = "0.1.0"
|
484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
485
|
+
checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
|
486
|
+
dependencies = [
|
487
|
+
"log",
|
488
|
+
"regex",
|
489
|
+
]
|
490
|
+
|
491
|
+
[[package]]
|
492
|
+
name = "env_logger"
|
493
|
+
version = "0.11.3"
|
494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
495
|
+
checksum = "38b35839ba51819680ba087cd351788c9a3c476841207e0b8cee0b04722343b9"
|
496
|
+
dependencies = [
|
497
|
+
"anstream",
|
498
|
+
"anstyle",
|
499
|
+
"env_filter",
|
500
|
+
"humantime",
|
501
|
+
"log",
|
502
|
+
]
|
503
|
+
|
504
|
+
[[package]]
|
505
|
+
name = "equivalent"
|
506
|
+
version = "1.0.1"
|
507
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
508
|
+
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
509
|
+
|
510
|
+
[[package]]
|
511
|
+
name = "errno"
|
512
|
+
version = "0.3.9"
|
513
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
514
|
+
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
|
515
|
+
dependencies = [
|
516
|
+
"libc",
|
517
|
+
"windows-sys 0.52.0",
|
518
|
+
]
|
519
|
+
|
520
|
+
[[package]]
|
521
|
+
name = "failure_derive"
|
522
|
+
version = "0.1.8"
|
523
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
524
|
+
checksum = "aa4da3c766cd7a0db8242e326e9e4e081edd567072893ed320008189715366a4"
|
525
|
+
dependencies = [
|
526
|
+
"proc-macro2",
|
527
|
+
"quote",
|
528
|
+
"syn 1.0.109",
|
529
|
+
"synstructure",
|
530
|
+
]
|
531
|
+
|
532
|
+
[[package]]
|
533
|
+
name = "fast_html5ever"
|
534
|
+
version = "0.26.6"
|
535
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
536
|
+
checksum = "edb09004fadff4b73e882edeb42527d3789009ca821467169168867eeb71681d"
|
537
|
+
dependencies = [
|
538
|
+
"fast_markup5ever",
|
539
|
+
"log",
|
540
|
+
"mac",
|
541
|
+
"proc-macro2",
|
542
|
+
"quote",
|
543
|
+
"syn 1.0.109",
|
544
|
+
]
|
545
|
+
|
546
|
+
[[package]]
|
547
|
+
name = "fast_markup5ever"
|
548
|
+
version = "0.11.1"
|
549
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
550
|
+
checksum = "f899f3b7e9bf005393dd90318d7e721e0ecd230073b675a6737ed502ecff557c"
|
551
|
+
dependencies = [
|
552
|
+
"log",
|
553
|
+
"phf 0.11.2",
|
554
|
+
"phf_codegen 0.11.2",
|
555
|
+
"string_cache",
|
556
|
+
"string_cache_codegen",
|
557
|
+
"tendril",
|
558
|
+
]
|
559
|
+
|
560
|
+
[[package]]
|
561
|
+
name = "fastrand"
|
562
|
+
version = "2.1.0"
|
563
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
564
|
+
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
|
565
|
+
|
566
|
+
[[package]]
|
567
|
+
name = "flate2"
|
568
|
+
version = "1.0.30"
|
569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
570
|
+
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
|
571
|
+
dependencies = [
|
572
|
+
"crc32fast",
|
573
|
+
"miniz_oxide",
|
574
|
+
]
|
575
|
+
|
576
|
+
[[package]]
|
577
|
+
name = "fnv"
|
578
|
+
version = "1.0.7"
|
579
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
580
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
581
|
+
|
582
|
+
[[package]]
|
583
|
+
name = "foreign-types"
|
584
|
+
version = "0.3.2"
|
585
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
586
|
+
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
587
|
+
dependencies = [
|
588
|
+
"foreign-types-shared",
|
589
|
+
]
|
590
|
+
|
591
|
+
[[package]]
|
592
|
+
name = "foreign-types-shared"
|
593
|
+
version = "0.1.1"
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
595
|
+
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
596
|
+
|
597
|
+
[[package]]
|
598
|
+
name = "form_urlencoded"
|
599
|
+
version = "1.2.1"
|
600
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
601
|
+
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
602
|
+
dependencies = [
|
603
|
+
"percent-encoding",
|
604
|
+
]
|
605
|
+
|
606
|
+
[[package]]
|
607
|
+
name = "futf"
|
608
|
+
version = "0.1.5"
|
609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
610
|
+
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
611
|
+
dependencies = [
|
612
|
+
"mac",
|
613
|
+
"new_debug_unreachable",
|
614
|
+
]
|
615
|
+
|
616
|
+
[[package]]
|
617
|
+
name = "futures-channel"
|
618
|
+
version = "0.3.30"
|
619
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
620
|
+
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
621
|
+
dependencies = [
|
622
|
+
"futures-core",
|
623
|
+
]
|
624
|
+
|
625
|
+
[[package]]
|
626
|
+
name = "futures-core"
|
627
|
+
version = "0.3.30"
|
628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
629
|
+
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
630
|
+
|
631
|
+
[[package]]
|
632
|
+
name = "futures-io"
|
633
|
+
version = "0.3.30"
|
634
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
635
|
+
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
636
|
+
|
637
|
+
[[package]]
|
638
|
+
name = "futures-macro"
|
639
|
+
version = "0.3.30"
|
640
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
641
|
+
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
642
|
+
dependencies = [
|
643
|
+
"proc-macro2",
|
644
|
+
"quote",
|
645
|
+
"syn 2.0.71",
|
646
|
+
]
|
647
|
+
|
648
|
+
[[package]]
|
649
|
+
name = "futures-sink"
|
650
|
+
version = "0.3.30"
|
651
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
652
|
+
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
653
|
+
|
654
|
+
[[package]]
|
655
|
+
name = "futures-task"
|
656
|
+
version = "0.3.30"
|
657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
658
|
+
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
659
|
+
|
660
|
+
[[package]]
|
661
|
+
name = "futures-util"
|
662
|
+
version = "0.3.30"
|
663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
664
|
+
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
665
|
+
dependencies = [
|
666
|
+
"futures-core",
|
667
|
+
"futures-io",
|
668
|
+
"futures-macro",
|
669
|
+
"futures-sink",
|
670
|
+
"futures-task",
|
671
|
+
"memchr",
|
672
|
+
"pin-project-lite",
|
673
|
+
"pin-utils",
|
674
|
+
"slab",
|
675
|
+
]
|
676
|
+
|
677
|
+
[[package]]
|
678
|
+
name = "fxhash"
|
679
|
+
version = "0.2.1"
|
680
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
681
|
+
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
|
682
|
+
dependencies = [
|
683
|
+
"byteorder",
|
684
|
+
]
|
685
|
+
|
686
|
+
[[package]]
|
687
|
+
name = "getrandom"
|
688
|
+
version = "0.2.15"
|
689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
690
|
+
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
|
691
|
+
dependencies = [
|
692
|
+
"cfg-if",
|
693
|
+
"libc",
|
694
|
+
"wasi",
|
695
|
+
]
|
696
|
+
|
697
|
+
[[package]]
|
698
|
+
name = "gimli"
|
699
|
+
version = "0.29.0"
|
700
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
701
|
+
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
|
702
|
+
|
703
|
+
[[package]]
|
704
|
+
name = "glob"
|
705
|
+
version = "0.3.1"
|
706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
707
|
+
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
708
|
+
|
709
|
+
[[package]]
|
710
|
+
name = "h2"
|
711
|
+
version = "0.4.5"
|
712
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
713
|
+
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
|
714
|
+
dependencies = [
|
715
|
+
"atomic-waker",
|
716
|
+
"bytes",
|
717
|
+
"fnv",
|
718
|
+
"futures-core",
|
719
|
+
"futures-sink",
|
720
|
+
"http",
|
721
|
+
"indexmap",
|
722
|
+
"slab",
|
723
|
+
"tokio",
|
724
|
+
"tokio-util",
|
725
|
+
"tracing",
|
726
|
+
]
|
727
|
+
|
728
|
+
[[package]]
|
729
|
+
name = "hashbrown"
|
730
|
+
version = "0.14.5"
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
732
|
+
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
|
733
|
+
dependencies = [
|
734
|
+
"ahash",
|
735
|
+
"allocator-api2",
|
736
|
+
]
|
737
|
+
|
738
|
+
[[package]]
|
739
|
+
name = "heck"
|
740
|
+
version = "0.5.0"
|
741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
742
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
743
|
+
|
744
|
+
[[package]]
|
745
|
+
name = "hermit-abi"
|
746
|
+
version = "0.3.9"
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
748
|
+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
|
749
|
+
|
750
|
+
[[package]]
|
751
|
+
name = "http"
|
752
|
+
version = "1.1.0"
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
754
|
+
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
|
755
|
+
dependencies = [
|
756
|
+
"bytes",
|
757
|
+
"fnv",
|
758
|
+
"itoa",
|
759
|
+
]
|
760
|
+
|
761
|
+
[[package]]
|
762
|
+
name = "http-body"
|
763
|
+
version = "1.0.1"
|
764
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
765
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
766
|
+
dependencies = [
|
767
|
+
"bytes",
|
768
|
+
"http",
|
769
|
+
]
|
770
|
+
|
771
|
+
[[package]]
|
772
|
+
name = "http-body-util"
|
773
|
+
version = "0.1.2"
|
774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
775
|
+
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
|
776
|
+
dependencies = [
|
777
|
+
"bytes",
|
778
|
+
"futures-util",
|
779
|
+
"http",
|
780
|
+
"http-body",
|
781
|
+
"pin-project-lite",
|
782
|
+
]
|
783
|
+
|
784
|
+
[[package]]
|
785
|
+
name = "httparse"
|
786
|
+
version = "1.9.4"
|
787
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
788
|
+
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
|
789
|
+
|
790
|
+
[[package]]
|
791
|
+
name = "humantime"
|
792
|
+
version = "2.1.0"
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
794
|
+
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
795
|
+
|
796
|
+
[[package]]
|
797
|
+
name = "hyper"
|
798
|
+
version = "1.4.1"
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
800
|
+
checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
|
801
|
+
dependencies = [
|
802
|
+
"bytes",
|
803
|
+
"futures-channel",
|
804
|
+
"futures-util",
|
805
|
+
"h2",
|
806
|
+
"http",
|
807
|
+
"http-body",
|
808
|
+
"httparse",
|
809
|
+
"itoa",
|
810
|
+
"pin-project-lite",
|
811
|
+
"smallvec",
|
812
|
+
"tokio",
|
813
|
+
"want",
|
814
|
+
]
|
815
|
+
|
816
|
+
[[package]]
|
817
|
+
name = "hyper-rustls"
|
818
|
+
version = "0.27.2"
|
819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
820
|
+
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
|
821
|
+
dependencies = [
|
822
|
+
"futures-util",
|
823
|
+
"http",
|
824
|
+
"hyper",
|
825
|
+
"hyper-util",
|
826
|
+
"rustls",
|
827
|
+
"rustls-pki-types",
|
828
|
+
"tokio",
|
829
|
+
"tokio-rustls",
|
830
|
+
"tower-service",
|
831
|
+
]
|
832
|
+
|
833
|
+
[[package]]
|
834
|
+
name = "hyper-tls"
|
835
|
+
version = "0.6.0"
|
836
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
837
|
+
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
|
838
|
+
dependencies = [
|
839
|
+
"bytes",
|
840
|
+
"http-body-util",
|
841
|
+
"hyper",
|
842
|
+
"hyper-util",
|
843
|
+
"native-tls",
|
844
|
+
"tokio",
|
845
|
+
"tokio-native-tls",
|
846
|
+
"tower-service",
|
847
|
+
]
|
848
|
+
|
849
|
+
[[package]]
|
850
|
+
name = "hyper-util"
|
851
|
+
version = "0.1.6"
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
853
|
+
checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956"
|
854
|
+
dependencies = [
|
855
|
+
"bytes",
|
856
|
+
"futures-channel",
|
857
|
+
"futures-util",
|
858
|
+
"http",
|
859
|
+
"http-body",
|
860
|
+
"hyper",
|
861
|
+
"pin-project-lite",
|
862
|
+
"socket2",
|
863
|
+
"tokio",
|
864
|
+
"tower",
|
865
|
+
"tower-service",
|
866
|
+
"tracing",
|
867
|
+
]
|
868
|
+
|
869
|
+
[[package]]
|
870
|
+
name = "idna"
|
871
|
+
version = "0.3.0"
|
872
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
873
|
+
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
874
|
+
dependencies = [
|
875
|
+
"unicode-bidi",
|
876
|
+
"unicode-normalization",
|
877
|
+
]
|
878
|
+
|
879
|
+
[[package]]
|
880
|
+
name = "idna"
|
881
|
+
version = "0.5.0"
|
882
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
883
|
+
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
884
|
+
dependencies = [
|
885
|
+
"unicode-bidi",
|
886
|
+
"unicode-normalization",
|
887
|
+
]
|
888
|
+
|
889
|
+
[[package]]
|
890
|
+
name = "indexmap"
|
891
|
+
version = "2.2.6"
|
892
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
893
|
+
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
|
894
|
+
dependencies = [
|
895
|
+
"equivalent",
|
896
|
+
"hashbrown",
|
897
|
+
]
|
898
|
+
|
899
|
+
[[package]]
|
900
|
+
name = "ipnet"
|
901
|
+
version = "2.9.0"
|
902
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
903
|
+
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
904
|
+
|
905
|
+
[[package]]
|
906
|
+
name = "is_terminal_polyfill"
|
907
|
+
version = "1.70.0"
|
908
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
909
|
+
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
|
910
|
+
|
911
|
+
[[package]]
|
912
|
+
name = "itertools"
|
913
|
+
version = "0.12.1"
|
914
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
915
|
+
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
|
916
|
+
dependencies = [
|
917
|
+
"either",
|
918
|
+
]
|
919
|
+
|
920
|
+
[[package]]
|
921
|
+
name = "itoa"
|
922
|
+
version = "1.0.11"
|
923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
924
|
+
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
|
925
|
+
|
926
|
+
[[package]]
|
927
|
+
name = "jobserver"
|
928
|
+
version = "0.1.31"
|
929
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
930
|
+
checksum = "d2b099aaa34a9751c5bf0878add70444e1ed2dd73f347be99003d4577277de6e"
|
931
|
+
dependencies = [
|
932
|
+
"libc",
|
933
|
+
]
|
934
|
+
|
935
|
+
[[package]]
|
936
|
+
name = "js-sys"
|
937
|
+
version = "0.3.69"
|
938
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
939
|
+
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
|
940
|
+
dependencies = [
|
941
|
+
"wasm-bindgen",
|
942
|
+
]
|
943
|
+
|
944
|
+
[[package]]
|
945
|
+
name = "lazy_static"
|
946
|
+
version = "1.5.0"
|
947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
948
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
949
|
+
|
950
|
+
[[package]]
|
951
|
+
name = "lazycell"
|
952
|
+
version = "1.3.0"
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
954
|
+
checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
|
955
|
+
|
956
|
+
[[package]]
|
957
|
+
name = "libc"
|
958
|
+
version = "0.2.155"
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
960
|
+
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
|
961
|
+
|
962
|
+
[[package]]
|
963
|
+
name = "libloading"
|
964
|
+
version = "0.8.4"
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
966
|
+
checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d"
|
967
|
+
dependencies = [
|
968
|
+
"cfg-if",
|
969
|
+
"windows-targets 0.52.6",
|
970
|
+
]
|
971
|
+
|
972
|
+
[[package]]
|
973
|
+
name = "linux-raw-sys"
|
974
|
+
version = "0.4.14"
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
976
|
+
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
|
977
|
+
|
978
|
+
[[package]]
|
979
|
+
name = "lock_api"
|
980
|
+
version = "0.4.12"
|
981
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
982
|
+
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
983
|
+
dependencies = [
|
984
|
+
"autocfg",
|
985
|
+
"scopeguard",
|
986
|
+
]
|
987
|
+
|
988
|
+
[[package]]
|
989
|
+
name = "log"
|
990
|
+
version = "0.4.22"
|
991
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
992
|
+
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
993
|
+
|
994
|
+
[[package]]
|
995
|
+
name = "mac"
|
996
|
+
version = "0.1.1"
|
997
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
998
|
+
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
999
|
+
|
1000
|
+
[[package]]
|
1001
|
+
name = "magnus"
|
1002
|
+
version = "0.7.1"
|
1003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1004
|
+
checksum = "3d87ae53030f3a22e83879e666cb94e58a7bdf31706878a0ba48752994146dab"
|
1005
|
+
dependencies = [
|
1006
|
+
"magnus-macros",
|
1007
|
+
"rb-sys",
|
1008
|
+
"rb-sys-env",
|
1009
|
+
"seq-macro",
|
1010
|
+
]
|
1011
|
+
|
1012
|
+
[[package]]
|
1013
|
+
name = "magnus-macros"
|
1014
|
+
version = "0.6.0"
|
1015
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1016
|
+
checksum = "5968c820e2960565f647819f5928a42d6e874551cab9d88d75e3e0660d7f71e3"
|
1017
|
+
dependencies = [
|
1018
|
+
"proc-macro2",
|
1019
|
+
"quote",
|
1020
|
+
"syn 2.0.71",
|
1021
|
+
]
|
1022
|
+
|
1023
|
+
[[package]]
|
1024
|
+
name = "memchr"
|
1025
|
+
version = "2.7.4"
|
1026
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1027
|
+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
1028
|
+
|
1029
|
+
[[package]]
|
1030
|
+
name = "mime"
|
1031
|
+
version = "0.3.17"
|
1032
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1033
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
1034
|
+
|
1035
|
+
[[package]]
|
1036
|
+
name = "minimal-lexical"
|
1037
|
+
version = "0.2.1"
|
1038
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1039
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
1040
|
+
|
1041
|
+
[[package]]
|
1042
|
+
name = "miniz_oxide"
|
1043
|
+
version = "0.7.4"
|
1044
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1045
|
+
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
|
1046
|
+
dependencies = [
|
1047
|
+
"adler",
|
1048
|
+
]
|
1049
|
+
|
1050
|
+
[[package]]
|
1051
|
+
name = "mio"
|
1052
|
+
version = "0.8.11"
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1054
|
+
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
|
1055
|
+
dependencies = [
|
1056
|
+
"libc",
|
1057
|
+
"wasi",
|
1058
|
+
"windows-sys 0.48.0",
|
1059
|
+
]
|
1060
|
+
|
1061
|
+
[[package]]
|
1062
|
+
name = "native-tls"
|
1063
|
+
version = "0.2.12"
|
1064
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1065
|
+
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
|
1066
|
+
dependencies = [
|
1067
|
+
"libc",
|
1068
|
+
"log",
|
1069
|
+
"openssl",
|
1070
|
+
"openssl-probe",
|
1071
|
+
"openssl-sys",
|
1072
|
+
"schannel",
|
1073
|
+
"security-framework",
|
1074
|
+
"security-framework-sys",
|
1075
|
+
"tempfile",
|
1076
|
+
]
|
1077
|
+
|
1078
|
+
[[package]]
|
1079
|
+
name = "new_debug_unreachable"
|
1080
|
+
version = "1.0.6"
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1082
|
+
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
1083
|
+
|
1084
|
+
[[package]]
|
1085
|
+
name = "nom"
|
1086
|
+
version = "7.1.3"
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1088
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
1089
|
+
dependencies = [
|
1090
|
+
"memchr",
|
1091
|
+
"minimal-lexical",
|
1092
|
+
]
|
1093
|
+
|
1094
|
+
[[package]]
|
1095
|
+
name = "num-conv"
|
1096
|
+
version = "0.1.0"
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1098
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
1099
|
+
|
1100
|
+
[[package]]
|
1101
|
+
name = "num_cpus"
|
1102
|
+
version = "1.16.0"
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1104
|
+
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
1105
|
+
dependencies = [
|
1106
|
+
"hermit-abi",
|
1107
|
+
"libc",
|
1108
|
+
]
|
1109
|
+
|
1110
|
+
[[package]]
|
1111
|
+
name = "object"
|
1112
|
+
version = "0.36.1"
|
1113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1114
|
+
checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce"
|
1115
|
+
dependencies = [
|
1116
|
+
"memchr",
|
1117
|
+
]
|
1118
|
+
|
1119
|
+
[[package]]
|
1120
|
+
name = "once_cell"
|
1121
|
+
version = "1.19.0"
|
1122
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1123
|
+
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
1124
|
+
|
1125
|
+
[[package]]
|
1126
|
+
name = "openssl"
|
1127
|
+
version = "0.10.64"
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1129
|
+
checksum = "95a0481286a310808298130d22dd1fef0fa571e05a8f44ec801801e84b216b1f"
|
1130
|
+
dependencies = [
|
1131
|
+
"bitflags 2.6.0",
|
1132
|
+
"cfg-if",
|
1133
|
+
"foreign-types",
|
1134
|
+
"libc",
|
1135
|
+
"once_cell",
|
1136
|
+
"openssl-macros",
|
1137
|
+
"openssl-sys",
|
1138
|
+
]
|
1139
|
+
|
1140
|
+
[[package]]
|
1141
|
+
name = "openssl-macros"
|
1142
|
+
version = "0.1.1"
|
1143
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1144
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
1145
|
+
dependencies = [
|
1146
|
+
"proc-macro2",
|
1147
|
+
"quote",
|
1148
|
+
"syn 2.0.71",
|
1149
|
+
]
|
1150
|
+
|
1151
|
+
[[package]]
|
1152
|
+
name = "openssl-probe"
|
1153
|
+
version = "0.1.5"
|
1154
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1155
|
+
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
1156
|
+
|
1157
|
+
[[package]]
|
1158
|
+
name = "openssl-sys"
|
1159
|
+
version = "0.9.102"
|
1160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1161
|
+
checksum = "c597637d56fbc83893a35eb0dd04b2b8e7a50c91e64e9493e398b5df4fb45fa2"
|
1162
|
+
dependencies = [
|
1163
|
+
"cc",
|
1164
|
+
"libc",
|
1165
|
+
"pkg-config",
|
1166
|
+
"vcpkg",
|
1167
|
+
]
|
1168
|
+
|
1169
|
+
[[package]]
|
1170
|
+
name = "parking_lot"
|
1171
|
+
version = "0.12.3"
|
1172
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1173
|
+
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
|
1174
|
+
dependencies = [
|
1175
|
+
"lock_api",
|
1176
|
+
"parking_lot_core",
|
1177
|
+
]
|
1178
|
+
|
1179
|
+
[[package]]
|
1180
|
+
name = "parking_lot_core"
|
1181
|
+
version = "0.9.10"
|
1182
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1183
|
+
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
|
1184
|
+
dependencies = [
|
1185
|
+
"cfg-if",
|
1186
|
+
"libc",
|
1187
|
+
"redox_syscall",
|
1188
|
+
"smallvec",
|
1189
|
+
"windows-targets 0.52.6",
|
1190
|
+
]
|
1191
|
+
|
1192
|
+
[[package]]
|
1193
|
+
name = "percent-encoding"
|
1194
|
+
version = "2.3.1"
|
1195
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1196
|
+
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
1197
|
+
|
1198
|
+
[[package]]
|
1199
|
+
name = "phf"
|
1200
|
+
version = "0.10.1"
|
1201
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1202
|
+
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
1203
|
+
dependencies = [
|
1204
|
+
"phf_shared 0.10.0",
|
1205
|
+
]
|
1206
|
+
|
1207
|
+
[[package]]
|
1208
|
+
name = "phf"
|
1209
|
+
version = "0.11.2"
|
1210
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1211
|
+
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
|
1212
|
+
dependencies = [
|
1213
|
+
"phf_macros",
|
1214
|
+
"phf_shared 0.11.2",
|
1215
|
+
]
|
1216
|
+
|
1217
|
+
[[package]]
|
1218
|
+
name = "phf_codegen"
|
1219
|
+
version = "0.10.0"
|
1220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1221
|
+
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
|
1222
|
+
dependencies = [
|
1223
|
+
"phf_generator 0.10.0",
|
1224
|
+
"phf_shared 0.10.0",
|
1225
|
+
]
|
1226
|
+
|
1227
|
+
[[package]]
|
1228
|
+
name = "phf_codegen"
|
1229
|
+
version = "0.11.2"
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1231
|
+
checksum = "e8d39688d359e6b34654d328e262234662d16cc0f60ec8dcbe5e718709342a5a"
|
1232
|
+
dependencies = [
|
1233
|
+
"phf_generator 0.11.2",
|
1234
|
+
"phf_shared 0.11.2",
|
1235
|
+
]
|
1236
|
+
|
1237
|
+
[[package]]
|
1238
|
+
name = "phf_generator"
|
1239
|
+
version = "0.10.0"
|
1240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1241
|
+
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
|
1242
|
+
dependencies = [
|
1243
|
+
"phf_shared 0.10.0",
|
1244
|
+
"rand",
|
1245
|
+
]
|
1246
|
+
|
1247
|
+
[[package]]
|
1248
|
+
name = "phf_generator"
|
1249
|
+
version = "0.11.2"
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1251
|
+
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
|
1252
|
+
dependencies = [
|
1253
|
+
"phf_shared 0.11.2",
|
1254
|
+
"rand",
|
1255
|
+
]
|
1256
|
+
|
1257
|
+
[[package]]
|
1258
|
+
name = "phf_macros"
|
1259
|
+
version = "0.11.2"
|
1260
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1261
|
+
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
|
1262
|
+
dependencies = [
|
1263
|
+
"phf_generator 0.11.2",
|
1264
|
+
"phf_shared 0.11.2",
|
1265
|
+
"proc-macro2",
|
1266
|
+
"quote",
|
1267
|
+
"syn 2.0.71",
|
1268
|
+
]
|
1269
|
+
|
1270
|
+
[[package]]
|
1271
|
+
name = "phf_shared"
|
1272
|
+
version = "0.10.0"
|
1273
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1274
|
+
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
1275
|
+
dependencies = [
|
1276
|
+
"siphasher",
|
1277
|
+
]
|
1278
|
+
|
1279
|
+
[[package]]
|
1280
|
+
name = "phf_shared"
|
1281
|
+
version = "0.11.2"
|
1282
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1283
|
+
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
|
1284
|
+
dependencies = [
|
1285
|
+
"siphasher",
|
1286
|
+
]
|
1287
|
+
|
1288
|
+
[[package]]
|
1289
|
+
name = "pin-project"
|
1290
|
+
version = "1.1.5"
|
1291
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1292
|
+
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
|
1293
|
+
dependencies = [
|
1294
|
+
"pin-project-internal",
|
1295
|
+
]
|
1296
|
+
|
1297
|
+
[[package]]
|
1298
|
+
name = "pin-project-internal"
|
1299
|
+
version = "1.1.5"
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1301
|
+
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
|
1302
|
+
dependencies = [
|
1303
|
+
"proc-macro2",
|
1304
|
+
"quote",
|
1305
|
+
"syn 2.0.71",
|
1306
|
+
]
|
1307
|
+
|
1308
|
+
[[package]]
|
1309
|
+
name = "pin-project-lite"
|
1310
|
+
version = "0.2.14"
|
1311
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1312
|
+
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
|
1313
|
+
|
1314
|
+
[[package]]
|
1315
|
+
name = "pin-utils"
|
1316
|
+
version = "0.1.0"
|
1317
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1318
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
1319
|
+
|
1320
|
+
[[package]]
|
1321
|
+
name = "pkg-config"
|
1322
|
+
version = "0.3.30"
|
1323
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1324
|
+
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
|
1325
|
+
|
1326
|
+
[[package]]
|
1327
|
+
name = "powerfmt"
|
1328
|
+
version = "0.2.0"
|
1329
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1330
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
1331
|
+
|
1332
|
+
[[package]]
|
1333
|
+
name = "ppv-lite86"
|
1334
|
+
version = "0.2.17"
|
1335
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1336
|
+
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
1337
|
+
|
1338
|
+
[[package]]
|
1339
|
+
name = "precomputed-hash"
|
1340
|
+
version = "0.1.1"
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1342
|
+
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
1343
|
+
|
1344
|
+
[[package]]
|
1345
|
+
name = "proc-macro2"
|
1346
|
+
version = "1.0.86"
|
1347
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1348
|
+
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
|
1349
|
+
dependencies = [
|
1350
|
+
"unicode-ident",
|
1351
|
+
]
|
1352
|
+
|
1353
|
+
[[package]]
|
1354
|
+
name = "psl-types"
|
1355
|
+
version = "2.0.11"
|
1356
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1357
|
+
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
1358
|
+
|
1359
|
+
[[package]]
|
1360
|
+
name = "publicsuffix"
|
1361
|
+
version = "2.2.3"
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1363
|
+
checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457"
|
1364
|
+
dependencies = [
|
1365
|
+
"idna 0.3.0",
|
1366
|
+
"psl-types",
|
1367
|
+
]
|
1368
|
+
|
1369
|
+
[[package]]
|
1370
|
+
name = "quick-xml"
|
1371
|
+
version = "0.31.0"
|
1372
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1373
|
+
checksum = "1004a344b30a54e2ee58d66a71b32d2db2feb0a31f9a2d302bf0536f15de2a33"
|
1374
|
+
dependencies = [
|
1375
|
+
"memchr",
|
1376
|
+
"serde",
|
1377
|
+
"tokio",
|
1378
|
+
]
|
1379
|
+
|
1380
|
+
[[package]]
|
1381
|
+
name = "quote"
|
1382
|
+
version = "1.0.36"
|
1383
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1384
|
+
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
1385
|
+
dependencies = [
|
1386
|
+
"proc-macro2",
|
1387
|
+
]
|
1388
|
+
|
1389
|
+
[[package]]
|
1390
|
+
name = "rand"
|
1391
|
+
version = "0.8.5"
|
1392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1393
|
+
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
1394
|
+
dependencies = [
|
1395
|
+
"libc",
|
1396
|
+
"rand_chacha",
|
1397
|
+
"rand_core",
|
1398
|
+
]
|
1399
|
+
|
1400
|
+
[[package]]
|
1401
|
+
name = "rand_chacha"
|
1402
|
+
version = "0.3.1"
|
1403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1404
|
+
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
1405
|
+
dependencies = [
|
1406
|
+
"ppv-lite86",
|
1407
|
+
"rand_core",
|
1408
|
+
]
|
1409
|
+
|
1410
|
+
[[package]]
|
1411
|
+
name = "rand_core"
|
1412
|
+
version = "0.6.4"
|
1413
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1414
|
+
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
1415
|
+
dependencies = [
|
1416
|
+
"getrandom",
|
1417
|
+
]
|
1418
|
+
|
1419
|
+
[[package]]
|
1420
|
+
name = "rb-sys"
|
1421
|
+
version = "0.9.98"
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1423
|
+
checksum = "8914b2e6af10bd50dd7aaac8c5146872d3924d6012929b4ff504e988f6badd24"
|
1424
|
+
dependencies = [
|
1425
|
+
"rb-sys-build",
|
1426
|
+
]
|
1427
|
+
|
1428
|
+
[[package]]
|
1429
|
+
name = "rb-sys-build"
|
1430
|
+
version = "0.9.98"
|
1431
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1432
|
+
checksum = "12af68c9757d419b82d65a12b5db538990dfe9416049fea3f0ba4b9a8ca108cd"
|
1433
|
+
dependencies = [
|
1434
|
+
"bindgen",
|
1435
|
+
"lazy_static",
|
1436
|
+
"proc-macro2",
|
1437
|
+
"quote",
|
1438
|
+
"regex",
|
1439
|
+
"shell-words",
|
1440
|
+
"syn 2.0.71",
|
1441
|
+
]
|
1442
|
+
|
1443
|
+
[[package]]
|
1444
|
+
name = "rb-sys-env"
|
1445
|
+
version = "0.1.2"
|
1446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1447
|
+
checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
|
1448
|
+
|
1449
|
+
[[package]]
|
1450
|
+
name = "redox_syscall"
|
1451
|
+
version = "0.5.3"
|
1452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1453
|
+
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
|
1454
|
+
dependencies = [
|
1455
|
+
"bitflags 2.6.0",
|
1456
|
+
]
|
1457
|
+
|
1458
|
+
[[package]]
|
1459
|
+
name = "regex"
|
1460
|
+
version = "1.10.5"
|
1461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1462
|
+
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
|
1463
|
+
dependencies = [
|
1464
|
+
"aho-corasick",
|
1465
|
+
"memchr",
|
1466
|
+
"regex-automata",
|
1467
|
+
"regex-syntax",
|
1468
|
+
]
|
1469
|
+
|
1470
|
+
[[package]]
|
1471
|
+
name = "regex-automata"
|
1472
|
+
version = "0.4.7"
|
1473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1474
|
+
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
|
1475
|
+
dependencies = [
|
1476
|
+
"aho-corasick",
|
1477
|
+
"memchr",
|
1478
|
+
"regex-syntax",
|
1479
|
+
]
|
1480
|
+
|
1481
|
+
[[package]]
|
1482
|
+
name = "regex-syntax"
|
1483
|
+
version = "0.8.4"
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1485
|
+
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
|
1486
|
+
|
1487
|
+
[[package]]
|
1488
|
+
name = "reqwest"
|
1489
|
+
version = "0.12.5"
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1491
|
+
checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
|
1492
|
+
dependencies = [
|
1493
|
+
"async-compression",
|
1494
|
+
"base64",
|
1495
|
+
"bytes",
|
1496
|
+
"cookie",
|
1497
|
+
"cookie_store",
|
1498
|
+
"encoding_rs",
|
1499
|
+
"futures-core",
|
1500
|
+
"futures-util",
|
1501
|
+
"h2",
|
1502
|
+
"http",
|
1503
|
+
"http-body",
|
1504
|
+
"http-body-util",
|
1505
|
+
"hyper",
|
1506
|
+
"hyper-rustls",
|
1507
|
+
"hyper-tls",
|
1508
|
+
"hyper-util",
|
1509
|
+
"ipnet",
|
1510
|
+
"js-sys",
|
1511
|
+
"log",
|
1512
|
+
"mime",
|
1513
|
+
"native-tls",
|
1514
|
+
"once_cell",
|
1515
|
+
"percent-encoding",
|
1516
|
+
"pin-project-lite",
|
1517
|
+
"rustls-pemfile",
|
1518
|
+
"serde",
|
1519
|
+
"serde_json",
|
1520
|
+
"serde_urlencoded",
|
1521
|
+
"sync_wrapper",
|
1522
|
+
"system-configuration",
|
1523
|
+
"tokio",
|
1524
|
+
"tokio-native-tls",
|
1525
|
+
"tokio-util",
|
1526
|
+
"tower-service",
|
1527
|
+
"url",
|
1528
|
+
"wasm-bindgen",
|
1529
|
+
"wasm-bindgen-futures",
|
1530
|
+
"wasm-streams",
|
1531
|
+
"web-sys",
|
1532
|
+
"winreg",
|
1533
|
+
]
|
1534
|
+
|
1535
|
+
[[package]]
|
1536
|
+
name = "ring"
|
1537
|
+
version = "0.17.8"
|
1538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1539
|
+
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
|
1540
|
+
dependencies = [
|
1541
|
+
"cc",
|
1542
|
+
"cfg-if",
|
1543
|
+
"getrandom",
|
1544
|
+
"libc",
|
1545
|
+
"spin",
|
1546
|
+
"untrusted",
|
1547
|
+
"windows-sys 0.52.0",
|
1548
|
+
]
|
1549
|
+
|
1550
|
+
[[package]]
|
1551
|
+
name = "rustc-demangle"
|
1552
|
+
version = "0.1.24"
|
1553
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1554
|
+
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
|
1555
|
+
|
1556
|
+
[[package]]
|
1557
|
+
name = "rustc-hash"
|
1558
|
+
version = "1.1.0"
|
1559
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1560
|
+
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
|
1561
|
+
|
1562
|
+
[[package]]
|
1563
|
+
name = "rustix"
|
1564
|
+
version = "0.38.34"
|
1565
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1566
|
+
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
|
1567
|
+
dependencies = [
|
1568
|
+
"bitflags 2.6.0",
|
1569
|
+
"errno",
|
1570
|
+
"libc",
|
1571
|
+
"linux-raw-sys",
|
1572
|
+
"windows-sys 0.52.0",
|
1573
|
+
]
|
1574
|
+
|
1575
|
+
[[package]]
|
1576
|
+
name = "rustls"
|
1577
|
+
version = "0.23.11"
|
1578
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1579
|
+
checksum = "4828ea528154ae444e5a642dbb7d5623354030dc9822b83fd9bb79683c7399d0"
|
1580
|
+
dependencies = [
|
1581
|
+
"log",
|
1582
|
+
"once_cell",
|
1583
|
+
"ring",
|
1584
|
+
"rustls-pki-types",
|
1585
|
+
"rustls-webpki",
|
1586
|
+
"subtle",
|
1587
|
+
"zeroize",
|
1588
|
+
]
|
1589
|
+
|
1590
|
+
[[package]]
|
1591
|
+
name = "rustls-pemfile"
|
1592
|
+
version = "2.1.2"
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1594
|
+
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
|
1595
|
+
dependencies = [
|
1596
|
+
"base64",
|
1597
|
+
"rustls-pki-types",
|
1598
|
+
]
|
1599
|
+
|
1600
|
+
[[package]]
|
1601
|
+
name = "rustls-pki-types"
|
1602
|
+
version = "1.7.0"
|
1603
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1604
|
+
checksum = "976295e77ce332211c0d24d92c0e83e50f5c5f046d11082cea19f3df13a3562d"
|
1605
|
+
|
1606
|
+
[[package]]
|
1607
|
+
name = "rustls-webpki"
|
1608
|
+
version = "0.102.5"
|
1609
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1610
|
+
checksum = "f9a6fccd794a42c2c105b513a2f62bc3fd8f3ba57a4593677ceb0bd035164d78"
|
1611
|
+
dependencies = [
|
1612
|
+
"ring",
|
1613
|
+
"rustls-pki-types",
|
1614
|
+
"untrusted",
|
1615
|
+
]
|
1616
|
+
|
1617
|
+
[[package]]
|
1618
|
+
name = "rustversion"
|
1619
|
+
version = "1.0.17"
|
1620
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1621
|
+
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
|
1622
|
+
|
1623
|
+
[[package]]
|
1624
|
+
name = "ryu"
|
1625
|
+
version = "1.0.18"
|
1626
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1627
|
+
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
1628
|
+
|
1629
|
+
[[package]]
|
1630
|
+
name = "schannel"
|
1631
|
+
version = "0.1.23"
|
1632
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1633
|
+
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
1634
|
+
dependencies = [
|
1635
|
+
"windows-sys 0.52.0",
|
1636
|
+
]
|
1637
|
+
|
1638
|
+
[[package]]
|
1639
|
+
name = "scopeguard"
|
1640
|
+
version = "1.2.0"
|
1641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1642
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
1643
|
+
|
1644
|
+
[[package]]
|
1645
|
+
name = "security-framework"
|
1646
|
+
version = "2.11.1"
|
1647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1648
|
+
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
|
1649
|
+
dependencies = [
|
1650
|
+
"bitflags 2.6.0",
|
1651
|
+
"core-foundation",
|
1652
|
+
"core-foundation-sys",
|
1653
|
+
"libc",
|
1654
|
+
"security-framework-sys",
|
1655
|
+
]
|
1656
|
+
|
1657
|
+
[[package]]
|
1658
|
+
name = "security-framework-sys"
|
1659
|
+
version = "2.11.1"
|
1660
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1661
|
+
checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
|
1662
|
+
dependencies = [
|
1663
|
+
"core-foundation-sys",
|
1664
|
+
"libc",
|
1665
|
+
]
|
1666
|
+
|
1667
|
+
[[package]]
|
1668
|
+
name = "selectors"
|
1669
|
+
version = "0.25.0"
|
1670
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1671
|
+
checksum = "4eb30575f3638fc8f6815f448d50cb1a2e255b0897985c8c59f4d37b72a07b06"
|
1672
|
+
dependencies = [
|
1673
|
+
"bitflags 2.6.0",
|
1674
|
+
"cssparser",
|
1675
|
+
"derive_more",
|
1676
|
+
"fxhash",
|
1677
|
+
"log",
|
1678
|
+
"new_debug_unreachable",
|
1679
|
+
"phf 0.10.1",
|
1680
|
+
"phf_codegen 0.10.0",
|
1681
|
+
"precomputed-hash",
|
1682
|
+
"servo_arc",
|
1683
|
+
"smallvec",
|
1684
|
+
]
|
1685
|
+
|
1686
|
+
[[package]]
|
1687
|
+
name = "seq-macro"
|
1688
|
+
version = "0.3.5"
|
1689
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1690
|
+
checksum = "a3f0bf26fd526d2a95683cd0f87bf103b8539e2ca1ef48ce002d67aad59aa0b4"
|
1691
|
+
|
1692
|
+
[[package]]
|
1693
|
+
name = "serde"
|
1694
|
+
version = "1.0.204"
|
1695
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1696
|
+
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
|
1697
|
+
dependencies = [
|
1698
|
+
"serde_derive",
|
1699
|
+
]
|
1700
|
+
|
1701
|
+
[[package]]
|
1702
|
+
name = "serde_derive"
|
1703
|
+
version = "1.0.204"
|
1704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1705
|
+
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
|
1706
|
+
dependencies = [
|
1707
|
+
"proc-macro2",
|
1708
|
+
"quote",
|
1709
|
+
"syn 2.0.71",
|
1710
|
+
]
|
1711
|
+
|
1712
|
+
[[package]]
|
1713
|
+
name = "serde_json"
|
1714
|
+
version = "1.0.120"
|
1715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1716
|
+
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
|
1717
|
+
dependencies = [
|
1718
|
+
"itoa",
|
1719
|
+
"ryu",
|
1720
|
+
"serde",
|
1721
|
+
]
|
1722
|
+
|
1723
|
+
[[package]]
|
1724
|
+
name = "serde_urlencoded"
|
1725
|
+
version = "0.7.1"
|
1726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1727
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
1728
|
+
dependencies = [
|
1729
|
+
"form_urlencoded",
|
1730
|
+
"itoa",
|
1731
|
+
"ryu",
|
1732
|
+
"serde",
|
1733
|
+
]
|
1734
|
+
|
1735
|
+
[[package]]
|
1736
|
+
name = "servo_arc"
|
1737
|
+
version = "0.3.0"
|
1738
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1739
|
+
checksum = "d036d71a959e00c77a63538b90a6c2390969f9772b096ea837205c6bd0491a44"
|
1740
|
+
dependencies = [
|
1741
|
+
"stable_deref_trait",
|
1742
|
+
]
|
1743
|
+
|
1744
|
+
[[package]]
|
1745
|
+
name = "shell-words"
|
1746
|
+
version = "1.1.0"
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1748
|
+
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
|
1749
|
+
|
1750
|
+
[[package]]
|
1751
|
+
name = "shlex"
|
1752
|
+
version = "1.3.0"
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1754
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
1755
|
+
|
1756
|
+
[[package]]
|
1757
|
+
name = "siphasher"
|
1758
|
+
version = "0.3.11"
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1760
|
+
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
1761
|
+
|
1762
|
+
[[package]]
|
1763
|
+
name = "slab"
|
1764
|
+
version = "0.4.9"
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1766
|
+
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
1767
|
+
dependencies = [
|
1768
|
+
"autocfg",
|
1769
|
+
]
|
1770
|
+
|
1771
|
+
[[package]]
|
1772
|
+
name = "smallvec"
|
1773
|
+
version = "1.13.2"
|
1774
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1775
|
+
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
|
1776
|
+
|
1777
|
+
[[package]]
|
1778
|
+
name = "socket2"
|
1779
|
+
version = "0.5.7"
|
1780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1781
|
+
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
|
1782
|
+
dependencies = [
|
1783
|
+
"libc",
|
1784
|
+
"windows-sys 0.52.0",
|
1785
|
+
]
|
1786
|
+
|
1787
|
+
[[package]]
|
1788
|
+
name = "spider"
|
1789
|
+
version = "1.99.5"
|
1790
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1791
|
+
checksum = "2f62dc0e4f32d36a931471a1694d5b5b29e916c537121ca8028742c9acbe510d"
|
1792
|
+
dependencies = [
|
1793
|
+
"ahash",
|
1794
|
+
"bytes",
|
1795
|
+
"case_insensitive_string",
|
1796
|
+
"compact_str",
|
1797
|
+
"cssparser",
|
1798
|
+
"ego-tree",
|
1799
|
+
"fast_html5ever",
|
1800
|
+
"hashbrown",
|
1801
|
+
"lazy_static",
|
1802
|
+
"log",
|
1803
|
+
"num_cpus",
|
1804
|
+
"percent-encoding",
|
1805
|
+
"quick-xml",
|
1806
|
+
"reqwest",
|
1807
|
+
"selectors",
|
1808
|
+
"smallvec",
|
1809
|
+
"string_concat",
|
1810
|
+
"strum",
|
1811
|
+
"tendril",
|
1812
|
+
"tokio",
|
1813
|
+
"tokio-stream",
|
1814
|
+
"ua_generator",
|
1815
|
+
"url",
|
1816
|
+
]
|
1817
|
+
|
1818
|
+
[[package]]
|
1819
|
+
name = "spider_cli"
|
1820
|
+
version = "1.99.5"
|
1821
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1822
|
+
checksum = "6031d46576f5fdba52d5c054a8c69ba7ee17cc824563b764fce4c8471c15c3a1"
|
1823
|
+
dependencies = [
|
1824
|
+
"clap",
|
1825
|
+
"env_logger",
|
1826
|
+
"failure_derive",
|
1827
|
+
"quote",
|
1828
|
+
"serde_json",
|
1829
|
+
"spider",
|
1830
|
+
]
|
1831
|
+
|
1832
|
+
[[package]]
|
1833
|
+
name = "spin"
|
1834
|
+
version = "0.9.8"
|
1835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1836
|
+
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
1837
|
+
|
1838
|
+
[[package]]
|
1839
|
+
name = "stable_deref_trait"
|
1840
|
+
version = "1.2.0"
|
1841
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1842
|
+
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
|
1843
|
+
|
1844
|
+
[[package]]
|
1845
|
+
name = "static_assertions"
|
1846
|
+
version = "1.1.0"
|
1847
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1848
|
+
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
1849
|
+
|
1850
|
+
[[package]]
|
1851
|
+
name = "string_cache"
|
1852
|
+
version = "0.8.7"
|
1853
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1854
|
+
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
|
1855
|
+
dependencies = [
|
1856
|
+
"new_debug_unreachable",
|
1857
|
+
"once_cell",
|
1858
|
+
"parking_lot",
|
1859
|
+
"phf_shared 0.10.0",
|
1860
|
+
"precomputed-hash",
|
1861
|
+
"serde",
|
1862
|
+
]
|
1863
|
+
|
1864
|
+
[[package]]
|
1865
|
+
name = "string_cache_codegen"
|
1866
|
+
version = "0.5.2"
|
1867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1868
|
+
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
|
1869
|
+
dependencies = [
|
1870
|
+
"phf_generator 0.10.0",
|
1871
|
+
"phf_shared 0.10.0",
|
1872
|
+
"proc-macro2",
|
1873
|
+
"quote",
|
1874
|
+
]
|
1875
|
+
|
1876
|
+
[[package]]
|
1877
|
+
name = "string_concat"
|
1878
|
+
version = "0.0.1"
|
1879
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1880
|
+
checksum = "c3c3ee6129eec20fed59acf2e9cfb3ffd20d0bbe39fe334c22af0edc56dfe752"
|
1881
|
+
|
1882
|
+
[[package]]
|
1883
|
+
name = "strsim"
|
1884
|
+
version = "0.11.1"
|
1885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1886
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
1887
|
+
|
1888
|
+
[[package]]
|
1889
|
+
name = "strum"
|
1890
|
+
version = "0.26.3"
|
1891
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1892
|
+
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
1893
|
+
dependencies = [
|
1894
|
+
"strum_macros",
|
1895
|
+
]
|
1896
|
+
|
1897
|
+
[[package]]
|
1898
|
+
name = "strum_macros"
|
1899
|
+
version = "0.26.4"
|
1900
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1901
|
+
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
1902
|
+
dependencies = [
|
1903
|
+
"heck",
|
1904
|
+
"proc-macro2",
|
1905
|
+
"quote",
|
1906
|
+
"rustversion",
|
1907
|
+
"syn 2.0.71",
|
1908
|
+
]
|
1909
|
+
|
1910
|
+
[[package]]
|
1911
|
+
name = "subtle"
|
1912
|
+
version = "2.6.1"
|
1913
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1914
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
1915
|
+
|
1916
|
+
[[package]]
|
1917
|
+
name = "syn"
|
1918
|
+
version = "1.0.109"
|
1919
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1920
|
+
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
1921
|
+
dependencies = [
|
1922
|
+
"proc-macro2",
|
1923
|
+
"quote",
|
1924
|
+
"unicode-ident",
|
1925
|
+
]
|
1926
|
+
|
1927
|
+
[[package]]
|
1928
|
+
name = "syn"
|
1929
|
+
version = "2.0.71"
|
1930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1931
|
+
checksum = "b146dcf730474b4bcd16c311627b31ede9ab149045db4d6088b3becaea046462"
|
1932
|
+
dependencies = [
|
1933
|
+
"proc-macro2",
|
1934
|
+
"quote",
|
1935
|
+
"unicode-ident",
|
1936
|
+
]
|
1937
|
+
|
1938
|
+
[[package]]
|
1939
|
+
name = "sync_wrapper"
|
1940
|
+
version = "1.0.1"
|
1941
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1942
|
+
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
|
1943
|
+
|
1944
|
+
[[package]]
|
1945
|
+
name = "synstructure"
|
1946
|
+
version = "0.12.6"
|
1947
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1948
|
+
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
|
1949
|
+
dependencies = [
|
1950
|
+
"proc-macro2",
|
1951
|
+
"quote",
|
1952
|
+
"syn 1.0.109",
|
1953
|
+
"unicode-xid",
|
1954
|
+
]
|
1955
|
+
|
1956
|
+
[[package]]
|
1957
|
+
name = "system-configuration"
|
1958
|
+
version = "0.5.1"
|
1959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1960
|
+
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
1961
|
+
dependencies = [
|
1962
|
+
"bitflags 1.3.2",
|
1963
|
+
"core-foundation",
|
1964
|
+
"system-configuration-sys",
|
1965
|
+
]
|
1966
|
+
|
1967
|
+
[[package]]
|
1968
|
+
name = "system-configuration-sys"
|
1969
|
+
version = "0.5.0"
|
1970
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1971
|
+
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
1972
|
+
dependencies = [
|
1973
|
+
"core-foundation-sys",
|
1974
|
+
"libc",
|
1975
|
+
]
|
1976
|
+
|
1977
|
+
[[package]]
|
1978
|
+
name = "tempfile"
|
1979
|
+
version = "3.10.1"
|
1980
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1981
|
+
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
|
1982
|
+
dependencies = [
|
1983
|
+
"cfg-if",
|
1984
|
+
"fastrand",
|
1985
|
+
"rustix",
|
1986
|
+
"windows-sys 0.52.0",
|
1987
|
+
]
|
1988
|
+
|
1989
|
+
[[package]]
|
1990
|
+
name = "tendril"
|
1991
|
+
version = "0.4.3"
|
1992
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
1993
|
+
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
1994
|
+
dependencies = [
|
1995
|
+
"futf",
|
1996
|
+
"mac",
|
1997
|
+
"utf-8",
|
1998
|
+
]
|
1999
|
+
|
2000
|
+
[[package]]
|
2001
|
+
name = "time"
|
2002
|
+
version = "0.3.36"
|
2003
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2004
|
+
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
|
2005
|
+
dependencies = [
|
2006
|
+
"deranged",
|
2007
|
+
"itoa",
|
2008
|
+
"num-conv",
|
2009
|
+
"powerfmt",
|
2010
|
+
"serde",
|
2011
|
+
"time-core",
|
2012
|
+
"time-macros",
|
2013
|
+
]
|
2014
|
+
|
2015
|
+
[[package]]
|
2016
|
+
name = "time-core"
|
2017
|
+
version = "0.1.2"
|
2018
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2019
|
+
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
2020
|
+
|
2021
|
+
[[package]]
|
2022
|
+
name = "time-macros"
|
2023
|
+
version = "0.2.18"
|
2024
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2025
|
+
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
|
2026
|
+
dependencies = [
|
2027
|
+
"num-conv",
|
2028
|
+
"time-core",
|
2029
|
+
]
|
2030
|
+
|
2031
|
+
[[package]]
|
2032
|
+
name = "tinyvec"
|
2033
|
+
version = "1.8.0"
|
2034
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2035
|
+
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
|
2036
|
+
dependencies = [
|
2037
|
+
"tinyvec_macros",
|
2038
|
+
]
|
2039
|
+
|
2040
|
+
[[package]]
|
2041
|
+
name = "tinyvec_macros"
|
2042
|
+
version = "0.1.1"
|
2043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2044
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
2045
|
+
|
2046
|
+
[[package]]
|
2047
|
+
name = "tokio"
|
2048
|
+
version = "1.38.1"
|
2049
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2050
|
+
checksum = "eb2caba9f80616f438e09748d5acda951967e1ea58508ef53d9c6402485a46df"
|
2051
|
+
dependencies = [
|
2052
|
+
"backtrace",
|
2053
|
+
"bytes",
|
2054
|
+
"libc",
|
2055
|
+
"mio",
|
2056
|
+
"num_cpus",
|
2057
|
+
"parking_lot",
|
2058
|
+
"pin-project-lite",
|
2059
|
+
"socket2",
|
2060
|
+
"tokio-macros",
|
2061
|
+
"windows-sys 0.48.0",
|
2062
|
+
]
|
2063
|
+
|
2064
|
+
[[package]]
|
2065
|
+
name = "tokio-macros"
|
2066
|
+
version = "2.3.0"
|
2067
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2068
|
+
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
|
2069
|
+
dependencies = [
|
2070
|
+
"proc-macro2",
|
2071
|
+
"quote",
|
2072
|
+
"syn 2.0.71",
|
2073
|
+
]
|
2074
|
+
|
2075
|
+
[[package]]
|
2076
|
+
name = "tokio-native-tls"
|
2077
|
+
version = "0.3.1"
|
2078
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2079
|
+
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
2080
|
+
dependencies = [
|
2081
|
+
"native-tls",
|
2082
|
+
"tokio",
|
2083
|
+
]
|
2084
|
+
|
2085
|
+
[[package]]
|
2086
|
+
name = "tokio-rustls"
|
2087
|
+
version = "0.26.0"
|
2088
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2089
|
+
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
|
2090
|
+
dependencies = [
|
2091
|
+
"rustls",
|
2092
|
+
"rustls-pki-types",
|
2093
|
+
"tokio",
|
2094
|
+
]
|
2095
|
+
|
2096
|
+
[[package]]
|
2097
|
+
name = "tokio-stream"
|
2098
|
+
version = "0.1.15"
|
2099
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2100
|
+
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
|
2101
|
+
dependencies = [
|
2102
|
+
"futures-core",
|
2103
|
+
"pin-project-lite",
|
2104
|
+
"tokio",
|
2105
|
+
]
|
2106
|
+
|
2107
|
+
[[package]]
|
2108
|
+
name = "tokio-util"
|
2109
|
+
version = "0.7.11"
|
2110
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2111
|
+
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
|
2112
|
+
dependencies = [
|
2113
|
+
"bytes",
|
2114
|
+
"futures-core",
|
2115
|
+
"futures-sink",
|
2116
|
+
"pin-project-lite",
|
2117
|
+
"tokio",
|
2118
|
+
]
|
2119
|
+
|
2120
|
+
[[package]]
|
2121
|
+
name = "tower"
|
2122
|
+
version = "0.4.13"
|
2123
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2124
|
+
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
2125
|
+
dependencies = [
|
2126
|
+
"futures-core",
|
2127
|
+
"futures-util",
|
2128
|
+
"pin-project",
|
2129
|
+
"pin-project-lite",
|
2130
|
+
"tokio",
|
2131
|
+
"tower-layer",
|
2132
|
+
"tower-service",
|
2133
|
+
]
|
2134
|
+
|
2135
|
+
[[package]]
|
2136
|
+
name = "tower-layer"
|
2137
|
+
version = "0.3.2"
|
2138
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2139
|
+
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
2140
|
+
|
2141
|
+
[[package]]
|
2142
|
+
name = "tower-service"
|
2143
|
+
version = "0.3.2"
|
2144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2145
|
+
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
2146
|
+
|
2147
|
+
[[package]]
|
2148
|
+
name = "tracing"
|
2149
|
+
version = "0.1.40"
|
2150
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2151
|
+
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
2152
|
+
dependencies = [
|
2153
|
+
"pin-project-lite",
|
2154
|
+
"tracing-core",
|
2155
|
+
]
|
2156
|
+
|
2157
|
+
[[package]]
|
2158
|
+
name = "tracing-core"
|
2159
|
+
version = "0.1.32"
|
2160
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2161
|
+
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
2162
|
+
dependencies = [
|
2163
|
+
"once_cell",
|
2164
|
+
]
|
2165
|
+
|
2166
|
+
[[package]]
|
2167
|
+
name = "try-lock"
|
2168
|
+
version = "0.2.5"
|
2169
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2170
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
2171
|
+
|
2172
|
+
[[package]]
|
2173
|
+
name = "ua_generator"
|
2174
|
+
version = "0.5.1"
|
2175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2176
|
+
checksum = "20093f826c4866dc7d4808ecd9ed351e3021b94194f25f490f0ea9ea030e1f87"
|
2177
|
+
dependencies = [
|
2178
|
+
"fastrand",
|
2179
|
+
"serde",
|
2180
|
+
"serde_json",
|
2181
|
+
"ureq",
|
2182
|
+
]
|
2183
|
+
|
2184
|
+
[[package]]
|
2185
|
+
name = "unicode-bidi"
|
2186
|
+
version = "0.3.15"
|
2187
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2188
|
+
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
|
2189
|
+
|
2190
|
+
[[package]]
|
2191
|
+
name = "unicode-ident"
|
2192
|
+
version = "1.0.12"
|
2193
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2194
|
+
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
2195
|
+
|
2196
|
+
[[package]]
|
2197
|
+
name = "unicode-normalization"
|
2198
|
+
version = "0.1.23"
|
2199
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2200
|
+
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
|
2201
|
+
dependencies = [
|
2202
|
+
"tinyvec",
|
2203
|
+
]
|
2204
|
+
|
2205
|
+
[[package]]
|
2206
|
+
name = "unicode-xid"
|
2207
|
+
version = "0.2.4"
|
2208
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2209
|
+
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
|
2210
|
+
|
2211
|
+
[[package]]
|
2212
|
+
name = "untrusted"
|
2213
|
+
version = "0.9.0"
|
2214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2215
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
2216
|
+
|
2217
|
+
[[package]]
|
2218
|
+
name = "ureq"
|
2219
|
+
version = "2.10.0"
|
2220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2221
|
+
checksum = "72139d247e5f97a3eff96229a7ae85ead5328a39efe76f8bf5a06313d505b6ea"
|
2222
|
+
dependencies = [
|
2223
|
+
"base64",
|
2224
|
+
"brotli-decompressor",
|
2225
|
+
"encoding_rs",
|
2226
|
+
"flate2",
|
2227
|
+
"log",
|
2228
|
+
"once_cell",
|
2229
|
+
"rustls",
|
2230
|
+
"rustls-pki-types",
|
2231
|
+
"serde",
|
2232
|
+
"serde_json",
|
2233
|
+
"url",
|
2234
|
+
"webpki-roots",
|
2235
|
+
]
|
2236
|
+
|
2237
|
+
[[package]]
|
2238
|
+
name = "url"
|
2239
|
+
version = "2.5.2"
|
2240
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2241
|
+
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
|
2242
|
+
dependencies = [
|
2243
|
+
"form_urlencoded",
|
2244
|
+
"idna 0.5.0",
|
2245
|
+
"percent-encoding",
|
2246
|
+
]
|
2247
|
+
|
2248
|
+
[[package]]
|
2249
|
+
name = "utf-8"
|
2250
|
+
version = "0.7.6"
|
2251
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2252
|
+
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
2253
|
+
|
2254
|
+
[[package]]
|
2255
|
+
name = "utf8parse"
|
2256
|
+
version = "0.2.2"
|
2257
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2258
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
2259
|
+
|
2260
|
+
[[package]]
|
2261
|
+
name = "vcpkg"
|
2262
|
+
version = "0.2.15"
|
2263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2264
|
+
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2265
|
+
|
2266
|
+
[[package]]
|
2267
|
+
name = "version_check"
|
2268
|
+
version = "0.9.4"
|
2269
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2270
|
+
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2271
|
+
|
2272
|
+
[[package]]
|
2273
|
+
name = "vore"
|
2274
|
+
version = "0.1.0"
|
2275
|
+
dependencies = [
|
2276
|
+
"magnus",
|
2277
|
+
"rb-sys",
|
2278
|
+
"spider_cli",
|
2279
|
+
]
|
2280
|
+
|
2281
|
+
[[package]]
|
2282
|
+
name = "want"
|
2283
|
+
version = "0.3.1"
|
2284
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2285
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
2286
|
+
dependencies = [
|
2287
|
+
"try-lock",
|
2288
|
+
]
|
2289
|
+
|
2290
|
+
[[package]]
|
2291
|
+
name = "wasi"
|
2292
|
+
version = "0.11.0+wasi-snapshot-preview1"
|
2293
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2294
|
+
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
2295
|
+
|
2296
|
+
[[package]]
|
2297
|
+
name = "wasm-bindgen"
|
2298
|
+
version = "0.2.92"
|
2299
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2300
|
+
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
|
2301
|
+
dependencies = [
|
2302
|
+
"cfg-if",
|
2303
|
+
"wasm-bindgen-macro",
|
2304
|
+
]
|
2305
|
+
|
2306
|
+
[[package]]
|
2307
|
+
name = "wasm-bindgen-backend"
|
2308
|
+
version = "0.2.92"
|
2309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2310
|
+
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
|
2311
|
+
dependencies = [
|
2312
|
+
"bumpalo",
|
2313
|
+
"log",
|
2314
|
+
"once_cell",
|
2315
|
+
"proc-macro2",
|
2316
|
+
"quote",
|
2317
|
+
"syn 2.0.71",
|
2318
|
+
"wasm-bindgen-shared",
|
2319
|
+
]
|
2320
|
+
|
2321
|
+
[[package]]
|
2322
|
+
name = "wasm-bindgen-futures"
|
2323
|
+
version = "0.4.42"
|
2324
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2325
|
+
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
|
2326
|
+
dependencies = [
|
2327
|
+
"cfg-if",
|
2328
|
+
"js-sys",
|
2329
|
+
"wasm-bindgen",
|
2330
|
+
"web-sys",
|
2331
|
+
]
|
2332
|
+
|
2333
|
+
[[package]]
|
2334
|
+
name = "wasm-bindgen-macro"
|
2335
|
+
version = "0.2.92"
|
2336
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2337
|
+
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
|
2338
|
+
dependencies = [
|
2339
|
+
"quote",
|
2340
|
+
"wasm-bindgen-macro-support",
|
2341
|
+
]
|
2342
|
+
|
2343
|
+
[[package]]
|
2344
|
+
name = "wasm-bindgen-macro-support"
|
2345
|
+
version = "0.2.92"
|
2346
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2347
|
+
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
|
2348
|
+
dependencies = [
|
2349
|
+
"proc-macro2",
|
2350
|
+
"quote",
|
2351
|
+
"syn 2.0.71",
|
2352
|
+
"wasm-bindgen-backend",
|
2353
|
+
"wasm-bindgen-shared",
|
2354
|
+
]
|
2355
|
+
|
2356
|
+
[[package]]
|
2357
|
+
name = "wasm-bindgen-shared"
|
2358
|
+
version = "0.2.92"
|
2359
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2360
|
+
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
|
2361
|
+
|
2362
|
+
[[package]]
|
2363
|
+
name = "wasm-streams"
|
2364
|
+
version = "0.4.0"
|
2365
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2366
|
+
checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129"
|
2367
|
+
dependencies = [
|
2368
|
+
"futures-util",
|
2369
|
+
"js-sys",
|
2370
|
+
"wasm-bindgen",
|
2371
|
+
"wasm-bindgen-futures",
|
2372
|
+
"web-sys",
|
2373
|
+
]
|
2374
|
+
|
2375
|
+
[[package]]
|
2376
|
+
name = "web-sys"
|
2377
|
+
version = "0.3.69"
|
2378
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2379
|
+
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
|
2380
|
+
dependencies = [
|
2381
|
+
"js-sys",
|
2382
|
+
"wasm-bindgen",
|
2383
|
+
]
|
2384
|
+
|
2385
|
+
[[package]]
|
2386
|
+
name = "webpki-roots"
|
2387
|
+
version = "0.26.3"
|
2388
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2389
|
+
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
|
2390
|
+
dependencies = [
|
2391
|
+
"rustls-pki-types",
|
2392
|
+
]
|
2393
|
+
|
2394
|
+
[[package]]
|
2395
|
+
name = "windows-sys"
|
2396
|
+
version = "0.48.0"
|
2397
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2398
|
+
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
2399
|
+
dependencies = [
|
2400
|
+
"windows-targets 0.48.5",
|
2401
|
+
]
|
2402
|
+
|
2403
|
+
[[package]]
|
2404
|
+
name = "windows-sys"
|
2405
|
+
version = "0.52.0"
|
2406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2407
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
2408
|
+
dependencies = [
|
2409
|
+
"windows-targets 0.52.6",
|
2410
|
+
]
|
2411
|
+
|
2412
|
+
[[package]]
|
2413
|
+
name = "windows-targets"
|
2414
|
+
version = "0.48.5"
|
2415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2416
|
+
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2417
|
+
dependencies = [
|
2418
|
+
"windows_aarch64_gnullvm 0.48.5",
|
2419
|
+
"windows_aarch64_msvc 0.48.5",
|
2420
|
+
"windows_i686_gnu 0.48.5",
|
2421
|
+
"windows_i686_msvc 0.48.5",
|
2422
|
+
"windows_x86_64_gnu 0.48.5",
|
2423
|
+
"windows_x86_64_gnullvm 0.48.5",
|
2424
|
+
"windows_x86_64_msvc 0.48.5",
|
2425
|
+
]
|
2426
|
+
|
2427
|
+
[[package]]
|
2428
|
+
name = "windows-targets"
|
2429
|
+
version = "0.52.6"
|
2430
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2431
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2432
|
+
dependencies = [
|
2433
|
+
"windows_aarch64_gnullvm 0.52.6",
|
2434
|
+
"windows_aarch64_msvc 0.52.6",
|
2435
|
+
"windows_i686_gnu 0.52.6",
|
2436
|
+
"windows_i686_gnullvm",
|
2437
|
+
"windows_i686_msvc 0.52.6",
|
2438
|
+
"windows_x86_64_gnu 0.52.6",
|
2439
|
+
"windows_x86_64_gnullvm 0.52.6",
|
2440
|
+
"windows_x86_64_msvc 0.52.6",
|
2441
|
+
]
|
2442
|
+
|
2443
|
+
[[package]]
|
2444
|
+
name = "windows_aarch64_gnullvm"
|
2445
|
+
version = "0.48.5"
|
2446
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2447
|
+
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2448
|
+
|
2449
|
+
[[package]]
|
2450
|
+
name = "windows_aarch64_gnullvm"
|
2451
|
+
version = "0.52.6"
|
2452
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2453
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2454
|
+
|
2455
|
+
[[package]]
|
2456
|
+
name = "windows_aarch64_msvc"
|
2457
|
+
version = "0.48.5"
|
2458
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2459
|
+
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2460
|
+
|
2461
|
+
[[package]]
|
2462
|
+
name = "windows_aarch64_msvc"
|
2463
|
+
version = "0.52.6"
|
2464
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2465
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2466
|
+
|
2467
|
+
[[package]]
|
2468
|
+
name = "windows_i686_gnu"
|
2469
|
+
version = "0.48.5"
|
2470
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2471
|
+
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2472
|
+
|
2473
|
+
[[package]]
|
2474
|
+
name = "windows_i686_gnu"
|
2475
|
+
version = "0.52.6"
|
2476
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2477
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2478
|
+
|
2479
|
+
[[package]]
|
2480
|
+
name = "windows_i686_gnullvm"
|
2481
|
+
version = "0.52.6"
|
2482
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2483
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2484
|
+
|
2485
|
+
[[package]]
|
2486
|
+
name = "windows_i686_msvc"
|
2487
|
+
version = "0.48.5"
|
2488
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2489
|
+
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2490
|
+
|
2491
|
+
[[package]]
|
2492
|
+
name = "windows_i686_msvc"
|
2493
|
+
version = "0.52.6"
|
2494
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2495
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2496
|
+
|
2497
|
+
[[package]]
|
2498
|
+
name = "windows_x86_64_gnu"
|
2499
|
+
version = "0.48.5"
|
2500
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2501
|
+
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2502
|
+
|
2503
|
+
[[package]]
|
2504
|
+
name = "windows_x86_64_gnu"
|
2505
|
+
version = "0.52.6"
|
2506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2507
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2508
|
+
|
2509
|
+
[[package]]
|
2510
|
+
name = "windows_x86_64_gnullvm"
|
2511
|
+
version = "0.48.5"
|
2512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2513
|
+
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2514
|
+
|
2515
|
+
[[package]]
|
2516
|
+
name = "windows_x86_64_gnullvm"
|
2517
|
+
version = "0.52.6"
|
2518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2519
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2520
|
+
|
2521
|
+
[[package]]
|
2522
|
+
name = "windows_x86_64_msvc"
|
2523
|
+
version = "0.48.5"
|
2524
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2525
|
+
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2526
|
+
|
2527
|
+
[[package]]
|
2528
|
+
name = "windows_x86_64_msvc"
|
2529
|
+
version = "0.52.6"
|
2530
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2531
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2532
|
+
|
2533
|
+
[[package]]
|
2534
|
+
name = "winreg"
|
2535
|
+
version = "0.52.0"
|
2536
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2537
|
+
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
|
2538
|
+
dependencies = [
|
2539
|
+
"cfg-if",
|
2540
|
+
"windows-sys 0.48.0",
|
2541
|
+
]
|
2542
|
+
|
2543
|
+
[[package]]
|
2544
|
+
name = "zerocopy"
|
2545
|
+
version = "0.7.35"
|
2546
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2547
|
+
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
|
2548
|
+
dependencies = [
|
2549
|
+
"zerocopy-derive",
|
2550
|
+
]
|
2551
|
+
|
2552
|
+
[[package]]
|
2553
|
+
name = "zerocopy-derive"
|
2554
|
+
version = "0.7.35"
|
2555
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2556
|
+
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
|
2557
|
+
dependencies = [
|
2558
|
+
"proc-macro2",
|
2559
|
+
"quote",
|
2560
|
+
"syn 2.0.71",
|
2561
|
+
]
|
2562
|
+
|
2563
|
+
[[package]]
|
2564
|
+
name = "zeroize"
|
2565
|
+
version = "1.8.1"
|
2566
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2567
|
+
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
|
2568
|
+
|
2569
|
+
[[package]]
|
2570
|
+
name = "zstd"
|
2571
|
+
version = "0.13.2"
|
2572
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2573
|
+
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
2574
|
+
dependencies = [
|
2575
|
+
"zstd-safe",
|
2576
|
+
]
|
2577
|
+
|
2578
|
+
[[package]]
|
2579
|
+
name = "zstd-safe"
|
2580
|
+
version = "7.2.0"
|
2581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2582
|
+
checksum = "fa556e971e7b568dc775c136fc9de8c779b1c2fc3a63defaafadffdbd3181afa"
|
2583
|
+
dependencies = [
|
2584
|
+
"zstd-sys",
|
2585
|
+
]
|
2586
|
+
|
2587
|
+
[[package]]
|
2588
|
+
name = "zstd-sys"
|
2589
|
+
version = "2.0.12+zstd.1.5.6"
|
2590
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2591
|
+
checksum = "0a4e40c320c3cb459d9a9ff6de98cff88f4751ee9275d140e2be94a2b74e4c13"
|
2592
|
+
dependencies = [
|
2593
|
+
"cc",
|
2594
|
+
"pkg-config",
|
2595
|
+
]
|