liter_llm 1.0.0.pre.rc.6

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 (78) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +239 -0
  3. data/ext/liter_llm_rb/extconf.rb +65 -0
  4. data/ext/liter_llm_rb/native/.cargo/config.toml +23 -0
  5. data/ext/liter_llm_rb/native/Cargo.lock +3713 -0
  6. data/ext/liter_llm_rb/native/Cargo.toml +32 -0
  7. data/ext/liter_llm_rb/native/build.rs +15 -0
  8. data/ext/liter_llm_rb/native/src/lib.rs +1079 -0
  9. data/lib/liter_llm.rb +8 -0
  10. data/sig/liter_llm.rbs +416 -0
  11. data/vendor/Cargo.toml +54 -0
  12. data/vendor/liter-llm/Cargo.toml +92 -0
  13. data/vendor/liter-llm/README.md +252 -0
  14. data/vendor/liter-llm/schemas/pricing.json +40 -0
  15. data/vendor/liter-llm/schemas/providers.json +1662 -0
  16. data/vendor/liter-llm/src/auth/azure_ad.rs +264 -0
  17. data/vendor/liter-llm/src/auth/bedrock_sts.rs +353 -0
  18. data/vendor/liter-llm/src/auth/mod.rs +68 -0
  19. data/vendor/liter-llm/src/auth/vertex_oauth.rs +353 -0
  20. data/vendor/liter-llm/src/client/config.rs +351 -0
  21. data/vendor/liter-llm/src/client/managed.rs +622 -0
  22. data/vendor/liter-llm/src/client/mod.rs +864 -0
  23. data/vendor/liter-llm/src/cost.rs +212 -0
  24. data/vendor/liter-llm/src/error.rs +190 -0
  25. data/vendor/liter-llm/src/http/eventstream.rs +860 -0
  26. data/vendor/liter-llm/src/http/mod.rs +12 -0
  27. data/vendor/liter-llm/src/http/request.rs +438 -0
  28. data/vendor/liter-llm/src/http/retry.rs +72 -0
  29. data/vendor/liter-llm/src/http/streaming.rs +289 -0
  30. data/vendor/liter-llm/src/lib.rs +37 -0
  31. data/vendor/liter-llm/src/provider/anthropic.rs +2250 -0
  32. data/vendor/liter-llm/src/provider/azure.rs +579 -0
  33. data/vendor/liter-llm/src/provider/bedrock.rs +1543 -0
  34. data/vendor/liter-llm/src/provider/cohere.rs +654 -0
  35. data/vendor/liter-llm/src/provider/custom.rs +404 -0
  36. data/vendor/liter-llm/src/provider/google_ai.rs +281 -0
  37. data/vendor/liter-llm/src/provider/mistral.rs +188 -0
  38. data/vendor/liter-llm/src/provider/mod.rs +616 -0
  39. data/vendor/liter-llm/src/provider/vertex.rs +1504 -0
  40. data/vendor/liter-llm/src/tests.rs +1425 -0
  41. data/vendor/liter-llm/src/tokenizer.rs +281 -0
  42. data/vendor/liter-llm/src/tower/budget.rs +599 -0
  43. data/vendor/liter-llm/src/tower/cache.rs +502 -0
  44. data/vendor/liter-llm/src/tower/cache_opendal.rs +270 -0
  45. data/vendor/liter-llm/src/tower/cooldown.rs +231 -0
  46. data/vendor/liter-llm/src/tower/cost.rs +404 -0
  47. data/vendor/liter-llm/src/tower/fallback.rs +121 -0
  48. data/vendor/liter-llm/src/tower/health.rs +219 -0
  49. data/vendor/liter-llm/src/tower/hooks.rs +369 -0
  50. data/vendor/liter-llm/src/tower/mod.rs +77 -0
  51. data/vendor/liter-llm/src/tower/rate_limit.rs +300 -0
  52. data/vendor/liter-llm/src/tower/router.rs +436 -0
  53. data/vendor/liter-llm/src/tower/service.rs +181 -0
  54. data/vendor/liter-llm/src/tower/tests.rs +539 -0
  55. data/vendor/liter-llm/src/tower/tests_common.rs +252 -0
  56. data/vendor/liter-llm/src/tower/tracing.rs +209 -0
  57. data/vendor/liter-llm/src/tower/types.rs +170 -0
  58. data/vendor/liter-llm/src/types/audio.rs +52 -0
  59. data/vendor/liter-llm/src/types/batch.rs +77 -0
  60. data/vendor/liter-llm/src/types/chat.rs +214 -0
  61. data/vendor/liter-llm/src/types/common.rs +244 -0
  62. data/vendor/liter-llm/src/types/embedding.rs +84 -0
  63. data/vendor/liter-llm/src/types/files.rs +58 -0
  64. data/vendor/liter-llm/src/types/image.rs +40 -0
  65. data/vendor/liter-llm/src/types/mod.rs +27 -0
  66. data/vendor/liter-llm/src/types/models.rs +21 -0
  67. data/vendor/liter-llm/src/types/moderation.rs +80 -0
  68. data/vendor/liter-llm/src/types/ocr.rs +87 -0
  69. data/vendor/liter-llm/src/types/rerank.rs +46 -0
  70. data/vendor/liter-llm/src/types/responses.rs +55 -0
  71. data/vendor/liter-llm/src/types/search.rs +45 -0
  72. data/vendor/liter-llm/tests/contract.rs +332 -0
  73. data/vendor/liter-llm-ffi/Cargo.toml +30 -0
  74. data/vendor/liter-llm-ffi/build.rs +66 -0
  75. data/vendor/liter-llm-ffi/cbindgen.toml +60 -0
  76. data/vendor/liter-llm-ffi/liter_llm.h +850 -0
  77. data/vendor/liter-llm-ffi/src/lib.rs +2488 -0
  78. metadata +286 -0
