agentoven 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. agentoven-0.1.0/Cargo.lock +3357 -0
  2. agentoven-0.1.0/Cargo.toml +76 -0
  3. agentoven-0.1.0/PKG-INFO +67 -0
  4. agentoven-0.1.0/README.md +47 -0
  5. agentoven-0.1.0/agentoven/__init__.py +39 -0
  6. agentoven-0.1.0/agentoven/_native.pyi +71 -0
  7. agentoven-0.1.0/crates/a2a-ao/Cargo.toml +39 -0
  8. agentoven-0.1.0/crates/a2a-ao/README.md +60 -0
  9. agentoven-0.1.0/crates/a2a-ao/src/agent_card.rs +426 -0
  10. agentoven-0.1.0/crates/a2a-ao/src/artifact.rs +68 -0
  11. agentoven-0.1.0/crates/a2a-ao/src/client.rs +478 -0
  12. agentoven-0.1.0/crates/a2a-ao/src/error.rs +70 -0
  13. agentoven-0.1.0/crates/a2a-ao/src/lib.rs +56 -0
  14. agentoven-0.1.0/crates/a2a-ao/src/message.rs +224 -0
  15. agentoven-0.1.0/crates/a2a-ao/src/notification.rs +57 -0
  16. agentoven-0.1.0/crates/a2a-ao/src/task.rs +279 -0
  17. agentoven-0.1.0/crates/a2a-ao/src/transport/jsonrpc.rs +321 -0
  18. agentoven-0.1.0/crates/a2a-ao/src/transport/mod.rs +9 -0
  19. agentoven-0.1.0/crates/a2a-ao/src/transport/sse.rs +55 -0
  20. agentoven-0.1.0/crates/agentoven-core/Cargo.toml +35 -0
  21. agentoven-0.1.0/crates/agentoven-core/README.md +51 -0
  22. agentoven-0.1.0/crates/agentoven-core/src/agent.rs +219 -0
  23. agentoven-0.1.0/crates/agentoven-core/src/client.rs +163 -0
  24. agentoven-0.1.0/crates/agentoven-core/src/config.rs +67 -0
  25. agentoven-0.1.0/crates/agentoven-core/src/ingredient.rs +125 -0
  26. agentoven-0.1.0/crates/agentoven-core/src/lib.rs +52 -0
  27. agentoven-0.1.0/crates/agentoven-core/src/recipe.rs +192 -0
  28. agentoven-0.1.0/crates/agentoven-core/src/router.rs +104 -0
  29. agentoven-0.1.0/crates/agentoven-core/src/telemetry.rs +64 -0
  30. agentoven-0.1.0/pyproject.toml +31 -0
  31. agentoven-0.1.0/sdk/python/Cargo.toml +19 -0
  32. agentoven-0.1.0/sdk/python/README.md +47 -0
  33. agentoven-0.1.0/sdk/python/agentoven/__init__.py +39 -0
  34. agentoven-0.1.0/sdk/python/agentoven/_native.pyi +71 -0
  35. agentoven-0.1.0/sdk/python/src/lib.rs +243 -0
