koon 0.4.4__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 (52) hide show
  1. koon-0.4.4/Cargo.lock +2353 -0
  2. koon-0.4.4/Cargo.toml +18 -0
  3. koon-0.4.4/PKG-INFO +6 -0
  4. koon-0.4.4/crates/core/Cargo.toml +80 -0
  5. koon-0.4.4/crates/core/examples/fingerprint_test.rs +122 -0
  6. koon-0.4.4/crates/core/src/client/alt_svc.rs +118 -0
  7. koon-0.4.4/crates/core/src/client/connection.rs +219 -0
  8. koon-0.4.4/crates/core/src/client/execute.rs +399 -0
  9. koon-0.4.4/crates/core/src/client/h1.rs +199 -0
  10. koon-0.4.4/crates/core/src/client/h2.rs +402 -0
  11. koon-0.4.4/crates/core/src/client/h3.rs +61 -0
  12. koon-0.4.4/crates/core/src/client/headers.rs +110 -0
  13. koon-0.4.4/crates/core/src/client/mod.rs +347 -0
  14. koon-0.4.4/crates/core/src/client/response.rs +83 -0
  15. koon-0.4.4/crates/core/src/cookie.rs +601 -0
  16. koon-0.4.4/crates/core/src/dns/mod.rs +3 -0
  17. koon-0.4.4/crates/core/src/dns/resolver.rs +385 -0
  18. koon-0.4.4/crates/core/src/error.rs +98 -0
  19. koon-0.4.4/crates/core/src/http1.rs +605 -0
  20. koon-0.4.4/crates/core/src/http2/config.rs +111 -0
  21. koon-0.4.4/crates/core/src/http2/mod.rs +3 -0
  22. koon-0.4.4/crates/core/src/http3.rs +174 -0
  23. koon-0.4.4/crates/core/src/lib.rs +27 -0
  24. koon-0.4.4/crates/core/src/multipart.rs +215 -0
  25. koon-0.4.4/crates/core/src/pool.rs +216 -0
  26. koon-0.4.4/crates/core/src/profile/chrome.rs +330 -0
  27. koon-0.4.4/crates/core/src/profile/edge.rs +129 -0
  28. koon-0.4.4/crates/core/src/profile/firefox.rs +285 -0
  29. koon-0.4.4/crates/core/src/profile/mod.rs +236 -0
  30. koon-0.4.4/crates/core/src/profile/opera.rs +95 -0
  31. koon-0.4.4/crates/core/src/profile/safari.rs +262 -0
  32. koon-0.4.4/crates/core/src/proxy/ca.rs +246 -0
  33. koon-0.4.4/crates/core/src/proxy/config.rs +70 -0
  34. koon-0.4.4/crates/core/src/proxy/mod.rs +7 -0
  35. koon-0.4.4/crates/core/src/proxy/server.rs +590 -0
  36. koon-0.4.4/crates/core/src/quic/config.rs +52 -0
  37. koon-0.4.4/crates/core/src/quic/mod.rs +4 -0
  38. koon-0.4.4/crates/core/src/quic/transport.rs +91 -0
  39. koon-0.4.4/crates/core/src/streaming.rs +58 -0
  40. koon-0.4.4/crates/core/src/tls/cert_compression.rs +62 -0
  41. koon-0.4.4/crates/core/src/tls/config.rs +140 -0
  42. koon-0.4.4/crates/core/src/tls/connector.rs +231 -0
  43. koon-0.4.4/crates/core/src/tls/mod.rs +8 -0
  44. koon-0.4.4/crates/core/src/tls/session_cache.rs +74 -0
  45. koon-0.4.4/crates/core/src/websocket.rs +292 -0
  46. koon-0.4.4/crates/core/tests/features.rs +1245 -0
  47. koon-0.4.4/crates/core/tests/fingerprint.rs +214 -0
  48. koon-0.4.4/crates/python/Cargo.toml +17 -0
  49. koon-0.4.4/crates/python/src/lib.rs +701 -0
  50. koon-0.4.4/pyproject.toml +16 -0
  51. koon-0.4.4/python/koon/__init__.py +3 -0
  52. koon-0.4.4/python/koon/__init__.pyi +113 -0
