@assetsart/nylon-mesh 1.0.1

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 (49) hide show
  1. package/.github/workflows/release.yml +98 -0
  2. package/Cargo.lock +2965 -0
  3. package/Cargo.toml +33 -0
  4. package/README.md +104 -0
  5. package/bin/nylon-mesh.js +213 -0
  6. package/bun.lock +360 -0
  7. package/docs/content/docs/caching.mdx +85 -0
  8. package/docs/content/docs/configuration.mdx +115 -0
  9. package/docs/content/docs/index.mdx +58 -0
  10. package/docs/content/docs/load-balancing.mdx +69 -0
  11. package/docs/content/docs/meta.json +9 -0
  12. package/docs/next.config.mjs +11 -0
  13. package/docs/package-lock.json +6099 -0
  14. package/docs/package.json +32 -0
  15. package/docs/postcss.config.mjs +7 -0
  16. package/docs/source.config.ts +23 -0
  17. package/docs/src/app/(home)/layout.tsx +6 -0
  18. package/docs/src/app/(home)/page.tsx +125 -0
  19. package/docs/src/app/api/search/route.ts +9 -0
  20. package/docs/src/app/docs/[[...slug]]/page.tsx +46 -0
  21. package/docs/src/app/docs/layout.tsx +11 -0
  22. package/docs/src/app/global.css +7 -0
  23. package/docs/src/app/layout.tsx +31 -0
  24. package/docs/src/app/llms-full.txt/route.ts +10 -0
  25. package/docs/src/app/llms.txt/route.ts +13 -0
  26. package/docs/src/app/og/docs/[...slug]/route.tsx +27 -0
  27. package/docs/src/components/ai/page-actions.tsx +240 -0
  28. package/docs/src/components/architecture-diagram.tsx +88 -0
  29. package/docs/src/components/benchmark.tsx +129 -0
  30. package/docs/src/components/configuration.tsx +107 -0
  31. package/docs/src/components/copy-button.tsx +29 -0
  32. package/docs/src/components/footer.tsx +37 -0
  33. package/docs/src/components/framework-logos.tsx +35 -0
  34. package/docs/src/lib/cn.ts +1 -0
  35. package/docs/src/lib/layout.shared.tsx +23 -0
  36. package/docs/src/lib/source.ts +27 -0
  37. package/docs/src/mdx-components.tsx +9 -0
  38. package/docs/tsconfig.json +46 -0
  39. package/nylon-mesh.yaml +41 -0
  40. package/package.json +23 -0
  41. package/scripts/publish.mjs +18 -0
  42. package/scripts/release.mjs +52 -0
  43. package/src/config.rs +91 -0
  44. package/src/main.rs +214 -0
  45. package/src/proxy/cache.rs +304 -0
  46. package/src/proxy/handlers.rs +76 -0
  47. package/src/proxy/load_balancer.rs +23 -0
  48. package/src/proxy/mod.rs +232 -0
  49. package/src/tls_accept.rs +119 -0
