anveesa 0.7.11 → 0.7.12

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,2316 @@
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 = "allocator-api2"
16
+ version = "0.2.21"
17
+ source = "registry+https://github.com/rust-lang/crates.io-index"
18
+ checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
+
20
+ [[package]]
21
+ name = "anstream"
22
+ version = "1.0.0"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
25
+ dependencies = [
26
+ "anstyle",
27
+ "anstyle-parse",
28
+ "anstyle-query",
29
+ "anstyle-wincon",
30
+ "colorchoice",
31
+ "is_terminal_polyfill",
32
+ "utf8parse",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "anstyle"
37
+ version = "1.0.14"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
40
+
41
+ [[package]]
42
+ name = "anstyle-parse"
43
+ version = "1.0.0"
44
+ source = "registry+https://github.com/rust-lang/crates.io-index"
45
+ checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
46
+ dependencies = [
47
+ "utf8parse",
48
+ ]
49
+
50
+ [[package]]
51
+ name = "anstyle-query"
52
+ version = "1.1.5"
53
+ source = "registry+https://github.com/rust-lang/crates.io-index"
54
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
55
+ dependencies = [
56
+ "windows-sys 0.61.2",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle-wincon"
61
+ version = "3.0.11"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
64
+ dependencies = [
65
+ "anstyle",
66
+ "once_cell_polyfill",
67
+ "windows-sys 0.61.2",
68
+ ]
69
+
70
+ [[package]]
71
+ name = "anveesa"
72
+ version = "0.7.12"
73
+ dependencies = [
74
+ "anyhow",
75
+ "axum",
76
+ "base64",
77
+ "clap",
78
+ "crossterm",
79
+ "glob",
80
+ "libc",
81
+ "ratatui",
82
+ "regex",
83
+ "reqwest",
84
+ "rustyline",
85
+ "serde",
86
+ "serde_json",
87
+ "tempfile",
88
+ "tokio",
89
+ "tokio-stream",
90
+ "toml",
91
+ ]
92
+
93
+ [[package]]
94
+ name = "anyhow"
95
+ version = "1.0.102"
96
+ source = "registry+https://github.com/rust-lang/crates.io-index"
97
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
98
+
99
+ [[package]]
100
+ name = "async-trait"
101
+ version = "0.1.89"
102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
103
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
104
+ dependencies = [
105
+ "proc-macro2",
106
+ "quote",
107
+ "syn",
108
+ ]
109
+
110
+ [[package]]
111
+ name = "atomic-waker"
112
+ version = "1.1.2"
113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
114
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
115
+
116
+ [[package]]
117
+ name = "axum"
118
+ version = "0.7.9"
119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
120
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
121
+ dependencies = [
122
+ "async-trait",
123
+ "axum-core",
124
+ "bytes",
125
+ "futures-util",
126
+ "http",
127
+ "http-body",
128
+ "http-body-util",
129
+ "hyper",
130
+ "hyper-util",
131
+ "itoa",
132
+ "matchit",
133
+ "memchr",
134
+ "mime",
135
+ "percent-encoding",
136
+ "pin-project-lite",
137
+ "rustversion",
138
+ "serde",
139
+ "serde_json",
140
+ "serde_path_to_error",
141
+ "serde_urlencoded",
142
+ "sync_wrapper",
143
+ "tokio",
144
+ "tower",
145
+ "tower-layer",
146
+ "tower-service",
147
+ "tracing",
148
+ ]
149
+
150
+ [[package]]
151
+ name = "axum-core"
152
+ version = "0.4.5"
153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
154
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
155
+ dependencies = [
156
+ "async-trait",
157
+ "bytes",
158
+ "futures-util",
159
+ "http",
160
+ "http-body",
161
+ "http-body-util",
162
+ "mime",
163
+ "pin-project-lite",
164
+ "rustversion",
165
+ "sync_wrapper",
166
+ "tower-layer",
167
+ "tower-service",
168
+ "tracing",
169
+ ]
170
+
171
+ [[package]]
172
+ name = "base64"
173
+ version = "0.22.1"
174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
175
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
176
+
177
+ [[package]]
178
+ name = "bitflags"
179
+ version = "2.11.1"
180
+ source = "registry+https://github.com/rust-lang/crates.io-index"
181
+ checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
182
+
183
+ [[package]]
184
+ name = "bumpalo"
185
+ version = "3.20.3"
186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
187
+ checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
188
+
189
+ [[package]]
190
+ name = "bytes"
191
+ version = "1.11.1"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
194
+
195
+ [[package]]
196
+ name = "cassowary"
197
+ version = "0.3.0"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
200
+
201
+ [[package]]
202
+ name = "castaway"
203
+ version = "0.2.4"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "dec551ab6e7578819132c713a93c022a05d60159dc86e7a7050223577484c55a"
206
+ dependencies = [
207
+ "rustversion",
208
+ ]
209
+
210
+ [[package]]
211
+ name = "cc"
212
+ version = "1.2.62"
213
+ source = "registry+https://github.com/rust-lang/crates.io-index"
214
+ checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
215
+ dependencies = [
216
+ "find-msvc-tools",
217
+ "shlex",
218
+ ]
219
+
220
+ [[package]]
221
+ name = "cfg-if"
222
+ version = "1.0.4"
223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
224
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
225
+
226
+ [[package]]
227
+ name = "cfg_aliases"
228
+ version = "0.1.1"
229
+ source = "registry+https://github.com/rust-lang/crates.io-index"
230
+ checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
231
+
232
+ [[package]]
233
+ name = "cfg_aliases"
234
+ version = "0.2.1"
235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
236
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
237
+
238
+ [[package]]
239
+ name = "clap"
240
+ version = "4.6.1"
241
+ source = "registry+https://github.com/rust-lang/crates.io-index"
242
+ checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
243
+ dependencies = [
244
+ "clap_builder",
245
+ "clap_derive",
246
+ ]
247
+
248
+ [[package]]
249
+ name = "clap_builder"
250
+ version = "4.6.0"
251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
252
+ checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
253
+ dependencies = [
254
+ "anstream",
255
+ "anstyle",
256
+ "clap_lex",
257
+ "strsim",
258
+ ]
259
+
260
+ [[package]]
261
+ name = "clap_derive"
262
+ version = "4.6.1"
263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
264
+ checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
265
+ dependencies = [
266
+ "heck",
267
+ "proc-macro2",
268
+ "quote",
269
+ "syn",
270
+ ]
271
+
272
+ [[package]]
273
+ name = "clap_lex"
274
+ version = "1.1.0"
275
+ source = "registry+https://github.com/rust-lang/crates.io-index"
276
+ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
277
+
278
+ [[package]]
279
+ name = "clipboard-win"
280
+ version = "5.4.1"
281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
282
+ checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
283
+ dependencies = [
284
+ "error-code",
285
+ ]
286
+
287
+ [[package]]
288
+ name = "colorchoice"
289
+ version = "1.0.5"
290
+ source = "registry+https://github.com/rust-lang/crates.io-index"
291
+ checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
292
+
293
+ [[package]]
294
+ name = "compact_str"
295
+ version = "0.8.2"
296
+ source = "registry+https://github.com/rust-lang/crates.io-index"
297
+ checksum = "7fd622ebbb56a5b2ccb651b32b911cdeb2a9b4b11776b2473bf26a26a286244e"
298
+ dependencies = [
299
+ "castaway",
300
+ "cfg-if",
301
+ "itoa",
302
+ "rustversion",
303
+ "ryu",
304
+ "static_assertions",
305
+ ]
306
+
307
+ [[package]]
308
+ name = "crossterm"
309
+ version = "0.28.1"
310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
311
+ checksum = "829d955a0bb380ef178a640b91779e3987da38c9aea133b20614cfed8cdea9c6"
312
+ dependencies = [
313
+ "bitflags",
314
+ "crossterm_winapi",
315
+ "mio",
316
+ "parking_lot",
317
+ "rustix 0.38.44",
318
+ "signal-hook",
319
+ "signal-hook-mio",
320
+ "winapi",
321
+ ]
322
+
323
+ [[package]]
324
+ name = "crossterm_winapi"
325
+ version = "0.9.1"
326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
327
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
328
+ dependencies = [
329
+ "winapi",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "darling"
334
+ version = "0.23.0"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
337
+ dependencies = [
338
+ "darling_core",
339
+ "darling_macro",
340
+ ]
341
+
342
+ [[package]]
343
+ name = "darling_core"
344
+ version = "0.23.0"
345
+ source = "registry+https://github.com/rust-lang/crates.io-index"
346
+ checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
347
+ dependencies = [
348
+ "ident_case",
349
+ "proc-macro2",
350
+ "quote",
351
+ "strsim",
352
+ "syn",
353
+ ]
354
+
355
+ [[package]]
356
+ name = "darling_macro"
357
+ version = "0.23.0"
358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
359
+ checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
360
+ dependencies = [
361
+ "darling_core",
362
+ "quote",
363
+ "syn",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "displaydoc"
368
+ version = "0.2.5"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
371
+ dependencies = [
372
+ "proc-macro2",
373
+ "quote",
374
+ "syn",
375
+ ]
376
+
377
+ [[package]]
378
+ name = "either"
379
+ version = "1.16.0"
380
+ source = "registry+https://github.com/rust-lang/crates.io-index"
381
+ checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
382
+
383
+ [[package]]
384
+ name = "endian-type"
385
+ version = "0.1.2"
386
+ source = "registry+https://github.com/rust-lang/crates.io-index"
387
+ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
388
+
389
+ [[package]]
390
+ name = "equivalent"
391
+ version = "1.0.2"
392
+ source = "registry+https://github.com/rust-lang/crates.io-index"
393
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
394
+
395
+ [[package]]
396
+ name = "errno"
397
+ version = "0.3.14"
398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
399
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
400
+ dependencies = [
401
+ "libc",
402
+ "windows-sys 0.61.2",
403
+ ]
404
+
405
+ [[package]]
406
+ name = "error-code"
407
+ version = "3.3.2"
408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
409
+ checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
410
+
411
+ [[package]]
412
+ name = "fastrand"
413
+ version = "2.4.1"
414
+ source = "registry+https://github.com/rust-lang/crates.io-index"
415
+ checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
416
+
417
+ [[package]]
418
+ name = "fd-lock"
419
+ version = "4.0.4"
420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
421
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
422
+ dependencies = [
423
+ "cfg-if",
424
+ "rustix 1.1.4",
425
+ "windows-sys 0.52.0",
426
+ ]
427
+
428
+ [[package]]
429
+ name = "find-msvc-tools"
430
+ version = "0.1.9"
431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
432
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
433
+
434
+ [[package]]
435
+ name = "foldhash"
436
+ version = "0.1.5"
437
+ source = "registry+https://github.com/rust-lang/crates.io-index"
438
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
439
+
440
+ [[package]]
441
+ name = "form_urlencoded"
442
+ version = "1.2.2"
443
+ source = "registry+https://github.com/rust-lang/crates.io-index"
444
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
445
+ dependencies = [
446
+ "percent-encoding",
447
+ ]
448
+
449
+ [[package]]
450
+ name = "futures-channel"
451
+ version = "0.3.32"
452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
453
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
454
+ dependencies = [
455
+ "futures-core",
456
+ ]
457
+
458
+ [[package]]
459
+ name = "futures-core"
460
+ version = "0.3.32"
461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
462
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
463
+
464
+ [[package]]
465
+ name = "futures-io"
466
+ version = "0.3.32"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
469
+
470
+ [[package]]
471
+ name = "futures-macro"
472
+ version = "0.3.32"
473
+ source = "registry+https://github.com/rust-lang/crates.io-index"
474
+ checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
475
+ dependencies = [
476
+ "proc-macro2",
477
+ "quote",
478
+ "syn",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "futures-sink"
483
+ version = "0.3.32"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
486
+
487
+ [[package]]
488
+ name = "futures-task"
489
+ version = "0.3.32"
490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
491
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
492
+
493
+ [[package]]
494
+ name = "futures-util"
495
+ version = "0.3.32"
496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
497
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
498
+ dependencies = [
499
+ "futures-core",
500
+ "futures-io",
501
+ "futures-macro",
502
+ "futures-sink",
503
+ "futures-task",
504
+ "memchr",
505
+ "pin-project-lite",
506
+ "slab",
507
+ ]
508
+
509
+ [[package]]
510
+ name = "getrandom"
511
+ version = "0.2.17"
512
+ source = "registry+https://github.com/rust-lang/crates.io-index"
513
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
514
+ dependencies = [
515
+ "cfg-if",
516
+ "js-sys",
517
+ "libc",
518
+ "wasi",
519
+ "wasm-bindgen",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "getrandom"
524
+ version = "0.3.4"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
527
+ dependencies = [
528
+ "cfg-if",
529
+ "js-sys",
530
+ "libc",
531
+ "r-efi",
532
+ "wasip2",
533
+ "wasm-bindgen",
534
+ ]
535
+
536
+ [[package]]
537
+ name = "glob"
538
+ version = "0.3.3"
539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
540
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
541
+
542
+ [[package]]
543
+ name = "hashbrown"
544
+ version = "0.15.5"
545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
546
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
547
+ dependencies = [
548
+ "allocator-api2",
549
+ "equivalent",
550
+ "foldhash",
551
+ ]
552
+
553
+ [[package]]
554
+ name = "hashbrown"
555
+ version = "0.17.1"
556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
557
+ checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
558
+
559
+ [[package]]
560
+ name = "heck"
561
+ version = "0.5.0"
562
+ source = "registry+https://github.com/rust-lang/crates.io-index"
563
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
564
+
565
+ [[package]]
566
+ name = "home"
567
+ version = "0.5.12"
568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
569
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
570
+ dependencies = [
571
+ "windows-sys 0.61.2",
572
+ ]
573
+
574
+ [[package]]
575
+ name = "http"
576
+ version = "1.4.0"
577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
578
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
579
+ dependencies = [
580
+ "bytes",
581
+ "itoa",
582
+ ]
583
+
584
+ [[package]]
585
+ name = "http-body"
586
+ version = "1.0.1"
587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
588
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
589
+ dependencies = [
590
+ "bytes",
591
+ "http",
592
+ ]
593
+
594
+ [[package]]
595
+ name = "http-body-util"
596
+ version = "0.1.3"
597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
598
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
599
+ dependencies = [
600
+ "bytes",
601
+ "futures-core",
602
+ "http",
603
+ "http-body",
604
+ "pin-project-lite",
605
+ ]
606
+
607
+ [[package]]
608
+ name = "httparse"
609
+ version = "1.10.1"
610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
611
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
612
+
613
+ [[package]]
614
+ name = "httpdate"
615
+ version = "1.0.3"
616
+ source = "registry+https://github.com/rust-lang/crates.io-index"
617
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
618
+
619
+ [[package]]
620
+ name = "hyper"
621
+ version = "1.9.0"
622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
623
+ checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
624
+ dependencies = [
625
+ "atomic-waker",
626
+ "bytes",
627
+ "futures-channel",
628
+ "futures-core",
629
+ "http",
630
+ "http-body",
631
+ "httparse",
632
+ "httpdate",
633
+ "itoa",
634
+ "pin-project-lite",
635
+ "smallvec",
636
+ "tokio",
637
+ "want",
638
+ ]
639
+
640
+ [[package]]
641
+ name = "hyper-rustls"
642
+ version = "0.27.9"
643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
644
+ checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
645
+ dependencies = [
646
+ "http",
647
+ "hyper",
648
+ "hyper-util",
649
+ "rustls",
650
+ "tokio",
651
+ "tokio-rustls",
652
+ "tower-service",
653
+ "webpki-roots",
654
+ ]
655
+
656
+ [[package]]
657
+ name = "hyper-util"
658
+ version = "0.1.20"
659
+ source = "registry+https://github.com/rust-lang/crates.io-index"
660
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
661
+ dependencies = [
662
+ "base64",
663
+ "bytes",
664
+ "futures-channel",
665
+ "futures-util",
666
+ "http",
667
+ "http-body",
668
+ "hyper",
669
+ "ipnet",
670
+ "libc",
671
+ "percent-encoding",
672
+ "pin-project-lite",
673
+ "socket2",
674
+ "tokio",
675
+ "tower-service",
676
+ "tracing",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "icu_collections"
681
+ version = "2.2.0"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
684
+ dependencies = [
685
+ "displaydoc",
686
+ "potential_utf",
687
+ "utf8_iter",
688
+ "yoke",
689
+ "zerofrom",
690
+ "zerovec",
691
+ ]
692
+
693
+ [[package]]
694
+ name = "icu_locale_core"
695
+ version = "2.2.0"
696
+ source = "registry+https://github.com/rust-lang/crates.io-index"
697
+ checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
698
+ dependencies = [
699
+ "displaydoc",
700
+ "litemap",
701
+ "tinystr",
702
+ "writeable",
703
+ "zerovec",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "icu_normalizer"
708
+ version = "2.2.0"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
711
+ dependencies = [
712
+ "icu_collections",
713
+ "icu_normalizer_data",
714
+ "icu_properties",
715
+ "icu_provider",
716
+ "smallvec",
717
+ "zerovec",
718
+ ]
719
+
720
+ [[package]]
721
+ name = "icu_normalizer_data"
722
+ version = "2.2.0"
723
+ source = "registry+https://github.com/rust-lang/crates.io-index"
724
+ checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
725
+
726
+ [[package]]
727
+ name = "icu_properties"
728
+ version = "2.2.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
731
+ dependencies = [
732
+ "icu_collections",
733
+ "icu_locale_core",
734
+ "icu_properties_data",
735
+ "icu_provider",
736
+ "zerotrie",
737
+ "zerovec",
738
+ ]
739
+
740
+ [[package]]
741
+ name = "icu_properties_data"
742
+ version = "2.2.0"
743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
744
+ checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
745
+
746
+ [[package]]
747
+ name = "icu_provider"
748
+ version = "2.2.0"
749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
750
+ checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
751
+ dependencies = [
752
+ "displaydoc",
753
+ "icu_locale_core",
754
+ "writeable",
755
+ "yoke",
756
+ "zerofrom",
757
+ "zerotrie",
758
+ "zerovec",
759
+ ]
760
+
761
+ [[package]]
762
+ name = "ident_case"
763
+ version = "1.0.1"
764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
765
+ checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
766
+
767
+ [[package]]
768
+ name = "idna"
769
+ version = "1.1.0"
770
+ source = "registry+https://github.com/rust-lang/crates.io-index"
771
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
772
+ dependencies = [
773
+ "idna_adapter",
774
+ "smallvec",
775
+ "utf8_iter",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "idna_adapter"
780
+ version = "1.2.2"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
783
+ dependencies = [
784
+ "icu_normalizer",
785
+ "icu_properties",
786
+ ]
787
+
788
+ [[package]]
789
+ name = "indexmap"
790
+ version = "2.14.0"
791
+ source = "registry+https://github.com/rust-lang/crates.io-index"
792
+ checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
793
+ dependencies = [
794
+ "equivalent",
795
+ "hashbrown 0.17.1",
796
+ ]
797
+
798
+ [[package]]
799
+ name = "indoc"
800
+ version = "2.0.7"
801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
802
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
803
+ dependencies = [
804
+ "rustversion",
805
+ ]
806
+
807
+ [[package]]
808
+ name = "instability"
809
+ version = "0.3.12"
810
+ source = "registry+https://github.com/rust-lang/crates.io-index"
811
+ checksum = "5eb2d60ef19920a3a9193c3e371f726ec1dafc045dac788d0fb3704272458971"
812
+ dependencies = [
813
+ "darling",
814
+ "indoc",
815
+ "proc-macro2",
816
+ "quote",
817
+ "syn",
818
+ ]
819
+
820
+ [[package]]
821
+ name = "ipnet"
822
+ version = "2.12.0"
823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
824
+ checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
825
+
826
+ [[package]]
827
+ name = "is_terminal_polyfill"
828
+ version = "1.70.2"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
831
+
832
+ [[package]]
833
+ name = "itertools"
834
+ version = "0.13.0"
835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
836
+ checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
837
+ dependencies = [
838
+ "either",
839
+ ]
840
+
841
+ [[package]]
842
+ name = "itoa"
843
+ version = "1.0.18"
844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
845
+ checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
846
+
847
+ [[package]]
848
+ name = "js-sys"
849
+ version = "0.3.99"
850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
851
+ checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
852
+ dependencies = [
853
+ "cfg-if",
854
+ "futures-util",
855
+ "once_cell",
856
+ "wasm-bindgen",
857
+ ]
858
+
859
+ [[package]]
860
+ name = "libc"
861
+ version = "0.2.186"
862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
863
+ checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
864
+
865
+ [[package]]
866
+ name = "linux-raw-sys"
867
+ version = "0.4.15"
868
+ source = "registry+https://github.com/rust-lang/crates.io-index"
869
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
870
+
871
+ [[package]]
872
+ name = "linux-raw-sys"
873
+ version = "0.12.1"
874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
875
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
876
+
877
+ [[package]]
878
+ name = "litemap"
879
+ version = "0.8.2"
880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
881
+ checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
882
+
883
+ [[package]]
884
+ name = "lock_api"
885
+ version = "0.4.14"
886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
887
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
888
+ dependencies = [
889
+ "scopeguard",
890
+ ]
891
+
892
+ [[package]]
893
+ name = "log"
894
+ version = "0.4.29"
895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
896
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
897
+
898
+ [[package]]
899
+ name = "lru"
900
+ version = "0.12.5"
901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
902
+ checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
903
+ dependencies = [
904
+ "hashbrown 0.15.5",
905
+ ]
906
+
907
+ [[package]]
908
+ name = "lru-slab"
909
+ version = "0.1.2"
910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
911
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
912
+
913
+ [[package]]
914
+ name = "matchit"
915
+ version = "0.7.3"
916
+ source = "registry+https://github.com/rust-lang/crates.io-index"
917
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
918
+
919
+ [[package]]
920
+ name = "memchr"
921
+ version = "2.8.0"
922
+ source = "registry+https://github.com/rust-lang/crates.io-index"
923
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
924
+
925
+ [[package]]
926
+ name = "mime"
927
+ version = "0.3.17"
928
+ source = "registry+https://github.com/rust-lang/crates.io-index"
929
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
930
+
931
+ [[package]]
932
+ name = "mio"
933
+ version = "1.2.0"
934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
935
+ checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
936
+ dependencies = [
937
+ "libc",
938
+ "log",
939
+ "wasi",
940
+ "windows-sys 0.61.2",
941
+ ]
942
+
943
+ [[package]]
944
+ name = "nibble_vec"
945
+ version = "0.1.0"
946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
947
+ checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
948
+ dependencies = [
949
+ "smallvec",
950
+ ]
951
+
952
+ [[package]]
953
+ name = "nix"
954
+ version = "0.28.0"
955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
956
+ checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
957
+ dependencies = [
958
+ "bitflags",
959
+ "cfg-if",
960
+ "cfg_aliases 0.1.1",
961
+ "libc",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "once_cell"
966
+ version = "1.21.4"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
969
+
970
+ [[package]]
971
+ name = "once_cell_polyfill"
972
+ version = "1.70.2"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
975
+
976
+ [[package]]
977
+ name = "parking_lot"
978
+ version = "0.12.5"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
981
+ dependencies = [
982
+ "lock_api",
983
+ "parking_lot_core",
984
+ ]
985
+
986
+ [[package]]
987
+ name = "parking_lot_core"
988
+ version = "0.9.12"
989
+ source = "registry+https://github.com/rust-lang/crates.io-index"
990
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
991
+ dependencies = [
992
+ "cfg-if",
993
+ "libc",
994
+ "redox_syscall",
995
+ "smallvec",
996
+ "windows-link",
997
+ ]
998
+
999
+ [[package]]
1000
+ name = "paste"
1001
+ version = "1.0.15"
1002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1003
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1004
+
1005
+ [[package]]
1006
+ name = "percent-encoding"
1007
+ version = "2.3.2"
1008
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1009
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1010
+
1011
+ [[package]]
1012
+ name = "pin-project-lite"
1013
+ version = "0.2.17"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1016
+
1017
+ [[package]]
1018
+ name = "potential_utf"
1019
+ version = "0.1.5"
1020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1021
+ checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1022
+ dependencies = [
1023
+ "zerovec",
1024
+ ]
1025
+
1026
+ [[package]]
1027
+ name = "ppv-lite86"
1028
+ version = "0.2.21"
1029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1030
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1031
+ dependencies = [
1032
+ "zerocopy",
1033
+ ]
1034
+
1035
+ [[package]]
1036
+ name = "proc-macro2"
1037
+ version = "1.0.106"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1040
+ dependencies = [
1041
+ "unicode-ident",
1042
+ ]
1043
+
1044
+ [[package]]
1045
+ name = "quinn"
1046
+ version = "0.11.9"
1047
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1048
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1049
+ dependencies = [
1050
+ "bytes",
1051
+ "cfg_aliases 0.2.1",
1052
+ "pin-project-lite",
1053
+ "quinn-proto",
1054
+ "quinn-udp",
1055
+ "rustc-hash",
1056
+ "rustls",
1057
+ "socket2",
1058
+ "thiserror",
1059
+ "tokio",
1060
+ "tracing",
1061
+ "web-time",
1062
+ ]
1063
+
1064
+ [[package]]
1065
+ name = "quinn-proto"
1066
+ version = "0.11.14"
1067
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1068
+ checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
1069
+ dependencies = [
1070
+ "bytes",
1071
+ "getrandom 0.3.4",
1072
+ "lru-slab",
1073
+ "rand",
1074
+ "ring",
1075
+ "rustc-hash",
1076
+ "rustls",
1077
+ "rustls-pki-types",
1078
+ "slab",
1079
+ "thiserror",
1080
+ "tinyvec",
1081
+ "tracing",
1082
+ "web-time",
1083
+ ]
1084
+
1085
+ [[package]]
1086
+ name = "quinn-udp"
1087
+ version = "0.5.14"
1088
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1089
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1090
+ dependencies = [
1091
+ "cfg_aliases 0.2.1",
1092
+ "libc",
1093
+ "once_cell",
1094
+ "socket2",
1095
+ "tracing",
1096
+ "windows-sys 0.60.2",
1097
+ ]
1098
+
1099
+ [[package]]
1100
+ name = "quote"
1101
+ version = "1.0.45"
1102
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1103
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1104
+ dependencies = [
1105
+ "proc-macro2",
1106
+ ]
1107
+
1108
+ [[package]]
1109
+ name = "r-efi"
1110
+ version = "5.3.0"
1111
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1112
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1113
+
1114
+ [[package]]
1115
+ name = "radix_trie"
1116
+ version = "0.2.1"
1117
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1118
+ checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
1119
+ dependencies = [
1120
+ "endian-type",
1121
+ "nibble_vec",
1122
+ ]
1123
+
1124
+ [[package]]
1125
+ name = "rand"
1126
+ version = "0.9.4"
1127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1128
+ checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1129
+ dependencies = [
1130
+ "rand_chacha",
1131
+ "rand_core",
1132
+ ]
1133
+
1134
+ [[package]]
1135
+ name = "rand_chacha"
1136
+ version = "0.9.0"
1137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1138
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1139
+ dependencies = [
1140
+ "ppv-lite86",
1141
+ "rand_core",
1142
+ ]
1143
+
1144
+ [[package]]
1145
+ name = "rand_core"
1146
+ version = "0.9.5"
1147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1148
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1149
+ dependencies = [
1150
+ "getrandom 0.3.4",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "ratatui"
1155
+ version = "0.29.0"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
1158
+ dependencies = [
1159
+ "bitflags",
1160
+ "cassowary",
1161
+ "compact_str",
1162
+ "crossterm",
1163
+ "indoc",
1164
+ "instability",
1165
+ "itertools",
1166
+ "lru",
1167
+ "paste",
1168
+ "strum",
1169
+ "unicode-segmentation",
1170
+ "unicode-truncate",
1171
+ "unicode-width 0.2.0",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "redox_syscall"
1176
+ version = "0.5.18"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1179
+ dependencies = [
1180
+ "bitflags",
1181
+ ]
1182
+
1183
+ [[package]]
1184
+ name = "regex"
1185
+ version = "1.12.3"
1186
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1187
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
1188
+ dependencies = [
1189
+ "aho-corasick",
1190
+ "memchr",
1191
+ "regex-automata",
1192
+ "regex-syntax",
1193
+ ]
1194
+
1195
+ [[package]]
1196
+ name = "regex-automata"
1197
+ version = "0.4.14"
1198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1199
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1200
+ dependencies = [
1201
+ "aho-corasick",
1202
+ "memchr",
1203
+ "regex-syntax",
1204
+ ]
1205
+
1206
+ [[package]]
1207
+ name = "regex-syntax"
1208
+ version = "0.8.10"
1209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1210
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1211
+
1212
+ [[package]]
1213
+ name = "reqwest"
1214
+ version = "0.12.28"
1215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1216
+ checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1217
+ dependencies = [
1218
+ "base64",
1219
+ "bytes",
1220
+ "futures-core",
1221
+ "futures-util",
1222
+ "http",
1223
+ "http-body",
1224
+ "http-body-util",
1225
+ "hyper",
1226
+ "hyper-rustls",
1227
+ "hyper-util",
1228
+ "js-sys",
1229
+ "log",
1230
+ "percent-encoding",
1231
+ "pin-project-lite",
1232
+ "quinn",
1233
+ "rustls",
1234
+ "rustls-pki-types",
1235
+ "serde",
1236
+ "serde_json",
1237
+ "serde_urlencoded",
1238
+ "sync_wrapper",
1239
+ "tokio",
1240
+ "tokio-rustls",
1241
+ "tokio-util",
1242
+ "tower",
1243
+ "tower-http",
1244
+ "tower-service",
1245
+ "url",
1246
+ "wasm-bindgen",
1247
+ "wasm-bindgen-futures",
1248
+ "wasm-streams",
1249
+ "web-sys",
1250
+ "webpki-roots",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "ring"
1255
+ version = "0.17.14"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1258
+ dependencies = [
1259
+ "cc",
1260
+ "cfg-if",
1261
+ "getrandom 0.2.17",
1262
+ "libc",
1263
+ "untrusted",
1264
+ "windows-sys 0.52.0",
1265
+ ]
1266
+
1267
+ [[package]]
1268
+ name = "rustc-hash"
1269
+ version = "2.1.2"
1270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1271
+ checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
1272
+
1273
+ [[package]]
1274
+ name = "rustix"
1275
+ version = "0.38.44"
1276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1277
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1278
+ dependencies = [
1279
+ "bitflags",
1280
+ "errno",
1281
+ "libc",
1282
+ "linux-raw-sys 0.4.15",
1283
+ "windows-sys 0.52.0",
1284
+ ]
1285
+
1286
+ [[package]]
1287
+ name = "rustix"
1288
+ version = "1.1.4"
1289
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1290
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1291
+ dependencies = [
1292
+ "bitflags",
1293
+ "errno",
1294
+ "libc",
1295
+ "linux-raw-sys 0.12.1",
1296
+ "windows-sys 0.61.2",
1297
+ ]
1298
+
1299
+ [[package]]
1300
+ name = "rustls"
1301
+ version = "0.23.40"
1302
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1303
+ checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1304
+ dependencies = [
1305
+ "once_cell",
1306
+ "ring",
1307
+ "rustls-pki-types",
1308
+ "rustls-webpki",
1309
+ "subtle",
1310
+ "zeroize",
1311
+ ]
1312
+
1313
+ [[package]]
1314
+ name = "rustls-pki-types"
1315
+ version = "1.14.1"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1318
+ dependencies = [
1319
+ "web-time",
1320
+ "zeroize",
1321
+ ]
1322
+
1323
+ [[package]]
1324
+ name = "rustls-webpki"
1325
+ version = "0.103.13"
1326
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1327
+ checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1328
+ dependencies = [
1329
+ "ring",
1330
+ "rustls-pki-types",
1331
+ "untrusted",
1332
+ ]
1333
+
1334
+ [[package]]
1335
+ name = "rustversion"
1336
+ version = "1.0.22"
1337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1338
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1339
+
1340
+ [[package]]
1341
+ name = "rustyline"
1342
+ version = "14.0.0"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "7803e8936da37efd9b6d4478277f4b2b9bb5cdb37a113e8d63222e58da647e63"
1345
+ dependencies = [
1346
+ "bitflags",
1347
+ "cfg-if",
1348
+ "clipboard-win",
1349
+ "fd-lock",
1350
+ "home",
1351
+ "libc",
1352
+ "log",
1353
+ "memchr",
1354
+ "nix",
1355
+ "radix_trie",
1356
+ "unicode-segmentation",
1357
+ "unicode-width 0.1.14",
1358
+ "utf8parse",
1359
+ "windows-sys 0.52.0",
1360
+ ]
1361
+
1362
+ [[package]]
1363
+ name = "ryu"
1364
+ version = "1.0.23"
1365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1366
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1367
+
1368
+ [[package]]
1369
+ name = "scopeguard"
1370
+ version = "1.2.0"
1371
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1372
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1373
+
1374
+ [[package]]
1375
+ name = "serde"
1376
+ version = "1.0.228"
1377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1378
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1379
+ dependencies = [
1380
+ "serde_core",
1381
+ "serde_derive",
1382
+ ]
1383
+
1384
+ [[package]]
1385
+ name = "serde_core"
1386
+ version = "1.0.228"
1387
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1388
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1389
+ dependencies = [
1390
+ "serde_derive",
1391
+ ]
1392
+
1393
+ [[package]]
1394
+ name = "serde_derive"
1395
+ version = "1.0.228"
1396
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1397
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1398
+ dependencies = [
1399
+ "proc-macro2",
1400
+ "quote",
1401
+ "syn",
1402
+ ]
1403
+
1404
+ [[package]]
1405
+ name = "serde_json"
1406
+ version = "1.0.150"
1407
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1408
+ checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
1409
+ dependencies = [
1410
+ "itoa",
1411
+ "memchr",
1412
+ "serde",
1413
+ "serde_core",
1414
+ "zmij",
1415
+ ]
1416
+
1417
+ [[package]]
1418
+ name = "serde_path_to_error"
1419
+ version = "0.1.20"
1420
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1421
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
1422
+ dependencies = [
1423
+ "itoa",
1424
+ "serde",
1425
+ "serde_core",
1426
+ ]
1427
+
1428
+ [[package]]
1429
+ name = "serde_spanned"
1430
+ version = "0.6.9"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1433
+ dependencies = [
1434
+ "serde",
1435
+ ]
1436
+
1437
+ [[package]]
1438
+ name = "serde_urlencoded"
1439
+ version = "0.7.1"
1440
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1441
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1442
+ dependencies = [
1443
+ "form_urlencoded",
1444
+ "itoa",
1445
+ "ryu",
1446
+ "serde",
1447
+ ]
1448
+
1449
+ [[package]]
1450
+ name = "shlex"
1451
+ version = "1.3.0"
1452
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1453
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1454
+
1455
+ [[package]]
1456
+ name = "signal-hook"
1457
+ version = "0.3.18"
1458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1459
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1460
+ dependencies = [
1461
+ "libc",
1462
+ "signal-hook-registry",
1463
+ ]
1464
+
1465
+ [[package]]
1466
+ name = "signal-hook-mio"
1467
+ version = "0.2.5"
1468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1469
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
1470
+ dependencies = [
1471
+ "libc",
1472
+ "mio",
1473
+ "signal-hook",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "signal-hook-registry"
1478
+ version = "1.4.8"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1481
+ dependencies = [
1482
+ "errno",
1483
+ "libc",
1484
+ ]
1485
+
1486
+ [[package]]
1487
+ name = "slab"
1488
+ version = "0.4.12"
1489
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1490
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1491
+
1492
+ [[package]]
1493
+ name = "smallvec"
1494
+ version = "1.15.1"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1497
+
1498
+ [[package]]
1499
+ name = "socket2"
1500
+ version = "0.6.3"
1501
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1502
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1503
+ dependencies = [
1504
+ "libc",
1505
+ "windows-sys 0.61.2",
1506
+ ]
1507
+
1508
+ [[package]]
1509
+ name = "stable_deref_trait"
1510
+ version = "1.2.1"
1511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1512
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1513
+
1514
+ [[package]]
1515
+ name = "static_assertions"
1516
+ version = "1.1.0"
1517
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1518
+ checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
1519
+
1520
+ [[package]]
1521
+ name = "strsim"
1522
+ version = "0.11.1"
1523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1524
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1525
+
1526
+ [[package]]
1527
+ name = "strum"
1528
+ version = "0.26.3"
1529
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1530
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
1531
+ dependencies = [
1532
+ "strum_macros",
1533
+ ]
1534
+
1535
+ [[package]]
1536
+ name = "strum_macros"
1537
+ version = "0.26.4"
1538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1539
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
1540
+ dependencies = [
1541
+ "heck",
1542
+ "proc-macro2",
1543
+ "quote",
1544
+ "rustversion",
1545
+ "syn",
1546
+ ]
1547
+
1548
+ [[package]]
1549
+ name = "subtle"
1550
+ version = "2.6.1"
1551
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1552
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1553
+
1554
+ [[package]]
1555
+ name = "syn"
1556
+ version = "2.0.117"
1557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1558
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1559
+ dependencies = [
1560
+ "proc-macro2",
1561
+ "quote",
1562
+ "unicode-ident",
1563
+ ]
1564
+
1565
+ [[package]]
1566
+ name = "sync_wrapper"
1567
+ version = "1.0.2"
1568
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1569
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1570
+ dependencies = [
1571
+ "futures-core",
1572
+ ]
1573
+
1574
+ [[package]]
1575
+ name = "synstructure"
1576
+ version = "0.13.2"
1577
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1578
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1579
+ dependencies = [
1580
+ "proc-macro2",
1581
+ "quote",
1582
+ "syn",
1583
+ ]
1584
+
1585
+ [[package]]
1586
+ name = "tempfile"
1587
+ version = "3.27.0"
1588
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1589
+ checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
1590
+ dependencies = [
1591
+ "fastrand",
1592
+ "getrandom 0.3.4",
1593
+ "once_cell",
1594
+ "rustix 1.1.4",
1595
+ "windows-sys 0.61.2",
1596
+ ]
1597
+
1598
+ [[package]]
1599
+ name = "thiserror"
1600
+ version = "2.0.18"
1601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1602
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1603
+ dependencies = [
1604
+ "thiserror-impl",
1605
+ ]
1606
+
1607
+ [[package]]
1608
+ name = "thiserror-impl"
1609
+ version = "2.0.18"
1610
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1611
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1612
+ dependencies = [
1613
+ "proc-macro2",
1614
+ "quote",
1615
+ "syn",
1616
+ ]
1617
+
1618
+ [[package]]
1619
+ name = "tinystr"
1620
+ version = "0.8.3"
1621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1622
+ checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
1623
+ dependencies = [
1624
+ "displaydoc",
1625
+ "zerovec",
1626
+ ]
1627
+
1628
+ [[package]]
1629
+ name = "tinyvec"
1630
+ version = "1.11.0"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
1633
+ dependencies = [
1634
+ "tinyvec_macros",
1635
+ ]
1636
+
1637
+ [[package]]
1638
+ name = "tinyvec_macros"
1639
+ version = "0.1.1"
1640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1641
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1642
+
1643
+ [[package]]
1644
+ name = "tokio"
1645
+ version = "1.52.3"
1646
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1647
+ checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
1648
+ dependencies = [
1649
+ "bytes",
1650
+ "libc",
1651
+ "mio",
1652
+ "pin-project-lite",
1653
+ "signal-hook-registry",
1654
+ "socket2",
1655
+ "tokio-macros",
1656
+ "windows-sys 0.61.2",
1657
+ ]
1658
+
1659
+ [[package]]
1660
+ name = "tokio-macros"
1661
+ version = "2.7.0"
1662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1663
+ checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
1664
+ dependencies = [
1665
+ "proc-macro2",
1666
+ "quote",
1667
+ "syn",
1668
+ ]
1669
+
1670
+ [[package]]
1671
+ name = "tokio-rustls"
1672
+ version = "0.26.4"
1673
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1674
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1675
+ dependencies = [
1676
+ "rustls",
1677
+ "tokio",
1678
+ ]
1679
+
1680
+ [[package]]
1681
+ name = "tokio-stream"
1682
+ version = "0.1.18"
1683
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1684
+ checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
1685
+ dependencies = [
1686
+ "futures-core",
1687
+ "pin-project-lite",
1688
+ "tokio",
1689
+ "tokio-util",
1690
+ ]
1691
+
1692
+ [[package]]
1693
+ name = "tokio-util"
1694
+ version = "0.7.18"
1695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1696
+ checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1697
+ dependencies = [
1698
+ "bytes",
1699
+ "futures-core",
1700
+ "futures-sink",
1701
+ "pin-project-lite",
1702
+ "tokio",
1703
+ ]
1704
+
1705
+ [[package]]
1706
+ name = "toml"
1707
+ version = "0.8.23"
1708
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1709
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1710
+ dependencies = [
1711
+ "serde",
1712
+ "serde_spanned",
1713
+ "toml_datetime",
1714
+ "toml_edit",
1715
+ ]
1716
+
1717
+ [[package]]
1718
+ name = "toml_datetime"
1719
+ version = "0.6.11"
1720
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1721
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1722
+ dependencies = [
1723
+ "serde",
1724
+ ]
1725
+
1726
+ [[package]]
1727
+ name = "toml_edit"
1728
+ version = "0.22.27"
1729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1730
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1731
+ dependencies = [
1732
+ "indexmap",
1733
+ "serde",
1734
+ "serde_spanned",
1735
+ "toml_datetime",
1736
+ "toml_write",
1737
+ "winnow",
1738
+ ]
1739
+
1740
+ [[package]]
1741
+ name = "toml_write"
1742
+ version = "0.1.2"
1743
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1744
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1745
+
1746
+ [[package]]
1747
+ name = "tower"
1748
+ version = "0.5.3"
1749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1750
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1751
+ dependencies = [
1752
+ "futures-core",
1753
+ "futures-util",
1754
+ "pin-project-lite",
1755
+ "sync_wrapper",
1756
+ "tokio",
1757
+ "tower-layer",
1758
+ "tower-service",
1759
+ "tracing",
1760
+ ]
1761
+
1762
+ [[package]]
1763
+ name = "tower-http"
1764
+ version = "0.6.11"
1765
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1766
+ checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
1767
+ dependencies = [
1768
+ "bitflags",
1769
+ "bytes",
1770
+ "futures-util",
1771
+ "http",
1772
+ "http-body",
1773
+ "pin-project-lite",
1774
+ "tower",
1775
+ "tower-layer",
1776
+ "tower-service",
1777
+ "url",
1778
+ ]
1779
+
1780
+ [[package]]
1781
+ name = "tower-layer"
1782
+ version = "0.3.3"
1783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1784
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1785
+
1786
+ [[package]]
1787
+ name = "tower-service"
1788
+ version = "0.3.3"
1789
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1790
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1791
+
1792
+ [[package]]
1793
+ name = "tracing"
1794
+ version = "0.1.44"
1795
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1796
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1797
+ dependencies = [
1798
+ "log",
1799
+ "pin-project-lite",
1800
+ "tracing-core",
1801
+ ]
1802
+
1803
+ [[package]]
1804
+ name = "tracing-core"
1805
+ version = "0.1.36"
1806
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1807
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1808
+ dependencies = [
1809
+ "once_cell",
1810
+ ]
1811
+
1812
+ [[package]]
1813
+ name = "try-lock"
1814
+ version = "0.2.5"
1815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1816
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1817
+
1818
+ [[package]]
1819
+ name = "unicode-ident"
1820
+ version = "1.0.24"
1821
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1822
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1823
+
1824
+ [[package]]
1825
+ name = "unicode-segmentation"
1826
+ version = "1.13.2"
1827
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1828
+ checksum = "9629274872b2bfaf8d66f5f15725007f635594914870f65218920345aa11aa8c"
1829
+
1830
+ [[package]]
1831
+ name = "unicode-truncate"
1832
+ version = "1.1.0"
1833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1834
+ checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
1835
+ dependencies = [
1836
+ "itertools",
1837
+ "unicode-segmentation",
1838
+ "unicode-width 0.1.14",
1839
+ ]
1840
+
1841
+ [[package]]
1842
+ name = "unicode-width"
1843
+ version = "0.1.14"
1844
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1845
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
1846
+
1847
+ [[package]]
1848
+ name = "unicode-width"
1849
+ version = "0.2.0"
1850
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1851
+ checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
1852
+
1853
+ [[package]]
1854
+ name = "untrusted"
1855
+ version = "0.9.0"
1856
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1857
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1858
+
1859
+ [[package]]
1860
+ name = "url"
1861
+ version = "2.5.8"
1862
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1863
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
1864
+ dependencies = [
1865
+ "form_urlencoded",
1866
+ "idna",
1867
+ "percent-encoding",
1868
+ "serde",
1869
+ ]
1870
+
1871
+ [[package]]
1872
+ name = "utf8_iter"
1873
+ version = "1.0.4"
1874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1875
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1876
+
1877
+ [[package]]
1878
+ name = "utf8parse"
1879
+ version = "0.2.2"
1880
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1881
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1882
+
1883
+ [[package]]
1884
+ name = "want"
1885
+ version = "0.3.1"
1886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1887
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1888
+ dependencies = [
1889
+ "try-lock",
1890
+ ]
1891
+
1892
+ [[package]]
1893
+ name = "wasi"
1894
+ version = "0.11.1+wasi-snapshot-preview1"
1895
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1896
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1897
+
1898
+ [[package]]
1899
+ name = "wasip2"
1900
+ version = "1.0.3+wasi-0.2.9"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
1903
+ dependencies = [
1904
+ "wit-bindgen",
1905
+ ]
1906
+
1907
+ [[package]]
1908
+ name = "wasm-bindgen"
1909
+ version = "0.2.122"
1910
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1911
+ checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
1912
+ dependencies = [
1913
+ "cfg-if",
1914
+ "once_cell",
1915
+ "rustversion",
1916
+ "wasm-bindgen-macro",
1917
+ "wasm-bindgen-shared",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "wasm-bindgen-futures"
1922
+ version = "0.4.72"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
1925
+ dependencies = [
1926
+ "js-sys",
1927
+ "wasm-bindgen",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "wasm-bindgen-macro"
1932
+ version = "0.2.122"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
1935
+ dependencies = [
1936
+ "quote",
1937
+ "wasm-bindgen-macro-support",
1938
+ ]
1939
+
1940
+ [[package]]
1941
+ name = "wasm-bindgen-macro-support"
1942
+ version = "0.2.122"
1943
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1944
+ checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
1945
+ dependencies = [
1946
+ "bumpalo",
1947
+ "proc-macro2",
1948
+ "quote",
1949
+ "syn",
1950
+ "wasm-bindgen-shared",
1951
+ ]
1952
+
1953
+ [[package]]
1954
+ name = "wasm-bindgen-shared"
1955
+ version = "0.2.122"
1956
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1957
+ checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
1958
+ dependencies = [
1959
+ "unicode-ident",
1960
+ ]
1961
+
1962
+ [[package]]
1963
+ name = "wasm-streams"
1964
+ version = "0.4.2"
1965
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1966
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
1967
+ dependencies = [
1968
+ "futures-util",
1969
+ "js-sys",
1970
+ "wasm-bindgen",
1971
+ "wasm-bindgen-futures",
1972
+ "web-sys",
1973
+ ]
1974
+
1975
+ [[package]]
1976
+ name = "web-sys"
1977
+ version = "0.3.99"
1978
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1979
+ checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
1980
+ dependencies = [
1981
+ "js-sys",
1982
+ "wasm-bindgen",
1983
+ ]
1984
+
1985
+ [[package]]
1986
+ name = "web-time"
1987
+ version = "1.1.0"
1988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1989
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
1990
+ dependencies = [
1991
+ "js-sys",
1992
+ "wasm-bindgen",
1993
+ ]
1994
+
1995
+ [[package]]
1996
+ name = "webpki-roots"
1997
+ version = "1.0.7"
1998
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1999
+ checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
2000
+ dependencies = [
2001
+ "rustls-pki-types",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "winapi"
2006
+ version = "0.3.9"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2009
+ dependencies = [
2010
+ "winapi-i686-pc-windows-gnu",
2011
+ "winapi-x86_64-pc-windows-gnu",
2012
+ ]
2013
+
2014
+ [[package]]
2015
+ name = "winapi-i686-pc-windows-gnu"
2016
+ version = "0.4.0"
2017
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2018
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019
+
2020
+ [[package]]
2021
+ name = "winapi-x86_64-pc-windows-gnu"
2022
+ version = "0.4.0"
2023
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2024
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2025
+
2026
+ [[package]]
2027
+ name = "windows-link"
2028
+ version = "0.2.1"
2029
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2030
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2031
+
2032
+ [[package]]
2033
+ name = "windows-sys"
2034
+ version = "0.52.0"
2035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2036
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2037
+ dependencies = [
2038
+ "windows-targets 0.52.6",
2039
+ ]
2040
+
2041
+ [[package]]
2042
+ name = "windows-sys"
2043
+ version = "0.60.2"
2044
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2045
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2046
+ dependencies = [
2047
+ "windows-targets 0.53.5",
2048
+ ]
2049
+
2050
+ [[package]]
2051
+ name = "windows-sys"
2052
+ version = "0.61.2"
2053
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2054
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2055
+ dependencies = [
2056
+ "windows-link",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "windows-targets"
2061
+ version = "0.52.6"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2064
+ dependencies = [
2065
+ "windows_aarch64_gnullvm 0.52.6",
2066
+ "windows_aarch64_msvc 0.52.6",
2067
+ "windows_i686_gnu 0.52.6",
2068
+ "windows_i686_gnullvm 0.52.6",
2069
+ "windows_i686_msvc 0.52.6",
2070
+ "windows_x86_64_gnu 0.52.6",
2071
+ "windows_x86_64_gnullvm 0.52.6",
2072
+ "windows_x86_64_msvc 0.52.6",
2073
+ ]
2074
+
2075
+ [[package]]
2076
+ name = "windows-targets"
2077
+ version = "0.53.5"
2078
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2079
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2080
+ dependencies = [
2081
+ "windows-link",
2082
+ "windows_aarch64_gnullvm 0.53.1",
2083
+ "windows_aarch64_msvc 0.53.1",
2084
+ "windows_i686_gnu 0.53.1",
2085
+ "windows_i686_gnullvm 0.53.1",
2086
+ "windows_i686_msvc 0.53.1",
2087
+ "windows_x86_64_gnu 0.53.1",
2088
+ "windows_x86_64_gnullvm 0.53.1",
2089
+ "windows_x86_64_msvc 0.53.1",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "windows_aarch64_gnullvm"
2094
+ version = "0.52.6"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2097
+
2098
+ [[package]]
2099
+ name = "windows_aarch64_gnullvm"
2100
+ version = "0.53.1"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2103
+
2104
+ [[package]]
2105
+ name = "windows_aarch64_msvc"
2106
+ version = "0.52.6"
2107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2108
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2109
+
2110
+ [[package]]
2111
+ name = "windows_aarch64_msvc"
2112
+ version = "0.53.1"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2115
+
2116
+ [[package]]
2117
+ name = "windows_i686_gnu"
2118
+ version = "0.52.6"
2119
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2120
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2121
+
2122
+ [[package]]
2123
+ name = "windows_i686_gnu"
2124
+ version = "0.53.1"
2125
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2126
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2127
+
2128
+ [[package]]
2129
+ name = "windows_i686_gnullvm"
2130
+ version = "0.52.6"
2131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2132
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2133
+
2134
+ [[package]]
2135
+ name = "windows_i686_gnullvm"
2136
+ version = "0.53.1"
2137
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2138
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2139
+
2140
+ [[package]]
2141
+ name = "windows_i686_msvc"
2142
+ version = "0.52.6"
2143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2144
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2145
+
2146
+ [[package]]
2147
+ name = "windows_i686_msvc"
2148
+ version = "0.53.1"
2149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2150
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2151
+
2152
+ [[package]]
2153
+ name = "windows_x86_64_gnu"
2154
+ version = "0.52.6"
2155
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2156
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2157
+
2158
+ [[package]]
2159
+ name = "windows_x86_64_gnu"
2160
+ version = "0.53.1"
2161
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2162
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2163
+
2164
+ [[package]]
2165
+ name = "windows_x86_64_gnullvm"
2166
+ version = "0.52.6"
2167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2168
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2169
+
2170
+ [[package]]
2171
+ name = "windows_x86_64_gnullvm"
2172
+ version = "0.53.1"
2173
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2174
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2175
+
2176
+ [[package]]
2177
+ name = "windows_x86_64_msvc"
2178
+ version = "0.52.6"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2181
+
2182
+ [[package]]
2183
+ name = "windows_x86_64_msvc"
2184
+ version = "0.53.1"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2187
+
2188
+ [[package]]
2189
+ name = "winnow"
2190
+ version = "0.7.15"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2193
+ dependencies = [
2194
+ "memchr",
2195
+ ]
2196
+
2197
+ [[package]]
2198
+ name = "wit-bindgen"
2199
+ version = "0.57.1"
2200
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2201
+ checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2202
+
2203
+ [[package]]
2204
+ name = "writeable"
2205
+ version = "0.6.3"
2206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2207
+ checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
2208
+
2209
+ [[package]]
2210
+ name = "yoke"
2211
+ version = "0.8.2"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
2214
+ dependencies = [
2215
+ "stable_deref_trait",
2216
+ "yoke-derive",
2217
+ "zerofrom",
2218
+ ]
2219
+
2220
+ [[package]]
2221
+ name = "yoke-derive"
2222
+ version = "0.8.2"
2223
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2224
+ checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
2225
+ dependencies = [
2226
+ "proc-macro2",
2227
+ "quote",
2228
+ "syn",
2229
+ "synstructure",
2230
+ ]
2231
+
2232
+ [[package]]
2233
+ name = "zerocopy"
2234
+ version = "0.8.48"
2235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2236
+ checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
2237
+ dependencies = [
2238
+ "zerocopy-derive",
2239
+ ]
2240
+
2241
+ [[package]]
2242
+ name = "zerocopy-derive"
2243
+ version = "0.8.48"
2244
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2245
+ checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
2246
+ dependencies = [
2247
+ "proc-macro2",
2248
+ "quote",
2249
+ "syn",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "zerofrom"
2254
+ version = "0.1.8"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
2257
+ dependencies = [
2258
+ "zerofrom-derive",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "zerofrom-derive"
2263
+ version = "0.1.7"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
2266
+ dependencies = [
2267
+ "proc-macro2",
2268
+ "quote",
2269
+ "syn",
2270
+ "synstructure",
2271
+ ]
2272
+
2273
+ [[package]]
2274
+ name = "zeroize"
2275
+ version = "1.8.2"
2276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2277
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2278
+
2279
+ [[package]]
2280
+ name = "zerotrie"
2281
+ version = "0.2.4"
2282
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2283
+ checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
2284
+ dependencies = [
2285
+ "displaydoc",
2286
+ "yoke",
2287
+ "zerofrom",
2288
+ ]
2289
+
2290
+ [[package]]
2291
+ name = "zerovec"
2292
+ version = "0.11.6"
2293
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2294
+ checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
2295
+ dependencies = [
2296
+ "yoke",
2297
+ "zerofrom",
2298
+ "zerovec-derive",
2299
+ ]
2300
+
2301
+ [[package]]
2302
+ name = "zerovec-derive"
2303
+ version = "0.11.3"
2304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2305
+ checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
2306
+ dependencies = [
2307
+ "proc-macro2",
2308
+ "quote",
2309
+ "syn",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "zmij"
2314
+ version = "1.0.21"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"