auditkit 0.1.0

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.
package/Cargo.lock ADDED
@@ -0,0 +1,1992 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "aho-corasick"
7
+ version = "1.1.4"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10
+ dependencies = [
11
+ "memchr",
12
+ ]
13
+
14
+ [[package]]
15
+ name = "android_system_properties"
16
+ version = "0.1.5"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
19
+ dependencies = [
20
+ "libc",
21
+ ]
22
+
23
+ [[package]]
24
+ name = "anstream"
25
+ version = "1.0.0"
26
+ source = "registry+https://github.com/rust-lang/crates.io-index"
27
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
28
+ dependencies = [
29
+ "anstyle",
30
+ "anstyle-parse",
31
+ "anstyle-query",
32
+ "anstyle-wincon",
33
+ "colorchoice",
34
+ "is_terminal_polyfill",
35
+ "utf8parse",
36
+ ]
37
+
38
+ [[package]]
39
+ name = "anstyle"
40
+ version = "1.0.14"
41
+ source = "registry+https://github.com/rust-lang/crates.io-index"
42
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
43
+
44
+ [[package]]
45
+ name = "anstyle-parse"
46
+ version = "1.0.0"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
49
+ dependencies = [
50
+ "utf8parse",
51
+ ]
52
+
53
+ [[package]]
54
+ name = "anstyle-query"
55
+ version = "1.1.5"
56
+ source = "registry+https://github.com/rust-lang/crates.io-index"
57
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
58
+ dependencies = [
59
+ "windows-sys 0.61.2",
60
+ ]
61
+
62
+ [[package]]
63
+ name = "anstyle-wincon"
64
+ version = "3.0.11"
65
+ source = "registry+https://github.com/rust-lang/crates.io-index"
66
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
67
+ dependencies = [
68
+ "anstyle",
69
+ "once_cell_polyfill",
70
+ "windows-sys 0.61.2",
71
+ ]
72
+
73
+ [[package]]
74
+ name = "anyhow"
75
+ version = "1.0.102"
76
+ source = "registry+https://github.com/rust-lang/crates.io-index"
77
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
78
+
79
+ [[package]]
80
+ name = "atomic-waker"
81
+ version = "1.1.2"
82
+ source = "registry+https://github.com/rust-lang/crates.io-index"
83
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
84
+
85
+ [[package]]
86
+ name = "auditkit"
87
+ version = "0.1.0"
88
+ dependencies = [
89
+ "anyhow",
90
+ "chrono",
91
+ "clap",
92
+ "colored",
93
+ "indicatif",
94
+ "regex",
95
+ "reqwest",
96
+ "serde_json",
97
+ "tempfile",
98
+ "url",
99
+ ]
100
+
101
+ [[package]]
102
+ name = "autocfg"
103
+ version = "1.5.1"
104
+ source = "registry+https://github.com/rust-lang/crates.io-index"
105
+ checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
106
+
107
+ [[package]]
108
+ name = "base64"
109
+ version = "0.22.1"
110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
111
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
112
+
113
+ [[package]]
114
+ name = "bitflags"
115
+ version = "2.11.1"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
118
+
119
+ [[package]]
120
+ name = "bumpalo"
121
+ version = "3.20.3"
122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
123
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
124
+
125
+ [[package]]
126
+ name = "bytes"
127
+ version = "1.11.1"
128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
129
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
130
+
131
+ [[package]]
132
+ name = "cc"
133
+ version = "1.2.63"
134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
135
+ checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
136
+ dependencies = [
137
+ "find-msvc-tools",
138
+ "shlex",
139
+ ]
140
+
141
+ [[package]]
142
+ name = "cfg-if"
143
+ version = "1.0.4"
144
+ source = "registry+https://github.com/rust-lang/crates.io-index"
145
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
146
+
147
+ [[package]]
148
+ name = "cfg_aliases"
149
+ version = "0.2.1"
150
+ source = "registry+https://github.com/rust-lang/crates.io-index"
151
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
152
+
153
+ [[package]]
154
+ name = "chrono"
155
+ version = "0.4.44"
156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
157
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
158
+ dependencies = [
159
+ "iana-time-zone",
160
+ "num-traits",
161
+ "windows-link",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "clap"
166
+ version = "4.6.1"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
169
+ dependencies = [
170
+ "clap_builder",
171
+ "clap_derive",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "clap_builder"
176
+ version = "4.6.0"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
179
+ dependencies = [
180
+ "anstream",
181
+ "anstyle",
182
+ "clap_lex",
183
+ "strsim",
184
+ ]
185
+
186
+ [[package]]
187
+ name = "clap_derive"
188
+ version = "4.6.1"
189
+ source = "registry+https://github.com/rust-lang/crates.io-index"
190
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
191
+ dependencies = [
192
+ "heck",
193
+ "proc-macro2",
194
+ "quote",
195
+ "syn",
196
+ ]
197
+
198
+ [[package]]
199
+ name = "clap_lex"
200
+ version = "1.1.0"
201
+ source = "registry+https://github.com/rust-lang/crates.io-index"
202
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
203
+
204
+ [[package]]
205
+ name = "colorchoice"
206
+ version = "1.0.5"
207
+ source = "registry+https://github.com/rust-lang/crates.io-index"
208
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
209
+
210
+ [[package]]
211
+ name = "colored"
212
+ version = "3.1.1"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "faf9468729b8cbcea668e36183cb69d317348c2e08e994829fb56ebfdfbaac34"
215
+ dependencies = [
216
+ "windows-sys 0.61.2",
217
+ ]
218
+
219
+ [[package]]
220
+ name = "console"
221
+ version = "0.16.3"
222
+ source = "registry+https://github.com/rust-lang/crates.io-index"
223
+ checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
224
+ dependencies = [
225
+ "encode_unicode",
226
+ "libc",
227
+ "unicode-width",
228
+ "windows-sys 0.61.2",
229
+ ]
230
+
231
+ [[package]]
232
+ name = "core-foundation-sys"
233
+ version = "0.8.7"
234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
235
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
236
+
237
+ [[package]]
238
+ name = "displaydoc"
239
+ version = "0.2.6"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
242
+ dependencies = [
243
+ "proc-macro2",
244
+ "quote",
245
+ "syn",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "encode_unicode"
250
+ version = "1.0.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
253
+
254
+ [[package]]
255
+ name = "equivalent"
256
+ version = "1.0.2"
257
+ source = "registry+https://github.com/rust-lang/crates.io-index"
258
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
259
+
260
+ [[package]]
261
+ name = "errno"
262
+ version = "0.3.14"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
265
+ dependencies = [
266
+ "libc",
267
+ "windows-sys 0.61.2",
268
+ ]
269
+
270
+ [[package]]
271
+ name = "fastrand"
272
+ version = "2.4.1"
273
+ source = "registry+https://github.com/rust-lang/crates.io-index"
274
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
275
+
276
+ [[package]]
277
+ name = "find-msvc-tools"
278
+ version = "0.1.9"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
281
+
282
+ [[package]]
283
+ name = "foldhash"
284
+ version = "0.1.5"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
287
+
288
+ [[package]]
289
+ name = "form_urlencoded"
290
+ version = "1.2.2"
291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
292
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
293
+ dependencies = [
294
+ "percent-encoding",
295
+ ]
296
+
297
+ [[package]]
298
+ name = "futures-channel"
299
+ version = "0.3.32"
300
+ source = "registry+https://github.com/rust-lang/crates.io-index"
301
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
302
+ dependencies = [
303
+ "futures-core",
304
+ "futures-sink",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "futures-core"
309
+ version = "0.3.32"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
312
+
313
+ [[package]]
314
+ name = "futures-io"
315
+ version = "0.3.32"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
318
+
319
+ [[package]]
320
+ name = "futures-sink"
321
+ version = "0.3.32"
322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
323
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
324
+
325
+ [[package]]
326
+ name = "futures-task"
327
+ version = "0.3.32"
328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
329
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
330
+
331
+ [[package]]
332
+ name = "futures-util"
333
+ version = "0.3.32"
334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
335
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
336
+ dependencies = [
337
+ "futures-core",
338
+ "futures-io",
339
+ "futures-sink",
340
+ "futures-task",
341
+ "memchr",
342
+ "pin-project-lite",
343
+ "slab",
344
+ ]
345
+
346
+ [[package]]
347
+ name = "getrandom"
348
+ version = "0.2.17"
349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
350
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
351
+ dependencies = [
352
+ "cfg-if",
353
+ "js-sys",
354
+ "libc",
355
+ "wasi",
356
+ "wasm-bindgen",
357
+ ]
358
+
359
+ [[package]]
360
+ name = "getrandom"
361
+ version = "0.3.4"
362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
363
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
364
+ dependencies = [
365
+ "cfg-if",
366
+ "js-sys",
367
+ "libc",
368
+ "r-efi 5.3.0",
369
+ "wasip2",
370
+ "wasm-bindgen",
371
+ ]
372
+
373
+ [[package]]
374
+ name = "getrandom"
375
+ version = "0.4.2"
376
+ source = "registry+https://github.com/rust-lang/crates.io-index"
377
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
378
+ dependencies = [
379
+ "cfg-if",
380
+ "libc",
381
+ "r-efi 6.0.0",
382
+ "wasip2",
383
+ "wasip3",
384
+ ]
385
+
386
+ [[package]]
387
+ name = "hashbrown"
388
+ version = "0.15.5"
389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
390
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
391
+ dependencies = [
392
+ "foldhash",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "hashbrown"
397
+ version = "0.17.1"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
400
+
401
+ [[package]]
402
+ name = "heck"
403
+ version = "0.5.0"
404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
405
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
406
+
407
+ [[package]]
408
+ name = "http"
409
+ version = "1.4.1"
410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
411
+ checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
412
+ dependencies = [
413
+ "bytes",
414
+ "itoa",
415
+ ]
416
+
417
+ [[package]]
418
+ name = "http-body"
419
+ version = "1.0.1"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
422
+ dependencies = [
423
+ "bytes",
424
+ "http",
425
+ ]
426
+
427
+ [[package]]
428
+ name = "http-body-util"
429
+ version = "0.1.3"
430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
431
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
432
+ dependencies = [
433
+ "bytes",
434
+ "futures-core",
435
+ "http",
436
+ "http-body",
437
+ "pin-project-lite",
438
+ ]
439
+
440
+ [[package]]
441
+ name = "httparse"
442
+ version = "1.10.1"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
445
+
446
+ [[package]]
447
+ name = "hyper"
448
+ version = "1.10.1"
449
+ source = "registry+https://github.com/rust-lang/crates.io-index"
450
+ checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
451
+ dependencies = [
452
+ "atomic-waker",
453
+ "bytes",
454
+ "futures-channel",
455
+ "futures-core",
456
+ "http",
457
+ "http-body",
458
+ "httparse",
459
+ "itoa",
460
+ "pin-project-lite",
461
+ "smallvec",
462
+ "tokio",
463
+ "want",
464
+ ]
465
+
466
+ [[package]]
467
+ name = "hyper-rustls"
468
+ version = "0.27.9"
469
+ source = "registry+https://github.com/rust-lang/crates.io-index"
470
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
471
+ dependencies = [
472
+ "http",
473
+ "hyper",
474
+ "hyper-util",
475
+ "rustls",
476
+ "tokio",
477
+ "tokio-rustls",
478
+ "tower-service",
479
+ "webpki-roots",
480
+ ]
481
+
482
+ [[package]]
483
+ name = "hyper-util"
484
+ version = "0.1.20"
485
+ source = "registry+https://github.com/rust-lang/crates.io-index"
486
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
487
+ dependencies = [
488
+ "base64",
489
+ "bytes",
490
+ "futures-channel",
491
+ "futures-util",
492
+ "http",
493
+ "http-body",
494
+ "hyper",
495
+ "ipnet",
496
+ "libc",
497
+ "percent-encoding",
498
+ "pin-project-lite",
499
+ "socket2",
500
+ "tokio",
501
+ "tower-service",
502
+ "tracing",
503
+ ]
504
+
505
+ [[package]]
506
+ name = "iana-time-zone"
507
+ version = "0.1.65"
508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
509
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
510
+ dependencies = [
511
+ "android_system_properties",
512
+ "core-foundation-sys",
513
+ "iana-time-zone-haiku",
514
+ "js-sys",
515
+ "log",
516
+ "wasm-bindgen",
517
+ "windows-core",
518
+ ]
519
+
520
+ [[package]]
521
+ name = "iana-time-zone-haiku"
522
+ version = "0.1.2"
523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
524
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
525
+ dependencies = [
526
+ "cc",
527
+ ]
528
+
529
+ [[package]]
530
+ name = "icu_collections"
531
+ version = "2.2.0"
532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
533
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
534
+ dependencies = [
535
+ "displaydoc",
536
+ "potential_utf",
537
+ "utf8_iter",
538
+ "yoke",
539
+ "zerofrom",
540
+ "zerovec",
541
+ ]
542
+
543
+ [[package]]
544
+ name = "icu_locale_core"
545
+ version = "2.2.0"
546
+ source = "registry+https://github.com/rust-lang/crates.io-index"
547
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
548
+ dependencies = [
549
+ "displaydoc",
550
+ "litemap",
551
+ "tinystr",
552
+ "writeable",
553
+ "zerovec",
554
+ ]
555
+
556
+ [[package]]
557
+ name = "icu_normalizer"
558
+ version = "2.2.0"
559
+ source = "registry+https://github.com/rust-lang/crates.io-index"
560
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
561
+ dependencies = [
562
+ "icu_collections",
563
+ "icu_normalizer_data",
564
+ "icu_properties",
565
+ "icu_provider",
566
+ "smallvec",
567
+ "zerovec",
568
+ ]
569
+
570
+ [[package]]
571
+ name = "icu_normalizer_data"
572
+ version = "2.2.0"
573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
574
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
575
+
576
+ [[package]]
577
+ name = "icu_properties"
578
+ version = "2.2.0"
579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
580
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
581
+ dependencies = [
582
+ "icu_collections",
583
+ "icu_locale_core",
584
+ "icu_properties_data",
585
+ "icu_provider",
586
+ "zerotrie",
587
+ "zerovec",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "icu_properties_data"
592
+ version = "2.2.0"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
595
+
596
+ [[package]]
597
+ name = "icu_provider"
598
+ version = "2.2.0"
599
+ source = "registry+https://github.com/rust-lang/crates.io-index"
600
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
601
+ dependencies = [
602
+ "displaydoc",
603
+ "icu_locale_core",
604
+ "writeable",
605
+ "yoke",
606
+ "zerofrom",
607
+ "zerotrie",
608
+ "zerovec",
609
+ ]
610
+
611
+ [[package]]
612
+ name = "id-arena"
613
+ version = "2.3.0"
614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
615
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
616
+
617
+ [[package]]
618
+ name = "idna"
619
+ version = "1.1.0"
620
+ source = "registry+https://github.com/rust-lang/crates.io-index"
621
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
622
+ dependencies = [
623
+ "idna_adapter",
624
+ "smallvec",
625
+ "utf8_iter",
626
+ ]
627
+
628
+ [[package]]
629
+ name = "idna_adapter"
630
+ version = "1.2.2"
631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
632
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
633
+ dependencies = [
634
+ "icu_normalizer",
635
+ "icu_properties",
636
+ ]
637
+
638
+ [[package]]
639
+ name = "indexmap"
640
+ version = "2.14.0"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
643
+ dependencies = [
644
+ "equivalent",
645
+ "hashbrown 0.17.1",
646
+ "serde",
647
+ "serde_core",
648
+ ]
649
+
650
+ [[package]]
651
+ name = "indicatif"
652
+ version = "0.18.4"
653
+ source = "registry+https://github.com/rust-lang/crates.io-index"
654
+ checksum = "25470f23803092da7d239834776d653104d551bc4d7eacaf31e6837854b8e9eb"
655
+ dependencies = [
656
+ "console",
657
+ "portable-atomic",
658
+ "unicode-width",
659
+ "unit-prefix",
660
+ "web-time",
661
+ ]
662
+
663
+ [[package]]
664
+ name = "ipnet"
665
+ version = "2.12.0"
666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
667
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
668
+
669
+ [[package]]
670
+ name = "is_terminal_polyfill"
671
+ version = "1.70.2"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
674
+
675
+ [[package]]
676
+ name = "itoa"
677
+ version = "1.0.18"
678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
679
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
680
+
681
+ [[package]]
682
+ name = "js-sys"
683
+ version = "0.3.99"
684
+ source = "registry+https://github.com/rust-lang/crates.io-index"
685
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
686
+ dependencies = [
687
+ "cfg-if",
688
+ "futures-util",
689
+ "once_cell",
690
+ "wasm-bindgen",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "leb128fmt"
695
+ version = "0.1.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
698
+
699
+ [[package]]
700
+ name = "libc"
701
+ version = "0.2.186"
702
+ source = "registry+https://github.com/rust-lang/crates.io-index"
703
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
704
+
705
+ [[package]]
706
+ name = "linux-raw-sys"
707
+ version = "0.12.1"
708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
709
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
710
+
711
+ [[package]]
712
+ name = "litemap"
713
+ version = "0.8.2"
714
+ source = "registry+https://github.com/rust-lang/crates.io-index"
715
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
716
+
717
+ [[package]]
718
+ name = "log"
719
+ version = "0.4.30"
720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
721
+ checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
722
+
723
+ [[package]]
724
+ name = "lru-slab"
725
+ version = "0.1.2"
726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
727
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
728
+
729
+ [[package]]
730
+ name = "memchr"
731
+ version = "2.8.1"
732
+ source = "registry+https://github.com/rust-lang/crates.io-index"
733
+ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
734
+
735
+ [[package]]
736
+ name = "mio"
737
+ version = "1.2.1"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
740
+ dependencies = [
741
+ "libc",
742
+ "wasi",
743
+ "windows-sys 0.61.2",
744
+ ]
745
+
746
+ [[package]]
747
+ name = "num-traits"
748
+ version = "0.2.19"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
751
+ dependencies = [
752
+ "autocfg",
753
+ ]
754
+
755
+ [[package]]
756
+ name = "once_cell"
757
+ version = "1.21.4"
758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
759
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
760
+
761
+ [[package]]
762
+ name = "once_cell_polyfill"
763
+ version = "1.70.2"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
766
+
767
+ [[package]]
768
+ name = "percent-encoding"
769
+ version = "2.3.2"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
772
+
773
+ [[package]]
774
+ name = "pin-project-lite"
775
+ version = "0.2.17"
776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
777
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
778
+
779
+ [[package]]
780
+ name = "portable-atomic"
781
+ version = "1.13.1"
782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
783
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
784
+
785
+ [[package]]
786
+ name = "potential_utf"
787
+ version = "0.1.5"
788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
789
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
790
+ dependencies = [
791
+ "zerovec",
792
+ ]
793
+
794
+ [[package]]
795
+ name = "ppv-lite86"
796
+ version = "0.2.21"
797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
798
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
799
+ dependencies = [
800
+ "zerocopy",
801
+ ]
802
+
803
+ [[package]]
804
+ name = "prettyplease"
805
+ version = "0.2.37"
806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
807
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
808
+ dependencies = [
809
+ "proc-macro2",
810
+ "syn",
811
+ ]
812
+
813
+ [[package]]
814
+ name = "proc-macro2"
815
+ version = "1.0.106"
816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
817
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
818
+ dependencies = [
819
+ "unicode-ident",
820
+ ]
821
+
822
+ [[package]]
823
+ name = "quinn"
824
+ version = "0.11.9"
825
+ source = "registry+https://github.com/rust-lang/crates.io-index"
826
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
827
+ dependencies = [
828
+ "bytes",
829
+ "cfg_aliases",
830
+ "pin-project-lite",
831
+ "quinn-proto",
832
+ "quinn-udp",
833
+ "rustc-hash",
834
+ "rustls",
835
+ "socket2",
836
+ "thiserror",
837
+ "tokio",
838
+ "tracing",
839
+ "web-time",
840
+ ]
841
+
842
+ [[package]]
843
+ name = "quinn-proto"
844
+ version = "0.11.14"
845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
846
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
847
+ dependencies = [
848
+ "bytes",
849
+ "getrandom 0.3.4",
850
+ "lru-slab",
851
+ "rand",
852
+ "ring",
853
+ "rustc-hash",
854
+ "rustls",
855
+ "rustls-pki-types",
856
+ "slab",
857
+ "thiserror",
858
+ "tinyvec",
859
+ "tracing",
860
+ "web-time",
861
+ ]
862
+
863
+ [[package]]
864
+ name = "quinn-udp"
865
+ version = "0.5.14"
866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
867
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
868
+ dependencies = [
869
+ "cfg_aliases",
870
+ "libc",
871
+ "once_cell",
872
+ "socket2",
873
+ "tracing",
874
+ "windows-sys 0.60.2",
875
+ ]
876
+
877
+ [[package]]
878
+ name = "quote"
879
+ version = "1.0.45"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
882
+ dependencies = [
883
+ "proc-macro2",
884
+ ]
885
+
886
+ [[package]]
887
+ name = "r-efi"
888
+ version = "5.3.0"
889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
890
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
891
+
892
+ [[package]]
893
+ name = "r-efi"
894
+ version = "6.0.0"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
897
+
898
+ [[package]]
899
+ name = "rand"
900
+ version = "0.9.4"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
903
+ dependencies = [
904
+ "rand_chacha",
905
+ "rand_core",
906
+ ]
907
+
908
+ [[package]]
909
+ name = "rand_chacha"
910
+ version = "0.9.0"
911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
912
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
913
+ dependencies = [
914
+ "ppv-lite86",
915
+ "rand_core",
916
+ ]
917
+
918
+ [[package]]
919
+ name = "rand_core"
920
+ version = "0.9.5"
921
+ source = "registry+https://github.com/rust-lang/crates.io-index"
922
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
923
+ dependencies = [
924
+ "getrandom 0.3.4",
925
+ ]
926
+
927
+ [[package]]
928
+ name = "regex"
929
+ version = "1.12.3"
930
+ source = "registry+https://github.com/rust-lang/crates.io-index"
931
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
932
+ dependencies = [
933
+ "aho-corasick",
934
+ "memchr",
935
+ "regex-automata",
936
+ "regex-syntax",
937
+ ]
938
+
939
+ [[package]]
940
+ name = "regex-automata"
941
+ version = "0.4.14"
942
+ source = "registry+https://github.com/rust-lang/crates.io-index"
943
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
944
+ dependencies = [
945
+ "aho-corasick",
946
+ "memchr",
947
+ "regex-syntax",
948
+ ]
949
+
950
+ [[package]]
951
+ name = "regex-syntax"
952
+ version = "0.8.10"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
955
+
956
+ [[package]]
957
+ name = "reqwest"
958
+ version = "0.12.28"
959
+ source = "registry+https://github.com/rust-lang/crates.io-index"
960
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
961
+ dependencies = [
962
+ "base64",
963
+ "bytes",
964
+ "futures-channel",
965
+ "futures-core",
966
+ "futures-util",
967
+ "http",
968
+ "http-body",
969
+ "http-body-util",
970
+ "hyper",
971
+ "hyper-rustls",
972
+ "hyper-util",
973
+ "js-sys",
974
+ "log",
975
+ "percent-encoding",
976
+ "pin-project-lite",
977
+ "quinn",
978
+ "rustls",
979
+ "rustls-pki-types",
980
+ "serde",
981
+ "serde_json",
982
+ "serde_urlencoded",
983
+ "sync_wrapper",
984
+ "tokio",
985
+ "tokio-rustls",
986
+ "tower",
987
+ "tower-http",
988
+ "tower-service",
989
+ "url",
990
+ "wasm-bindgen",
991
+ "wasm-bindgen-futures",
992
+ "web-sys",
993
+ "webpki-roots",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "ring"
998
+ version = "0.17.14"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1001
+ dependencies = [
1002
+ "cc",
1003
+ "cfg-if",
1004
+ "getrandom 0.2.17",
1005
+ "libc",
1006
+ "untrusted",
1007
+ "windows-sys 0.52.0",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "rustc-hash"
1012
+ version = "2.1.2"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1015
+
1016
+ [[package]]
1017
+ name = "rustix"
1018
+ version = "1.1.4"
1019
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1020
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1021
+ dependencies = [
1022
+ "bitflags",
1023
+ "errno",
1024
+ "libc",
1025
+ "linux-raw-sys",
1026
+ "windows-sys 0.61.2",
1027
+ ]
1028
+
1029
+ [[package]]
1030
+ name = "rustls"
1031
+ version = "0.23.40"
1032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1033
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1034
+ dependencies = [
1035
+ "once_cell",
1036
+ "ring",
1037
+ "rustls-pki-types",
1038
+ "rustls-webpki",
1039
+ "subtle",
1040
+ "zeroize",
1041
+ ]
1042
+
1043
+ [[package]]
1044
+ name = "rustls-pki-types"
1045
+ version = "1.14.1"
1046
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1047
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1048
+ dependencies = [
1049
+ "web-time",
1050
+ "zeroize",
1051
+ ]
1052
+
1053
+ [[package]]
1054
+ name = "rustls-webpki"
1055
+ version = "0.103.13"
1056
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1057
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1058
+ dependencies = [
1059
+ "ring",
1060
+ "rustls-pki-types",
1061
+ "untrusted",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "rustversion"
1066
+ version = "1.0.22"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1069
+
1070
+ [[package]]
1071
+ name = "ryu"
1072
+ version = "1.0.23"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1075
+
1076
+ [[package]]
1077
+ name = "semver"
1078
+ version = "1.0.28"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
1081
+
1082
+ [[package]]
1083
+ name = "serde"
1084
+ version = "1.0.228"
1085
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1086
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1087
+ dependencies = [
1088
+ "serde_core",
1089
+ ]
1090
+
1091
+ [[package]]
1092
+ name = "serde_core"
1093
+ version = "1.0.228"
1094
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1095
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1096
+ dependencies = [
1097
+ "serde_derive",
1098
+ ]
1099
+
1100
+ [[package]]
1101
+ name = "serde_derive"
1102
+ version = "1.0.228"
1103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1104
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1105
+ dependencies = [
1106
+ "proc-macro2",
1107
+ "quote",
1108
+ "syn",
1109
+ ]
1110
+
1111
+ [[package]]
1112
+ name = "serde_json"
1113
+ version = "1.0.150"
1114
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1115
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1116
+ dependencies = [
1117
+ "itoa",
1118
+ "memchr",
1119
+ "serde",
1120
+ "serde_core",
1121
+ "zmij",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "serde_urlencoded"
1126
+ version = "0.7.1"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1129
+ dependencies = [
1130
+ "form_urlencoded",
1131
+ "itoa",
1132
+ "ryu",
1133
+ "serde",
1134
+ ]
1135
+
1136
+ [[package]]
1137
+ name = "shlex"
1138
+ version = "2.0.1"
1139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1140
+ checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
1141
+
1142
+ [[package]]
1143
+ name = "slab"
1144
+ version = "0.4.12"
1145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1146
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1147
+
1148
+ [[package]]
1149
+ name = "smallvec"
1150
+ version = "1.15.1"
1151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1152
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1153
+
1154
+ [[package]]
1155
+ name = "socket2"
1156
+ version = "0.6.4"
1157
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1158
+ checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
1159
+ dependencies = [
1160
+ "libc",
1161
+ "windows-sys 0.61.2",
1162
+ ]
1163
+
1164
+ [[package]]
1165
+ name = "stable_deref_trait"
1166
+ version = "1.2.1"
1167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1168
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1169
+
1170
+ [[package]]
1171
+ name = "strsim"
1172
+ version = "0.11.1"
1173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1174
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1175
+
1176
+ [[package]]
1177
+ name = "subtle"
1178
+ version = "2.6.1"
1179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1180
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1181
+
1182
+ [[package]]
1183
+ name = "syn"
1184
+ version = "2.0.117"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1187
+ dependencies = [
1188
+ "proc-macro2",
1189
+ "quote",
1190
+ "unicode-ident",
1191
+ ]
1192
+
1193
+ [[package]]
1194
+ name = "sync_wrapper"
1195
+ version = "1.0.2"
1196
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1197
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1198
+ dependencies = [
1199
+ "futures-core",
1200
+ ]
1201
+
1202
+ [[package]]
1203
+ name = "synstructure"
1204
+ version = "0.13.2"
1205
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1206
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1207
+ dependencies = [
1208
+ "proc-macro2",
1209
+ "quote",
1210
+ "syn",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "tempfile"
1215
+ version = "3.27.0"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1218
+ dependencies = [
1219
+ "fastrand",
1220
+ "getrandom 0.4.2",
1221
+ "once_cell",
1222
+ "rustix",
1223
+ "windows-sys 0.61.2",
1224
+ ]
1225
+
1226
+ [[package]]
1227
+ name = "thiserror"
1228
+ version = "2.0.18"
1229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1230
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1231
+ dependencies = [
1232
+ "thiserror-impl",
1233
+ ]
1234
+
1235
+ [[package]]
1236
+ name = "thiserror-impl"
1237
+ version = "2.0.18"
1238
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1239
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1240
+ dependencies = [
1241
+ "proc-macro2",
1242
+ "quote",
1243
+ "syn",
1244
+ ]
1245
+
1246
+ [[package]]
1247
+ name = "tinystr"
1248
+ version = "0.8.3"
1249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1250
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1251
+ dependencies = [
1252
+ "displaydoc",
1253
+ "zerovec",
1254
+ ]
1255
+
1256
+ [[package]]
1257
+ name = "tinyvec"
1258
+ version = "1.11.0"
1259
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1260
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1261
+ dependencies = [
1262
+ "tinyvec_macros",
1263
+ ]
1264
+
1265
+ [[package]]
1266
+ name = "tinyvec_macros"
1267
+ version = "0.1.1"
1268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1269
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1270
+
1271
+ [[package]]
1272
+ name = "tokio"
1273
+ version = "1.52.3"
1274
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1275
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1276
+ dependencies = [
1277
+ "bytes",
1278
+ "libc",
1279
+ "mio",
1280
+ "pin-project-lite",
1281
+ "socket2",
1282
+ "windows-sys 0.61.2",
1283
+ ]
1284
+
1285
+ [[package]]
1286
+ name = "tokio-rustls"
1287
+ version = "0.26.4"
1288
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1289
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1290
+ dependencies = [
1291
+ "rustls",
1292
+ "tokio",
1293
+ ]
1294
+
1295
+ [[package]]
1296
+ name = "tower"
1297
+ version = "0.5.3"
1298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1299
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1300
+ dependencies = [
1301
+ "futures-core",
1302
+ "futures-util",
1303
+ "pin-project-lite",
1304
+ "sync_wrapper",
1305
+ "tokio",
1306
+ "tower-layer",
1307
+ "tower-service",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "tower-http"
1312
+ version = "0.6.11"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1315
+ dependencies = [
1316
+ "bitflags",
1317
+ "bytes",
1318
+ "futures-util",
1319
+ "http",
1320
+ "http-body",
1321
+ "pin-project-lite",
1322
+ "tower",
1323
+ "tower-layer",
1324
+ "tower-service",
1325
+ "url",
1326
+ ]
1327
+
1328
+ [[package]]
1329
+ name = "tower-layer"
1330
+ version = "0.3.3"
1331
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1332
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1333
+
1334
+ [[package]]
1335
+ name = "tower-service"
1336
+ version = "0.3.3"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1339
+
1340
+ [[package]]
1341
+ name = "tracing"
1342
+ version = "0.1.44"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1345
+ dependencies = [
1346
+ "pin-project-lite",
1347
+ "tracing-core",
1348
+ ]
1349
+
1350
+ [[package]]
1351
+ name = "tracing-core"
1352
+ version = "0.1.36"
1353
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1354
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1355
+ dependencies = [
1356
+ "once_cell",
1357
+ ]
1358
+
1359
+ [[package]]
1360
+ name = "try-lock"
1361
+ version = "0.2.5"
1362
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1363
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1364
+
1365
+ [[package]]
1366
+ name = "unicode-ident"
1367
+ version = "1.0.24"
1368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1369
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1370
+
1371
+ [[package]]
1372
+ name = "unicode-width"
1373
+ version = "0.2.2"
1374
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1375
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
1376
+
1377
+ [[package]]
1378
+ name = "unicode-xid"
1379
+ version = "0.2.6"
1380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1381
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
1382
+
1383
+ [[package]]
1384
+ name = "unit-prefix"
1385
+ version = "0.5.2"
1386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1387
+ checksum = "81e544489bf3d8ef66c953931f56617f423cd4b5494be343d9b9d3dda037b9a3"
1388
+
1389
+ [[package]]
1390
+ name = "untrusted"
1391
+ version = "0.9.0"
1392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1393
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1394
+
1395
+ [[package]]
1396
+ name = "url"
1397
+ version = "2.5.8"
1398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1399
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1400
+ dependencies = [
1401
+ "form_urlencoded",
1402
+ "idna",
1403
+ "percent-encoding",
1404
+ "serde",
1405
+ ]
1406
+
1407
+ [[package]]
1408
+ name = "utf8_iter"
1409
+ version = "1.0.4"
1410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1411
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1412
+
1413
+ [[package]]
1414
+ name = "utf8parse"
1415
+ version = "0.2.2"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1418
+
1419
+ [[package]]
1420
+ name = "want"
1421
+ version = "0.3.1"
1422
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1423
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1424
+ dependencies = [
1425
+ "try-lock",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "wasi"
1430
+ version = "0.11.1+wasi-snapshot-preview1"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1433
+
1434
+ [[package]]
1435
+ name = "wasip2"
1436
+ version = "1.0.3+wasi-0.2.9"
1437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1438
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1439
+ dependencies = [
1440
+ "wit-bindgen 0.57.1",
1441
+ ]
1442
+
1443
+ [[package]]
1444
+ name = "wasip3"
1445
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
1446
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1447
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
1448
+ dependencies = [
1449
+ "wit-bindgen 0.51.0",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "wasm-bindgen"
1454
+ version = "0.2.122"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1457
+ dependencies = [
1458
+ "cfg-if",
1459
+ "once_cell",
1460
+ "rustversion",
1461
+ "wasm-bindgen-macro",
1462
+ "wasm-bindgen-shared",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "wasm-bindgen-futures"
1467
+ version = "0.4.72"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
1470
+ dependencies = [
1471
+ "js-sys",
1472
+ "wasm-bindgen",
1473
+ ]
1474
+
1475
+ [[package]]
1476
+ name = "wasm-bindgen-macro"
1477
+ version = "0.2.122"
1478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1479
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1480
+ dependencies = [
1481
+ "quote",
1482
+ "wasm-bindgen-macro-support",
1483
+ ]
1484
+
1485
+ [[package]]
1486
+ name = "wasm-bindgen-macro-support"
1487
+ version = "0.2.122"
1488
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1489
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1490
+ dependencies = [
1491
+ "bumpalo",
1492
+ "proc-macro2",
1493
+ "quote",
1494
+ "syn",
1495
+ "wasm-bindgen-shared",
1496
+ ]
1497
+
1498
+ [[package]]
1499
+ name = "wasm-bindgen-shared"
1500
+ version = "0.2.122"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1503
+ dependencies = [
1504
+ "unicode-ident",
1505
+ ]
1506
+
1507
+ [[package]]
1508
+ name = "wasm-encoder"
1509
+ version = "0.244.0"
1510
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1511
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
1512
+ dependencies = [
1513
+ "leb128fmt",
1514
+ "wasmparser",
1515
+ ]
1516
+
1517
+ [[package]]
1518
+ name = "wasm-metadata"
1519
+ version = "0.244.0"
1520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1521
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
1522
+ dependencies = [
1523
+ "anyhow",
1524
+ "indexmap",
1525
+ "wasm-encoder",
1526
+ "wasmparser",
1527
+ ]
1528
+
1529
+ [[package]]
1530
+ name = "wasmparser"
1531
+ version = "0.244.0"
1532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1533
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
1534
+ dependencies = [
1535
+ "bitflags",
1536
+ "hashbrown 0.15.5",
1537
+ "indexmap",
1538
+ "semver",
1539
+ ]
1540
+
1541
+ [[package]]
1542
+ name = "web-sys"
1543
+ version = "0.3.99"
1544
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1545
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
1546
+ dependencies = [
1547
+ "js-sys",
1548
+ "wasm-bindgen",
1549
+ ]
1550
+
1551
+ [[package]]
1552
+ name = "web-time"
1553
+ version = "1.1.0"
1554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1555
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1556
+ dependencies = [
1557
+ "js-sys",
1558
+ "wasm-bindgen",
1559
+ ]
1560
+
1561
+ [[package]]
1562
+ name = "webpki-roots"
1563
+ version = "1.0.7"
1564
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1565
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
1566
+ dependencies = [
1567
+ "rustls-pki-types",
1568
+ ]
1569
+
1570
+ [[package]]
1571
+ name = "windows-core"
1572
+ version = "0.62.2"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
1575
+ dependencies = [
1576
+ "windows-implement",
1577
+ "windows-interface",
1578
+ "windows-link",
1579
+ "windows-result",
1580
+ "windows-strings",
1581
+ ]
1582
+
1583
+ [[package]]
1584
+ name = "windows-implement"
1585
+ version = "0.60.2"
1586
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1587
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
1588
+ dependencies = [
1589
+ "proc-macro2",
1590
+ "quote",
1591
+ "syn",
1592
+ ]
1593
+
1594
+ [[package]]
1595
+ name = "windows-interface"
1596
+ version = "0.59.3"
1597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1598
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
1599
+ dependencies = [
1600
+ "proc-macro2",
1601
+ "quote",
1602
+ "syn",
1603
+ ]
1604
+
1605
+ [[package]]
1606
+ name = "windows-link"
1607
+ version = "0.2.1"
1608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1609
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1610
+
1611
+ [[package]]
1612
+ name = "windows-result"
1613
+ version = "0.4.1"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
1616
+ dependencies = [
1617
+ "windows-link",
1618
+ ]
1619
+
1620
+ [[package]]
1621
+ name = "windows-strings"
1622
+ version = "0.5.1"
1623
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1624
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
1625
+ dependencies = [
1626
+ "windows-link",
1627
+ ]
1628
+
1629
+ [[package]]
1630
+ name = "windows-sys"
1631
+ version = "0.52.0"
1632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1633
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1634
+ dependencies = [
1635
+ "windows-targets 0.52.6",
1636
+ ]
1637
+
1638
+ [[package]]
1639
+ name = "windows-sys"
1640
+ version = "0.60.2"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
1643
+ dependencies = [
1644
+ "windows-targets 0.53.5",
1645
+ ]
1646
+
1647
+ [[package]]
1648
+ name = "windows-sys"
1649
+ version = "0.61.2"
1650
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1651
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1652
+ dependencies = [
1653
+ "windows-link",
1654
+ ]
1655
+
1656
+ [[package]]
1657
+ name = "windows-targets"
1658
+ version = "0.52.6"
1659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1660
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1661
+ dependencies = [
1662
+ "windows_aarch64_gnullvm 0.52.6",
1663
+ "windows_aarch64_msvc 0.52.6",
1664
+ "windows_i686_gnu 0.52.6",
1665
+ "windows_i686_gnullvm 0.52.6",
1666
+ "windows_i686_msvc 0.52.6",
1667
+ "windows_x86_64_gnu 0.52.6",
1668
+ "windows_x86_64_gnullvm 0.52.6",
1669
+ "windows_x86_64_msvc 0.52.6",
1670
+ ]
1671
+
1672
+ [[package]]
1673
+ name = "windows-targets"
1674
+ version = "0.53.5"
1675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1676
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
1677
+ dependencies = [
1678
+ "windows-link",
1679
+ "windows_aarch64_gnullvm 0.53.1",
1680
+ "windows_aarch64_msvc 0.53.1",
1681
+ "windows_i686_gnu 0.53.1",
1682
+ "windows_i686_gnullvm 0.53.1",
1683
+ "windows_i686_msvc 0.53.1",
1684
+ "windows_x86_64_gnu 0.53.1",
1685
+ "windows_x86_64_gnullvm 0.53.1",
1686
+ "windows_x86_64_msvc 0.53.1",
1687
+ ]
1688
+
1689
+ [[package]]
1690
+ name = "windows_aarch64_gnullvm"
1691
+ version = "0.52.6"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1694
+
1695
+ [[package]]
1696
+ name = "windows_aarch64_gnullvm"
1697
+ version = "0.53.1"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
1700
+
1701
+ [[package]]
1702
+ name = "windows_aarch64_msvc"
1703
+ version = "0.52.6"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1706
+
1707
+ [[package]]
1708
+ name = "windows_aarch64_msvc"
1709
+ version = "0.53.1"
1710
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1711
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
1712
+
1713
+ [[package]]
1714
+ name = "windows_i686_gnu"
1715
+ version = "0.52.6"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1718
+
1719
+ [[package]]
1720
+ name = "windows_i686_gnu"
1721
+ version = "0.53.1"
1722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1723
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
1724
+
1725
+ [[package]]
1726
+ name = "windows_i686_gnullvm"
1727
+ version = "0.52.6"
1728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1729
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1730
+
1731
+ [[package]]
1732
+ name = "windows_i686_gnullvm"
1733
+ version = "0.53.1"
1734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1735
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
1736
+
1737
+ [[package]]
1738
+ name = "windows_i686_msvc"
1739
+ version = "0.52.6"
1740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1741
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1742
+
1743
+ [[package]]
1744
+ name = "windows_i686_msvc"
1745
+ version = "0.53.1"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
1748
+
1749
+ [[package]]
1750
+ name = "windows_x86_64_gnu"
1751
+ version = "0.52.6"
1752
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1753
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1754
+
1755
+ [[package]]
1756
+ name = "windows_x86_64_gnu"
1757
+ version = "0.53.1"
1758
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1759
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
1760
+
1761
+ [[package]]
1762
+ name = "windows_x86_64_gnullvm"
1763
+ version = "0.52.6"
1764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1765
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1766
+
1767
+ [[package]]
1768
+ name = "windows_x86_64_gnullvm"
1769
+ version = "0.53.1"
1770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1771
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
1772
+
1773
+ [[package]]
1774
+ name = "windows_x86_64_msvc"
1775
+ version = "0.52.6"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1778
+
1779
+ [[package]]
1780
+ name = "windows_x86_64_msvc"
1781
+ version = "0.53.1"
1782
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1783
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
1784
+
1785
+ [[package]]
1786
+ name = "wit-bindgen"
1787
+ version = "0.51.0"
1788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1789
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1790
+ dependencies = [
1791
+ "wit-bindgen-rust-macro",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "wit-bindgen"
1796
+ version = "0.57.1"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
1799
+
1800
+ [[package]]
1801
+ name = "wit-bindgen-core"
1802
+ version = "0.51.0"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
1805
+ dependencies = [
1806
+ "anyhow",
1807
+ "heck",
1808
+ "wit-parser",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "wit-bindgen-rust"
1813
+ version = "0.51.0"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
1816
+ dependencies = [
1817
+ "anyhow",
1818
+ "heck",
1819
+ "indexmap",
1820
+ "prettyplease",
1821
+ "syn",
1822
+ "wasm-metadata",
1823
+ "wit-bindgen-core",
1824
+ "wit-component",
1825
+ ]
1826
+
1827
+ [[package]]
1828
+ name = "wit-bindgen-rust-macro"
1829
+ version = "0.51.0"
1830
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1831
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
1832
+ dependencies = [
1833
+ "anyhow",
1834
+ "prettyplease",
1835
+ "proc-macro2",
1836
+ "quote",
1837
+ "syn",
1838
+ "wit-bindgen-core",
1839
+ "wit-bindgen-rust",
1840
+ ]
1841
+
1842
+ [[package]]
1843
+ name = "wit-component"
1844
+ version = "0.244.0"
1845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1846
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
1847
+ dependencies = [
1848
+ "anyhow",
1849
+ "bitflags",
1850
+ "indexmap",
1851
+ "log",
1852
+ "serde",
1853
+ "serde_derive",
1854
+ "serde_json",
1855
+ "wasm-encoder",
1856
+ "wasm-metadata",
1857
+ "wasmparser",
1858
+ "wit-parser",
1859
+ ]
1860
+
1861
+ [[package]]
1862
+ name = "wit-parser"
1863
+ version = "0.244.0"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
1866
+ dependencies = [
1867
+ "anyhow",
1868
+ "id-arena",
1869
+ "indexmap",
1870
+ "log",
1871
+ "semver",
1872
+ "serde",
1873
+ "serde_derive",
1874
+ "serde_json",
1875
+ "unicode-xid",
1876
+ "wasmparser",
1877
+ ]
1878
+
1879
+ [[package]]
1880
+ name = "writeable"
1881
+ version = "0.6.3"
1882
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1883
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
1884
+
1885
+ [[package]]
1886
+ name = "yoke"
1887
+ version = "0.8.2"
1888
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1889
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
1890
+ dependencies = [
1891
+ "stable_deref_trait",
1892
+ "yoke-derive",
1893
+ "zerofrom",
1894
+ ]
1895
+
1896
+ [[package]]
1897
+ name = "yoke-derive"
1898
+ version = "0.8.2"
1899
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1900
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
1901
+ dependencies = [
1902
+ "proc-macro2",
1903
+ "quote",
1904
+ "syn",
1905
+ "synstructure",
1906
+ ]
1907
+
1908
+ [[package]]
1909
+ name = "zerocopy"
1910
+ version = "0.8.50"
1911
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1912
+ checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
1913
+ dependencies = [
1914
+ "zerocopy-derive",
1915
+ ]
1916
+
1917
+ [[package]]
1918
+ name = "zerocopy-derive"
1919
+ version = "0.8.50"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
1922
+ dependencies = [
1923
+ "proc-macro2",
1924
+ "quote",
1925
+ "syn",
1926
+ ]
1927
+
1928
+ [[package]]
1929
+ name = "zerofrom"
1930
+ version = "0.1.8"
1931
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1932
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
1933
+ dependencies = [
1934
+ "zerofrom-derive",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "zerofrom-derive"
1939
+ version = "0.1.7"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
1942
+ dependencies = [
1943
+ "proc-macro2",
1944
+ "quote",
1945
+ "syn",
1946
+ "synstructure",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "zeroize"
1951
+ version = "1.8.2"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1954
+
1955
+ [[package]]
1956
+ name = "zerotrie"
1957
+ version = "0.2.4"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
1960
+ dependencies = [
1961
+ "displaydoc",
1962
+ "yoke",
1963
+ "zerofrom",
1964
+ ]
1965
+
1966
+ [[package]]
1967
+ name = "zerovec"
1968
+ version = "0.11.6"
1969
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1970
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
1971
+ dependencies = [
1972
+ "yoke",
1973
+ "zerofrom",
1974
+ "zerovec-derive",
1975
+ ]
1976
+
1977
+ [[package]]
1978
+ name = "zerovec-derive"
1979
+ version = "0.11.3"
1980
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1981
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
1982
+ dependencies = [
1983
+ "proc-macro2",
1984
+ "quote",
1985
+ "syn",
1986
+ ]
1987
+
1988
+ [[package]]
1989
+ name = "zmij"
1990
+ version = "1.0.21"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"