@mmmbuto/anthmorph 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Cargo.lock +1935 -0
- package/Cargo.toml +61 -0
- package/LICENSE +21 -0
- package/README.md +184 -0
- package/bin/anthmorph +22 -0
- package/package.json +52 -0
- package/scripts/anthmorphctl +456 -0
- package/scripts/postinstall.js +23 -0
- package/scripts/smoke_test.sh +72 -0
- package/src/config.rs +39 -0
- package/src/error.rs +54 -0
- package/src/main.rs +120 -0
- package/src/models/anthropic.rs +274 -0
- package/src/models/mod.rs +2 -0
- package/src/models/openai.rs +230 -0
- package/src/proxy.rs +829 -0
- package/src/transform.rs +460 -0
- package/tests/real_backends.rs +213 -0
package/Cargo.lock
ADDED
|
@@ -0,0 +1,1935 @@
|
|
|
1
|
+
# This file is automatically @generated by Cargo.
|
|
2
|
+
# It is not intended for manual editing.
|
|
3
|
+
version = 4
|
|
4
|
+
|
|
5
|
+
[[package]]
|
|
6
|
+
name = "AnthMorph"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
dependencies = [
|
|
9
|
+
"anyhow",
|
|
10
|
+
"async-stream",
|
|
11
|
+
"axum",
|
|
12
|
+
"bytes",
|
|
13
|
+
"clap",
|
|
14
|
+
"dotenvy",
|
|
15
|
+
"futures",
|
|
16
|
+
"pin-project",
|
|
17
|
+
"reqwest",
|
|
18
|
+
"serde",
|
|
19
|
+
"serde_json",
|
|
20
|
+
"thiserror",
|
|
21
|
+
"tokio",
|
|
22
|
+
"tokio-stream",
|
|
23
|
+
"tower",
|
|
24
|
+
"tower-http",
|
|
25
|
+
"tracing",
|
|
26
|
+
"tracing-subscriber",
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "aho-corasick"
|
|
31
|
+
version = "1.1.4"
|
|
32
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
33
|
+
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
34
|
+
dependencies = [
|
|
35
|
+
"memchr",
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "anstream"
|
|
40
|
+
version = "1.0.0"
|
|
41
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
42
|
+
checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
|
|
43
|
+
dependencies = [
|
|
44
|
+
"anstyle",
|
|
45
|
+
"anstyle-parse",
|
|
46
|
+
"anstyle-query",
|
|
47
|
+
"anstyle-wincon",
|
|
48
|
+
"colorchoice",
|
|
49
|
+
"is_terminal_polyfill",
|
|
50
|
+
"utf8parse",
|
|
51
|
+
]
|
|
52
|
+
|
|
53
|
+
[[package]]
|
|
54
|
+
name = "anstyle"
|
|
55
|
+
version = "1.0.14"
|
|
56
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
57
|
+
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
58
|
+
|
|
59
|
+
[[package]]
|
|
60
|
+
name = "anstyle-parse"
|
|
61
|
+
version = "1.0.0"
|
|
62
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
63
|
+
checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
|
|
64
|
+
dependencies = [
|
|
65
|
+
"utf8parse",
|
|
66
|
+
]
|
|
67
|
+
|
|
68
|
+
[[package]]
|
|
69
|
+
name = "anstyle-query"
|
|
70
|
+
version = "1.1.5"
|
|
71
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
72
|
+
checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
|
|
73
|
+
dependencies = [
|
|
74
|
+
"windows-sys 0.61.2",
|
|
75
|
+
]
|
|
76
|
+
|
|
77
|
+
[[package]]
|
|
78
|
+
name = "anstyle-wincon"
|
|
79
|
+
version = "3.0.11"
|
|
80
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
81
|
+
checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
|
|
82
|
+
dependencies = [
|
|
83
|
+
"anstyle",
|
|
84
|
+
"once_cell_polyfill",
|
|
85
|
+
"windows-sys 0.61.2",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
[[package]]
|
|
89
|
+
name = "anyhow"
|
|
90
|
+
version = "1.0.102"
|
|
91
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
92
|
+
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
93
|
+
|
|
94
|
+
[[package]]
|
|
95
|
+
name = "async-stream"
|
|
96
|
+
version = "0.3.6"
|
|
97
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
98
|
+
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
|
|
99
|
+
dependencies = [
|
|
100
|
+
"async-stream-impl",
|
|
101
|
+
"futures-core",
|
|
102
|
+
"pin-project-lite",
|
|
103
|
+
]
|
|
104
|
+
|
|
105
|
+
[[package]]
|
|
106
|
+
name = "async-stream-impl"
|
|
107
|
+
version = "0.3.6"
|
|
108
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
109
|
+
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
|
|
110
|
+
dependencies = [
|
|
111
|
+
"proc-macro2",
|
|
112
|
+
"quote",
|
|
113
|
+
"syn",
|
|
114
|
+
]
|
|
115
|
+
|
|
116
|
+
[[package]]
|
|
117
|
+
name = "async-trait"
|
|
118
|
+
version = "0.1.89"
|
|
119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
120
|
+
checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
|
|
121
|
+
dependencies = [
|
|
122
|
+
"proc-macro2",
|
|
123
|
+
"quote",
|
|
124
|
+
"syn",
|
|
125
|
+
]
|
|
126
|
+
|
|
127
|
+
[[package]]
|
|
128
|
+
name = "atomic-waker"
|
|
129
|
+
version = "1.1.2"
|
|
130
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
131
|
+
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
|
132
|
+
|
|
133
|
+
[[package]]
|
|
134
|
+
name = "axum"
|
|
135
|
+
version = "0.7.9"
|
|
136
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
137
|
+
checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
|
|
138
|
+
dependencies = [
|
|
139
|
+
"async-trait",
|
|
140
|
+
"axum-core",
|
|
141
|
+
"bytes",
|
|
142
|
+
"futures-util",
|
|
143
|
+
"http",
|
|
144
|
+
"http-body",
|
|
145
|
+
"http-body-util",
|
|
146
|
+
"hyper",
|
|
147
|
+
"hyper-util",
|
|
148
|
+
"itoa",
|
|
149
|
+
"matchit",
|
|
150
|
+
"memchr",
|
|
151
|
+
"mime",
|
|
152
|
+
"percent-encoding",
|
|
153
|
+
"pin-project-lite",
|
|
154
|
+
"rustversion",
|
|
155
|
+
"serde",
|
|
156
|
+
"serde_json",
|
|
157
|
+
"serde_path_to_error",
|
|
158
|
+
"serde_urlencoded",
|
|
159
|
+
"sync_wrapper",
|
|
160
|
+
"tokio",
|
|
161
|
+
"tower",
|
|
162
|
+
"tower-layer",
|
|
163
|
+
"tower-service",
|
|
164
|
+
"tracing",
|
|
165
|
+
]
|
|
166
|
+
|
|
167
|
+
[[package]]
|
|
168
|
+
name = "axum-core"
|
|
169
|
+
version = "0.4.5"
|
|
170
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
171
|
+
checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
|
|
172
|
+
dependencies = [
|
|
173
|
+
"async-trait",
|
|
174
|
+
"bytes",
|
|
175
|
+
"futures-util",
|
|
176
|
+
"http",
|
|
177
|
+
"http-body",
|
|
178
|
+
"http-body-util",
|
|
179
|
+
"mime",
|
|
180
|
+
"pin-project-lite",
|
|
181
|
+
"rustversion",
|
|
182
|
+
"sync_wrapper",
|
|
183
|
+
"tower-layer",
|
|
184
|
+
"tower-service",
|
|
185
|
+
"tracing",
|
|
186
|
+
]
|
|
187
|
+
|
|
188
|
+
[[package]]
|
|
189
|
+
name = "base64"
|
|
190
|
+
version = "0.22.1"
|
|
191
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
192
|
+
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
193
|
+
|
|
194
|
+
[[package]]
|
|
195
|
+
name = "bitflags"
|
|
196
|
+
version = "2.11.0"
|
|
197
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
198
|
+
checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
|
|
199
|
+
|
|
200
|
+
[[package]]
|
|
201
|
+
name = "bumpalo"
|
|
202
|
+
version = "3.20.2"
|
|
203
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
204
|
+
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
205
|
+
|
|
206
|
+
[[package]]
|
|
207
|
+
name = "bytes"
|
|
208
|
+
version = "1.11.1"
|
|
209
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
210
|
+
checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
|
|
211
|
+
|
|
212
|
+
[[package]]
|
|
213
|
+
name = "cc"
|
|
214
|
+
version = "1.2.58"
|
|
215
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
216
|
+
checksum = "e1e928d4b69e3077709075a938a05ffbedfa53a84c8f766efbf8220bb1ff60e1"
|
|
217
|
+
dependencies = [
|
|
218
|
+
"find-msvc-tools",
|
|
219
|
+
"shlex",
|
|
220
|
+
]
|
|
221
|
+
|
|
222
|
+
[[package]]
|
|
223
|
+
name = "cfg-if"
|
|
224
|
+
version = "1.0.4"
|
|
225
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
226
|
+
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
227
|
+
|
|
228
|
+
[[package]]
|
|
229
|
+
name = "cfg_aliases"
|
|
230
|
+
version = "0.2.1"
|
|
231
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
232
|
+
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
|
|
233
|
+
|
|
234
|
+
[[package]]
|
|
235
|
+
name = "clap"
|
|
236
|
+
version = "4.6.0"
|
|
237
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
238
|
+
checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
|
|
239
|
+
dependencies = [
|
|
240
|
+
"clap_builder",
|
|
241
|
+
"clap_derive",
|
|
242
|
+
]
|
|
243
|
+
|
|
244
|
+
[[package]]
|
|
245
|
+
name = "clap_builder"
|
|
246
|
+
version = "4.6.0"
|
|
247
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
248
|
+
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
249
|
+
dependencies = [
|
|
250
|
+
"anstream",
|
|
251
|
+
"anstyle",
|
|
252
|
+
"clap_lex",
|
|
253
|
+
"strsim",
|
|
254
|
+
]
|
|
255
|
+
|
|
256
|
+
[[package]]
|
|
257
|
+
name = "clap_derive"
|
|
258
|
+
version = "4.6.0"
|
|
259
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
260
|
+
checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
|
|
261
|
+
dependencies = [
|
|
262
|
+
"heck",
|
|
263
|
+
"proc-macro2",
|
|
264
|
+
"quote",
|
|
265
|
+
"syn",
|
|
266
|
+
]
|
|
267
|
+
|
|
268
|
+
[[package]]
|
|
269
|
+
name = "clap_lex"
|
|
270
|
+
version = "1.1.0"
|
|
271
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
272
|
+
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
273
|
+
|
|
274
|
+
[[package]]
|
|
275
|
+
name = "colorchoice"
|
|
276
|
+
version = "1.0.5"
|
|
277
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
278
|
+
checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
|
|
279
|
+
|
|
280
|
+
[[package]]
|
|
281
|
+
name = "displaydoc"
|
|
282
|
+
version = "0.2.5"
|
|
283
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
284
|
+
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
|
|
285
|
+
dependencies = [
|
|
286
|
+
"proc-macro2",
|
|
287
|
+
"quote",
|
|
288
|
+
"syn",
|
|
289
|
+
]
|
|
290
|
+
|
|
291
|
+
[[package]]
|
|
292
|
+
name = "dotenvy"
|
|
293
|
+
version = "0.15.7"
|
|
294
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
295
|
+
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
|
|
296
|
+
|
|
297
|
+
[[package]]
|
|
298
|
+
name = "equivalent"
|
|
299
|
+
version = "1.0.2"
|
|
300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
301
|
+
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
302
|
+
|
|
303
|
+
[[package]]
|
|
304
|
+
name = "find-msvc-tools"
|
|
305
|
+
version = "0.1.9"
|
|
306
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
307
|
+
checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
|
|
308
|
+
|
|
309
|
+
[[package]]
|
|
310
|
+
name = "fnv"
|
|
311
|
+
version = "1.0.7"
|
|
312
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
313
|
+
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
314
|
+
|
|
315
|
+
[[package]]
|
|
316
|
+
name = "form_urlencoded"
|
|
317
|
+
version = "1.2.2"
|
|
318
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
319
|
+
checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
|
|
320
|
+
dependencies = [
|
|
321
|
+
"percent-encoding",
|
|
322
|
+
]
|
|
323
|
+
|
|
324
|
+
[[package]]
|
|
325
|
+
name = "futures"
|
|
326
|
+
version = "0.3.32"
|
|
327
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
328
|
+
checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
|
|
329
|
+
dependencies = [
|
|
330
|
+
"futures-channel",
|
|
331
|
+
"futures-core",
|
|
332
|
+
"futures-executor",
|
|
333
|
+
"futures-io",
|
|
334
|
+
"futures-sink",
|
|
335
|
+
"futures-task",
|
|
336
|
+
"futures-util",
|
|
337
|
+
]
|
|
338
|
+
|
|
339
|
+
[[package]]
|
|
340
|
+
name = "futures-channel"
|
|
341
|
+
version = "0.3.32"
|
|
342
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
343
|
+
checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
|
|
344
|
+
dependencies = [
|
|
345
|
+
"futures-core",
|
|
346
|
+
"futures-sink",
|
|
347
|
+
]
|
|
348
|
+
|
|
349
|
+
[[package]]
|
|
350
|
+
name = "futures-core"
|
|
351
|
+
version = "0.3.32"
|
|
352
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
353
|
+
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
354
|
+
|
|
355
|
+
[[package]]
|
|
356
|
+
name = "futures-executor"
|
|
357
|
+
version = "0.3.32"
|
|
358
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
359
|
+
checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
|
|
360
|
+
dependencies = [
|
|
361
|
+
"futures-core",
|
|
362
|
+
"futures-task",
|
|
363
|
+
"futures-util",
|
|
364
|
+
]
|
|
365
|
+
|
|
366
|
+
[[package]]
|
|
367
|
+
name = "futures-io"
|
|
368
|
+
version = "0.3.32"
|
|
369
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
370
|
+
checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
|
|
371
|
+
|
|
372
|
+
[[package]]
|
|
373
|
+
name = "futures-macro"
|
|
374
|
+
version = "0.3.32"
|
|
375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
376
|
+
checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
|
|
377
|
+
dependencies = [
|
|
378
|
+
"proc-macro2",
|
|
379
|
+
"quote",
|
|
380
|
+
"syn",
|
|
381
|
+
]
|
|
382
|
+
|
|
383
|
+
[[package]]
|
|
384
|
+
name = "futures-sink"
|
|
385
|
+
version = "0.3.32"
|
|
386
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
387
|
+
checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
|
|
388
|
+
|
|
389
|
+
[[package]]
|
|
390
|
+
name = "futures-task"
|
|
391
|
+
version = "0.3.32"
|
|
392
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
393
|
+
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
394
|
+
|
|
395
|
+
[[package]]
|
|
396
|
+
name = "futures-util"
|
|
397
|
+
version = "0.3.32"
|
|
398
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
399
|
+
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
400
|
+
dependencies = [
|
|
401
|
+
"futures-channel",
|
|
402
|
+
"futures-core",
|
|
403
|
+
"futures-io",
|
|
404
|
+
"futures-macro",
|
|
405
|
+
"futures-sink",
|
|
406
|
+
"futures-task",
|
|
407
|
+
"memchr",
|
|
408
|
+
"pin-project-lite",
|
|
409
|
+
"slab",
|
|
410
|
+
]
|
|
411
|
+
|
|
412
|
+
[[package]]
|
|
413
|
+
name = "getrandom"
|
|
414
|
+
version = "0.2.17"
|
|
415
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
416
|
+
checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
|
|
417
|
+
dependencies = [
|
|
418
|
+
"cfg-if",
|
|
419
|
+
"js-sys",
|
|
420
|
+
"libc",
|
|
421
|
+
"wasi",
|
|
422
|
+
"wasm-bindgen",
|
|
423
|
+
]
|
|
424
|
+
|
|
425
|
+
[[package]]
|
|
426
|
+
name = "getrandom"
|
|
427
|
+
version = "0.3.4"
|
|
428
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
429
|
+
checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
|
|
430
|
+
dependencies = [
|
|
431
|
+
"cfg-if",
|
|
432
|
+
"js-sys",
|
|
433
|
+
"libc",
|
|
434
|
+
"r-efi",
|
|
435
|
+
"wasip2",
|
|
436
|
+
"wasm-bindgen",
|
|
437
|
+
]
|
|
438
|
+
|
|
439
|
+
[[package]]
|
|
440
|
+
name = "h2"
|
|
441
|
+
version = "0.4.13"
|
|
442
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
443
|
+
checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
|
|
444
|
+
dependencies = [
|
|
445
|
+
"atomic-waker",
|
|
446
|
+
"bytes",
|
|
447
|
+
"fnv",
|
|
448
|
+
"futures-core",
|
|
449
|
+
"futures-sink",
|
|
450
|
+
"http",
|
|
451
|
+
"indexmap",
|
|
452
|
+
"slab",
|
|
453
|
+
"tokio",
|
|
454
|
+
"tokio-util",
|
|
455
|
+
"tracing",
|
|
456
|
+
]
|
|
457
|
+
|
|
458
|
+
[[package]]
|
|
459
|
+
name = "hashbrown"
|
|
460
|
+
version = "0.16.1"
|
|
461
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
462
|
+
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
463
|
+
|
|
464
|
+
[[package]]
|
|
465
|
+
name = "heck"
|
|
466
|
+
version = "0.5.0"
|
|
467
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
468
|
+
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
469
|
+
|
|
470
|
+
[[package]]
|
|
471
|
+
name = "http"
|
|
472
|
+
version = "1.4.0"
|
|
473
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
474
|
+
checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
|
|
475
|
+
dependencies = [
|
|
476
|
+
"bytes",
|
|
477
|
+
"itoa",
|
|
478
|
+
]
|
|
479
|
+
|
|
480
|
+
[[package]]
|
|
481
|
+
name = "http-body"
|
|
482
|
+
version = "1.0.1"
|
|
483
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
484
|
+
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
|
|
485
|
+
dependencies = [
|
|
486
|
+
"bytes",
|
|
487
|
+
"http",
|
|
488
|
+
]
|
|
489
|
+
|
|
490
|
+
[[package]]
|
|
491
|
+
name = "http-body-util"
|
|
492
|
+
version = "0.1.3"
|
|
493
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
494
|
+
checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
|
|
495
|
+
dependencies = [
|
|
496
|
+
"bytes",
|
|
497
|
+
"futures-core",
|
|
498
|
+
"http",
|
|
499
|
+
"http-body",
|
|
500
|
+
"pin-project-lite",
|
|
501
|
+
]
|
|
502
|
+
|
|
503
|
+
[[package]]
|
|
504
|
+
name = "httparse"
|
|
505
|
+
version = "1.10.1"
|
|
506
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
507
|
+
checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
|
|
508
|
+
|
|
509
|
+
[[package]]
|
|
510
|
+
name = "httpdate"
|
|
511
|
+
version = "1.0.3"
|
|
512
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
513
|
+
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
|
514
|
+
|
|
515
|
+
[[package]]
|
|
516
|
+
name = "hyper"
|
|
517
|
+
version = "1.8.1"
|
|
518
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
519
|
+
checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
|
|
520
|
+
dependencies = [
|
|
521
|
+
"atomic-waker",
|
|
522
|
+
"bytes",
|
|
523
|
+
"futures-channel",
|
|
524
|
+
"futures-core",
|
|
525
|
+
"h2",
|
|
526
|
+
"http",
|
|
527
|
+
"http-body",
|
|
528
|
+
"httparse",
|
|
529
|
+
"httpdate",
|
|
530
|
+
"itoa",
|
|
531
|
+
"pin-project-lite",
|
|
532
|
+
"pin-utils",
|
|
533
|
+
"smallvec",
|
|
534
|
+
"tokio",
|
|
535
|
+
"want",
|
|
536
|
+
]
|
|
537
|
+
|
|
538
|
+
[[package]]
|
|
539
|
+
name = "hyper-rustls"
|
|
540
|
+
version = "0.27.7"
|
|
541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
542
|
+
checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
|
|
543
|
+
dependencies = [
|
|
544
|
+
"http",
|
|
545
|
+
"hyper",
|
|
546
|
+
"hyper-util",
|
|
547
|
+
"rustls",
|
|
548
|
+
"rustls-pki-types",
|
|
549
|
+
"tokio",
|
|
550
|
+
"tokio-rustls",
|
|
551
|
+
"tower-service",
|
|
552
|
+
"webpki-roots",
|
|
553
|
+
]
|
|
554
|
+
|
|
555
|
+
[[package]]
|
|
556
|
+
name = "hyper-util"
|
|
557
|
+
version = "0.1.20"
|
|
558
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
559
|
+
checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
|
|
560
|
+
dependencies = [
|
|
561
|
+
"base64",
|
|
562
|
+
"bytes",
|
|
563
|
+
"futures-channel",
|
|
564
|
+
"futures-util",
|
|
565
|
+
"http",
|
|
566
|
+
"http-body",
|
|
567
|
+
"hyper",
|
|
568
|
+
"ipnet",
|
|
569
|
+
"libc",
|
|
570
|
+
"percent-encoding",
|
|
571
|
+
"pin-project-lite",
|
|
572
|
+
"socket2",
|
|
573
|
+
"tokio",
|
|
574
|
+
"tower-service",
|
|
575
|
+
"tracing",
|
|
576
|
+
]
|
|
577
|
+
|
|
578
|
+
[[package]]
|
|
579
|
+
name = "icu_collections"
|
|
580
|
+
version = "2.1.1"
|
|
581
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
582
|
+
checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
|
|
583
|
+
dependencies = [
|
|
584
|
+
"displaydoc",
|
|
585
|
+
"potential_utf",
|
|
586
|
+
"yoke",
|
|
587
|
+
"zerofrom",
|
|
588
|
+
"zerovec",
|
|
589
|
+
]
|
|
590
|
+
|
|
591
|
+
[[package]]
|
|
592
|
+
name = "icu_locale_core"
|
|
593
|
+
version = "2.1.1"
|
|
594
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
595
|
+
checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
|
|
596
|
+
dependencies = [
|
|
597
|
+
"displaydoc",
|
|
598
|
+
"litemap",
|
|
599
|
+
"tinystr",
|
|
600
|
+
"writeable",
|
|
601
|
+
"zerovec",
|
|
602
|
+
]
|
|
603
|
+
|
|
604
|
+
[[package]]
|
|
605
|
+
name = "icu_normalizer"
|
|
606
|
+
version = "2.1.1"
|
|
607
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
608
|
+
checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
|
|
609
|
+
dependencies = [
|
|
610
|
+
"icu_collections",
|
|
611
|
+
"icu_normalizer_data",
|
|
612
|
+
"icu_properties",
|
|
613
|
+
"icu_provider",
|
|
614
|
+
"smallvec",
|
|
615
|
+
"zerovec",
|
|
616
|
+
]
|
|
617
|
+
|
|
618
|
+
[[package]]
|
|
619
|
+
name = "icu_normalizer_data"
|
|
620
|
+
version = "2.1.1"
|
|
621
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
622
|
+
checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
|
|
623
|
+
|
|
624
|
+
[[package]]
|
|
625
|
+
name = "icu_properties"
|
|
626
|
+
version = "2.1.2"
|
|
627
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
628
|
+
checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
|
|
629
|
+
dependencies = [
|
|
630
|
+
"icu_collections",
|
|
631
|
+
"icu_locale_core",
|
|
632
|
+
"icu_properties_data",
|
|
633
|
+
"icu_provider",
|
|
634
|
+
"zerotrie",
|
|
635
|
+
"zerovec",
|
|
636
|
+
]
|
|
637
|
+
|
|
638
|
+
[[package]]
|
|
639
|
+
name = "icu_properties_data"
|
|
640
|
+
version = "2.1.2"
|
|
641
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
642
|
+
checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
|
|
643
|
+
|
|
644
|
+
[[package]]
|
|
645
|
+
name = "icu_provider"
|
|
646
|
+
version = "2.1.1"
|
|
647
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
648
|
+
checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
|
|
649
|
+
dependencies = [
|
|
650
|
+
"displaydoc",
|
|
651
|
+
"icu_locale_core",
|
|
652
|
+
"writeable",
|
|
653
|
+
"yoke",
|
|
654
|
+
"zerofrom",
|
|
655
|
+
"zerotrie",
|
|
656
|
+
"zerovec",
|
|
657
|
+
]
|
|
658
|
+
|
|
659
|
+
[[package]]
|
|
660
|
+
name = "idna"
|
|
661
|
+
version = "1.1.0"
|
|
662
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
663
|
+
checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
|
|
664
|
+
dependencies = [
|
|
665
|
+
"idna_adapter",
|
|
666
|
+
"smallvec",
|
|
667
|
+
"utf8_iter",
|
|
668
|
+
]
|
|
669
|
+
|
|
670
|
+
[[package]]
|
|
671
|
+
name = "idna_adapter"
|
|
672
|
+
version = "1.2.1"
|
|
673
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
674
|
+
checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
|
|
675
|
+
dependencies = [
|
|
676
|
+
"icu_normalizer",
|
|
677
|
+
"icu_properties",
|
|
678
|
+
]
|
|
679
|
+
|
|
680
|
+
[[package]]
|
|
681
|
+
name = "indexmap"
|
|
682
|
+
version = "2.13.0"
|
|
683
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
684
|
+
checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
|
|
685
|
+
dependencies = [
|
|
686
|
+
"equivalent",
|
|
687
|
+
"hashbrown",
|
|
688
|
+
]
|
|
689
|
+
|
|
690
|
+
[[package]]
|
|
691
|
+
name = "ipnet"
|
|
692
|
+
version = "2.12.0"
|
|
693
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
694
|
+
checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
|
|
695
|
+
|
|
696
|
+
[[package]]
|
|
697
|
+
name = "iri-string"
|
|
698
|
+
version = "0.7.11"
|
|
699
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
700
|
+
checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb"
|
|
701
|
+
dependencies = [
|
|
702
|
+
"memchr",
|
|
703
|
+
"serde",
|
|
704
|
+
]
|
|
705
|
+
|
|
706
|
+
[[package]]
|
|
707
|
+
name = "is_terminal_polyfill"
|
|
708
|
+
version = "1.70.2"
|
|
709
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
710
|
+
checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
|
|
711
|
+
|
|
712
|
+
[[package]]
|
|
713
|
+
name = "itoa"
|
|
714
|
+
version = "1.0.18"
|
|
715
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
716
|
+
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
717
|
+
|
|
718
|
+
[[package]]
|
|
719
|
+
name = "js-sys"
|
|
720
|
+
version = "0.3.91"
|
|
721
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
722
|
+
checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
|
|
723
|
+
dependencies = [
|
|
724
|
+
"once_cell",
|
|
725
|
+
"wasm-bindgen",
|
|
726
|
+
]
|
|
727
|
+
|
|
728
|
+
[[package]]
|
|
729
|
+
name = "lazy_static"
|
|
730
|
+
version = "1.5.0"
|
|
731
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
732
|
+
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
|
|
733
|
+
|
|
734
|
+
[[package]]
|
|
735
|
+
name = "libc"
|
|
736
|
+
version = "0.2.183"
|
|
737
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
738
|
+
checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
|
|
739
|
+
|
|
740
|
+
[[package]]
|
|
741
|
+
name = "litemap"
|
|
742
|
+
version = "0.8.1"
|
|
743
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
744
|
+
checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
|
|
745
|
+
|
|
746
|
+
[[package]]
|
|
747
|
+
name = "log"
|
|
748
|
+
version = "0.4.29"
|
|
749
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
750
|
+
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
751
|
+
|
|
752
|
+
[[package]]
|
|
753
|
+
name = "lru-slab"
|
|
754
|
+
version = "0.1.2"
|
|
755
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
756
|
+
checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
|
|
757
|
+
|
|
758
|
+
[[package]]
|
|
759
|
+
name = "matchers"
|
|
760
|
+
version = "0.2.0"
|
|
761
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
762
|
+
checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
|
|
763
|
+
dependencies = [
|
|
764
|
+
"regex-automata",
|
|
765
|
+
]
|
|
766
|
+
|
|
767
|
+
[[package]]
|
|
768
|
+
name = "matchit"
|
|
769
|
+
version = "0.7.3"
|
|
770
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
771
|
+
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
|
|
772
|
+
|
|
773
|
+
[[package]]
|
|
774
|
+
name = "memchr"
|
|
775
|
+
version = "2.8.0"
|
|
776
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
777
|
+
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
778
|
+
|
|
779
|
+
[[package]]
|
|
780
|
+
name = "mime"
|
|
781
|
+
version = "0.3.17"
|
|
782
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
783
|
+
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
784
|
+
|
|
785
|
+
[[package]]
|
|
786
|
+
name = "mio"
|
|
787
|
+
version = "1.2.0"
|
|
788
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
789
|
+
checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
|
|
790
|
+
dependencies = [
|
|
791
|
+
"libc",
|
|
792
|
+
"wasi",
|
|
793
|
+
"windows-sys 0.61.2",
|
|
794
|
+
]
|
|
795
|
+
|
|
796
|
+
[[package]]
|
|
797
|
+
name = "nu-ansi-term"
|
|
798
|
+
version = "0.50.3"
|
|
799
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
800
|
+
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
|
801
|
+
dependencies = [
|
|
802
|
+
"windows-sys 0.61.2",
|
|
803
|
+
]
|
|
804
|
+
|
|
805
|
+
[[package]]
|
|
806
|
+
name = "once_cell"
|
|
807
|
+
version = "1.21.4"
|
|
808
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
809
|
+
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
810
|
+
|
|
811
|
+
[[package]]
|
|
812
|
+
name = "once_cell_polyfill"
|
|
813
|
+
version = "1.70.2"
|
|
814
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
815
|
+
checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
|
|
816
|
+
|
|
817
|
+
[[package]]
|
|
818
|
+
name = "percent-encoding"
|
|
819
|
+
version = "2.3.2"
|
|
820
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
821
|
+
checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
|
|
822
|
+
|
|
823
|
+
[[package]]
|
|
824
|
+
name = "pin-project"
|
|
825
|
+
version = "1.1.11"
|
|
826
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
827
|
+
checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
|
|
828
|
+
dependencies = [
|
|
829
|
+
"pin-project-internal",
|
|
830
|
+
]
|
|
831
|
+
|
|
832
|
+
[[package]]
|
|
833
|
+
name = "pin-project-internal"
|
|
834
|
+
version = "1.1.11"
|
|
835
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
836
|
+
checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
|
|
837
|
+
dependencies = [
|
|
838
|
+
"proc-macro2",
|
|
839
|
+
"quote",
|
|
840
|
+
"syn",
|
|
841
|
+
]
|
|
842
|
+
|
|
843
|
+
[[package]]
|
|
844
|
+
name = "pin-project-lite"
|
|
845
|
+
version = "0.2.17"
|
|
846
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
847
|
+
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
848
|
+
|
|
849
|
+
[[package]]
|
|
850
|
+
name = "pin-utils"
|
|
851
|
+
version = "0.1.0"
|
|
852
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
853
|
+
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
854
|
+
|
|
855
|
+
[[package]]
|
|
856
|
+
name = "potential_utf"
|
|
857
|
+
version = "0.1.4"
|
|
858
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
859
|
+
checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
|
|
860
|
+
dependencies = [
|
|
861
|
+
"zerovec",
|
|
862
|
+
]
|
|
863
|
+
|
|
864
|
+
[[package]]
|
|
865
|
+
name = "ppv-lite86"
|
|
866
|
+
version = "0.2.21"
|
|
867
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
868
|
+
checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
|
|
869
|
+
dependencies = [
|
|
870
|
+
"zerocopy",
|
|
871
|
+
]
|
|
872
|
+
|
|
873
|
+
[[package]]
|
|
874
|
+
name = "proc-macro2"
|
|
875
|
+
version = "1.0.106"
|
|
876
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
877
|
+
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
878
|
+
dependencies = [
|
|
879
|
+
"unicode-ident",
|
|
880
|
+
]
|
|
881
|
+
|
|
882
|
+
[[package]]
|
|
883
|
+
name = "quinn"
|
|
884
|
+
version = "0.11.9"
|
|
885
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
886
|
+
checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
|
|
887
|
+
dependencies = [
|
|
888
|
+
"bytes",
|
|
889
|
+
"cfg_aliases",
|
|
890
|
+
"pin-project-lite",
|
|
891
|
+
"quinn-proto",
|
|
892
|
+
"quinn-udp",
|
|
893
|
+
"rustc-hash",
|
|
894
|
+
"rustls",
|
|
895
|
+
"socket2",
|
|
896
|
+
"thiserror",
|
|
897
|
+
"tokio",
|
|
898
|
+
"tracing",
|
|
899
|
+
"web-time",
|
|
900
|
+
]
|
|
901
|
+
|
|
902
|
+
[[package]]
|
|
903
|
+
name = "quinn-proto"
|
|
904
|
+
version = "0.11.14"
|
|
905
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
906
|
+
checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
|
|
907
|
+
dependencies = [
|
|
908
|
+
"bytes",
|
|
909
|
+
"getrandom 0.3.4",
|
|
910
|
+
"lru-slab",
|
|
911
|
+
"rand",
|
|
912
|
+
"ring",
|
|
913
|
+
"rustc-hash",
|
|
914
|
+
"rustls",
|
|
915
|
+
"rustls-pki-types",
|
|
916
|
+
"slab",
|
|
917
|
+
"thiserror",
|
|
918
|
+
"tinyvec",
|
|
919
|
+
"tracing",
|
|
920
|
+
"web-time",
|
|
921
|
+
]
|
|
922
|
+
|
|
923
|
+
[[package]]
|
|
924
|
+
name = "quinn-udp"
|
|
925
|
+
version = "0.5.14"
|
|
926
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
927
|
+
checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
|
|
928
|
+
dependencies = [
|
|
929
|
+
"cfg_aliases",
|
|
930
|
+
"libc",
|
|
931
|
+
"once_cell",
|
|
932
|
+
"socket2",
|
|
933
|
+
"tracing",
|
|
934
|
+
"windows-sys 0.60.2",
|
|
935
|
+
]
|
|
936
|
+
|
|
937
|
+
[[package]]
|
|
938
|
+
name = "quote"
|
|
939
|
+
version = "1.0.45"
|
|
940
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
941
|
+
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
942
|
+
dependencies = [
|
|
943
|
+
"proc-macro2",
|
|
944
|
+
]
|
|
945
|
+
|
|
946
|
+
[[package]]
|
|
947
|
+
name = "r-efi"
|
|
948
|
+
version = "5.3.0"
|
|
949
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
950
|
+
checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
|
|
951
|
+
|
|
952
|
+
[[package]]
|
|
953
|
+
name = "rand"
|
|
954
|
+
version = "0.9.2"
|
|
955
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
956
|
+
checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
|
|
957
|
+
dependencies = [
|
|
958
|
+
"rand_chacha",
|
|
959
|
+
"rand_core",
|
|
960
|
+
]
|
|
961
|
+
|
|
962
|
+
[[package]]
|
|
963
|
+
name = "rand_chacha"
|
|
964
|
+
version = "0.9.0"
|
|
965
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
966
|
+
checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
|
|
967
|
+
dependencies = [
|
|
968
|
+
"ppv-lite86",
|
|
969
|
+
"rand_core",
|
|
970
|
+
]
|
|
971
|
+
|
|
972
|
+
[[package]]
|
|
973
|
+
name = "rand_core"
|
|
974
|
+
version = "0.9.5"
|
|
975
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
976
|
+
checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
|
|
977
|
+
dependencies = [
|
|
978
|
+
"getrandom 0.3.4",
|
|
979
|
+
]
|
|
980
|
+
|
|
981
|
+
[[package]]
|
|
982
|
+
name = "regex-automata"
|
|
983
|
+
version = "0.4.14"
|
|
984
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
985
|
+
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
986
|
+
dependencies = [
|
|
987
|
+
"aho-corasick",
|
|
988
|
+
"memchr",
|
|
989
|
+
"regex-syntax",
|
|
990
|
+
]
|
|
991
|
+
|
|
992
|
+
[[package]]
|
|
993
|
+
name = "regex-syntax"
|
|
994
|
+
version = "0.8.10"
|
|
995
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
996
|
+
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
997
|
+
|
|
998
|
+
[[package]]
|
|
999
|
+
name = "reqwest"
|
|
1000
|
+
version = "0.12.28"
|
|
1001
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1002
|
+
checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
|
|
1003
|
+
dependencies = [
|
|
1004
|
+
"base64",
|
|
1005
|
+
"bytes",
|
|
1006
|
+
"futures-core",
|
|
1007
|
+
"futures-util",
|
|
1008
|
+
"http",
|
|
1009
|
+
"http-body",
|
|
1010
|
+
"http-body-util",
|
|
1011
|
+
"hyper",
|
|
1012
|
+
"hyper-rustls",
|
|
1013
|
+
"hyper-util",
|
|
1014
|
+
"js-sys",
|
|
1015
|
+
"log",
|
|
1016
|
+
"percent-encoding",
|
|
1017
|
+
"pin-project-lite",
|
|
1018
|
+
"quinn",
|
|
1019
|
+
"rustls",
|
|
1020
|
+
"rustls-pki-types",
|
|
1021
|
+
"serde",
|
|
1022
|
+
"serde_json",
|
|
1023
|
+
"serde_urlencoded",
|
|
1024
|
+
"sync_wrapper",
|
|
1025
|
+
"tokio",
|
|
1026
|
+
"tokio-rustls",
|
|
1027
|
+
"tokio-util",
|
|
1028
|
+
"tower",
|
|
1029
|
+
"tower-http",
|
|
1030
|
+
"tower-service",
|
|
1031
|
+
"url",
|
|
1032
|
+
"wasm-bindgen",
|
|
1033
|
+
"wasm-bindgen-futures",
|
|
1034
|
+
"wasm-streams",
|
|
1035
|
+
"web-sys",
|
|
1036
|
+
"webpki-roots",
|
|
1037
|
+
]
|
|
1038
|
+
|
|
1039
|
+
[[package]]
|
|
1040
|
+
name = "ring"
|
|
1041
|
+
version = "0.17.14"
|
|
1042
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1043
|
+
checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
|
|
1044
|
+
dependencies = [
|
|
1045
|
+
"cc",
|
|
1046
|
+
"cfg-if",
|
|
1047
|
+
"getrandom 0.2.17",
|
|
1048
|
+
"libc",
|
|
1049
|
+
"untrusted",
|
|
1050
|
+
"windows-sys 0.52.0",
|
|
1051
|
+
]
|
|
1052
|
+
|
|
1053
|
+
[[package]]
|
|
1054
|
+
name = "rustc-hash"
|
|
1055
|
+
version = "2.1.1"
|
|
1056
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1057
|
+
checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
|
|
1058
|
+
|
|
1059
|
+
[[package]]
|
|
1060
|
+
name = "rustls"
|
|
1061
|
+
version = "0.23.37"
|
|
1062
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1063
|
+
checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
|
|
1064
|
+
dependencies = [
|
|
1065
|
+
"once_cell",
|
|
1066
|
+
"ring",
|
|
1067
|
+
"rustls-pki-types",
|
|
1068
|
+
"rustls-webpki",
|
|
1069
|
+
"subtle",
|
|
1070
|
+
"zeroize",
|
|
1071
|
+
]
|
|
1072
|
+
|
|
1073
|
+
[[package]]
|
|
1074
|
+
name = "rustls-pki-types"
|
|
1075
|
+
version = "1.14.0"
|
|
1076
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1077
|
+
checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
|
|
1078
|
+
dependencies = [
|
|
1079
|
+
"web-time",
|
|
1080
|
+
"zeroize",
|
|
1081
|
+
]
|
|
1082
|
+
|
|
1083
|
+
[[package]]
|
|
1084
|
+
name = "rustls-webpki"
|
|
1085
|
+
version = "0.103.10"
|
|
1086
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1087
|
+
checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
|
|
1088
|
+
dependencies = [
|
|
1089
|
+
"ring",
|
|
1090
|
+
"rustls-pki-types",
|
|
1091
|
+
"untrusted",
|
|
1092
|
+
]
|
|
1093
|
+
|
|
1094
|
+
[[package]]
|
|
1095
|
+
name = "rustversion"
|
|
1096
|
+
version = "1.0.22"
|
|
1097
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1098
|
+
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
1099
|
+
|
|
1100
|
+
[[package]]
|
|
1101
|
+
name = "ryu"
|
|
1102
|
+
version = "1.0.23"
|
|
1103
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1104
|
+
checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
|
|
1105
|
+
|
|
1106
|
+
[[package]]
|
|
1107
|
+
name = "serde"
|
|
1108
|
+
version = "1.0.228"
|
|
1109
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1110
|
+
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
1111
|
+
dependencies = [
|
|
1112
|
+
"serde_core",
|
|
1113
|
+
"serde_derive",
|
|
1114
|
+
]
|
|
1115
|
+
|
|
1116
|
+
[[package]]
|
|
1117
|
+
name = "serde_core"
|
|
1118
|
+
version = "1.0.228"
|
|
1119
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1120
|
+
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
1121
|
+
dependencies = [
|
|
1122
|
+
"serde_derive",
|
|
1123
|
+
]
|
|
1124
|
+
|
|
1125
|
+
[[package]]
|
|
1126
|
+
name = "serde_derive"
|
|
1127
|
+
version = "1.0.228"
|
|
1128
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1129
|
+
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
1130
|
+
dependencies = [
|
|
1131
|
+
"proc-macro2",
|
|
1132
|
+
"quote",
|
|
1133
|
+
"syn",
|
|
1134
|
+
]
|
|
1135
|
+
|
|
1136
|
+
[[package]]
|
|
1137
|
+
name = "serde_json"
|
|
1138
|
+
version = "1.0.149"
|
|
1139
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1140
|
+
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
1141
|
+
dependencies = [
|
|
1142
|
+
"itoa",
|
|
1143
|
+
"memchr",
|
|
1144
|
+
"serde",
|
|
1145
|
+
"serde_core",
|
|
1146
|
+
"zmij",
|
|
1147
|
+
]
|
|
1148
|
+
|
|
1149
|
+
[[package]]
|
|
1150
|
+
name = "serde_path_to_error"
|
|
1151
|
+
version = "0.1.20"
|
|
1152
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1153
|
+
checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
|
|
1154
|
+
dependencies = [
|
|
1155
|
+
"itoa",
|
|
1156
|
+
"serde",
|
|
1157
|
+
"serde_core",
|
|
1158
|
+
]
|
|
1159
|
+
|
|
1160
|
+
[[package]]
|
|
1161
|
+
name = "serde_urlencoded"
|
|
1162
|
+
version = "0.7.1"
|
|
1163
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1164
|
+
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
|
1165
|
+
dependencies = [
|
|
1166
|
+
"form_urlencoded",
|
|
1167
|
+
"itoa",
|
|
1168
|
+
"ryu",
|
|
1169
|
+
"serde",
|
|
1170
|
+
]
|
|
1171
|
+
|
|
1172
|
+
[[package]]
|
|
1173
|
+
name = "sharded-slab"
|
|
1174
|
+
version = "0.1.7"
|
|
1175
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1176
|
+
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
|
1177
|
+
dependencies = [
|
|
1178
|
+
"lazy_static",
|
|
1179
|
+
]
|
|
1180
|
+
|
|
1181
|
+
[[package]]
|
|
1182
|
+
name = "shlex"
|
|
1183
|
+
version = "1.3.0"
|
|
1184
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1185
|
+
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
1186
|
+
|
|
1187
|
+
[[package]]
|
|
1188
|
+
name = "slab"
|
|
1189
|
+
version = "0.4.12"
|
|
1190
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1191
|
+
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
1192
|
+
|
|
1193
|
+
[[package]]
|
|
1194
|
+
name = "smallvec"
|
|
1195
|
+
version = "1.15.1"
|
|
1196
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1197
|
+
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
1198
|
+
|
|
1199
|
+
[[package]]
|
|
1200
|
+
name = "socket2"
|
|
1201
|
+
version = "0.6.3"
|
|
1202
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1203
|
+
checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
|
|
1204
|
+
dependencies = [
|
|
1205
|
+
"libc",
|
|
1206
|
+
"windows-sys 0.61.2",
|
|
1207
|
+
]
|
|
1208
|
+
|
|
1209
|
+
[[package]]
|
|
1210
|
+
name = "stable_deref_trait"
|
|
1211
|
+
version = "1.2.1"
|
|
1212
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1213
|
+
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
1214
|
+
|
|
1215
|
+
[[package]]
|
|
1216
|
+
name = "strsim"
|
|
1217
|
+
version = "0.11.1"
|
|
1218
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1219
|
+
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
|
|
1220
|
+
|
|
1221
|
+
[[package]]
|
|
1222
|
+
name = "subtle"
|
|
1223
|
+
version = "2.6.1"
|
|
1224
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1225
|
+
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
1226
|
+
|
|
1227
|
+
[[package]]
|
|
1228
|
+
name = "syn"
|
|
1229
|
+
version = "2.0.117"
|
|
1230
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1231
|
+
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
1232
|
+
dependencies = [
|
|
1233
|
+
"proc-macro2",
|
|
1234
|
+
"quote",
|
|
1235
|
+
"unicode-ident",
|
|
1236
|
+
]
|
|
1237
|
+
|
|
1238
|
+
[[package]]
|
|
1239
|
+
name = "sync_wrapper"
|
|
1240
|
+
version = "1.0.2"
|
|
1241
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1242
|
+
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
|
|
1243
|
+
dependencies = [
|
|
1244
|
+
"futures-core",
|
|
1245
|
+
]
|
|
1246
|
+
|
|
1247
|
+
[[package]]
|
|
1248
|
+
name = "synstructure"
|
|
1249
|
+
version = "0.13.2"
|
|
1250
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1251
|
+
checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
|
|
1252
|
+
dependencies = [
|
|
1253
|
+
"proc-macro2",
|
|
1254
|
+
"quote",
|
|
1255
|
+
"syn",
|
|
1256
|
+
]
|
|
1257
|
+
|
|
1258
|
+
[[package]]
|
|
1259
|
+
name = "thiserror"
|
|
1260
|
+
version = "2.0.18"
|
|
1261
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1262
|
+
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
1263
|
+
dependencies = [
|
|
1264
|
+
"thiserror-impl",
|
|
1265
|
+
]
|
|
1266
|
+
|
|
1267
|
+
[[package]]
|
|
1268
|
+
name = "thiserror-impl"
|
|
1269
|
+
version = "2.0.18"
|
|
1270
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1271
|
+
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
1272
|
+
dependencies = [
|
|
1273
|
+
"proc-macro2",
|
|
1274
|
+
"quote",
|
|
1275
|
+
"syn",
|
|
1276
|
+
]
|
|
1277
|
+
|
|
1278
|
+
[[package]]
|
|
1279
|
+
name = "thread_local"
|
|
1280
|
+
version = "1.1.9"
|
|
1281
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1282
|
+
checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
|
|
1283
|
+
dependencies = [
|
|
1284
|
+
"cfg-if",
|
|
1285
|
+
]
|
|
1286
|
+
|
|
1287
|
+
[[package]]
|
|
1288
|
+
name = "tinystr"
|
|
1289
|
+
version = "0.8.2"
|
|
1290
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1291
|
+
checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
|
|
1292
|
+
dependencies = [
|
|
1293
|
+
"displaydoc",
|
|
1294
|
+
"zerovec",
|
|
1295
|
+
]
|
|
1296
|
+
|
|
1297
|
+
[[package]]
|
|
1298
|
+
name = "tinyvec"
|
|
1299
|
+
version = "1.11.0"
|
|
1300
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1301
|
+
checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
|
|
1302
|
+
dependencies = [
|
|
1303
|
+
"tinyvec_macros",
|
|
1304
|
+
]
|
|
1305
|
+
|
|
1306
|
+
[[package]]
|
|
1307
|
+
name = "tinyvec_macros"
|
|
1308
|
+
version = "0.1.1"
|
|
1309
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1310
|
+
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
|
1311
|
+
|
|
1312
|
+
[[package]]
|
|
1313
|
+
name = "tokio"
|
|
1314
|
+
version = "1.50.0"
|
|
1315
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1316
|
+
checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
|
|
1317
|
+
dependencies = [
|
|
1318
|
+
"bytes",
|
|
1319
|
+
"libc",
|
|
1320
|
+
"mio",
|
|
1321
|
+
"pin-project-lite",
|
|
1322
|
+
"socket2",
|
|
1323
|
+
"tokio-macros",
|
|
1324
|
+
"windows-sys 0.61.2",
|
|
1325
|
+
]
|
|
1326
|
+
|
|
1327
|
+
[[package]]
|
|
1328
|
+
name = "tokio-macros"
|
|
1329
|
+
version = "2.6.1"
|
|
1330
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1331
|
+
checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
|
|
1332
|
+
dependencies = [
|
|
1333
|
+
"proc-macro2",
|
|
1334
|
+
"quote",
|
|
1335
|
+
"syn",
|
|
1336
|
+
]
|
|
1337
|
+
|
|
1338
|
+
[[package]]
|
|
1339
|
+
name = "tokio-rustls"
|
|
1340
|
+
version = "0.26.4"
|
|
1341
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1342
|
+
checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
|
|
1343
|
+
dependencies = [
|
|
1344
|
+
"rustls",
|
|
1345
|
+
"tokio",
|
|
1346
|
+
]
|
|
1347
|
+
|
|
1348
|
+
[[package]]
|
|
1349
|
+
name = "tokio-stream"
|
|
1350
|
+
version = "0.1.18"
|
|
1351
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1352
|
+
checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
|
|
1353
|
+
dependencies = [
|
|
1354
|
+
"futures-core",
|
|
1355
|
+
"pin-project-lite",
|
|
1356
|
+
"tokio",
|
|
1357
|
+
]
|
|
1358
|
+
|
|
1359
|
+
[[package]]
|
|
1360
|
+
name = "tokio-util"
|
|
1361
|
+
version = "0.7.18"
|
|
1362
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1363
|
+
checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
|
|
1364
|
+
dependencies = [
|
|
1365
|
+
"bytes",
|
|
1366
|
+
"futures-core",
|
|
1367
|
+
"futures-sink",
|
|
1368
|
+
"pin-project-lite",
|
|
1369
|
+
"tokio",
|
|
1370
|
+
]
|
|
1371
|
+
|
|
1372
|
+
[[package]]
|
|
1373
|
+
name = "tower"
|
|
1374
|
+
version = "0.5.3"
|
|
1375
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1376
|
+
checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
|
|
1377
|
+
dependencies = [
|
|
1378
|
+
"futures-core",
|
|
1379
|
+
"futures-util",
|
|
1380
|
+
"pin-project-lite",
|
|
1381
|
+
"sync_wrapper",
|
|
1382
|
+
"tokio",
|
|
1383
|
+
"tower-layer",
|
|
1384
|
+
"tower-service",
|
|
1385
|
+
"tracing",
|
|
1386
|
+
]
|
|
1387
|
+
|
|
1388
|
+
[[package]]
|
|
1389
|
+
name = "tower-http"
|
|
1390
|
+
version = "0.6.8"
|
|
1391
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1392
|
+
checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
|
|
1393
|
+
dependencies = [
|
|
1394
|
+
"bitflags",
|
|
1395
|
+
"bytes",
|
|
1396
|
+
"futures-util",
|
|
1397
|
+
"http",
|
|
1398
|
+
"http-body",
|
|
1399
|
+
"iri-string",
|
|
1400
|
+
"pin-project-lite",
|
|
1401
|
+
"tower",
|
|
1402
|
+
"tower-layer",
|
|
1403
|
+
"tower-service",
|
|
1404
|
+
"tracing",
|
|
1405
|
+
]
|
|
1406
|
+
|
|
1407
|
+
[[package]]
|
|
1408
|
+
name = "tower-layer"
|
|
1409
|
+
version = "0.3.3"
|
|
1410
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1411
|
+
checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
|
|
1412
|
+
|
|
1413
|
+
[[package]]
|
|
1414
|
+
name = "tower-service"
|
|
1415
|
+
version = "0.3.3"
|
|
1416
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1417
|
+
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
|
|
1418
|
+
|
|
1419
|
+
[[package]]
|
|
1420
|
+
name = "tracing"
|
|
1421
|
+
version = "0.1.44"
|
|
1422
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1423
|
+
checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
|
|
1424
|
+
dependencies = [
|
|
1425
|
+
"log",
|
|
1426
|
+
"pin-project-lite",
|
|
1427
|
+
"tracing-attributes",
|
|
1428
|
+
"tracing-core",
|
|
1429
|
+
]
|
|
1430
|
+
|
|
1431
|
+
[[package]]
|
|
1432
|
+
name = "tracing-attributes"
|
|
1433
|
+
version = "0.1.31"
|
|
1434
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1435
|
+
checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
|
|
1436
|
+
dependencies = [
|
|
1437
|
+
"proc-macro2",
|
|
1438
|
+
"quote",
|
|
1439
|
+
"syn",
|
|
1440
|
+
]
|
|
1441
|
+
|
|
1442
|
+
[[package]]
|
|
1443
|
+
name = "tracing-core"
|
|
1444
|
+
version = "0.1.36"
|
|
1445
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1446
|
+
checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
|
|
1447
|
+
dependencies = [
|
|
1448
|
+
"once_cell",
|
|
1449
|
+
"valuable",
|
|
1450
|
+
]
|
|
1451
|
+
|
|
1452
|
+
[[package]]
|
|
1453
|
+
name = "tracing-log"
|
|
1454
|
+
version = "0.2.0"
|
|
1455
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1456
|
+
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
|
|
1457
|
+
dependencies = [
|
|
1458
|
+
"log",
|
|
1459
|
+
"once_cell",
|
|
1460
|
+
"tracing-core",
|
|
1461
|
+
]
|
|
1462
|
+
|
|
1463
|
+
[[package]]
|
|
1464
|
+
name = "tracing-subscriber"
|
|
1465
|
+
version = "0.3.23"
|
|
1466
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1467
|
+
checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
|
|
1468
|
+
dependencies = [
|
|
1469
|
+
"matchers",
|
|
1470
|
+
"nu-ansi-term",
|
|
1471
|
+
"once_cell",
|
|
1472
|
+
"regex-automata",
|
|
1473
|
+
"sharded-slab",
|
|
1474
|
+
"smallvec",
|
|
1475
|
+
"thread_local",
|
|
1476
|
+
"tracing",
|
|
1477
|
+
"tracing-core",
|
|
1478
|
+
"tracing-log",
|
|
1479
|
+
]
|
|
1480
|
+
|
|
1481
|
+
[[package]]
|
|
1482
|
+
name = "try-lock"
|
|
1483
|
+
version = "0.2.5"
|
|
1484
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1485
|
+
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
|
1486
|
+
|
|
1487
|
+
[[package]]
|
|
1488
|
+
name = "unicode-ident"
|
|
1489
|
+
version = "1.0.24"
|
|
1490
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1491
|
+
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
1492
|
+
|
|
1493
|
+
[[package]]
|
|
1494
|
+
name = "untrusted"
|
|
1495
|
+
version = "0.9.0"
|
|
1496
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1497
|
+
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
1498
|
+
|
|
1499
|
+
[[package]]
|
|
1500
|
+
name = "url"
|
|
1501
|
+
version = "2.5.8"
|
|
1502
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1503
|
+
checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
|
|
1504
|
+
dependencies = [
|
|
1505
|
+
"form_urlencoded",
|
|
1506
|
+
"idna",
|
|
1507
|
+
"percent-encoding",
|
|
1508
|
+
"serde",
|
|
1509
|
+
]
|
|
1510
|
+
|
|
1511
|
+
[[package]]
|
|
1512
|
+
name = "utf8_iter"
|
|
1513
|
+
version = "1.0.4"
|
|
1514
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1515
|
+
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
|
|
1516
|
+
|
|
1517
|
+
[[package]]
|
|
1518
|
+
name = "utf8parse"
|
|
1519
|
+
version = "0.2.2"
|
|
1520
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1521
|
+
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
|
1522
|
+
|
|
1523
|
+
[[package]]
|
|
1524
|
+
name = "valuable"
|
|
1525
|
+
version = "0.1.1"
|
|
1526
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1527
|
+
checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
|
|
1528
|
+
|
|
1529
|
+
[[package]]
|
|
1530
|
+
name = "want"
|
|
1531
|
+
version = "0.3.1"
|
|
1532
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1533
|
+
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
|
1534
|
+
dependencies = [
|
|
1535
|
+
"try-lock",
|
|
1536
|
+
]
|
|
1537
|
+
|
|
1538
|
+
[[package]]
|
|
1539
|
+
name = "wasi"
|
|
1540
|
+
version = "0.11.1+wasi-snapshot-preview1"
|
|
1541
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1542
|
+
checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
|
|
1543
|
+
|
|
1544
|
+
[[package]]
|
|
1545
|
+
name = "wasip2"
|
|
1546
|
+
version = "1.0.2+wasi-0.2.9"
|
|
1547
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1548
|
+
checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
|
|
1549
|
+
dependencies = [
|
|
1550
|
+
"wit-bindgen",
|
|
1551
|
+
]
|
|
1552
|
+
|
|
1553
|
+
[[package]]
|
|
1554
|
+
name = "wasm-bindgen"
|
|
1555
|
+
version = "0.2.114"
|
|
1556
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1557
|
+
checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
|
|
1558
|
+
dependencies = [
|
|
1559
|
+
"cfg-if",
|
|
1560
|
+
"once_cell",
|
|
1561
|
+
"rustversion",
|
|
1562
|
+
"wasm-bindgen-macro",
|
|
1563
|
+
"wasm-bindgen-shared",
|
|
1564
|
+
]
|
|
1565
|
+
|
|
1566
|
+
[[package]]
|
|
1567
|
+
name = "wasm-bindgen-futures"
|
|
1568
|
+
version = "0.4.64"
|
|
1569
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1570
|
+
checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
|
|
1571
|
+
dependencies = [
|
|
1572
|
+
"cfg-if",
|
|
1573
|
+
"futures-util",
|
|
1574
|
+
"js-sys",
|
|
1575
|
+
"once_cell",
|
|
1576
|
+
"wasm-bindgen",
|
|
1577
|
+
"web-sys",
|
|
1578
|
+
]
|
|
1579
|
+
|
|
1580
|
+
[[package]]
|
|
1581
|
+
name = "wasm-bindgen-macro"
|
|
1582
|
+
version = "0.2.114"
|
|
1583
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1584
|
+
checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
|
|
1585
|
+
dependencies = [
|
|
1586
|
+
"quote",
|
|
1587
|
+
"wasm-bindgen-macro-support",
|
|
1588
|
+
]
|
|
1589
|
+
|
|
1590
|
+
[[package]]
|
|
1591
|
+
name = "wasm-bindgen-macro-support"
|
|
1592
|
+
version = "0.2.114"
|
|
1593
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1594
|
+
checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
|
|
1595
|
+
dependencies = [
|
|
1596
|
+
"bumpalo",
|
|
1597
|
+
"proc-macro2",
|
|
1598
|
+
"quote",
|
|
1599
|
+
"syn",
|
|
1600
|
+
"wasm-bindgen-shared",
|
|
1601
|
+
]
|
|
1602
|
+
|
|
1603
|
+
[[package]]
|
|
1604
|
+
name = "wasm-bindgen-shared"
|
|
1605
|
+
version = "0.2.114"
|
|
1606
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1607
|
+
checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
|
|
1608
|
+
dependencies = [
|
|
1609
|
+
"unicode-ident",
|
|
1610
|
+
]
|
|
1611
|
+
|
|
1612
|
+
[[package]]
|
|
1613
|
+
name = "wasm-streams"
|
|
1614
|
+
version = "0.4.2"
|
|
1615
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1616
|
+
checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
|
|
1617
|
+
dependencies = [
|
|
1618
|
+
"futures-util",
|
|
1619
|
+
"js-sys",
|
|
1620
|
+
"wasm-bindgen",
|
|
1621
|
+
"wasm-bindgen-futures",
|
|
1622
|
+
"web-sys",
|
|
1623
|
+
]
|
|
1624
|
+
|
|
1625
|
+
[[package]]
|
|
1626
|
+
name = "web-sys"
|
|
1627
|
+
version = "0.3.91"
|
|
1628
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1629
|
+
checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
|
|
1630
|
+
dependencies = [
|
|
1631
|
+
"js-sys",
|
|
1632
|
+
"wasm-bindgen",
|
|
1633
|
+
]
|
|
1634
|
+
|
|
1635
|
+
[[package]]
|
|
1636
|
+
name = "web-time"
|
|
1637
|
+
version = "1.1.0"
|
|
1638
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1639
|
+
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
|
|
1640
|
+
dependencies = [
|
|
1641
|
+
"js-sys",
|
|
1642
|
+
"wasm-bindgen",
|
|
1643
|
+
]
|
|
1644
|
+
|
|
1645
|
+
[[package]]
|
|
1646
|
+
name = "webpki-roots"
|
|
1647
|
+
version = "1.0.6"
|
|
1648
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1649
|
+
checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
|
|
1650
|
+
dependencies = [
|
|
1651
|
+
"rustls-pki-types",
|
|
1652
|
+
]
|
|
1653
|
+
|
|
1654
|
+
[[package]]
|
|
1655
|
+
name = "windows-link"
|
|
1656
|
+
version = "0.2.1"
|
|
1657
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1658
|
+
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
1659
|
+
|
|
1660
|
+
[[package]]
|
|
1661
|
+
name = "windows-sys"
|
|
1662
|
+
version = "0.52.0"
|
|
1663
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1664
|
+
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
1665
|
+
dependencies = [
|
|
1666
|
+
"windows-targets 0.52.6",
|
|
1667
|
+
]
|
|
1668
|
+
|
|
1669
|
+
[[package]]
|
|
1670
|
+
name = "windows-sys"
|
|
1671
|
+
version = "0.60.2"
|
|
1672
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1673
|
+
checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
|
|
1674
|
+
dependencies = [
|
|
1675
|
+
"windows-targets 0.53.5",
|
|
1676
|
+
]
|
|
1677
|
+
|
|
1678
|
+
[[package]]
|
|
1679
|
+
name = "windows-sys"
|
|
1680
|
+
version = "0.61.2"
|
|
1681
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1682
|
+
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
1683
|
+
dependencies = [
|
|
1684
|
+
"windows-link",
|
|
1685
|
+
]
|
|
1686
|
+
|
|
1687
|
+
[[package]]
|
|
1688
|
+
name = "windows-targets"
|
|
1689
|
+
version = "0.52.6"
|
|
1690
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1691
|
+
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
1692
|
+
dependencies = [
|
|
1693
|
+
"windows_aarch64_gnullvm 0.52.6",
|
|
1694
|
+
"windows_aarch64_msvc 0.52.6",
|
|
1695
|
+
"windows_i686_gnu 0.52.6",
|
|
1696
|
+
"windows_i686_gnullvm 0.52.6",
|
|
1697
|
+
"windows_i686_msvc 0.52.6",
|
|
1698
|
+
"windows_x86_64_gnu 0.52.6",
|
|
1699
|
+
"windows_x86_64_gnullvm 0.52.6",
|
|
1700
|
+
"windows_x86_64_msvc 0.52.6",
|
|
1701
|
+
]
|
|
1702
|
+
|
|
1703
|
+
[[package]]
|
|
1704
|
+
name = "windows-targets"
|
|
1705
|
+
version = "0.53.5"
|
|
1706
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1707
|
+
checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
|
|
1708
|
+
dependencies = [
|
|
1709
|
+
"windows-link",
|
|
1710
|
+
"windows_aarch64_gnullvm 0.53.1",
|
|
1711
|
+
"windows_aarch64_msvc 0.53.1",
|
|
1712
|
+
"windows_i686_gnu 0.53.1",
|
|
1713
|
+
"windows_i686_gnullvm 0.53.1",
|
|
1714
|
+
"windows_i686_msvc 0.53.1",
|
|
1715
|
+
"windows_x86_64_gnu 0.53.1",
|
|
1716
|
+
"windows_x86_64_gnullvm 0.53.1",
|
|
1717
|
+
"windows_x86_64_msvc 0.53.1",
|
|
1718
|
+
]
|
|
1719
|
+
|
|
1720
|
+
[[package]]
|
|
1721
|
+
name = "windows_aarch64_gnullvm"
|
|
1722
|
+
version = "0.52.6"
|
|
1723
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1724
|
+
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
1725
|
+
|
|
1726
|
+
[[package]]
|
|
1727
|
+
name = "windows_aarch64_gnullvm"
|
|
1728
|
+
version = "0.53.1"
|
|
1729
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1730
|
+
checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
|
|
1731
|
+
|
|
1732
|
+
[[package]]
|
|
1733
|
+
name = "windows_aarch64_msvc"
|
|
1734
|
+
version = "0.52.6"
|
|
1735
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1736
|
+
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
1737
|
+
|
|
1738
|
+
[[package]]
|
|
1739
|
+
name = "windows_aarch64_msvc"
|
|
1740
|
+
version = "0.53.1"
|
|
1741
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1742
|
+
checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
|
|
1743
|
+
|
|
1744
|
+
[[package]]
|
|
1745
|
+
name = "windows_i686_gnu"
|
|
1746
|
+
version = "0.52.6"
|
|
1747
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1748
|
+
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
1749
|
+
|
|
1750
|
+
[[package]]
|
|
1751
|
+
name = "windows_i686_gnu"
|
|
1752
|
+
version = "0.53.1"
|
|
1753
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1754
|
+
checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
|
|
1755
|
+
|
|
1756
|
+
[[package]]
|
|
1757
|
+
name = "windows_i686_gnullvm"
|
|
1758
|
+
version = "0.52.6"
|
|
1759
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1760
|
+
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
1761
|
+
|
|
1762
|
+
[[package]]
|
|
1763
|
+
name = "windows_i686_gnullvm"
|
|
1764
|
+
version = "0.53.1"
|
|
1765
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1766
|
+
checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
|
|
1767
|
+
|
|
1768
|
+
[[package]]
|
|
1769
|
+
name = "windows_i686_msvc"
|
|
1770
|
+
version = "0.52.6"
|
|
1771
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1772
|
+
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
1773
|
+
|
|
1774
|
+
[[package]]
|
|
1775
|
+
name = "windows_i686_msvc"
|
|
1776
|
+
version = "0.53.1"
|
|
1777
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1778
|
+
checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
|
|
1779
|
+
|
|
1780
|
+
[[package]]
|
|
1781
|
+
name = "windows_x86_64_gnu"
|
|
1782
|
+
version = "0.52.6"
|
|
1783
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1784
|
+
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
1785
|
+
|
|
1786
|
+
[[package]]
|
|
1787
|
+
name = "windows_x86_64_gnu"
|
|
1788
|
+
version = "0.53.1"
|
|
1789
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1790
|
+
checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
|
|
1791
|
+
|
|
1792
|
+
[[package]]
|
|
1793
|
+
name = "windows_x86_64_gnullvm"
|
|
1794
|
+
version = "0.52.6"
|
|
1795
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1796
|
+
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
1797
|
+
|
|
1798
|
+
[[package]]
|
|
1799
|
+
name = "windows_x86_64_gnullvm"
|
|
1800
|
+
version = "0.53.1"
|
|
1801
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1802
|
+
checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
|
|
1803
|
+
|
|
1804
|
+
[[package]]
|
|
1805
|
+
name = "windows_x86_64_msvc"
|
|
1806
|
+
version = "0.52.6"
|
|
1807
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1808
|
+
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
1809
|
+
|
|
1810
|
+
[[package]]
|
|
1811
|
+
name = "windows_x86_64_msvc"
|
|
1812
|
+
version = "0.53.1"
|
|
1813
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1814
|
+
checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
|
|
1815
|
+
|
|
1816
|
+
[[package]]
|
|
1817
|
+
name = "wit-bindgen"
|
|
1818
|
+
version = "0.51.0"
|
|
1819
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1820
|
+
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
1821
|
+
|
|
1822
|
+
[[package]]
|
|
1823
|
+
name = "writeable"
|
|
1824
|
+
version = "0.6.2"
|
|
1825
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1826
|
+
checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
|
|
1827
|
+
|
|
1828
|
+
[[package]]
|
|
1829
|
+
name = "yoke"
|
|
1830
|
+
version = "0.8.1"
|
|
1831
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1832
|
+
checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
|
|
1833
|
+
dependencies = [
|
|
1834
|
+
"stable_deref_trait",
|
|
1835
|
+
"yoke-derive",
|
|
1836
|
+
"zerofrom",
|
|
1837
|
+
]
|
|
1838
|
+
|
|
1839
|
+
[[package]]
|
|
1840
|
+
name = "yoke-derive"
|
|
1841
|
+
version = "0.8.1"
|
|
1842
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1843
|
+
checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
|
|
1844
|
+
dependencies = [
|
|
1845
|
+
"proc-macro2",
|
|
1846
|
+
"quote",
|
|
1847
|
+
"syn",
|
|
1848
|
+
"synstructure",
|
|
1849
|
+
]
|
|
1850
|
+
|
|
1851
|
+
[[package]]
|
|
1852
|
+
name = "zerocopy"
|
|
1853
|
+
version = "0.8.47"
|
|
1854
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1855
|
+
checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
|
|
1856
|
+
dependencies = [
|
|
1857
|
+
"zerocopy-derive",
|
|
1858
|
+
]
|
|
1859
|
+
|
|
1860
|
+
[[package]]
|
|
1861
|
+
name = "zerocopy-derive"
|
|
1862
|
+
version = "0.8.47"
|
|
1863
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1864
|
+
checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
|
|
1865
|
+
dependencies = [
|
|
1866
|
+
"proc-macro2",
|
|
1867
|
+
"quote",
|
|
1868
|
+
"syn",
|
|
1869
|
+
]
|
|
1870
|
+
|
|
1871
|
+
[[package]]
|
|
1872
|
+
name = "zerofrom"
|
|
1873
|
+
version = "0.1.6"
|
|
1874
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1875
|
+
checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
|
|
1876
|
+
dependencies = [
|
|
1877
|
+
"zerofrom-derive",
|
|
1878
|
+
]
|
|
1879
|
+
|
|
1880
|
+
[[package]]
|
|
1881
|
+
name = "zerofrom-derive"
|
|
1882
|
+
version = "0.1.6"
|
|
1883
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1884
|
+
checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
|
|
1885
|
+
dependencies = [
|
|
1886
|
+
"proc-macro2",
|
|
1887
|
+
"quote",
|
|
1888
|
+
"syn",
|
|
1889
|
+
"synstructure",
|
|
1890
|
+
]
|
|
1891
|
+
|
|
1892
|
+
[[package]]
|
|
1893
|
+
name = "zeroize"
|
|
1894
|
+
version = "1.8.2"
|
|
1895
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1896
|
+
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
1897
|
+
|
|
1898
|
+
[[package]]
|
|
1899
|
+
name = "zerotrie"
|
|
1900
|
+
version = "0.2.3"
|
|
1901
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1902
|
+
checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
|
|
1903
|
+
dependencies = [
|
|
1904
|
+
"displaydoc",
|
|
1905
|
+
"yoke",
|
|
1906
|
+
"zerofrom",
|
|
1907
|
+
]
|
|
1908
|
+
|
|
1909
|
+
[[package]]
|
|
1910
|
+
name = "zerovec"
|
|
1911
|
+
version = "0.11.5"
|
|
1912
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1913
|
+
checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
|
|
1914
|
+
dependencies = [
|
|
1915
|
+
"yoke",
|
|
1916
|
+
"zerofrom",
|
|
1917
|
+
"zerovec-derive",
|
|
1918
|
+
]
|
|
1919
|
+
|
|
1920
|
+
[[package]]
|
|
1921
|
+
name = "zerovec-derive"
|
|
1922
|
+
version = "0.11.2"
|
|
1923
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1924
|
+
checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
|
|
1925
|
+
dependencies = [
|
|
1926
|
+
"proc-macro2",
|
|
1927
|
+
"quote",
|
|
1928
|
+
"syn",
|
|
1929
|
+
]
|
|
1930
|
+
|
|
1931
|
+
[[package]]
|
|
1932
|
+
name = "zmij"
|
|
1933
|
+
version = "1.0.21"
|
|
1934
|
+
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
1935
|
+
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|