wreq 1.0.0 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Cargo.lock +1635 -0
- data/Cargo.toml +13 -13
- data/README.md +4 -4
- data/lib/wreq_ruby/emulation.rb +17 -0
- data/lib/wreq_ruby/error.rb +1 -3
- data/src/client/req.rs +1 -1
- data/src/client.rs +1 -1
- data/src/{emulation.rs → emulate.rs} +44 -1
- data/src/lib.rs +2 -2
- metadata +3 -2
data/Cargo.lock
ADDED
|
@@ -0,0 +1,1635 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "adler2"
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
9
|
+
checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
|
|
10
|
+
|
|
11
|
+
[[package]]
|
|
12
|
+
name = "ahash"
|
|
13
|
+
version = "0.8.12"
|
|
14
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
15
|
+
checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
|
|
16
|
+
dependencies = [
|
|
17
|
+
"cfg-if",
|
|
18
|
+
"once_cell",
|
|
19
|
+
"version_check",
|
|
20
|
+
"zerocopy",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[[package]]
|
|
24
|
+
name = "aho-corasick"
|
|
25
|
+
version = "1.1.4"
|
|
26
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
27
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
28
|
+
dependencies = [
|
|
29
|
+
"memchr",
|
|
30
|
+
]
|
|
31
|
+
|
|
32
|
+
[[package]]
|
|
33
|
+
name = "alloc-no-stdlib"
|
|
34
|
+
version = "2.0.4"
|
|
35
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
36
|
+
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "alloc-stdlib"
|
|
40
|
+
version = "0.2.2"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"alloc-no-stdlib",
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[[package]]
|
|
48
|
+
name = "arc-swap"
|
|
49
|
+
version = "1.9.1"
|
|
50
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
51
|
+
checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
|
|
52
|
+
dependencies = [
|
|
53
|
+
"rustversion",
|
|
54
|
+
]
|
|
55
|
+
|
|
56
|
+
[[package]]
|
|
57
|
+
name = "async-compression"
|
|
58
|
+
version = "0.4.42"
|
|
59
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
60
|
+
checksum = "e79b3f8a79cccc2898f31920fc69f304859b3bd567490f75ebf51ae1c792a9ac"
|
|
61
|
+
dependencies = [
|
|
62
|
+
"compression-codecs",
|
|
63
|
+
"compression-core",
|
|
64
|
+
"pin-project-lite",
|
|
65
|
+
"tokio",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "atomic-waker"
|
|
70
|
+
version = "1.1.2"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
73
|
+
|
|
74
|
+
[[package]]
|
|
75
|
+
name = "bindgen"
|
|
76
|
+
version = "0.72.1"
|
|
77
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
78
|
+
checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
|
|
79
|
+
dependencies = [
|
|
80
|
+
"bitflags",
|
|
81
|
+
"cexpr",
|
|
82
|
+
"clang-sys",
|
|
83
|
+
"itertools",
|
|
84
|
+
"proc-macro2",
|
|
85
|
+
"quote",
|
|
86
|
+
"regex",
|
|
87
|
+
"rustc-hash",
|
|
88
|
+
"shlex",
|
|
89
|
+
"syn",
|
|
90
|
+
]
|
|
91
|
+
|
|
92
|
+
[[package]]
|
|
93
|
+
name = "bitflags"
|
|
94
|
+
version = "2.11.1"
|
|
95
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
96
|
+
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
97
|
+
|
|
98
|
+
[[package]]
|
|
99
|
+
name = "boring-sys2"
|
|
100
|
+
version = "5.0.0-alpha.13"
|
|
101
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
102
|
+
checksum = "455d79965f5155dcc88a7abce112c3590883889131b799beda10bf9a813ed669"
|
|
103
|
+
dependencies = [
|
|
104
|
+
"bindgen",
|
|
105
|
+
"cmake",
|
|
106
|
+
"fs_extra",
|
|
107
|
+
"fslock",
|
|
108
|
+
]
|
|
109
|
+
|
|
110
|
+
[[package]]
|
|
111
|
+
name = "boring2"
|
|
112
|
+
version = "5.0.0-alpha.13"
|
|
113
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
114
|
+
checksum = "183ccc3854411c035410dcdbffafca62084f3a6c33f013c77e83c025d2a08a28"
|
|
115
|
+
dependencies = [
|
|
116
|
+
"bitflags",
|
|
117
|
+
"boring-sys2",
|
|
118
|
+
"foreign-types",
|
|
119
|
+
"libc",
|
|
120
|
+
"openssl-macros",
|
|
121
|
+
]
|
|
122
|
+
|
|
123
|
+
[[package]]
|
|
124
|
+
name = "brotli"
|
|
125
|
+
version = "8.0.2"
|
|
126
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
127
|
+
checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
|
|
128
|
+
dependencies = [
|
|
129
|
+
"alloc-no-stdlib",
|
|
130
|
+
"alloc-stdlib",
|
|
131
|
+
"brotli-decompressor",
|
|
132
|
+
]
|
|
133
|
+
|
|
134
|
+
[[package]]
|
|
135
|
+
name = "brotli-decompressor"
|
|
136
|
+
version = "5.0.0"
|
|
137
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
138
|
+
checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
|
|
139
|
+
dependencies = [
|
|
140
|
+
"alloc-no-stdlib",
|
|
141
|
+
"alloc-stdlib",
|
|
142
|
+
]
|
|
143
|
+
|
|
144
|
+
[[package]]
|
|
145
|
+
name = "bytes"
|
|
146
|
+
version = "1.11.1"
|
|
147
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
148
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
149
|
+
|
|
150
|
+
[[package]]
|
|
151
|
+
name = "cc"
|
|
152
|
+
version = "1.2.62"
|
|
153
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
154
|
+
checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
|
|
155
|
+
dependencies = [
|
|
156
|
+
"find-msvc-tools",
|
|
157
|
+
"jobserver",
|
|
158
|
+
"libc",
|
|
159
|
+
"shlex",
|
|
160
|
+
]
|
|
161
|
+
|
|
162
|
+
[[package]]
|
|
163
|
+
name = "cexpr"
|
|
164
|
+
version = "0.6.0"
|
|
165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
166
|
+
checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
|
|
167
|
+
dependencies = [
|
|
168
|
+
"nom",
|
|
169
|
+
]
|
|
170
|
+
|
|
171
|
+
[[package]]
|
|
172
|
+
name = "cfg-if"
|
|
173
|
+
version = "1.0.4"
|
|
174
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
175
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
176
|
+
|
|
177
|
+
[[package]]
|
|
178
|
+
name = "clang-sys"
|
|
179
|
+
version = "1.8.1"
|
|
180
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
181
|
+
checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
|
|
182
|
+
dependencies = [
|
|
183
|
+
"glob",
|
|
184
|
+
"libc",
|
|
185
|
+
"libloading",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "cmake"
|
|
190
|
+
version = "0.1.58"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "c0f78a02292a74a88ac736019ab962ece0bc380e3f977bf72e376c5d78ff0678"
|
|
193
|
+
dependencies = [
|
|
194
|
+
"cc",
|
|
195
|
+
]
|
|
196
|
+
|
|
197
|
+
[[package]]
|
|
198
|
+
name = "compression-codecs"
|
|
199
|
+
version = "0.4.38"
|
|
200
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
201
|
+
checksum = "ce2548391e9c1929c21bf6aa2680af86fe4c1b33e6cea9ac1cfeec0bd11218cf"
|
|
202
|
+
dependencies = [
|
|
203
|
+
"brotli",
|
|
204
|
+
"compression-core",
|
|
205
|
+
"flate2",
|
|
206
|
+
"memchr",
|
|
207
|
+
"zstd",
|
|
208
|
+
"zstd-safe",
|
|
209
|
+
]
|
|
210
|
+
|
|
211
|
+
[[package]]
|
|
212
|
+
name = "compression-core"
|
|
213
|
+
version = "0.4.32"
|
|
214
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
215
|
+
checksum = "cc14f565cf027a105f7a44ccf9e5b424348421a1d8952a8fc9d499d313107789"
|
|
216
|
+
|
|
217
|
+
[[package]]
|
|
218
|
+
name = "cookie"
|
|
219
|
+
version = "0.18.1"
|
|
220
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
221
|
+
checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
|
|
222
|
+
dependencies = [
|
|
223
|
+
"time",
|
|
224
|
+
"version_check",
|
|
225
|
+
]
|
|
226
|
+
|
|
227
|
+
[[package]]
|
|
228
|
+
name = "crc32fast"
|
|
229
|
+
version = "1.5.0"
|
|
230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
231
|
+
checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
|
|
232
|
+
dependencies = [
|
|
233
|
+
"cfg-if",
|
|
234
|
+
]
|
|
235
|
+
|
|
236
|
+
[[package]]
|
|
237
|
+
name = "deranged"
|
|
238
|
+
version = "0.5.8"
|
|
239
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
240
|
+
checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
|
|
241
|
+
dependencies = [
|
|
242
|
+
"powerfmt",
|
|
243
|
+
]
|
|
244
|
+
|
|
245
|
+
[[package]]
|
|
246
|
+
name = "displaydoc"
|
|
247
|
+
version = "0.2.5"
|
|
248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
249
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
250
|
+
dependencies = [
|
|
251
|
+
"proc-macro2",
|
|
252
|
+
"quote",
|
|
253
|
+
"syn",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "either"
|
|
258
|
+
version = "1.15.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
261
|
+
|
|
262
|
+
[[package]]
|
|
263
|
+
name = "encoding_rs"
|
|
264
|
+
version = "0.8.35"
|
|
265
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
266
|
+
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
267
|
+
dependencies = [
|
|
268
|
+
"cfg-if",
|
|
269
|
+
]
|
|
270
|
+
|
|
271
|
+
[[package]]
|
|
272
|
+
name = "equivalent"
|
|
273
|
+
version = "1.0.2"
|
|
274
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
275
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
276
|
+
|
|
277
|
+
[[package]]
|
|
278
|
+
name = "errno"
|
|
279
|
+
version = "0.3.14"
|
|
280
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
281
|
+
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
282
|
+
dependencies = [
|
|
283
|
+
"libc",
|
|
284
|
+
"windows-sys",
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
[[package]]
|
|
288
|
+
name = "find-msvc-tools"
|
|
289
|
+
version = "0.1.9"
|
|
290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
291
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
292
|
+
|
|
293
|
+
[[package]]
|
|
294
|
+
name = "flate2"
|
|
295
|
+
version = "1.1.9"
|
|
296
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
297
|
+
checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
|
|
298
|
+
dependencies = [
|
|
299
|
+
"crc32fast",
|
|
300
|
+
"miniz_oxide",
|
|
301
|
+
]
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "fnv"
|
|
305
|
+
version = "1.0.7"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "foreign-types"
|
|
311
|
+
version = "0.5.0"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
|
|
314
|
+
dependencies = [
|
|
315
|
+
"foreign-types-macros",
|
|
316
|
+
"foreign-types-shared",
|
|
317
|
+
]
|
|
318
|
+
|
|
319
|
+
[[package]]
|
|
320
|
+
name = "foreign-types-macros"
|
|
321
|
+
version = "0.2.3"
|
|
322
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
323
|
+
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
|
|
324
|
+
dependencies = [
|
|
325
|
+
"proc-macro2",
|
|
326
|
+
"quote",
|
|
327
|
+
"syn",
|
|
328
|
+
]
|
|
329
|
+
|
|
330
|
+
[[package]]
|
|
331
|
+
name = "foreign-types-shared"
|
|
332
|
+
version = "0.3.1"
|
|
333
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
334
|
+
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
|
|
335
|
+
|
|
336
|
+
[[package]]
|
|
337
|
+
name = "form_urlencoded"
|
|
338
|
+
version = "1.2.2"
|
|
339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
340
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
341
|
+
dependencies = [
|
|
342
|
+
"percent-encoding",
|
|
343
|
+
]
|
|
344
|
+
|
|
345
|
+
[[package]]
|
|
346
|
+
name = "fs_extra"
|
|
347
|
+
version = "1.3.0"
|
|
348
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
349
|
+
checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
|
|
350
|
+
|
|
351
|
+
[[package]]
|
|
352
|
+
name = "fslock"
|
|
353
|
+
version = "0.2.1"
|
|
354
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
355
|
+
checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
|
|
356
|
+
dependencies = [
|
|
357
|
+
"libc",
|
|
358
|
+
"winapi",
|
|
359
|
+
]
|
|
360
|
+
|
|
361
|
+
[[package]]
|
|
362
|
+
name = "futures-channel"
|
|
363
|
+
version = "0.3.32"
|
|
364
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
365
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
366
|
+
dependencies = [
|
|
367
|
+
"futures-core",
|
|
368
|
+
]
|
|
369
|
+
|
|
370
|
+
[[package]]
|
|
371
|
+
name = "futures-core"
|
|
372
|
+
version = "0.3.32"
|
|
373
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
374
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
375
|
+
|
|
376
|
+
[[package]]
|
|
377
|
+
name = "futures-sink"
|
|
378
|
+
version = "0.3.32"
|
|
379
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
380
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
381
|
+
|
|
382
|
+
[[package]]
|
|
383
|
+
name = "futures-task"
|
|
384
|
+
version = "0.3.32"
|
|
385
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
386
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
387
|
+
|
|
388
|
+
[[package]]
|
|
389
|
+
name = "futures-util"
|
|
390
|
+
version = "0.3.32"
|
|
391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
392
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
393
|
+
dependencies = [
|
|
394
|
+
"futures-core",
|
|
395
|
+
"futures-task",
|
|
396
|
+
"pin-project-lite",
|
|
397
|
+
"slab",
|
|
398
|
+
]
|
|
399
|
+
|
|
400
|
+
[[package]]
|
|
401
|
+
name = "getrandom"
|
|
402
|
+
version = "0.3.4"
|
|
403
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
404
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
405
|
+
dependencies = [
|
|
406
|
+
"cfg-if",
|
|
407
|
+
"libc",
|
|
408
|
+
"r-efi",
|
|
409
|
+
"wasip2",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "glob"
|
|
414
|
+
version = "0.3.3"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
|
|
417
|
+
|
|
418
|
+
[[package]]
|
|
419
|
+
name = "hashbrown"
|
|
420
|
+
version = "0.13.2"
|
|
421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
422
|
+
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
|
423
|
+
|
|
424
|
+
[[package]]
|
|
425
|
+
name = "hashbrown"
|
|
426
|
+
version = "0.17.1"
|
|
427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
428
|
+
checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
|
|
429
|
+
|
|
430
|
+
[[package]]
|
|
431
|
+
name = "http"
|
|
432
|
+
version = "1.4.0"
|
|
433
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
434
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
435
|
+
dependencies = [
|
|
436
|
+
"bytes",
|
|
437
|
+
"itoa",
|
|
438
|
+
]
|
|
439
|
+
|
|
440
|
+
[[package]]
|
|
441
|
+
name = "http-body"
|
|
442
|
+
version = "1.0.1"
|
|
443
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
444
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
445
|
+
dependencies = [
|
|
446
|
+
"bytes",
|
|
447
|
+
"http",
|
|
448
|
+
]
|
|
449
|
+
|
|
450
|
+
[[package]]
|
|
451
|
+
name = "http-body-util"
|
|
452
|
+
version = "0.1.3"
|
|
453
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
454
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
455
|
+
dependencies = [
|
|
456
|
+
"bytes",
|
|
457
|
+
"futures-core",
|
|
458
|
+
"http",
|
|
459
|
+
"http-body",
|
|
460
|
+
"pin-project-lite",
|
|
461
|
+
]
|
|
462
|
+
|
|
463
|
+
[[package]]
|
|
464
|
+
name = "http2"
|
|
465
|
+
version = "0.5.17"
|
|
466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
467
|
+
checksum = "569ef7a780e853c4e1768f58a3c8168193b82cdcbab66638a0b1c6583ec5995e"
|
|
468
|
+
dependencies = [
|
|
469
|
+
"atomic-waker",
|
|
470
|
+
"bytes",
|
|
471
|
+
"fnv",
|
|
472
|
+
"futures-core",
|
|
473
|
+
"futures-sink",
|
|
474
|
+
"http",
|
|
475
|
+
"indexmap",
|
|
476
|
+
"parking_lot",
|
|
477
|
+
"slab",
|
|
478
|
+
"smallvec",
|
|
479
|
+
"tokio",
|
|
480
|
+
"tokio-util",
|
|
481
|
+
]
|
|
482
|
+
|
|
483
|
+
[[package]]
|
|
484
|
+
name = "httparse"
|
|
485
|
+
version = "1.10.1"
|
|
486
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
487
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
488
|
+
|
|
489
|
+
[[package]]
|
|
490
|
+
name = "icu_collections"
|
|
491
|
+
version = "2.1.1"
|
|
492
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
493
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
494
|
+
dependencies = [
|
|
495
|
+
"displaydoc",
|
|
496
|
+
"potential_utf",
|
|
497
|
+
"yoke",
|
|
498
|
+
"zerofrom",
|
|
499
|
+
"zerovec",
|
|
500
|
+
]
|
|
501
|
+
|
|
502
|
+
[[package]]
|
|
503
|
+
name = "icu_locale_core"
|
|
504
|
+
version = "2.1.1"
|
|
505
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
506
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
507
|
+
dependencies = [
|
|
508
|
+
"displaydoc",
|
|
509
|
+
"litemap",
|
|
510
|
+
"tinystr",
|
|
511
|
+
"writeable",
|
|
512
|
+
"zerovec",
|
|
513
|
+
]
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "icu_normalizer"
|
|
517
|
+
version = "2.1.1"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"icu_collections",
|
|
522
|
+
"icu_normalizer_data",
|
|
523
|
+
"icu_properties",
|
|
524
|
+
"icu_provider",
|
|
525
|
+
"smallvec",
|
|
526
|
+
"zerovec",
|
|
527
|
+
]
|
|
528
|
+
|
|
529
|
+
[[package]]
|
|
530
|
+
name = "icu_normalizer_data"
|
|
531
|
+
version = "2.1.1"
|
|
532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
533
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
534
|
+
|
|
535
|
+
[[package]]
|
|
536
|
+
name = "icu_properties"
|
|
537
|
+
version = "2.1.2"
|
|
538
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
539
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
540
|
+
dependencies = [
|
|
541
|
+
"icu_collections",
|
|
542
|
+
"icu_locale_core",
|
|
543
|
+
"icu_properties_data",
|
|
544
|
+
"icu_provider",
|
|
545
|
+
"zerotrie",
|
|
546
|
+
"zerovec",
|
|
547
|
+
]
|
|
548
|
+
|
|
549
|
+
[[package]]
|
|
550
|
+
name = "icu_properties_data"
|
|
551
|
+
version = "2.1.2"
|
|
552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
553
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "icu_provider"
|
|
557
|
+
version = "2.1.1"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"displaydoc",
|
|
562
|
+
"icu_locale_core",
|
|
563
|
+
"writeable",
|
|
564
|
+
"yoke",
|
|
565
|
+
"zerofrom",
|
|
566
|
+
"zerotrie",
|
|
567
|
+
"zerovec",
|
|
568
|
+
]
|
|
569
|
+
|
|
570
|
+
[[package]]
|
|
571
|
+
name = "idna"
|
|
572
|
+
version = "1.1.0"
|
|
573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
574
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
575
|
+
dependencies = [
|
|
576
|
+
"idna_adapter",
|
|
577
|
+
"smallvec",
|
|
578
|
+
"utf8_iter",
|
|
579
|
+
]
|
|
580
|
+
|
|
581
|
+
[[package]]
|
|
582
|
+
name = "idna_adapter"
|
|
583
|
+
version = "1.2.1"
|
|
584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
585
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
586
|
+
dependencies = [
|
|
587
|
+
"icu_normalizer",
|
|
588
|
+
"icu_properties",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "indexmap"
|
|
593
|
+
version = "2.14.0"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"equivalent",
|
|
598
|
+
"hashbrown 0.17.1",
|
|
599
|
+
"serde",
|
|
600
|
+
"serde_core",
|
|
601
|
+
]
|
|
602
|
+
|
|
603
|
+
[[package]]
|
|
604
|
+
name = "ipnet"
|
|
605
|
+
version = "2.12.0"
|
|
606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
607
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
608
|
+
|
|
609
|
+
[[package]]
|
|
610
|
+
name = "itertools"
|
|
611
|
+
version = "0.13.0"
|
|
612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
613
|
+
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
|
|
614
|
+
dependencies = [
|
|
615
|
+
"either",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "itoa"
|
|
620
|
+
version = "1.0.18"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "jobserver"
|
|
626
|
+
version = "0.1.34"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"getrandom",
|
|
631
|
+
"libc",
|
|
632
|
+
]
|
|
633
|
+
|
|
634
|
+
[[package]]
|
|
635
|
+
name = "lazy_static"
|
|
636
|
+
version = "1.5.0"
|
|
637
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
638
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
639
|
+
|
|
640
|
+
[[package]]
|
|
641
|
+
name = "libc"
|
|
642
|
+
version = "0.2.186"
|
|
643
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
644
|
+
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
645
|
+
|
|
646
|
+
[[package]]
|
|
647
|
+
name = "libloading"
|
|
648
|
+
version = "0.8.9"
|
|
649
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
650
|
+
checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
|
|
651
|
+
dependencies = [
|
|
652
|
+
"cfg-if",
|
|
653
|
+
"windows-link",
|
|
654
|
+
]
|
|
655
|
+
|
|
656
|
+
[[package]]
|
|
657
|
+
name = "litemap"
|
|
658
|
+
version = "0.8.2"
|
|
659
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
660
|
+
checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
|
|
661
|
+
|
|
662
|
+
[[package]]
|
|
663
|
+
name = "lock_api"
|
|
664
|
+
version = "0.4.14"
|
|
665
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
666
|
+
checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
|
|
667
|
+
dependencies = [
|
|
668
|
+
"scopeguard",
|
|
669
|
+
]
|
|
670
|
+
|
|
671
|
+
[[package]]
|
|
672
|
+
name = "magnus"
|
|
673
|
+
version = "0.8.2"
|
|
674
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
675
|
+
checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
|
|
676
|
+
dependencies = [
|
|
677
|
+
"bytes",
|
|
678
|
+
"magnus-macros",
|
|
679
|
+
"rb-sys",
|
|
680
|
+
"rb-sys-env",
|
|
681
|
+
"seq-macro",
|
|
682
|
+
]
|
|
683
|
+
|
|
684
|
+
[[package]]
|
|
685
|
+
name = "magnus-macros"
|
|
686
|
+
version = "0.8.0"
|
|
687
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
688
|
+
checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
|
|
689
|
+
dependencies = [
|
|
690
|
+
"proc-macro2",
|
|
691
|
+
"quote",
|
|
692
|
+
"syn",
|
|
693
|
+
]
|
|
694
|
+
|
|
695
|
+
[[package]]
|
|
696
|
+
name = "memchr"
|
|
697
|
+
version = "2.8.0"
|
|
698
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
699
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
700
|
+
|
|
701
|
+
[[package]]
|
|
702
|
+
name = "mime"
|
|
703
|
+
version = "0.3.17"
|
|
704
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
705
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
706
|
+
|
|
707
|
+
[[package]]
|
|
708
|
+
name = "minimal-lexical"
|
|
709
|
+
version = "0.2.1"
|
|
710
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
711
|
+
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
712
|
+
|
|
713
|
+
[[package]]
|
|
714
|
+
name = "miniz_oxide"
|
|
715
|
+
version = "0.8.9"
|
|
716
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
717
|
+
checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
|
|
718
|
+
dependencies = [
|
|
719
|
+
"adler2",
|
|
720
|
+
"simd-adler32",
|
|
721
|
+
]
|
|
722
|
+
|
|
723
|
+
[[package]]
|
|
724
|
+
name = "mio"
|
|
725
|
+
version = "1.2.0"
|
|
726
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
727
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
728
|
+
dependencies = [
|
|
729
|
+
"libc",
|
|
730
|
+
"wasi",
|
|
731
|
+
"windows-sys",
|
|
732
|
+
]
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "nom"
|
|
736
|
+
version = "7.1.3"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
739
|
+
dependencies = [
|
|
740
|
+
"memchr",
|
|
741
|
+
"minimal-lexical",
|
|
742
|
+
]
|
|
743
|
+
|
|
744
|
+
[[package]]
|
|
745
|
+
name = "num-conv"
|
|
746
|
+
version = "0.1.0"
|
|
747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
748
|
+
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
|
|
749
|
+
|
|
750
|
+
[[package]]
|
|
751
|
+
name = "once_cell"
|
|
752
|
+
version = "1.21.4"
|
|
753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
754
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
755
|
+
|
|
756
|
+
[[package]]
|
|
757
|
+
name = "openssl-macros"
|
|
758
|
+
version = "0.1.1"
|
|
759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
760
|
+
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
|
761
|
+
dependencies = [
|
|
762
|
+
"proc-macro2",
|
|
763
|
+
"quote",
|
|
764
|
+
"syn",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "parking_lot"
|
|
769
|
+
version = "0.12.5"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
|
|
772
|
+
dependencies = [
|
|
773
|
+
"lock_api",
|
|
774
|
+
"parking_lot_core",
|
|
775
|
+
]
|
|
776
|
+
|
|
777
|
+
[[package]]
|
|
778
|
+
name = "parking_lot_core"
|
|
779
|
+
version = "0.9.12"
|
|
780
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
781
|
+
checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
|
|
782
|
+
dependencies = [
|
|
783
|
+
"cfg-if",
|
|
784
|
+
"libc",
|
|
785
|
+
"redox_syscall",
|
|
786
|
+
"smallvec",
|
|
787
|
+
"windows-link",
|
|
788
|
+
]
|
|
789
|
+
|
|
790
|
+
[[package]]
|
|
791
|
+
name = "percent-encoding"
|
|
792
|
+
version = "2.3.2"
|
|
793
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
794
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "pin-project-lite"
|
|
798
|
+
version = "0.2.17"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
801
|
+
|
|
802
|
+
[[package]]
|
|
803
|
+
name = "pkg-config"
|
|
804
|
+
version = "0.3.33"
|
|
805
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
806
|
+
checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
|
|
807
|
+
|
|
808
|
+
[[package]]
|
|
809
|
+
name = "potential_utf"
|
|
810
|
+
version = "0.1.5"
|
|
811
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
812
|
+
checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
|
|
813
|
+
dependencies = [
|
|
814
|
+
"zerovec",
|
|
815
|
+
]
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "powerfmt"
|
|
819
|
+
version = "0.2.0"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "proc-macro2"
|
|
825
|
+
version = "1.0.106"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"unicode-ident",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "quote"
|
|
834
|
+
version = "1.0.45"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"proc-macro2",
|
|
839
|
+
]
|
|
840
|
+
|
|
841
|
+
[[package]]
|
|
842
|
+
name = "r-efi"
|
|
843
|
+
version = "5.3.0"
|
|
844
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
845
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
846
|
+
|
|
847
|
+
[[package]]
|
|
848
|
+
name = "rb-sys"
|
|
849
|
+
version = "0.9.128"
|
|
850
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
851
|
+
checksum = "45ca28513560e56cfb79a62b1fce363c73af170a182024ce880c77ee9429920a"
|
|
852
|
+
dependencies = [
|
|
853
|
+
"rb-sys-build",
|
|
854
|
+
]
|
|
855
|
+
|
|
856
|
+
[[package]]
|
|
857
|
+
name = "rb-sys-build"
|
|
858
|
+
version = "0.9.128"
|
|
859
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
860
|
+
checksum = "ce04b2c55eff3a21aaa623fcc655d94373238e72cac6b3e1a3641ff31649f99a"
|
|
861
|
+
dependencies = [
|
|
862
|
+
"bindgen",
|
|
863
|
+
"lazy_static",
|
|
864
|
+
"proc-macro2",
|
|
865
|
+
"quote",
|
|
866
|
+
"regex",
|
|
867
|
+
"shell-words",
|
|
868
|
+
"syn",
|
|
869
|
+
]
|
|
870
|
+
|
|
871
|
+
[[package]]
|
|
872
|
+
name = "rb-sys-env"
|
|
873
|
+
version = "0.2.3"
|
|
874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
875
|
+
checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
|
|
876
|
+
|
|
877
|
+
[[package]]
|
|
878
|
+
name = "redox_syscall"
|
|
879
|
+
version = "0.5.18"
|
|
880
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
881
|
+
checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
|
|
882
|
+
dependencies = [
|
|
883
|
+
"bitflags",
|
|
884
|
+
]
|
|
885
|
+
|
|
886
|
+
[[package]]
|
|
887
|
+
name = "regex"
|
|
888
|
+
version = "1.12.3"
|
|
889
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
890
|
+
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
891
|
+
dependencies = [
|
|
892
|
+
"aho-corasick",
|
|
893
|
+
"memchr",
|
|
894
|
+
"regex-automata",
|
|
895
|
+
"regex-syntax",
|
|
896
|
+
]
|
|
897
|
+
|
|
898
|
+
[[package]]
|
|
899
|
+
name = "regex-automata"
|
|
900
|
+
version = "0.4.14"
|
|
901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
902
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
903
|
+
dependencies = [
|
|
904
|
+
"aho-corasick",
|
|
905
|
+
"memchr",
|
|
906
|
+
"regex-syntax",
|
|
907
|
+
]
|
|
908
|
+
|
|
909
|
+
[[package]]
|
|
910
|
+
name = "regex-syntax"
|
|
911
|
+
version = "0.8.10"
|
|
912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
913
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
914
|
+
|
|
915
|
+
[[package]]
|
|
916
|
+
name = "rustc-hash"
|
|
917
|
+
version = "2.1.2"
|
|
918
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
919
|
+
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
920
|
+
|
|
921
|
+
[[package]]
|
|
922
|
+
name = "rustls-pki-types"
|
|
923
|
+
version = "1.14.1"
|
|
924
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
925
|
+
checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
|
|
926
|
+
|
|
927
|
+
[[package]]
|
|
928
|
+
name = "rustversion"
|
|
929
|
+
version = "1.0.22"
|
|
930
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
931
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
932
|
+
|
|
933
|
+
[[package]]
|
|
934
|
+
name = "ryu"
|
|
935
|
+
version = "1.0.23"
|
|
936
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
937
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
938
|
+
|
|
939
|
+
[[package]]
|
|
940
|
+
name = "schnellru"
|
|
941
|
+
version = "0.2.4"
|
|
942
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
943
|
+
checksum = "356285bbf17bea63d9e52e96bd18f039672ac92b55b8cb997d6162a2a37d1649"
|
|
944
|
+
dependencies = [
|
|
945
|
+
"ahash",
|
|
946
|
+
"cfg-if",
|
|
947
|
+
"hashbrown 0.13.2",
|
|
948
|
+
]
|
|
949
|
+
|
|
950
|
+
[[package]]
|
|
951
|
+
name = "scopeguard"
|
|
952
|
+
version = "1.2.0"
|
|
953
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
954
|
+
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
955
|
+
|
|
956
|
+
[[package]]
|
|
957
|
+
name = "seq-macro"
|
|
958
|
+
version = "0.3.6"
|
|
959
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
960
|
+
checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "serde"
|
|
964
|
+
version = "1.0.228"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"serde_core",
|
|
969
|
+
"serde_derive",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "serde_core"
|
|
974
|
+
version = "1.0.228"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"serde_derive",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "serde_derive"
|
|
983
|
+
version = "1.0.228"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"proc-macro2",
|
|
988
|
+
"quote",
|
|
989
|
+
"syn",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "serde_json"
|
|
994
|
+
version = "1.0.149"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
997
|
+
dependencies = [
|
|
998
|
+
"itoa",
|
|
999
|
+
"memchr",
|
|
1000
|
+
"serde",
|
|
1001
|
+
"serde_core",
|
|
1002
|
+
"zmij",
|
|
1003
|
+
]
|
|
1004
|
+
|
|
1005
|
+
[[package]]
|
|
1006
|
+
name = "serde_magnus"
|
|
1007
|
+
version = "0.11.0"
|
|
1008
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1009
|
+
checksum = "8ff64c88ddd26acdcad5a501f18bcc339927b77b69f4a03bfaf2a6fc5ba2ac4b"
|
|
1010
|
+
dependencies = [
|
|
1011
|
+
"magnus",
|
|
1012
|
+
"serde",
|
|
1013
|
+
"tap",
|
|
1014
|
+
]
|
|
1015
|
+
|
|
1016
|
+
[[package]]
|
|
1017
|
+
name = "serde_urlencoded"
|
|
1018
|
+
version = "0.7.1"
|
|
1019
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1020
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1021
|
+
dependencies = [
|
|
1022
|
+
"form_urlencoded",
|
|
1023
|
+
"itoa",
|
|
1024
|
+
"ryu",
|
|
1025
|
+
"serde",
|
|
1026
|
+
]
|
|
1027
|
+
|
|
1028
|
+
[[package]]
|
|
1029
|
+
name = "shell-words"
|
|
1030
|
+
version = "1.1.1"
|
|
1031
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1032
|
+
checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
|
|
1033
|
+
|
|
1034
|
+
[[package]]
|
|
1035
|
+
name = "shlex"
|
|
1036
|
+
version = "1.3.0"
|
|
1037
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1038
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1039
|
+
|
|
1040
|
+
[[package]]
|
|
1041
|
+
name = "signal-hook-registry"
|
|
1042
|
+
version = "1.4.8"
|
|
1043
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1044
|
+
checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
|
|
1045
|
+
dependencies = [
|
|
1046
|
+
"errno",
|
|
1047
|
+
"libc",
|
|
1048
|
+
]
|
|
1049
|
+
|
|
1050
|
+
[[package]]
|
|
1051
|
+
name = "simd-adler32"
|
|
1052
|
+
version = "0.3.9"
|
|
1053
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1054
|
+
checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
|
|
1055
|
+
|
|
1056
|
+
[[package]]
|
|
1057
|
+
name = "slab"
|
|
1058
|
+
version = "0.4.12"
|
|
1059
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1060
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1061
|
+
|
|
1062
|
+
[[package]]
|
|
1063
|
+
name = "smallvec"
|
|
1064
|
+
version = "1.15.1"
|
|
1065
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1066
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1067
|
+
|
|
1068
|
+
[[package]]
|
|
1069
|
+
name = "socket2"
|
|
1070
|
+
version = "0.6.3"
|
|
1071
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1072
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1073
|
+
dependencies = [
|
|
1074
|
+
"libc",
|
|
1075
|
+
"windows-sys",
|
|
1076
|
+
]
|
|
1077
|
+
|
|
1078
|
+
[[package]]
|
|
1079
|
+
name = "stable_deref_trait"
|
|
1080
|
+
version = "1.2.1"
|
|
1081
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1082
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1083
|
+
|
|
1084
|
+
[[package]]
|
|
1085
|
+
name = "syn"
|
|
1086
|
+
version = "2.0.117"
|
|
1087
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1088
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1089
|
+
dependencies = [
|
|
1090
|
+
"proc-macro2",
|
|
1091
|
+
"quote",
|
|
1092
|
+
"unicode-ident",
|
|
1093
|
+
]
|
|
1094
|
+
|
|
1095
|
+
[[package]]
|
|
1096
|
+
name = "sync_wrapper"
|
|
1097
|
+
version = "1.0.2"
|
|
1098
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1099
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1100
|
+
dependencies = [
|
|
1101
|
+
"futures-core",
|
|
1102
|
+
]
|
|
1103
|
+
|
|
1104
|
+
[[package]]
|
|
1105
|
+
name = "synstructure"
|
|
1106
|
+
version = "0.13.2"
|
|
1107
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1108
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1109
|
+
dependencies = [
|
|
1110
|
+
"proc-macro2",
|
|
1111
|
+
"quote",
|
|
1112
|
+
"syn",
|
|
1113
|
+
]
|
|
1114
|
+
|
|
1115
|
+
[[package]]
|
|
1116
|
+
name = "tap"
|
|
1117
|
+
version = "1.0.1"
|
|
1118
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1119
|
+
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
1120
|
+
|
|
1121
|
+
[[package]]
|
|
1122
|
+
name = "thiserror"
|
|
1123
|
+
version = "1.0.69"
|
|
1124
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1125
|
+
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
|
1126
|
+
dependencies = [
|
|
1127
|
+
"thiserror-impl",
|
|
1128
|
+
]
|
|
1129
|
+
|
|
1130
|
+
[[package]]
|
|
1131
|
+
name = "thiserror-impl"
|
|
1132
|
+
version = "1.0.69"
|
|
1133
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1134
|
+
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
|
1135
|
+
dependencies = [
|
|
1136
|
+
"proc-macro2",
|
|
1137
|
+
"quote",
|
|
1138
|
+
"syn",
|
|
1139
|
+
]
|
|
1140
|
+
|
|
1141
|
+
[[package]]
|
|
1142
|
+
name = "time"
|
|
1143
|
+
version = "0.3.45"
|
|
1144
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1145
|
+
checksum = "f9e442fc33d7fdb45aa9bfeb312c095964abdf596f7567261062b2a7107aaabd"
|
|
1146
|
+
dependencies = [
|
|
1147
|
+
"deranged",
|
|
1148
|
+
"itoa",
|
|
1149
|
+
"num-conv",
|
|
1150
|
+
"powerfmt",
|
|
1151
|
+
"serde_core",
|
|
1152
|
+
"time-core",
|
|
1153
|
+
"time-macros",
|
|
1154
|
+
]
|
|
1155
|
+
|
|
1156
|
+
[[package]]
|
|
1157
|
+
name = "time-core"
|
|
1158
|
+
version = "0.1.7"
|
|
1159
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1160
|
+
checksum = "8b36ee98fd31ec7426d599183e8fe26932a8dc1fb76ddb6214d05493377d34ca"
|
|
1161
|
+
|
|
1162
|
+
[[package]]
|
|
1163
|
+
name = "time-macros"
|
|
1164
|
+
version = "0.2.25"
|
|
1165
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1166
|
+
checksum = "71e552d1249bf61ac2a52db88179fd0673def1e1ad8243a00d9ec9ed71fee3dd"
|
|
1167
|
+
dependencies = [
|
|
1168
|
+
"num-conv",
|
|
1169
|
+
"time-core",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "tinystr"
|
|
1174
|
+
version = "0.8.3"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"displaydoc",
|
|
1179
|
+
"zerovec",
|
|
1180
|
+
]
|
|
1181
|
+
|
|
1182
|
+
[[package]]
|
|
1183
|
+
name = "tokio"
|
|
1184
|
+
version = "1.52.3"
|
|
1185
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1186
|
+
checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
|
|
1187
|
+
dependencies = [
|
|
1188
|
+
"bytes",
|
|
1189
|
+
"libc",
|
|
1190
|
+
"mio",
|
|
1191
|
+
"parking_lot",
|
|
1192
|
+
"pin-project-lite",
|
|
1193
|
+
"signal-hook-registry",
|
|
1194
|
+
"socket2",
|
|
1195
|
+
"tokio-macros",
|
|
1196
|
+
"windows-sys",
|
|
1197
|
+
]
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "tokio-boring2"
|
|
1201
|
+
version = "5.0.0-alpha.13"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "0f81df1210d791f31d72d840de8fbd80b9c3cb324956523048b1413e2bd55756"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"boring2",
|
|
1206
|
+
"tokio",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "tokio-macros"
|
|
1211
|
+
version = "2.7.0"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
|
|
1214
|
+
dependencies = [
|
|
1215
|
+
"proc-macro2",
|
|
1216
|
+
"quote",
|
|
1217
|
+
"syn",
|
|
1218
|
+
]
|
|
1219
|
+
|
|
1220
|
+
[[package]]
|
|
1221
|
+
name = "tokio-socks"
|
|
1222
|
+
version = "0.5.2"
|
|
1223
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1224
|
+
checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
|
|
1225
|
+
dependencies = [
|
|
1226
|
+
"either",
|
|
1227
|
+
"futures-util",
|
|
1228
|
+
"thiserror",
|
|
1229
|
+
"tokio",
|
|
1230
|
+
]
|
|
1231
|
+
|
|
1232
|
+
[[package]]
|
|
1233
|
+
name = "tokio-util"
|
|
1234
|
+
version = "0.7.18"
|
|
1235
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1236
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1237
|
+
dependencies = [
|
|
1238
|
+
"bytes",
|
|
1239
|
+
"futures-core",
|
|
1240
|
+
"futures-sink",
|
|
1241
|
+
"pin-project-lite",
|
|
1242
|
+
"tokio",
|
|
1243
|
+
]
|
|
1244
|
+
|
|
1245
|
+
[[package]]
|
|
1246
|
+
name = "tower"
|
|
1247
|
+
version = "0.5.3"
|
|
1248
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1249
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1250
|
+
dependencies = [
|
|
1251
|
+
"futures-core",
|
|
1252
|
+
"futures-util",
|
|
1253
|
+
"pin-project-lite",
|
|
1254
|
+
"sync_wrapper",
|
|
1255
|
+
"tokio",
|
|
1256
|
+
"tower-layer",
|
|
1257
|
+
"tower-service",
|
|
1258
|
+
]
|
|
1259
|
+
|
|
1260
|
+
[[package]]
|
|
1261
|
+
name = "tower-http"
|
|
1262
|
+
version = "0.6.10"
|
|
1263
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1264
|
+
checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51"
|
|
1265
|
+
dependencies = [
|
|
1266
|
+
"async-compression",
|
|
1267
|
+
"bitflags",
|
|
1268
|
+
"bytes",
|
|
1269
|
+
"futures-core",
|
|
1270
|
+
"http",
|
|
1271
|
+
"http-body",
|
|
1272
|
+
"http-body-util",
|
|
1273
|
+
"pin-project-lite",
|
|
1274
|
+
"tokio",
|
|
1275
|
+
"tokio-util",
|
|
1276
|
+
"tower-layer",
|
|
1277
|
+
"tower-service",
|
|
1278
|
+
]
|
|
1279
|
+
|
|
1280
|
+
[[package]]
|
|
1281
|
+
name = "tower-layer"
|
|
1282
|
+
version = "0.3.3"
|
|
1283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1284
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1285
|
+
|
|
1286
|
+
[[package]]
|
|
1287
|
+
name = "tower-service"
|
|
1288
|
+
version = "0.3.3"
|
|
1289
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1290
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1291
|
+
|
|
1292
|
+
[[package]]
|
|
1293
|
+
name = "try-lock"
|
|
1294
|
+
version = "0.2.5"
|
|
1295
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1296
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1297
|
+
|
|
1298
|
+
[[package]]
|
|
1299
|
+
name = "typed-builder"
|
|
1300
|
+
version = "0.23.2"
|
|
1301
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1302
|
+
checksum = "31aa81521b70f94402501d848ccc0ecaa8f93c8eb6999eb9747e72287757ffda"
|
|
1303
|
+
dependencies = [
|
|
1304
|
+
"typed-builder-macro",
|
|
1305
|
+
]
|
|
1306
|
+
|
|
1307
|
+
[[package]]
|
|
1308
|
+
name = "typed-builder-macro"
|
|
1309
|
+
version = "0.23.2"
|
|
1310
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1311
|
+
checksum = "076a02dc54dd46795c2e9c8282ed40bcfb1e22747e955de9389a1de28190fb26"
|
|
1312
|
+
dependencies = [
|
|
1313
|
+
"proc-macro2",
|
|
1314
|
+
"quote",
|
|
1315
|
+
"syn",
|
|
1316
|
+
]
|
|
1317
|
+
|
|
1318
|
+
[[package]]
|
|
1319
|
+
name = "unicode-ident"
|
|
1320
|
+
version = "1.0.24"
|
|
1321
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1322
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1323
|
+
|
|
1324
|
+
[[package]]
|
|
1325
|
+
name = "url"
|
|
1326
|
+
version = "2.5.8"
|
|
1327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1328
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1329
|
+
dependencies = [
|
|
1330
|
+
"form_urlencoded",
|
|
1331
|
+
"idna",
|
|
1332
|
+
"percent-encoding",
|
|
1333
|
+
"serde",
|
|
1334
|
+
]
|
|
1335
|
+
|
|
1336
|
+
[[package]]
|
|
1337
|
+
name = "utf8_iter"
|
|
1338
|
+
version = "1.0.4"
|
|
1339
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1340
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1341
|
+
|
|
1342
|
+
[[package]]
|
|
1343
|
+
name = "version_check"
|
|
1344
|
+
version = "0.9.5"
|
|
1345
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1346
|
+
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "want"
|
|
1350
|
+
version = "0.3.1"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"try-lock",
|
|
1355
|
+
]
|
|
1356
|
+
|
|
1357
|
+
[[package]]
|
|
1358
|
+
name = "wasi"
|
|
1359
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1360
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1361
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1362
|
+
|
|
1363
|
+
[[package]]
|
|
1364
|
+
name = "wasip2"
|
|
1365
|
+
version = "1.0.1+wasi-0.2.4"
|
|
1366
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1367
|
+
checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
|
|
1368
|
+
dependencies = [
|
|
1369
|
+
"wit-bindgen",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "webpki-root-certs"
|
|
1374
|
+
version = "1.0.7"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "f31141ce3fc3e300ae89b78c0dd67f9708061d1d2eda54b8209346fd6be9a92c"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"rustls-pki-types",
|
|
1379
|
+
]
|
|
1380
|
+
|
|
1381
|
+
[[package]]
|
|
1382
|
+
name = "winapi"
|
|
1383
|
+
version = "0.3.9"
|
|
1384
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1385
|
+
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
1386
|
+
dependencies = [
|
|
1387
|
+
"winapi-i686-pc-windows-gnu",
|
|
1388
|
+
"winapi-x86_64-pc-windows-gnu",
|
|
1389
|
+
]
|
|
1390
|
+
|
|
1391
|
+
[[package]]
|
|
1392
|
+
name = "winapi-i686-pc-windows-gnu"
|
|
1393
|
+
version = "0.4.0"
|
|
1394
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1395
|
+
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
1396
|
+
|
|
1397
|
+
[[package]]
|
|
1398
|
+
name = "winapi-x86_64-pc-windows-gnu"
|
|
1399
|
+
version = "0.4.0"
|
|
1400
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1401
|
+
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
1402
|
+
|
|
1403
|
+
[[package]]
|
|
1404
|
+
name = "windows-link"
|
|
1405
|
+
version = "0.2.1"
|
|
1406
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1407
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1408
|
+
|
|
1409
|
+
[[package]]
|
|
1410
|
+
name = "windows-sys"
|
|
1411
|
+
version = "0.61.2"
|
|
1412
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1413
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1414
|
+
dependencies = [
|
|
1415
|
+
"windows-link",
|
|
1416
|
+
]
|
|
1417
|
+
|
|
1418
|
+
[[package]]
|
|
1419
|
+
name = "wit-bindgen"
|
|
1420
|
+
version = "0.46.0"
|
|
1421
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1422
|
+
checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
|
|
1423
|
+
|
|
1424
|
+
[[package]]
|
|
1425
|
+
name = "wreq"
|
|
1426
|
+
version = "6.0.0-rc.28"
|
|
1427
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1428
|
+
checksum = "f79937f6c4df65b3f6f78715b9de2977afe9ee3b3436483c7949a24511e25935"
|
|
1429
|
+
dependencies = [
|
|
1430
|
+
"ahash",
|
|
1431
|
+
"boring2",
|
|
1432
|
+
"brotli",
|
|
1433
|
+
"bytes",
|
|
1434
|
+
"cookie",
|
|
1435
|
+
"encoding_rs",
|
|
1436
|
+
"flate2",
|
|
1437
|
+
"futures-channel",
|
|
1438
|
+
"futures-util",
|
|
1439
|
+
"http",
|
|
1440
|
+
"http-body",
|
|
1441
|
+
"http-body-util",
|
|
1442
|
+
"http2",
|
|
1443
|
+
"httparse",
|
|
1444
|
+
"ipnet",
|
|
1445
|
+
"libc",
|
|
1446
|
+
"mime",
|
|
1447
|
+
"percent-encoding",
|
|
1448
|
+
"pin-project-lite",
|
|
1449
|
+
"schnellru",
|
|
1450
|
+
"serde",
|
|
1451
|
+
"serde_json",
|
|
1452
|
+
"serde_urlencoded",
|
|
1453
|
+
"smallvec",
|
|
1454
|
+
"socket2",
|
|
1455
|
+
"sync_wrapper",
|
|
1456
|
+
"tokio",
|
|
1457
|
+
"tokio-boring2",
|
|
1458
|
+
"tokio-socks",
|
|
1459
|
+
"tokio-util",
|
|
1460
|
+
"tower",
|
|
1461
|
+
"tower-http",
|
|
1462
|
+
"url",
|
|
1463
|
+
"want",
|
|
1464
|
+
"webpki-root-certs",
|
|
1465
|
+
"zstd",
|
|
1466
|
+
]
|
|
1467
|
+
|
|
1468
|
+
[[package]]
|
|
1469
|
+
name = "wreq-ruby"
|
|
1470
|
+
version = "1.1.0"
|
|
1471
|
+
dependencies = [
|
|
1472
|
+
"arc-swap",
|
|
1473
|
+
"bytes",
|
|
1474
|
+
"cookie",
|
|
1475
|
+
"futures-util",
|
|
1476
|
+
"http",
|
|
1477
|
+
"http-body-util",
|
|
1478
|
+
"indexmap",
|
|
1479
|
+
"magnus",
|
|
1480
|
+
"percent-encoding",
|
|
1481
|
+
"rb-sys",
|
|
1482
|
+
"rb-sys-env",
|
|
1483
|
+
"serde",
|
|
1484
|
+
"serde_magnus",
|
|
1485
|
+
"tokio",
|
|
1486
|
+
"wreq",
|
|
1487
|
+
"wreq-util",
|
|
1488
|
+
]
|
|
1489
|
+
|
|
1490
|
+
[[package]]
|
|
1491
|
+
name = "wreq-util"
|
|
1492
|
+
version = "3.0.0-rc.11"
|
|
1493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1494
|
+
checksum = "b51558351cf26c9a5daeabf5df5bfab13f1666fa783ad7ddb9a573e04d7fae0a"
|
|
1495
|
+
dependencies = [
|
|
1496
|
+
"typed-builder",
|
|
1497
|
+
"wreq",
|
|
1498
|
+
]
|
|
1499
|
+
|
|
1500
|
+
[[package]]
|
|
1501
|
+
name = "writeable"
|
|
1502
|
+
version = "0.6.3"
|
|
1503
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1504
|
+
checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
|
|
1505
|
+
|
|
1506
|
+
[[package]]
|
|
1507
|
+
name = "yoke"
|
|
1508
|
+
version = "0.8.2"
|
|
1509
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1510
|
+
checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
|
|
1511
|
+
dependencies = [
|
|
1512
|
+
"stable_deref_trait",
|
|
1513
|
+
"yoke-derive",
|
|
1514
|
+
"zerofrom",
|
|
1515
|
+
]
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "yoke-derive"
|
|
1519
|
+
version = "0.8.2"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
|
|
1522
|
+
dependencies = [
|
|
1523
|
+
"proc-macro2",
|
|
1524
|
+
"quote",
|
|
1525
|
+
"syn",
|
|
1526
|
+
"synstructure",
|
|
1527
|
+
]
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "zerocopy"
|
|
1531
|
+
version = "0.8.48"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"zerocopy-derive",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "zerocopy-derive"
|
|
1540
|
+
version = "0.8.48"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
1543
|
+
dependencies = [
|
|
1544
|
+
"proc-macro2",
|
|
1545
|
+
"quote",
|
|
1546
|
+
"syn",
|
|
1547
|
+
]
|
|
1548
|
+
|
|
1549
|
+
[[package]]
|
|
1550
|
+
name = "zerofrom"
|
|
1551
|
+
version = "0.1.8"
|
|
1552
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1553
|
+
checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
|
|
1554
|
+
dependencies = [
|
|
1555
|
+
"zerofrom-derive",
|
|
1556
|
+
]
|
|
1557
|
+
|
|
1558
|
+
[[package]]
|
|
1559
|
+
name = "zerofrom-derive"
|
|
1560
|
+
version = "0.1.7"
|
|
1561
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1562
|
+
checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
|
|
1563
|
+
dependencies = [
|
|
1564
|
+
"proc-macro2",
|
|
1565
|
+
"quote",
|
|
1566
|
+
"syn",
|
|
1567
|
+
"synstructure",
|
|
1568
|
+
]
|
|
1569
|
+
|
|
1570
|
+
[[package]]
|
|
1571
|
+
name = "zerotrie"
|
|
1572
|
+
version = "0.2.4"
|
|
1573
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1574
|
+
checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
|
|
1575
|
+
dependencies = [
|
|
1576
|
+
"displaydoc",
|
|
1577
|
+
"yoke",
|
|
1578
|
+
"zerofrom",
|
|
1579
|
+
]
|
|
1580
|
+
|
|
1581
|
+
[[package]]
|
|
1582
|
+
name = "zerovec"
|
|
1583
|
+
version = "0.11.6"
|
|
1584
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1585
|
+
checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
|
|
1586
|
+
dependencies = [
|
|
1587
|
+
"yoke",
|
|
1588
|
+
"zerofrom",
|
|
1589
|
+
"zerovec-derive",
|
|
1590
|
+
]
|
|
1591
|
+
|
|
1592
|
+
[[package]]
|
|
1593
|
+
name = "zerovec-derive"
|
|
1594
|
+
version = "0.11.3"
|
|
1595
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1596
|
+
checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
|
|
1597
|
+
dependencies = [
|
|
1598
|
+
"proc-macro2",
|
|
1599
|
+
"quote",
|
|
1600
|
+
"syn",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "zmij"
|
|
1605
|
+
version = "1.0.21"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|
|
1608
|
+
|
|
1609
|
+
[[package]]
|
|
1610
|
+
name = "zstd"
|
|
1611
|
+
version = "0.13.3"
|
|
1612
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1613
|
+
checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
|
|
1614
|
+
dependencies = [
|
|
1615
|
+
"zstd-safe",
|
|
1616
|
+
]
|
|
1617
|
+
|
|
1618
|
+
[[package]]
|
|
1619
|
+
name = "zstd-safe"
|
|
1620
|
+
version = "7.2.4"
|
|
1621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1622
|
+
checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
|
|
1623
|
+
dependencies = [
|
|
1624
|
+
"zstd-sys",
|
|
1625
|
+
]
|
|
1626
|
+
|
|
1627
|
+
[[package]]
|
|
1628
|
+
name = "zstd-sys"
|
|
1629
|
+
version = "2.0.16+zstd.1.5.7"
|
|
1630
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1631
|
+
checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
|
|
1632
|
+
dependencies = [
|
|
1633
|
+
"cc",
|
|
1634
|
+
"pkg-config",
|
|
1635
|
+
]
|