aibridge-sdk 2.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. aibridge_sdk-2.1.0/Cargo.lock +2413 -0
  2. aibridge_sdk-2.1.0/Cargo.toml +46 -0
  3. aibridge_sdk-2.1.0/LICENSE +21 -0
  4. aibridge_sdk-2.1.0/PKG-INFO +443 -0
  5. aibridge_sdk-2.1.0/README.zh-CN.md +416 -0
  6. aibridge_sdk-2.1.0/crates/aibridge-core/Cargo.toml +36 -0
  7. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapter/base.rs +571 -0
  8. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapter/factory.rs +648 -0
  9. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapter/mod.rs +15 -0
  10. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/additional_models.rs +1801 -0
  11. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/aggregation_platforms.rs +1826 -0
  12. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/agnes.rs +2213 -0
  13. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/anthropic.rs +2576 -0
  14. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/assemblyai.rs +1608 -0
  15. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/azure.rs +1362 -0
  16. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/cartesia.rs +1416 -0
  17. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/chinese.rs +2809 -0
  18. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/deepgram.rs +1456 -0
  19. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/echo.rs +704 -0
  20. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/edge_tts.rs +1669 -0
  21. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/elevenlabs.rs +1467 -0
  22. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/emerging_models.rs +2723 -0
  23. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/gemini.rs +2267 -0
  24. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/kling.rs +1749 -0
  25. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/mod.rs +77 -0
  26. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/more_models.rs +2175 -0
  27. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/openai.rs +665 -0
  28. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/openai_compat.rs +2544 -0
  29. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/pika.rs +1594 -0
  30. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/runway.rs +1553 -0
  31. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/stability.rs +1450 -0
  32. aibridge_sdk-2.1.0/crates/aibridge-core/src/adapters/volcengine_cv.rs +1781 -0
  33. aibridge_sdk-2.1.0/crates/aibridge-core/src/client.rs +254 -0
  34. aibridge_sdk-2.1.0/crates/aibridge-core/src/config.rs +489 -0
  35. aibridge_sdk-2.1.0/crates/aibridge-core/src/error.rs +409 -0
  36. aibridge_sdk-2.1.0/crates/aibridge-core/src/http.rs +284 -0
  37. aibridge_sdk-2.1.0/crates/aibridge-core/src/lib.rs +24 -0
  38. aibridge_sdk-2.1.0/crates/aibridge-core/src/model/audio.rs +514 -0
  39. aibridge_sdk-2.1.0/crates/aibridge-core/src/model/chat.rs +790 -0
  40. aibridge_sdk-2.1.0/crates/aibridge-core/src/model/common.rs +387 -0
  41. aibridge_sdk-2.1.0/crates/aibridge-core/src/model/image.rs +463 -0
  42. aibridge_sdk-2.1.0/crates/aibridge-core/src/model/mod.rs +40 -0
  43. aibridge_sdk-2.1.0/crates/aibridge-core/src/model/options.rs +618 -0
  44. aibridge_sdk-2.1.0/crates/aibridge-core/src/model/video.rs +474 -0
  45. aibridge_sdk-2.1.0/crates/aibridge-core/src/retry.rs +306 -0
  46. aibridge_sdk-2.1.0/crates/aibridge-core/src/router.rs +971 -0
  47. aibridge_sdk-2.1.0/crates/aibridge-core/src/util.rs +316 -0
  48. aibridge_sdk-2.1.0/crates/aibridge-python/Cargo.toml +37 -0
  49. aibridge_sdk-2.1.0/crates/aibridge-python/src/lib.rs +2833 -0
  50. aibridge_sdk-2.1.0/pyproject.toml +47 -0
