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