package/Cargo.lock ADDED
@@ -0,0 +1,2965 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "addr2line"
7
+ version = "0.25.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
10
+ dependencies = [
11
+ "gimli",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "adler2"
16
+ version = "2.0.1"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
+
20
+ [[package]]
21
+ name = "ahash"
22
+ version = "0.8.12"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25
+ dependencies = [
26
+ "cfg-if",
27
+ "getrandom 0.3.4",
28
+ "once_cell",
29
+ "version_check",
30
+ "zerocopy",
31
+ ]
32
+
33
+ [[package]]
34
+ name = "aho-corasick"
35
+ version = "1.1.4"
36
+ source = "registry+https://github.com/rust-lang/crates.io-index"
37
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
38
+ dependencies = [
39
+ "memchr",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "alloc-no-stdlib"
44
+ version = "2.0.4"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
47
+
48
+ [[package]]
49
+ name = "alloc-stdlib"
50
+ version = "0.2.2"
51
+ source = "registry+https://github.com/rust-lang/crates.io-index"
52
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
53
+ dependencies = [
54
+ "alloc-no-stdlib",
55
+ ]
56
+
57
+ [[package]]
58
+ name = "allocator-api2"
59
+ version = "0.2.21"
60
+ source = "registry+https://github.com/rust-lang/crates.io-index"
61
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
62
+
63
+ [[package]]
64
+ name = "anstream"
65
+ version = "0.6.21"
66
+ source = "registry+https://github.com/rust-lang/crates.io-index"
67
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
68
+ dependencies = [
69
+ "anstyle",
70
+ "anstyle-parse",
71
+ "anstyle-query",
72
+ "anstyle-wincon",
73
+ "colorchoice",
74
+ "is_terminal_polyfill",
75
+ "utf8parse",
76
+ ]
77
+
78
+ [[package]]
79
+ name = "anstyle"
80
+ version = "1.0.13"
81
+ source = "registry+https://github.com/rust-lang/crates.io-index"
82
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
83
+
84
+ [[package]]
85
+ name = "anstyle-parse"
86
+ version = "0.2.7"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
89
+ dependencies = [
90
+ "utf8parse",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "anstyle-query"
95
+ version = "1.1.5"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
98
+ dependencies = [
99
+ "windows-sys 0.61.2",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anstyle-wincon"
104
+ version = "3.0.11"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
107
+ dependencies = [
108
+ "anstyle",
109
+ "once_cell_polyfill",
110
+ "windows-sys 0.61.2",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "anyhow"
115
+ version = "1.0.102"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
118
+
119
+ [[package]]
120
+ name = "arc-swap"
121
+ version = "1.8.2"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5"
124
+ dependencies = [
125
+ "rustversion",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "arcstr"
130
+ version = "1.2.0"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d"
133
+
134
+ [[package]]
135
+ name = "arrayvec"
136
+ version = "0.7.6"
137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
138
+ checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
139
+
140
+ [[package]]
141
+ name = "async-lock"
142
+ version = "3.4.2"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
145
+ dependencies = [
146
+ "event-listener",
147
+ "event-listener-strategy",
148
+ "pin-project-lite",
149
+ ]
150
+
151
+ [[package]]
152
+ name = "async-trait"
153
+ version = "0.1.89"
154
+ source = "registry+https://github.com/rust-lang/crates.io-index"
155
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
156
+ dependencies = [
157
+ "proc-macro2",
158
+ "quote",
159
+ "syn 2.0.117",
160
+ ]
161
+
162
+ [[package]]
163
+ name = "atomic-waker"
164
+ version = "1.1.2"
165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
166
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
167
+
168
+ [[package]]
169
+ name = "autocfg"
170
+ version = "1.5.0"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
173
+
174
+ [[package]]
175
+ name = "backtrace"
176
+ version = "0.3.76"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
179
+ dependencies = [
180
+ "addr2line",
181
+ "cfg-if",
182
+ "libc",
183
+ "miniz_oxide",
184
+ "object",
185
+ "rustc-demangle",
186
+ "windows-link",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "base64"
191
+ version = "0.22.1"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
194
+
195
+ [[package]]
196
+ name = "bitflags"
197
+ version = "1.3.2"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
200
+
201
+ [[package]]
202
+ name = "bitflags"
203
+ version = "2.11.0"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
206
+
207
+ [[package]]
208
+ name = "blake2"
209
+ version = "0.10.6"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
212
+ dependencies = [
213
+ "digest",
214
+ ]
215
+
216
+ [[package]]
217
+ name = "block-buffer"
218
+ version = "0.10.4"
219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
220
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
221
+ dependencies = [
222
+ "generic-array",
223
+ ]
224
+
225
+ [[package]]
226
+ name = "brotli"
227
+ version = "3.5.0"
228
+ source = "registry+https://github.com/rust-lang/crates.io-index"
229
+ checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
230
+ dependencies = [
231
+ "alloc-no-stdlib",
232
+ "alloc-stdlib",
233
+ "brotli-decompressor",
234
+ ]
235
+
236
+ [[package]]
237
+ name = "brotli-decompressor"
238
+ version = "2.5.1"
239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
240
+ checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
241
+ dependencies = [
242
+ "alloc-no-stdlib",
243
+ "alloc-stdlib",
244
+ ]
245
+
246
+ [[package]]
247
+ name = "bstr"
248
+ version = "1.12.1"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
251
+ dependencies = [
252
+ "memchr",
253
+ "regex-automata",
254
+ "serde",
255
+ ]
256
+
257
+ [[package]]
258
+ name = "bumpalo"
259
+ version = "3.20.2"
260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
261
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
262
+
263
+ [[package]]
264
+ name = "byteorder"
265
+ version = "1.5.0"
266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
267
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
268
+
269
+ [[package]]
270
+ name = "bytes"
271
+ version = "1.11.1"
272
+ source = "registry+https://github.com/rust-lang/crates.io-index"
273
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
274
+
275
+ [[package]]
276
+ name = "cc"
277
+ version = "1.2.56"
278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
279
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
280
+ dependencies = [
281
+ "find-msvc-tools",
282
+ "jobserver",
283
+ "libc",
284
+ "shlex",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "cf-rustracing"
289
+ version = "1.2.1"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "93f85c3824e4191621dec0551e3cef3d511f329da9a8990bf3e450a85651d97e"
292
+ dependencies = [
293
+ "backtrace",
294
+ "rand 0.8.5",
295
+ "tokio",
296
+ "trackable",
297
+ ]
298
+
299
+ [[package]]
300
+ name = "cf-rustracing-jaeger"
301
+ version = "1.2.2"
302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
303
+ checksum = "a6a5f80d44c257c3300a7f45ada676c211e64bbbac591bbec19344a8f61fbcab"
304
+ dependencies = [
305
+ "cf-rustracing",
306
+ "hostname",
307
+ "local-ip-address",
308
+ "percent-encoding",
309
+ "rand 0.9.2",
310
+ "thrift_codec",
311
+ "tokio",
312
+ "trackable",
313
+ ]
314
+
315
+ [[package]]
316
+ name = "cfg-if"
317
+ version = "1.0.4"
318
+ source = "registry+https://github.com/rust-lang/crates.io-index"
319
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
320
+
321
+ [[package]]
322
+ name = "chrono"
323
+ version = "0.4.43"
324
+ source = "registry+https://github.com/rust-lang/crates.io-index"
325
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
326
+ dependencies = [
327
+ "num-traits",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "clap"
332
+ version = "4.5.60"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
335
+ dependencies = [
336
+ "clap_builder",
337
+ "clap_derive",
338
+ ]
339
+
340
+ [[package]]
341
+ name = "clap_builder"
342
+ version = "4.5.60"
343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
344
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
345
+ dependencies = [
346
+ "anstream",
347
+ "anstyle",
348
+ "clap_lex",
349
+ "strsim",
350
+ ]
351
+
352
+ [[package]]
353
+ name = "clap_derive"
354
+ version = "4.5.55"
355
+ source = "registry+https://github.com/rust-lang/crates.io-index"
356
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
357
+ dependencies = [
358
+ "heck",
359
+ "proc-macro2",
360
+ "quote",
361
+ "syn 2.0.117",
362
+ ]
363
+
364
+ [[package]]
365
+ name = "clap_lex"
366
+ version = "1.0.0"
367
+ source = "registry+https://github.com/rust-lang/crates.io-index"
368
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
369
+
370
+ [[package]]
371
+ name = "cmake"
372
+ version = "0.1.57"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
375
+ dependencies = [
376
+ "cc",
377
+ ]
378
+
379
+ [[package]]
380
+ name = "colorchoice"
381
+ version = "1.0.4"
382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
383
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
384
+
385
+ [[package]]
386
+ name = "combine"
387
+ version = "4.6.7"
388
+ source = "registry+https://github.com/rust-lang/crates.io-index"
389
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
390
+ dependencies = [
391
+ "bytes",
392
+ "futures-core",
393
+ "memchr",
394
+ "pin-project-lite",
395
+ "tokio",
396
+ "tokio-util",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "concurrent-queue"
401
+ version = "2.5.0"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
404
+ dependencies = [
405
+ "crossbeam-utils",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "crc32fast"
410
+ version = "1.5.0"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
413
+ dependencies = [
414
+ "cfg-if",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "crossbeam-channel"
419
+ version = "0.5.15"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
422
+ dependencies = [
423
+ "crossbeam-utils",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "crossbeam-epoch"
428
+ version = "0.9.18"
429
+ source = "registry+https://github.com/rust-lang/crates.io-index"
430
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
431
+ dependencies = [
432
+ "crossbeam-utils",
433
+ ]
434
+
435
+ [[package]]
436
+ name = "crossbeam-queue"
437
+ version = "0.3.12"
438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
439
+ checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
440
+ dependencies = [
441
+ "crossbeam-utils",
442
+ ]
443
+
444
+ [[package]]
445
+ name = "crossbeam-utils"
446
+ version = "0.8.21"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
449
+
450
+ [[package]]
451
+ name = "crypto-common"
452
+ version = "0.1.7"
453
+ source = "registry+https://github.com/rust-lang/crates.io-index"
454
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
455
+ dependencies = [
456
+ "generic-array",
457
+ "typenum",
458
+ ]
459
+
460
+ [[package]]
461
+ name = "daemonize"
462
+ version = "0.5.0"
463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
464
+ checksum = "ab8bfdaacb3c887a54d41bdf48d3af8873b3f5566469f8ba21b92057509f116e"
465
+ dependencies = [
466
+ "libc",
467
+ ]
468
+
469
+ [[package]]
470
+ name = "darling"
471
+ version = "0.20.11"
472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
473
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
474
+ dependencies = [
475
+ "darling_core",
476
+ "darling_macro",
477
+ ]
478
+
479
+ [[package]]
480
+ name = "darling_core"
481
+ version = "0.20.11"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
484
+ dependencies = [
485
+ "fnv",
486
+ "ident_case",
487
+ "proc-macro2",
488
+ "quote",
489
+ "strsim",
490
+ "syn 2.0.117",
491
+ ]
492
+
493
+ [[package]]
494
+ name = "darling_macro"
495
+ version = "0.20.11"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
498
+ dependencies = [
499
+ "darling_core",
500
+ "quote",
501
+ "syn 2.0.117",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "derivative"
506
+ version = "2.2.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
509
+ dependencies = [
510
+ "proc-macro2",
511
+ "quote",
512
+ "syn 1.0.109",
513
+ ]
514
+
515
+ [[package]]
516
+ name = "derive_builder"
517
+ version = "0.20.2"
518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
519
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
520
+ dependencies = [
521
+ "derive_builder_macro",
522
+ ]
523
+
524
+ [[package]]
525
+ name = "derive_builder_core"
526
+ version = "0.20.2"
527
+ source = "registry+https://github.com/rust-lang/crates.io-index"
528
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
529
+ dependencies = [
530
+ "darling",
531
+ "proc-macro2",
532
+ "quote",
533
+ "syn 2.0.117",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "derive_builder_macro"
538
+ version = "0.20.2"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
541
+ dependencies = [
542
+ "derive_builder_core",
543
+ "syn 2.0.117",
544
+ ]
545
+
546
+ [[package]]
547
+ name = "digest"
548
+ version = "0.10.7"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
551
+ dependencies = [
552
+ "block-buffer",
553
+ "crypto-common",
554
+ "subtle",
555
+ ]
556
+
557
+ [[package]]
558
+ name = "displaydoc"
559
+ version = "0.2.5"
560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
561
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
562
+ dependencies = [
563
+ "proc-macro2",
564
+ "quote",
565
+ "syn 2.0.117",
566
+ ]
567
+
568
+ [[package]]
569
+ name = "either"
570
+ version = "1.15.0"
571
+ source = "registry+https://github.com/rust-lang/crates.io-index"
572
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
573
+
574
+ [[package]]
575
+ name = "equivalent"
576
+ version = "1.0.2"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
579
+
580
+ [[package]]
581
+ name = "errno"
582
+ version = "0.3.14"
583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
584
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
585
+ dependencies = [
586
+ "libc",
587
+ "windows-sys 0.61.2",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "event-listener"
592
+ version = "5.4.1"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
595
+ dependencies = [
596
+ "concurrent-queue",
597
+ "parking",
598
+ "pin-project-lite",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "event-listener-strategy"
603
+ version = "0.5.4"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
606
+ dependencies = [
607
+ "event-listener",
608
+ "pin-project-lite",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "find-msvc-tools"
613
+ version = "0.1.9"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
616
+
617
+ [[package]]
618
+ name = "flate2"
619
+ version = "1.1.9"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
622
+ dependencies = [
623
+ "crc32fast",
624
+ "libz-ng-sys",
625
+ "miniz_oxide",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "fnv"
630
+ version = "1.0.7"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
633
+
634
+ [[package]]
635
+ name = "foldhash"
636
+ version = "0.1.5"
637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
638
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
639
+
640
+ [[package]]
641
+ name = "foldhash"
642
+ version = "0.2.0"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
645
+
646
+ [[package]]
647
+ name = "foreign-types"
648
+ version = "0.3.2"
649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
650
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
651
+ dependencies = [
652
+ "foreign-types-shared",
653
+ ]
654
+
655
+ [[package]]
656
+ name = "foreign-types-shared"
657
+ version = "0.1.1"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
660
+
661
+ [[package]]
662
+ name = "form_urlencoded"
663
+ version = "1.2.2"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
666
+ dependencies = [
667
+ "percent-encoding",
668
+ ]
669
+
670
+ [[package]]
671
+ name = "futures"
672
+ version = "0.3.32"
673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
674
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
675
+ dependencies = [
676
+ "futures-channel",
677
+ "futures-core",
678
+ "futures-executor",
679
+ "futures-io",
680
+ "futures-sink",
681
+ "futures-task",
682
+ "futures-util",
683
+ ]
684
+
685
+ [[package]]
686
+ name = "futures-channel"
687
+ version = "0.3.32"
688
+ source = "registry+https://github.com/rust-lang/crates.io-index"
689
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
690
+ dependencies = [
691
+ "futures-core",
692
+ "futures-sink",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "futures-core"
697
+ version = "0.3.32"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
700
+
701
+ [[package]]
702
+ name = "futures-executor"
703
+ version = "0.3.32"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
706
+ dependencies = [
707
+ "futures-core",
708
+ "futures-task",
709
+ "futures-util",
710
+ ]
711
+
712
+ [[package]]
713
+ name = "futures-io"
714
+ version = "0.3.32"
715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
716
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
717
+
718
+ [[package]]
719
+ name = "futures-macro"
720
+ version = "0.3.32"
721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
722
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
723
+ dependencies = [
724
+ "proc-macro2",
725
+ "quote",
726
+ "syn 2.0.117",
727
+ ]
728
+
729
+ [[package]]
730
+ name = "futures-sink"
731
+ version = "0.3.32"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
734
+
735
+ [[package]]
736
+ name = "futures-task"
737
+ version = "0.3.32"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
740
+
741
+ [[package]]
742
+ name = "futures-util"
743
+ version = "0.3.32"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
746
+ dependencies = [
747
+ "futures-channel",
748
+ "futures-core",
749
+ "futures-io",
750
+ "futures-macro",
751
+ "futures-sink",
752
+ "futures-task",
753
+ "memchr",
754
+ "pin-project-lite",
755
+ "slab",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "generic-array"
760
+ version = "0.14.7"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
763
+ dependencies = [
764
+ "typenum",
765
+ "version_check",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "getrandom"
770
+ version = "0.2.17"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
773
+ dependencies = [
774
+ "cfg-if",
775
+ "libc",
776
+ "wasi",
777
+ ]
778
+
779
+ [[package]]
780
+ name = "getrandom"
781
+ version = "0.3.4"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
784
+ dependencies = [
785
+ "cfg-if",
786
+ "libc",
787
+ "r-efi",
788
+ "wasip2",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "getrandom"
793
+ version = "0.4.1"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
796
+ dependencies = [
797
+ "cfg-if",
798
+ "libc",
799
+ "r-efi",
800
+ "wasip2",
801
+ "wasip3",
802
+ ]
803
+
804
+ [[package]]
805
+ name = "getset"
806
+ version = "0.1.6"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "9cf0fc11e47561d47397154977bc219f4cf809b2974facc3ccb3b89e2436f912"
809
+ dependencies = [
810
+ "proc-macro-error2",
811
+ "proc-macro2",
812
+ "quote",
813
+ "syn 2.0.117",
814
+ ]
815
+
816
+ [[package]]
817
+ name = "gimli"
818
+ version = "0.32.3"
819
+ source = "registry+https://github.com/rust-lang/crates.io-index"
820
+ checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
821
+
822
+ [[package]]
823
+ name = "h2"
824
+ version = "0.4.13"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
827
+ dependencies = [
828
+ "atomic-waker",
829
+ "bytes",
830
+ "fnv",
831
+ "futures-core",
832
+ "futures-sink",
833
+ "http",
834
+ "indexmap 2.13.0",
835
+ "slab",
836
+ "tokio",
837
+ "tokio-util",
838
+ "tracing",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "hashbrown"
843
+ version = "0.12.3"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
846
+
847
+ [[package]]
848
+ name = "hashbrown"
849
+ version = "0.15.5"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
852
+ dependencies = [
853
+ "foldhash 0.1.5",
854
+ ]
855
+
856
+ [[package]]
857
+ name = "hashbrown"
858
+ version = "0.16.1"
859
+ source = "registry+https://github.com/rust-lang/crates.io-index"
860
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
861
+ dependencies = [
862
+ "allocator-api2",
863
+ "equivalent",
864
+ "foldhash 0.2.0",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "heck"
869
+ version = "0.5.0"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
872
+
873
+ [[package]]
874
+ name = "hex"
875
+ version = "0.4.3"
876
+ source = "registry+https://github.com/rust-lang/crates.io-index"
877
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
878
+
879
+ [[package]]
880
+ name = "hostname"
881
+ version = "0.4.2"
882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
883
+ checksum = "617aaa3557aef3810a6369d0a99fac8a080891b68bd9f9812a1eeda0c0730cbd"
884
+ dependencies = [
885
+ "cfg-if",
886
+ "libc",
887
+ "windows-link",
888
+ ]
889
+
890
+ [[package]]
891
+ name = "http"
892
+ version = "1.4.0"
893
+ source = "registry+https://github.com/rust-lang/crates.io-index"
894
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
895
+ dependencies = [
896
+ "bytes",
897
+ "itoa",
898
+ ]
899
+
900
+ [[package]]
901
+ name = "httparse"
902
+ version = "1.10.1"
903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
904
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
905
+
906
+ [[package]]
907
+ name = "httpdate"
908
+ version = "1.0.3"
909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
910
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
911
+
912
+ [[package]]
913
+ name = "icu_collections"
914
+ version = "2.1.1"
915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
916
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
917
+ dependencies = [
918
+ "displaydoc",
919
+ "potential_utf",
920
+ "yoke",
921
+ "zerofrom",
922
+ "zerovec",
923
+ ]
924
+
925
+ [[package]]
926
+ name = "icu_locale_core"
927
+ version = "2.1.1"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
930
+ dependencies = [
931
+ "displaydoc",
932
+ "litemap",
933
+ "tinystr",
934
+ "writeable",
935
+ "zerovec",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "icu_normalizer"
940
+ version = "2.1.1"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
943
+ dependencies = [
944
+ "icu_collections",
945
+ "icu_normalizer_data",
946
+ "icu_properties",
947
+ "icu_provider",
948
+ "smallvec",
949
+ "zerovec",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "icu_normalizer_data"
954
+ version = "2.1.1"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
957
+
958
+ [[package]]
959
+ name = "icu_properties"
960
+ version = "2.1.2"
961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
962
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
963
+ dependencies = [
964
+ "icu_collections",
965
+ "icu_locale_core",
966
+ "icu_properties_data",
967
+ "icu_provider",
968
+ "zerotrie",
969
+ "zerovec",
970
+ ]
971
+
972
+ [[package]]
973
+ name = "icu_properties_data"
974
+ version = "2.1.2"
975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
976
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
977
+
978
+ [[package]]
979
+ name = "icu_provider"
980
+ version = "2.1.1"
981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
982
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
983
+ dependencies = [
984
+ "displaydoc",
985
+ "icu_locale_core",
986
+ "writeable",
987
+ "yoke",
988
+ "zerofrom",
989
+ "zerotrie",
990
+ "zerovec",
991
+ ]
992
+
993
+ [[package]]
994
+ name = "id-arena"
995
+ version = "2.3.0"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
998
+
999
+ [[package]]
1000
+ name = "ident_case"
1001
+ version = "1.0.1"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1004
+
1005
+ [[package]]
1006
+ name = "idna"
1007
+ version = "1.1.0"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1010
+ dependencies = [
1011
+ "idna_adapter",
1012
+ "smallvec",
1013
+ "utf8_iter",
1014
+ ]
1015
+
1016
+ [[package]]
1017
+ name = "idna_adapter"
1018
+ version = "1.2.1"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1021
+ dependencies = [
1022
+ "icu_normalizer",
1023
+ "icu_properties",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "indexmap"
1028
+ version = "1.9.3"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1031
+ dependencies = [
1032
+ "autocfg",
1033
+ "hashbrown 0.12.3",
1034
+ ]
1035
+
1036
+ [[package]]
1037
+ name = "indexmap"
1038
+ version = "2.13.0"
1039
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1040
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1041
+ dependencies = [
1042
+ "equivalent",
1043
+ "hashbrown 0.16.1",
1044
+ "serde",
1045
+ "serde_core",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "is_terminal_polyfill"
1050
+ version = "1.70.2"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1053
+
1054
+ [[package]]
1055
+ name = "itoa"
1056
+ version = "1.0.17"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1059
+
1060
+ [[package]]
1061
+ name = "jobserver"
1062
+ version = "0.1.34"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1065
+ dependencies = [
1066
+ "getrandom 0.3.4",
1067
+ "libc",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "js-sys"
1072
+ version = "0.3.87"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "93f0862381daaec758576dcc22eb7bbf4d7efd67328553f3b45a412a51a3fb21"
1075
+ dependencies = [
1076
+ "once_cell",
1077
+ "wasm-bindgen",
1078
+ ]
1079
+
1080
+ [[package]]
1081
+ name = "lazy_static"
1082
+ version = "1.5.0"
1083
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1084
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1085
+
1086
+ [[package]]
1087
+ name = "leb128fmt"
1088
+ version = "0.1.0"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1091
+
1092
+ [[package]]
1093
+ name = "libc"
1094
+ version = "0.2.182"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1097
+
1098
+ [[package]]
1099
+ name = "libmimalloc-sys"
1100
+ version = "0.1.44"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
1103
+ dependencies = [
1104
+ "cc",
1105
+ "libc",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "libz-ng-sys"
1110
+ version = "1.1.23"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "7bf914b7dd154ca9193afec311d8e39345c1bd93b48b3faa77329f0db8f553c0"
1113
+ dependencies = [
1114
+ "cmake",
1115
+ "libc",
1116
+ ]
1117
+
1118
+ [[package]]
1119
+ name = "litemap"
1120
+ version = "0.8.1"
1121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1122
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1123
+
1124
+ [[package]]
1125
+ name = "local-ip-address"
1126
+ version = "0.6.10"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "79ef8c257c92ade496781a32a581d43e3d512cf8ce714ecf04ea80f93ed0ff4a"
1129
+ dependencies = [
1130
+ "libc",
1131
+ "neli",
1132
+ "windows-sys 0.61.2",
1133
+ ]
1134
+
1135
+ [[package]]
1136
+ name = "lock_api"
1137
+ version = "0.4.14"
1138
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1139
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1140
+ dependencies = [
1141
+ "scopeguard",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "log"
1146
+ version = "0.4.29"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1149
+
1150
+ [[package]]
1151
+ name = "lru"
1152
+ version = "0.16.3"
1153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1154
+ checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
1155
+ dependencies = [
1156
+ "hashbrown 0.16.1",
1157
+ ]
1158
+
1159
+ [[package]]
1160
+ name = "memchr"
1161
+ version = "2.8.0"
1162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1163
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1164
+
1165
+ [[package]]
1166
+ name = "memoffset"
1167
+ version = "0.6.5"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
1170
+ dependencies = [
1171
+ "autocfg",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "mimalloc"
1176
+ version = "0.1.48"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
1179
+ dependencies = [
1180
+ "libmimalloc-sys",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "miniz_oxide"
1185
+ version = "0.8.9"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1188
+ dependencies = [
1189
+ "adler2",
1190
+ "simd-adler32",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "mio"
1195
+ version = "1.1.1"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1198
+ dependencies = [
1199
+ "libc",
1200
+ "wasi",
1201
+ "windows-sys 0.61.2",
1202
+ ]
1203
+
1204
+ [[package]]
1205
+ name = "moka"
1206
+ version = "0.12.13"
1207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1208
+ checksum = "b4ac832c50ced444ef6be0767a008b02c106a909ba79d1d830501e94b96f6b7e"
1209
+ dependencies = [
1210
+ "async-lock",
1211
+ "crossbeam-channel",
1212
+ "crossbeam-epoch",
1213
+ "crossbeam-utils",
1214
+ "equivalent",
1215
+ "event-listener",
1216
+ "futures-util",
1217
+ "parking_lot",
1218
+ "portable-atomic",
1219
+ "smallvec",
1220
+ "tagptr",
1221
+ "uuid",
1222
+ ]
1223
+
1224
+ [[package]]
1225
+ name = "neli"
1226
+ version = "0.7.4"
1227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1228
+ checksum = "22f9786d56d972959e1408b6a93be6af13b9c1392036c5c1fafa08a1b0c6ee87"
1229
+ dependencies = [
1230
+ "bitflags 2.11.0",
1231
+ "byteorder",
1232
+ "derive_builder",
1233
+ "getset",
1234
+ "libc",
1235
+ "log",
1236
+ "neli-proc-macros",
1237
+ "parking_lot",
1238
+ ]
1239
+
1240
+ [[package]]
1241
+ name = "neli-proc-macros"
1242
+ version = "0.2.2"
1243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1244
+ checksum = "05d8d08c6e98f20a62417478ebf7be8e1425ec9acecc6f63e22da633f6b71609"
1245
+ dependencies = [
1246
+ "either",
1247
+ "proc-macro2",
1248
+ "quote",
1249
+ "serde",
1250
+ "syn 2.0.117",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "nix"
1255
+ version = "0.24.3"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "fa52e972a9a719cecb6864fb88568781eb706bac2cd1d4f04a648542dbf78069"
1258
+ dependencies = [
1259
+ "bitflags 1.3.2",
1260
+ "cfg-if",
1261
+ "libc",
1262
+ "memoffset",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "nu-ansi-term"
1267
+ version = "0.50.3"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1270
+ dependencies = [
1271
+ "windows-sys 0.61.2",
1272
+ ]
1273
+
1274
+ [[package]]
1275
+ name = "num-bigint"
1276
+ version = "0.4.6"
1277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1278
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1279
+ dependencies = [
1280
+ "num-integer",
1281
+ "num-traits",
1282
+ ]
1283
+
1284
+ [[package]]
1285
+ name = "num-integer"
1286
+ version = "0.1.46"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1289
+ dependencies = [
1290
+ "num-traits",
1291
+ ]
1292
+
1293
+ [[package]]
1294
+ name = "num-traits"
1295
+ version = "0.2.19"
1296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1297
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1298
+ dependencies = [
1299
+ "autocfg",
1300
+ ]
1301
+
1302
+ [[package]]
1303
+ name = "nylon-mesh"
1304
+ version = "1.0.1"
1305
+ dependencies = [
1306
+ "async-trait",
1307
+ "bytes",
1308
+ "http",
1309
+ "mimalloc",
1310
+ "moka",
1311
+ "once_cell",
1312
+ "openssl",
1313
+ "pingora",
1314
+ "pingora-cache",
1315
+ "pingora-core",
1316
+ "pingora-load-balancing",
1317
+ "pingora-proxy",
1318
+ "redis",
1319
+ "serde",
1320
+ "serde_json",
1321
+ "serde_yaml",
1322
+ "tokio",
1323
+ "tracing",
1324
+ "tracing-subscriber",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "object"
1329
+ version = "0.37.3"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
1332
+ dependencies = [
1333
+ "memchr",
1334
+ ]
1335
+
1336
+ [[package]]
1337
+ name = "once_cell"
1338
+ version = "1.21.3"
1339
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1340
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1341
+
1342
+ [[package]]
1343
+ name = "once_cell_polyfill"
1344
+ version = "1.70.2"
1345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1346
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1347
+
1348
+ [[package]]
1349
+ name = "openssl"
1350
+ version = "0.10.75"
1351
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1352
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1353
+ dependencies = [
1354
+ "bitflags 2.11.0",
1355
+ "cfg-if",
1356
+ "foreign-types",
1357
+ "libc",
1358
+ "once_cell",
1359
+ "openssl-macros",
1360
+ "openssl-sys",
1361
+ ]
1362
+
1363
+ [[package]]
1364
+ name = "openssl-macros"
1365
+ version = "0.1.1"
1366
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1367
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1368
+ dependencies = [
1369
+ "proc-macro2",
1370
+ "quote",
1371
+ "syn 2.0.117",
1372
+ ]
1373
+
1374
+ [[package]]
1375
+ name = "openssl-probe"
1376
+ version = "0.1.6"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1379
+
1380
+ [[package]]
1381
+ name = "openssl-src"
1382
+ version = "300.5.5+3.5.5"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "3f1787d533e03597a7934fd0a765f0d28e94ecc5fb7789f8053b1e699a56f709"
1385
+ dependencies = [
1386
+ "cc",
1387
+ ]
1388
+
1389
+ [[package]]
1390
+ name = "openssl-sys"
1391
+ version = "0.9.111"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1394
+ dependencies = [
1395
+ "cc",
1396
+ "libc",
1397
+ "openssl-src",
1398
+ "pkg-config",
1399
+ "vcpkg",
1400
+ ]
1401
+
1402
+ [[package]]
1403
+ name = "parking"
1404
+ version = "2.2.1"
1405
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1406
+ checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1407
+
1408
+ [[package]]
1409
+ name = "parking_lot"
1410
+ version = "0.12.5"
1411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1412
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1413
+ dependencies = [
1414
+ "lock_api",
1415
+ "parking_lot_core",
1416
+ ]
1417
+
1418
+ [[package]]
1419
+ name = "parking_lot_core"
1420
+ version = "0.9.12"
1421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1422
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1423
+ dependencies = [
1424
+ "cfg-if",
1425
+ "libc",
1426
+ "redox_syscall",
1427
+ "smallvec",
1428
+ "windows-link",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "percent-encoding"
1433
+ version = "2.3.2"
1434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1435
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1436
+
1437
+ [[package]]
1438
+ name = "pin-project-lite"
1439
+ version = "0.2.16"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1442
+
1443
+ [[package]]
1444
+ name = "pingora"
1445
+ version = "0.7.0"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "01e8f7e45ee3a0c90e154ba7f2ec12ea33c398913d45d23b01429e90e1b394c7"
1448
+ dependencies = [
1449
+ "pingora-cache",
1450
+ "pingora-core",
1451
+ "pingora-http",
1452
+ "pingora-load-balancing",
1453
+ "pingora-proxy",
1454
+ "pingora-timeout",
1455
+ ]
1456
+
1457
+ [[package]]
1458
+ name = "pingora-cache"
1459
+ version = "0.7.0"
1460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1461
+ checksum = "bcea698ba4fef0863caf2feaf0f699ee29d82c19f9c54bc55c8f29e8609c773c"
1462
+ dependencies = [
1463
+ "ahash",
1464
+ "async-trait",
1465
+ "blake2",
1466
+ "bstr",
1467
+ "bytes",
1468
+ "cf-rustracing",
1469
+ "cf-rustracing-jaeger",
1470
+ "hex",
1471
+ "http",
1472
+ "httparse",
1473
+ "httpdate",
1474
+ "indexmap 1.9.3",
1475
+ "log",
1476
+ "lru",
1477
+ "once_cell",
1478
+ "parking_lot",
1479
+ "pingora-core",
1480
+ "pingora-error",
1481
+ "pingora-header-serde",
1482
+ "pingora-http",
1483
+ "pingora-lru",
1484
+ "pingora-timeout",
1485
+ "rand 0.8.5",
1486
+ "regex",
1487
+ "rmp",
1488
+ "rmp-serde",
1489
+ "serde",
1490
+ "strum",
1491
+ "tokio",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "pingora-core"
1496
+ version = "0.7.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "5aced35d346b7c6559234b5ec493d638471d3234b0152f18c59390bbdafac2a7"
1499
+ dependencies = [
1500
+ "ahash",
1501
+ "async-trait",
1502
+ "brotli",
1503
+ "bstr",
1504
+ "bytes",
1505
+ "chrono",
1506
+ "clap",
1507
+ "daemonize",
1508
+ "derivative",
1509
+ "flate2",
1510
+ "futures",
1511
+ "h2",
1512
+ "http",
1513
+ "httparse",
1514
+ "httpdate",
1515
+ "libc",
1516
+ "log",
1517
+ "nix",
1518
+ "once_cell",
1519
+ "openssl-probe",
1520
+ "parking_lot",
1521
+ "percent-encoding",
1522
+ "pingora-error",
1523
+ "pingora-http",
1524
+ "pingora-openssl",
1525
+ "pingora-pool",
1526
+ "pingora-runtime",
1527
+ "pingora-timeout",
1528
+ "prometheus",
1529
+ "rand 0.8.5",
1530
+ "regex",
1531
+ "serde",
1532
+ "serde_yaml",
1533
+ "sfv",
1534
+ "socket2",
1535
+ "strum",
1536
+ "strum_macros",
1537
+ "tokio",
1538
+ "tokio-stream",
1539
+ "tokio-test",
1540
+ "unicase",
1541
+ "windows-sys 0.59.0",
1542
+ "zstd",
1543
+ ]
1544
+
1545
+ [[package]]
1546
+ name = "pingora-error"
1547
+ version = "0.7.0"
1548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1549
+ checksum = "1b761e30ae329162ddddbbb41d2bf8a3e48d52c70a0d5ff51ccb964acf0bd505"
1550
+
1551
+ [[package]]
1552
+ name = "pingora-header-serde"
1553
+ version = "0.7.0"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "640aa945c00ad51c7d06a434c41dbad560bf51dbf6f00e5d614102e7794aae67"
1556
+ dependencies = [
1557
+ "bytes",
1558
+ "http",
1559
+ "httparse",
1560
+ "pingora-error",
1561
+ "pingora-http",
1562
+ "thread_local",
1563
+ "zstd",
1564
+ "zstd-safe",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "pingora-http"
1569
+ version = "0.7.0"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "fbf2ce52fefeb2ed795a3d5fa4b556cfa33a7592691677e8837c6a58d0358215"
1572
+ dependencies = [
1573
+ "bytes",
1574
+ "http",
1575
+ "pingora-error",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "pingora-ketama"
1580
+ version = "0.7.0"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "5566ee2f3ca3ba478792d765d6b28aaf1ebae4a7f302c7eb814c83f4d793c1f1"
1583
+ dependencies = [
1584
+ "crc32fast",
1585
+ ]
1586
+
1587
+ [[package]]
1588
+ name = "pingora-load-balancing"
1589
+ version = "0.7.0"
1590
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1591
+ checksum = "3e7ff0d87ab5924c1af03fc1b766aef398e75cfe0273019f68b7c2978002ca97"
1592
+ dependencies = [
1593
+ "arc-swap",
1594
+ "async-trait",
1595
+ "derivative",
1596
+ "fnv",
1597
+ "futures",
1598
+ "http",
1599
+ "log",
1600
+ "pingora-core",
1601
+ "pingora-error",
1602
+ "pingora-http",
1603
+ "pingora-ketama",
1604
+ "pingora-runtime",
1605
+ "rand 0.8.5",
1606
+ "tokio",
1607
+ ]
1608
+
1609
+ [[package]]
1610
+ name = "pingora-lru"
1611
+ version = "0.7.0"
1612
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1613
+ checksum = "3aa964c4e12e6328388b7059c93aac37b052be7962bbb70dd239b515532be4bf"
1614
+ dependencies = [
1615
+ "arrayvec",
1616
+ "hashbrown 0.16.1",
1617
+ "parking_lot",
1618
+ "rand 0.8.5",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "pingora-openssl"
1623
+ version = "0.7.0"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "92713d25950fd4bf4fdca86dc3603884d13282242fdb436dac4f8389a7105556"
1626
+ dependencies = [
1627
+ "foreign-types",
1628
+ "libc",
1629
+ "openssl",
1630
+ "openssl-sys",
1631
+ "tokio-openssl",
1632
+ ]
1633
+
1634
+ [[package]]
1635
+ name = "pingora-pool"
1636
+ version = "0.7.0"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "a1a89f8d8d48caadb7f711227e0754bac6495dd2d4ee03137cc2c6d46c3b0a9d"
1639
+ dependencies = [
1640
+ "crossbeam-queue",
1641
+ "log",
1642
+ "lru",
1643
+ "parking_lot",
1644
+ "pingora-timeout",
1645
+ "thread_local",
1646
+ "tokio",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "pingora-proxy"
1651
+ version = "0.7.0"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "f0884d6158a828f53f4069861493a4225ed2a26c8d739a875350fa0c97109edf"
1654
+ dependencies = [
1655
+ "async-trait",
1656
+ "bytes",
1657
+ "clap",
1658
+ "futures",
1659
+ "h2",
1660
+ "http",
1661
+ "log",
1662
+ "once_cell",
1663
+ "pingora-cache",
1664
+ "pingora-core",
1665
+ "pingora-error",
1666
+ "pingora-http",
1667
+ "rand 0.8.5",
1668
+ "regex",
1669
+ "tokio",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "pingora-runtime"
1674
+ version = "0.7.0"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "c107d6eaf57c98285b91c487a1972bcb08405f39f9e73a5c28525620f7010956"
1677
+ dependencies = [
1678
+ "once_cell",
1679
+ "rand 0.8.5",
1680
+ "thread_local",
1681
+ "tokio",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "pingora-timeout"
1686
+ version = "0.7.0"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "64451dc4613770411814209b8c1659945682f0258305bae51c1e44cb9b887d30"
1689
+ dependencies = [
1690
+ "once_cell",
1691
+ "parking_lot",
1692
+ "pin-project-lite",
1693
+ "thread_local",
1694
+ "tokio",
1695
+ ]
1696
+
1697
+ [[package]]
1698
+ name = "pkg-config"
1699
+ version = "0.3.32"
1700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1701
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1702
+
1703
+ [[package]]
1704
+ name = "portable-atomic"
1705
+ version = "1.13.1"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1708
+
1709
+ [[package]]
1710
+ name = "potential_utf"
1711
+ version = "0.1.4"
1712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1713
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1714
+ dependencies = [
1715
+ "zerovec",
1716
+ ]
1717
+
1718
+ [[package]]
1719
+ name = "ppv-lite86"
1720
+ version = "0.2.21"
1721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1722
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1723
+ dependencies = [
1724
+ "zerocopy",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "prettyplease"
1729
+ version = "0.2.37"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1732
+ dependencies = [
1733
+ "proc-macro2",
1734
+ "syn 2.0.117",
1735
+ ]
1736
+
1737
+ [[package]]
1738
+ name = "proc-macro-error-attr2"
1739
+ version = "2.0.0"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
1742
+ dependencies = [
1743
+ "proc-macro2",
1744
+ "quote",
1745
+ ]
1746
+
1747
+ [[package]]
1748
+ name = "proc-macro-error2"
1749
+ version = "2.0.1"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
1752
+ dependencies = [
1753
+ "proc-macro-error-attr2",
1754
+ "proc-macro2",
1755
+ "quote",
1756
+ "syn 2.0.117",
1757
+ ]
1758
+
1759
+ [[package]]
1760
+ name = "proc-macro2"
1761
+ version = "1.0.106"
1762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1763
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1764
+ dependencies = [
1765
+ "unicode-ident",
1766
+ ]
1767
+
1768
+ [[package]]
1769
+ name = "prometheus"
1770
+ version = "0.13.4"
1771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1772
+ checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
1773
+ dependencies = [
1774
+ "cfg-if",
1775
+ "fnv",
1776
+ "lazy_static",
1777
+ "memchr",
1778
+ "parking_lot",
1779
+ "protobuf",
1780
+ "thiserror",
1781
+ ]
1782
+
1783
+ [[package]]
1784
+ name = "protobuf"
1785
+ version = "2.28.0"
1786
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1787
+ checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
1788
+
1789
+ [[package]]
1790
+ name = "quote"
1791
+ version = "1.0.44"
1792
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1793
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1794
+ dependencies = [
1795
+ "proc-macro2",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "r-efi"
1800
+ version = "5.3.0"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1803
+
1804
+ [[package]]
1805
+ name = "rand"
1806
+ version = "0.8.5"
1807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1808
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1809
+ dependencies = [
1810
+ "libc",
1811
+ "rand_chacha 0.3.1",
1812
+ "rand_core 0.6.4",
1813
+ ]
1814
+
1815
+ [[package]]
1816
+ name = "rand"
1817
+ version = "0.9.2"
1818
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1819
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1820
+ dependencies = [
1821
+ "rand_chacha 0.9.0",
1822
+ "rand_core 0.9.5",
1823
+ ]
1824
+
1825
+ [[package]]
1826
+ name = "rand_chacha"
1827
+ version = "0.3.1"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1830
+ dependencies = [
1831
+ "ppv-lite86",
1832
+ "rand_core 0.6.4",
1833
+ ]
1834
+
1835
+ [[package]]
1836
+ name = "rand_chacha"
1837
+ version = "0.9.0"
1838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1839
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1840
+ dependencies = [
1841
+ "ppv-lite86",
1842
+ "rand_core 0.9.5",
1843
+ ]
1844
+
1845
+ [[package]]
1846
+ name = "rand_core"
1847
+ version = "0.6.4"
1848
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1849
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1850
+ dependencies = [
1851
+ "getrandom 0.2.17",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "rand_core"
1856
+ version = "0.9.5"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1859
+ dependencies = [
1860
+ "getrandom 0.3.4",
1861
+ ]
1862
+
1863
+ [[package]]
1864
+ name = "redis"
1865
+ version = "1.0.4"
1866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1867
+ checksum = "dbe7f6e08ce1c6a9b21684e643926f6fc3b683bc006cb89afd72a5e0eb16e3a2"
1868
+ dependencies = [
1869
+ "arcstr",
1870
+ "bytes",
1871
+ "cfg-if",
1872
+ "combine",
1873
+ "futures-util",
1874
+ "itoa",
1875
+ "num-bigint",
1876
+ "percent-encoding",
1877
+ "pin-project-lite",
1878
+ "ryu",
1879
+ "sha1_smol",
1880
+ "socket2",
1881
+ "tokio",
1882
+ "tokio-util",
1883
+ "url",
1884
+ "xxhash-rust",
1885
+ ]
1886
+
1887
+ [[package]]
1888
+ name = "redox_syscall"
1889
+ version = "0.5.18"
1890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1891
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1892
+ dependencies = [
1893
+ "bitflags 2.11.0",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "regex"
1898
+ version = "1.12.3"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1901
+ dependencies = [
1902
+ "aho-corasick",
1903
+ "memchr",
1904
+ "regex-automata",
1905
+ "regex-syntax",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "regex-automata"
1910
+ version = "0.4.14"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1913
+ dependencies = [
1914
+ "aho-corasick",
1915
+ "memchr",
1916
+ "regex-syntax",
1917
+ ]
1918
+
1919
+ [[package]]
1920
+ name = "regex-syntax"
1921
+ version = "0.8.9"
1922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1923
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1924
+
1925
+ [[package]]
1926
+ name = "rmp"
1927
+ version = "0.8.15"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "4ba8be72d372b2c9b35542551678538b562e7cf86c3315773cae48dfbfe7790c"
1930
+ dependencies = [
1931
+ "num-traits",
1932
+ ]
1933
+
1934
+ [[package]]
1935
+ name = "rmp-serde"
1936
+ version = "1.3.1"
1937
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1938
+ checksum = "72f81bee8c8ef9b577d1681a70ebbc962c232461e397b22c208c43c04b67a155"
1939
+ dependencies = [
1940
+ "rmp",
1941
+ "serde",
1942
+ ]
1943
+
1944
+ [[package]]
1945
+ name = "rust_decimal"
1946
+ version = "1.40.0"
1947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1948
+ checksum = "61f703d19852dbf87cbc513643fa81428361eb6940f1ac14fd58155d295a3eb0"
1949
+ dependencies = [
1950
+ "arrayvec",
1951
+ "num-traits",
1952
+ ]
1953
+
1954
+ [[package]]
1955
+ name = "rustc-demangle"
1956
+ version = "0.1.27"
1957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1958
+ checksum = "b50b8869d9fc858ce7266cce0194bd74df58b9d0e3f6df3a9fc8eb470d95c09d"
1959
+
1960
+ [[package]]
1961
+ name = "rustversion"
1962
+ version = "1.0.22"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1965
+
1966
+ [[package]]
1967
+ name = "ryu"
1968
+ version = "1.0.23"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1971
+
1972
+ [[package]]
1973
+ name = "scopeguard"
1974
+ version = "1.2.0"
1975
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1976
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1977
+
1978
+ [[package]]
1979
+ name = "semver"
1980
+ version = "1.0.27"
1981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1982
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1983
+
1984
+ [[package]]
1985
+ name = "serde"
1986
+ version = "1.0.228"
1987
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1988
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1989
+ dependencies = [
1990
+ "serde_core",
1991
+ "serde_derive",
1992
+ ]
1993
+
1994
+ [[package]]
1995
+ name = "serde_core"
1996
+ version = "1.0.228"
1997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1998
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1999
+ dependencies = [
2000
+ "serde_derive",
2001
+ ]
2002
+
2003
+ [[package]]
2004
+ name = "serde_derive"
2005
+ version = "1.0.228"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2008
+ dependencies = [
2009
+ "proc-macro2",
2010
+ "quote",
2011
+ "syn 2.0.117",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "serde_json"
2016
+ version = "1.0.149"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2019
+ dependencies = [
2020
+ "itoa",
2021
+ "memchr",
2022
+ "serde",
2023
+ "serde_core",
2024
+ "zmij",
2025
+ ]
2026
+
2027
+ [[package]]
2028
+ name = "serde_yaml"
2029
+ version = "0.9.34+deprecated"
2030
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2031
+ checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
2032
+ dependencies = [
2033
+ "indexmap 2.13.0",
2034
+ "itoa",
2035
+ "ryu",
2036
+ "serde",
2037
+ "unsafe-libyaml",
2038
+ ]
2039
+
2040
+ [[package]]
2041
+ name = "sfv"
2042
+ version = "0.10.4"
2043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2044
+ checksum = "3fa1f336066b758b7c9df34ed049c0e693a426afe2b27ff7d5b14f410ab1a132"
2045
+ dependencies = [
2046
+ "base64",
2047
+ "indexmap 2.13.0",
2048
+ "rust_decimal",
2049
+ ]
2050
+
2051
+ [[package]]
2052
+ name = "sha1_smol"
2053
+ version = "1.0.1"
2054
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2055
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
2056
+
2057
+ [[package]]
2058
+ name = "sharded-slab"
2059
+ version = "0.1.7"
2060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2061
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2062
+ dependencies = [
2063
+ "lazy_static",
2064
+ ]
2065
+
2066
+ [[package]]
2067
+ name = "shlex"
2068
+ version = "1.3.0"
2069
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2070
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2071
+
2072
+ [[package]]
2073
+ name = "signal-hook-registry"
2074
+ version = "1.4.8"
2075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2076
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2077
+ dependencies = [
2078
+ "errno",
2079
+ "libc",
2080
+ ]
2081
+
2082
+ [[package]]
2083
+ name = "simd-adler32"
2084
+ version = "0.3.8"
2085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2086
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2087
+
2088
+ [[package]]
2089
+ name = "slab"
2090
+ version = "0.4.12"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2093
+
2094
+ [[package]]
2095
+ name = "smallvec"
2096
+ version = "1.15.1"
2097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2098
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2099
+
2100
+ [[package]]
2101
+ name = "socket2"
2102
+ version = "0.6.2"
2103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2104
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2105
+ dependencies = [
2106
+ "libc",
2107
+ "windows-sys 0.60.2",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "stable_deref_trait"
2112
+ version = "1.2.1"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2115
+
2116
+ [[package]]
2117
+ name = "strsim"
2118
+ version = "0.11.1"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2121
+
2122
+ [[package]]
2123
+ name = "strum"
2124
+ version = "0.26.3"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
2127
+ dependencies = [
2128
+ "strum_macros",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "strum_macros"
2133
+ version = "0.26.4"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
2136
+ dependencies = [
2137
+ "heck",
2138
+ "proc-macro2",
2139
+ "quote",
2140
+ "rustversion",
2141
+ "syn 2.0.117",
2142
+ ]
2143
+
2144
+ [[package]]
2145
+ name = "subtle"
2146
+ version = "2.6.1"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2149
+
2150
+ [[package]]
2151
+ name = "syn"
2152
+ version = "1.0.109"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2155
+ dependencies = [
2156
+ "proc-macro2",
2157
+ "quote",
2158
+ "unicode-ident",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "syn"
2163
+ version = "2.0.117"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2166
+ dependencies = [
2167
+ "proc-macro2",
2168
+ "quote",
2169
+ "unicode-ident",
2170
+ ]
2171
+
2172
+ [[package]]
2173
+ name = "synstructure"
2174
+ version = "0.13.2"
2175
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2176
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2177
+ dependencies = [
2178
+ "proc-macro2",
2179
+ "quote",
2180
+ "syn 2.0.117",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "tagptr"
2185
+ version = "0.2.0"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
2188
+
2189
+ [[package]]
2190
+ name = "thiserror"
2191
+ version = "1.0.69"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2194
+ dependencies = [
2195
+ "thiserror-impl",
2196
+ ]
2197
+
2198
+ [[package]]
2199
+ name = "thiserror-impl"
2200
+ version = "1.0.69"
2201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2202
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2203
+ dependencies = [
2204
+ "proc-macro2",
2205
+ "quote",
2206
+ "syn 2.0.117",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "thread_local"
2211
+ version = "1.1.9"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2214
+ dependencies = [
2215
+ "cfg-if",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "thrift_codec"
2220
+ version = "0.3.2"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "83d957f535b242b91aa9f47bde08080f9a6fef276477e55b0079979d002759d5"
2223
+ dependencies = [
2224
+ "byteorder",
2225
+ "trackable",
2226
+ ]
2227
+
2228
+ [[package]]
2229
+ name = "tinystr"
2230
+ version = "0.8.2"
2231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2232
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2233
+ dependencies = [
2234
+ "displaydoc",
2235
+ "zerovec",
2236
+ ]
2237
+
2238
+ [[package]]
2239
+ name = "tokio"
2240
+ version = "1.49.0"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2243
+ dependencies = [
2244
+ "bytes",
2245
+ "libc",
2246
+ "mio",
2247
+ "parking_lot",
2248
+ "pin-project-lite",
2249
+ "signal-hook-registry",
2250
+ "socket2",
2251
+ "tokio-macros",
2252
+ "windows-sys 0.61.2",
2253
+ ]
2254
+
2255
+ [[package]]
2256
+ name = "tokio-macros"
2257
+ version = "2.6.0"
2258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2259
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2260
+ dependencies = [
2261
+ "proc-macro2",
2262
+ "quote",
2263
+ "syn 2.0.117",
2264
+ ]
2265
+
2266
+ [[package]]
2267
+ name = "tokio-openssl"
2268
+ version = "0.6.5"
2269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2270
+ checksum = "59df6849caa43bb7567f9a36f863c447d95a11d5903c9cc334ba32576a27eadd"
2271
+ dependencies = [
2272
+ "openssl",
2273
+ "openssl-sys",
2274
+ "tokio",
2275
+ ]
2276
+
2277
+ [[package]]
2278
+ name = "tokio-stream"
2279
+ version = "0.1.18"
2280
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2281
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2282
+ dependencies = [
2283
+ "futures-core",
2284
+ "pin-project-lite",
2285
+ "tokio",
2286
+ ]
2287
+
2288
+ [[package]]
2289
+ name = "tokio-test"
2290
+ version = "0.4.5"
2291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2292
+ checksum = "3f6d24790a10a7af737693a3e8f1d03faef7e6ca0cc99aae5066f533766de545"
2293
+ dependencies = [
2294
+ "futures-core",
2295
+ "tokio",
2296
+ "tokio-stream",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "tokio-util"
2301
+ version = "0.7.18"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2304
+ dependencies = [
2305
+ "bytes",
2306
+ "futures-core",
2307
+ "futures-sink",
2308
+ "pin-project-lite",
2309
+ "tokio",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "tracing"
2314
+ version = "0.1.44"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2317
+ dependencies = [
2318
+ "pin-project-lite",
2319
+ "tracing-attributes",
2320
+ "tracing-core",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "tracing-attributes"
2325
+ version = "0.1.31"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2328
+ dependencies = [
2329
+ "proc-macro2",
2330
+ "quote",
2331
+ "syn 2.0.117",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "tracing-core"
2336
+ version = "0.1.36"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2339
+ dependencies = [
2340
+ "once_cell",
2341
+ "valuable",
2342
+ ]
2343
+
2344
+ [[package]]
2345
+ name = "tracing-log"
2346
+ version = "0.2.0"
2347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2348
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2349
+ dependencies = [
2350
+ "log",
2351
+ "once_cell",
2352
+ "tracing-core",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "tracing-subscriber"
2357
+ version = "0.3.22"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2360
+ dependencies = [
2361
+ "nu-ansi-term",
2362
+ "sharded-slab",
2363
+ "smallvec",
2364
+ "thread_local",
2365
+ "tracing-core",
2366
+ "tracing-log",
2367
+ ]
2368
+
2369
+ [[package]]
2370
+ name = "trackable"
2371
+ version = "1.3.0"
2372
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2373
+ checksum = "b15bd114abb99ef8cee977e517c8f37aee63f184f2d08e3e6ceca092373369ae"
2374
+ dependencies = [
2375
+ "trackable_derive",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "trackable_derive"
2380
+ version = "1.0.0"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "ebeb235c5847e2f82cfe0f07eb971d1e5f6804b18dac2ae16349cc604380f82f"
2383
+ dependencies = [
2384
+ "quote",
2385
+ "syn 1.0.109",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "typenum"
2390
+ version = "1.19.0"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2393
+
2394
+ [[package]]
2395
+ name = "unicase"
2396
+ version = "2.9.0"
2397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2398
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2399
+
2400
+ [[package]]
2401
+ name = "unicode-ident"
2402
+ version = "1.0.24"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2405
+
2406
+ [[package]]
2407
+ name = "unicode-xid"
2408
+ version = "0.2.6"
2409
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2410
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2411
+
2412
+ [[package]]
2413
+ name = "unsafe-libyaml"
2414
+ version = "0.2.11"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2417
+
2418
+ [[package]]
2419
+ name = "url"
2420
+ version = "2.5.8"
2421
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2422
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2423
+ dependencies = [
2424
+ "form_urlencoded",
2425
+ "idna",
2426
+ "percent-encoding",
2427
+ "serde",
2428
+ ]
2429
+
2430
+ [[package]]
2431
+ name = "utf8_iter"
2432
+ version = "1.0.4"
2433
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2434
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2435
+
2436
+ [[package]]
2437
+ name = "utf8parse"
2438
+ version = "0.2.2"
2439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2440
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2441
+
2442
+ [[package]]
2443
+ name = "uuid"
2444
+ version = "1.21.0"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "b672338555252d43fd2240c714dc444b8c6fb0a5c5335e65a07bba7742735ddb"
2447
+ dependencies = [
2448
+ "getrandom 0.4.1",
2449
+ "js-sys",
2450
+ "wasm-bindgen",
2451
+ ]
2452
+
2453
+ [[package]]
2454
+ name = "valuable"
2455
+ version = "0.1.1"
2456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2457
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2458
+
2459
+ [[package]]
2460
+ name = "vcpkg"
2461
+ version = "0.2.15"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2464
+
2465
+ [[package]]
2466
+ name = "version_check"
2467
+ version = "0.9.5"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2470
+
2471
+ [[package]]
2472
+ name = "wasi"
2473
+ version = "0.11.1+wasi-snapshot-preview1"
2474
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2475
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2476
+
2477
+ [[package]]
2478
+ name = "wasip2"
2479
+ version = "1.0.2+wasi-0.2.9"
2480
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2481
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2482
+ dependencies = [
2483
+ "wit-bindgen",
2484
+ ]
2485
+
2486
+ [[package]]
2487
+ name = "wasip3"
2488
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2490
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2491
+ dependencies = [
2492
+ "wit-bindgen",
2493
+ ]
2494
+
2495
+ [[package]]
2496
+ name = "wasm-bindgen"
2497
+ version = "0.2.110"
2498
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2499
+ checksum = "1de241cdc66a9d91bd84f097039eb140cdc6eec47e0cdbaf9d932a1dd6c35866"
2500
+ dependencies = [
2501
+ "cfg-if",
2502
+ "once_cell",
2503
+ "rustversion",
2504
+ "wasm-bindgen-macro",
2505
+ "wasm-bindgen-shared",
2506
+ ]
2507
+
2508
+ [[package]]
2509
+ name = "wasm-bindgen-macro"
2510
+ version = "0.2.110"
2511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+ checksum = "e12fdf6649048f2e3de6d7d5ff3ced779cdedee0e0baffd7dff5cdfa3abc8a52"
2513
+ dependencies = [
2514
+ "quote",
2515
+ "wasm-bindgen-macro-support",
2516
+ ]
2517
+
2518
+ [[package]]
2519
+ name = "wasm-bindgen-macro-support"
2520
+ version = "0.2.110"
2521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2522
+ checksum = "0e63d1795c565ac3462334c1e396fd46dbf481c40f51f5072c310717bc4fb309"
2523
+ dependencies = [
2524
+ "bumpalo",
2525
+ "proc-macro2",
2526
+ "quote",
2527
+ "syn 2.0.117",
2528
+ "wasm-bindgen-shared",
2529
+ ]
2530
+
2531
+ [[package]]
2532
+ name = "wasm-bindgen-shared"
2533
+ version = "0.2.110"
2534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2535
+ checksum = "e9f9cdac23a5ce71f6bf9f8824898a501e511892791ea2a0c6b8568c68b9cb53"
2536
+ dependencies = [
2537
+ "unicode-ident",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "wasm-encoder"
2542
+ version = "0.244.0"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2545
+ dependencies = [
2546
+ "leb128fmt",
2547
+ "wasmparser",
2548
+ ]
2549
+
2550
+ [[package]]
2551
+ name = "wasm-metadata"
2552
+ version = "0.244.0"
2553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2554
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2555
+ dependencies = [
2556
+ "anyhow",
2557
+ "indexmap 2.13.0",
2558
+ "wasm-encoder",
2559
+ "wasmparser",
2560
+ ]
2561
+
2562
+ [[package]]
2563
+ name = "wasmparser"
2564
+ version = "0.244.0"
2565
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2566
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2567
+ dependencies = [
2568
+ "bitflags 2.11.0",
2569
+ "hashbrown 0.15.5",
2570
+ "indexmap 2.13.0",
2571
+ "semver",
2572
+ ]
2573
+
2574
+ [[package]]
2575
+ name = "windows-link"
2576
+ version = "0.2.1"
2577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2578
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2579
+
2580
+ [[package]]
2581
+ name = "windows-sys"
2582
+ version = "0.59.0"
2583
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2584
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2585
+ dependencies = [
2586
+ "windows-targets 0.52.6",
2587
+ ]
2588
+
2589
+ [[package]]
2590
+ name = "windows-sys"
2591
+ version = "0.60.2"
2592
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2593
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2594
+ dependencies = [
2595
+ "windows-targets 0.53.5",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "windows-sys"
2600
+ version = "0.61.2"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2603
+ dependencies = [
2604
+ "windows-link",
2605
+ ]
2606
+
2607
+ [[package]]
2608
+ name = "windows-targets"
2609
+ version = "0.52.6"
2610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2611
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2612
+ dependencies = [
2613
+ "windows_aarch64_gnullvm 0.52.6",
2614
+ "windows_aarch64_msvc 0.52.6",
2615
+ "windows_i686_gnu 0.52.6",
2616
+ "windows_i686_gnullvm 0.52.6",
2617
+ "windows_i686_msvc 0.52.6",
2618
+ "windows_x86_64_gnu 0.52.6",
2619
+ "windows_x86_64_gnullvm 0.52.6",
2620
+ "windows_x86_64_msvc 0.52.6",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "windows-targets"
2625
+ version = "0.53.5"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2628
+ dependencies = [
2629
+ "windows-link",
2630
+ "windows_aarch64_gnullvm 0.53.1",
2631
+ "windows_aarch64_msvc 0.53.1",
2632
+ "windows_i686_gnu 0.53.1",
2633
+ "windows_i686_gnullvm 0.53.1",
2634
+ "windows_i686_msvc 0.53.1",
2635
+ "windows_x86_64_gnu 0.53.1",
2636
+ "windows_x86_64_gnullvm 0.53.1",
2637
+ "windows_x86_64_msvc 0.53.1",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "windows_aarch64_gnullvm"
2642
+ version = "0.52.6"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2645
+
2646
+ [[package]]
2647
+ name = "windows_aarch64_gnullvm"
2648
+ version = "0.53.1"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2651
+
2652
+ [[package]]
2653
+ name = "windows_aarch64_msvc"
2654
+ version = "0.52.6"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2657
+
2658
+ [[package]]
2659
+ name = "windows_aarch64_msvc"
2660
+ version = "0.53.1"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2663
+
2664
+ [[package]]
2665
+ name = "windows_i686_gnu"
2666
+ version = "0.52.6"
2667
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2668
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2669
+
2670
+ [[package]]
2671
+ name = "windows_i686_gnu"
2672
+ version = "0.53.1"
2673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2674
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2675
+
2676
+ [[package]]
2677
+ name = "windows_i686_gnullvm"
2678
+ version = "0.52.6"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2681
+
2682
+ [[package]]
2683
+ name = "windows_i686_gnullvm"
2684
+ version = "0.53.1"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2687
+
2688
+ [[package]]
2689
+ name = "windows_i686_msvc"
2690
+ version = "0.52.6"
2691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2692
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2693
+
2694
+ [[package]]
2695
+ name = "windows_i686_msvc"
2696
+ version = "0.53.1"
2697
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2698
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2699
+
2700
+ [[package]]
2701
+ name = "windows_x86_64_gnu"
2702
+ version = "0.52.6"
2703
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2704
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2705
+
2706
+ [[package]]
2707
+ name = "windows_x86_64_gnu"
2708
+ version = "0.53.1"
2709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2710
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2711
+
2712
+ [[package]]
2713
+ name = "windows_x86_64_gnullvm"
2714
+ version = "0.52.6"
2715
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2716
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2717
+
2718
+ [[package]]
2719
+ name = "windows_x86_64_gnullvm"
2720
+ version = "0.53.1"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2723
+
2724
+ [[package]]
2725
+ name = "windows_x86_64_msvc"
2726
+ version = "0.52.6"
2727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2728
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2729
+
2730
+ [[package]]
2731
+ name = "windows_x86_64_msvc"
2732
+ version = "0.53.1"
2733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2734
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2735
+
2736
+ [[package]]
2737
+ name = "wit-bindgen"
2738
+ version = "0.51.0"
2739
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2740
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2741
+ dependencies = [
2742
+ "wit-bindgen-rust-macro",
2743
+ ]
2744
+
2745
+ [[package]]
2746
+ name = "wit-bindgen-core"
2747
+ version = "0.51.0"
2748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2749
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2750
+ dependencies = [
2751
+ "anyhow",
2752
+ "heck",
2753
+ "wit-parser",
2754
+ ]
2755
+
2756
+ [[package]]
2757
+ name = "wit-bindgen-rust"
2758
+ version = "0.51.0"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2761
+ dependencies = [
2762
+ "anyhow",
2763
+ "heck",
2764
+ "indexmap 2.13.0",
2765
+ "prettyplease",
2766
+ "syn 2.0.117",
2767
+ "wasm-metadata",
2768
+ "wit-bindgen-core",
2769
+ "wit-component",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "wit-bindgen-rust-macro"
2774
+ version = "0.51.0"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
2777
+ dependencies = [
2778
+ "anyhow",
2779
+ "prettyplease",
2780
+ "proc-macro2",
2781
+ "quote",
2782
+ "syn 2.0.117",
2783
+ "wit-bindgen-core",
2784
+ "wit-bindgen-rust",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "wit-component"
2789
+ version = "0.244.0"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
2792
+ dependencies = [
2793
+ "anyhow",
2794
+ "bitflags 2.11.0",
2795
+ "indexmap 2.13.0",
2796
+ "log",
2797
+ "serde",
2798
+ "serde_derive",
2799
+ "serde_json",
2800
+ "wasm-encoder",
2801
+ "wasm-metadata",
2802
+ "wasmparser",
2803
+ "wit-parser",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "wit-parser"
2808
+ version = "0.244.0"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
2811
+ dependencies = [
2812
+ "anyhow",
2813
+ "id-arena",
2814
+ "indexmap 2.13.0",
2815
+ "log",
2816
+ "semver",
2817
+ "serde",
2818
+ "serde_derive",
2819
+ "serde_json",
2820
+ "unicode-xid",
2821
+ "wasmparser",
2822
+ ]
2823
+
2824
+ [[package]]
2825
+ name = "writeable"
2826
+ version = "0.6.2"
2827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2828
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2829
+
2830
+ [[package]]
2831
+ name = "xxhash-rust"
2832
+ version = "0.8.15"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3"
2835
+
2836
+ [[package]]
2837
+ name = "yoke"
2838
+ version = "0.8.1"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2841
+ dependencies = [
2842
+ "stable_deref_trait",
2843
+ "yoke-derive",
2844
+ "zerofrom",
2845
+ ]
2846
+
2847
+ [[package]]
2848
+ name = "yoke-derive"
2849
+ version = "0.8.1"
2850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2851
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2852
+ dependencies = [
2853
+ "proc-macro2",
2854
+ "quote",
2855
+ "syn 2.0.117",
2856
+ "synstructure",
2857
+ ]
2858
+
2859
+ [[package]]
2860
+ name = "zerocopy"
2861
+ version = "0.8.39"
2862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2863
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
2864
+ dependencies = [
2865
+ "zerocopy-derive",
2866
+ ]
2867
+
2868
+ [[package]]
2869
+ name = "zerocopy-derive"
2870
+ version = "0.8.39"
2871
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2872
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
2873
+ dependencies = [
2874
+ "proc-macro2",
2875
+ "quote",
2876
+ "syn 2.0.117",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "zerofrom"
2881
+ version = "0.1.6"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2884
+ dependencies = [
2885
+ "zerofrom-derive",
2886
+ ]
2887
+
2888
+ [[package]]
2889
+ name = "zerofrom-derive"
2890
+ version = "0.1.6"
2891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2892
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2893
+ dependencies = [
2894
+ "proc-macro2",
2895
+ "quote",
2896
+ "syn 2.0.117",
2897
+ "synstructure",
2898
+ ]
2899
+
2900
+ [[package]]
2901
+ name = "zerotrie"
2902
+ version = "0.2.3"
2903
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2904
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2905
+ dependencies = [
2906
+ "displaydoc",
2907
+ "yoke",
2908
+ "zerofrom",
2909
+ ]
2910
+
2911
+ [[package]]
2912
+ name = "zerovec"
2913
+ version = "0.11.5"
2914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2915
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2916
+ dependencies = [
2917
+ "yoke",
2918
+ "zerofrom",
2919
+ "zerovec-derive",
2920
+ ]
2921
+
2922
+ [[package]]
2923
+ name = "zerovec-derive"
2924
+ version = "0.11.2"
2925
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2926
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2927
+ dependencies = [
2928
+ "proc-macro2",
2929
+ "quote",
2930
+ "syn 2.0.117",
2931
+ ]
2932
+
2933
+ [[package]]
2934
+ name = "zmij"
2935
+ version = "1.0.21"
2936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2937
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
2938
+
2939
+ [[package]]
2940
+ name = "zstd"
2941
+ version = "0.13.3"
2942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2943
+ checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
2944
+ dependencies = [
2945
+ "zstd-safe",
2946
+ ]
2947
+
2948
+ [[package]]
2949
+ name = "zstd-safe"
2950
+ version = "7.2.4"
2951
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2952
+ checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
2953
+ dependencies = [
2954
+ "zstd-sys",
2955
+ ]
2956
+
2957
+ [[package]]
2958
+ name = "zstd-sys"
2959
+ version = "2.0.16+zstd.1.5.7"
2960
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2961
+ checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
2962
+ dependencies = [
2963
+ "cc",
2964
+ "pkg-config",
2965
+ ]