koon-0.4.4/Cargo.lock ADDED
@@ -0,0 +1,2353 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloc-no-stdlib"
22
+ version = "2.0.4"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
25
+
26
+ [[package]]
27
+ name = "alloc-stdlib"
28
+ version = "0.2.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
31
+ dependencies = [
32
+ "alloc-no-stdlib",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstream"
37
+ version = "0.6.21"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
40
+ dependencies = [
41
+ "anstyle",
42
+ "anstyle-parse",
43
+ "anstyle-query",
44
+ "anstyle-wincon",
45
+ "colorchoice",
46
+ "is_terminal_polyfill",
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle"
52
+ version = "1.0.13"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
55
+
56
+ [[package]]
57
+ name = "anstyle-parse"
58
+ version = "0.2.7"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
61
+ dependencies = [
62
+ "utf8parse",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "anstyle-query"
67
+ version = "1.1.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
70
+ dependencies = [
71
+ "windows-sys 0.61.2",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-wincon"
76
+ version = "3.0.11"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
79
+ dependencies = [
80
+ "anstyle",
81
+ "once_cell_polyfill",
82
+ "windows-sys 0.61.2",
83
+ ]
84
+
85
+ [[package]]
86
+ name = "async-trait"
87
+ version = "0.1.89"
88
+ source = "registry+https://github.com/rust-lang/crates.io-index"
89
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
90
+ dependencies = [
91
+ "proc-macro2",
92
+ "quote",
93
+ "syn",
94
+ ]
95
+
96
+ [[package]]
97
+ name = "atomic-waker"
98
+ version = "1.1.2"
99
+ source = "registry+https://github.com/rust-lang/crates.io-index"
100
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
101
+
102
+ [[package]]
103
+ name = "base64"
104
+ version = "0.22.1"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
107
+
108
+ [[package]]
109
+ name = "bindgen"
110
+ version = "0.72.1"
111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
112
+ checksum = "993776b509cfb49c750f11b8f07a46fa23e0a1386ffc01fb1e7d343efc387895"
113
+ dependencies = [
114
+ "bitflags",
115
+ "cexpr",
116
+ "clang-sys",
117
+ "itertools",
118
+ "proc-macro2",
119
+ "quote",
120
+ "regex",
121
+ "rustc-hash",
122
+ "shlex",
123
+ "syn",
124
+ ]
125
+
126
+ [[package]]
127
+ name = "bitflags"
128
+ version = "2.11.0"
129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
130
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
131
+
132
+ [[package]]
133
+ name = "block-buffer"
134
+ version = "0.10.4"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
137
+ dependencies = [
138
+ "generic-array",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "boring-sys2"
143
+ version = "5.0.0-alpha.13"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "455d79965f5155dcc88a7abce112c3590883889131b799beda10bf9a813ed669"
146
+ dependencies = [
147
+ "bindgen",
148
+ "cmake",
149
+ "fs_extra",
150
+ "fslock",
151
+ ]
152
+
153
+ [[package]]
154
+ name = "boring2"
155
+ version = "5.0.0-alpha.13"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "183ccc3854411c035410dcdbffafca62084f3a6c33f013c77e83c025d2a08a28"
158
+ dependencies = [
159
+ "bitflags",
160
+ "boring-sys2",
161
+ "foreign-types",
162
+ "libc",
163
+ "openssl-macros",
164
+ ]
165
+
166
+ [[package]]
167
+ name = "brotli"
168
+ version = "8.0.2"
169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
170
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
171
+ dependencies = [
172
+ "alloc-no-stdlib",
173
+ "alloc-stdlib",
174
+ "brotli-decompressor",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "brotli-decompressor"
179
+ version = "5.0.0"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
182
+ dependencies = [
183
+ "alloc-no-stdlib",
184
+ "alloc-stdlib",
185
+ ]
186
+
187
+ [[package]]
188
+ name = "bumpalo"
189
+ version = "3.20.1"
190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
191
+ checksum = "5c6f81257d10a0f602a294ae4182251151ff97dbb504ef9afcdda4a64b24d9b4"
192
+
193
+ [[package]]
194
+ name = "byteorder"
195
+ version = "1.5.0"
196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
197
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
198
+
199
+ [[package]]
200
+ name = "bytes"
201
+ version = "1.11.1"
202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
203
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
204
+
205
+ [[package]]
206
+ name = "cc"
207
+ version = "1.2.56"
208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
209
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
210
+ dependencies = [
211
+ "find-msvc-tools",
212
+ "jobserver",
213
+ "libc",
214
+ "shlex",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "cexpr"
219
+ version = "0.6.0"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
222
+ dependencies = [
223
+ "nom",
224
+ ]
225
+
226
+ [[package]]
227
+ name = "cfg-if"
228
+ version = "1.0.4"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
231
+
232
+ [[package]]
233
+ name = "cfg_aliases"
234
+ version = "0.2.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
237
+
238
+ [[package]]
239
+ name = "clang-sys"
240
+ version = "1.8.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
243
+ dependencies = [
244
+ "glob",
245
+ "libc",
246
+ "libloading",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "clap"
251
+ version = "4.5.60"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
254
+ dependencies = [
255
+ "clap_builder",
256
+ "clap_derive",
257
+ ]
258
+
259
+ [[package]]
260
+ name = "clap_builder"
261
+ version = "4.5.60"
262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
263
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
264
+ dependencies = [
265
+ "anstream",
266
+ "anstyle",
267
+ "clap_lex",
268
+ "strsim",
269
+ ]
270
+
271
+ [[package]]
272
+ name = "clap_derive"
273
+ version = "4.5.55"
274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
275
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
276
+ dependencies = [
277
+ "heck",
278
+ "proc-macro2",
279
+ "quote",
280
+ "syn",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "clap_lex"
285
+ version = "1.0.0"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
288
+
289
+ [[package]]
290
+ name = "cmake"
291
+ version = "0.1.57"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
294
+ dependencies = [
295
+ "cc",
296
+ ]
297
+
298
+ [[package]]
299
+ name = "colorchoice"
300
+ version = "1.0.4"
301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
302
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
303
+
304
+ [[package]]
305
+ name = "convert_case"
306
+ version = "0.6.0"
307
+ source = "registry+https://github.com/rust-lang/crates.io-index"
308
+ checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
309
+ dependencies = [
310
+ "unicode-segmentation",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "cpufeatures"
315
+ version = "0.2.17"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
318
+ dependencies = [
319
+ "libc",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "crc32fast"
324
+ version = "1.5.0"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
327
+ dependencies = [
328
+ "cfg-if",
329
+ ]
330
+
331
+ [[package]]
332
+ name = "critical-section"
333
+ version = "1.2.0"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
336
+
337
+ [[package]]
338
+ name = "crypto-common"
339
+ version = "0.1.7"
340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
341
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
342
+ dependencies = [
343
+ "generic-array",
344
+ "typenum",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "ctor"
349
+ version = "0.2.9"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501"
352
+ dependencies = [
353
+ "quote",
354
+ "syn",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "data-encoding"
359
+ version = "2.10.0"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
362
+
363
+ [[package]]
364
+ name = "digest"
365
+ version = "0.10.7"
366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
367
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
368
+ dependencies = [
369
+ "block-buffer",
370
+ "crypto-common",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "displaydoc"
375
+ version = "0.2.5"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
378
+ dependencies = [
379
+ "proc-macro2",
380
+ "quote",
381
+ "syn",
382
+ ]
383
+
384
+ [[package]]
385
+ name = "either"
386
+ version = "1.15.0"
387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
388
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
389
+
390
+ [[package]]
391
+ name = "enum-as-inner"
392
+ version = "0.6.1"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
395
+ dependencies = [
396
+ "heck",
397
+ "proc-macro2",
398
+ "quote",
399
+ "syn",
400
+ ]
401
+
402
+ [[package]]
403
+ name = "equivalent"
404
+ version = "1.0.2"
405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
406
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
407
+
408
+ [[package]]
409
+ name = "errno"
410
+ version = "0.3.14"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
413
+ dependencies = [
414
+ "libc",
415
+ "windows-sys 0.52.0",
416
+ ]
417
+
418
+ [[package]]
419
+ name = "fastrand"
420
+ version = "2.3.0"
421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
422
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
423
+
424
+ [[package]]
425
+ name = "find-msvc-tools"
426
+ version = "0.1.9"
427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
428
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
429
+
430
+ [[package]]
431
+ name = "flate2"
432
+ version = "1.1.9"
433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
434
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
435
+ dependencies = [
436
+ "crc32fast",
437
+ "miniz_oxide",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "fnv"
442
+ version = "1.0.7"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
445
+
446
+ [[package]]
447
+ name = "foreign-types"
448
+ version = "0.5.0"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
451
+ dependencies = [
452
+ "foreign-types-macros",
453
+ "foreign-types-shared",
454
+ ]
455
+
456
+ [[package]]
457
+ name = "foreign-types-macros"
458
+ version = "0.2.3"
459
+ source = "registry+https://github.com/rust-lang/crates.io-index"
460
+ checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
461
+ dependencies = [
462
+ "proc-macro2",
463
+ "quote",
464
+ "syn",
465
+ ]
466
+
467
+ [[package]]
468
+ name = "foreign-types-shared"
469
+ version = "0.3.1"
470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
471
+ checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
472
+
473
+ [[package]]
474
+ name = "form_urlencoded"
475
+ version = "1.2.2"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
478
+ dependencies = [
479
+ "percent-encoding",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "fs_extra"
484
+ version = "1.3.0"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
487
+
488
+ [[package]]
489
+ name = "fslock"
490
+ version = "0.2.1"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "04412b8935272e3a9bae6f48c7bfff74c2911f60525404edfdd28e49884c3bfb"
493
+ dependencies = [
494
+ "libc",
495
+ "winapi",
496
+ ]
497
+
498
+ [[package]]
499
+ name = "futures"
500
+ version = "0.3.32"
501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
502
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
503
+ dependencies = [
504
+ "futures-channel",
505
+ "futures-core",
506
+ "futures-executor",
507
+ "futures-io",
508
+ "futures-sink",
509
+ "futures-task",
510
+ "futures-util",
511
+ ]
512
+
513
+ [[package]]
514
+ name = "futures-channel"
515
+ version = "0.3.32"
516
+ source = "registry+https://github.com/rust-lang/crates.io-index"
517
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
518
+ dependencies = [
519
+ "futures-core",
520
+ "futures-sink",
521
+ ]
522
+
523
+ [[package]]
524
+ name = "futures-core"
525
+ version = "0.3.32"
526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
527
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
528
+
529
+ [[package]]
530
+ name = "futures-executor"
531
+ version = "0.3.32"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
534
+ dependencies = [
535
+ "futures-core",
536
+ "futures-task",
537
+ "futures-util",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "futures-io"
542
+ version = "0.3.32"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
545
+
546
+ [[package]]
547
+ name = "futures-macro"
548
+ version = "0.3.32"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
551
+ dependencies = [
552
+ "proc-macro2",
553
+ "quote",
554
+ "syn",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "futures-sink"
559
+ version = "0.3.32"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
562
+
563
+ [[package]]
564
+ name = "futures-task"
565
+ version = "0.3.32"
566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
567
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
568
+
569
+ [[package]]
570
+ name = "futures-util"
571
+ version = "0.3.32"
572
+ source = "registry+https://github.com/rust-lang/crates.io-index"
573
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
574
+ dependencies = [
575
+ "futures-channel",
576
+ "futures-core",
577
+ "futures-io",
578
+ "futures-macro",
579
+ "futures-sink",
580
+ "futures-task",
581
+ "memchr",
582
+ "pin-project-lite",
583
+ "slab",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "generic-array"
588
+ version = "0.14.7"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
591
+ dependencies = [
592
+ "typenum",
593
+ "version_check",
594
+ ]
595
+
596
+ [[package]]
597
+ name = "getrandom"
598
+ version = "0.2.17"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
601
+ dependencies = [
602
+ "cfg-if",
603
+ "js-sys",
604
+ "libc",
605
+ "wasi",
606
+ "wasm-bindgen",
607
+ ]
608
+
609
+ [[package]]
610
+ name = "getrandom"
611
+ version = "0.3.4"
612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
613
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
614
+ dependencies = [
615
+ "cfg-if",
616
+ "js-sys",
617
+ "libc",
618
+ "r-efi",
619
+ "wasip2",
620
+ "wasm-bindgen",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "glob"
625
+ version = "0.3.3"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
628
+
629
+ [[package]]
630
+ name = "h3"
631
+ version = "0.0.8"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "10872b55cfb02a821b69dc7cf8dc6a71d6af25eb9a79662bec4a9d016056b3be"
634
+ dependencies = [
635
+ "bytes",
636
+ "fastrand",
637
+ "futures-util",
638
+ "http",
639
+ "pin-project-lite",
640
+ "tokio",
641
+ ]
642
+
643
+ [[package]]
644
+ name = "h3-quinn"
645
+ version = "0.0.10"
646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
647
+ checksum = "8b2e732c8d91a74731663ac8479ab505042fbf547b9a207213ab7fbcbfc4f8b4"
648
+ dependencies = [
649
+ "bytes",
650
+ "futures",
651
+ "h3",
652
+ "quinn",
653
+ "tokio",
654
+ "tokio-util",
655
+ ]
656
+
657
+ [[package]]
658
+ name = "hashbrown"
659
+ version = "0.16.1"
660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
661
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
662
+
663
+ [[package]]
664
+ name = "heck"
665
+ version = "0.5.0"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
668
+
669
+ [[package]]
670
+ name = "hickory-proto"
671
+ version = "0.25.2"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
674
+ dependencies = [
675
+ "async-trait",
676
+ "cfg-if",
677
+ "data-encoding",
678
+ "enum-as-inner",
679
+ "futures-channel",
680
+ "futures-io",
681
+ "futures-util",
682
+ "idna",
683
+ "ipnet",
684
+ "once_cell",
685
+ "rand 0.9.2",
686
+ "ring",
687
+ "thiserror 2.0.18",
688
+ "tinyvec",
689
+ "tokio",
690
+ "tracing",
691
+ "url",
692
+ ]
693
+
694
+ [[package]]
695
+ name = "http"
696
+ version = "1.4.0"
697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
698
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
699
+ dependencies = [
700
+ "bytes",
701
+ "itoa",
702
+ ]
703
+
704
+ [[package]]
705
+ name = "http-body"
706
+ version = "1.0.1"
707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
708
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
709
+ dependencies = [
710
+ "bytes",
711
+ "http",
712
+ ]
713
+
714
+ [[package]]
715
+ name = "http-body-util"
716
+ version = "0.1.3"
717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
718
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
719
+ dependencies = [
720
+ "bytes",
721
+ "futures-core",
722
+ "http",
723
+ "http-body",
724
+ "pin-project-lite",
725
+ ]
726
+
727
+ [[package]]
728
+ name = "http2"
729
+ version = "0.5.12"
730
+ source = "git+https://github.com/scrape-hub/http2.git?tag=v0.5.12-headers-order#e9143698d78f69fd7ecd8e2e51797f77d6e06a26"
731
+ dependencies = [
732
+ "atomic-waker",
733
+ "bytes",
734
+ "fnv",
735
+ "futures-core",
736
+ "futures-sink",
737
+ "http",
738
+ "indexmap",
739
+ "slab",
740
+ "smallvec",
741
+ "tokio",
742
+ "tokio-util",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "httparse"
747
+ version = "1.10.1"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
750
+
751
+ [[package]]
752
+ name = "icu_collections"
753
+ version = "2.1.1"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
756
+ dependencies = [
757
+ "displaydoc",
758
+ "potential_utf",
759
+ "yoke",
760
+ "zerofrom",
761
+ "zerovec",
762
+ ]
763
+
764
+ [[package]]
765
+ name = "icu_locale_core"
766
+ version = "2.1.1"
767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
768
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
769
+ dependencies = [
770
+ "displaydoc",
771
+ "litemap",
772
+ "tinystr",
773
+ "writeable",
774
+ "zerovec",
775
+ ]
776
+
777
+ [[package]]
778
+ name = "icu_normalizer"
779
+ version = "2.1.1"
780
+ source = "registry+https://github.com/rust-lang/crates.io-index"
781
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
782
+ dependencies = [
783
+ "icu_collections",
784
+ "icu_normalizer_data",
785
+ "icu_properties",
786
+ "icu_provider",
787
+ "smallvec",
788
+ "zerovec",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "icu_normalizer_data"
793
+ version = "2.1.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
796
+
797
+ [[package]]
798
+ name = "icu_properties"
799
+ version = "2.1.2"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
802
+ dependencies = [
803
+ "icu_collections",
804
+ "icu_locale_core",
805
+ "icu_properties_data",
806
+ "icu_provider",
807
+ "zerotrie",
808
+ "zerovec",
809
+ ]
810
+
811
+ [[package]]
812
+ name = "icu_properties_data"
813
+ version = "2.1.2"
814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
815
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
816
+
817
+ [[package]]
818
+ name = "icu_provider"
819
+ version = "2.1.1"
820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
821
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
822
+ dependencies = [
823
+ "displaydoc",
824
+ "icu_locale_core",
825
+ "writeable",
826
+ "yoke",
827
+ "zerofrom",
828
+ "zerotrie",
829
+ "zerovec",
830
+ ]
831
+
832
+ [[package]]
833
+ name = "idna"
834
+ version = "1.1.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
837
+ dependencies = [
838
+ "idna_adapter",
839
+ "smallvec",
840
+ "utf8_iter",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "idna_adapter"
845
+ version = "1.2.1"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
848
+ dependencies = [
849
+ "icu_normalizer",
850
+ "icu_properties",
851
+ ]
852
+
853
+ [[package]]
854
+ name = "indexmap"
855
+ version = "2.13.0"
856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
857
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
858
+ dependencies = [
859
+ "equivalent",
860
+ "hashbrown",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "ipnet"
865
+ version = "2.11.0"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
868
+
869
+ [[package]]
870
+ name = "is_terminal_polyfill"
871
+ version = "1.70.2"
872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
873
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
874
+
875
+ [[package]]
876
+ name = "itertools"
877
+ version = "0.13.0"
878
+ source = "registry+https://github.com/rust-lang/crates.io-index"
879
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
880
+ dependencies = [
881
+ "either",
882
+ ]
883
+
884
+ [[package]]
885
+ name = "itoa"
886
+ version = "1.0.17"
887
+ source = "registry+https://github.com/rust-lang/crates.io-index"
888
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
889
+
890
+ [[package]]
891
+ name = "jobserver"
892
+ version = "0.1.34"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
895
+ dependencies = [
896
+ "getrandom 0.3.4",
897
+ "libc",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "js-sys"
902
+ version = "0.3.85"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
905
+ dependencies = [
906
+ "once_cell",
907
+ "wasm-bindgen",
908
+ ]
909
+
910
+ [[package]]
911
+ name = "koon-cli"
912
+ version = "0.4.4"
913
+ dependencies = [
914
+ "clap",
915
+ "http",
916
+ "koon-core",
917
+ "serde_json",
918
+ "tokio",
919
+ ]
920
+
921
+ [[package]]
922
+ name = "koon-core"
923
+ version = "0.4.4"
924
+ dependencies = [
925
+ "base64",
926
+ "boring2",
927
+ "brotli",
928
+ "bytes",
929
+ "flate2",
930
+ "futures-util",
931
+ "h3",
932
+ "h3-quinn",
933
+ "hickory-proto",
934
+ "http",
935
+ "http-body",
936
+ "http-body-util",
937
+ "http2",
938
+ "httparse",
939
+ "pin-project-lite",
940
+ "quinn",
941
+ "rand 0.9.2",
942
+ "rustls",
943
+ "rustls-pemfile",
944
+ "serde",
945
+ "serde_json",
946
+ "smallvec",
947
+ "thiserror 2.0.18",
948
+ "tokio",
949
+ "tokio-boring2",
950
+ "tokio-socks",
951
+ "tokio-tungstenite",
952
+ "tungstenite",
953
+ "url",
954
+ "webpki-root-certs",
955
+ "webpki-roots",
956
+ "zstd",
957
+ ]
958
+
959
+ [[package]]
960
+ name = "koon-node"
961
+ version = "0.4.4"
962
+ dependencies = [
963
+ "koon-core",
964
+ "napi",
965
+ "napi-build",
966
+ "napi-derive",
967
+ "serde",
968
+ "serde_json",
969
+ "tokio",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "koon-python"
974
+ version = "0.4.4"
975
+ dependencies = [
976
+ "http",
977
+ "koon-core",
978
+ "pyo3",
979
+ "pyo3-async-runtimes",
980
+ "tokio",
981
+ ]
982
+
983
+ [[package]]
984
+ name = "libc"
985
+ version = "0.2.182"
986
+ source = "registry+https://github.com/rust-lang/crates.io-index"
987
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
988
+
989
+ [[package]]
990
+ name = "libloading"
991
+ version = "0.8.9"
992
+ source = "registry+https://github.com/rust-lang/crates.io-index"
993
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
994
+ dependencies = [
995
+ "cfg-if",
996
+ "windows-link",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "litemap"
1001
+ version = "0.8.1"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1004
+
1005
+ [[package]]
1006
+ name = "lock_api"
1007
+ version = "0.4.14"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1010
+ dependencies = [
1011
+ "scopeguard",
1012
+ ]
1013
+
1014
+ [[package]]
1015
+ name = "log"
1016
+ version = "0.4.29"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1019
+
1020
+ [[package]]
1021
+ name = "lru-slab"
1022
+ version = "0.1.2"
1023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1024
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1025
+
1026
+ [[package]]
1027
+ name = "memchr"
1028
+ version = "2.8.0"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1031
+
1032
+ [[package]]
1033
+ name = "minimal-lexical"
1034
+ version = "0.2.1"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1037
+
1038
+ [[package]]
1039
+ name = "miniz_oxide"
1040
+ version = "0.8.9"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1043
+ dependencies = [
1044
+ "adler2",
1045
+ "simd-adler32",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "mio"
1050
+ version = "1.1.1"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1053
+ dependencies = [
1054
+ "libc",
1055
+ "wasi",
1056
+ "windows-sys 0.61.2",
1057
+ ]
1058
+
1059
+ [[package]]
1060
+ name = "napi"
1061
+ version = "2.16.17"
1062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1063
+ checksum = "55740c4ae1d8696773c78fdafd5d0e5fe9bc9f1b071c7ba493ba5c413a9184f3"
1064
+ dependencies = [
1065
+ "bitflags",
1066
+ "ctor",
1067
+ "napi-derive",
1068
+ "napi-sys",
1069
+ "once_cell",
1070
+ "serde",
1071
+ "serde_json",
1072
+ "tokio",
1073
+ ]
1074
+
1075
+ [[package]]
1076
+ name = "napi-build"
1077
+ version = "2.3.1"
1078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1079
+ checksum = "d376940fd5b723c6893cd1ee3f33abbfd86acb1cd1ec079f3ab04a2a3bc4d3b1"
1080
+
1081
+ [[package]]
1082
+ name = "napi-derive"
1083
+ version = "2.16.13"
1084
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1085
+ checksum = "7cbe2585d8ac223f7d34f13701434b9d5f4eb9c332cccce8dee57ea18ab8ab0c"
1086
+ dependencies = [
1087
+ "cfg-if",
1088
+ "convert_case",
1089
+ "napi-derive-backend",
1090
+ "proc-macro2",
1091
+ "quote",
1092
+ "syn",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "napi-derive-backend"
1097
+ version = "1.0.75"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "1639aaa9eeb76e91c6ae66da8ce3e89e921cd3885e99ec85f4abacae72fc91bf"
1100
+ dependencies = [
1101
+ "convert_case",
1102
+ "once_cell",
1103
+ "proc-macro2",
1104
+ "quote",
1105
+ "regex",
1106
+ "semver",
1107
+ "syn",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "napi-sys"
1112
+ version = "2.4.0"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "427802e8ec3a734331fec1035594a210ce1ff4dc5bc1950530920ab717964ea3"
1115
+ dependencies = [
1116
+ "libloading",
1117
+ ]
1118
+
1119
+ [[package]]
1120
+ name = "nom"
1121
+ version = "7.1.3"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1124
+ dependencies = [
1125
+ "memchr",
1126
+ "minimal-lexical",
1127
+ ]
1128
+
1129
+ [[package]]
1130
+ name = "once_cell"
1131
+ version = "1.21.3"
1132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1133
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1134
+ dependencies = [
1135
+ "critical-section",
1136
+ "portable-atomic",
1137
+ ]
1138
+
1139
+ [[package]]
1140
+ name = "once_cell_polyfill"
1141
+ version = "1.70.2"
1142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1143
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1144
+
1145
+ [[package]]
1146
+ name = "openssl-macros"
1147
+ version = "0.1.1"
1148
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1149
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1150
+ dependencies = [
1151
+ "proc-macro2",
1152
+ "quote",
1153
+ "syn",
1154
+ ]
1155
+
1156
+ [[package]]
1157
+ name = "parking_lot"
1158
+ version = "0.12.5"
1159
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1160
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1161
+ dependencies = [
1162
+ "lock_api",
1163
+ "parking_lot_core",
1164
+ ]
1165
+
1166
+ [[package]]
1167
+ name = "parking_lot_core"
1168
+ version = "0.9.12"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1171
+ dependencies = [
1172
+ "cfg-if",
1173
+ "libc",
1174
+ "redox_syscall",
1175
+ "smallvec",
1176
+ "windows-link",
1177
+ ]
1178
+
1179
+ [[package]]
1180
+ name = "percent-encoding"
1181
+ version = "2.3.2"
1182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1183
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1184
+
1185
+ [[package]]
1186
+ name = "pin-project-lite"
1187
+ version = "0.2.16"
1188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1189
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1190
+
1191
+ [[package]]
1192
+ name = "pkg-config"
1193
+ version = "0.3.32"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1196
+
1197
+ [[package]]
1198
+ name = "portable-atomic"
1199
+ version = "1.13.1"
1200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1201
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1202
+
1203
+ [[package]]
1204
+ name = "potential_utf"
1205
+ version = "0.1.4"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1208
+ dependencies = [
1209
+ "zerovec",
1210
+ ]
1211
+
1212
+ [[package]]
1213
+ name = "ppv-lite86"
1214
+ version = "0.2.21"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1217
+ dependencies = [
1218
+ "zerocopy",
1219
+ ]
1220
+
1221
+ [[package]]
1222
+ name = "proc-macro2"
1223
+ version = "1.0.106"
1224
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1225
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1226
+ dependencies = [
1227
+ "unicode-ident",
1228
+ ]
1229
+
1230
+ [[package]]
1231
+ name = "pyo3"
1232
+ version = "0.28.2"
1233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1234
+ checksum = "cf85e27e86080aafd5a22eae58a162e133a589551542b3e5cee4beb27e54f8e1"
1235
+ dependencies = [
1236
+ "libc",
1237
+ "once_cell",
1238
+ "portable-atomic",
1239
+ "pyo3-build-config",
1240
+ "pyo3-ffi",
1241
+ "pyo3-macros",
1242
+ ]
1243
+
1244
+ [[package]]
1245
+ name = "pyo3-async-runtimes"
1246
+ version = "0.28.0"
1247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1248
+ checksum = "9e7364a95bf00e8377bbf9b0f09d7ff9715a29d8fcf93b47d1a967363b973178"
1249
+ dependencies = [
1250
+ "futures-channel",
1251
+ "futures-util",
1252
+ "once_cell",
1253
+ "pin-project-lite",
1254
+ "pyo3",
1255
+ "tokio",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "pyo3-build-config"
1260
+ version = "0.28.2"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "8bf94ee265674bf76c09fa430b0e99c26e319c945d96ca0d5a8215f31bf81cf7"
1263
+ dependencies = [
1264
+ "target-lexicon",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "pyo3-ffi"
1269
+ version = "0.28.2"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "491aa5fc66d8059dd44a75f4580a2962c1862a1c2945359db36f6c2818b748dc"
1272
+ dependencies = [
1273
+ "libc",
1274
+ "pyo3-build-config",
1275
+ ]
1276
+
1277
+ [[package]]
1278
+ name = "pyo3-macros"
1279
+ version = "0.28.2"
1280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1281
+ checksum = "f5d671734e9d7a43449f8480f8b38115df67bef8d21f76837fa75ee7aaa5e52e"
1282
+ dependencies = [
1283
+ "proc-macro2",
1284
+ "pyo3-macros-backend",
1285
+ "quote",
1286
+ "syn",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "pyo3-macros-backend"
1291
+ version = "0.28.2"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "22faaa1ce6c430a1f71658760497291065e6450d7b5dc2bcf254d49f66ee700a"
1294
+ dependencies = [
1295
+ "heck",
1296
+ "proc-macro2",
1297
+ "pyo3-build-config",
1298
+ "quote",
1299
+ "syn",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "quinn"
1304
+ version = "0.11.9"
1305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1306
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1307
+ dependencies = [
1308
+ "bytes",
1309
+ "cfg_aliases",
1310
+ "futures-io",
1311
+ "pin-project-lite",
1312
+ "quinn-proto",
1313
+ "quinn-udp",
1314
+ "rustc-hash",
1315
+ "rustls",
1316
+ "socket2",
1317
+ "thiserror 2.0.18",
1318
+ "tokio",
1319
+ "tracing",
1320
+ "web-time",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "quinn-proto"
1325
+ version = "0.11.13"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
1328
+ dependencies = [
1329
+ "bytes",
1330
+ "getrandom 0.3.4",
1331
+ "lru-slab",
1332
+ "rand 0.9.2",
1333
+ "ring",
1334
+ "rustc-hash",
1335
+ "rustls",
1336
+ "rustls-pki-types",
1337
+ "slab",
1338
+ "thiserror 2.0.18",
1339
+ "tinyvec",
1340
+ "tracing",
1341
+ "web-time",
1342
+ ]
1343
+
1344
+ [[package]]
1345
+ name = "quinn-udp"
1346
+ version = "0.5.14"
1347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1348
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1349
+ dependencies = [
1350
+ "cfg_aliases",
1351
+ "libc",
1352
+ "once_cell",
1353
+ "socket2",
1354
+ "tracing",
1355
+ "windows-sys 0.52.0",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "quote"
1360
+ version = "1.0.44"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1363
+ dependencies = [
1364
+ "proc-macro2",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "r-efi"
1369
+ version = "5.3.0"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1372
+
1373
+ [[package]]
1374
+ name = "rand"
1375
+ version = "0.8.5"
1376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1377
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1378
+ dependencies = [
1379
+ "libc",
1380
+ "rand_chacha 0.3.1",
1381
+ "rand_core 0.6.4",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "rand"
1386
+ version = "0.9.2"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1389
+ dependencies = [
1390
+ "rand_chacha 0.9.0",
1391
+ "rand_core 0.9.5",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "rand_chacha"
1396
+ version = "0.3.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1399
+ dependencies = [
1400
+ "ppv-lite86",
1401
+ "rand_core 0.6.4",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "rand_chacha"
1406
+ version = "0.9.0"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1409
+ dependencies = [
1410
+ "ppv-lite86",
1411
+ "rand_core 0.9.5",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "rand_core"
1416
+ version = "0.6.4"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1419
+ dependencies = [
1420
+ "getrandom 0.2.17",
1421
+ ]
1422
+
1423
+ [[package]]
1424
+ name = "rand_core"
1425
+ version = "0.9.5"
1426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1427
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1428
+ dependencies = [
1429
+ "getrandom 0.3.4",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "redox_syscall"
1434
+ version = "0.5.18"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1437
+ dependencies = [
1438
+ "bitflags",
1439
+ ]
1440
+
1441
+ [[package]]
1442
+ name = "regex"
1443
+ version = "1.12.3"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1446
+ dependencies = [
1447
+ "aho-corasick",
1448
+ "memchr",
1449
+ "regex-automata",
1450
+ "regex-syntax",
1451
+ ]
1452
+
1453
+ [[package]]
1454
+ name = "regex-automata"
1455
+ version = "0.4.14"
1456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1457
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1458
+ dependencies = [
1459
+ "aho-corasick",
1460
+ "memchr",
1461
+ "regex-syntax",
1462
+ ]
1463
+
1464
+ [[package]]
1465
+ name = "regex-syntax"
1466
+ version = "0.8.9"
1467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1468
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1469
+
1470
+ [[package]]
1471
+ name = "ring"
1472
+ version = "0.17.14"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1475
+ dependencies = [
1476
+ "cc",
1477
+ "cfg-if",
1478
+ "getrandom 0.2.17",
1479
+ "libc",
1480
+ "untrusted",
1481
+ "windows-sys 0.52.0",
1482
+ ]
1483
+
1484
+ [[package]]
1485
+ name = "rustc-hash"
1486
+ version = "2.1.1"
1487
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1488
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1489
+
1490
+ [[package]]
1491
+ name = "rustls"
1492
+ version = "0.23.36"
1493
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1494
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
1495
+ dependencies = [
1496
+ "log",
1497
+ "once_cell",
1498
+ "ring",
1499
+ "rustls-pki-types",
1500
+ "rustls-webpki",
1501
+ "subtle",
1502
+ "zeroize",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "rustls-pemfile"
1507
+ version = "2.2.0"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1510
+ dependencies = [
1511
+ "rustls-pki-types",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "rustls-pki-types"
1516
+ version = "1.14.0"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1519
+ dependencies = [
1520
+ "web-time",
1521
+ "zeroize",
1522
+ ]
1523
+
1524
+ [[package]]
1525
+ name = "rustls-webpki"
1526
+ version = "0.103.9"
1527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1528
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1529
+ dependencies = [
1530
+ "ring",
1531
+ "rustls-pki-types",
1532
+ "untrusted",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "rustversion"
1537
+ version = "1.0.22"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1540
+
1541
+ [[package]]
1542
+ name = "scopeguard"
1543
+ version = "1.2.0"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1546
+
1547
+ [[package]]
1548
+ name = "semver"
1549
+ version = "1.0.27"
1550
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1551
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1552
+
1553
+ [[package]]
1554
+ name = "serde"
1555
+ version = "1.0.228"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1558
+ dependencies = [
1559
+ "serde_core",
1560
+ "serde_derive",
1561
+ ]
1562
+
1563
+ [[package]]
1564
+ name = "serde_core"
1565
+ version = "1.0.228"
1566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1567
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1568
+ dependencies = [
1569
+ "serde_derive",
1570
+ ]
1571
+
1572
+ [[package]]
1573
+ name = "serde_derive"
1574
+ version = "1.0.228"
1575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1576
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1577
+ dependencies = [
1578
+ "proc-macro2",
1579
+ "quote",
1580
+ "syn",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "serde_json"
1585
+ version = "1.0.149"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1588
+ dependencies = [
1589
+ "itoa",
1590
+ "memchr",
1591
+ "serde",
1592
+ "serde_core",
1593
+ "zmij",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "sha1"
1598
+ version = "0.10.6"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1601
+ dependencies = [
1602
+ "cfg-if",
1603
+ "cpufeatures",
1604
+ "digest",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "shlex"
1609
+ version = "1.3.0"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1612
+
1613
+ [[package]]
1614
+ name = "signal-hook-registry"
1615
+ version = "1.4.8"
1616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1617
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1618
+ dependencies = [
1619
+ "errno",
1620
+ "libc",
1621
+ ]
1622
+
1623
+ [[package]]
1624
+ name = "simd-adler32"
1625
+ version = "0.3.8"
1626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1627
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
1628
+
1629
+ [[package]]
1630
+ name = "slab"
1631
+ version = "0.4.12"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1634
+
1635
+ [[package]]
1636
+ name = "smallvec"
1637
+ version = "1.15.1"
1638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1639
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1640
+
1641
+ [[package]]
1642
+ name = "socket2"
1643
+ version = "0.6.2"
1644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1645
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
1646
+ dependencies = [
1647
+ "libc",
1648
+ "windows-sys 0.60.2",
1649
+ ]
1650
+
1651
+ [[package]]
1652
+ name = "stable_deref_trait"
1653
+ version = "1.2.1"
1654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1655
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1656
+
1657
+ [[package]]
1658
+ name = "strsim"
1659
+ version = "0.11.1"
1660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1661
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1662
+
1663
+ [[package]]
1664
+ name = "subtle"
1665
+ version = "2.6.1"
1666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1667
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1668
+
1669
+ [[package]]
1670
+ name = "syn"
1671
+ version = "2.0.116"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "3df424c70518695237746f84cede799c9c58fcb37450d7b23716568cc8bc69cb"
1674
+ dependencies = [
1675
+ "proc-macro2",
1676
+ "quote",
1677
+ "unicode-ident",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "synstructure"
1682
+ version = "0.13.2"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1685
+ dependencies = [
1686
+ "proc-macro2",
1687
+ "quote",
1688
+ "syn",
1689
+ ]
1690
+
1691
+ [[package]]
1692
+ name = "target-lexicon"
1693
+ version = "0.13.5"
1694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1695
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1696
+
1697
+ [[package]]
1698
+ name = "thiserror"
1699
+ version = "1.0.69"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1702
+ dependencies = [
1703
+ "thiserror-impl 1.0.69",
1704
+ ]
1705
+
1706
+ [[package]]
1707
+ name = "thiserror"
1708
+ version = "2.0.18"
1709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1710
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1711
+ dependencies = [
1712
+ "thiserror-impl 2.0.18",
1713
+ ]
1714
+
1715
+ [[package]]
1716
+ name = "thiserror-impl"
1717
+ version = "1.0.69"
1718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1719
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1720
+ dependencies = [
1721
+ "proc-macro2",
1722
+ "quote",
1723
+ "syn",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "thiserror-impl"
1728
+ version = "2.0.18"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1731
+ dependencies = [
1732
+ "proc-macro2",
1733
+ "quote",
1734
+ "syn",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "tinystr"
1739
+ version = "0.8.2"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1742
+ dependencies = [
1743
+ "displaydoc",
1744
+ "zerovec",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "tinyvec"
1749
+ version = "1.10.0"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1752
+ dependencies = [
1753
+ "tinyvec_macros",
1754
+ ]
1755
+
1756
+ [[package]]
1757
+ name = "tinyvec_macros"
1758
+ version = "0.1.1"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1761
+
1762
+ [[package]]
1763
+ name = "tokio"
1764
+ version = "1.49.0"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
1767
+ dependencies = [
1768
+ "bytes",
1769
+ "libc",
1770
+ "mio",
1771
+ "parking_lot",
1772
+ "pin-project-lite",
1773
+ "signal-hook-registry",
1774
+ "socket2",
1775
+ "tokio-macros",
1776
+ "windows-sys 0.61.2",
1777
+ ]
1778
+
1779
+ [[package]]
1780
+ name = "tokio-boring2"
1781
+ version = "5.0.0-alpha.13"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "0f81df1210d791f31d72d840de8fbd80b9c3cb324956523048b1413e2bd55756"
1784
+ dependencies = [
1785
+ "boring2",
1786
+ "tokio",
1787
+ ]
1788
+
1789
+ [[package]]
1790
+ name = "tokio-macros"
1791
+ version = "2.6.0"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
1794
+ dependencies = [
1795
+ "proc-macro2",
1796
+ "quote",
1797
+ "syn",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "tokio-socks"
1802
+ version = "0.5.2"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
1805
+ dependencies = [
1806
+ "either",
1807
+ "futures-util",
1808
+ "thiserror 1.0.69",
1809
+ "tokio",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "tokio-tungstenite"
1814
+ version = "0.24.0"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
1817
+ dependencies = [
1818
+ "futures-util",
1819
+ "log",
1820
+ "tokio",
1821
+ "tungstenite",
1822
+ ]
1823
+
1824
+ [[package]]
1825
+ name = "tokio-util"
1826
+ version = "0.7.18"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1829
+ dependencies = [
1830
+ "bytes",
1831
+ "futures-core",
1832
+ "futures-sink",
1833
+ "pin-project-lite",
1834
+ "tokio",
1835
+ ]
1836
+
1837
+ [[package]]
1838
+ name = "tracing"
1839
+ version = "0.1.44"
1840
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1841
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1842
+ dependencies = [
1843
+ "pin-project-lite",
1844
+ "tracing-core",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "tracing-core"
1849
+ version = "0.1.36"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1852
+ dependencies = [
1853
+ "once_cell",
1854
+ ]
1855
+
1856
+ [[package]]
1857
+ name = "tungstenite"
1858
+ version = "0.24.0"
1859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1860
+ checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
1861
+ dependencies = [
1862
+ "byteorder",
1863
+ "bytes",
1864
+ "data-encoding",
1865
+ "http",
1866
+ "httparse",
1867
+ "log",
1868
+ "rand 0.8.5",
1869
+ "sha1",
1870
+ "thiserror 1.0.69",
1871
+ "utf-8",
1872
+ ]
1873
+
1874
+ [[package]]
1875
+ name = "typenum"
1876
+ version = "1.19.0"
1877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1878
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
1879
+
1880
+ [[package]]
1881
+ name = "unicode-ident"
1882
+ version = "1.0.24"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1885
+
1886
+ [[package]]
1887
+ name = "unicode-segmentation"
1888
+ version = "1.12.0"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
1891
+
1892
+ [[package]]
1893
+ name = "untrusted"
1894
+ version = "0.9.0"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1897
+
1898
+ [[package]]
1899
+ name = "url"
1900
+ version = "2.5.8"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1903
+ dependencies = [
1904
+ "form_urlencoded",
1905
+ "idna",
1906
+ "percent-encoding",
1907
+ "serde",
1908
+ ]
1909
+
1910
+ [[package]]
1911
+ name = "utf-8"
1912
+ version = "0.7.6"
1913
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1914
+ checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
1915
+
1916
+ [[package]]
1917
+ name = "utf8_iter"
1918
+ version = "1.0.4"
1919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1920
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1921
+
1922
+ [[package]]
1923
+ name = "utf8parse"
1924
+ version = "0.2.2"
1925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1926
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1927
+
1928
+ [[package]]
1929
+ name = "version_check"
1930
+ version = "0.9.5"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1933
+
1934
+ [[package]]
1935
+ name = "wasi"
1936
+ version = "0.11.1+wasi-snapshot-preview1"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1939
+
1940
+ [[package]]
1941
+ name = "wasip2"
1942
+ version = "1.0.2+wasi-0.2.9"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1945
+ dependencies = [
1946
+ "wit-bindgen",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "wasm-bindgen"
1951
+ version = "0.2.108"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
1954
+ dependencies = [
1955
+ "cfg-if",
1956
+ "once_cell",
1957
+ "rustversion",
1958
+ "wasm-bindgen-macro",
1959
+ "wasm-bindgen-shared",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "wasm-bindgen-macro"
1964
+ version = "0.2.108"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
1967
+ dependencies = [
1968
+ "quote",
1969
+ "wasm-bindgen-macro-support",
1970
+ ]
1971
+
1972
+ [[package]]
1973
+ name = "wasm-bindgen-macro-support"
1974
+ version = "0.2.108"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
1977
+ dependencies = [
1978
+ "bumpalo",
1979
+ "proc-macro2",
1980
+ "quote",
1981
+ "syn",
1982
+ "wasm-bindgen-shared",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "wasm-bindgen-shared"
1987
+ version = "0.2.108"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
1990
+ dependencies = [
1991
+ "unicode-ident",
1992
+ ]
1993
+
1994
+ [[package]]
1995
+ name = "web-time"
1996
+ version = "1.1.0"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1999
+ dependencies = [
2000
+ "js-sys",
2001
+ "wasm-bindgen",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "webpki-root-certs"
2006
+ version = "1.0.6"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
2009
+ dependencies = [
2010
+ "rustls-pki-types",
2011
+ ]
2012
+
2013
+ [[package]]
2014
+ name = "webpki-roots"
2015
+ version = "1.0.6"
2016
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2017
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
2018
+ dependencies = [
2019
+ "rustls-pki-types",
2020
+ ]
2021
+
2022
+ [[package]]
2023
+ name = "winapi"
2024
+ version = "0.3.9"
2025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2026
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2027
+ dependencies = [
2028
+ "winapi-i686-pc-windows-gnu",
2029
+ "winapi-x86_64-pc-windows-gnu",
2030
+ ]
2031
+
2032
+ [[package]]
2033
+ name = "winapi-i686-pc-windows-gnu"
2034
+ version = "0.4.0"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2037
+
2038
+ [[package]]
2039
+ name = "winapi-x86_64-pc-windows-gnu"
2040
+ version = "0.4.0"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2043
+
2044
+ [[package]]
2045
+ name = "windows-link"
2046
+ version = "0.2.1"
2047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2048
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2049
+
2050
+ [[package]]
2051
+ name = "windows-sys"
2052
+ version = "0.52.0"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2055
+ dependencies = [
2056
+ "windows-targets 0.52.6",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "windows-sys"
2061
+ version = "0.60.2"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2064
+ dependencies = [
2065
+ "windows-targets 0.53.5",
2066
+ ]
2067
+
2068
+ [[package]]
2069
+ name = "windows-sys"
2070
+ version = "0.61.2"
2071
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2072
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2073
+ dependencies = [
2074
+ "windows-link",
2075
+ ]
2076
+
2077
+ [[package]]
2078
+ name = "windows-targets"
2079
+ version = "0.52.6"
2080
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2081
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2082
+ dependencies = [
2083
+ "windows_aarch64_gnullvm 0.52.6",
2084
+ "windows_aarch64_msvc 0.52.6",
2085
+ "windows_i686_gnu 0.52.6",
2086
+ "windows_i686_gnullvm 0.52.6",
2087
+ "windows_i686_msvc 0.52.6",
2088
+ "windows_x86_64_gnu 0.52.6",
2089
+ "windows_x86_64_gnullvm 0.52.6",
2090
+ "windows_x86_64_msvc 0.52.6",
2091
+ ]
2092
+
2093
+ [[package]]
2094
+ name = "windows-targets"
2095
+ version = "0.53.5"
2096
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2097
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2098
+ dependencies = [
2099
+ "windows-link",
2100
+ "windows_aarch64_gnullvm 0.53.1",
2101
+ "windows_aarch64_msvc 0.53.1",
2102
+ "windows_i686_gnu 0.53.1",
2103
+ "windows_i686_gnullvm 0.53.1",
2104
+ "windows_i686_msvc 0.53.1",
2105
+ "windows_x86_64_gnu 0.53.1",
2106
+ "windows_x86_64_gnullvm 0.53.1",
2107
+ "windows_x86_64_msvc 0.53.1",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "windows_aarch64_gnullvm"
2112
+ version = "0.52.6"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2115
+
2116
+ [[package]]
2117
+ name = "windows_aarch64_gnullvm"
2118
+ version = "0.53.1"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2121
+
2122
+ [[package]]
2123
+ name = "windows_aarch64_msvc"
2124
+ version = "0.52.6"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2127
+
2128
+ [[package]]
2129
+ name = "windows_aarch64_msvc"
2130
+ version = "0.53.1"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2133
+
2134
+ [[package]]
2135
+ name = "windows_i686_gnu"
2136
+ version = "0.52.6"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2139
+
2140
+ [[package]]
2141
+ name = "windows_i686_gnu"
2142
+ version = "0.53.1"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2145
+
2146
+ [[package]]
2147
+ name = "windows_i686_gnullvm"
2148
+ version = "0.52.6"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2151
+
2152
+ [[package]]
2153
+ name = "windows_i686_gnullvm"
2154
+ version = "0.53.1"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2157
+
2158
+ [[package]]
2159
+ name = "windows_i686_msvc"
2160
+ version = "0.52.6"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2163
+
2164
+ [[package]]
2165
+ name = "windows_i686_msvc"
2166
+ version = "0.53.1"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2169
+
2170
+ [[package]]
2171
+ name = "windows_x86_64_gnu"
2172
+ version = "0.52.6"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2175
+
2176
+ [[package]]
2177
+ name = "windows_x86_64_gnu"
2178
+ version = "0.53.1"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2181
+
2182
+ [[package]]
2183
+ name = "windows_x86_64_gnullvm"
2184
+ version = "0.52.6"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2187
+
2188
+ [[package]]
2189
+ name = "windows_x86_64_gnullvm"
2190
+ version = "0.53.1"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2193
+
2194
+ [[package]]
2195
+ name = "windows_x86_64_msvc"
2196
+ version = "0.52.6"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2199
+
2200
+ [[package]]
2201
+ name = "windows_x86_64_msvc"
2202
+ version = "0.53.1"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2205
+
2206
+ [[package]]
2207
+ name = "wit-bindgen"
2208
+ version = "0.51.0"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2211
+
2212
+ [[package]]
2213
+ name = "writeable"
2214
+ version = "0.6.2"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2217
+
2218
+ [[package]]
2219
+ name = "yoke"
2220
+ version = "0.8.1"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2223
+ dependencies = [
2224
+ "stable_deref_trait",
2225
+ "yoke-derive",
2226
+ "zerofrom",
2227
+ ]
2228
+
2229
+ [[package]]
2230
+ name = "yoke-derive"
2231
+ version = "0.8.1"
2232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2233
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2234
+ dependencies = [
2235
+ "proc-macro2",
2236
+ "quote",
2237
+ "syn",
2238
+ "synstructure",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "zerocopy"
2243
+ version = "0.8.39"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
2246
+ dependencies = [
2247
+ "zerocopy-derive",
2248
+ ]
2249
+
2250
+ [[package]]
2251
+ name = "zerocopy-derive"
2252
+ version = "0.8.39"
2253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2254
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
2255
+ dependencies = [
2256
+ "proc-macro2",
2257
+ "quote",
2258
+ "syn",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "zerofrom"
2263
+ version = "0.1.6"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2266
+ dependencies = [
2267
+ "zerofrom-derive",
2268
+ ]
2269
+
2270
+ [[package]]
2271
+ name = "zerofrom-derive"
2272
+ version = "0.1.6"
2273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2274
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2275
+ dependencies = [
2276
+ "proc-macro2",
2277
+ "quote",
2278
+ "syn",
2279
+ "synstructure",
2280
+ ]
2281
+
2282
+ [[package]]
2283
+ name = "zeroize"
2284
+ version = "1.8.2"
2285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2286
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2287
+
2288
+ [[package]]
2289
+ name = "zerotrie"
2290
+ version = "0.2.3"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2293
+ dependencies = [
2294
+ "displaydoc",
2295
+ "yoke",
2296
+ "zerofrom",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "zerovec"
2301
+ version = "0.11.5"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2304
+ dependencies = [
2305
+ "yoke",
2306
+ "zerofrom",
2307
+ "zerovec-derive",
2308
+ ]
2309
+
2310
+ [[package]]
2311
+ name = "zerovec-derive"
2312
+ version = "0.11.2"
2313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2314
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2315
+ dependencies = [
2316
+ "proc-macro2",
2317
+ "quote",
2318
+ "syn",
2319
+ ]
2320
+
2321
+ [[package]]
2322
+ name = "zmij"
2323
+ version = "1.0.21"
2324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2325
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2326
+
2327
+ [[package]]
2328
+ name = "zstd"
2329
+ version = "0.13.3"
2330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2331
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2332
+ dependencies = [
2333
+ "zstd-safe",
2334
+ ]
2335
+
2336
+ [[package]]
2337
+ name = "zstd-safe"
2338
+ version = "7.2.4"
2339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2340
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2341
+ dependencies = [
2342
+ "zstd-sys",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "zstd-sys"
2347
+ version = "2.0.16+zstd.1.5.7"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
2350
+ dependencies = [
2351
+ "cc",
2352
+ "pkg-config",
2353
+ ]