@@ -0,0 +1,3357 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "a2a-ao"
7
+ version = "0.2.0"
8
+ dependencies = [
9
+ "async-trait",
10
+ "base64",
11
+ "chrono",
12
+ "eventsource-stream",
13
+ "futures",
14
+ "pin-project-lite",
15
+ "pretty_assertions",
16
+ "reqwest",
17
+ "schemars",
18
+ "serde",
19
+ "serde_json",
20
+ "thiserror 2.0.18",
21
+ "tokio",
22
+ "tokio-stream",
23
+ "tracing",
24
+ "url",
25
+ "uuid",
26
+ "wiremock",
27
+ ]
28
+
29
+ [[package]]
30
+ name = "agentoven-cli"
31
+ version = "0.2.0"
32
+ dependencies = [
33
+ "a2a-ao",
34
+ "agentoven-core",
35
+ "anyhow",
36
+ "chrono",
37
+ "clap",
38
+ "colored",
39
+ "dialoguer",
40
+ "dirs",
41
+ "indicatif",
42
+ "serde",
43
+ "serde_json",
44
+ "tabled",
45
+ "tokio",
46
+ "toml",
47
+ ]
48
+
49
+ [[package]]
50
+ name = "agentoven-core"
51
+ version = "0.2.0"
52
+ dependencies = [
53
+ "a2a-ao",
54
+ "anyhow",
55
+ "async-trait",
56
+ "base64",
57
+ "chrono",
58
+ "opentelemetry",
59
+ "opentelemetry-otlp",
60
+ "opentelemetry_sdk",
61
+ "reqwest",
62
+ "serde",
63
+ "serde_json",
64
+ "thiserror 2.0.18",
65
+ "tokio",
66
+ "tracing",
67
+ "tracing-opentelemetry",
68
+ "tracing-subscriber",
69
+ "url",
70
+ "uuid",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "agentoven-python"
75
+ version = "0.2.0"
76
+ dependencies = [
77
+ "a2a-ao",
78
+ "agentoven-core",
79
+ "pyo3",
80
+ "serde_json",
81
+ "tokio",
82
+ ]
83
+
84
+ [[package]]
85
+ name = "aho-corasick"
86
+ version = "1.1.4"
87
+ source = "registry+https://github.com/rust-lang/crates.io-index"
88
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
89
+ dependencies = [
90
+ "memchr",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "android_system_properties"
95
+ version = "0.1.5"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
98
+ dependencies = [
99
+ "libc",
100
+ ]
101
+
102
+ [[package]]
103
+ name = "anstream"
104
+ version = "0.6.21"
105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
106
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
107
+ dependencies = [
108
+ "anstyle",
109
+ "anstyle-parse",
110
+ "anstyle-query",
111
+ "anstyle-wincon",
112
+ "colorchoice",
113
+ "is_terminal_polyfill",
114
+ "utf8parse",
115
+ ]
116
+
117
+ [[package]]
118
+ name = "anstyle"
119
+ version = "1.0.13"
120
+ source = "registry+https://github.com/rust-lang/crates.io-index"
121
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
122
+
123
+ [[package]]
124
+ name = "anstyle-parse"
125
+ version = "0.2.7"
126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
127
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
128
+ dependencies = [
129
+ "utf8parse",
130
+ ]
131
+
132
+ [[package]]
133
+ name = "anstyle-query"
134
+ version = "1.1.5"
135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
136
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
137
+ dependencies = [
138
+ "windows-sys 0.61.2",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "anstyle-wincon"
143
+ version = "3.0.11"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
146
+ dependencies = [
147
+ "anstyle",
148
+ "once_cell_polyfill",
149
+ "windows-sys 0.61.2",
150
+ ]
151
+
152
+ [[package]]
153
+ name = "anyhow"
154
+ version = "1.0.101"
155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
156
+ checksum = "5f0e0fee31ef5ed1ba1316088939cea399010ed7731dba877ed44aeb407a75ea"
157
+
158
+ [[package]]
159
+ name = "assert-json-diff"
160
+ version = "2.0.2"
161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
162
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
163
+ dependencies = [
164
+ "serde",
165
+ "serde_json",
166
+ ]
167
+
168
+ [[package]]
169
+ name = "async-stream"
170
+ version = "0.3.6"
171
+ source = "registry+https://github.com/rust-lang/crates.io-index"
172
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
173
+ dependencies = [
174
+ "async-stream-impl",
175
+ "futures-core",
176
+ "pin-project-lite",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "async-stream-impl"
181
+ version = "0.3.6"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
184
+ dependencies = [
185
+ "proc-macro2",
186
+ "quote",
187
+ "syn 2.0.115",
188
+ ]
189
+
190
+ [[package]]
191
+ name = "async-trait"
192
+ version = "0.1.89"
193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
194
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
195
+ dependencies = [
196
+ "proc-macro2",
197
+ "quote",
198
+ "syn 2.0.115",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "atomic-waker"
203
+ version = "1.1.2"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
206
+
207
+ [[package]]
208
+ name = "autocfg"
209
+ version = "1.5.0"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
212
+
213
+ [[package]]
214
+ name = "axum"
215
+ version = "0.7.9"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
218
+ dependencies = [
219
+ "async-trait",
220
+ "axum-core",
221
+ "bytes",
222
+ "futures-util",
223
+ "http",
224
+ "http-body",
225
+ "http-body-util",
226
+ "itoa",
227
+ "matchit",
228
+ "memchr",
229
+ "mime",
230
+ "percent-encoding",
231
+ "pin-project-lite",
232
+ "rustversion",
233
+ "serde",
234
+ "sync_wrapper",
235
+ "tower 0.5.3",
236
+ "tower-layer",
237
+ "tower-service",
238
+ ]
239
+
240
+ [[package]]
241
+ name = "axum-core"
242
+ version = "0.4.5"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
245
+ dependencies = [
246
+ "async-trait",
247
+ "bytes",
248
+ "futures-util",
249
+ "http",
250
+ "http-body",
251
+ "http-body-util",
252
+ "mime",
253
+ "pin-project-lite",
254
+ "rustversion",
255
+ "sync_wrapper",
256
+ "tower-layer",
257
+ "tower-service",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "base64"
262
+ version = "0.22.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
265
+
266
+ [[package]]
267
+ name = "bitflags"
268
+ version = "2.10.0"
269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
270
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
271
+
272
+ [[package]]
273
+ name = "bumpalo"
274
+ version = "3.19.1"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "5dd9dc738b7a8311c7ade152424974d8115f2cdad61e8dab8dac9f2362298510"
277
+
278
+ [[package]]
279
+ name = "bytecount"
280
+ version = "0.6.9"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "175812e0be2bccb6abe50bb8d566126198344f707e304f45c648fd8f2cc0365e"
283
+
284
+ [[package]]
285
+ name = "bytes"
286
+ version = "1.11.1"
287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
288
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
289
+
290
+ [[package]]
291
+ name = "cc"
292
+ version = "1.2.56"
293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
294
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
295
+ dependencies = [
296
+ "find-msvc-tools",
297
+ "shlex",
298
+ ]
299
+
300
+ [[package]]
301
+ name = "cfg-if"
302
+ version = "1.0.4"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
305
+
306
+ [[package]]
307
+ name = "chrono"
308
+ version = "0.4.43"
309
+ source = "registry+https://github.com/rust-lang/crates.io-index"
310
+ checksum = "fac4744fb15ae8337dc853fee7fb3f4e48c0fbaa23d0afe49c447b4fab126118"
311
+ dependencies = [
312
+ "iana-time-zone",
313
+ "js-sys",
314
+ "num-traits",
315
+ "serde",
316
+ "wasm-bindgen",
317
+ "windows-link",
318
+ ]
319
+
320
+ [[package]]
321
+ name = "clap"
322
+ version = "4.5.58"
323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
324
+ checksum = "63be97961acde393029492ce0be7a1af7e323e6bae9511ebfac33751be5e6806"
325
+ dependencies = [
326
+ "clap_builder",
327
+ "clap_derive",
328
+ ]
329
+
330
+ [[package]]
331
+ name = "clap_builder"
332
+ version = "4.5.58"
333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
334
+ checksum = "7f13174bda5dfd69d7e947827e5af4b0f2f94a4a3ee92912fba07a66150f21e2"
335
+ dependencies = [
336
+ "anstream",
337
+ "anstyle",
338
+ "clap_lex",
339
+ "strsim",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "clap_derive"
344
+ version = "4.5.55"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
347
+ dependencies = [
348
+ "heck 0.5.0",
349
+ "proc-macro2",
350
+ "quote",
351
+ "syn 2.0.115",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "clap_lex"
356
+ version = "1.0.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
359
+
360
+ [[package]]
361
+ name = "colorchoice"
362
+ version = "1.0.4"
363
+ source = "registry+https://github.com/rust-lang/crates.io-index"
364
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
365
+
366
+ [[package]]
367
+ name = "colored"
368
+ version = "2.2.0"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
371
+ dependencies = [
372
+ "lazy_static",
373
+ "windows-sys 0.59.0",
374
+ ]
375
+
376
+ [[package]]
377
+ name = "console"
378
+ version = "0.15.11"
379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
380
+ checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
381
+ dependencies = [
382
+ "encode_unicode",
383
+ "libc",
384
+ "once_cell",
385
+ "unicode-width 0.2.2",
386
+ "windows-sys 0.59.0",
387
+ ]
388
+
389
+ [[package]]
390
+ name = "core-foundation"
391
+ version = "0.9.4"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
394
+ dependencies = [
395
+ "core-foundation-sys",
396
+ "libc",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "core-foundation-sys"
401
+ version = "0.8.7"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
404
+
405
+ [[package]]
406
+ name = "deadpool"
407
+ version = "0.12.3"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
410
+ dependencies = [
411
+ "deadpool-runtime",
412
+ "lazy_static",
413
+ "num_cpus",
414
+ "tokio",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "deadpool-runtime"
419
+ version = "0.1.4"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
422
+
423
+ [[package]]
424
+ name = "dialoguer"
425
+ version = "0.11.0"
426
+ source = "registry+https://github.com/rust-lang/crates.io-index"
427
+ checksum = "658bce805d770f407bc62102fca7c2c64ceef2fbcb2b8bd19d2765ce093980de"
428
+ dependencies = [
429
+ "console",
430
+ "shell-words",
431
+ "tempfile",
432
+ "thiserror 1.0.69",
433
+ "zeroize",
434
+ ]
435
+
436
+ [[package]]
437
+ name = "diff"
438
+ version = "0.1.13"
439
+ source = "registry+https://github.com/rust-lang/crates.io-index"
440
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
441
+
442
+ [[package]]
443
+ name = "dirs"
444
+ version = "5.0.1"
445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
446
+ checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
447
+ dependencies = [
448
+ "dirs-sys",
449
+ ]
450
+
451
+ [[package]]
452
+ name = "dirs-sys"
453
+ version = "0.4.1"
454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
455
+ checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
456
+ dependencies = [
457
+ "libc",
458
+ "option-ext",
459
+ "redox_users",
460
+ "windows-sys 0.48.0",
461
+ ]
462
+
463
+ [[package]]
464
+ name = "displaydoc"
465
+ version = "0.2.5"
466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
467
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
468
+ dependencies = [
469
+ "proc-macro2",
470
+ "quote",
471
+ "syn 2.0.115",
472
+ ]
473
+
474
+ [[package]]
475
+ name = "dyn-clone"
476
+ version = "1.0.20"
477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
478
+ checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
479
+
480
+ [[package]]
481
+ name = "either"
482
+ version = "1.15.0"
483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
484
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
485
+
486
+ [[package]]
487
+ name = "encode_unicode"
488
+ version = "1.0.0"
489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
490
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
491
+
492
+ [[package]]
493
+ name = "encoding_rs"
494
+ version = "0.8.35"
495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
496
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
497
+ dependencies = [
498
+ "cfg-if",
499
+ ]
500
+
501
+ [[package]]
502
+ name = "equivalent"
503
+ version = "1.0.2"
504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
505
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
506
+
507
+ [[package]]
508
+ name = "errno"
509
+ version = "0.3.14"
510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
511
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
512
+ dependencies = [
513
+ "libc",
514
+ "windows-sys 0.61.2",
515
+ ]
516
+
517
+ [[package]]
518
+ name = "eventsource-stream"
519
+ version = "0.2.3"
520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
521
+ checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab"
522
+ dependencies = [
523
+ "futures-core",
524
+ "nom",
525
+ "pin-project-lite",
526
+ ]
527
+
528
+ [[package]]
529
+ name = "fastrand"
530
+ version = "2.3.0"
531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
532
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
533
+
534
+ [[package]]
535
+ name = "find-msvc-tools"
536
+ version = "0.1.9"
537
+ source = "registry+https://github.com/rust-lang/crates.io-index"
538
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
539
+
540
+ [[package]]
541
+ name = "fnv"
542
+ version = "1.0.7"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
545
+
546
+ [[package]]
547
+ name = "foldhash"
548
+ version = "0.1.5"
549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
550
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
551
+
552
+ [[package]]
553
+ name = "foreign-types"
554
+ version = "0.3.2"
555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
556
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
557
+ dependencies = [
558
+ "foreign-types-shared",
559
+ ]
560
+
561
+ [[package]]
562
+ name = "foreign-types-shared"
563
+ version = "0.1.1"
564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
565
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
566
+
567
+ [[package]]
568
+ name = "form_urlencoded"
569
+ version = "1.2.2"
570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
571
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
572
+ dependencies = [
573
+ "percent-encoding",
574
+ ]
575
+
576
+ [[package]]
577
+ name = "futures"
578
+ version = "0.3.31"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
581
+ dependencies = [
582
+ "futures-channel",
583
+ "futures-core",
584
+ "futures-executor",
585
+ "futures-io",
586
+ "futures-sink",
587
+ "futures-task",
588
+ "futures-util",
589
+ ]
590
+
591
+ [[package]]
592
+ name = "futures-channel"
593
+ version = "0.3.31"
594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
595
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
596
+ dependencies = [
597
+ "futures-core",
598
+ "futures-sink",
599
+ ]
600
+
601
+ [[package]]
602
+ name = "futures-core"
603
+ version = "0.3.31"
604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
605
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
606
+
607
+ [[package]]
608
+ name = "futures-executor"
609
+ version = "0.3.31"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
612
+ dependencies = [
613
+ "futures-core",
614
+ "futures-task",
615
+ "futures-util",
616
+ ]
617
+
618
+ [[package]]
619
+ name = "futures-io"
620
+ version = "0.3.31"
621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
622
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
623
+
624
+ [[package]]
625
+ name = "futures-macro"
626
+ version = "0.3.31"
627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
628
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
629
+ dependencies = [
630
+ "proc-macro2",
631
+ "quote",
632
+ "syn 2.0.115",
633
+ ]
634
+
635
+ [[package]]
636
+ name = "futures-sink"
637
+ version = "0.3.31"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
640
+
641
+ [[package]]
642
+ name = "futures-task"
643
+ version = "0.3.31"
644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
645
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
646
+
647
+ [[package]]
648
+ name = "futures-util"
649
+ version = "0.3.31"
650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
651
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
652
+ dependencies = [
653
+ "futures-channel",
654
+ "futures-core",
655
+ "futures-io",
656
+ "futures-macro",
657
+ "futures-sink",
658
+ "futures-task",
659
+ "memchr",
660
+ "pin-project-lite",
661
+ "pin-utils",
662
+ "slab",
663
+ ]
664
+
665
+ [[package]]
666
+ name = "getrandom"
667
+ version = "0.2.17"
668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
669
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
670
+ dependencies = [
671
+ "cfg-if",
672
+ "libc",
673
+ "wasi",
674
+ ]
675
+
676
+ [[package]]
677
+ name = "getrandom"
678
+ version = "0.3.4"
679
+ source = "registry+https://github.com/rust-lang/crates.io-index"
680
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
681
+ dependencies = [
682
+ "cfg-if",
683
+ "libc",
684
+ "r-efi",
685
+ "wasip2",
686
+ ]
687
+
688
+ [[package]]
689
+ name = "getrandom"
690
+ version = "0.4.1"
691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
692
+ checksum = "139ef39800118c7683f2fd3c98c1b23c09ae076556b435f8e9064ae108aaeeec"
693
+ dependencies = [
694
+ "cfg-if",
695
+ "libc",
696
+ "r-efi",
697
+ "wasip2",
698
+ "wasip3",
699
+ ]
700
+
701
+ [[package]]
702
+ name = "glob"
703
+ version = "0.3.3"
704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
705
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
706
+
707
+ [[package]]
708
+ name = "h2"
709
+ version = "0.4.13"
710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
711
+ checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
712
+ dependencies = [
713
+ "atomic-waker",
714
+ "bytes",
715
+ "fnv",
716
+ "futures-core",
717
+ "futures-sink",
718
+ "http",
719
+ "indexmap 2.13.0",
720
+ "slab",
721
+ "tokio",
722
+ "tokio-util",
723
+ "tracing",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "hashbrown"
728
+ version = "0.12.3"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
731
+
732
+ [[package]]
733
+ name = "hashbrown"
734
+ version = "0.15.5"
735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
736
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
737
+ dependencies = [
738
+ "foldhash",
739
+ ]
740
+
741
+ [[package]]
742
+ name = "hashbrown"
743
+ version = "0.16.1"
744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
745
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
746
+
747
+ [[package]]
748
+ name = "heck"
749
+ version = "0.4.1"
750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
751
+ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
752
+
753
+ [[package]]
754
+ name = "heck"
755
+ version = "0.5.0"
756
+ source = "registry+https://github.com/rust-lang/crates.io-index"
757
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
758
+
759
+ [[package]]
760
+ name = "hermit-abi"
761
+ version = "0.5.2"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
764
+
765
+ [[package]]
766
+ name = "http"
767
+ version = "1.4.0"
768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
769
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
770
+ dependencies = [
771
+ "bytes",
772
+ "itoa",
773
+ ]
774
+
775
+ [[package]]
776
+ name = "http-body"
777
+ version = "1.0.1"
778
+ source = "registry+https://github.com/rust-lang/crates.io-index"
779
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
780
+ dependencies = [
781
+ "bytes",
782
+ "http",
783
+ ]
784
+
785
+ [[package]]
786
+ name = "http-body-util"
787
+ version = "0.1.3"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
790
+ dependencies = [
791
+ "bytes",
792
+ "futures-core",
793
+ "http",
794
+ "http-body",
795
+ "pin-project-lite",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "httparse"
800
+ version = "1.10.1"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
803
+
804
+ [[package]]
805
+ name = "httpdate"
806
+ version = "1.0.3"
807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
808
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
809
+
810
+ [[package]]
811
+ name = "hyper"
812
+ version = "1.8.1"
813
+ source = "registry+https://github.com/rust-lang/crates.io-index"
814
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
815
+ dependencies = [
816
+ "atomic-waker",
817
+ "bytes",
818
+ "futures-channel",
819
+ "futures-core",
820
+ "h2",
821
+ "http",
822
+ "http-body",
823
+ "httparse",
824
+ "httpdate",
825
+ "itoa",
826
+ "pin-project-lite",
827
+ "pin-utils",
828
+ "smallvec",
829
+ "tokio",
830
+ "want",
831
+ ]
832
+
833
+ [[package]]
834
+ name = "hyper-rustls"
835
+ version = "0.27.7"
836
+ source = "registry+https://github.com/rust-lang/crates.io-index"
837
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
838
+ dependencies = [
839
+ "http",
840
+ "hyper",
841
+ "hyper-util",
842
+ "rustls",
843
+ "rustls-pki-types",
844
+ "tokio",
845
+ "tokio-rustls",
846
+ "tower-service",
847
+ ]
848
+
849
+ [[package]]
850
+ name = "hyper-timeout"
851
+ version = "0.5.2"
852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
853
+ checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
854
+ dependencies = [
855
+ "hyper",
856
+ "hyper-util",
857
+ "pin-project-lite",
858
+ "tokio",
859
+ "tower-service",
860
+ ]
861
+
862
+ [[package]]
863
+ name = "hyper-tls"
864
+ version = "0.6.0"
865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
866
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
867
+ dependencies = [
868
+ "bytes",
869
+ "http-body-util",
870
+ "hyper",
871
+ "hyper-util",
872
+ "native-tls",
873
+ "tokio",
874
+ "tokio-native-tls",
875
+ "tower-service",
876
+ ]
877
+
878
+ [[package]]
879
+ name = "hyper-util"
880
+ version = "0.1.20"
881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
882
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
883
+ dependencies = [
884
+ "base64",
885
+ "bytes",
886
+ "futures-channel",
887
+ "futures-util",
888
+ "http",
889
+ "http-body",
890
+ "hyper",
891
+ "ipnet",
892
+ "libc",
893
+ "percent-encoding",
894
+ "pin-project-lite",
895
+ "socket2 0.6.2",
896
+ "system-configuration",
897
+ "tokio",
898
+ "tower-service",
899
+ "tracing",
900
+ "windows-registry",
901
+ ]
902
+
903
+ [[package]]
904
+ name = "iana-time-zone"
905
+ version = "0.1.65"
906
+ source = "registry+https://github.com/rust-lang/crates.io-index"
907
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
908
+ dependencies = [
909
+ "android_system_properties",
910
+ "core-foundation-sys",
911
+ "iana-time-zone-haiku",
912
+ "js-sys",
913
+ "log",
914
+ "wasm-bindgen",
915
+ "windows-core",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "iana-time-zone-haiku"
920
+ version = "0.1.2"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
923
+ dependencies = [
924
+ "cc",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "icu_collections"
929
+ version = "2.1.1"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
932
+ dependencies = [
933
+ "displaydoc",
934
+ "potential_utf",
935
+ "yoke",
936
+ "zerofrom",
937
+ "zerovec",
938
+ ]
939
+
940
+ [[package]]
941
+ name = "icu_locale_core"
942
+ version = "2.1.1"
943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
944
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
945
+ dependencies = [
946
+ "displaydoc",
947
+ "litemap",
948
+ "tinystr",
949
+ "writeable",
950
+ "zerovec",
951
+ ]
952
+
953
+ [[package]]
954
+ name = "icu_normalizer"
955
+ version = "2.1.1"
956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
957
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
958
+ dependencies = [
959
+ "icu_collections",
960
+ "icu_normalizer_data",
961
+ "icu_properties",
962
+ "icu_provider",
963
+ "smallvec",
964
+ "zerovec",
965
+ ]
966
+
967
+ [[package]]
968
+ name = "icu_normalizer_data"
969
+ version = "2.1.1"
970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
971
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
972
+
973
+ [[package]]
974
+ name = "icu_properties"
975
+ version = "2.1.2"
976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
977
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
978
+ dependencies = [
979
+ "icu_collections",
980
+ "icu_locale_core",
981
+ "icu_properties_data",
982
+ "icu_provider",
983
+ "zerotrie",
984
+ "zerovec",
985
+ ]
986
+
987
+ [[package]]
988
+ name = "icu_properties_data"
989
+ version = "2.1.2"
990
+ source = "registry+https://github.com/rust-lang/crates.io-index"
991
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
992
+
993
+ [[package]]
994
+ name = "icu_provider"
995
+ version = "2.1.1"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
998
+ dependencies = [
999
+ "displaydoc",
1000
+ "icu_locale_core",
1001
+ "writeable",
1002
+ "yoke",
1003
+ "zerofrom",
1004
+ "zerotrie",
1005
+ "zerovec",
1006
+ ]
1007
+
1008
+ [[package]]
1009
+ name = "id-arena"
1010
+ version = "2.3.0"
1011
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1012
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1013
+
1014
+ [[package]]
1015
+ name = "idna"
1016
+ version = "1.1.0"
1017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1018
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1019
+ dependencies = [
1020
+ "idna_adapter",
1021
+ "smallvec",
1022
+ "utf8_iter",
1023
+ ]
1024
+
1025
+ [[package]]
1026
+ name = "idna_adapter"
1027
+ version = "1.2.1"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1030
+ dependencies = [
1031
+ "icu_normalizer",
1032
+ "icu_properties",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "indexmap"
1037
+ version = "1.9.3"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1040
+ dependencies = [
1041
+ "autocfg",
1042
+ "hashbrown 0.12.3",
1043
+ ]
1044
+
1045
+ [[package]]
1046
+ name = "indexmap"
1047
+ version = "2.13.0"
1048
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1049
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1050
+ dependencies = [
1051
+ "equivalent",
1052
+ "hashbrown 0.16.1",
1053
+ "serde",
1054
+ "serde_core",
1055
+ ]
1056
+
1057
+ [[package]]
1058
+ name = "indicatif"
1059
+ version = "0.17.11"
1060
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1061
+ checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
1062
+ dependencies = [
1063
+ "console",
1064
+ "number_prefix",
1065
+ "portable-atomic",
1066
+ "unicode-width 0.2.2",
1067
+ "web-time",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "indoc"
1072
+ version = "2.0.7"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1075
+ dependencies = [
1076
+ "rustversion",
1077
+ ]
1078
+
1079
+ [[package]]
1080
+ name = "ipnet"
1081
+ version = "2.11.0"
1082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1083
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1084
+
1085
+ [[package]]
1086
+ name = "iri-string"
1087
+ version = "0.7.10"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
1090
+ dependencies = [
1091
+ "memchr",
1092
+ "serde",
1093
+ ]
1094
+
1095
+ [[package]]
1096
+ name = "is_terminal_polyfill"
1097
+ version = "1.70.2"
1098
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1099
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1100
+
1101
+ [[package]]
1102
+ name = "itertools"
1103
+ version = "0.14.0"
1104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1105
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1106
+ dependencies = [
1107
+ "either",
1108
+ ]
1109
+
1110
+ [[package]]
1111
+ name = "itoa"
1112
+ version = "1.0.17"
1113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1114
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1115
+
1116
+ [[package]]
1117
+ name = "js-sys"
1118
+ version = "0.3.85"
1119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1120
+ checksum = "8c942ebf8e95485ca0d52d97da7c5a2c387d0e7f0ba4c35e93bfcaee045955b3"
1121
+ dependencies = [
1122
+ "once_cell",
1123
+ "wasm-bindgen",
1124
+ ]
1125
+
1126
+ [[package]]
1127
+ name = "lazy_static"
1128
+ version = "1.5.0"
1129
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1130
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1131
+
1132
+ [[package]]
1133
+ name = "leb128fmt"
1134
+ version = "0.1.0"
1135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1136
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1137
+
1138
+ [[package]]
1139
+ name = "libc"
1140
+ version = "0.2.182"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1143
+
1144
+ [[package]]
1145
+ name = "libredox"
1146
+ version = "0.1.12"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "3d0b95e02c851351f877147b7deea7b1afb1df71b63aa5f8270716e0c5720616"
1149
+ dependencies = [
1150
+ "bitflags",
1151
+ "libc",
1152
+ ]
1153
+
1154
+ [[package]]
1155
+ name = "linux-raw-sys"
1156
+ version = "0.11.0"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1159
+
1160
+ [[package]]
1161
+ name = "litemap"
1162
+ version = "0.8.1"
1163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1164
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1165
+
1166
+ [[package]]
1167
+ name = "lock_api"
1168
+ version = "0.4.14"
1169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1170
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1171
+ dependencies = [
1172
+ "scopeguard",
1173
+ ]
1174
+
1175
+ [[package]]
1176
+ name = "log"
1177
+ version = "0.4.29"
1178
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1179
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1180
+
1181
+ [[package]]
1182
+ name = "matchers"
1183
+ version = "0.2.0"
1184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1185
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1186
+ dependencies = [
1187
+ "regex-automata",
1188
+ ]
1189
+
1190
+ [[package]]
1191
+ name = "matchit"
1192
+ version = "0.7.3"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1195
+
1196
+ [[package]]
1197
+ name = "memchr"
1198
+ version = "2.8.0"
1199
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1200
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1201
+
1202
+ [[package]]
1203
+ name = "memoffset"
1204
+ version = "0.9.1"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1207
+ dependencies = [
1208
+ "autocfg",
1209
+ ]
1210
+
1211
+ [[package]]
1212
+ name = "mime"
1213
+ version = "0.3.17"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1216
+
1217
+ [[package]]
1218
+ name = "minimal-lexical"
1219
+ version = "0.2.1"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1222
+
1223
+ [[package]]
1224
+ name = "mio"
1225
+ version = "1.1.1"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1228
+ dependencies = [
1229
+ "libc",
1230
+ "wasi",
1231
+ "windows-sys 0.61.2",
1232
+ ]
1233
+
1234
+ [[package]]
1235
+ name = "native-tls"
1236
+ version = "0.2.15"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "6cdede44f9a69cab2899a2049e2c3bd49bf911a157f6a3353d4a91c61abbce44"
1239
+ dependencies = [
1240
+ "libc",
1241
+ "log",
1242
+ "openssl",
1243
+ "openssl-probe",
1244
+ "openssl-sys",
1245
+ "schannel",
1246
+ "security-framework",
1247
+ "security-framework-sys",
1248
+ "tempfile",
1249
+ ]
1250
+
1251
+ [[package]]
1252
+ name = "nom"
1253
+ version = "7.1.3"
1254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1255
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1256
+ dependencies = [
1257
+ "memchr",
1258
+ "minimal-lexical",
1259
+ ]
1260
+
1261
+ [[package]]
1262
+ name = "nu-ansi-term"
1263
+ version = "0.50.3"
1264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1265
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1266
+ dependencies = [
1267
+ "windows-sys 0.61.2",
1268
+ ]
1269
+
1270
+ [[package]]
1271
+ name = "num-traits"
1272
+ version = "0.2.19"
1273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1274
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1275
+ dependencies = [
1276
+ "autocfg",
1277
+ ]
1278
+
1279
+ [[package]]
1280
+ name = "num_cpus"
1281
+ version = "1.17.0"
1282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1283
+ checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1284
+ dependencies = [
1285
+ "hermit-abi",
1286
+ "libc",
1287
+ ]
1288
+
1289
+ [[package]]
1290
+ name = "number_prefix"
1291
+ version = "0.4.0"
1292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1293
+ checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
1294
+
1295
+ [[package]]
1296
+ name = "once_cell"
1297
+ version = "1.21.3"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1300
+
1301
+ [[package]]
1302
+ name = "once_cell_polyfill"
1303
+ version = "1.70.2"
1304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1305
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1306
+
1307
+ [[package]]
1308
+ name = "openssl"
1309
+ version = "0.10.75"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "08838db121398ad17ab8531ce9de97b244589089e290a384c900cb9ff7434328"
1312
+ dependencies = [
1313
+ "bitflags",
1314
+ "cfg-if",
1315
+ "foreign-types",
1316
+ "libc",
1317
+ "once_cell",
1318
+ "openssl-macros",
1319
+ "openssl-sys",
1320
+ ]
1321
+
1322
+ [[package]]
1323
+ name = "openssl-macros"
1324
+ version = "0.1.1"
1325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1326
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1327
+ dependencies = [
1328
+ "proc-macro2",
1329
+ "quote",
1330
+ "syn 2.0.115",
1331
+ ]
1332
+
1333
+ [[package]]
1334
+ name = "openssl-probe"
1335
+ version = "0.1.6"
1336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1337
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1338
+
1339
+ [[package]]
1340
+ name = "openssl-sys"
1341
+ version = "0.9.111"
1342
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1343
+ checksum = "82cab2d520aa75e3c58898289429321eb788c3106963d0dc886ec7a5f4adc321"
1344
+ dependencies = [
1345
+ "cc",
1346
+ "libc",
1347
+ "pkg-config",
1348
+ "vcpkg",
1349
+ ]
1350
+
1351
+ [[package]]
1352
+ name = "opentelemetry"
1353
+ version = "0.27.1"
1354
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1355
+ checksum = "ab70038c28ed37b97d8ed414b6429d343a8bbf44c9f79ec854f3a643029ba6d7"
1356
+ dependencies = [
1357
+ "futures-core",
1358
+ "futures-sink",
1359
+ "js-sys",
1360
+ "pin-project-lite",
1361
+ "thiserror 1.0.69",
1362
+ "tracing",
1363
+ ]
1364
+
1365
+ [[package]]
1366
+ name = "opentelemetry-otlp"
1367
+ version = "0.27.0"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "91cf61a1868dacc576bf2b2a1c3e9ab150af7272909e80085c3173384fe11f76"
1370
+ dependencies = [
1371
+ "async-trait",
1372
+ "futures-core",
1373
+ "http",
1374
+ "opentelemetry",
1375
+ "opentelemetry-proto",
1376
+ "opentelemetry_sdk",
1377
+ "prost",
1378
+ "thiserror 1.0.69",
1379
+ "tokio",
1380
+ "tonic",
1381
+ "tracing",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "opentelemetry-proto"
1386
+ version = "0.27.0"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "a6e05acbfada5ec79023c85368af14abd0b307c015e9064d249b2a950ef459a6"
1389
+ dependencies = [
1390
+ "opentelemetry",
1391
+ "opentelemetry_sdk",
1392
+ "prost",
1393
+ "tonic",
1394
+ ]
1395
+
1396
+ [[package]]
1397
+ name = "opentelemetry_sdk"
1398
+ version = "0.27.1"
1399
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1400
+ checksum = "231e9d6ceef9b0b2546ddf52335785ce41252bc7474ee8ba05bfad277be13ab8"
1401
+ dependencies = [
1402
+ "async-trait",
1403
+ "futures-channel",
1404
+ "futures-executor",
1405
+ "futures-util",
1406
+ "glob",
1407
+ "opentelemetry",
1408
+ "percent-encoding",
1409
+ "rand",
1410
+ "serde_json",
1411
+ "thiserror 1.0.69",
1412
+ "tracing",
1413
+ ]
1414
+
1415
+ [[package]]
1416
+ name = "option-ext"
1417
+ version = "0.2.0"
1418
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1419
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1420
+
1421
+ [[package]]
1422
+ name = "papergrid"
1423
+ version = "0.12.0"
1424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1425
+ checksum = "c7419ad52a7de9b60d33e11085a0fe3df1fbd5926aa3f93d3dd53afbc9e86725"
1426
+ dependencies = [
1427
+ "bytecount",
1428
+ "fnv",
1429
+ "unicode-width 0.1.11",
1430
+ ]
1431
+
1432
+ [[package]]
1433
+ name = "parking_lot"
1434
+ version = "0.12.5"
1435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1436
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1437
+ dependencies = [
1438
+ "lock_api",
1439
+ "parking_lot_core",
1440
+ ]
1441
+
1442
+ [[package]]
1443
+ name = "parking_lot_core"
1444
+ version = "0.9.12"
1445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1446
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1447
+ dependencies = [
1448
+ "cfg-if",
1449
+ "libc",
1450
+ "redox_syscall",
1451
+ "smallvec",
1452
+ "windows-link",
1453
+ ]
1454
+
1455
+ [[package]]
1456
+ name = "percent-encoding"
1457
+ version = "2.3.2"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1460
+
1461
+ [[package]]
1462
+ name = "pin-project"
1463
+ version = "1.1.10"
1464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1465
+ checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1466
+ dependencies = [
1467
+ "pin-project-internal",
1468
+ ]
1469
+
1470
+ [[package]]
1471
+ name = "pin-project-internal"
1472
+ version = "1.1.10"
1473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1474
+ checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1475
+ dependencies = [
1476
+ "proc-macro2",
1477
+ "quote",
1478
+ "syn 2.0.115",
1479
+ ]
1480
+
1481
+ [[package]]
1482
+ name = "pin-project-lite"
1483
+ version = "0.2.16"
1484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1485
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1486
+
1487
+ [[package]]
1488
+ name = "pin-utils"
1489
+ version = "0.1.0"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1492
+
1493
+ [[package]]
1494
+ name = "pkg-config"
1495
+ version = "0.3.32"
1496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1497
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1498
+
1499
+ [[package]]
1500
+ name = "portable-atomic"
1501
+ version = "1.13.1"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1504
+
1505
+ [[package]]
1506
+ name = "potential_utf"
1507
+ version = "0.1.4"
1508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1509
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1510
+ dependencies = [
1511
+ "zerovec",
1512
+ ]
1513
+
1514
+ [[package]]
1515
+ name = "ppv-lite86"
1516
+ version = "0.2.21"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1519
+ dependencies = [
1520
+ "zerocopy",
1521
+ ]
1522
+
1523
+ [[package]]
1524
+ name = "pretty_assertions"
1525
+ version = "1.4.1"
1526
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1527
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
1528
+ dependencies = [
1529
+ "diff",
1530
+ "yansi",
1531
+ ]
1532
+
1533
+ [[package]]
1534
+ name = "prettyplease"
1535
+ version = "0.2.37"
1536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1537
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1538
+ dependencies = [
1539
+ "proc-macro2",
1540
+ "syn 2.0.115",
1541
+ ]
1542
+
1543
+ [[package]]
1544
+ name = "proc-macro-error"
1545
+ version = "1.0.4"
1546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1547
+ checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
1548
+ dependencies = [
1549
+ "proc-macro-error-attr",
1550
+ "proc-macro2",
1551
+ "quote",
1552
+ "syn 1.0.109",
1553
+ "version_check",
1554
+ ]
1555
+
1556
+ [[package]]
1557
+ name = "proc-macro-error-attr"
1558
+ version = "1.0.4"
1559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1560
+ checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
1561
+ dependencies = [
1562
+ "proc-macro2",
1563
+ "quote",
1564
+ "version_check",
1565
+ ]
1566
+
1567
+ [[package]]
1568
+ name = "proc-macro2"
1569
+ version = "1.0.106"
1570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1571
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1572
+ dependencies = [
1573
+ "unicode-ident",
1574
+ ]
1575
+
1576
+ [[package]]
1577
+ name = "prost"
1578
+ version = "0.13.5"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "2796faa41db3ec313a31f7624d9286acf277b52de526150b7e69f3debf891ee5"
1581
+ dependencies = [
1582
+ "bytes",
1583
+ "prost-derive",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "prost-derive"
1588
+ version = "0.13.5"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "8a56d757972c98b346a9b766e3f02746cde6dd1cd1d1d563472929fdd74bec4d"
1591
+ dependencies = [
1592
+ "anyhow",
1593
+ "itertools",
1594
+ "proc-macro2",
1595
+ "quote",
1596
+ "syn 2.0.115",
1597
+ ]
1598
+
1599
+ [[package]]
1600
+ name = "pyo3"
1601
+ version = "0.22.6"
1602
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1603
+ checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884"
1604
+ dependencies = [
1605
+ "cfg-if",
1606
+ "indoc",
1607
+ "libc",
1608
+ "memoffset",
1609
+ "once_cell",
1610
+ "portable-atomic",
1611
+ "pyo3-build-config",
1612
+ "pyo3-ffi",
1613
+ "pyo3-macros",
1614
+ "unindent",
1615
+ ]
1616
+
1617
+ [[package]]
1618
+ name = "pyo3-build-config"
1619
+ version = "0.22.6"
1620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1621
+ checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38"
1622
+ dependencies = [
1623
+ "once_cell",
1624
+ "target-lexicon",
1625
+ ]
1626
+
1627
+ [[package]]
1628
+ name = "pyo3-ffi"
1629
+ version = "0.22.6"
1630
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1631
+ checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636"
1632
+ dependencies = [
1633
+ "libc",
1634
+ "pyo3-build-config",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "pyo3-macros"
1639
+ version = "0.22.6"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453"
1642
+ dependencies = [
1643
+ "proc-macro2",
1644
+ "pyo3-macros-backend",
1645
+ "quote",
1646
+ "syn 2.0.115",
1647
+ ]
1648
+
1649
+ [[package]]
1650
+ name = "pyo3-macros-backend"
1651
+ version = "0.22.6"
1652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1653
+ checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe"
1654
+ dependencies = [
1655
+ "heck 0.5.0",
1656
+ "proc-macro2",
1657
+ "pyo3-build-config",
1658
+ "quote",
1659
+ "syn 2.0.115",
1660
+ ]
1661
+
1662
+ [[package]]
1663
+ name = "quote"
1664
+ version = "1.0.44"
1665
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1666
+ checksum = "21b2ebcf727b7760c461f091f9f0f539b77b8e87f2fd88131e7f1b433b3cece4"
1667
+ dependencies = [
1668
+ "proc-macro2",
1669
+ ]
1670
+
1671
+ [[package]]
1672
+ name = "r-efi"
1673
+ version = "5.3.0"
1674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1675
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1676
+
1677
+ [[package]]
1678
+ name = "rand"
1679
+ version = "0.8.5"
1680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1681
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1682
+ dependencies = [
1683
+ "libc",
1684
+ "rand_chacha",
1685
+ "rand_core",
1686
+ ]
1687
+
1688
+ [[package]]
1689
+ name = "rand_chacha"
1690
+ version = "0.3.1"
1691
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1692
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1693
+ dependencies = [
1694
+ "ppv-lite86",
1695
+ "rand_core",
1696
+ ]
1697
+
1698
+ [[package]]
1699
+ name = "rand_core"
1700
+ version = "0.6.4"
1701
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1702
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1703
+ dependencies = [
1704
+ "getrandom 0.2.17",
1705
+ ]
1706
+
1707
+ [[package]]
1708
+ name = "redox_syscall"
1709
+ version = "0.5.18"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1712
+ dependencies = [
1713
+ "bitflags",
1714
+ ]
1715
+
1716
+ [[package]]
1717
+ name = "redox_users"
1718
+ version = "0.4.6"
1719
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1720
+ checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
1721
+ dependencies = [
1722
+ "getrandom 0.2.17",
1723
+ "libredox",
1724
+ "thiserror 1.0.69",
1725
+ ]
1726
+
1727
+ [[package]]
1728
+ name = "regex"
1729
+ version = "1.12.3"
1730
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1731
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1732
+ dependencies = [
1733
+ "aho-corasick",
1734
+ "memchr",
1735
+ "regex-automata",
1736
+ "regex-syntax",
1737
+ ]
1738
+
1739
+ [[package]]
1740
+ name = "regex-automata"
1741
+ version = "0.4.14"
1742
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1743
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1744
+ dependencies = [
1745
+ "aho-corasick",
1746
+ "memchr",
1747
+ "regex-syntax",
1748
+ ]
1749
+
1750
+ [[package]]
1751
+ name = "regex-syntax"
1752
+ version = "0.8.9"
1753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1754
+ checksum = "a96887878f22d7bad8a3b6dc5b7440e0ada9a245242924394987b21cf2210a4c"
1755
+
1756
+ [[package]]
1757
+ name = "reqwest"
1758
+ version = "0.12.28"
1759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1760
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1761
+ dependencies = [
1762
+ "base64",
1763
+ "bytes",
1764
+ "encoding_rs",
1765
+ "futures-core",
1766
+ "futures-util",
1767
+ "h2",
1768
+ "http",
1769
+ "http-body",
1770
+ "http-body-util",
1771
+ "hyper",
1772
+ "hyper-rustls",
1773
+ "hyper-tls",
1774
+ "hyper-util",
1775
+ "js-sys",
1776
+ "log",
1777
+ "mime",
1778
+ "native-tls",
1779
+ "percent-encoding",
1780
+ "pin-project-lite",
1781
+ "rustls-pki-types",
1782
+ "serde",
1783
+ "serde_json",
1784
+ "serde_urlencoded",
1785
+ "sync_wrapper",
1786
+ "tokio",
1787
+ "tokio-native-tls",
1788
+ "tokio-util",
1789
+ "tower 0.5.3",
1790
+ "tower-http",
1791
+ "tower-service",
1792
+ "url",
1793
+ "wasm-bindgen",
1794
+ "wasm-bindgen-futures",
1795
+ "wasm-streams",
1796
+ "web-sys",
1797
+ ]
1798
+
1799
+ [[package]]
1800
+ name = "ring"
1801
+ version = "0.17.14"
1802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1803
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1804
+ dependencies = [
1805
+ "cc",
1806
+ "cfg-if",
1807
+ "getrandom 0.2.17",
1808
+ "libc",
1809
+ "untrusted",
1810
+ "windows-sys 0.52.0",
1811
+ ]
1812
+
1813
+ [[package]]
1814
+ name = "rustix"
1815
+ version = "1.1.3"
1816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1817
+ checksum = "146c9e247ccc180c1f61615433868c99f3de3ae256a30a43b49f67c2d9171f34"
1818
+ dependencies = [
1819
+ "bitflags",
1820
+ "errno",
1821
+ "libc",
1822
+ "linux-raw-sys",
1823
+ "windows-sys 0.61.2",
1824
+ ]
1825
+
1826
+ [[package]]
1827
+ name = "rustls"
1828
+ version = "0.23.36"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "c665f33d38cea657d9614f766881e4d510e0eda4239891eea56b4cadcf01801b"
1831
+ dependencies = [
1832
+ "once_cell",
1833
+ "rustls-pki-types",
1834
+ "rustls-webpki",
1835
+ "subtle",
1836
+ "zeroize",
1837
+ ]
1838
+
1839
+ [[package]]
1840
+ name = "rustls-pki-types"
1841
+ version = "1.14.0"
1842
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1843
+ checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
1844
+ dependencies = [
1845
+ "zeroize",
1846
+ ]
1847
+
1848
+ [[package]]
1849
+ name = "rustls-webpki"
1850
+ version = "0.103.9"
1851
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1852
+ checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
1853
+ dependencies = [
1854
+ "ring",
1855
+ "rustls-pki-types",
1856
+ "untrusted",
1857
+ ]
1858
+
1859
+ [[package]]
1860
+ name = "rustversion"
1861
+ version = "1.0.22"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1864
+
1865
+ [[package]]
1866
+ name = "ryu"
1867
+ version = "1.0.23"
1868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1869
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1870
+
1871
+ [[package]]
1872
+ name = "schannel"
1873
+ version = "0.1.28"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1876
+ dependencies = [
1877
+ "windows-sys 0.61.2",
1878
+ ]
1879
+
1880
+ [[package]]
1881
+ name = "schemars"
1882
+ version = "0.8.22"
1883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1884
+ checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615"
1885
+ dependencies = [
1886
+ "chrono",
1887
+ "dyn-clone",
1888
+ "schemars_derive",
1889
+ "serde",
1890
+ "serde_json",
1891
+ "url",
1892
+ ]
1893
+
1894
+ [[package]]
1895
+ name = "schemars_derive"
1896
+ version = "0.8.22"
1897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1898
+ checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d"
1899
+ dependencies = [
1900
+ "proc-macro2",
1901
+ "quote",
1902
+ "serde_derive_internals",
1903
+ "syn 2.0.115",
1904
+ ]
1905
+
1906
+ [[package]]
1907
+ name = "scopeguard"
1908
+ version = "1.2.0"
1909
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1910
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1911
+
1912
+ [[package]]
1913
+ name = "security-framework"
1914
+ version = "2.11.1"
1915
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1916
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1917
+ dependencies = [
1918
+ "bitflags",
1919
+ "core-foundation",
1920
+ "core-foundation-sys",
1921
+ "libc",
1922
+ "security-framework-sys",
1923
+ ]
1924
+
1925
+ [[package]]
1926
+ name = "security-framework-sys"
1927
+ version = "2.15.0"
1928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1929
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1930
+ dependencies = [
1931
+ "core-foundation-sys",
1932
+ "libc",
1933
+ ]
1934
+
1935
+ [[package]]
1936
+ name = "semver"
1937
+ version = "1.0.27"
1938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1939
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
1940
+
1941
+ [[package]]
1942
+ name = "serde"
1943
+ version = "1.0.228"
1944
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1945
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1946
+ dependencies = [
1947
+ "serde_core",
1948
+ "serde_derive",
1949
+ ]
1950
+
1951
+ [[package]]
1952
+ name = "serde_core"
1953
+ version = "1.0.228"
1954
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1955
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1956
+ dependencies = [
1957
+ "serde_derive",
1958
+ ]
1959
+
1960
+ [[package]]
1961
+ name = "serde_derive"
1962
+ version = "1.0.228"
1963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1964
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1965
+ dependencies = [
1966
+ "proc-macro2",
1967
+ "quote",
1968
+ "syn 2.0.115",
1969
+ ]
1970
+
1971
+ [[package]]
1972
+ name = "serde_derive_internals"
1973
+ version = "0.29.1"
1974
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1975
+ checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
1976
+ dependencies = [
1977
+ "proc-macro2",
1978
+ "quote",
1979
+ "syn 2.0.115",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "serde_json"
1984
+ version = "1.0.149"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
1987
+ dependencies = [
1988
+ "itoa",
1989
+ "memchr",
1990
+ "serde",
1991
+ "serde_core",
1992
+ "zmij",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "serde_spanned"
1997
+ version = "0.6.9"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2000
+ dependencies = [
2001
+ "serde",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "serde_urlencoded"
2006
+ version = "0.7.1"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2009
+ dependencies = [
2010
+ "form_urlencoded",
2011
+ "itoa",
2012
+ "ryu",
2013
+ "serde",
2014
+ ]
2015
+
2016
+ [[package]]
2017
+ name = "sharded-slab"
2018
+ version = "0.1.7"
2019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2020
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2021
+ dependencies = [
2022
+ "lazy_static",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "shell-words"
2027
+ version = "1.1.1"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "dc6fe69c597f9c37bfeeeeeb33da3530379845f10be461a66d16d03eca2ded77"
2030
+
2031
+ [[package]]
2032
+ name = "shlex"
2033
+ version = "1.3.0"
2034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2035
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2036
+
2037
+ [[package]]
2038
+ name = "signal-hook-registry"
2039
+ version = "1.4.8"
2040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2041
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2042
+ dependencies = [
2043
+ "errno",
2044
+ "libc",
2045
+ ]
2046
+
2047
+ [[package]]
2048
+ name = "slab"
2049
+ version = "0.4.12"
2050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2051
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2052
+
2053
+ [[package]]
2054
+ name = "smallvec"
2055
+ version = "1.15.1"
2056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2057
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2058
+
2059
+ [[package]]
2060
+ name = "socket2"
2061
+ version = "0.5.10"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2064
+ dependencies = [
2065
+ "libc",
2066
+ "windows-sys 0.52.0",
2067
+ ]
2068
+
2069
+ [[package]]
2070
+ name = "socket2"
2071
+ version = "0.6.2"
2072
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2073
+ checksum = "86f4aa3ad99f2088c990dfa82d367e19cb29268ed67c574d10d0a4bfe71f07e0"
2074
+ dependencies = [
2075
+ "libc",
2076
+ "windows-sys 0.60.2",
2077
+ ]
2078
+
2079
+ [[package]]
2080
+ name = "stable_deref_trait"
2081
+ version = "1.2.1"
2082
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2083
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2084
+
2085
+ [[package]]
2086
+ name = "strsim"
2087
+ version = "0.11.1"
2088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2089
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2090
+
2091
+ [[package]]
2092
+ name = "subtle"
2093
+ version = "2.6.1"
2094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2095
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2096
+
2097
+ [[package]]
2098
+ name = "syn"
2099
+ version = "1.0.109"
2100
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2101
+ checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2102
+ dependencies = [
2103
+ "proc-macro2",
2104
+ "quote",
2105
+ "unicode-ident",
2106
+ ]
2107
+
2108
+ [[package]]
2109
+ name = "syn"
2110
+ version = "2.0.115"
2111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2112
+ checksum = "6e614ed320ac28113fa64972c4262d5dbc89deacdfd00c34a3e4cea073243c12"
2113
+ dependencies = [
2114
+ "proc-macro2",
2115
+ "quote",
2116
+ "unicode-ident",
2117
+ ]
2118
+
2119
+ [[package]]
2120
+ name = "sync_wrapper"
2121
+ version = "1.0.2"
2122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2123
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2124
+ dependencies = [
2125
+ "futures-core",
2126
+ ]
2127
+
2128
+ [[package]]
2129
+ name = "synstructure"
2130
+ version = "0.13.2"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2133
+ dependencies = [
2134
+ "proc-macro2",
2135
+ "quote",
2136
+ "syn 2.0.115",
2137
+ ]
2138
+
2139
+ [[package]]
2140
+ name = "system-configuration"
2141
+ version = "0.7.0"
2142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2143
+ checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2144
+ dependencies = [
2145
+ "bitflags",
2146
+ "core-foundation",
2147
+ "system-configuration-sys",
2148
+ ]
2149
+
2150
+ [[package]]
2151
+ name = "system-configuration-sys"
2152
+ version = "0.6.0"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2155
+ dependencies = [
2156
+ "core-foundation-sys",
2157
+ "libc",
2158
+ ]
2159
+
2160
+ [[package]]
2161
+ name = "tabled"
2162
+ version = "0.16.0"
2163
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2164
+ checksum = "77c9303ee60b9bedf722012ea29ae3711ba13a67c9b9ae28993838b63057cb1b"
2165
+ dependencies = [
2166
+ "papergrid",
2167
+ "tabled_derive",
2168
+ ]
2169
+
2170
+ [[package]]
2171
+ name = "tabled_derive"
2172
+ version = "0.8.0"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "bf0fb8bfdc709786c154e24a66777493fb63ae97e3036d914c8666774c477069"
2175
+ dependencies = [
2176
+ "heck 0.4.1",
2177
+ "proc-macro-error",
2178
+ "proc-macro2",
2179
+ "quote",
2180
+ "syn 1.0.109",
2181
+ ]
2182
+
2183
+ [[package]]
2184
+ name = "target-lexicon"
2185
+ version = "0.12.16"
2186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2187
+ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
2188
+
2189
+ [[package]]
2190
+ name = "tempfile"
2191
+ version = "3.25.0"
2192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2193
+ checksum = "0136791f7c95b1f6dd99f9cc786b91bb81c3800b639b3478e561ddb7be95e5f1"
2194
+ dependencies = [
2195
+ "fastrand",
2196
+ "getrandom 0.4.1",
2197
+ "once_cell",
2198
+ "rustix",
2199
+ "windows-sys 0.61.2",
2200
+ ]
2201
+
2202
+ [[package]]
2203
+ name = "thiserror"
2204
+ version = "1.0.69"
2205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2206
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2207
+ dependencies = [
2208
+ "thiserror-impl 1.0.69",
2209
+ ]
2210
+
2211
+ [[package]]
2212
+ name = "thiserror"
2213
+ version = "2.0.18"
2214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2215
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2216
+ dependencies = [
2217
+ "thiserror-impl 2.0.18",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "thiserror-impl"
2222
+ version = "1.0.69"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2225
+ dependencies = [
2226
+ "proc-macro2",
2227
+ "quote",
2228
+ "syn 2.0.115",
2229
+ ]
2230
+
2231
+ [[package]]
2232
+ name = "thiserror-impl"
2233
+ version = "2.0.18"
2234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2235
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2236
+ dependencies = [
2237
+ "proc-macro2",
2238
+ "quote",
2239
+ "syn 2.0.115",
2240
+ ]
2241
+
2242
+ [[package]]
2243
+ name = "thread_local"
2244
+ version = "1.1.9"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2247
+ dependencies = [
2248
+ "cfg-if",
2249
+ ]
2250
+
2251
+ [[package]]
2252
+ name = "tinystr"
2253
+ version = "0.8.2"
2254
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2255
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2256
+ dependencies = [
2257
+ "displaydoc",
2258
+ "zerovec",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "tokio"
2263
+ version = "1.49.0"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "72a2903cd7736441aac9df9d7688bd0ce48edccaadf181c3b90be801e81d3d86"
2266
+ dependencies = [
2267
+ "bytes",
2268
+ "libc",
2269
+ "mio",
2270
+ "parking_lot",
2271
+ "pin-project-lite",
2272
+ "signal-hook-registry",
2273
+ "socket2 0.6.2",
2274
+ "tokio-macros",
2275
+ "windows-sys 0.61.2",
2276
+ ]
2277
+
2278
+ [[package]]
2279
+ name = "tokio-macros"
2280
+ version = "2.6.0"
2281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2282
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2283
+ dependencies = [
2284
+ "proc-macro2",
2285
+ "quote",
2286
+ "syn 2.0.115",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "tokio-native-tls"
2291
+ version = "0.3.1"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2294
+ dependencies = [
2295
+ "native-tls",
2296
+ "tokio",
2297
+ ]
2298
+
2299
+ [[package]]
2300
+ name = "tokio-rustls"
2301
+ version = "0.26.4"
2302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2303
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2304
+ dependencies = [
2305
+ "rustls",
2306
+ "tokio",
2307
+ ]
2308
+
2309
+ [[package]]
2310
+ name = "tokio-stream"
2311
+ version = "0.1.18"
2312
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2313
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2314
+ dependencies = [
2315
+ "futures-core",
2316
+ "pin-project-lite",
2317
+ "tokio",
2318
+ ]
2319
+
2320
+ [[package]]
2321
+ name = "tokio-util"
2322
+ version = "0.7.18"
2323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2324
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2325
+ dependencies = [
2326
+ "bytes",
2327
+ "futures-core",
2328
+ "futures-sink",
2329
+ "pin-project-lite",
2330
+ "tokio",
2331
+ ]
2332
+
2333
+ [[package]]
2334
+ name = "toml"
2335
+ version = "0.8.23"
2336
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2337
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2338
+ dependencies = [
2339
+ "serde",
2340
+ "serde_spanned",
2341
+ "toml_datetime",
2342
+ "toml_edit",
2343
+ ]
2344
+
2345
+ [[package]]
2346
+ name = "toml_datetime"
2347
+ version = "0.6.11"
2348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2349
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2350
+ dependencies = [
2351
+ "serde",
2352
+ ]
2353
+
2354
+ [[package]]
2355
+ name = "toml_edit"
2356
+ version = "0.22.27"
2357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2358
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2359
+ dependencies = [
2360
+ "indexmap 2.13.0",
2361
+ "serde",
2362
+ "serde_spanned",
2363
+ "toml_datetime",
2364
+ "toml_write",
2365
+ "winnow",
2366
+ ]
2367
+
2368
+ [[package]]
2369
+ name = "toml_write"
2370
+ version = "0.1.2"
2371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2372
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2373
+
2374
+ [[package]]
2375
+ name = "tonic"
2376
+ version = "0.12.3"
2377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2378
+ checksum = "877c5b330756d856ffcc4553ab34a5684481ade925ecc54bcd1bf02b1d0d4d52"
2379
+ dependencies = [
2380
+ "async-stream",
2381
+ "async-trait",
2382
+ "axum",
2383
+ "base64",
2384
+ "bytes",
2385
+ "h2",
2386
+ "http",
2387
+ "http-body",
2388
+ "http-body-util",
2389
+ "hyper",
2390
+ "hyper-timeout",
2391
+ "hyper-util",
2392
+ "percent-encoding",
2393
+ "pin-project",
2394
+ "prost",
2395
+ "socket2 0.5.10",
2396
+ "tokio",
2397
+ "tokio-stream",
2398
+ "tower 0.4.13",
2399
+ "tower-layer",
2400
+ "tower-service",
2401
+ "tracing",
2402
+ ]
2403
+
2404
+ [[package]]
2405
+ name = "tower"
2406
+ version = "0.4.13"
2407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2408
+ checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2409
+ dependencies = [
2410
+ "futures-core",
2411
+ "futures-util",
2412
+ "indexmap 1.9.3",
2413
+ "pin-project",
2414
+ "pin-project-lite",
2415
+ "rand",
2416
+ "slab",
2417
+ "tokio",
2418
+ "tokio-util",
2419
+ "tower-layer",
2420
+ "tower-service",
2421
+ "tracing",
2422
+ ]
2423
+
2424
+ [[package]]
2425
+ name = "tower"
2426
+ version = "0.5.3"
2427
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2428
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2429
+ dependencies = [
2430
+ "futures-core",
2431
+ "futures-util",
2432
+ "pin-project-lite",
2433
+ "sync_wrapper",
2434
+ "tokio",
2435
+ "tower-layer",
2436
+ "tower-service",
2437
+ ]
2438
+
2439
+ [[package]]
2440
+ name = "tower-http"
2441
+ version = "0.6.8"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
2444
+ dependencies = [
2445
+ "bitflags",
2446
+ "bytes",
2447
+ "futures-util",
2448
+ "http",
2449
+ "http-body",
2450
+ "iri-string",
2451
+ "pin-project-lite",
2452
+ "tower 0.5.3",
2453
+ "tower-layer",
2454
+ "tower-service",
2455
+ ]
2456
+
2457
+ [[package]]
2458
+ name = "tower-layer"
2459
+ version = "0.3.3"
2460
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2461
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2462
+
2463
+ [[package]]
2464
+ name = "tower-service"
2465
+ version = "0.3.3"
2466
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2467
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2468
+
2469
+ [[package]]
2470
+ name = "tracing"
2471
+ version = "0.1.44"
2472
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2473
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2474
+ dependencies = [
2475
+ "pin-project-lite",
2476
+ "tracing-attributes",
2477
+ "tracing-core",
2478
+ ]
2479
+
2480
+ [[package]]
2481
+ name = "tracing-attributes"
2482
+ version = "0.1.31"
2483
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2484
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2485
+ dependencies = [
2486
+ "proc-macro2",
2487
+ "quote",
2488
+ "syn 2.0.115",
2489
+ ]
2490
+
2491
+ [[package]]
2492
+ name = "tracing-core"
2493
+ version = "0.1.36"
2494
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2495
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2496
+ dependencies = [
2497
+ "once_cell",
2498
+ "valuable",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "tracing-log"
2503
+ version = "0.2.0"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2506
+ dependencies = [
2507
+ "log",
2508
+ "once_cell",
2509
+ "tracing-core",
2510
+ ]
2511
+
2512
+ [[package]]
2513
+ name = "tracing-opentelemetry"
2514
+ version = "0.28.0"
2515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2516
+ checksum = "97a971f6058498b5c0f1affa23e7ea202057a7301dbff68e968b2d578bcbd053"
2517
+ dependencies = [
2518
+ "js-sys",
2519
+ "once_cell",
2520
+ "opentelemetry",
2521
+ "opentelemetry_sdk",
2522
+ "smallvec",
2523
+ "tracing",
2524
+ "tracing-core",
2525
+ "tracing-log",
2526
+ "tracing-subscriber",
2527
+ "web-time",
2528
+ ]
2529
+
2530
+ [[package]]
2531
+ name = "tracing-serde"
2532
+ version = "0.2.0"
2533
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2534
+ checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
2535
+ dependencies = [
2536
+ "serde",
2537
+ "tracing-core",
2538
+ ]
2539
+
2540
+ [[package]]
2541
+ name = "tracing-subscriber"
2542
+ version = "0.3.22"
2543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2544
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
2545
+ dependencies = [
2546
+ "matchers",
2547
+ "nu-ansi-term",
2548
+ "once_cell",
2549
+ "regex-automata",
2550
+ "serde",
2551
+ "serde_json",
2552
+ "sharded-slab",
2553
+ "smallvec",
2554
+ "thread_local",
2555
+ "tracing",
2556
+ "tracing-core",
2557
+ "tracing-log",
2558
+ "tracing-serde",
2559
+ ]
2560
+
2561
+ [[package]]
2562
+ name = "try-lock"
2563
+ version = "0.2.5"
2564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2565
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2566
+
2567
+ [[package]]
2568
+ name = "unicode-ident"
2569
+ version = "1.0.23"
2570
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2571
+ checksum = "537dd038a89878be9b64dd4bd1b260315c1bb94f4d784956b81e27a088d9a09e"
2572
+
2573
+ [[package]]
2574
+ name = "unicode-width"
2575
+ version = "0.1.11"
2576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2577
+ checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2578
+
2579
+ [[package]]
2580
+ name = "unicode-width"
2581
+ version = "0.2.2"
2582
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2583
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2584
+
2585
+ [[package]]
2586
+ name = "unicode-xid"
2587
+ version = "0.2.6"
2588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2589
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2590
+
2591
+ [[package]]
2592
+ name = "unindent"
2593
+ version = "0.2.4"
2594
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2595
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
2596
+
2597
+ [[package]]
2598
+ name = "untrusted"
2599
+ version = "0.9.0"
2600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2601
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2602
+
2603
+ [[package]]
2604
+ name = "url"
2605
+ version = "2.5.8"
2606
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2607
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2608
+ dependencies = [
2609
+ "form_urlencoded",
2610
+ "idna",
2611
+ "percent-encoding",
2612
+ "serde",
2613
+ "serde_derive",
2614
+ ]
2615
+
2616
+ [[package]]
2617
+ name = "utf8_iter"
2618
+ version = "1.0.4"
2619
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2620
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2621
+
2622
+ [[package]]
2623
+ name = "utf8parse"
2624
+ version = "0.2.2"
2625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2626
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2627
+
2628
+ [[package]]
2629
+ name = "uuid"
2630
+ version = "1.20.0"
2631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2632
+ checksum = "ee48d38b119b0cd71fe4141b30f5ba9c7c5d9f4e7a3a8b4a674e4b6ef789976f"
2633
+ dependencies = [
2634
+ "getrandom 0.3.4",
2635
+ "js-sys",
2636
+ "serde_core",
2637
+ "wasm-bindgen",
2638
+ ]
2639
+
2640
+ [[package]]
2641
+ name = "valuable"
2642
+ version = "0.1.1"
2643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2644
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2645
+
2646
+ [[package]]
2647
+ name = "vcpkg"
2648
+ version = "0.2.15"
2649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2650
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2651
+
2652
+ [[package]]
2653
+ name = "version_check"
2654
+ version = "0.9.5"
2655
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2656
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2657
+
2658
+ [[package]]
2659
+ name = "want"
2660
+ version = "0.3.1"
2661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2662
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2663
+ dependencies = [
2664
+ "try-lock",
2665
+ ]
2666
+
2667
+ [[package]]
2668
+ name = "wasi"
2669
+ version = "0.11.1+wasi-snapshot-preview1"
2670
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2671
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2672
+
2673
+ [[package]]
2674
+ name = "wasip2"
2675
+ version = "1.0.2+wasi-0.2.9"
2676
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2677
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
2678
+ dependencies = [
2679
+ "wit-bindgen",
2680
+ ]
2681
+
2682
+ [[package]]
2683
+ name = "wasip3"
2684
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2685
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2686
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2687
+ dependencies = [
2688
+ "wit-bindgen",
2689
+ ]
2690
+
2691
+ [[package]]
2692
+ name = "wasm-bindgen"
2693
+ version = "0.2.108"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "64024a30ec1e37399cf85a7ffefebdb72205ca1c972291c51512360d90bd8566"
2696
+ dependencies = [
2697
+ "cfg-if",
2698
+ "once_cell",
2699
+ "rustversion",
2700
+ "wasm-bindgen-macro",
2701
+ "wasm-bindgen-shared",
2702
+ ]
2703
+
2704
+ [[package]]
2705
+ name = "wasm-bindgen-futures"
2706
+ version = "0.4.58"
2707
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2708
+ checksum = "70a6e77fd0ae8029c9ea0063f87c46fde723e7d887703d74ad2616d792e51e6f"
2709
+ dependencies = [
2710
+ "cfg-if",
2711
+ "futures-util",
2712
+ "js-sys",
2713
+ "once_cell",
2714
+ "wasm-bindgen",
2715
+ "web-sys",
2716
+ ]
2717
+
2718
+ [[package]]
2719
+ name = "wasm-bindgen-macro"
2720
+ version = "0.2.108"
2721
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2722
+ checksum = "008b239d9c740232e71bd39e8ef6429d27097518b6b30bdf9086833bd5b6d608"
2723
+ dependencies = [
2724
+ "quote",
2725
+ "wasm-bindgen-macro-support",
2726
+ ]
2727
+
2728
+ [[package]]
2729
+ name = "wasm-bindgen-macro-support"
2730
+ version = "0.2.108"
2731
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2732
+ checksum = "5256bae2d58f54820e6490f9839c49780dff84c65aeab9e772f15d5f0e913a55"
2733
+ dependencies = [
2734
+ "bumpalo",
2735
+ "proc-macro2",
2736
+ "quote",
2737
+ "syn 2.0.115",
2738
+ "wasm-bindgen-shared",
2739
+ ]
2740
+
2741
+ [[package]]
2742
+ name = "wasm-bindgen-shared"
2743
+ version = "0.2.108"
2744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2745
+ checksum = "1f01b580c9ac74c8d8f0c0e4afb04eeef2acf145458e52c03845ee9cd23e3d12"
2746
+ dependencies = [
2747
+ "unicode-ident",
2748
+ ]
2749
+
2750
+ [[package]]
2751
+ name = "wasm-encoder"
2752
+ version = "0.244.0"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2755
+ dependencies = [
2756
+ "leb128fmt",
2757
+ "wasmparser",
2758
+ ]
2759
+
2760
+ [[package]]
2761
+ name = "wasm-metadata"
2762
+ version = "0.244.0"
2763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2764
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2765
+ dependencies = [
2766
+ "anyhow",
2767
+ "indexmap 2.13.0",
2768
+ "wasm-encoder",
2769
+ "wasmparser",
2770
+ ]
2771
+
2772
+ [[package]]
2773
+ name = "wasm-streams"
2774
+ version = "0.4.2"
2775
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2776
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2777
+ dependencies = [
2778
+ "futures-util",
2779
+ "js-sys",
2780
+ "wasm-bindgen",
2781
+ "wasm-bindgen-futures",
2782
+ "web-sys",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "wasmparser"
2787
+ version = "0.244.0"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2790
+ dependencies = [
2791
+ "bitflags",
2792
+ "hashbrown 0.15.5",
2793
+ "indexmap 2.13.0",
2794
+ "semver",
2795
+ ]
2796
+
2797
+ [[package]]
2798
+ name = "web-sys"
2799
+ version = "0.3.85"
2800
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2801
+ checksum = "312e32e551d92129218ea9a2452120f4aabc03529ef03e4d0d82fb2780608598"
2802
+ dependencies = [
2803
+ "js-sys",
2804
+ "wasm-bindgen",
2805
+ ]
2806
+
2807
+ [[package]]
2808
+ name = "web-time"
2809
+ version = "1.1.0"
2810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2811
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2812
+ dependencies = [
2813
+ "js-sys",
2814
+ "wasm-bindgen",
2815
+ ]
2816
+
2817
+ [[package]]
2818
+ name = "windows-core"
2819
+ version = "0.62.2"
2820
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2821
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2822
+ dependencies = [
2823
+ "windows-implement",
2824
+ "windows-interface",
2825
+ "windows-link",
2826
+ "windows-result",
2827
+ "windows-strings",
2828
+ ]
2829
+
2830
+ [[package]]
2831
+ name = "windows-implement"
2832
+ version = "0.60.2"
2833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2834
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2835
+ dependencies = [
2836
+ "proc-macro2",
2837
+ "quote",
2838
+ "syn 2.0.115",
2839
+ ]
2840
+
2841
+ [[package]]
2842
+ name = "windows-interface"
2843
+ version = "0.59.3"
2844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2845
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2846
+ dependencies = [
2847
+ "proc-macro2",
2848
+ "quote",
2849
+ "syn 2.0.115",
2850
+ ]
2851
+
2852
+ [[package]]
2853
+ name = "windows-link"
2854
+ version = "0.2.1"
2855
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2856
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2857
+
2858
+ [[package]]
2859
+ name = "windows-registry"
2860
+ version = "0.6.1"
2861
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2862
+ checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2863
+ dependencies = [
2864
+ "windows-link",
2865
+ "windows-result",
2866
+ "windows-strings",
2867
+ ]
2868
+
2869
+ [[package]]
2870
+ name = "windows-result"
2871
+ version = "0.4.1"
2872
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2873
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2874
+ dependencies = [
2875
+ "windows-link",
2876
+ ]
2877
+
2878
+ [[package]]
2879
+ name = "windows-strings"
2880
+ version = "0.5.1"
2881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2882
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2883
+ dependencies = [
2884
+ "windows-link",
2885
+ ]
2886
+
2887
+ [[package]]
2888
+ name = "windows-sys"
2889
+ version = "0.48.0"
2890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2891
+ checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2892
+ dependencies = [
2893
+ "windows-targets 0.48.5",
2894
+ ]
2895
+
2896
+ [[package]]
2897
+ name = "windows-sys"
2898
+ version = "0.52.0"
2899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2900
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2901
+ dependencies = [
2902
+ "windows-targets 0.52.6",
2903
+ ]
2904
+
2905
+ [[package]]
2906
+ name = "windows-sys"
2907
+ version = "0.59.0"
2908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2909
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2910
+ dependencies = [
2911
+ "windows-targets 0.52.6",
2912
+ ]
2913
+
2914
+ [[package]]
2915
+ name = "windows-sys"
2916
+ version = "0.60.2"
2917
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2918
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2919
+ dependencies = [
2920
+ "windows-targets 0.53.5",
2921
+ ]
2922
+
2923
+ [[package]]
2924
+ name = "windows-sys"
2925
+ version = "0.61.2"
2926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2927
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2928
+ dependencies = [
2929
+ "windows-link",
2930
+ ]
2931
+
2932
+ [[package]]
2933
+ name = "windows-targets"
2934
+ version = "0.48.5"
2935
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2936
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2937
+ dependencies = [
2938
+ "windows_aarch64_gnullvm 0.48.5",
2939
+ "windows_aarch64_msvc 0.48.5",
2940
+ "windows_i686_gnu 0.48.5",
2941
+ "windows_i686_msvc 0.48.5",
2942
+ "windows_x86_64_gnu 0.48.5",
2943
+ "windows_x86_64_gnullvm 0.48.5",
2944
+ "windows_x86_64_msvc 0.48.5",
2945
+ ]
2946
+
2947
+ [[package]]
2948
+ name = "windows-targets"
2949
+ version = "0.52.6"
2950
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2951
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2952
+ dependencies = [
2953
+ "windows_aarch64_gnullvm 0.52.6",
2954
+ "windows_aarch64_msvc 0.52.6",
2955
+ "windows_i686_gnu 0.52.6",
2956
+ "windows_i686_gnullvm 0.52.6",
2957
+ "windows_i686_msvc 0.52.6",
2958
+ "windows_x86_64_gnu 0.52.6",
2959
+ "windows_x86_64_gnullvm 0.52.6",
2960
+ "windows_x86_64_msvc 0.52.6",
2961
+ ]
2962
+
2963
+ [[package]]
2964
+ name = "windows-targets"
2965
+ version = "0.53.5"
2966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2967
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2968
+ dependencies = [
2969
+ "windows-link",
2970
+ "windows_aarch64_gnullvm 0.53.1",
2971
+ "windows_aarch64_msvc 0.53.1",
2972
+ "windows_i686_gnu 0.53.1",
2973
+ "windows_i686_gnullvm 0.53.1",
2974
+ "windows_i686_msvc 0.53.1",
2975
+ "windows_x86_64_gnu 0.53.1",
2976
+ "windows_x86_64_gnullvm 0.53.1",
2977
+ "windows_x86_64_msvc 0.53.1",
2978
+ ]
2979
+
2980
+ [[package]]
2981
+ name = "windows_aarch64_gnullvm"
2982
+ version = "0.48.5"
2983
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2984
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2985
+
2986
+ [[package]]
2987
+ name = "windows_aarch64_gnullvm"
2988
+ version = "0.52.6"
2989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2990
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2991
+
2992
+ [[package]]
2993
+ name = "windows_aarch64_gnullvm"
2994
+ version = "0.53.1"
2995
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2996
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2997
+
2998
+ [[package]]
2999
+ name = "windows_aarch64_msvc"
3000
+ version = "0.48.5"
3001
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3002
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3003
+
3004
+ [[package]]
3005
+ name = "windows_aarch64_msvc"
3006
+ version = "0.52.6"
3007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3008
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3009
+
3010
+ [[package]]
3011
+ name = "windows_aarch64_msvc"
3012
+ version = "0.53.1"
3013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3014
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3015
+
3016
+ [[package]]
3017
+ name = "windows_i686_gnu"
3018
+ version = "0.48.5"
3019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3020
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3021
+
3022
+ [[package]]
3023
+ name = "windows_i686_gnu"
3024
+ version = "0.52.6"
3025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3026
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3027
+
3028
+ [[package]]
3029
+ name = "windows_i686_gnu"
3030
+ version = "0.53.1"
3031
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3032
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3033
+
3034
+ [[package]]
3035
+ name = "windows_i686_gnullvm"
3036
+ version = "0.52.6"
3037
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3038
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3039
+
3040
+ [[package]]
3041
+ name = "windows_i686_gnullvm"
3042
+ version = "0.53.1"
3043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3044
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3045
+
3046
+ [[package]]
3047
+ name = "windows_i686_msvc"
3048
+ version = "0.48.5"
3049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3050
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3051
+
3052
+ [[package]]
3053
+ name = "windows_i686_msvc"
3054
+ version = "0.52.6"
3055
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3056
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3057
+
3058
+ [[package]]
3059
+ name = "windows_i686_msvc"
3060
+ version = "0.53.1"
3061
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3062
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3063
+
3064
+ [[package]]
3065
+ name = "windows_x86_64_gnu"
3066
+ version = "0.48.5"
3067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3068
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3069
+
3070
+ [[package]]
3071
+ name = "windows_x86_64_gnu"
3072
+ version = "0.52.6"
3073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3074
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3075
+
3076
+ [[package]]
3077
+ name = "windows_x86_64_gnu"
3078
+ version = "0.53.1"
3079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3080
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3081
+
3082
+ [[package]]
3083
+ name = "windows_x86_64_gnullvm"
3084
+ version = "0.48.5"
3085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3086
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3087
+
3088
+ [[package]]
3089
+ name = "windows_x86_64_gnullvm"
3090
+ version = "0.52.6"
3091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3092
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3093
+
3094
+ [[package]]
3095
+ name = "windows_x86_64_gnullvm"
3096
+ version = "0.53.1"
3097
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3098
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3099
+
3100
+ [[package]]
3101
+ name = "windows_x86_64_msvc"
3102
+ version = "0.48.5"
3103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3104
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3105
+
3106
+ [[package]]
3107
+ name = "windows_x86_64_msvc"
3108
+ version = "0.52.6"
3109
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3110
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3111
+
3112
+ [[package]]
3113
+ name = "windows_x86_64_msvc"
3114
+ version = "0.53.1"
3115
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3116
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3117
+
3118
+ [[package]]
3119
+ name = "winnow"
3120
+ version = "0.7.14"
3121
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3122
+ checksum = "5a5364e9d77fcdeeaa6062ced926ee3381faa2ee02d3eb83a5c27a8825540829"
3123
+ dependencies = [
3124
+ "memchr",
3125
+ ]
3126
+
3127
+ [[package]]
3128
+ name = "wiremock"
3129
+ version = "0.6.5"
3130
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3131
+ checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
3132
+ dependencies = [
3133
+ "assert-json-diff",
3134
+ "base64",
3135
+ "deadpool",
3136
+ "futures",
3137
+ "http",
3138
+ "http-body-util",
3139
+ "hyper",
3140
+ "hyper-util",
3141
+ "log",
3142
+ "once_cell",
3143
+ "regex",
3144
+ "serde",
3145
+ "serde_json",
3146
+ "tokio",
3147
+ "url",
3148
+ ]
3149
+
3150
+ [[package]]
3151
+ name = "wit-bindgen"
3152
+ version = "0.51.0"
3153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3154
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3155
+ dependencies = [
3156
+ "wit-bindgen-rust-macro",
3157
+ ]
3158
+
3159
+ [[package]]
3160
+ name = "wit-bindgen-core"
3161
+ version = "0.51.0"
3162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3163
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3164
+ dependencies = [
3165
+ "anyhow",
3166
+ "heck 0.5.0",
3167
+ "wit-parser",
3168
+ ]
3169
+
3170
+ [[package]]
3171
+ name = "wit-bindgen-rust"
3172
+ version = "0.51.0"
3173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3174
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3175
+ dependencies = [
3176
+ "anyhow",
3177
+ "heck 0.5.0",
3178
+ "indexmap 2.13.0",
3179
+ "prettyplease",
3180
+ "syn 2.0.115",
3181
+ "wasm-metadata",
3182
+ "wit-bindgen-core",
3183
+ "wit-component",
3184
+ ]
3185
+
3186
+ [[package]]
3187
+ name = "wit-bindgen-rust-macro"
3188
+ version = "0.51.0"
3189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3190
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3191
+ dependencies = [
3192
+ "anyhow",
3193
+ "prettyplease",
3194
+ "proc-macro2",
3195
+ "quote",
3196
+ "syn 2.0.115",
3197
+ "wit-bindgen-core",
3198
+ "wit-bindgen-rust",
3199
+ ]
3200
+
3201
+ [[package]]
3202
+ name = "wit-component"
3203
+ version = "0.244.0"
3204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3205
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3206
+ dependencies = [
3207
+ "anyhow",
3208
+ "bitflags",
3209
+ "indexmap 2.13.0",
3210
+ "log",
3211
+ "serde",
3212
+ "serde_derive",
3213
+ "serde_json",
3214
+ "wasm-encoder",
3215
+ "wasm-metadata",
3216
+ "wasmparser",
3217
+ "wit-parser",
3218
+ ]
3219
+
3220
+ [[package]]
3221
+ name = "wit-parser"
3222
+ version = "0.244.0"
3223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3224
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3225
+ dependencies = [
3226
+ "anyhow",
3227
+ "id-arena",
3228
+ "indexmap 2.13.0",
3229
+ "log",
3230
+ "semver",
3231
+ "serde",
3232
+ "serde_derive",
3233
+ "serde_json",
3234
+ "unicode-xid",
3235
+ "wasmparser",
3236
+ ]
3237
+
3238
+ [[package]]
3239
+ name = "writeable"
3240
+ version = "0.6.2"
3241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3242
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3243
+
3244
+ [[package]]
3245
+ name = "yansi"
3246
+ version = "1.0.1"
3247
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3248
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3249
+
3250
+ [[package]]
3251
+ name = "yoke"
3252
+ version = "0.8.1"
3253
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3254
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3255
+ dependencies = [
3256
+ "stable_deref_trait",
3257
+ "yoke-derive",
3258
+ "zerofrom",
3259
+ ]
3260
+
3261
+ [[package]]
3262
+ name = "yoke-derive"
3263
+ version = "0.8.1"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3266
+ dependencies = [
3267
+ "proc-macro2",
3268
+ "quote",
3269
+ "syn 2.0.115",
3270
+ "synstructure",
3271
+ ]
3272
+
3273
+ [[package]]
3274
+ name = "zerocopy"
3275
+ version = "0.8.39"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "db6d35d663eadb6c932438e763b262fe1a70987f9ae936e60158176d710cae4a"
3278
+ dependencies = [
3279
+ "zerocopy-derive",
3280
+ ]
3281
+
3282
+ [[package]]
3283
+ name = "zerocopy-derive"
3284
+ version = "0.8.39"
3285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3286
+ checksum = "4122cd3169e94605190e77839c9a40d40ed048d305bfdc146e7df40ab0f3e517"
3287
+ dependencies = [
3288
+ "proc-macro2",
3289
+ "quote",
3290
+ "syn 2.0.115",
3291
+ ]
3292
+
3293
+ [[package]]
3294
+ name = "zerofrom"
3295
+ version = "0.1.6"
3296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3297
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3298
+ dependencies = [
3299
+ "zerofrom-derive",
3300
+ ]
3301
+
3302
+ [[package]]
3303
+ name = "zerofrom-derive"
3304
+ version = "0.1.6"
3305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3306
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3307
+ dependencies = [
3308
+ "proc-macro2",
3309
+ "quote",
3310
+ "syn 2.0.115",
3311
+ "synstructure",
3312
+ ]
3313
+
3314
+ [[package]]
3315
+ name = "zeroize"
3316
+ version = "1.8.2"
3317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3318
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3319
+
3320
+ [[package]]
3321
+ name = "zerotrie"
3322
+ version = "0.2.3"
3323
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3324
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3325
+ dependencies = [
3326
+ "displaydoc",
3327
+ "yoke",
3328
+ "zerofrom",
3329
+ ]
3330
+
3331
+ [[package]]
3332
+ name = "zerovec"
3333
+ version = "0.11.5"
3334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3335
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3336
+ dependencies = [
3337
+ "yoke",
3338
+ "zerofrom",
3339
+ "zerovec-derive",
3340
+ ]
3341
+
3342
+ [[package]]
3343
+ name = "zerovec-derive"
3344
+ version = "0.11.2"
3345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3346
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3347
+ dependencies = [
3348
+ "proc-macro2",
3349
+ "quote",
3350
+ "syn 2.0.115",
3351
+ ]
3352
+
3353
+ [[package]]
3354
+ name = "zmij"
3355
+ version = "1.0.21"
3356
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3357
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"