@@ -0,0 +1,3713 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "ahash"
13
+ version = "0.8.12"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
16
+ dependencies = [
17
+ "cfg-if",
18
+ "getrandom 0.3.4",
19
+ "once_cell",
20
+ "serde",
21
+ "version_check",
22
+ "zerocopy",
23
+ ]
24
+
25
+ [[package]]
26
+ name = "aho-corasick"
27
+ version = "1.1.4"
28
+ source = "registry+https://github.com/rust-lang/crates.io-index"
29
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
30
+ dependencies = [
31
+ "memchr",
32
+ ]
33
+
34
+ [[package]]
35
+ name = "android_system_properties"
36
+ version = "0.1.5"
37
+ source = "registry+https://github.com/rust-lang/crates.io-index"
38
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
39
+ dependencies = [
40
+ "libc",
41
+ ]
42
+
43
+ [[package]]
44
+ name = "anyhow"
45
+ version = "1.0.102"
46
+ source = "registry+https://github.com/rust-lang/crates.io-index"
47
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
48
+
49
+ [[package]]
50
+ name = "async-trait"
51
+ version = "0.1.89"
52
+ source = "registry+https://github.com/rust-lang/crates.io-index"
53
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
54
+ dependencies = [
55
+ "proc-macro2",
56
+ "quote",
57
+ "syn",
58
+ ]
59
+
60
+ [[package]]
61
+ name = "atomic-waker"
62
+ version = "1.1.2"
63
+ source = "registry+https://github.com/rust-lang/crates.io-index"
64
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
65
+
66
+ [[package]]
67
+ name = "autocfg"
68
+ version = "1.5.0"
69
+ source = "registry+https://github.com/rust-lang/crates.io-index"
70
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
71
+
72
+ [[package]]
73
+ name = "aws-credential-types"
74
+ version = "1.2.14"
75
+ source = "registry+https://github.com/rust-lang/crates.io-index"
76
+ checksum = "8f20799b373a1be121fe3005fba0c2090af9411573878f224df44b42727fcaf7"
77
+ dependencies = [
78
+ "aws-smithy-async",
79
+ "aws-smithy-runtime-api",
80
+ "aws-smithy-types",
81
+ "zeroize",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "aws-lc-rs"
86
+ version = "1.16.2"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "a054912289d18629dc78375ba2c3726a3afe3ff71b4edba9dedfca0e3446d1fc"
89
+ dependencies = [
90
+ "aws-lc-sys",
91
+ "zeroize",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "aws-lc-sys"
96
+ version = "0.39.0"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "1fa7e52a4c5c547c741610a2c6f123f3881e409b714cd27e6798ef020c514f0a"
99
+ dependencies = [
100
+ "cc",
101
+ "cmake",
102
+ "dunce",
103
+ "fs_extra",
104
+ ]
105
+
106
+ [[package]]
107
+ name = "aws-sigv4"
108
+ version = "1.4.2"
109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
110
+ checksum = "b0b660013a6683ab23797778e21f1f854744fdf05f68204b4cca4c8c04b5d1f4"
111
+ dependencies = [
112
+ "aws-credential-types",
113
+ "aws-smithy-http",
114
+ "aws-smithy-runtime-api",
115
+ "aws-smithy-types",
116
+ "bytes",
117
+ "form_urlencoded",
118
+ "hex",
119
+ "hmac",
120
+ "http 0.2.12",
121
+ "http 1.4.0",
122
+ "percent-encoding",
123
+ "sha2",
124
+ "time",
125
+ "tracing",
126
+ ]
127
+
128
+ [[package]]
129
+ name = "aws-smithy-async"
130
+ version = "1.2.14"
131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
132
+ checksum = "2ffcaf626bdda484571968400c326a244598634dc75fd451325a54ad1a59acfc"
133
+ dependencies = [
134
+ "futures-util",
135
+ "pin-project-lite",
136
+ "tokio",
137
+ ]
138
+
139
+ [[package]]
140
+ name = "aws-smithy-http"
141
+ version = "0.63.6"
142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
143
+ checksum = "ba1ab2dc1c2c3749ead27180d333c42f11be8b0e934058fb4b2258ee8dbe5231"
144
+ dependencies = [
145
+ "aws-smithy-runtime-api",
146
+ "aws-smithy-types",
147
+ "bytes",
148
+ "bytes-utils",
149
+ "futures-core",
150
+ "futures-util",
151
+ "http 1.4.0",
152
+ "http-body 1.0.1",
153
+ "http-body-util",
154
+ "percent-encoding",
155
+ "pin-project-lite",
156
+ "pin-utils",
157
+ "tracing",
158
+ ]
159
+
160
+ [[package]]
161
+ name = "aws-smithy-runtime-api"
162
+ version = "1.11.6"
163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
164
+ checksum = "876ab3c9c29791ba4ba02b780a3049e21ec63dabda09268b175272c3733a79e6"
165
+ dependencies = [
166
+ "aws-smithy-async",
167
+ "aws-smithy-types",
168
+ "bytes",
169
+ "http 0.2.12",
170
+ "http 1.4.0",
171
+ "pin-project-lite",
172
+ "tokio",
173
+ "tracing",
174
+ "zeroize",
175
+ ]
176
+
177
+ [[package]]
178
+ name = "aws-smithy-types"
179
+ version = "1.4.7"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "9d73dbfbaa8e4bc57b9045137680b958d274823509a360abfd8e1d514d40c95c"
182
+ dependencies = [
183
+ "base64-simd",
184
+ "bytes",
185
+ "bytes-utils",
186
+ "http 0.2.12",
187
+ "http 1.4.0",
188
+ "http-body 0.4.6",
189
+ "http-body 1.0.1",
190
+ "http-body-util",
191
+ "itoa",
192
+ "num-integer",
193
+ "pin-project-lite",
194
+ "pin-utils",
195
+ "ryu",
196
+ "serde",
197
+ "time",
198
+ ]
199
+
200
+ [[package]]
201
+ name = "backon"
202
+ version = "1.6.0"
203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
204
+ checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
205
+ dependencies = [
206
+ "fastrand",
207
+ "gloo-timers",
208
+ "tokio",
209
+ ]
210
+
211
+ [[package]]
212
+ name = "base64"
213
+ version = "0.13.1"
214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
215
+ checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
216
+
217
+ [[package]]
218
+ name = "base64"
219
+ version = "0.22.1"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
222
+
223
+ [[package]]
224
+ name = "base64-simd"
225
+ version = "0.8.0"
226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
227
+ checksum = "339abbe78e73178762e23bea9dfd08e697eb3f3301cd4be981c0f78ba5859195"
228
+ dependencies = [
229
+ "outref",
230
+ "vsimd",
231
+ ]
232
+
233
+ [[package]]
234
+ name = "bindgen"
235
+ version = "0.69.5"
236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
237
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
238
+ dependencies = [
239
+ "bitflags",
240
+ "cexpr",
241
+ "clang-sys",
242
+ "itertools 0.12.1",
243
+ "lazy_static",
244
+ "lazycell",
245
+ "proc-macro2",
246
+ "quote",
247
+ "regex",
248
+ "rustc-hash 1.1.0",
249
+ "shlex",
250
+ "syn",
251
+ ]
252
+
253
+ [[package]]
254
+ name = "bit-set"
255
+ version = "0.8.0"
256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
257
+ checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
258
+ dependencies = [
259
+ "bit-vec",
260
+ ]
261
+
262
+ [[package]]
263
+ name = "bit-vec"
264
+ version = "0.8.0"
265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
266
+ checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
267
+
268
+ [[package]]
269
+ name = "bitflags"
270
+ version = "2.11.0"
271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
272
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
273
+
274
+ [[package]]
275
+ name = "block-buffer"
276
+ version = "0.10.4"
277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
278
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
279
+ dependencies = [
280
+ "generic-array",
281
+ ]
282
+
283
+ [[package]]
284
+ name = "bumpalo"
285
+ version = "3.20.2"
286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
287
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
288
+
289
+ [[package]]
290
+ name = "byteorder"
291
+ version = "1.5.0"
292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
293
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
294
+
295
+ [[package]]
296
+ name = "bytes"
297
+ version = "1.11.1"
298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
299
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
300
+
301
+ [[package]]
302
+ name = "bytes-utils"
303
+ version = "0.1.4"
304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
305
+ checksum = "7dafe3a8757b027e2be6e4e5601ed563c55989fcf1546e933c66c8eb3a058d35"
306
+ dependencies = [
307
+ "bytes",
308
+ "either",
309
+ ]
310
+
311
+ [[package]]
312
+ name = "castaway"
313
+ version = "0.2.4"
314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
315
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
316
+ dependencies = [
317
+ "rustversion",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "cc"
322
+ version = "1.2.57"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
325
+ dependencies = [
326
+ "find-msvc-tools",
327
+ "jobserver",
328
+ "libc",
329
+ "shlex",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "cesu8"
334
+ version = "1.1.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
337
+
338
+ [[package]]
339
+ name = "cexpr"
340
+ version = "0.6.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
343
+ dependencies = [
344
+ "nom",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "cfg-if"
349
+ version = "1.0.4"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
352
+
353
+ [[package]]
354
+ name = "cfg_aliases"
355
+ version = "0.2.1"
356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
357
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
358
+
359
+ [[package]]
360
+ name = "chrono"
361
+ version = "0.4.44"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
364
+ dependencies = [
365
+ "iana-time-zone",
366
+ "num-traits",
367
+ "windows-link",
368
+ ]
369
+
370
+ [[package]]
371
+ name = "clang-sys"
372
+ version = "1.8.1"
373
+ source = "registry+https://github.com/rust-lang/crates.io-index"
374
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
375
+ dependencies = [
376
+ "glob",
377
+ "libc",
378
+ "libloading",
379
+ ]
380
+
381
+ [[package]]
382
+ name = "cmake"
383
+ version = "0.1.57"
384
+ source = "registry+https://github.com/rust-lang/crates.io-index"
385
+ checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
386
+ dependencies = [
387
+ "cc",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "combine"
392
+ version = "4.6.7"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
395
+ dependencies = [
396
+ "bytes",
397
+ "memchr",
398
+ ]
399
+
400
+ [[package]]
401
+ name = "compact_str"
402
+ version = "0.9.0"
403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
404
+ checksum = "3fdb1325a1cece981e8a296ab8f0f9b63ae357bd0784a9faaf548cc7b480707a"
405
+ dependencies = [
406
+ "castaway",
407
+ "cfg-if",
408
+ "itoa",
409
+ "rustversion",
410
+ "ryu",
411
+ "serde",
412
+ "static_assertions",
413
+ ]
414
+
415
+ [[package]]
416
+ name = "console"
417
+ version = "0.15.11"
418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
419
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
420
+ dependencies = [
421
+ "encode_unicode",
422
+ "libc",
423
+ "once_cell",
424
+ "unicode-width",
425
+ "windows-sys 0.59.0",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "core-foundation"
430
+ version = "0.10.1"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
433
+ dependencies = [
434
+ "core-foundation-sys",
435
+ "libc",
436
+ ]
437
+
438
+ [[package]]
439
+ name = "core-foundation-sys"
440
+ version = "0.8.7"
441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
442
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
443
+
444
+ [[package]]
445
+ name = "cpufeatures"
446
+ version = "0.2.17"
447
+ source = "registry+https://github.com/rust-lang/crates.io-index"
448
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
449
+ dependencies = [
450
+ "libc",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "crc32fast"
455
+ version = "1.5.0"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
458
+ dependencies = [
459
+ "cfg-if",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "crossbeam-deque"
464
+ version = "0.8.6"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
467
+ dependencies = [
468
+ "crossbeam-epoch",
469
+ "crossbeam-utils",
470
+ ]
471
+
472
+ [[package]]
473
+ name = "crossbeam-epoch"
474
+ version = "0.9.18"
475
+ source = "registry+https://github.com/rust-lang/crates.io-index"
476
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
477
+ dependencies = [
478
+ "crossbeam-utils",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "crossbeam-utils"
483
+ version = "0.8.21"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
486
+
487
+ [[package]]
488
+ name = "crypto-common"
489
+ version = "0.1.7"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
492
+ dependencies = [
493
+ "generic-array",
494
+ "typenum",
495
+ ]
496
+
497
+ [[package]]
498
+ name = "darling"
499
+ version = "0.20.11"
500
+ source = "registry+https://github.com/rust-lang/crates.io-index"
501
+ checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
502
+ dependencies = [
503
+ "darling_core",
504
+ "darling_macro",
505
+ ]
506
+
507
+ [[package]]
508
+ name = "darling_core"
509
+ version = "0.20.11"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
512
+ dependencies = [
513
+ "fnv",
514
+ "ident_case",
515
+ "proc-macro2",
516
+ "quote",
517
+ "strsim",
518
+ "syn",
519
+ ]
520
+
521
+ [[package]]
522
+ name = "darling_macro"
523
+ version = "0.20.11"
524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
525
+ checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
526
+ dependencies = [
527
+ "darling_core",
528
+ "quote",
529
+ "syn",
530
+ ]
531
+
532
+ [[package]]
533
+ name = "dary_heap"
534
+ version = "0.3.8"
535
+ source = "registry+https://github.com/rust-lang/crates.io-index"
536
+ checksum = "06d2e3287df1c007e74221c49ca10a95d557349e54b3a75dc2fb14712c751f04"
537
+ dependencies = [
538
+ "serde",
539
+ ]
540
+
541
+ [[package]]
542
+ name = "dashmap"
543
+ version = "6.1.0"
544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
545
+ checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
546
+ dependencies = [
547
+ "cfg-if",
548
+ "crossbeam-utils",
549
+ "hashbrown 0.14.5",
550
+ "lock_api",
551
+ "once_cell",
552
+ "parking_lot_core",
553
+ ]
554
+
555
+ [[package]]
556
+ name = "deranged"
557
+ version = "0.5.8"
558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
559
+ checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
560
+ dependencies = [
561
+ "powerfmt",
562
+ ]
563
+
564
+ [[package]]
565
+ name = "derive_builder"
566
+ version = "0.20.2"
567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
568
+ checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
569
+ dependencies = [
570
+ "derive_builder_macro",
571
+ ]
572
+
573
+ [[package]]
574
+ name = "derive_builder_core"
575
+ version = "0.20.2"
576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
577
+ checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
578
+ dependencies = [
579
+ "darling",
580
+ "proc-macro2",
581
+ "quote",
582
+ "syn",
583
+ ]
584
+
585
+ [[package]]
586
+ name = "derive_builder_macro"
587
+ version = "0.20.2"
588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
589
+ checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
590
+ dependencies = [
591
+ "derive_builder_core",
592
+ "syn",
593
+ ]
594
+
595
+ [[package]]
596
+ name = "diff"
597
+ version = "0.1.13"
598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
599
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
600
+
601
+ [[package]]
602
+ name = "digest"
603
+ version = "0.10.7"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
606
+ dependencies = [
607
+ "block-buffer",
608
+ "crypto-common",
609
+ "subtle",
610
+ ]
611
+
612
+ [[package]]
613
+ name = "dirs"
614
+ version = "6.0.0"
615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
616
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
617
+ dependencies = [
618
+ "dirs-sys",
619
+ ]
620
+
621
+ [[package]]
622
+ name = "dirs-sys"
623
+ version = "0.5.0"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
626
+ dependencies = [
627
+ "libc",
628
+ "option-ext",
629
+ "redox_users",
630
+ "windows-sys 0.60.2",
631
+ ]
632
+
633
+ [[package]]
634
+ name = "displaydoc"
635
+ version = "0.2.5"
636
+ source = "registry+https://github.com/rust-lang/crates.io-index"
637
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
638
+ dependencies = [
639
+ "proc-macro2",
640
+ "quote",
641
+ "syn",
642
+ ]
643
+
644
+ [[package]]
645
+ name = "dunce"
646
+ version = "1.0.5"
647
+ source = "registry+https://github.com/rust-lang/crates.io-index"
648
+ checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
649
+
650
+ [[package]]
651
+ name = "either"
652
+ version = "1.15.0"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
655
+
656
+ [[package]]
657
+ name = "encode_unicode"
658
+ version = "1.0.0"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
661
+
662
+ [[package]]
663
+ name = "equivalent"
664
+ version = "1.0.2"
665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
666
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
667
+
668
+ [[package]]
669
+ name = "errno"
670
+ version = "0.3.14"
671
+ source = "registry+https://github.com/rust-lang/crates.io-index"
672
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
673
+ dependencies = [
674
+ "libc",
675
+ "windows-sys 0.61.2",
676
+ ]
677
+
678
+ [[package]]
679
+ name = "esaxx-rs"
680
+ version = "0.1.10"
681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
682
+ checksum = "d817e038c30374a4bcb22f94d0a8a0e216958d4c3dcde369b1439fec4bdda6e6"
683
+
684
+ [[package]]
685
+ name = "fancy-regex"
686
+ version = "0.14.0"
687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
688
+ checksum = "6e24cb5a94bcae1e5408b0effca5cd7172ea3c5755049c5f3af4cd283a165298"
689
+ dependencies = [
690
+ "bit-set",
691
+ "regex-automata",
692
+ "regex-syntax",
693
+ ]
694
+
695
+ [[package]]
696
+ name = "fastrand"
697
+ version = "2.3.0"
698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
699
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
700
+
701
+ [[package]]
702
+ name = "find-msvc-tools"
703
+ version = "0.1.9"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
706
+
707
+ [[package]]
708
+ name = "flate2"
709
+ version = "1.1.9"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
712
+ dependencies = [
713
+ "crc32fast",
714
+ "miniz_oxide",
715
+ ]
716
+
717
+ [[package]]
718
+ name = "fnv"
719
+ version = "1.0.7"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
722
+
723
+ [[package]]
724
+ name = "foldhash"
725
+ version = "0.1.5"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
728
+
729
+ [[package]]
730
+ name = "form_urlencoded"
731
+ version = "1.2.2"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
734
+ dependencies = [
735
+ "percent-encoding",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "fs_extra"
740
+ version = "1.3.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
743
+
744
+ [[package]]
745
+ name = "futures"
746
+ version = "0.3.32"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
749
+ dependencies = [
750
+ "futures-channel",
751
+ "futures-core",
752
+ "futures-io",
753
+ "futures-sink",
754
+ "futures-task",
755
+ "futures-util",
756
+ ]
757
+
758
+ [[package]]
759
+ name = "futures-channel"
760
+ version = "0.3.32"
761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
762
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
763
+ dependencies = [
764
+ "futures-core",
765
+ "futures-sink",
766
+ ]
767
+
768
+ [[package]]
769
+ name = "futures-core"
770
+ version = "0.3.32"
771
+ source = "registry+https://github.com/rust-lang/crates.io-index"
772
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
773
+
774
+ [[package]]
775
+ name = "futures-io"
776
+ version = "0.3.32"
777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
778
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
779
+
780
+ [[package]]
781
+ name = "futures-macro"
782
+ version = "0.3.32"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
785
+ dependencies = [
786
+ "proc-macro2",
787
+ "quote",
788
+ "syn",
789
+ ]
790
+
791
+ [[package]]
792
+ name = "futures-sink"
793
+ version = "0.3.32"
794
+ source = "registry+https://github.com/rust-lang/crates.io-index"
795
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
796
+
797
+ [[package]]
798
+ name = "futures-task"
799
+ version = "0.3.32"
800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
801
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
802
+
803
+ [[package]]
804
+ name = "futures-util"
805
+ version = "0.3.32"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
808
+ dependencies = [
809
+ "futures-channel",
810
+ "futures-core",
811
+ "futures-io",
812
+ "futures-macro",
813
+ "futures-sink",
814
+ "futures-task",
815
+ "memchr",
816
+ "pin-project-lite",
817
+ "slab",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "generic-array"
822
+ version = "0.14.7"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
825
+ dependencies = [
826
+ "typenum",
827
+ "version_check",
828
+ ]
829
+
830
+ [[package]]
831
+ name = "getrandom"
832
+ version = "0.2.17"
833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
834
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
835
+ dependencies = [
836
+ "cfg-if",
837
+ "js-sys",
838
+ "libc",
839
+ "wasi",
840
+ "wasm-bindgen",
841
+ ]
842
+
843
+ [[package]]
844
+ name = "getrandom"
845
+ version = "0.3.4"
846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
847
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
848
+ dependencies = [
849
+ "cfg-if",
850
+ "js-sys",
851
+ "libc",
852
+ "r-efi 5.3.0",
853
+ "wasip2",
854
+ "wasm-bindgen",
855
+ ]
856
+
857
+ [[package]]
858
+ name = "getrandom"
859
+ version = "0.4.2"
860
+ source = "registry+https://github.com/rust-lang/crates.io-index"
861
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
862
+ dependencies = [
863
+ "cfg-if",
864
+ "libc",
865
+ "r-efi 6.0.0",
866
+ "wasip2",
867
+ "wasip3",
868
+ ]
869
+
870
+ [[package]]
871
+ name = "glob"
872
+ version = "0.3.3"
873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
874
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
875
+
876
+ [[package]]
877
+ name = "gloo-timers"
878
+ version = "0.3.0"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
881
+ dependencies = [
882
+ "futures-channel",
883
+ "futures-core",
884
+ "js-sys",
885
+ "wasm-bindgen",
886
+ ]
887
+
888
+ [[package]]
889
+ name = "hashbrown"
890
+ version = "0.14.5"
891
+ source = "registry+https://github.com/rust-lang/crates.io-index"
892
+ checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
893
+
894
+ [[package]]
895
+ name = "hashbrown"
896
+ version = "0.15.5"
897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
898
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
899
+ dependencies = [
900
+ "foldhash",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "hashbrown"
905
+ version = "0.16.1"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
908
+
909
+ [[package]]
910
+ name = "heck"
911
+ version = "0.5.0"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
914
+
915
+ [[package]]
916
+ name = "hex"
917
+ version = "0.4.3"
918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
919
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
920
+
921
+ [[package]]
922
+ name = "hf-hub"
923
+ version = "0.4.3"
924
+ source = "registry+https://github.com/rust-lang/crates.io-index"
925
+ checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
926
+ dependencies = [
927
+ "dirs",
928
+ "http 1.4.0",
929
+ "indicatif",
930
+ "libc",
931
+ "log",
932
+ "rand",
933
+ "serde",
934
+ "serde_json",
935
+ "thiserror 2.0.18",
936
+ "ureq",
937
+ "windows-sys 0.60.2",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "hmac"
942
+ version = "0.12.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
945
+ dependencies = [
946
+ "digest",
947
+ ]
948
+
949
+ [[package]]
950
+ name = "http"
951
+ version = "0.2.12"
952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
953
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
954
+ dependencies = [
955
+ "bytes",
956
+ "fnv",
957
+ "itoa",
958
+ ]
959
+
960
+ [[package]]
961
+ name = "http"
962
+ version = "1.4.0"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
965
+ dependencies = [
966
+ "bytes",
967
+ "itoa",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "http-body"
972
+ version = "0.4.6"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
975
+ dependencies = [
976
+ "bytes",
977
+ "http 0.2.12",
978
+ "pin-project-lite",
979
+ ]
980
+
981
+ [[package]]
982
+ name = "http-body"
983
+ version = "1.0.1"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
986
+ dependencies = [
987
+ "bytes",
988
+ "http 1.4.0",
989
+ ]
990
+
991
+ [[package]]
992
+ name = "http-body-util"
993
+ version = "0.1.3"
994
+ source = "registry+https://github.com/rust-lang/crates.io-index"
995
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
996
+ dependencies = [
997
+ "bytes",
998
+ "futures-core",
999
+ "http 1.4.0",
1000
+ "http-body 1.0.1",
1001
+ "pin-project-lite",
1002
+ ]
1003
+
1004
+ [[package]]
1005
+ name = "httparse"
1006
+ version = "1.10.1"
1007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1008
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1009
+
1010
+ [[package]]
1011
+ name = "hyper"
1012
+ version = "1.8.1"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1015
+ dependencies = [
1016
+ "atomic-waker",
1017
+ "bytes",
1018
+ "futures-channel",
1019
+ "futures-core",
1020
+ "http 1.4.0",
1021
+ "http-body 1.0.1",
1022
+ "httparse",
1023
+ "itoa",
1024
+ "pin-project-lite",
1025
+ "pin-utils",
1026
+ "smallvec",
1027
+ "tokio",
1028
+ "want",
1029
+ ]
1030
+
1031
+ [[package]]
1032
+ name = "hyper-rustls"
1033
+ version = "0.27.7"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1036
+ dependencies = [
1037
+ "http 1.4.0",
1038
+ "hyper",
1039
+ "hyper-util",
1040
+ "rustls",
1041
+ "rustls-pki-types",
1042
+ "tokio",
1043
+ "tokio-rustls",
1044
+ "tower-service",
1045
+ ]
1046
+
1047
+ [[package]]
1048
+ name = "hyper-util"
1049
+ version = "0.1.20"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1052
+ dependencies = [
1053
+ "base64 0.22.1",
1054
+ "bytes",
1055
+ "futures-channel",
1056
+ "futures-util",
1057
+ "http 1.4.0",
1058
+ "http-body 1.0.1",
1059
+ "hyper",
1060
+ "ipnet",
1061
+ "libc",
1062
+ "percent-encoding",
1063
+ "pin-project-lite",
1064
+ "socket2",
1065
+ "tokio",
1066
+ "tower-service",
1067
+ "tracing",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "iana-time-zone"
1072
+ version = "0.1.65"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1075
+ dependencies = [
1076
+ "android_system_properties",
1077
+ "core-foundation-sys",
1078
+ "iana-time-zone-haiku",
1079
+ "js-sys",
1080
+ "log",
1081
+ "wasm-bindgen",
1082
+ "windows-core",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "iana-time-zone-haiku"
1087
+ version = "0.1.2"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1090
+ dependencies = [
1091
+ "cc",
1092
+ ]
1093
+
1094
+ [[package]]
1095
+ name = "icu_collections"
1096
+ version = "2.1.1"
1097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1098
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1099
+ dependencies = [
1100
+ "displaydoc",
1101
+ "potential_utf",
1102
+ "yoke",
1103
+ "zerofrom",
1104
+ "zerovec",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "icu_locale_core"
1109
+ version = "2.1.1"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1112
+ dependencies = [
1113
+ "displaydoc",
1114
+ "litemap",
1115
+ "tinystr",
1116
+ "writeable",
1117
+ "zerovec",
1118
+ ]
1119
+
1120
+ [[package]]
1121
+ name = "icu_normalizer"
1122
+ version = "2.1.1"
1123
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1124
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1125
+ dependencies = [
1126
+ "icu_collections",
1127
+ "icu_normalizer_data",
1128
+ "icu_properties",
1129
+ "icu_provider",
1130
+ "smallvec",
1131
+ "zerovec",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "icu_normalizer_data"
1136
+ version = "2.1.1"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1139
+
1140
+ [[package]]
1141
+ name = "icu_properties"
1142
+ version = "2.1.2"
1143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1144
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1145
+ dependencies = [
1146
+ "icu_collections",
1147
+ "icu_locale_core",
1148
+ "icu_properties_data",
1149
+ "icu_provider",
1150
+ "zerotrie",
1151
+ "zerovec",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "icu_properties_data"
1156
+ version = "2.1.2"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1159
+
1160
+ [[package]]
1161
+ name = "icu_provider"
1162
+ version = "2.1.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1165
+ dependencies = [
1166
+ "displaydoc",
1167
+ "icu_locale_core",
1168
+ "writeable",
1169
+ "yoke",
1170
+ "zerofrom",
1171
+ "zerotrie",
1172
+ "zerovec",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "id-arena"
1177
+ version = "2.3.0"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1180
+
1181
+ [[package]]
1182
+ name = "ident_case"
1183
+ version = "1.0.1"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1186
+
1187
+ [[package]]
1188
+ name = "idna"
1189
+ version = "1.1.0"
1190
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1191
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1192
+ dependencies = [
1193
+ "idna_adapter",
1194
+ "smallvec",
1195
+ "utf8_iter",
1196
+ ]
1197
+
1198
+ [[package]]
1199
+ name = "idna_adapter"
1200
+ version = "1.2.1"
1201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1202
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1203
+ dependencies = [
1204
+ "icu_normalizer",
1205
+ "icu_properties",
1206
+ ]
1207
+
1208
+ [[package]]
1209
+ name = "indexmap"
1210
+ version = "2.13.0"
1211
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1212
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1213
+ dependencies = [
1214
+ "equivalent",
1215
+ "hashbrown 0.16.1",
1216
+ "serde",
1217
+ "serde_core",
1218
+ ]
1219
+
1220
+ [[package]]
1221
+ name = "indicatif"
1222
+ version = "0.17.11"
1223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1224
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1225
+ dependencies = [
1226
+ "console",
1227
+ "number_prefix",
1228
+ "portable-atomic",
1229
+ "unicode-width",
1230
+ "web-time",
1231
+ ]
1232
+
1233
+ [[package]]
1234
+ name = "ipnet"
1235
+ version = "2.12.0"
1236
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1237
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1238
+
1239
+ [[package]]
1240
+ name = "iri-string"
1241
+ version = "0.7.11"
1242
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1243
+ checksum = "d8e7418f59cc01c88316161279a7f665217ae316b388e58a0d10e29f54f1e5eb"
1244
+ dependencies = [
1245
+ "memchr",
1246
+ "serde",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "itertools"
1251
+ version = "0.12.1"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1254
+ dependencies = [
1255
+ "either",
1256
+ ]
1257
+
1258
+ [[package]]
1259
+ name = "itertools"
1260
+ version = "0.14.0"
1261
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1262
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1263
+ dependencies = [
1264
+ "either",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "itoa"
1269
+ version = "1.0.18"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1272
+
1273
+ [[package]]
1274
+ name = "jni"
1275
+ version = "0.21.1"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1278
+ dependencies = [
1279
+ "cesu8",
1280
+ "cfg-if",
1281
+ "combine",
1282
+ "jni-sys 0.3.1",
1283
+ "log",
1284
+ "thiserror 1.0.69",
1285
+ "walkdir",
1286
+ "windows-sys 0.45.0",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "jni-sys"
1291
+ version = "0.3.1"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
1294
+ dependencies = [
1295
+ "jni-sys 0.4.1",
1296
+ ]
1297
+
1298
+ [[package]]
1299
+ name = "jni-sys"
1300
+ version = "0.4.1"
1301
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1302
+ checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1303
+ dependencies = [
1304
+ "jni-sys-macros",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "jni-sys-macros"
1309
+ version = "0.4.1"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1312
+ dependencies = [
1313
+ "quote",
1314
+ "syn",
1315
+ ]
1316
+
1317
+ [[package]]
1318
+ name = "jobserver"
1319
+ version = "0.1.34"
1320
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1321
+ checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1322
+ dependencies = [
1323
+ "getrandom 0.3.4",
1324
+ "libc",
1325
+ ]
1326
+
1327
+ [[package]]
1328
+ name = "js-sys"
1329
+ version = "0.3.91"
1330
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1331
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1332
+ dependencies = [
1333
+ "once_cell",
1334
+ "wasm-bindgen",
1335
+ ]
1336
+
1337
+ [[package]]
1338
+ name = "jsonwebtoken"
1339
+ version = "10.3.0"
1340
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1341
+ checksum = "0529410abe238729a60b108898784df8984c87f6054c9c4fcacc47e4803c1ce1"
1342
+ dependencies = [
1343
+ "base64 0.22.1",
1344
+ "getrandom 0.2.17",
1345
+ "js-sys",
1346
+ "pem",
1347
+ "serde",
1348
+ "serde_json",
1349
+ "signature",
1350
+ "simple_asn1",
1351
+ ]
1352
+
1353
+ [[package]]
1354
+ name = "lazy_static"
1355
+ version = "1.5.0"
1356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1357
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1358
+
1359
+ [[package]]
1360
+ name = "lazycell"
1361
+ version = "1.3.0"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1364
+
1365
+ [[package]]
1366
+ name = "leb128fmt"
1367
+ version = "0.1.0"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1370
+
1371
+ [[package]]
1372
+ name = "libc"
1373
+ version = "0.2.183"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
1376
+
1377
+ [[package]]
1378
+ name = "libloading"
1379
+ version = "0.8.9"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1382
+ dependencies = [
1383
+ "cfg-if",
1384
+ "windows-link",
1385
+ ]
1386
+
1387
+ [[package]]
1388
+ name = "libredox"
1389
+ version = "0.1.15"
1390
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1391
+ checksum = "7ddbf48fd451246b1f8c2610bd3b4ac0cc6e149d89832867093ab69a17194f08"
1392
+ dependencies = [
1393
+ "libc",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "litemap"
1398
+ version = "0.8.1"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1401
+
1402
+ [[package]]
1403
+ name = "liter-llm"
1404
+ version = "1.0.0-rc.6"
1405
+ dependencies = [
1406
+ "aws-credential-types",
1407
+ "aws-sigv4",
1408
+ "base64 0.22.1",
1409
+ "bytes",
1410
+ "dashmap",
1411
+ "futures-core",
1412
+ "futures-util",
1413
+ "jsonwebtoken",
1414
+ "memchr",
1415
+ "opendal",
1416
+ "opentelemetry",
1417
+ "pin-project-lite",
1418
+ "reqwest 0.13.2",
1419
+ "secrecy",
1420
+ "serde",
1421
+ "serde_json",
1422
+ "thiserror 2.0.18",
1423
+ "tokenizers",
1424
+ "tokio",
1425
+ "tower",
1426
+ "tower-http",
1427
+ "tracing",
1428
+ "tracing-opentelemetry",
1429
+ ]
1430
+
1431
+ [[package]]
1432
+ name = "liter-llm-rb"
1433
+ version = "1.0.0-rc.6"
1434
+ dependencies = [
1435
+ "base64 0.22.1",
1436
+ "futures-core",
1437
+ "liter-llm",
1438
+ "magnus",
1439
+ "pretty_assertions",
1440
+ "rb-sys",
1441
+ "serde_json",
1442
+ "tokio",
1443
+ ]
1444
+
1445
+ [[package]]
1446
+ name = "lock_api"
1447
+ version = "0.4.14"
1448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1449
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1450
+ dependencies = [
1451
+ "scopeguard",
1452
+ ]
1453
+
1454
+ [[package]]
1455
+ name = "log"
1456
+ version = "0.4.29"
1457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1458
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1459
+
1460
+ [[package]]
1461
+ name = "lru-slab"
1462
+ version = "0.1.2"
1463
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1464
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1465
+
1466
+ [[package]]
1467
+ name = "macro_rules_attribute"
1468
+ version = "0.2.2"
1469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1470
+ checksum = "65049d7923698040cd0b1ddcced9b0eb14dd22c5f86ae59c3740eab64a676520"
1471
+ dependencies = [
1472
+ "macro_rules_attribute-proc_macro",
1473
+ "paste",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "macro_rules_attribute-proc_macro"
1478
+ version = "0.2.2"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "670fdfda89751bc4a84ac13eaa63e205cf0fd22b4c9a5fbfa085b63c1f1d3a30"
1481
+
1482
+ [[package]]
1483
+ name = "magnus"
1484
+ version = "0.8.2"
1485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1486
+ checksum = "3b36a5b126bbe97eb0d02d07acfeb327036c6319fd816139a49824a83b7f9012"
1487
+ dependencies = [
1488
+ "magnus-macros",
1489
+ "rb-sys",
1490
+ "rb-sys-env",
1491
+ "seq-macro",
1492
+ ]
1493
+
1494
+ [[package]]
1495
+ name = "magnus-macros"
1496
+ version = "0.8.0"
1497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1498
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1499
+ dependencies = [
1500
+ "proc-macro2",
1501
+ "quote",
1502
+ "syn",
1503
+ ]
1504
+
1505
+ [[package]]
1506
+ name = "md-5"
1507
+ version = "0.10.6"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1510
+ dependencies = [
1511
+ "cfg-if",
1512
+ "digest",
1513
+ ]
1514
+
1515
+ [[package]]
1516
+ name = "memchr"
1517
+ version = "2.8.0"
1518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1519
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1520
+
1521
+ [[package]]
1522
+ name = "mime"
1523
+ version = "0.3.17"
1524
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1525
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1526
+
1527
+ [[package]]
1528
+ name = "mime_guess"
1529
+ version = "2.0.5"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1532
+ dependencies = [
1533
+ "mime",
1534
+ "unicase",
1535
+ ]
1536
+
1537
+ [[package]]
1538
+ name = "minimal-lexical"
1539
+ version = "0.2.1"
1540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1541
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1542
+
1543
+ [[package]]
1544
+ name = "miniz_oxide"
1545
+ version = "0.8.9"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1548
+ dependencies = [
1549
+ "adler2",
1550
+ "simd-adler32",
1551
+ ]
1552
+
1553
+ [[package]]
1554
+ name = "mio"
1555
+ version = "1.1.1"
1556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1557
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1558
+ dependencies = [
1559
+ "libc",
1560
+ "wasi",
1561
+ "windows-sys 0.61.2",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "monostate"
1566
+ version = "0.1.18"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "3341a273f6c9d5bef1908f17b7267bbab0e95c9bf69a0d4dcf8e9e1b2c76ef67"
1569
+ dependencies = [
1570
+ "monostate-impl",
1571
+ "serde",
1572
+ "serde_core",
1573
+ ]
1574
+
1575
+ [[package]]
1576
+ name = "monostate-impl"
1577
+ version = "0.1.18"
1578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1579
+ checksum = "e4db6d5580af57bf992f59068d4ea26fd518574ff48d7639b255a36f9de6e7e9"
1580
+ dependencies = [
1581
+ "proc-macro2",
1582
+ "quote",
1583
+ "syn",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "nom"
1588
+ version = "7.1.3"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1591
+ dependencies = [
1592
+ "memchr",
1593
+ "minimal-lexical",
1594
+ ]
1595
+
1596
+ [[package]]
1597
+ name = "num-bigint"
1598
+ version = "0.4.6"
1599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1600
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1601
+ dependencies = [
1602
+ "num-integer",
1603
+ "num-traits",
1604
+ ]
1605
+
1606
+ [[package]]
1607
+ name = "num-conv"
1608
+ version = "0.2.1"
1609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1610
+ checksum = "c6673768db2d862beb9b39a78fdcb1a69439615d5794a1be50caa9bc92c81967"
1611
+
1612
+ [[package]]
1613
+ name = "num-integer"
1614
+ version = "0.1.46"
1615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1616
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1617
+ dependencies = [
1618
+ "num-traits",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "num-traits"
1623
+ version = "0.2.19"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1626
+ dependencies = [
1627
+ "autocfg",
1628
+ ]
1629
+
1630
+ [[package]]
1631
+ name = "number_prefix"
1632
+ version = "0.4.0"
1633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1634
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1635
+
1636
+ [[package]]
1637
+ name = "once_cell"
1638
+ version = "1.21.4"
1639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1640
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1641
+
1642
+ [[package]]
1643
+ name = "opendal"
1644
+ version = "0.53.3"
1645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1646
+ checksum = "f947c4efbca344c1a125753366033c8107f552b2e3f8251815ed1908f116ca3e"
1647
+ dependencies = [
1648
+ "anyhow",
1649
+ "async-trait",
1650
+ "backon",
1651
+ "base64 0.22.1",
1652
+ "bytes",
1653
+ "chrono",
1654
+ "futures",
1655
+ "getrandom 0.2.17",
1656
+ "http 1.4.0",
1657
+ "http-body 1.0.1",
1658
+ "log",
1659
+ "md-5",
1660
+ "percent-encoding",
1661
+ "quick-xml",
1662
+ "reqwest 0.12.28",
1663
+ "serde",
1664
+ "serde_json",
1665
+ "tokio",
1666
+ "uuid",
1667
+ ]
1668
+
1669
+ [[package]]
1670
+ name = "openssl-probe"
1671
+ version = "0.2.1"
1672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1673
+ checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1674
+
1675
+ [[package]]
1676
+ name = "opentelemetry"
1677
+ version = "0.31.0"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "b84bcd6ae87133e903af7ef497404dda70c60d0ea14895fc8a5e6722754fc2a0"
1680
+ dependencies = [
1681
+ "futures-core",
1682
+ "futures-sink",
1683
+ "js-sys",
1684
+ "pin-project-lite",
1685
+ "thiserror 2.0.18",
1686
+ "tracing",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "option-ext"
1691
+ version = "0.2.0"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1694
+
1695
+ [[package]]
1696
+ name = "outref"
1697
+ version = "0.5.2"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "1a80800c0488c3a21695ea981a54918fbb37abf04f4d0720c453632255e2ff0e"
1700
+
1701
+ [[package]]
1702
+ name = "parking_lot"
1703
+ version = "0.12.5"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1706
+ dependencies = [
1707
+ "lock_api",
1708
+ "parking_lot_core",
1709
+ ]
1710
+
1711
+ [[package]]
1712
+ name = "parking_lot_core"
1713
+ version = "0.9.12"
1714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1715
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1716
+ dependencies = [
1717
+ "cfg-if",
1718
+ "libc",
1719
+ "redox_syscall",
1720
+ "smallvec",
1721
+ "windows-link",
1722
+ ]
1723
+
1724
+ [[package]]
1725
+ name = "paste"
1726
+ version = "1.0.15"
1727
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1728
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1729
+
1730
+ [[package]]
1731
+ name = "pem"
1732
+ version = "3.0.6"
1733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1734
+ checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1735
+ dependencies = [
1736
+ "base64 0.22.1",
1737
+ "serde_core",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "percent-encoding"
1742
+ version = "2.3.2"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1745
+
1746
+ [[package]]
1747
+ name = "pin-project-lite"
1748
+ version = "0.2.17"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1751
+
1752
+ [[package]]
1753
+ name = "pin-utils"
1754
+ version = "0.1.0"
1755
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1756
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1757
+
1758
+ [[package]]
1759
+ name = "portable-atomic"
1760
+ version = "1.13.1"
1761
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1762
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1763
+
1764
+ [[package]]
1765
+ name = "potential_utf"
1766
+ version = "0.1.4"
1767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1768
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1769
+ dependencies = [
1770
+ "zerovec",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "powerfmt"
1775
+ version = "0.2.0"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1778
+
1779
+ [[package]]
1780
+ name = "ppv-lite86"
1781
+ version = "0.2.21"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1784
+ dependencies = [
1785
+ "zerocopy",
1786
+ ]
1787
+
1788
+ [[package]]
1789
+ name = "pretty_assertions"
1790
+ version = "1.4.1"
1791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1792
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1793
+ dependencies = [
1794
+ "diff",
1795
+ "yansi",
1796
+ ]
1797
+
1798
+ [[package]]
1799
+ name = "prettyplease"
1800
+ version = "0.2.37"
1801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1802
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1803
+ dependencies = [
1804
+ "proc-macro2",
1805
+ "syn",
1806
+ ]
1807
+
1808
+ [[package]]
1809
+ name = "proc-macro2"
1810
+ version = "1.0.106"
1811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1812
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1813
+ dependencies = [
1814
+ "unicode-ident",
1815
+ ]
1816
+
1817
+ [[package]]
1818
+ name = "quick-xml"
1819
+ version = "0.37.5"
1820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1821
+ checksum = "331e97a1af0bf59823e6eadffe373d7b27f485be8748f71471c662c1f269b7fb"
1822
+ dependencies = [
1823
+ "memchr",
1824
+ "serde",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "quinn"
1829
+ version = "0.11.9"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1832
+ dependencies = [
1833
+ "bytes",
1834
+ "cfg_aliases",
1835
+ "pin-project-lite",
1836
+ "quinn-proto",
1837
+ "quinn-udp",
1838
+ "rustc-hash 2.1.1",
1839
+ "rustls",
1840
+ "socket2",
1841
+ "thiserror 2.0.18",
1842
+ "tokio",
1843
+ "tracing",
1844
+ "web-time",
1845
+ ]
1846
+
1847
+ [[package]]
1848
+ name = "quinn-proto"
1849
+ version = "0.11.14"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1852
+ dependencies = [
1853
+ "aws-lc-rs",
1854
+ "bytes",
1855
+ "getrandom 0.3.4",
1856
+ "lru-slab",
1857
+ "rand",
1858
+ "ring",
1859
+ "rustc-hash 2.1.1",
1860
+ "rustls",
1861
+ "rustls-pki-types",
1862
+ "slab",
1863
+ "thiserror 2.0.18",
1864
+ "tinyvec",
1865
+ "tracing",
1866
+ "web-time",
1867
+ ]
1868
+
1869
+ [[package]]
1870
+ name = "quinn-udp"
1871
+ version = "0.5.14"
1872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1873
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1874
+ dependencies = [
1875
+ "cfg_aliases",
1876
+ "libc",
1877
+ "once_cell",
1878
+ "socket2",
1879
+ "tracing",
1880
+ "windows-sys 0.60.2",
1881
+ ]
1882
+
1883
+ [[package]]
1884
+ name = "quote"
1885
+ version = "1.0.45"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1888
+ dependencies = [
1889
+ "proc-macro2",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "r-efi"
1894
+ version = "5.3.0"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1897
+
1898
+ [[package]]
1899
+ name = "r-efi"
1900
+ version = "6.0.0"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1903
+
1904
+ [[package]]
1905
+ name = "rand"
1906
+ version = "0.9.2"
1907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1908
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1909
+ dependencies = [
1910
+ "rand_chacha",
1911
+ "rand_core 0.9.5",
1912
+ ]
1913
+
1914
+ [[package]]
1915
+ name = "rand_chacha"
1916
+ version = "0.9.0"
1917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1918
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1919
+ dependencies = [
1920
+ "ppv-lite86",
1921
+ "rand_core 0.9.5",
1922
+ ]
1923
+
1924
+ [[package]]
1925
+ name = "rand_core"
1926
+ version = "0.6.4"
1927
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1928
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1929
+ dependencies = [
1930
+ "getrandom 0.2.17",
1931
+ ]
1932
+
1933
+ [[package]]
1934
+ name = "rand_core"
1935
+ version = "0.9.5"
1936
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1937
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1938
+ dependencies = [
1939
+ "getrandom 0.3.4",
1940
+ ]
1941
+
1942
+ [[package]]
1943
+ name = "rayon"
1944
+ version = "1.11.0"
1945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1946
+ checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
1947
+ dependencies = [
1948
+ "either",
1949
+ "rayon-core",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "rayon-cond"
1954
+ version = "0.4.0"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "2964d0cf57a3e7a06e8183d14a8b527195c706b7983549cd5462d5aa3747438f"
1957
+ dependencies = [
1958
+ "either",
1959
+ "itertools 0.14.0",
1960
+ "rayon",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "rayon-core"
1965
+ version = "1.13.0"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
1968
+ dependencies = [
1969
+ "crossbeam-deque",
1970
+ "crossbeam-utils",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "rb-sys"
1975
+ version = "0.9.124"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "c85c4188462601e2aa1469def389c17228566f82ea72f137ed096f21591bc489"
1978
+ dependencies = [
1979
+ "rb-sys-build",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "rb-sys-build"
1984
+ version = "0.9.124"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "568068db4102230882e6d4ae8de6632e224ca75fe5970f6e026a04e91ed635d3"
1987
+ dependencies = [
1988
+ "bindgen",
1989
+ "lazy_static",
1990
+ "proc-macro2",
1991
+ "quote",
1992
+ "regex",
1993
+ "shell-words",
1994
+ "syn",
1995
+ ]
1996
+
1997
+ [[package]]
1998
+ name = "rb-sys-env"
1999
+ version = "0.2.3"
2000
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2001
+ checksum = "cca7ad6a7e21e72151d56fe2495a259b5670e204c3adac41ee7ef676ea08117a"
2002
+
2003
+ [[package]]
2004
+ name = "redox_syscall"
2005
+ version = "0.5.18"
2006
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2007
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2008
+ dependencies = [
2009
+ "bitflags",
2010
+ ]
2011
+
2012
+ [[package]]
2013
+ name = "redox_users"
2014
+ version = "0.5.2"
2015
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2016
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2017
+ dependencies = [
2018
+ "getrandom 0.2.17",
2019
+ "libredox",
2020
+ "thiserror 2.0.18",
2021
+ ]
2022
+
2023
+ [[package]]
2024
+ name = "regex"
2025
+ version = "1.12.3"
2026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2027
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2028
+ dependencies = [
2029
+ "aho-corasick",
2030
+ "memchr",
2031
+ "regex-automata",
2032
+ "regex-syntax",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "regex-automata"
2037
+ version = "0.4.14"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2040
+ dependencies = [
2041
+ "aho-corasick",
2042
+ "memchr",
2043
+ "regex-syntax",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "regex-syntax"
2048
+ version = "0.8.10"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2051
+
2052
+ [[package]]
2053
+ name = "reqwest"
2054
+ version = "0.12.28"
2055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2056
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
2057
+ dependencies = [
2058
+ "base64 0.22.1",
2059
+ "bytes",
2060
+ "futures-core",
2061
+ "futures-util",
2062
+ "http 1.4.0",
2063
+ "http-body 1.0.1",
2064
+ "http-body-util",
2065
+ "hyper",
2066
+ "hyper-util",
2067
+ "js-sys",
2068
+ "log",
2069
+ "percent-encoding",
2070
+ "pin-project-lite",
2071
+ "serde",
2072
+ "serde_json",
2073
+ "serde_urlencoded",
2074
+ "sync_wrapper",
2075
+ "tokio",
2076
+ "tokio-util",
2077
+ "tower",
2078
+ "tower-http",
2079
+ "tower-service",
2080
+ "url",
2081
+ "wasm-bindgen",
2082
+ "wasm-bindgen-futures",
2083
+ "wasm-streams 0.4.2",
2084
+ "web-sys",
2085
+ ]
2086
+
2087
+ [[package]]
2088
+ name = "reqwest"
2089
+ version = "0.13.2"
2090
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2091
+ checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801"
2092
+ dependencies = [
2093
+ "base64 0.22.1",
2094
+ "bytes",
2095
+ "futures-core",
2096
+ "futures-util",
2097
+ "http 1.4.0",
2098
+ "http-body 1.0.1",
2099
+ "http-body-util",
2100
+ "hyper",
2101
+ "hyper-rustls",
2102
+ "hyper-util",
2103
+ "js-sys",
2104
+ "log",
2105
+ "mime_guess",
2106
+ "percent-encoding",
2107
+ "pin-project-lite",
2108
+ "quinn",
2109
+ "rustls",
2110
+ "rustls-pki-types",
2111
+ "rustls-platform-verifier",
2112
+ "serde",
2113
+ "serde_json",
2114
+ "serde_urlencoded",
2115
+ "sync_wrapper",
2116
+ "tokio",
2117
+ "tokio-rustls",
2118
+ "tokio-util",
2119
+ "tower",
2120
+ "tower-http",
2121
+ "tower-service",
2122
+ "url",
2123
+ "wasm-bindgen",
2124
+ "wasm-bindgen-futures",
2125
+ "wasm-streams 0.5.0",
2126
+ "web-sys",
2127
+ ]
2128
+
2129
+ [[package]]
2130
+ name = "ring"
2131
+ version = "0.17.14"
2132
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2133
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2134
+ dependencies = [
2135
+ "cc",
2136
+ "cfg-if",
2137
+ "getrandom 0.2.17",
2138
+ "libc",
2139
+ "untrusted",
2140
+ "windows-sys 0.52.0",
2141
+ ]
2142
+
2143
+ [[package]]
2144
+ name = "rustc-hash"
2145
+ version = "1.1.0"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2148
+
2149
+ [[package]]
2150
+ name = "rustc-hash"
2151
+ version = "2.1.1"
2152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2153
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2154
+
2155
+ [[package]]
2156
+ name = "rustls"
2157
+ version = "0.23.37"
2158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2159
+ checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
2160
+ dependencies = [
2161
+ "aws-lc-rs",
2162
+ "log",
2163
+ "once_cell",
2164
+ "ring",
2165
+ "rustls-pki-types",
2166
+ "rustls-webpki",
2167
+ "subtle",
2168
+ "zeroize",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "rustls-native-certs"
2173
+ version = "0.8.3"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
2176
+ dependencies = [
2177
+ "openssl-probe",
2178
+ "rustls-pki-types",
2179
+ "schannel",
2180
+ "security-framework",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "rustls-pki-types"
2185
+ version = "1.14.0"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
2188
+ dependencies = [
2189
+ "web-time",
2190
+ "zeroize",
2191
+ ]
2192
+
2193
+ [[package]]
2194
+ name = "rustls-platform-verifier"
2195
+ version = "0.6.2"
2196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2197
+ checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
2198
+ dependencies = [
2199
+ "core-foundation",
2200
+ "core-foundation-sys",
2201
+ "jni",
2202
+ "log",
2203
+ "once_cell",
2204
+ "rustls",
2205
+ "rustls-native-certs",
2206
+ "rustls-platform-verifier-android",
2207
+ "rustls-webpki",
2208
+ "security-framework",
2209
+ "security-framework-sys",
2210
+ "webpki-root-certs",
2211
+ "windows-sys 0.61.2",
2212
+ ]
2213
+
2214
+ [[package]]
2215
+ name = "rustls-platform-verifier-android"
2216
+ version = "0.1.1"
2217
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2218
+ checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
2219
+
2220
+ [[package]]
2221
+ name = "rustls-webpki"
2222
+ version = "0.103.10"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
2225
+ dependencies = [
2226
+ "aws-lc-rs",
2227
+ "ring",
2228
+ "rustls-pki-types",
2229
+ "untrusted",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "rustversion"
2234
+ version = "1.0.22"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2237
+
2238
+ [[package]]
2239
+ name = "ryu"
2240
+ version = "1.0.23"
2241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2242
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2243
+
2244
+ [[package]]
2245
+ name = "same-file"
2246
+ version = "1.0.6"
2247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2248
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2249
+ dependencies = [
2250
+ "winapi-util",
2251
+ ]
2252
+
2253
+ [[package]]
2254
+ name = "schannel"
2255
+ version = "0.1.29"
2256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2257
+ checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2258
+ dependencies = [
2259
+ "windows-sys 0.61.2",
2260
+ ]
2261
+
2262
+ [[package]]
2263
+ name = "scopeguard"
2264
+ version = "1.2.0"
2265
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2266
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2267
+
2268
+ [[package]]
2269
+ name = "secrecy"
2270
+ version = "0.10.3"
2271
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2272
+ checksum = "e891af845473308773346dc847b2c23ee78fe442e0472ac50e22a18a93d3ae5a"
2273
+ dependencies = [
2274
+ "serde",
2275
+ "zeroize",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "security-framework"
2280
+ version = "3.7.0"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2283
+ dependencies = [
2284
+ "bitflags",
2285
+ "core-foundation",
2286
+ "core-foundation-sys",
2287
+ "libc",
2288
+ "security-framework-sys",
2289
+ ]
2290
+
2291
+ [[package]]
2292
+ name = "security-framework-sys"
2293
+ version = "2.17.0"
2294
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2295
+ checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2296
+ dependencies = [
2297
+ "core-foundation-sys",
2298
+ "libc",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "semver"
2303
+ version = "1.0.27"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2306
+
2307
+ [[package]]
2308
+ name = "seq-macro"
2309
+ version = "0.3.6"
2310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2311
+ checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
2312
+
2313
+ [[package]]
2314
+ name = "serde"
2315
+ version = "1.0.228"
2316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2317
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2318
+ dependencies = [
2319
+ "serde_core",
2320
+ "serde_derive",
2321
+ ]
2322
+
2323
+ [[package]]
2324
+ name = "serde_core"
2325
+ version = "1.0.228"
2326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2327
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2328
+ dependencies = [
2329
+ "serde_derive",
2330
+ ]
2331
+
2332
+ [[package]]
2333
+ name = "serde_derive"
2334
+ version = "1.0.228"
2335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2336
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2337
+ dependencies = [
2338
+ "proc-macro2",
2339
+ "quote",
2340
+ "syn",
2341
+ ]
2342
+
2343
+ [[package]]
2344
+ name = "serde_json"
2345
+ version = "1.0.149"
2346
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2347
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2348
+ dependencies = [
2349
+ "itoa",
2350
+ "memchr",
2351
+ "serde",
2352
+ "serde_core",
2353
+ "zmij",
2354
+ ]
2355
+
2356
+ [[package]]
2357
+ name = "serde_urlencoded"
2358
+ version = "0.7.1"
2359
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2360
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2361
+ dependencies = [
2362
+ "form_urlencoded",
2363
+ "itoa",
2364
+ "ryu",
2365
+ "serde",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "sha2"
2370
+ version = "0.10.9"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2373
+ dependencies = [
2374
+ "cfg-if",
2375
+ "cpufeatures",
2376
+ "digest",
2377
+ ]
2378
+
2379
+ [[package]]
2380
+ name = "sharded-slab"
2381
+ version = "0.1.7"
2382
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2383
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2384
+ dependencies = [
2385
+ "lazy_static",
2386
+ ]
2387
+
2388
+ [[package]]
2389
+ name = "shell-words"
2390
+ version = "1.1.1"
2391
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2392
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2393
+
2394
+ [[package]]
2395
+ name = "shlex"
2396
+ version = "1.3.0"
2397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2398
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2399
+
2400
+ [[package]]
2401
+ name = "signal-hook-registry"
2402
+ version = "1.4.8"
2403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2404
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2405
+ dependencies = [
2406
+ "errno",
2407
+ "libc",
2408
+ ]
2409
+
2410
+ [[package]]
2411
+ name = "signature"
2412
+ version = "2.2.0"
2413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2414
+ checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2415
+ dependencies = [
2416
+ "rand_core 0.6.4",
2417
+ ]
2418
+
2419
+ [[package]]
2420
+ name = "simd-adler32"
2421
+ version = "0.3.9"
2422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2423
+ checksum = "703d5c7ef118737c72f1af64ad2f6f8c5e1921f818cdcb97b8fe6fc69bf66214"
2424
+
2425
+ [[package]]
2426
+ name = "simple_asn1"
2427
+ version = "0.6.4"
2428
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2429
+ checksum = "0d585997b0ac10be3c5ee635f1bab02d512760d14b7c468801ac8a01d9ae5f1d"
2430
+ dependencies = [
2431
+ "num-bigint",
2432
+ "num-traits",
2433
+ "thiserror 2.0.18",
2434
+ "time",
2435
+ ]
2436
+
2437
+ [[package]]
2438
+ name = "slab"
2439
+ version = "0.4.12"
2440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2441
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2442
+
2443
+ [[package]]
2444
+ name = "smallvec"
2445
+ version = "1.15.1"
2446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2447
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2448
+
2449
+ [[package]]
2450
+ name = "socket2"
2451
+ version = "0.6.3"
2452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2453
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2454
+ dependencies = [
2455
+ "libc",
2456
+ "windows-sys 0.61.2",
2457
+ ]
2458
+
2459
+ [[package]]
2460
+ name = "socks"
2461
+ version = "0.3.4"
2462
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2463
+ checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
2464
+ dependencies = [
2465
+ "byteorder",
2466
+ "libc",
2467
+ "winapi",
2468
+ ]
2469
+
2470
+ [[package]]
2471
+ name = "spm_precompiled"
2472
+ version = "0.1.4"
2473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2474
+ checksum = "5851699c4033c63636f7ea4cf7b7c1f1bf06d0cc03cfb42e711de5a5c46cf326"
2475
+ dependencies = [
2476
+ "base64 0.13.1",
2477
+ "nom",
2478
+ "serde",
2479
+ "unicode-segmentation",
2480
+ ]
2481
+
2482
+ [[package]]
2483
+ name = "stable_deref_trait"
2484
+ version = "1.2.1"
2485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2486
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2487
+
2488
+ [[package]]
2489
+ name = "static_assertions"
2490
+ version = "1.1.0"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2493
+
2494
+ [[package]]
2495
+ name = "strsim"
2496
+ version = "0.11.1"
2497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2498
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2499
+
2500
+ [[package]]
2501
+ name = "subtle"
2502
+ version = "2.6.1"
2503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2504
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2505
+
2506
+ [[package]]
2507
+ name = "syn"
2508
+ version = "2.0.117"
2509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2510
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2511
+ dependencies = [
2512
+ "proc-macro2",
2513
+ "quote",
2514
+ "unicode-ident",
2515
+ ]
2516
+
2517
+ [[package]]
2518
+ name = "sync_wrapper"
2519
+ version = "1.0.2"
2520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2521
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2522
+ dependencies = [
2523
+ "futures-core",
2524
+ ]
2525
+
2526
+ [[package]]
2527
+ name = "synstructure"
2528
+ version = "0.13.2"
2529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2530
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2531
+ dependencies = [
2532
+ "proc-macro2",
2533
+ "quote",
2534
+ "syn",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "thiserror"
2539
+ version = "1.0.69"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2542
+ dependencies = [
2543
+ "thiserror-impl 1.0.69",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "thiserror"
2548
+ version = "2.0.18"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2551
+ dependencies = [
2552
+ "thiserror-impl 2.0.18",
2553
+ ]
2554
+
2555
+ [[package]]
2556
+ name = "thiserror-impl"
2557
+ version = "1.0.69"
2558
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2559
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2560
+ dependencies = [
2561
+ "proc-macro2",
2562
+ "quote",
2563
+ "syn",
2564
+ ]
2565
+
2566
+ [[package]]
2567
+ name = "thiserror-impl"
2568
+ version = "2.0.18"
2569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2570
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2571
+ dependencies = [
2572
+ "proc-macro2",
2573
+ "quote",
2574
+ "syn",
2575
+ ]
2576
+
2577
+ [[package]]
2578
+ name = "thread_local"
2579
+ version = "1.1.9"
2580
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2581
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2582
+ dependencies = [
2583
+ "cfg-if",
2584
+ ]
2585
+
2586
+ [[package]]
2587
+ name = "time"
2588
+ version = "0.3.47"
2589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2590
+ checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2591
+ dependencies = [
2592
+ "deranged",
2593
+ "itoa",
2594
+ "num-conv",
2595
+ "powerfmt",
2596
+ "serde_core",
2597
+ "time-core",
2598
+ "time-macros",
2599
+ ]
2600
+
2601
+ [[package]]
2602
+ name = "time-core"
2603
+ version = "0.1.8"
2604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2605
+ checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2606
+
2607
+ [[package]]
2608
+ name = "time-macros"
2609
+ version = "0.2.27"
2610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2611
+ checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
2612
+ dependencies = [
2613
+ "num-conv",
2614
+ "time-core",
2615
+ ]
2616
+
2617
+ [[package]]
2618
+ name = "tinystr"
2619
+ version = "0.8.2"
2620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2621
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2622
+ dependencies = [
2623
+ "displaydoc",
2624
+ "zerovec",
2625
+ ]
2626
+
2627
+ [[package]]
2628
+ name = "tinyvec"
2629
+ version = "1.11.0"
2630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2631
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2632
+ dependencies = [
2633
+ "tinyvec_macros",
2634
+ ]
2635
+
2636
+ [[package]]
2637
+ name = "tinyvec_macros"
2638
+ version = "0.1.1"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2641
+
2642
+ [[package]]
2643
+ name = "tokenizers"
2644
+ version = "0.22.2"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "b238e22d44a15349529690fb07bd645cf58149a1b1e44d6cb5bd1641ff1a6223"
2647
+ dependencies = [
2648
+ "ahash",
2649
+ "aho-corasick",
2650
+ "compact_str",
2651
+ "dary_heap",
2652
+ "derive_builder",
2653
+ "esaxx-rs",
2654
+ "fancy-regex",
2655
+ "getrandom 0.3.4",
2656
+ "hf-hub",
2657
+ "itertools 0.14.0",
2658
+ "log",
2659
+ "macro_rules_attribute",
2660
+ "monostate",
2661
+ "paste",
2662
+ "rand",
2663
+ "rayon",
2664
+ "rayon-cond",
2665
+ "regex",
2666
+ "regex-syntax",
2667
+ "serde",
2668
+ "serde_json",
2669
+ "spm_precompiled",
2670
+ "thiserror 2.0.18",
2671
+ "unicode-normalization-alignments",
2672
+ "unicode-segmentation",
2673
+ "unicode_categories",
2674
+ ]
2675
+
2676
+ [[package]]
2677
+ name = "tokio"
2678
+ version = "1.50.0"
2679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2680
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
2681
+ dependencies = [
2682
+ "bytes",
2683
+ "libc",
2684
+ "mio",
2685
+ "parking_lot",
2686
+ "pin-project-lite",
2687
+ "signal-hook-registry",
2688
+ "socket2",
2689
+ "tokio-macros",
2690
+ "windows-sys 0.61.2",
2691
+ ]
2692
+
2693
+ [[package]]
2694
+ name = "tokio-macros"
2695
+ version = "2.6.1"
2696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2697
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
2698
+ dependencies = [
2699
+ "proc-macro2",
2700
+ "quote",
2701
+ "syn",
2702
+ ]
2703
+
2704
+ [[package]]
2705
+ name = "tokio-rustls"
2706
+ version = "0.26.4"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2709
+ dependencies = [
2710
+ "rustls",
2711
+ "tokio",
2712
+ ]
2713
+
2714
+ [[package]]
2715
+ name = "tokio-util"
2716
+ version = "0.7.18"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2719
+ dependencies = [
2720
+ "bytes",
2721
+ "futures-core",
2722
+ "futures-sink",
2723
+ "pin-project-lite",
2724
+ "tokio",
2725
+ ]
2726
+
2727
+ [[package]]
2728
+ name = "tower"
2729
+ version = "0.5.3"
2730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2731
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2732
+ dependencies = [
2733
+ "futures-core",
2734
+ "futures-util",
2735
+ "pin-project-lite",
2736
+ "sync_wrapper",
2737
+ "tokio",
2738
+ "tokio-util",
2739
+ "tower-layer",
2740
+ "tower-service",
2741
+ "tracing",
2742
+ ]
2743
+
2744
+ [[package]]
2745
+ name = "tower-http"
2746
+ version = "0.6.8"
2747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2748
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2749
+ dependencies = [
2750
+ "bitflags",
2751
+ "bytes",
2752
+ "futures-util",
2753
+ "http 1.4.0",
2754
+ "http-body 1.0.1",
2755
+ "iri-string",
2756
+ "pin-project-lite",
2757
+ "tower",
2758
+ "tower-layer",
2759
+ "tower-service",
2760
+ "tracing",
2761
+ "uuid",
2762
+ ]
2763
+
2764
+ [[package]]
2765
+ name = "tower-layer"
2766
+ version = "0.3.3"
2767
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2768
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2769
+
2770
+ [[package]]
2771
+ name = "tower-service"
2772
+ version = "0.3.3"
2773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2774
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2775
+
2776
+ [[package]]
2777
+ name = "tracing"
2778
+ version = "0.1.44"
2779
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2780
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2781
+ dependencies = [
2782
+ "pin-project-lite",
2783
+ "tracing-attributes",
2784
+ "tracing-core",
2785
+ ]
2786
+
2787
+ [[package]]
2788
+ name = "tracing-attributes"
2789
+ version = "0.1.31"
2790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2791
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2792
+ dependencies = [
2793
+ "proc-macro2",
2794
+ "quote",
2795
+ "syn",
2796
+ ]
2797
+
2798
+ [[package]]
2799
+ name = "tracing-core"
2800
+ version = "0.1.36"
2801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2802
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2803
+ dependencies = [
2804
+ "once_cell",
2805
+ "valuable",
2806
+ ]
2807
+
2808
+ [[package]]
2809
+ name = "tracing-log"
2810
+ version = "0.2.0"
2811
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2812
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2813
+ dependencies = [
2814
+ "log",
2815
+ "once_cell",
2816
+ "tracing-core",
2817
+ ]
2818
+
2819
+ [[package]]
2820
+ name = "tracing-opentelemetry"
2821
+ version = "0.32.1"
2822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2823
+ checksum = "1ac28f2d093c6c477eaa76b23525478f38de514fa9aeb1285738d4b97a9552fc"
2824
+ dependencies = [
2825
+ "js-sys",
2826
+ "opentelemetry",
2827
+ "smallvec",
2828
+ "tracing",
2829
+ "tracing-core",
2830
+ "tracing-log",
2831
+ "tracing-subscriber",
2832
+ "web-time",
2833
+ ]
2834
+
2835
+ [[package]]
2836
+ name = "tracing-subscriber"
2837
+ version = "0.3.23"
2838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2839
+ checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2840
+ dependencies = [
2841
+ "sharded-slab",
2842
+ "thread_local",
2843
+ "tracing-core",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "try-lock"
2848
+ version = "0.2.5"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2851
+
2852
+ [[package]]
2853
+ name = "typenum"
2854
+ version = "1.19.0"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
2857
+
2858
+ [[package]]
2859
+ name = "unicase"
2860
+ version = "2.9.0"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
2863
+
2864
+ [[package]]
2865
+ name = "unicode-ident"
2866
+ version = "1.0.24"
2867
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2868
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2869
+
2870
+ [[package]]
2871
+ name = "unicode-normalization-alignments"
2872
+ version = "0.1.12"
2873
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2874
+ checksum = "43f613e4fa046e69818dd287fdc4bc78175ff20331479dab6e1b0f98d57062de"
2875
+ dependencies = [
2876
+ "smallvec",
2877
+ ]
2878
+
2879
+ [[package]]
2880
+ name = "unicode-segmentation"
2881
+ version = "1.13.2"
2882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2883
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
2884
+
2885
+ [[package]]
2886
+ name = "unicode-width"
2887
+ version = "0.2.2"
2888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2889
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2890
+
2891
+ [[package]]
2892
+ name = "unicode-xid"
2893
+ version = "0.2.6"
2894
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2895
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2896
+
2897
+ [[package]]
2898
+ name = "unicode_categories"
2899
+ version = "0.1.1"
2900
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2901
+ checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2902
+
2903
+ [[package]]
2904
+ name = "untrusted"
2905
+ version = "0.9.0"
2906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2907
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2908
+
2909
+ [[package]]
2910
+ name = "ureq"
2911
+ version = "2.12.1"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
2914
+ dependencies = [
2915
+ "base64 0.22.1",
2916
+ "flate2",
2917
+ "log",
2918
+ "once_cell",
2919
+ "rustls",
2920
+ "rustls-pki-types",
2921
+ "serde",
2922
+ "serde_json",
2923
+ "socks",
2924
+ "url",
2925
+ "webpki-roots 0.26.11",
2926
+ ]
2927
+
2928
+ [[package]]
2929
+ name = "url"
2930
+ version = "2.5.8"
2931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2932
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2933
+ dependencies = [
2934
+ "form_urlencoded",
2935
+ "idna",
2936
+ "percent-encoding",
2937
+ "serde",
2938
+ ]
2939
+
2940
+ [[package]]
2941
+ name = "utf8_iter"
2942
+ version = "1.0.4"
2943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2944
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2945
+
2946
+ [[package]]
2947
+ name = "uuid"
2948
+ version = "1.23.0"
2949
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2950
+ checksum = "5ac8b6f42ead25368cf5b098aeb3dc8a1a2c05a3eee8a9a1a68c640edbfc79d9"
2951
+ dependencies = [
2952
+ "getrandom 0.4.2",
2953
+ "js-sys",
2954
+ "serde_core",
2955
+ "wasm-bindgen",
2956
+ ]
2957
+
2958
+ [[package]]
2959
+ name = "valuable"
2960
+ version = "0.1.1"
2961
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2962
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2963
+
2964
+ [[package]]
2965
+ name = "version_check"
2966
+ version = "0.9.5"
2967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2968
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2969
+
2970
+ [[package]]
2971
+ name = "vsimd"
2972
+ version = "0.8.0"
2973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2974
+ checksum = "5c3082ca00d5a5ef149bb8b555a72ae84c9c59f7250f013ac822ac2e49b19c64"
2975
+
2976
+ [[package]]
2977
+ name = "walkdir"
2978
+ version = "2.5.0"
2979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2980
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2981
+ dependencies = [
2982
+ "same-file",
2983
+ "winapi-util",
2984
+ ]
2985
+
2986
+ [[package]]
2987
+ name = "want"
2988
+ version = "0.3.1"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2991
+ dependencies = [
2992
+ "try-lock",
2993
+ ]
2994
+
2995
+ [[package]]
2996
+ name = "wasi"
2997
+ version = "0.11.1+wasi-snapshot-preview1"
2998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2999
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3000
+
3001
+ [[package]]
3002
+ name = "wasip2"
3003
+ version = "1.0.2+wasi-0.2.9"
3004
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3005
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3006
+ dependencies = [
3007
+ "wit-bindgen",
3008
+ ]
3009
+
3010
+ [[package]]
3011
+ name = "wasip3"
3012
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3015
+ dependencies = [
3016
+ "wit-bindgen",
3017
+ ]
3018
+
3019
+ [[package]]
3020
+ name = "wasm-bindgen"
3021
+ version = "0.2.114"
3022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3023
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
3024
+ dependencies = [
3025
+ "cfg-if",
3026
+ "once_cell",
3027
+ "rustversion",
3028
+ "wasm-bindgen-macro",
3029
+ "wasm-bindgen-shared",
3030
+ ]
3031
+
3032
+ [[package]]
3033
+ name = "wasm-bindgen-futures"
3034
+ version = "0.4.64"
3035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3036
+ checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
3037
+ dependencies = [
3038
+ "cfg-if",
3039
+ "futures-util",
3040
+ "js-sys",
3041
+ "once_cell",
3042
+ "wasm-bindgen",
3043
+ "web-sys",
3044
+ ]
3045
+
3046
+ [[package]]
3047
+ name = "wasm-bindgen-macro"
3048
+ version = "0.2.114"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
3051
+ dependencies = [
3052
+ "quote",
3053
+ "wasm-bindgen-macro-support",
3054
+ ]
3055
+
3056
+ [[package]]
3057
+ name = "wasm-bindgen-macro-support"
3058
+ version = "0.2.114"
3059
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3060
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
3061
+ dependencies = [
3062
+ "bumpalo",
3063
+ "proc-macro2",
3064
+ "quote",
3065
+ "syn",
3066
+ "wasm-bindgen-shared",
3067
+ ]
3068
+
3069
+ [[package]]
3070
+ name = "wasm-bindgen-shared"
3071
+ version = "0.2.114"
3072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3073
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
3074
+ dependencies = [
3075
+ "unicode-ident",
3076
+ ]
3077
+
3078
+ [[package]]
3079
+ name = "wasm-encoder"
3080
+ version = "0.244.0"
3081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3082
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3083
+ dependencies = [
3084
+ "leb128fmt",
3085
+ "wasmparser",
3086
+ ]
3087
+
3088
+ [[package]]
3089
+ name = "wasm-metadata"
3090
+ version = "0.244.0"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3093
+ dependencies = [
3094
+ "anyhow",
3095
+ "indexmap",
3096
+ "wasm-encoder",
3097
+ "wasmparser",
3098
+ ]
3099
+
3100
+ [[package]]
3101
+ name = "wasm-streams"
3102
+ version = "0.4.2"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3105
+ dependencies = [
3106
+ "futures-util",
3107
+ "js-sys",
3108
+ "wasm-bindgen",
3109
+ "wasm-bindgen-futures",
3110
+ "web-sys",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "wasm-streams"
3115
+ version = "0.5.0"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb"
3118
+ dependencies = [
3119
+ "futures-util",
3120
+ "js-sys",
3121
+ "wasm-bindgen",
3122
+ "wasm-bindgen-futures",
3123
+ "web-sys",
3124
+ ]
3125
+
3126
+ [[package]]
3127
+ name = "wasmparser"
3128
+ version = "0.244.0"
3129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3130
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3131
+ dependencies = [
3132
+ "bitflags",
3133
+ "hashbrown 0.15.5",
3134
+ "indexmap",
3135
+ "semver",
3136
+ ]
3137
+
3138
+ [[package]]
3139
+ name = "web-sys"
3140
+ version = "0.3.91"
3141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3142
+ checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
3143
+ dependencies = [
3144
+ "js-sys",
3145
+ "wasm-bindgen",
3146
+ ]
3147
+
3148
+ [[package]]
3149
+ name = "web-time"
3150
+ version = "1.1.0"
3151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3152
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3153
+ dependencies = [
3154
+ "js-sys",
3155
+ "wasm-bindgen",
3156
+ ]
3157
+
3158
+ [[package]]
3159
+ name = "webpki-root-certs"
3160
+ version = "1.0.6"
3161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3162
+ checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
3163
+ dependencies = [
3164
+ "rustls-pki-types",
3165
+ ]
3166
+
3167
+ [[package]]
3168
+ name = "webpki-roots"
3169
+ version = "0.26.11"
3170
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3171
+ checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3172
+ dependencies = [
3173
+ "webpki-roots 1.0.6",
3174
+ ]
3175
+
3176
+ [[package]]
3177
+ name = "webpki-roots"
3178
+ version = "1.0.6"
3179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3180
+ checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
3181
+ dependencies = [
3182
+ "rustls-pki-types",
3183
+ ]
3184
+
3185
+ [[package]]
3186
+ name = "winapi"
3187
+ version = "0.3.9"
3188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3189
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3190
+ dependencies = [
3191
+ "winapi-i686-pc-windows-gnu",
3192
+ "winapi-x86_64-pc-windows-gnu",
3193
+ ]
3194
+
3195
+ [[package]]
3196
+ name = "winapi-i686-pc-windows-gnu"
3197
+ version = "0.4.0"
3198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3199
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3200
+
3201
+ [[package]]
3202
+ name = "winapi-util"
3203
+ version = "0.1.11"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3206
+ dependencies = [
3207
+ "windows-sys 0.61.2",
3208
+ ]
3209
+
3210
+ [[package]]
3211
+ name = "winapi-x86_64-pc-windows-gnu"
3212
+ version = "0.4.0"
3213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3214
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3215
+
3216
+ [[package]]
3217
+ name = "windows-core"
3218
+ version = "0.62.2"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3221
+ dependencies = [
3222
+ "windows-implement",
3223
+ "windows-interface",
3224
+ "windows-link",
3225
+ "windows-result",
3226
+ "windows-strings",
3227
+ ]
3228
+
3229
+ [[package]]
3230
+ name = "windows-implement"
3231
+ version = "0.60.2"
3232
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3233
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3234
+ dependencies = [
3235
+ "proc-macro2",
3236
+ "quote",
3237
+ "syn",
3238
+ ]
3239
+
3240
+ [[package]]
3241
+ name = "windows-interface"
3242
+ version = "0.59.3"
3243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3244
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3245
+ dependencies = [
3246
+ "proc-macro2",
3247
+ "quote",
3248
+ "syn",
3249
+ ]
3250
+
3251
+ [[package]]
3252
+ name = "windows-link"
3253
+ version = "0.2.1"
3254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3255
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3256
+
3257
+ [[package]]
3258
+ name = "windows-result"
3259
+ version = "0.4.1"
3260
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3261
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3262
+ dependencies = [
3263
+ "windows-link",
3264
+ ]
3265
+
3266
+ [[package]]
3267
+ name = "windows-strings"
3268
+ version = "0.5.1"
3269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3270
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3271
+ dependencies = [
3272
+ "windows-link",
3273
+ ]
3274
+
3275
+ [[package]]
3276
+ name = "windows-sys"
3277
+ version = "0.45.0"
3278
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3279
+ checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3280
+ dependencies = [
3281
+ "windows-targets 0.42.2",
3282
+ ]
3283
+
3284
+ [[package]]
3285
+ name = "windows-sys"
3286
+ version = "0.52.0"
3287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3288
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3289
+ dependencies = [
3290
+ "windows-targets 0.52.6",
3291
+ ]
3292
+
3293
+ [[package]]
3294
+ name = "windows-sys"
3295
+ version = "0.59.0"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3298
+ dependencies = [
3299
+ "windows-targets 0.52.6",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "windows-sys"
3304
+ version = "0.60.2"
3305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3306
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3307
+ dependencies = [
3308
+ "windows-targets 0.53.5",
3309
+ ]
3310
+
3311
+ [[package]]
3312
+ name = "windows-sys"
3313
+ version = "0.61.2"
3314
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3315
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3316
+ dependencies = [
3317
+ "windows-link",
3318
+ ]
3319
+
3320
+ [[package]]
3321
+ name = "windows-targets"
3322
+ version = "0.42.2"
3323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3324
+ checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
3325
+ dependencies = [
3326
+ "windows_aarch64_gnullvm 0.42.2",
3327
+ "windows_aarch64_msvc 0.42.2",
3328
+ "windows_i686_gnu 0.42.2",
3329
+ "windows_i686_msvc 0.42.2",
3330
+ "windows_x86_64_gnu 0.42.2",
3331
+ "windows_x86_64_gnullvm 0.42.2",
3332
+ "windows_x86_64_msvc 0.42.2",
3333
+ ]
3334
+
3335
+ [[package]]
3336
+ name = "windows-targets"
3337
+ version = "0.52.6"
3338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3339
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3340
+ dependencies = [
3341
+ "windows_aarch64_gnullvm 0.52.6",
3342
+ "windows_aarch64_msvc 0.52.6",
3343
+ "windows_i686_gnu 0.52.6",
3344
+ "windows_i686_gnullvm 0.52.6",
3345
+ "windows_i686_msvc 0.52.6",
3346
+ "windows_x86_64_gnu 0.52.6",
3347
+ "windows_x86_64_gnullvm 0.52.6",
3348
+ "windows_x86_64_msvc 0.52.6",
3349
+ ]
3350
+
3351
+ [[package]]
3352
+ name = "windows-targets"
3353
+ version = "0.53.5"
3354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3355
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3356
+ dependencies = [
3357
+ "windows-link",
3358
+ "windows_aarch64_gnullvm 0.53.1",
3359
+ "windows_aarch64_msvc 0.53.1",
3360
+ "windows_i686_gnu 0.53.1",
3361
+ "windows_i686_gnullvm 0.53.1",
3362
+ "windows_i686_msvc 0.53.1",
3363
+ "windows_x86_64_gnu 0.53.1",
3364
+ "windows_x86_64_gnullvm 0.53.1",
3365
+ "windows_x86_64_msvc 0.53.1",
3366
+ ]
3367
+
3368
+ [[package]]
3369
+ name = "windows_aarch64_gnullvm"
3370
+ version = "0.42.2"
3371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3372
+ checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
3373
+
3374
+ [[package]]
3375
+ name = "windows_aarch64_gnullvm"
3376
+ version = "0.52.6"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3379
+
3380
+ [[package]]
3381
+ name = "windows_aarch64_gnullvm"
3382
+ version = "0.53.1"
3383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3384
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3385
+
3386
+ [[package]]
3387
+ name = "windows_aarch64_msvc"
3388
+ version = "0.42.2"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
3391
+
3392
+ [[package]]
3393
+ name = "windows_aarch64_msvc"
3394
+ version = "0.52.6"
3395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3396
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3397
+
3398
+ [[package]]
3399
+ name = "windows_aarch64_msvc"
3400
+ version = "0.53.1"
3401
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3402
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3403
+
3404
+ [[package]]
3405
+ name = "windows_i686_gnu"
3406
+ version = "0.42.2"
3407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3408
+ checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
3409
+
3410
+ [[package]]
3411
+ name = "windows_i686_gnu"
3412
+ version = "0.52.6"
3413
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3414
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3415
+
3416
+ [[package]]
3417
+ name = "windows_i686_gnu"
3418
+ version = "0.53.1"
3419
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3420
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3421
+
3422
+ [[package]]
3423
+ name = "windows_i686_gnullvm"
3424
+ version = "0.52.6"
3425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3426
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3427
+
3428
+ [[package]]
3429
+ name = "windows_i686_gnullvm"
3430
+ version = "0.53.1"
3431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3432
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3433
+
3434
+ [[package]]
3435
+ name = "windows_i686_msvc"
3436
+ version = "0.42.2"
3437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3438
+ checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
3439
+
3440
+ [[package]]
3441
+ name = "windows_i686_msvc"
3442
+ version = "0.52.6"
3443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3444
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3445
+
3446
+ [[package]]
3447
+ name = "windows_i686_msvc"
3448
+ version = "0.53.1"
3449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3450
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3451
+
3452
+ [[package]]
3453
+ name = "windows_x86_64_gnu"
3454
+ version = "0.42.2"
3455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3456
+ checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
3457
+
3458
+ [[package]]
3459
+ name = "windows_x86_64_gnu"
3460
+ version = "0.52.6"
3461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3462
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3463
+
3464
+ [[package]]
3465
+ name = "windows_x86_64_gnu"
3466
+ version = "0.53.1"
3467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3468
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3469
+
3470
+ [[package]]
3471
+ name = "windows_x86_64_gnullvm"
3472
+ version = "0.42.2"
3473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3474
+ checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
3475
+
3476
+ [[package]]
3477
+ name = "windows_x86_64_gnullvm"
3478
+ version = "0.52.6"
3479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3480
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3481
+
3482
+ [[package]]
3483
+ name = "windows_x86_64_gnullvm"
3484
+ version = "0.53.1"
3485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3486
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3487
+
3488
+ [[package]]
3489
+ name = "windows_x86_64_msvc"
3490
+ version = "0.42.2"
3491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3492
+ checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
3493
+
3494
+ [[package]]
3495
+ name = "windows_x86_64_msvc"
3496
+ version = "0.52.6"
3497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3498
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3499
+
3500
+ [[package]]
3501
+ name = "windows_x86_64_msvc"
3502
+ version = "0.53.1"
3503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3504
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3505
+
3506
+ [[package]]
3507
+ name = "wit-bindgen"
3508
+ version = "0.51.0"
3509
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3510
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3511
+ dependencies = [
3512
+ "wit-bindgen-rust-macro",
3513
+ ]
3514
+
3515
+ [[package]]
3516
+ name = "wit-bindgen-core"
3517
+ version = "0.51.0"
3518
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3519
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3520
+ dependencies = [
3521
+ "anyhow",
3522
+ "heck",
3523
+ "wit-parser",
3524
+ ]
3525
+
3526
+ [[package]]
3527
+ name = "wit-bindgen-rust"
3528
+ version = "0.51.0"
3529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3530
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3531
+ dependencies = [
3532
+ "anyhow",
3533
+ "heck",
3534
+ "indexmap",
3535
+ "prettyplease",
3536
+ "syn",
3537
+ "wasm-metadata",
3538
+ "wit-bindgen-core",
3539
+ "wit-component",
3540
+ ]
3541
+
3542
+ [[package]]
3543
+ name = "wit-bindgen-rust-macro"
3544
+ version = "0.51.0"
3545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3546
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3547
+ dependencies = [
3548
+ "anyhow",
3549
+ "prettyplease",
3550
+ "proc-macro2",
3551
+ "quote",
3552
+ "syn",
3553
+ "wit-bindgen-core",
3554
+ "wit-bindgen-rust",
3555
+ ]
3556
+
3557
+ [[package]]
3558
+ name = "wit-component"
3559
+ version = "0.244.0"
3560
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3561
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3562
+ dependencies = [
3563
+ "anyhow",
3564
+ "bitflags",
3565
+ "indexmap",
3566
+ "log",
3567
+ "serde",
3568
+ "serde_derive",
3569
+ "serde_json",
3570
+ "wasm-encoder",
3571
+ "wasm-metadata",
3572
+ "wasmparser",
3573
+ "wit-parser",
3574
+ ]
3575
+
3576
+ [[package]]
3577
+ name = "wit-parser"
3578
+ version = "0.244.0"
3579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3580
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3581
+ dependencies = [
3582
+ "anyhow",
3583
+ "id-arena",
3584
+ "indexmap",
3585
+ "log",
3586
+ "semver",
3587
+ "serde",
3588
+ "serde_derive",
3589
+ "serde_json",
3590
+ "unicode-xid",
3591
+ "wasmparser",
3592
+ ]
3593
+
3594
+ [[package]]
3595
+ name = "writeable"
3596
+ version = "0.6.2"
3597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3598
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3599
+
3600
+ [[package]]
3601
+ name = "yansi"
3602
+ version = "1.0.1"
3603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3604
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3605
+
3606
+ [[package]]
3607
+ name = "yoke"
3608
+ version = "0.8.1"
3609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3610
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3611
+ dependencies = [
3612
+ "stable_deref_trait",
3613
+ "yoke-derive",
3614
+ "zerofrom",
3615
+ ]
3616
+
3617
+ [[package]]
3618
+ name = "yoke-derive"
3619
+ version = "0.8.1"
3620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3621
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3622
+ dependencies = [
3623
+ "proc-macro2",
3624
+ "quote",
3625
+ "syn",
3626
+ "synstructure",
3627
+ ]
3628
+
3629
+ [[package]]
3630
+ name = "zerocopy"
3631
+ version = "0.8.47"
3632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3633
+ checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
3634
+ dependencies = [
3635
+ "zerocopy-derive",
3636
+ ]
3637
+
3638
+ [[package]]
3639
+ name = "zerocopy-derive"
3640
+ version = "0.8.47"
3641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3642
+ checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
3643
+ dependencies = [
3644
+ "proc-macro2",
3645
+ "quote",
3646
+ "syn",
3647
+ ]
3648
+
3649
+ [[package]]
3650
+ name = "zerofrom"
3651
+ version = "0.1.6"
3652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3653
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3654
+ dependencies = [
3655
+ "zerofrom-derive",
3656
+ ]
3657
+
3658
+ [[package]]
3659
+ name = "zerofrom-derive"
3660
+ version = "0.1.6"
3661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3662
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3663
+ dependencies = [
3664
+ "proc-macro2",
3665
+ "quote",
3666
+ "syn",
3667
+ "synstructure",
3668
+ ]
3669
+
3670
+ [[package]]
3671
+ name = "zeroize"
3672
+ version = "1.8.2"
3673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3674
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3675
+
3676
+ [[package]]
3677
+ name = "zerotrie"
3678
+ version = "0.2.3"
3679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3680
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3681
+ dependencies = [
3682
+ "displaydoc",
3683
+ "yoke",
3684
+ "zerofrom",
3685
+ ]
3686
+
3687
+ [[package]]
3688
+ name = "zerovec"
3689
+ version = "0.11.5"
3690
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3691
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3692
+ dependencies = [
3693
+ "yoke",
3694
+ "zerofrom",
3695
+ "zerovec-derive",
3696
+ ]
3697
+
3698
+ [[package]]
3699
+ name = "zerovec-derive"
3700
+ version = "0.11.2"
3701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3702
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3703
+ dependencies = [
3704
+ "proc-macro2",
3705
+ "quote",
3706
+ "syn",
3707
+ ]
3708
+
3709
+ [[package]]
3710
+ name = "zmij"
3711
+ version = "1.0.21"
3712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3713
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"