@@ -0,0 +1,2413 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 3
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "aibridge-core"
16
+ version = "2.1.0"
17
+ dependencies = [
18
+ "async-stream",
19
+ "async-trait",
20
+ "base64",
21
+ "bytes",
22
+ "futures",
23
+ "hmac",
24
+ "mockito",
25
+ "once_cell",
26
+ "rand 0.8.6",
27
+ "reqwest",
28
+ "serde",
29
+ "serde_json",
30
+ "sha2",
31
+ "thiserror 1.0.69",
32
+ "tokio",
33
+ "tokio-tungstenite",
34
+ "tracing",
35
+ ]
36
+
37
+ [[package]]
38
+ name = "aibridge-ffi"
39
+ version = "2.1.0"
40
+ dependencies = [
41
+ "aibridge-core",
42
+ "cbindgen",
43
+ "futures",
44
+ "once_cell",
45
+ "serde",
46
+ "serde_json",
47
+ "tokio",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "aibridge-node"
52
+ version = "2.1.0"
53
+ dependencies = [
54
+ "aibridge-core",
55
+ "futures",
56
+ "napi",
57
+ "napi-build",
58
+ "napi-derive",
59
+ "serde_json",
60
+ "tokio",
61
+ ]
62
+
63
+ [[package]]
64
+ name = "aibridge-python"
65
+ version = "2.1.0"
66
+ dependencies = [
67
+ "aibridge-core",
68
+ "futures",
69
+ "once_cell",
70
+ "pyo3",
71
+ "serde_json",
72
+ "tokio",
73
+ ]
74
+
75
+ [[package]]
76
+ name = "anstream"
77
+ version = "1.0.0"
78
+ source = "registry+https://github.com/rust-lang/crates.io-index"
79
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
80
+ dependencies = [
81
+ "anstyle",
82
+ "anstyle-parse",
83
+ "anstyle-query",
84
+ "anstyle-wincon",
85
+ "colorchoice",
86
+ "is_terminal_polyfill",
87
+ "utf8parse",
88
+ ]
89
+
90
+ [[package]]
91
+ name = "anstyle"
92
+ version = "1.0.14"
93
+ source = "registry+https://github.com/rust-lang/crates.io-index"
94
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
95
+
96
+ [[package]]
97
+ name = "anstyle-parse"
98
+ version = "1.0.0"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
101
+ dependencies = [
102
+ "utf8parse",
103
+ ]
104
+
105
+ [[package]]
106
+ name = "anstyle-query"
107
+ version = "1.1.5"
108
+ source = "registry+https://github.com/rust-lang/crates.io-index"
109
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
110
+ dependencies = [
111
+ "windows-sys 0.61.2",
112
+ ]
113
+
114
+ [[package]]
115
+ name = "anstyle-wincon"
116
+ version = "3.0.11"
117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
118
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
119
+ dependencies = [
120
+ "anstyle",
121
+ "once_cell_polyfill",
122
+ "windows-sys 0.61.2",
123
+ ]
124
+
125
+ [[package]]
126
+ name = "assert-json-diff"
127
+ version = "2.0.2"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
130
+ dependencies = [
131
+ "serde",
132
+ "serde_json",
133
+ ]
134
+
135
+ [[package]]
136
+ name = "async-stream"
137
+ version = "0.3.6"
138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
139
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
140
+ dependencies = [
141
+ "async-stream-impl",
142
+ "futures-core",
143
+ "pin-project-lite",
144
+ ]
145
+
146
+ [[package]]
147
+ name = "async-stream-impl"
148
+ version = "0.3.6"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
151
+ dependencies = [
152
+ "proc-macro2",
153
+ "quote",
154
+ "syn",
155
+ ]
156
+
157
+ [[package]]
158
+ name = "async-trait"
159
+ version = "0.1.89"
160
+ source = "registry+https://github.com/rust-lang/crates.io-index"
161
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
162
+ dependencies = [
163
+ "proc-macro2",
164
+ "quote",
165
+ "syn",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "atomic-waker"
170
+ version = "1.1.2"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
173
+
174
+ [[package]]
175
+ name = "base64"
176
+ version = "0.22.1"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
179
+
180
+ [[package]]
181
+ name = "bitflags"
182
+ version = "2.13.0"
183
+ source = "registry+https://github.com/rust-lang/crates.io-index"
184
+ checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8"
185
+
186
+ [[package]]
187
+ name = "block-buffer"
188
+ version = "0.10.4"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
191
+ dependencies = [
192
+ "generic-array",
193
+ ]
194
+
195
+ [[package]]
196
+ name = "bumpalo"
197
+ version = "3.20.3"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
200
+
201
+ [[package]]
202
+ name = "byteorder"
203
+ version = "1.5.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
206
+
207
+ [[package]]
208
+ name = "bytes"
209
+ version = "1.12.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593"
212
+
213
+ [[package]]
214
+ name = "cbindgen"
215
+ version = "0.29.4"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "2ecb53484c9c167ba674026b656d8a27d7657a58e6066aa902bfb1a4aa00ae20"
218
+ dependencies = [
219
+ "clap",
220
+ "heck",
221
+ "indexmap",
222
+ "log",
223
+ "proc-macro2",
224
+ "quote",
225
+ "serde",
226
+ "serde_json",
227
+ "syn",
228
+ "tempfile",
229
+ "toml",
230
+ ]
231
+
232
+ [[package]]
233
+ name = "cc"
234
+ version = "1.2.66"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "f5d6cac793997bd970000024b2934968efe83b382de4fdcf4fcb46b6ee4ad996"
237
+ dependencies = [
238
+ "find-msvc-tools",
239
+ "shlex",
240
+ ]
241
+
242
+ [[package]]
243
+ name = "cfg-if"
244
+ version = "1.0.4"
245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
246
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
247
+
248
+ [[package]]
249
+ name = "cfg_aliases"
250
+ version = "0.2.1"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
253
+
254
+ [[package]]
255
+ name = "chacha20"
256
+ version = "0.10.1"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "d524456ba66e72eb8b115ff89e01e497f8e6d11d78b70b1aa13c0fbd97540a81"
259
+ dependencies = [
260
+ "cfg-if",
261
+ "cpufeatures 0.3.0",
262
+ "rand_core 0.10.1",
263
+ ]
264
+
265
+ [[package]]
266
+ name = "clap"
267
+ version = "4.6.1"
268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
269
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
270
+ dependencies = [
271
+ "clap_builder",
272
+ ]
273
+
274
+ [[package]]
275
+ name = "clap_builder"
276
+ version = "4.6.0"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
279
+ dependencies = [
280
+ "anstream",
281
+ "anstyle",
282
+ "clap_lex",
283
+ "strsim",
284
+ ]
285
+
286
+ [[package]]
287
+ name = "clap_lex"
288
+ version = "1.1.0"
289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
290
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
291
+
292
+ [[package]]
293
+ name = "colorchoice"
294
+ version = "1.0.5"
295
+ source = "registry+https://github.com/rust-lang/crates.io-index"
296
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
297
+
298
+ [[package]]
299
+ name = "colored"
300
+ version = "3.1.1"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
303
+ dependencies = [
304
+ "windows-sys 0.61.2",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "convert_case"
309
+ version = "0.6.0"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
312
+ dependencies = [
313
+ "unicode-segmentation",
314
+ ]
315
+
316
+ [[package]]
317
+ name = "cpufeatures"
318
+ version = "0.2.17"
319
+ source = "registry+https://github.com/rust-lang/crates.io-index"
320
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
321
+ dependencies = [
322
+ "libc",
323
+ ]
324
+
325
+ [[package]]
326
+ name = "cpufeatures"
327
+ version = "0.3.0"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
330
+ dependencies = [
331
+ "libc",
332
+ ]
333
+
334
+ [[package]]
335
+ name = "crypto-common"
336
+ version = "0.1.7"
337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
338
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
339
+ dependencies = [
340
+ "generic-array",
341
+ "typenum",
342
+ ]
343
+
344
+ [[package]]
345
+ name = "ctor"
346
+ version = "0.2.9"
347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
348
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
349
+ dependencies = [
350
+ "quote",
351
+ "syn",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "data-encoding"
356
+ version = "2.11.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
359
+
360
+ [[package]]
361
+ name = "digest"
362
+ version = "0.10.7"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
365
+ dependencies = [
366
+ "block-buffer",
367
+ "crypto-common",
368
+ "subtle",
369
+ ]
370
+
371
+ [[package]]
372
+ name = "displaydoc"
373
+ version = "0.2.6"
374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
375
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
376
+ dependencies = [
377
+ "proc-macro2",
378
+ "quote",
379
+ "syn",
380
+ ]
381
+
382
+ [[package]]
383
+ name = "equivalent"
384
+ version = "1.0.2"
385
+ source = "registry+https://github.com/rust-lang/crates.io-index"
386
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
387
+
388
+ [[package]]
389
+ name = "errno"
390
+ version = "0.3.14"
391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
392
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
393
+ dependencies = [
394
+ "libc",
395
+ "windows-sys 0.61.2",
396
+ ]
397
+
398
+ [[package]]
399
+ name = "fastrand"
400
+ version = "2.4.1"
401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
402
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
403
+
404
+ [[package]]
405
+ name = "find-msvc-tools"
406
+ version = "0.1.9"
407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
408
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
409
+
410
+ [[package]]
411
+ name = "fnv"
412
+ version = "1.0.7"
413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
414
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
415
+
416
+ [[package]]
417
+ name = "form_urlencoded"
418
+ version = "1.2.2"
419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
420
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
421
+ dependencies = [
422
+ "percent-encoding",
423
+ ]
424
+
425
+ [[package]]
426
+ name = "futures"
427
+ version = "0.3.32"
428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
429
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
430
+ dependencies = [
431
+ "futures-channel",
432
+ "futures-core",
433
+ "futures-executor",
434
+ "futures-io",
435
+ "futures-sink",
436
+ "futures-task",
437
+ "futures-util",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "futures-channel"
442
+ version = "0.3.32"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
445
+ dependencies = [
446
+ "futures-core",
447
+ "futures-sink",
448
+ ]
449
+
450
+ [[package]]
451
+ name = "futures-core"
452
+ version = "0.3.32"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
455
+
456
+ [[package]]
457
+ name = "futures-executor"
458
+ version = "0.3.32"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
461
+ dependencies = [
462
+ "futures-core",
463
+ "futures-task",
464
+ "futures-util",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "futures-io"
469
+ version = "0.3.32"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
472
+
473
+ [[package]]
474
+ name = "futures-macro"
475
+ version = "0.3.32"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
478
+ dependencies = [
479
+ "proc-macro2",
480
+ "quote",
481
+ "syn",
482
+ ]
483
+
484
+ [[package]]
485
+ name = "futures-sink"
486
+ version = "0.3.32"
487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
488
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
489
+
490
+ [[package]]
491
+ name = "futures-task"
492
+ version = "0.3.32"
493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
494
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
495
+
496
+ [[package]]
497
+ name = "futures-util"
498
+ version = "0.3.32"
499
+ source = "registry+https://github.com/rust-lang/crates.io-index"
500
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
501
+ dependencies = [
502
+ "futures-channel",
503
+ "futures-core",
504
+ "futures-io",
505
+ "futures-macro",
506
+ "futures-sink",
507
+ "futures-task",
508
+ "memchr",
509
+ "pin-project-lite",
510
+ "slab",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "generic-array"
515
+ version = "0.14.7"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
518
+ dependencies = [
519
+ "typenum",
520
+ "version_check",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "getrandom"
525
+ version = "0.2.17"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
528
+ dependencies = [
529
+ "cfg-if",
530
+ "js-sys",
531
+ "libc",
532
+ "wasi",
533
+ "wasm-bindgen",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "getrandom"
538
+ version = "0.3.4"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
541
+ dependencies = [
542
+ "cfg-if",
543
+ "libc",
544
+ "r-efi 5.3.0",
545
+ "wasip2",
546
+ ]
547
+
548
+ [[package]]
549
+ name = "getrandom"
550
+ version = "0.4.3"
551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
552
+ checksum = "300e883d756b2e4ec94e02791f39b04b522276138852cfc41d9fb7e904106099"
553
+ dependencies = [
554
+ "cfg-if",
555
+ "js-sys",
556
+ "libc",
557
+ "r-efi 6.0.0",
558
+ "rand_core 0.10.1",
559
+ "wasm-bindgen",
560
+ ]
561
+
562
+ [[package]]
563
+ name = "h2"
564
+ version = "0.4.15"
565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
566
+ checksum = "6cb093c84e8bd9b188d4c4a8cb6579fc016968d14c99882163cd3ff402a4f155"
567
+ dependencies = [
568
+ "atomic-waker",
569
+ "bytes",
570
+ "fnv",
571
+ "futures-core",
572
+ "futures-sink",
573
+ "http",
574
+ "indexmap",
575
+ "slab",
576
+ "tokio",
577
+ "tokio-util",
578
+ "tracing",
579
+ ]
580
+
581
+ [[package]]
582
+ name = "hashbrown"
583
+ version = "0.17.1"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
586
+
587
+ [[package]]
588
+ name = "heck"
589
+ version = "0.5.0"
590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
591
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
592
+
593
+ [[package]]
594
+ name = "hmac"
595
+ version = "0.12.1"
596
+ source = "registry+https://github.com/rust-lang/crates.io-index"
597
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
598
+ dependencies = [
599
+ "digest",
600
+ ]
601
+
602
+ [[package]]
603
+ name = "http"
604
+ version = "1.4.2"
605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
606
+ checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
607
+ dependencies = [
608
+ "bytes",
609
+ "itoa",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "http-body"
614
+ version = "1.0.1"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
617
+ dependencies = [
618
+ "bytes",
619
+ "http",
620
+ ]
621
+
622
+ [[package]]
623
+ name = "http-body-util"
624
+ version = "0.1.3"
625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
626
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
627
+ dependencies = [
628
+ "bytes",
629
+ "futures-core",
630
+ "http",
631
+ "http-body",
632
+ "pin-project-lite",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "httparse"
637
+ version = "1.10.1"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
640
+
641
+ [[package]]
642
+ name = "httpdate"
643
+ version = "1.0.3"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
646
+
647
+ [[package]]
648
+ name = "hyper"
649
+ version = "1.10.1"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
652
+ dependencies = [
653
+ "atomic-waker",
654
+ "bytes",
655
+ "futures-channel",
656
+ "futures-core",
657
+ "h2",
658
+ "http",
659
+ "http-body",
660
+ "httparse",
661
+ "httpdate",
662
+ "itoa",
663
+ "pin-project-lite",
664
+ "smallvec",
665
+ "tokio",
666
+ "want",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "hyper-rustls"
671
+ version = "0.27.9"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
674
+ dependencies = [
675
+ "http",
676
+ "hyper",
677
+ "hyper-util",
678
+ "rustls 0.23.41",
679
+ "tokio",
680
+ "tokio-rustls 0.26.4",
681
+ "tower-service",
682
+ "webpki-roots 1.0.8",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "hyper-util"
687
+ version = "0.1.20"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
690
+ dependencies = [
691
+ "base64",
692
+ "bytes",
693
+ "futures-channel",
694
+ "futures-util",
695
+ "http",
696
+ "http-body",
697
+ "hyper",
698
+ "ipnet",
699
+ "libc",
700
+ "percent-encoding",
701
+ "pin-project-lite",
702
+ "socket2",
703
+ "tokio",
704
+ "tower-service",
705
+ "tracing",
706
+ ]
707
+
708
+ [[package]]
709
+ name = "icu_collections"
710
+ version = "2.2.0"
711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
712
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
713
+ dependencies = [
714
+ "displaydoc",
715
+ "potential_utf",
716
+ "utf8_iter",
717
+ "yoke",
718
+ "zerofrom",
719
+ "zerovec",
720
+ ]
721
+
722
+ [[package]]
723
+ name = "icu_locale_core"
724
+ version = "2.2.0"
725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
726
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
727
+ dependencies = [
728
+ "displaydoc",
729
+ "litemap",
730
+ "tinystr",
731
+ "writeable",
732
+ "zerovec",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "icu_normalizer"
737
+ version = "2.2.0"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
740
+ dependencies = [
741
+ "icu_collections",
742
+ "icu_normalizer_data",
743
+ "icu_properties",
744
+ "icu_provider",
745
+ "smallvec",
746
+ "zerovec",
747
+ ]
748
+
749
+ [[package]]
750
+ name = "icu_normalizer_data"
751
+ version = "2.2.0"
752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
753
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
754
+
755
+ [[package]]
756
+ name = "icu_properties"
757
+ version = "2.2.0"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
760
+ dependencies = [
761
+ "icu_collections",
762
+ "icu_locale_core",
763
+ "icu_properties_data",
764
+ "icu_provider",
765
+ "zerotrie",
766
+ "zerovec",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "icu_properties_data"
771
+ version = "2.2.0"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
774
+
775
+ [[package]]
776
+ name = "icu_provider"
777
+ version = "2.2.0"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
780
+ dependencies = [
781
+ "displaydoc",
782
+ "icu_locale_core",
783
+ "writeable",
784
+ "yoke",
785
+ "zerofrom",
786
+ "zerotrie",
787
+ "zerovec",
788
+ ]
789
+
790
+ [[package]]
791
+ name = "idna"
792
+ version = "1.1.0"
793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
794
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
795
+ dependencies = [
796
+ "idna_adapter",
797
+ "smallvec",
798
+ "utf8_iter",
799
+ ]
800
+
801
+ [[package]]
802
+ name = "idna_adapter"
803
+ version = "1.2.2"
804
+ source = "registry+https://github.com/rust-lang/crates.io-index"
805
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
806
+ dependencies = [
807
+ "icu_normalizer",
808
+ "icu_properties",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "indexmap"
813
+ version = "2.14.0"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
816
+ dependencies = [
817
+ "equivalent",
818
+ "hashbrown",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "ipnet"
823
+ version = "2.12.0"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
826
+
827
+ [[package]]
828
+ name = "is_terminal_polyfill"
829
+ version = "1.70.2"
830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
831
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
832
+
833
+ [[package]]
834
+ name = "itoa"
835
+ version = "1.0.18"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
838
+
839
+ [[package]]
840
+ name = "js-sys"
841
+ version = "0.3.103"
842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
843
+ checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102"
844
+ dependencies = [
845
+ "cfg-if",
846
+ "futures-util",
847
+ "wasm-bindgen",
848
+ ]
849
+
850
+ [[package]]
851
+ name = "libc"
852
+ version = "0.2.186"
853
+ source = "registry+https://github.com/rust-lang/crates.io-index"
854
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
855
+
856
+ [[package]]
857
+ name = "libloading"
858
+ version = "0.8.9"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
861
+ dependencies = [
862
+ "cfg-if",
863
+ "windows-link",
864
+ ]
865
+
866
+ [[package]]
867
+ name = "linux-raw-sys"
868
+ version = "0.12.1"
869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
870
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
871
+
872
+ [[package]]
873
+ name = "litemap"
874
+ version = "0.8.2"
875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
876
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
877
+
878
+ [[package]]
879
+ name = "lock_api"
880
+ version = "0.4.14"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
883
+ dependencies = [
884
+ "scopeguard",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "log"
889
+ version = "0.4.33"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad"
892
+
893
+ [[package]]
894
+ name = "lru-slab"
895
+ version = "0.1.2"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
898
+
899
+ [[package]]
900
+ name = "memchr"
901
+ version = "2.8.2"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4"
904
+
905
+ [[package]]
906
+ name = "mime"
907
+ version = "0.3.17"
908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
909
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
910
+
911
+ [[package]]
912
+ name = "mime_guess"
913
+ version = "2.0.5"
914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
915
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
916
+ dependencies = [
917
+ "mime",
918
+ "unicase",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "mio"
923
+ version = "1.2.1"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
926
+ dependencies = [
927
+ "libc",
928
+ "wasi",
929
+ "windows-sys 0.61.2",
930
+ ]
931
+
932
+ [[package]]
933
+ name = "mockito"
934
+ version = "1.7.2"
935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
936
+ checksum = "90820618712cab19cfc46b274c6c22546a82affcb3c3bdf0f29e3db8e1bb92c0"
937
+ dependencies = [
938
+ "assert-json-diff",
939
+ "bytes",
940
+ "colored",
941
+ "futures-core",
942
+ "http",
943
+ "http-body",
944
+ "http-body-util",
945
+ "hyper",
946
+ "hyper-util",
947
+ "log",
948
+ "pin-project-lite",
949
+ "rand 0.9.4",
950
+ "regex",
951
+ "serde_json",
952
+ "serde_urlencoded",
953
+ "similar",
954
+ "tokio",
955
+ ]
956
+
957
+ [[package]]
958
+ name = "napi"
959
+ version = "2.16.17"
960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
961
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
962
+ dependencies = [
963
+ "bitflags",
964
+ "ctor",
965
+ "napi-derive",
966
+ "napi-sys",
967
+ "once_cell",
968
+ "serde",
969
+ "serde_json",
970
+ "tokio",
971
+ ]
972
+
973
+ [[package]]
974
+ name = "napi-build"
975
+ version = "2.3.2"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "c9c366d2c8c60b86fa632df75f745509b52f9128f91a6bad4c796e44abb505e1"
978
+
979
+ [[package]]
980
+ name = "napi-derive"
981
+ version = "2.16.13"
982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
983
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
984
+ dependencies = [
985
+ "cfg-if",
986
+ "convert_case",
987
+ "napi-derive-backend",
988
+ "proc-macro2",
989
+ "quote",
990
+ "syn",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "napi-derive-backend"
995
+ version = "1.0.75"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
998
+ dependencies = [
999
+ "convert_case",
1000
+ "once_cell",
1001
+ "proc-macro2",
1002
+ "quote",
1003
+ "regex",
1004
+ "semver",
1005
+ "syn",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "napi-sys"
1010
+ version = "2.4.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
1013
+ dependencies = [
1014
+ "libloading",
1015
+ ]
1016
+
1017
+ [[package]]
1018
+ name = "once_cell"
1019
+ version = "1.21.4"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1022
+
1023
+ [[package]]
1024
+ name = "once_cell_polyfill"
1025
+ version = "1.70.2"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1028
+
1029
+ [[package]]
1030
+ name = "parking_lot"
1031
+ version = "0.12.5"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1034
+ dependencies = [
1035
+ "lock_api",
1036
+ "parking_lot_core",
1037
+ ]
1038
+
1039
+ [[package]]
1040
+ name = "parking_lot_core"
1041
+ version = "0.9.12"
1042
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1043
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1044
+ dependencies = [
1045
+ "cfg-if",
1046
+ "libc",
1047
+ "redox_syscall",
1048
+ "smallvec",
1049
+ "windows-link",
1050
+ ]
1051
+
1052
+ [[package]]
1053
+ name = "percent-encoding"
1054
+ version = "2.3.2"
1055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1056
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1057
+
1058
+ [[package]]
1059
+ name = "pin-project-lite"
1060
+ version = "0.2.17"
1061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1062
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1063
+
1064
+ [[package]]
1065
+ name = "portable-atomic"
1066
+ version = "1.13.1"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1069
+
1070
+ [[package]]
1071
+ name = "potential_utf"
1072
+ version = "0.1.5"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1075
+ dependencies = [
1076
+ "zerovec",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "ppv-lite86"
1081
+ version = "0.2.21"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1084
+ dependencies = [
1085
+ "zerocopy",
1086
+ ]
1087
+
1088
+ [[package]]
1089
+ name = "proc-macro2"
1090
+ version = "1.0.106"
1091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1092
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1093
+ dependencies = [
1094
+ "unicode-ident",
1095
+ ]
1096
+
1097
+ [[package]]
1098
+ name = "pyo3"
1099
+ version = "0.28.3"
1100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1101
+ checksum = "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
1102
+ dependencies = [
1103
+ "libc",
1104
+ "once_cell",
1105
+ "portable-atomic",
1106
+ "pyo3-build-config",
1107
+ "pyo3-ffi",
1108
+ "pyo3-macros",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "pyo3-build-config"
1113
+ version = "0.28.3"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
1116
+ dependencies = [
1117
+ "target-lexicon",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "pyo3-ffi"
1122
+ version = "0.28.3"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
1125
+ dependencies = [
1126
+ "libc",
1127
+ "pyo3-build-config",
1128
+ ]
1129
+
1130
+ [[package]]
1131
+ name = "pyo3-macros"
1132
+ version = "0.28.3"
1133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1134
+ checksum = "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
1135
+ dependencies = [
1136
+ "proc-macro2",
1137
+ "pyo3-macros-backend",
1138
+ "quote",
1139
+ "syn",
1140
+ ]
1141
+
1142
+ [[package]]
1143
+ name = "pyo3-macros-backend"
1144
+ version = "0.28.3"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
1147
+ dependencies = [
1148
+ "heck",
1149
+ "proc-macro2",
1150
+ "pyo3-build-config",
1151
+ "quote",
1152
+ "syn",
1153
+ ]
1154
+
1155
+ [[package]]
1156
+ name = "quinn"
1157
+ version = "0.11.11"
1158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1159
+ checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8"
1160
+ dependencies = [
1161
+ "bytes",
1162
+ "cfg_aliases",
1163
+ "pin-project-lite",
1164
+ "quinn-proto",
1165
+ "quinn-udp",
1166
+ "rustc-hash",
1167
+ "rustls 0.23.41",
1168
+ "socket2",
1169
+ "thiserror 2.0.18",
1170
+ "tokio",
1171
+ "tracing",
1172
+ "web-time",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "quinn-proto"
1177
+ version = "0.11.16"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "2f4bfc015262b9df63c8845072ce59068853ff5872180c2ce2f13038b970e560"
1180
+ dependencies = [
1181
+ "bytes",
1182
+ "getrandom 0.4.3",
1183
+ "lru-slab",
1184
+ "rand 0.10.2",
1185
+ "rand_pcg",
1186
+ "ring",
1187
+ "rustc-hash",
1188
+ "rustls 0.23.41",
1189
+ "rustls-pki-types",
1190
+ "slab",
1191
+ "thiserror 2.0.18",
1192
+ "tinyvec",
1193
+ "tracing",
1194
+ "web-time",
1195
+ ]
1196
+
1197
+ [[package]]
1198
+ name = "quinn-udp"
1199
+ version = "0.5.15"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "35a133f956daabe89a61a685c2649f13d82d5aa4bd5d12d1277e1072a21c0694"
1202
+ dependencies = [
1203
+ "cfg_aliases",
1204
+ "libc",
1205
+ "once_cell",
1206
+ "socket2",
1207
+ "tracing",
1208
+ "windows-sys 0.61.2",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "quote"
1213
+ version = "1.0.46"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368"
1216
+ dependencies = [
1217
+ "proc-macro2",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "r-efi"
1222
+ version = "5.3.0"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1225
+
1226
+ [[package]]
1227
+ name = "r-efi"
1228
+ version = "6.0.0"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1231
+
1232
+ [[package]]
1233
+ name = "rand"
1234
+ version = "0.8.6"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1237
+ dependencies = [
1238
+ "libc",
1239
+ "rand_chacha 0.3.1",
1240
+ "rand_core 0.6.4",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "rand"
1245
+ version = "0.9.4"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1248
+ dependencies = [
1249
+ "rand_chacha 0.9.0",
1250
+ "rand_core 0.9.5",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "rand"
1255
+ version = "0.10.2"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "c7f5fa3a058cd35567ef9bfa5e75732bee0f9e4c55fa90477bef2dfcdbc4be80"
1258
+ dependencies = [
1259
+ "chacha20",
1260
+ "getrandom 0.4.3",
1261
+ "rand_core 0.10.1",
1262
+ ]
1263
+
1264
+ [[package]]
1265
+ name = "rand_chacha"
1266
+ version = "0.3.1"
1267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1268
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1269
+ dependencies = [
1270
+ "ppv-lite86",
1271
+ "rand_core 0.6.4",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "rand_chacha"
1276
+ version = "0.9.0"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1279
+ dependencies = [
1280
+ "ppv-lite86",
1281
+ "rand_core 0.9.5",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "rand_core"
1286
+ version = "0.6.4"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1289
+ dependencies = [
1290
+ "getrandom 0.2.17",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "rand_core"
1295
+ version = "0.9.5"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1298
+ dependencies = [
1299
+ "getrandom 0.3.4",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "rand_core"
1304
+ version = "0.10.1"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1307
+
1308
+ [[package]]
1309
+ name = "rand_pcg"
1310
+ version = "0.10.2"
1311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1312
+ checksum = "caa0f4137e1c0a72f4c651489402276c8e8e1cf081f3b0ba156d2cbeef09e86a"
1313
+ dependencies = [
1314
+ "rand_core 0.10.1",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "redox_syscall"
1319
+ version = "0.5.18"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1322
+ dependencies = [
1323
+ "bitflags",
1324
+ ]
1325
+
1326
+ [[package]]
1327
+ name = "regex"
1328
+ version = "1.12.4"
1329
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1330
+ checksum = "f1292b7759ae1cb9ec195452d1390a074f0cd8541ab7a5a8c31cd6db45d4a6ba"
1331
+ dependencies = [
1332
+ "aho-corasick",
1333
+ "memchr",
1334
+ "regex-automata",
1335
+ "regex-syntax",
1336
+ ]
1337
+
1338
+ [[package]]
1339
+ name = "regex-automata"
1340
+ version = "0.4.14"
1341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1342
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1343
+ dependencies = [
1344
+ "aho-corasick",
1345
+ "memchr",
1346
+ "regex-syntax",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "regex-syntax"
1351
+ version = "0.8.11"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "d6f6ff9a378485b298a5286656da665ba74413d36db0979633275d2e708145d4"
1354
+
1355
+ [[package]]
1356
+ name = "reqwest"
1357
+ version = "0.12.28"
1358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1359
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1360
+ dependencies = [
1361
+ "base64",
1362
+ "bytes",
1363
+ "futures-core",
1364
+ "futures-util",
1365
+ "h2",
1366
+ "http",
1367
+ "http-body",
1368
+ "http-body-util",
1369
+ "hyper",
1370
+ "hyper-rustls",
1371
+ "hyper-util",
1372
+ "js-sys",
1373
+ "log",
1374
+ "mime_guess",
1375
+ "percent-encoding",
1376
+ "pin-project-lite",
1377
+ "quinn",
1378
+ "rustls 0.23.41",
1379
+ "rustls-pki-types",
1380
+ "serde",
1381
+ "serde_json",
1382
+ "serde_urlencoded",
1383
+ "sync_wrapper",
1384
+ "tokio",
1385
+ "tokio-rustls 0.26.4",
1386
+ "tokio-util",
1387
+ "tower",
1388
+ "tower-http",
1389
+ "tower-service",
1390
+ "url",
1391
+ "wasm-bindgen",
1392
+ "wasm-bindgen-futures",
1393
+ "wasm-streams",
1394
+ "web-sys",
1395
+ "webpki-roots 1.0.8",
1396
+ ]
1397
+
1398
+ [[package]]
1399
+ name = "ring"
1400
+ version = "0.17.14"
1401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1402
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1403
+ dependencies = [
1404
+ "cc",
1405
+ "cfg-if",
1406
+ "getrandom 0.2.17",
1407
+ "libc",
1408
+ "untrusted",
1409
+ "windows-sys 0.52.0",
1410
+ ]
1411
+
1412
+ [[package]]
1413
+ name = "rustc-hash"
1414
+ version = "2.1.3"
1415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1416
+ checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d"
1417
+
1418
+ [[package]]
1419
+ name = "rustix"
1420
+ version = "1.1.4"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1423
+ dependencies = [
1424
+ "bitflags",
1425
+ "errno",
1426
+ "libc",
1427
+ "linux-raw-sys",
1428
+ "windows-sys 0.61.2",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "rustls"
1433
+ version = "0.22.4"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "bf4ef73721ac7bcd79b2b315da7779d8fc09718c6b3d2d1b2d94850eb8c18432"
1436
+ dependencies = [
1437
+ "log",
1438
+ "ring",
1439
+ "rustls-pki-types",
1440
+ "rustls-webpki 0.102.8",
1441
+ "subtle",
1442
+ "zeroize",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "rustls"
1447
+ version = "0.23.41"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f"
1450
+ dependencies = [
1451
+ "once_cell",
1452
+ "ring",
1453
+ "rustls-pki-types",
1454
+ "rustls-webpki 0.103.13",
1455
+ "subtle",
1456
+ "zeroize",
1457
+ ]
1458
+
1459
+ [[package]]
1460
+ name = "rustls-pki-types"
1461
+ version = "1.15.0"
1462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1463
+ checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046"
1464
+ dependencies = [
1465
+ "web-time",
1466
+ "zeroize",
1467
+ ]
1468
+
1469
+ [[package]]
1470
+ name = "rustls-webpki"
1471
+ version = "0.102.8"
1472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1473
+ checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
1474
+ dependencies = [
1475
+ "ring",
1476
+ "rustls-pki-types",
1477
+ "untrusted",
1478
+ ]
1479
+
1480
+ [[package]]
1481
+ name = "rustls-webpki"
1482
+ version = "0.103.13"
1483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1484
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1485
+ dependencies = [
1486
+ "ring",
1487
+ "rustls-pki-types",
1488
+ "untrusted",
1489
+ ]
1490
+
1491
+ [[package]]
1492
+ name = "rustversion"
1493
+ version = "1.0.23"
1494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1495
+ checksum = "cf54715a573b99ac80df0bc206da022bcd442c974952c7b9720069370852e21f"
1496
+
1497
+ [[package]]
1498
+ name = "ryu"
1499
+ version = "1.0.23"
1500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1501
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1502
+
1503
+ [[package]]
1504
+ name = "scopeguard"
1505
+ version = "1.2.0"
1506
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1507
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1508
+
1509
+ [[package]]
1510
+ name = "semver"
1511
+ version = "1.0.28"
1512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1513
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1514
+
1515
+ [[package]]
1516
+ name = "serde"
1517
+ version = "1.0.228"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1520
+ dependencies = [
1521
+ "serde_core",
1522
+ "serde_derive",
1523
+ ]
1524
+
1525
+ [[package]]
1526
+ name = "serde_core"
1527
+ version = "1.0.228"
1528
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1529
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1530
+ dependencies = [
1531
+ "serde_derive",
1532
+ ]
1533
+
1534
+ [[package]]
1535
+ name = "serde_derive"
1536
+ version = "1.0.228"
1537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1538
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1539
+ dependencies = [
1540
+ "proc-macro2",
1541
+ "quote",
1542
+ "syn",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "serde_json"
1547
+ version = "1.0.150"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1550
+ dependencies = [
1551
+ "itoa",
1552
+ "memchr",
1553
+ "serde",
1554
+ "serde_core",
1555
+ "zmij",
1556
+ ]
1557
+
1558
+ [[package]]
1559
+ name = "serde_spanned"
1560
+ version = "1.1.1"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "6662b5879511e06e8999a8a235d848113e942c9124f211511b16466ee2995f26"
1563
+ dependencies = [
1564
+ "serde_core",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "serde_urlencoded"
1569
+ version = "0.7.1"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1572
+ dependencies = [
1573
+ "form_urlencoded",
1574
+ "itoa",
1575
+ "ryu",
1576
+ "serde",
1577
+ ]
1578
+
1579
+ [[package]]
1580
+ name = "sha1"
1581
+ version = "0.10.6"
1582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1583
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1584
+ dependencies = [
1585
+ "cfg-if",
1586
+ "cpufeatures 0.2.17",
1587
+ "digest",
1588
+ ]
1589
+
1590
+ [[package]]
1591
+ name = "sha2"
1592
+ version = "0.10.9"
1593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1594
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1595
+ dependencies = [
1596
+ "cfg-if",
1597
+ "cpufeatures 0.2.17",
1598
+ "digest",
1599
+ ]
1600
+
1601
+ [[package]]
1602
+ name = "shlex"
1603
+ version = "2.0.1"
1604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1605
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1606
+
1607
+ [[package]]
1608
+ name = "signal-hook-registry"
1609
+ version = "1.4.8"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1612
+ dependencies = [
1613
+ "errno",
1614
+ "libc",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "similar"
1619
+ version = "2.7.0"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1622
+
1623
+ [[package]]
1624
+ name = "slab"
1625
+ version = "0.4.12"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1628
+
1629
+ [[package]]
1630
+ name = "smallvec"
1631
+ version = "1.15.2"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90"
1634
+
1635
+ [[package]]
1636
+ name = "socket2"
1637
+ version = "0.6.4"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1640
+ dependencies = [
1641
+ "libc",
1642
+ "windows-sys 0.61.2",
1643
+ ]
1644
+
1645
+ [[package]]
1646
+ name = "stable_deref_trait"
1647
+ version = "1.2.1"
1648
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1649
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1650
+
1651
+ [[package]]
1652
+ name = "strsim"
1653
+ version = "0.11.1"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1656
+
1657
+ [[package]]
1658
+ name = "subtle"
1659
+ version = "2.6.1"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1662
+
1663
+ [[package]]
1664
+ name = "syn"
1665
+ version = "2.0.118"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422"
1668
+ dependencies = [
1669
+ "proc-macro2",
1670
+ "quote",
1671
+ "unicode-ident",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "sync_wrapper"
1676
+ version = "1.0.2"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1679
+ dependencies = [
1680
+ "futures-core",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "synstructure"
1685
+ version = "0.13.2"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1688
+ dependencies = [
1689
+ "proc-macro2",
1690
+ "quote",
1691
+ "syn",
1692
+ ]
1693
+
1694
+ [[package]]
1695
+ name = "target-lexicon"
1696
+ version = "0.13.5"
1697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1698
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1699
+
1700
+ [[package]]
1701
+ name = "tempfile"
1702
+ version = "3.27.0"
1703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1704
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1705
+ dependencies = [
1706
+ "fastrand",
1707
+ "getrandom 0.4.3",
1708
+ "once_cell",
1709
+ "rustix",
1710
+ "windows-sys 0.61.2",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "thiserror"
1715
+ version = "1.0.69"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1718
+ dependencies = [
1719
+ "thiserror-impl 1.0.69",
1720
+ ]
1721
+
1722
+ [[package]]
1723
+ name = "thiserror"
1724
+ version = "2.0.18"
1725
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1726
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1727
+ dependencies = [
1728
+ "thiserror-impl 2.0.18",
1729
+ ]
1730
+
1731
+ [[package]]
1732
+ name = "thiserror-impl"
1733
+ version = "1.0.69"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1736
+ dependencies = [
1737
+ "proc-macro2",
1738
+ "quote",
1739
+ "syn",
1740
+ ]
1741
+
1742
+ [[package]]
1743
+ name = "thiserror-impl"
1744
+ version = "2.0.18"
1745
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1746
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1747
+ dependencies = [
1748
+ "proc-macro2",
1749
+ "quote",
1750
+ "syn",
1751
+ ]
1752
+
1753
+ [[package]]
1754
+ name = "tinystr"
1755
+ version = "0.8.3"
1756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1757
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1758
+ dependencies = [
1759
+ "displaydoc",
1760
+ "zerovec",
1761
+ ]
1762
+
1763
+ [[package]]
1764
+ name = "tinyvec"
1765
+ version = "1.11.0"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1768
+ dependencies = [
1769
+ "tinyvec_macros",
1770
+ ]
1771
+
1772
+ [[package]]
1773
+ name = "tinyvec_macros"
1774
+ version = "0.1.1"
1775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1776
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1777
+
1778
+ [[package]]
1779
+ name = "tokio"
1780
+ version = "1.52.3"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1783
+ dependencies = [
1784
+ "bytes",
1785
+ "libc",
1786
+ "mio",
1787
+ "parking_lot",
1788
+ "pin-project-lite",
1789
+ "signal-hook-registry",
1790
+ "socket2",
1791
+ "tokio-macros",
1792
+ "windows-sys 0.61.2",
1793
+ ]
1794
+
1795
+ [[package]]
1796
+ name = "tokio-macros"
1797
+ version = "2.7.0"
1798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1799
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1800
+ dependencies = [
1801
+ "proc-macro2",
1802
+ "quote",
1803
+ "syn",
1804
+ ]
1805
+
1806
+ [[package]]
1807
+ name = "tokio-rustls"
1808
+ version = "0.25.0"
1809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1810
+ checksum = "775e0c0f0adb3a2f22a00c4745d728b479985fc15ee7ca6a2608388c5569860f"
1811
+ dependencies = [
1812
+ "rustls 0.22.4",
1813
+ "rustls-pki-types",
1814
+ "tokio",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "tokio-rustls"
1819
+ version = "0.26.4"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1822
+ dependencies = [
1823
+ "rustls 0.23.41",
1824
+ "tokio",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "tokio-tungstenite"
1829
+ version = "0.21.0"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
1832
+ dependencies = [
1833
+ "futures-util",
1834
+ "log",
1835
+ "rustls 0.22.4",
1836
+ "rustls-pki-types",
1837
+ "tokio",
1838
+ "tokio-rustls 0.25.0",
1839
+ "tungstenite",
1840
+ "webpki-roots 0.26.11",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "tokio-util"
1845
+ version = "0.7.18"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1848
+ dependencies = [
1849
+ "bytes",
1850
+ "futures-core",
1851
+ "futures-sink",
1852
+ "pin-project-lite",
1853
+ "tokio",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "toml"
1858
+ version = "0.9.12+spec-1.1.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
1861
+ dependencies = [
1862
+ "indexmap",
1863
+ "serde_core",
1864
+ "serde_spanned",
1865
+ "toml_datetime",
1866
+ "toml_parser",
1867
+ "toml_writer",
1868
+ "winnow 0.7.15",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "toml_datetime"
1873
+ version = "0.7.5+spec-1.1.0"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
1876
+ dependencies = [
1877
+ "serde_core",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "toml_parser"
1882
+ version = "1.1.2+spec-1.1.0"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "a2abe9b86193656635d2411dc43050282ca48aa31c2451210f4202550afb7526"
1885
+ dependencies = [
1886
+ "winnow 1.0.3",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "toml_writer"
1891
+ version = "1.1.1+spec-1.1.0"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "756daf9b1013ebe47a8776667b466417e2d4c5679d441c26230efd9ef78692db"
1894
+
1895
+ [[package]]
1896
+ name = "tower"
1897
+ version = "0.5.3"
1898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1899
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1900
+ dependencies = [
1901
+ "futures-core",
1902
+ "futures-util",
1903
+ "pin-project-lite",
1904
+ "sync_wrapper",
1905
+ "tokio",
1906
+ "tower-layer",
1907
+ "tower-service",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "tower-http"
1912
+ version = "0.6.11"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1915
+ dependencies = [
1916
+ "bitflags",
1917
+ "bytes",
1918
+ "futures-util",
1919
+ "http",
1920
+ "http-body",
1921
+ "pin-project-lite",
1922
+ "tower",
1923
+ "tower-layer",
1924
+ "tower-service",
1925
+ "url",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "tower-layer"
1930
+ version = "0.3.3"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1933
+
1934
+ [[package]]
1935
+ name = "tower-service"
1936
+ version = "0.3.3"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1939
+
1940
+ [[package]]
1941
+ name = "tracing"
1942
+ version = "0.1.44"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1945
+ dependencies = [
1946
+ "pin-project-lite",
1947
+ "tracing-attributes",
1948
+ "tracing-core",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "tracing-attributes"
1953
+ version = "0.1.31"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
1956
+ dependencies = [
1957
+ "proc-macro2",
1958
+ "quote",
1959
+ "syn",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "tracing-core"
1964
+ version = "0.1.36"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1967
+ dependencies = [
1968
+ "once_cell",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "try-lock"
1973
+ version = "0.2.5"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1976
+
1977
+ [[package]]
1978
+ name = "tungstenite"
1979
+ version = "0.21.0"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
1982
+ dependencies = [
1983
+ "byteorder",
1984
+ "bytes",
1985
+ "data-encoding",
1986
+ "http",
1987
+ "httparse",
1988
+ "log",
1989
+ "rand 0.8.6",
1990
+ "rustls 0.22.4",
1991
+ "rustls-pki-types",
1992
+ "sha1",
1993
+ "thiserror 1.0.69",
1994
+ "url",
1995
+ "utf-8",
1996
+ ]
1997
+
1998
+ [[package]]
1999
+ name = "typenum"
2000
+ version = "1.20.1"
2001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2002
+ checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2003
+
2004
+ [[package]]
2005
+ name = "unicase"
2006
+ version = "2.9.0"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2009
+
2010
+ [[package]]
2011
+ name = "unicode-ident"
2012
+ version = "1.0.24"
2013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2014
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2015
+
2016
+ [[package]]
2017
+ name = "unicode-segmentation"
2018
+ version = "1.13.3"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2021
+
2022
+ [[package]]
2023
+ name = "untrusted"
2024
+ version = "0.9.0"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2027
+
2028
+ [[package]]
2029
+ name = "url"
2030
+ version = "2.5.8"
2031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2032
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2033
+ dependencies = [
2034
+ "form_urlencoded",
2035
+ "idna",
2036
+ "percent-encoding",
2037
+ "serde",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "utf-8"
2042
+ version = "0.7.6"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2045
+
2046
+ [[package]]
2047
+ name = "utf8_iter"
2048
+ version = "1.0.4"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2051
+
2052
+ [[package]]
2053
+ name = "utf8parse"
2054
+ version = "0.2.2"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2057
+
2058
+ [[package]]
2059
+ name = "version_check"
2060
+ version = "0.9.5"
2061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2062
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2063
+
2064
+ [[package]]
2065
+ name = "want"
2066
+ version = "0.3.1"
2067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2068
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2069
+ dependencies = [
2070
+ "try-lock",
2071
+ ]
2072
+
2073
+ [[package]]
2074
+ name = "wasi"
2075
+ version = "0.11.1+wasi-snapshot-preview1"
2076
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2077
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2078
+
2079
+ [[package]]
2080
+ name = "wasip2"
2081
+ version = "1.0.4+wasi-0.2.12"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487"
2084
+ dependencies = [
2085
+ "wit-bindgen",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "wasm-bindgen"
2090
+ version = "0.2.126"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4"
2093
+ dependencies = [
2094
+ "cfg-if",
2095
+ "once_cell",
2096
+ "rustversion",
2097
+ "wasm-bindgen-macro",
2098
+ "wasm-bindgen-shared",
2099
+ ]
2100
+
2101
+ [[package]]
2102
+ name = "wasm-bindgen-futures"
2103
+ version = "0.4.76"
2104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2105
+ checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d"
2106
+ dependencies = [
2107
+ "js-sys",
2108
+ "wasm-bindgen",
2109
+ ]
2110
+
2111
+ [[package]]
2112
+ name = "wasm-bindgen-macro"
2113
+ version = "0.2.126"
2114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2115
+ checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1"
2116
+ dependencies = [
2117
+ "quote",
2118
+ "wasm-bindgen-macro-support",
2119
+ ]
2120
+
2121
+ [[package]]
2122
+ name = "wasm-bindgen-macro-support"
2123
+ version = "0.2.126"
2124
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2125
+ checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e"
2126
+ dependencies = [
2127
+ "bumpalo",
2128
+ "proc-macro2",
2129
+ "quote",
2130
+ "syn",
2131
+ "wasm-bindgen-shared",
2132
+ ]
2133
+
2134
+ [[package]]
2135
+ name = "wasm-bindgen-shared"
2136
+ version = "0.2.126"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24"
2139
+ dependencies = [
2140
+ "unicode-ident",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "wasm-streams"
2145
+ version = "0.4.2"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2148
+ dependencies = [
2149
+ "futures-util",
2150
+ "js-sys",
2151
+ "wasm-bindgen",
2152
+ "wasm-bindgen-futures",
2153
+ "web-sys",
2154
+ ]
2155
+
2156
+ [[package]]
2157
+ name = "web-sys"
2158
+ version = "0.3.103"
2159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2160
+ checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141"
2161
+ dependencies = [
2162
+ "js-sys",
2163
+ "wasm-bindgen",
2164
+ ]
2165
+
2166
+ [[package]]
2167
+ name = "web-time"
2168
+ version = "1.1.0"
2169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2170
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2171
+ dependencies = [
2172
+ "js-sys",
2173
+ "wasm-bindgen",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "webpki-roots"
2178
+ version = "0.26.11"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
2181
+ dependencies = [
2182
+ "webpki-roots 1.0.8",
2183
+ ]
2184
+
2185
+ [[package]]
2186
+ name = "webpki-roots"
2187
+ version = "1.0.8"
2188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2189
+ checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf"
2190
+ dependencies = [
2191
+ "rustls-pki-types",
2192
+ ]
2193
+
2194
+ [[package]]
2195
+ name = "windows-link"
2196
+ version = "0.2.1"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2199
+
2200
+ [[package]]
2201
+ name = "windows-sys"
2202
+ version = "0.52.0"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2205
+ dependencies = [
2206
+ "windows-targets",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "windows-sys"
2211
+ version = "0.61.2"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2214
+ dependencies = [
2215
+ "windows-link",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "windows-targets"
2220
+ version = "0.52.6"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2223
+ dependencies = [
2224
+ "windows_aarch64_gnullvm",
2225
+ "windows_aarch64_msvc",
2226
+ "windows_i686_gnu",
2227
+ "windows_i686_gnullvm",
2228
+ "windows_i686_msvc",
2229
+ "windows_x86_64_gnu",
2230
+ "windows_x86_64_gnullvm",
2231
+ "windows_x86_64_msvc",
2232
+ ]
2233
+
2234
+ [[package]]
2235
+ name = "windows_aarch64_gnullvm"
2236
+ version = "0.52.6"
2237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2238
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2239
+
2240
+ [[package]]
2241
+ name = "windows_aarch64_msvc"
2242
+ version = "0.52.6"
2243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2244
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2245
+
2246
+ [[package]]
2247
+ name = "windows_i686_gnu"
2248
+ version = "0.52.6"
2249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2250
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2251
+
2252
+ [[package]]
2253
+ name = "windows_i686_gnullvm"
2254
+ version = "0.52.6"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2257
+
2258
+ [[package]]
2259
+ name = "windows_i686_msvc"
2260
+ version = "0.52.6"
2261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2262
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2263
+
2264
+ [[package]]
2265
+ name = "windows_x86_64_gnu"
2266
+ version = "0.52.6"
2267
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2268
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2269
+
2270
+ [[package]]
2271
+ name = "windows_x86_64_gnullvm"
2272
+ version = "0.52.6"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2275
+
2276
+ [[package]]
2277
+ name = "windows_x86_64_msvc"
2278
+ version = "0.52.6"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2281
+
2282
+ [[package]]
2283
+ name = "winnow"
2284
+ version = "0.7.15"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2287
+
2288
+ [[package]]
2289
+ name = "winnow"
2290
+ version = "1.0.3"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "0592e1c9d151f854e6fd382574c3a0855250e1d9b2f99d9281c6e6391af352f1"
2293
+
2294
+ [[package]]
2295
+ name = "wit-bindgen"
2296
+ version = "0.57.1"
2297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2298
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2299
+
2300
+ [[package]]
2301
+ name = "writeable"
2302
+ version = "0.6.3"
2303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2304
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2305
+
2306
+ [[package]]
2307
+ name = "yoke"
2308
+ version = "0.8.3"
2309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2310
+ checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
2311
+ dependencies = [
2312
+ "stable_deref_trait",
2313
+ "yoke-derive",
2314
+ "zerofrom",
2315
+ ]
2316
+
2317
+ [[package]]
2318
+ name = "yoke-derive"
2319
+ version = "0.8.2"
2320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2321
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2322
+ dependencies = [
2323
+ "proc-macro2",
2324
+ "quote",
2325
+ "syn",
2326
+ "synstructure",
2327
+ ]
2328
+
2329
+ [[package]]
2330
+ name = "zerocopy"
2331
+ version = "0.8.53"
2332
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2333
+ checksum = "75726053136156d419e285b9b7eddaaea9e3fea6ce32eed44a89901f0bd98de1"
2334
+ dependencies = [
2335
+ "zerocopy-derive",
2336
+ ]
2337
+
2338
+ [[package]]
2339
+ name = "zerocopy-derive"
2340
+ version = "0.8.53"
2341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2342
+ checksum = "4714fd92cf900833d49538023a9b3915155210801d1c1169eba513b2addefd71"
2343
+ dependencies = [
2344
+ "proc-macro2",
2345
+ "quote",
2346
+ "syn",
2347
+ ]
2348
+
2349
+ [[package]]
2350
+ name = "zerofrom"
2351
+ version = "0.1.8"
2352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2353
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2354
+ dependencies = [
2355
+ "zerofrom-derive",
2356
+ ]
2357
+
2358
+ [[package]]
2359
+ name = "zerofrom-derive"
2360
+ version = "0.1.7"
2361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2362
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2363
+ dependencies = [
2364
+ "proc-macro2",
2365
+ "quote",
2366
+ "syn",
2367
+ "synstructure",
2368
+ ]
2369
+
2370
+ [[package]]
2371
+ name = "zeroize"
2372
+ version = "1.9.0"
2373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2374
+ checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e"
2375
+
2376
+ [[package]]
2377
+ name = "zerotrie"
2378
+ version = "0.2.4"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2381
+ dependencies = [
2382
+ "displaydoc",
2383
+ "yoke",
2384
+ "zerofrom",
2385
+ ]
2386
+
2387
+ [[package]]
2388
+ name = "zerovec"
2389
+ version = "0.11.6"
2390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2391
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2392
+ dependencies = [
2393
+ "yoke",
2394
+ "zerofrom",
2395
+ "zerovec-derive",
2396
+ ]
2397
+
2398
+ [[package]]
2399
+ name = "zerovec-derive"
2400
+ version = "0.11.3"
2401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2402
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2403
+ dependencies = [
2404
+ "proc-macro2",
2405
+ "quote",
2406
+ "syn",
2407
+ ]
2408
+
2409
+ [[package]]
2410
+ name = "zmij"
2411
+ version = "1.0.21"
2412
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2413
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"