zarz 0.3.1-alpha

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,2815 @@
1
+ # This file is automatically @generated by Cargo.
2
+ # It is not intended for manual editing.
3
+ version = 4
4
+
5
+ [[package]]
6
+ name = "adler2"
7
+ version = "2.0.1"
8
+ source = "registry+https://github.com/rust-lang/crates.io-index"
9
+ checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
+
11
+ [[package]]
12
+ name = "aho-corasick"
13
+ version = "1.1.4"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
16
+ dependencies = [
17
+ "memchr",
18
+ ]
19
+
20
+ [[package]]
21
+ name = "alloc-no-stdlib"
22
+ version = "2.0.4"
23
+ source = "registry+https://github.com/rust-lang/crates.io-index"
24
+ checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
25
+
26
+ [[package]]
27
+ name = "alloc-stdlib"
28
+ version = "0.2.2"
29
+ source = "registry+https://github.com/rust-lang/crates.io-index"
30
+ checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
31
+ dependencies = [
32
+ "alloc-no-stdlib",
33
+ ]
34
+
35
+ [[package]]
36
+ name = "android_system_properties"
37
+ version = "0.1.5"
38
+ source = "registry+https://github.com/rust-lang/crates.io-index"
39
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
40
+ dependencies = [
41
+ "libc",
42
+ ]
43
+
44
+ [[package]]
45
+ name = "anstream"
46
+ version = "0.6.21"
47
+ source = "registry+https://github.com/rust-lang/crates.io-index"
48
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
49
+ dependencies = [
50
+ "anstyle",
51
+ "anstyle-parse",
52
+ "anstyle-query",
53
+ "anstyle-wincon",
54
+ "colorchoice",
55
+ "is_terminal_polyfill",
56
+ "utf8parse",
57
+ ]
58
+
59
+ [[package]]
60
+ name = "anstyle"
61
+ version = "1.0.13"
62
+ source = "registry+https://github.com/rust-lang/crates.io-index"
63
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
64
+
65
+ [[package]]
66
+ name = "anstyle-parse"
67
+ version = "0.2.7"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
70
+ dependencies = [
71
+ "utf8parse",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstyle-query"
76
+ version = "1.1.4"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
79
+ dependencies = [
80
+ "windows-sys 0.60.2",
81
+ ]
82
+
83
+ [[package]]
84
+ name = "anstyle-wincon"
85
+ version = "3.0.10"
86
+ source = "registry+https://github.com/rust-lang/crates.io-index"
87
+ checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
88
+ dependencies = [
89
+ "anstyle",
90
+ "once_cell_polyfill",
91
+ "windows-sys 0.60.2",
92
+ ]
93
+
94
+ [[package]]
95
+ name = "anyhow"
96
+ version = "1.0.100"
97
+ source = "registry+https://github.com/rust-lang/crates.io-index"
98
+ checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
99
+
100
+ [[package]]
101
+ name = "async-compression"
102
+ version = "0.4.32"
103
+ source = "registry+https://github.com/rust-lang/crates.io-index"
104
+ checksum = "5a89bce6054c720275ac2432fbba080a66a2106a44a1b804553930ca6909f4e0"
105
+ dependencies = [
106
+ "compression-codecs",
107
+ "compression-core",
108
+ "futures-core",
109
+ "pin-project-lite",
110
+ "tokio",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "async-trait"
115
+ version = "0.1.89"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
118
+ dependencies = [
119
+ "proc-macro2",
120
+ "quote",
121
+ "syn",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "atomic-waker"
126
+ version = "1.1.2"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
129
+
130
+ [[package]]
131
+ name = "autocfg"
132
+ version = "1.5.0"
133
+ source = "registry+https://github.com/rust-lang/crates.io-index"
134
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
135
+
136
+ [[package]]
137
+ name = "base64"
138
+ version = "0.22.1"
139
+ source = "registry+https://github.com/rust-lang/crates.io-index"
140
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
141
+
142
+ [[package]]
143
+ name = "bitflags"
144
+ version = "2.10.0"
145
+ source = "registry+https://github.com/rust-lang/crates.io-index"
146
+ checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
147
+
148
+ [[package]]
149
+ name = "brotli"
150
+ version = "8.0.2"
151
+ source = "registry+https://github.com/rust-lang/crates.io-index"
152
+ checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
153
+ dependencies = [
154
+ "alloc-no-stdlib",
155
+ "alloc-stdlib",
156
+ "brotli-decompressor",
157
+ ]
158
+
159
+ [[package]]
160
+ name = "brotli-decompressor"
161
+ version = "5.0.0"
162
+ source = "registry+https://github.com/rust-lang/crates.io-index"
163
+ checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
164
+ dependencies = [
165
+ "alloc-no-stdlib",
166
+ "alloc-stdlib",
167
+ ]
168
+
169
+ [[package]]
170
+ name = "bstr"
171
+ version = "1.12.1"
172
+ source = "registry+https://github.com/rust-lang/crates.io-index"
173
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
174
+ dependencies = [
175
+ "memchr",
176
+ "serde",
177
+ ]
178
+
179
+ [[package]]
180
+ name = "bumpalo"
181
+ version = "3.19.0"
182
+ source = "registry+https://github.com/rust-lang/crates.io-index"
183
+ checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
184
+
185
+ [[package]]
186
+ name = "bytes"
187
+ version = "1.10.1"
188
+ source = "registry+https://github.com/rust-lang/crates.io-index"
189
+ checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
190
+
191
+ [[package]]
192
+ name = "cc"
193
+ version = "1.2.44"
194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
195
+ checksum = "37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3"
196
+ dependencies = [
197
+ "find-msvc-tools",
198
+ "shlex",
199
+ ]
200
+
201
+ [[package]]
202
+ name = "cfg-if"
203
+ version = "1.0.4"
204
+ source = "registry+https://github.com/rust-lang/crates.io-index"
205
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
206
+
207
+ [[package]]
208
+ name = "cfg_aliases"
209
+ version = "0.2.1"
210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
211
+ checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
212
+
213
+ [[package]]
214
+ name = "chrono"
215
+ version = "0.4.42"
216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
217
+ checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
218
+ dependencies = [
219
+ "iana-time-zone",
220
+ "js-sys",
221
+ "num-traits",
222
+ "serde",
223
+ "wasm-bindgen",
224
+ "windows-link 0.2.1",
225
+ ]
226
+
227
+ [[package]]
228
+ name = "clap"
229
+ version = "4.5.51"
230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
231
+ checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
232
+ dependencies = [
233
+ "clap_builder",
234
+ "clap_derive",
235
+ ]
236
+
237
+ [[package]]
238
+ name = "clap_builder"
239
+ version = "4.5.51"
240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
241
+ checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
242
+ dependencies = [
243
+ "anstream",
244
+ "anstyle",
245
+ "clap_lex",
246
+ "strsim",
247
+ ]
248
+
249
+ [[package]]
250
+ name = "clap_derive"
251
+ version = "4.5.49"
252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
253
+ checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
254
+ dependencies = [
255
+ "heck",
256
+ "proc-macro2",
257
+ "quote",
258
+ "syn",
259
+ ]
260
+
261
+ [[package]]
262
+ name = "clap_lex"
263
+ version = "0.7.6"
264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
265
+ checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
266
+
267
+ [[package]]
268
+ name = "clipboard-win"
269
+ version = "5.4.1"
270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
271
+ checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
272
+ dependencies = [
273
+ "error-code",
274
+ ]
275
+
276
+ [[package]]
277
+ name = "colorchoice"
278
+ version = "1.0.4"
279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
280
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
281
+
282
+ [[package]]
283
+ name = "compression-codecs"
284
+ version = "0.4.31"
285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
286
+ checksum = "ef8a506ec4b81c460798f572caead636d57d3d7e940f998160f52bd254bf2d23"
287
+ dependencies = [
288
+ "brotli",
289
+ "compression-core",
290
+ "flate2",
291
+ "memchr",
292
+ ]
293
+
294
+ [[package]]
295
+ name = "compression-core"
296
+ version = "0.4.29"
297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
298
+ checksum = "e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb"
299
+
300
+ [[package]]
301
+ name = "console"
302
+ version = "0.16.1"
303
+ source = "registry+https://github.com/rust-lang/crates.io-index"
304
+ checksum = "b430743a6eb14e9764d4260d4c0d8123087d504eeb9c48f2b2a5e810dd369df4"
305
+ dependencies = [
306
+ "encode_unicode",
307
+ "libc",
308
+ "once_cell",
309
+ "unicode-width",
310
+ "windows-sys 0.61.2",
311
+ ]
312
+
313
+ [[package]]
314
+ name = "convert_case"
315
+ version = "0.7.1"
316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
317
+ checksum = "bb402b8d4c85569410425650ce3eddc7d698ed96d39a73f941b08fb63082f1e7"
318
+ dependencies = [
319
+ "unicode-segmentation",
320
+ ]
321
+
322
+ [[package]]
323
+ name = "core-foundation"
324
+ version = "0.9.4"
325
+ source = "registry+https://github.com/rust-lang/crates.io-index"
326
+ checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
327
+ dependencies = [
328
+ "core-foundation-sys",
329
+ "libc",
330
+ ]
331
+
332
+ [[package]]
333
+ name = "core-foundation-sys"
334
+ version = "0.8.7"
335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
336
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
337
+
338
+ [[package]]
339
+ name = "crc32fast"
340
+ version = "1.5.0"
341
+ source = "registry+https://github.com/rust-lang/crates.io-index"
342
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
343
+ dependencies = [
344
+ "cfg-if",
345
+ ]
346
+
347
+ [[package]]
348
+ name = "crossbeam-deque"
349
+ version = "0.8.6"
350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
351
+ checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
352
+ dependencies = [
353
+ "crossbeam-epoch",
354
+ "crossbeam-utils",
355
+ ]
356
+
357
+ [[package]]
358
+ name = "crossbeam-epoch"
359
+ version = "0.9.18"
360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
361
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
362
+ dependencies = [
363
+ "crossbeam-utils",
364
+ ]
365
+
366
+ [[package]]
367
+ name = "crossbeam-utils"
368
+ version = "0.8.21"
369
+ source = "registry+https://github.com/rust-lang/crates.io-index"
370
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
371
+
372
+ [[package]]
373
+ name = "crossterm"
374
+ version = "0.29.0"
375
+ source = "registry+https://github.com/rust-lang/crates.io-index"
376
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
377
+ dependencies = [
378
+ "bitflags",
379
+ "crossterm_winapi",
380
+ "derive_more",
381
+ "document-features",
382
+ "mio",
383
+ "parking_lot",
384
+ "rustix",
385
+ "signal-hook",
386
+ "signal-hook-mio",
387
+ "winapi",
388
+ ]
389
+
390
+ [[package]]
391
+ name = "crossterm_winapi"
392
+ version = "0.9.1"
393
+ source = "registry+https://github.com/rust-lang/crates.io-index"
394
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
395
+ dependencies = [
396
+ "winapi",
397
+ ]
398
+
399
+ [[package]]
400
+ name = "derive_more"
401
+ version = "2.0.1"
402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
403
+ checksum = "093242cf7570c207c83073cf82f79706fe7b8317e98620a47d5be7c3d8497678"
404
+ dependencies = [
405
+ "derive_more-impl",
406
+ ]
407
+
408
+ [[package]]
409
+ name = "derive_more-impl"
410
+ version = "2.0.1"
411
+ source = "registry+https://github.com/rust-lang/crates.io-index"
412
+ checksum = "bda628edc44c4bb645fbe0f758797143e4e07926f7ebf4e9bdfbd3d2ce621df3"
413
+ dependencies = [
414
+ "convert_case",
415
+ "proc-macro2",
416
+ "quote",
417
+ "syn",
418
+ ]
419
+
420
+ [[package]]
421
+ name = "dialoguer"
422
+ version = "0.12.0"
423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
424
+ checksum = "25f104b501bf2364e78d0d3974cbc774f738f5865306ed128e1e0d7499c0ad96"
425
+ dependencies = [
426
+ "console",
427
+ "shell-words",
428
+ "tempfile",
429
+ "zeroize",
430
+ ]
431
+
432
+ [[package]]
433
+ name = "dirs"
434
+ version = "6.0.0"
435
+ source = "registry+https://github.com/rust-lang/crates.io-index"
436
+ checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
437
+ dependencies = [
438
+ "dirs-sys",
439
+ ]
440
+
441
+ [[package]]
442
+ name = "dirs-sys"
443
+ version = "0.5.0"
444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
445
+ checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
446
+ dependencies = [
447
+ "libc",
448
+ "option-ext",
449
+ "redox_users",
450
+ "windows-sys 0.61.2",
451
+ ]
452
+
453
+ [[package]]
454
+ name = "displaydoc"
455
+ version = "0.2.5"
456
+ source = "registry+https://github.com/rust-lang/crates.io-index"
457
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
458
+ dependencies = [
459
+ "proc-macro2",
460
+ "quote",
461
+ "syn",
462
+ ]
463
+
464
+ [[package]]
465
+ name = "document-features"
466
+ version = "0.2.12"
467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
468
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
469
+ dependencies = [
470
+ "litrs",
471
+ ]
472
+
473
+ [[package]]
474
+ name = "encode_unicode"
475
+ version = "1.0.0"
476
+ source = "registry+https://github.com/rust-lang/crates.io-index"
477
+ checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
478
+
479
+ [[package]]
480
+ name = "encoding_rs"
481
+ version = "0.8.35"
482
+ source = "registry+https://github.com/rust-lang/crates.io-index"
483
+ checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
484
+ dependencies = [
485
+ "cfg-if",
486
+ ]
487
+
488
+ [[package]]
489
+ name = "endian-type"
490
+ version = "0.1.2"
491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
492
+ checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
493
+
494
+ [[package]]
495
+ name = "equivalent"
496
+ version = "1.0.2"
497
+ source = "registry+https://github.com/rust-lang/crates.io-index"
498
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
499
+
500
+ [[package]]
501
+ name = "errno"
502
+ version = "0.3.14"
503
+ source = "registry+https://github.com/rust-lang/crates.io-index"
504
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
505
+ dependencies = [
506
+ "libc",
507
+ "windows-sys 0.61.2",
508
+ ]
509
+
510
+ [[package]]
511
+ name = "error-code"
512
+ version = "3.3.2"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
515
+
516
+ [[package]]
517
+ name = "eventsource-stream"
518
+ version = "0.2.3"
519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
520
+ checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab"
521
+ dependencies = [
522
+ "futures-core",
523
+ "nom",
524
+ "pin-project-lite",
525
+ ]
526
+
527
+ [[package]]
528
+ name = "fastrand"
529
+ version = "2.3.0"
530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
531
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
532
+
533
+ [[package]]
534
+ name = "fd-lock"
535
+ version = "4.0.4"
536
+ source = "registry+https://github.com/rust-lang/crates.io-index"
537
+ checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
538
+ dependencies = [
539
+ "cfg-if",
540
+ "rustix",
541
+ "windows-sys 0.59.0",
542
+ ]
543
+
544
+ [[package]]
545
+ name = "find-msvc-tools"
546
+ version = "0.1.4"
547
+ source = "registry+https://github.com/rust-lang/crates.io-index"
548
+ checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
549
+
550
+ [[package]]
551
+ name = "flate2"
552
+ version = "1.1.5"
553
+ source = "registry+https://github.com/rust-lang/crates.io-index"
554
+ checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
555
+ dependencies = [
556
+ "crc32fast",
557
+ "miniz_oxide",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "fnv"
562
+ version = "1.0.7"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
565
+
566
+ [[package]]
567
+ name = "foreign-types"
568
+ version = "0.3.2"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
571
+ dependencies = [
572
+ "foreign-types-shared",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "foreign-types-shared"
577
+ version = "0.1.1"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
580
+
581
+ [[package]]
582
+ name = "form_urlencoded"
583
+ version = "1.2.2"
584
+ source = "registry+https://github.com/rust-lang/crates.io-index"
585
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
586
+ dependencies = [
587
+ "percent-encoding",
588
+ ]
589
+
590
+ [[package]]
591
+ name = "futures"
592
+ version = "0.3.31"
593
+ source = "registry+https://github.com/rust-lang/crates.io-index"
594
+ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
595
+ dependencies = [
596
+ "futures-channel",
597
+ "futures-core",
598
+ "futures-executor",
599
+ "futures-io",
600
+ "futures-sink",
601
+ "futures-task",
602
+ "futures-util",
603
+ ]
604
+
605
+ [[package]]
606
+ name = "futures-channel"
607
+ version = "0.3.31"
608
+ source = "registry+https://github.com/rust-lang/crates.io-index"
609
+ checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
610
+ dependencies = [
611
+ "futures-core",
612
+ "futures-sink",
613
+ ]
614
+
615
+ [[package]]
616
+ name = "futures-core"
617
+ version = "0.3.31"
618
+ source = "registry+https://github.com/rust-lang/crates.io-index"
619
+ checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
620
+
621
+ [[package]]
622
+ name = "futures-executor"
623
+ version = "0.3.31"
624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
625
+ checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
626
+ dependencies = [
627
+ "futures-core",
628
+ "futures-task",
629
+ "futures-util",
630
+ ]
631
+
632
+ [[package]]
633
+ name = "futures-io"
634
+ version = "0.3.31"
635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
636
+ checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
637
+
638
+ [[package]]
639
+ name = "futures-macro"
640
+ version = "0.3.31"
641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
642
+ checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
643
+ dependencies = [
644
+ "proc-macro2",
645
+ "quote",
646
+ "syn",
647
+ ]
648
+
649
+ [[package]]
650
+ name = "futures-sink"
651
+ version = "0.3.31"
652
+ source = "registry+https://github.com/rust-lang/crates.io-index"
653
+ checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
654
+
655
+ [[package]]
656
+ name = "futures-task"
657
+ version = "0.3.31"
658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
659
+ checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
660
+
661
+ [[package]]
662
+ name = "futures-util"
663
+ version = "0.3.31"
664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
665
+ checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
666
+ dependencies = [
667
+ "futures-channel",
668
+ "futures-core",
669
+ "futures-io",
670
+ "futures-macro",
671
+ "futures-sink",
672
+ "futures-task",
673
+ "memchr",
674
+ "pin-project-lite",
675
+ "pin-utils",
676
+ "slab",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "getrandom"
681
+ version = "0.2.16"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
684
+ dependencies = [
685
+ "cfg-if",
686
+ "js-sys",
687
+ "libc",
688
+ "wasi",
689
+ "wasm-bindgen",
690
+ ]
691
+
692
+ [[package]]
693
+ name = "getrandom"
694
+ version = "0.3.4"
695
+ source = "registry+https://github.com/rust-lang/crates.io-index"
696
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
697
+ dependencies = [
698
+ "cfg-if",
699
+ "js-sys",
700
+ "libc",
701
+ "r-efi",
702
+ "wasip2",
703
+ "wasm-bindgen",
704
+ ]
705
+
706
+ [[package]]
707
+ name = "globset"
708
+ version = "0.4.18"
709
+ source = "registry+https://github.com/rust-lang/crates.io-index"
710
+ checksum = "52dfc19153a48bde0cbd630453615c8151bce3a5adfac7a0aebfbf0a1e1f57e3"
711
+ dependencies = [
712
+ "aho-corasick",
713
+ "bstr",
714
+ "log",
715
+ "regex-automata",
716
+ "regex-syntax",
717
+ ]
718
+
719
+ [[package]]
720
+ name = "h2"
721
+ version = "0.4.12"
722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
723
+ checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
724
+ dependencies = [
725
+ "atomic-waker",
726
+ "bytes",
727
+ "fnv",
728
+ "futures-core",
729
+ "futures-sink",
730
+ "http",
731
+ "indexmap",
732
+ "slab",
733
+ "tokio",
734
+ "tokio-util",
735
+ "tracing",
736
+ ]
737
+
738
+ [[package]]
739
+ name = "hashbrown"
740
+ version = "0.16.0"
741
+ source = "registry+https://github.com/rust-lang/crates.io-index"
742
+ checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
743
+
744
+ [[package]]
745
+ name = "heck"
746
+ version = "0.5.0"
747
+ source = "registry+https://github.com/rust-lang/crates.io-index"
748
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
749
+
750
+ [[package]]
751
+ name = "home"
752
+ version = "0.5.12"
753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
754
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
755
+ dependencies = [
756
+ "windows-sys 0.61.2",
757
+ ]
758
+
759
+ [[package]]
760
+ name = "http"
761
+ version = "1.3.1"
762
+ source = "registry+https://github.com/rust-lang/crates.io-index"
763
+ checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
764
+ dependencies = [
765
+ "bytes",
766
+ "fnv",
767
+ "itoa",
768
+ ]
769
+
770
+ [[package]]
771
+ name = "http-body"
772
+ version = "1.0.1"
773
+ source = "registry+https://github.com/rust-lang/crates.io-index"
774
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
775
+ dependencies = [
776
+ "bytes",
777
+ "http",
778
+ ]
779
+
780
+ [[package]]
781
+ name = "http-body-util"
782
+ version = "0.1.3"
783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
784
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
785
+ dependencies = [
786
+ "bytes",
787
+ "futures-core",
788
+ "http",
789
+ "http-body",
790
+ "pin-project-lite",
791
+ ]
792
+
793
+ [[package]]
794
+ name = "httparse"
795
+ version = "1.10.1"
796
+ source = "registry+https://github.com/rust-lang/crates.io-index"
797
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
798
+
799
+ [[package]]
800
+ name = "hyper"
801
+ version = "1.7.0"
802
+ source = "registry+https://github.com/rust-lang/crates.io-index"
803
+ checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
804
+ dependencies = [
805
+ "atomic-waker",
806
+ "bytes",
807
+ "futures-channel",
808
+ "futures-core",
809
+ "h2",
810
+ "http",
811
+ "http-body",
812
+ "httparse",
813
+ "itoa",
814
+ "pin-project-lite",
815
+ "pin-utils",
816
+ "smallvec",
817
+ "tokio",
818
+ "want",
819
+ ]
820
+
821
+ [[package]]
822
+ name = "hyper-rustls"
823
+ version = "0.27.7"
824
+ source = "registry+https://github.com/rust-lang/crates.io-index"
825
+ checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
826
+ dependencies = [
827
+ "http",
828
+ "hyper",
829
+ "hyper-util",
830
+ "rustls",
831
+ "rustls-pki-types",
832
+ "tokio",
833
+ "tokio-rustls",
834
+ "tower-service",
835
+ "webpki-roots",
836
+ ]
837
+
838
+ [[package]]
839
+ name = "hyper-tls"
840
+ version = "0.6.0"
841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
842
+ checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
843
+ dependencies = [
844
+ "bytes",
845
+ "http-body-util",
846
+ "hyper",
847
+ "hyper-util",
848
+ "native-tls",
849
+ "tokio",
850
+ "tokio-native-tls",
851
+ "tower-service",
852
+ ]
853
+
854
+ [[package]]
855
+ name = "hyper-util"
856
+ version = "0.1.17"
857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
858
+ checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
859
+ dependencies = [
860
+ "base64",
861
+ "bytes",
862
+ "futures-channel",
863
+ "futures-core",
864
+ "futures-util",
865
+ "http",
866
+ "http-body",
867
+ "hyper",
868
+ "ipnet",
869
+ "libc",
870
+ "percent-encoding",
871
+ "pin-project-lite",
872
+ "socket2",
873
+ "system-configuration",
874
+ "tokio",
875
+ "tower-service",
876
+ "tracing",
877
+ "windows-registry",
878
+ ]
879
+
880
+ [[package]]
881
+ name = "iana-time-zone"
882
+ version = "0.1.64"
883
+ source = "registry+https://github.com/rust-lang/crates.io-index"
884
+ checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
885
+ dependencies = [
886
+ "android_system_properties",
887
+ "core-foundation-sys",
888
+ "iana-time-zone-haiku",
889
+ "js-sys",
890
+ "log",
891
+ "wasm-bindgen",
892
+ "windows-core",
893
+ ]
894
+
895
+ [[package]]
896
+ name = "iana-time-zone-haiku"
897
+ version = "0.1.2"
898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
899
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
900
+ dependencies = [
901
+ "cc",
902
+ ]
903
+
904
+ [[package]]
905
+ name = "icu_collections"
906
+ version = "2.1.1"
907
+ source = "registry+https://github.com/rust-lang/crates.io-index"
908
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
909
+ dependencies = [
910
+ "displaydoc",
911
+ "potential_utf",
912
+ "yoke",
913
+ "zerofrom",
914
+ "zerovec",
915
+ ]
916
+
917
+ [[package]]
918
+ name = "icu_locale_core"
919
+ version = "2.1.1"
920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
921
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
922
+ dependencies = [
923
+ "displaydoc",
924
+ "litemap",
925
+ "tinystr",
926
+ "writeable",
927
+ "zerovec",
928
+ ]
929
+
930
+ [[package]]
931
+ name = "icu_normalizer"
932
+ version = "2.1.1"
933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
934
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
935
+ dependencies = [
936
+ "icu_collections",
937
+ "icu_normalizer_data",
938
+ "icu_properties",
939
+ "icu_provider",
940
+ "smallvec",
941
+ "zerovec",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "icu_normalizer_data"
946
+ version = "2.1.1"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
949
+
950
+ [[package]]
951
+ name = "icu_properties"
952
+ version = "2.1.1"
953
+ source = "registry+https://github.com/rust-lang/crates.io-index"
954
+ checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
955
+ dependencies = [
956
+ "icu_collections",
957
+ "icu_locale_core",
958
+ "icu_properties_data",
959
+ "icu_provider",
960
+ "zerotrie",
961
+ "zerovec",
962
+ ]
963
+
964
+ [[package]]
965
+ name = "icu_properties_data"
966
+ version = "2.1.1"
967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
968
+ checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
969
+
970
+ [[package]]
971
+ name = "icu_provider"
972
+ version = "2.1.1"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
975
+ dependencies = [
976
+ "displaydoc",
977
+ "icu_locale_core",
978
+ "writeable",
979
+ "yoke",
980
+ "zerofrom",
981
+ "zerotrie",
982
+ "zerovec",
983
+ ]
984
+
985
+ [[package]]
986
+ name = "idna"
987
+ version = "1.1.0"
988
+ source = "registry+https://github.com/rust-lang/crates.io-index"
989
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
990
+ dependencies = [
991
+ "idna_adapter",
992
+ "smallvec",
993
+ "utf8_iter",
994
+ ]
995
+
996
+ [[package]]
997
+ name = "idna_adapter"
998
+ version = "1.2.1"
999
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1000
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1001
+ dependencies = [
1002
+ "icu_normalizer",
1003
+ "icu_properties",
1004
+ ]
1005
+
1006
+ [[package]]
1007
+ name = "ignore"
1008
+ version = "0.4.25"
1009
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1010
+ checksum = "d3d782a365a015e0f5c04902246139249abf769125006fbe7649e2ee88169b4a"
1011
+ dependencies = [
1012
+ "crossbeam-deque",
1013
+ "globset",
1014
+ "log",
1015
+ "memchr",
1016
+ "regex-automata",
1017
+ "same-file",
1018
+ "walkdir",
1019
+ "winapi-util",
1020
+ ]
1021
+
1022
+ [[package]]
1023
+ name = "indexmap"
1024
+ version = "2.12.0"
1025
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1026
+ checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1027
+ dependencies = [
1028
+ "equivalent",
1029
+ "hashbrown",
1030
+ ]
1031
+
1032
+ [[package]]
1033
+ name = "ipnet"
1034
+ version = "2.11.0"
1035
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1036
+ checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1037
+
1038
+ [[package]]
1039
+ name = "iri-string"
1040
+ version = "0.7.8"
1041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1042
+ checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1043
+ dependencies = [
1044
+ "memchr",
1045
+ "serde",
1046
+ ]
1047
+
1048
+ [[package]]
1049
+ name = "is_terminal_polyfill"
1050
+ version = "1.70.2"
1051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1052
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1053
+
1054
+ [[package]]
1055
+ name = "itoa"
1056
+ version = "1.0.15"
1057
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1058
+ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1059
+
1060
+ [[package]]
1061
+ name = "js-sys"
1062
+ version = "0.3.82"
1063
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1064
+ checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
1065
+ dependencies = [
1066
+ "once_cell",
1067
+ "wasm-bindgen",
1068
+ ]
1069
+
1070
+ [[package]]
1071
+ name = "libc"
1072
+ version = "0.2.177"
1073
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1074
+ checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1075
+
1076
+ [[package]]
1077
+ name = "libredox"
1078
+ version = "0.1.10"
1079
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1080
+ checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
1081
+ dependencies = [
1082
+ "bitflags",
1083
+ "libc",
1084
+ ]
1085
+
1086
+ [[package]]
1087
+ name = "linux-raw-sys"
1088
+ version = "0.11.0"
1089
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1090
+ checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1091
+
1092
+ [[package]]
1093
+ name = "litemap"
1094
+ version = "0.8.1"
1095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1096
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1097
+
1098
+ [[package]]
1099
+ name = "litrs"
1100
+ version = "1.0.0"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1103
+
1104
+ [[package]]
1105
+ name = "lock_api"
1106
+ version = "0.4.14"
1107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1108
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1109
+ dependencies = [
1110
+ "scopeguard",
1111
+ ]
1112
+
1113
+ [[package]]
1114
+ name = "log"
1115
+ version = "0.4.28"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1118
+
1119
+ [[package]]
1120
+ name = "lru-slab"
1121
+ version = "0.1.2"
1122
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1123
+ checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1124
+
1125
+ [[package]]
1126
+ name = "memchr"
1127
+ version = "2.7.6"
1128
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1129
+ checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1130
+
1131
+ [[package]]
1132
+ name = "mime"
1133
+ version = "0.3.17"
1134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1135
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1136
+
1137
+ [[package]]
1138
+ name = "minimal-lexical"
1139
+ version = "0.2.1"
1140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1141
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1142
+
1143
+ [[package]]
1144
+ name = "miniz_oxide"
1145
+ version = "0.8.9"
1146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1147
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1148
+ dependencies = [
1149
+ "adler2",
1150
+ "simd-adler32",
1151
+ ]
1152
+
1153
+ [[package]]
1154
+ name = "mio"
1155
+ version = "1.1.0"
1156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1157
+ checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
1158
+ dependencies = [
1159
+ "libc",
1160
+ "log",
1161
+ "wasi",
1162
+ "windows-sys 0.61.2",
1163
+ ]
1164
+
1165
+ [[package]]
1166
+ name = "native-tls"
1167
+ version = "0.2.14"
1168
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1169
+ checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1170
+ dependencies = [
1171
+ "libc",
1172
+ "log",
1173
+ "openssl",
1174
+ "openssl-probe",
1175
+ "openssl-sys",
1176
+ "schannel",
1177
+ "security-framework",
1178
+ "security-framework-sys",
1179
+ "tempfile",
1180
+ ]
1181
+
1182
+ [[package]]
1183
+ name = "nibble_vec"
1184
+ version = "0.1.0"
1185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1186
+ checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
1187
+ dependencies = [
1188
+ "smallvec",
1189
+ ]
1190
+
1191
+ [[package]]
1192
+ name = "nix"
1193
+ version = "0.30.1"
1194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1195
+ checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
1196
+ dependencies = [
1197
+ "bitflags",
1198
+ "cfg-if",
1199
+ "cfg_aliases",
1200
+ "libc",
1201
+ ]
1202
+
1203
+ [[package]]
1204
+ name = "nom"
1205
+ version = "7.1.3"
1206
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1207
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1208
+ dependencies = [
1209
+ "memchr",
1210
+ "minimal-lexical",
1211
+ ]
1212
+
1213
+ [[package]]
1214
+ name = "num-traits"
1215
+ version = "0.2.19"
1216
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1217
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1218
+ dependencies = [
1219
+ "autocfg",
1220
+ ]
1221
+
1222
+ [[package]]
1223
+ name = "once_cell"
1224
+ version = "1.21.3"
1225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1226
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1227
+
1228
+ [[package]]
1229
+ name = "once_cell_polyfill"
1230
+ version = "1.70.2"
1231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1232
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1233
+
1234
+ [[package]]
1235
+ name = "openssl"
1236
+ version = "0.10.74"
1237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1238
+ checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654"
1239
+ dependencies = [
1240
+ "bitflags",
1241
+ "cfg-if",
1242
+ "foreign-types",
1243
+ "libc",
1244
+ "once_cell",
1245
+ "openssl-macros",
1246
+ "openssl-sys",
1247
+ ]
1248
+
1249
+ [[package]]
1250
+ name = "openssl-macros"
1251
+ version = "0.1.1"
1252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1253
+ checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1254
+ dependencies = [
1255
+ "proc-macro2",
1256
+ "quote",
1257
+ "syn",
1258
+ ]
1259
+
1260
+ [[package]]
1261
+ name = "openssl-probe"
1262
+ version = "0.1.6"
1263
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1264
+ checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1265
+
1266
+ [[package]]
1267
+ name = "openssl-sys"
1268
+ version = "0.9.110"
1269
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1270
+ checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2"
1271
+ dependencies = [
1272
+ "cc",
1273
+ "libc",
1274
+ "pkg-config",
1275
+ "vcpkg",
1276
+ ]
1277
+
1278
+ [[package]]
1279
+ name = "option-ext"
1280
+ version = "0.2.0"
1281
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1282
+ checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1283
+
1284
+ [[package]]
1285
+ name = "parking_lot"
1286
+ version = "0.12.5"
1287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1288
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1289
+ dependencies = [
1290
+ "lock_api",
1291
+ "parking_lot_core",
1292
+ ]
1293
+
1294
+ [[package]]
1295
+ name = "parking_lot_core"
1296
+ version = "0.9.12"
1297
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1298
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1299
+ dependencies = [
1300
+ "cfg-if",
1301
+ "libc",
1302
+ "redox_syscall",
1303
+ "smallvec",
1304
+ "windows-link 0.2.1",
1305
+ ]
1306
+
1307
+ [[package]]
1308
+ name = "percent-encoding"
1309
+ version = "2.3.2"
1310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1311
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1312
+
1313
+ [[package]]
1314
+ name = "pin-project-lite"
1315
+ version = "0.2.16"
1316
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1317
+ checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1318
+
1319
+ [[package]]
1320
+ name = "pin-utils"
1321
+ version = "0.1.0"
1322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1323
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1324
+
1325
+ [[package]]
1326
+ name = "pkg-config"
1327
+ version = "0.3.32"
1328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1329
+ checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1330
+
1331
+ [[package]]
1332
+ name = "potential_utf"
1333
+ version = "0.1.4"
1334
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1335
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1336
+ dependencies = [
1337
+ "zerovec",
1338
+ ]
1339
+
1340
+ [[package]]
1341
+ name = "ppv-lite86"
1342
+ version = "0.2.21"
1343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1344
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1345
+ dependencies = [
1346
+ "zerocopy",
1347
+ ]
1348
+
1349
+ [[package]]
1350
+ name = "proc-macro2"
1351
+ version = "1.0.103"
1352
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1353
+ checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1354
+ dependencies = [
1355
+ "unicode-ident",
1356
+ ]
1357
+
1358
+ [[package]]
1359
+ name = "quinn"
1360
+ version = "0.11.9"
1361
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1362
+ checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1363
+ dependencies = [
1364
+ "bytes",
1365
+ "cfg_aliases",
1366
+ "pin-project-lite",
1367
+ "quinn-proto",
1368
+ "quinn-udp",
1369
+ "rustc-hash",
1370
+ "rustls",
1371
+ "socket2",
1372
+ "thiserror",
1373
+ "tokio",
1374
+ "tracing",
1375
+ "web-time",
1376
+ ]
1377
+
1378
+ [[package]]
1379
+ name = "quinn-proto"
1380
+ version = "0.11.13"
1381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1382
+ checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
1383
+ dependencies = [
1384
+ "bytes",
1385
+ "getrandom 0.3.4",
1386
+ "lru-slab",
1387
+ "rand",
1388
+ "ring",
1389
+ "rustc-hash",
1390
+ "rustls",
1391
+ "rustls-pki-types",
1392
+ "slab",
1393
+ "thiserror",
1394
+ "tinyvec",
1395
+ "tracing",
1396
+ "web-time",
1397
+ ]
1398
+
1399
+ [[package]]
1400
+ name = "quinn-udp"
1401
+ version = "0.5.14"
1402
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1403
+ checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
1404
+ dependencies = [
1405
+ "cfg_aliases",
1406
+ "libc",
1407
+ "once_cell",
1408
+ "socket2",
1409
+ "tracing",
1410
+ "windows-sys 0.60.2",
1411
+ ]
1412
+
1413
+ [[package]]
1414
+ name = "quote"
1415
+ version = "1.0.41"
1416
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1417
+ checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
1418
+ dependencies = [
1419
+ "proc-macro2",
1420
+ ]
1421
+
1422
+ [[package]]
1423
+ name = "r-efi"
1424
+ version = "5.3.0"
1425
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1426
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1427
+
1428
+ [[package]]
1429
+ name = "radix_trie"
1430
+ version = "0.2.1"
1431
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1432
+ checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
1433
+ dependencies = [
1434
+ "endian-type",
1435
+ "nibble_vec",
1436
+ ]
1437
+
1438
+ [[package]]
1439
+ name = "rand"
1440
+ version = "0.9.2"
1441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1442
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1443
+ dependencies = [
1444
+ "rand_chacha",
1445
+ "rand_core",
1446
+ ]
1447
+
1448
+ [[package]]
1449
+ name = "rand_chacha"
1450
+ version = "0.9.0"
1451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1452
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1453
+ dependencies = [
1454
+ "ppv-lite86",
1455
+ "rand_core",
1456
+ ]
1457
+
1458
+ [[package]]
1459
+ name = "rand_core"
1460
+ version = "0.9.3"
1461
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1462
+ checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1463
+ dependencies = [
1464
+ "getrandom 0.3.4",
1465
+ ]
1466
+
1467
+ [[package]]
1468
+ name = "redox_syscall"
1469
+ version = "0.5.18"
1470
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1471
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1472
+ dependencies = [
1473
+ "bitflags",
1474
+ ]
1475
+
1476
+ [[package]]
1477
+ name = "redox_users"
1478
+ version = "0.5.2"
1479
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1480
+ checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1481
+ dependencies = [
1482
+ "getrandom 0.2.16",
1483
+ "libredox",
1484
+ "thiserror",
1485
+ ]
1486
+
1487
+ [[package]]
1488
+ name = "regex"
1489
+ version = "1.12.2"
1490
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1491
+ checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
1492
+ dependencies = [
1493
+ "aho-corasick",
1494
+ "memchr",
1495
+ "regex-automata",
1496
+ "regex-syntax",
1497
+ ]
1498
+
1499
+ [[package]]
1500
+ name = "regex-automata"
1501
+ version = "0.4.13"
1502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1503
+ checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
1504
+ dependencies = [
1505
+ "aho-corasick",
1506
+ "memchr",
1507
+ "regex-syntax",
1508
+ ]
1509
+
1510
+ [[package]]
1511
+ name = "regex-syntax"
1512
+ version = "0.8.8"
1513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1514
+ checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
1515
+
1516
+ [[package]]
1517
+ name = "reqwest"
1518
+ version = "0.12.24"
1519
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1520
+ checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
1521
+ dependencies = [
1522
+ "async-compression",
1523
+ "base64",
1524
+ "bytes",
1525
+ "encoding_rs",
1526
+ "futures-core",
1527
+ "futures-util",
1528
+ "h2",
1529
+ "http",
1530
+ "http-body",
1531
+ "http-body-util",
1532
+ "hyper",
1533
+ "hyper-rustls",
1534
+ "hyper-tls",
1535
+ "hyper-util",
1536
+ "js-sys",
1537
+ "log",
1538
+ "mime",
1539
+ "native-tls",
1540
+ "percent-encoding",
1541
+ "pin-project-lite",
1542
+ "quinn",
1543
+ "rustls",
1544
+ "rustls-pki-types",
1545
+ "serde",
1546
+ "serde_json",
1547
+ "serde_urlencoded",
1548
+ "sync_wrapper",
1549
+ "tokio",
1550
+ "tokio-native-tls",
1551
+ "tokio-rustls",
1552
+ "tokio-util",
1553
+ "tower",
1554
+ "tower-http",
1555
+ "tower-service",
1556
+ "url",
1557
+ "wasm-bindgen",
1558
+ "wasm-bindgen-futures",
1559
+ "wasm-streams",
1560
+ "web-sys",
1561
+ "webpki-roots",
1562
+ ]
1563
+
1564
+ [[package]]
1565
+ name = "ring"
1566
+ version = "0.17.14"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1569
+ dependencies = [
1570
+ "cc",
1571
+ "cfg-if",
1572
+ "getrandom 0.2.16",
1573
+ "libc",
1574
+ "untrusted",
1575
+ "windows-sys 0.52.0",
1576
+ ]
1577
+
1578
+ [[package]]
1579
+ name = "rustc-hash"
1580
+ version = "2.1.1"
1581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1582
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
1583
+
1584
+ [[package]]
1585
+ name = "rustix"
1586
+ version = "1.1.2"
1587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1588
+ checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
1589
+ dependencies = [
1590
+ "bitflags",
1591
+ "errno",
1592
+ "libc",
1593
+ "linux-raw-sys",
1594
+ "windows-sys 0.61.2",
1595
+ ]
1596
+
1597
+ [[package]]
1598
+ name = "rustls"
1599
+ version = "0.23.34"
1600
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1601
+ checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
1602
+ dependencies = [
1603
+ "once_cell",
1604
+ "ring",
1605
+ "rustls-pki-types",
1606
+ "rustls-webpki",
1607
+ "subtle",
1608
+ "zeroize",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "rustls-pki-types"
1613
+ version = "1.13.0"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
1616
+ dependencies = [
1617
+ "web-time",
1618
+ "zeroize",
1619
+ ]
1620
+
1621
+ [[package]]
1622
+ name = "rustls-webpki"
1623
+ version = "0.103.8"
1624
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1625
+ checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
1626
+ dependencies = [
1627
+ "ring",
1628
+ "rustls-pki-types",
1629
+ "untrusted",
1630
+ ]
1631
+
1632
+ [[package]]
1633
+ name = "rustversion"
1634
+ version = "1.0.22"
1635
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1636
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1637
+
1638
+ [[package]]
1639
+ name = "rustyline"
1640
+ version = "17.0.2"
1641
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1642
+ checksum = "e902948a25149d50edc1a8e0141aad50f54e22ba83ff988cf8f7c9ef07f50564"
1643
+ dependencies = [
1644
+ "bitflags",
1645
+ "cfg-if",
1646
+ "clipboard-win",
1647
+ "fd-lock",
1648
+ "home",
1649
+ "libc",
1650
+ "log",
1651
+ "memchr",
1652
+ "nix",
1653
+ "radix_trie",
1654
+ "unicode-segmentation",
1655
+ "unicode-width",
1656
+ "utf8parse",
1657
+ "windows-sys 0.60.2",
1658
+ ]
1659
+
1660
+ [[package]]
1661
+ name = "ryu"
1662
+ version = "1.0.20"
1663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1664
+ checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1665
+
1666
+ [[package]]
1667
+ name = "same-file"
1668
+ version = "1.0.6"
1669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1670
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1671
+ dependencies = [
1672
+ "winapi-util",
1673
+ ]
1674
+
1675
+ [[package]]
1676
+ name = "schannel"
1677
+ version = "0.1.28"
1678
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1679
+ checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
1680
+ dependencies = [
1681
+ "windows-sys 0.61.2",
1682
+ ]
1683
+
1684
+ [[package]]
1685
+ name = "scopeguard"
1686
+ version = "1.2.0"
1687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1688
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1689
+
1690
+ [[package]]
1691
+ name = "security-framework"
1692
+ version = "2.11.1"
1693
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1694
+ checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1695
+ dependencies = [
1696
+ "bitflags",
1697
+ "core-foundation",
1698
+ "core-foundation-sys",
1699
+ "libc",
1700
+ "security-framework-sys",
1701
+ ]
1702
+
1703
+ [[package]]
1704
+ name = "security-framework-sys"
1705
+ version = "2.15.0"
1706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1707
+ checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
1708
+ dependencies = [
1709
+ "core-foundation-sys",
1710
+ "libc",
1711
+ ]
1712
+
1713
+ [[package]]
1714
+ name = "serde"
1715
+ version = "1.0.228"
1716
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1717
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
1718
+ dependencies = [
1719
+ "serde_core",
1720
+ "serde_derive",
1721
+ ]
1722
+
1723
+ [[package]]
1724
+ name = "serde_core"
1725
+ version = "1.0.228"
1726
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1727
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
1728
+ dependencies = [
1729
+ "serde_derive",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "serde_derive"
1734
+ version = "1.0.228"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
1737
+ dependencies = [
1738
+ "proc-macro2",
1739
+ "quote",
1740
+ "syn",
1741
+ ]
1742
+
1743
+ [[package]]
1744
+ name = "serde_json"
1745
+ version = "1.0.145"
1746
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1747
+ checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
1748
+ dependencies = [
1749
+ "indexmap",
1750
+ "itoa",
1751
+ "memchr",
1752
+ "ryu",
1753
+ "serde",
1754
+ "serde_core",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "serde_spanned"
1759
+ version = "1.0.3"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "e24345aa0fe688594e73770a5f6d1b216508b4f93484c0026d521acd30134392"
1762
+ dependencies = [
1763
+ "serde_core",
1764
+ ]
1765
+
1766
+ [[package]]
1767
+ name = "serde_urlencoded"
1768
+ version = "0.7.1"
1769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1770
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1771
+ dependencies = [
1772
+ "form_urlencoded",
1773
+ "itoa",
1774
+ "ryu",
1775
+ "serde",
1776
+ ]
1777
+
1778
+ [[package]]
1779
+ name = "shell-words"
1780
+ version = "1.1.0"
1781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1782
+ checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
1783
+
1784
+ [[package]]
1785
+ name = "shlex"
1786
+ version = "1.3.0"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1789
+
1790
+ [[package]]
1791
+ name = "signal-hook"
1792
+ version = "0.3.18"
1793
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1794
+ checksum = "d881a16cf4426aa584979d30bd82cb33429027e42122b169753d6ef1085ed6e2"
1795
+ dependencies = [
1796
+ "libc",
1797
+ "signal-hook-registry",
1798
+ ]
1799
+
1800
+ [[package]]
1801
+ name = "signal-hook-mio"
1802
+ version = "0.2.5"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "b75a19a7a740b25bc7944bdee6172368f988763b744e3d4dfe753f6b4ece40cc"
1805
+ dependencies = [
1806
+ "libc",
1807
+ "mio",
1808
+ "signal-hook",
1809
+ ]
1810
+
1811
+ [[package]]
1812
+ name = "signal-hook-registry"
1813
+ version = "1.4.6"
1814
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1815
+ checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
1816
+ dependencies = [
1817
+ "libc",
1818
+ ]
1819
+
1820
+ [[package]]
1821
+ name = "simd-adler32"
1822
+ version = "0.3.7"
1823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1824
+ checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
1825
+
1826
+ [[package]]
1827
+ name = "similar"
1828
+ version = "2.7.0"
1829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1830
+ checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
1831
+
1832
+ [[package]]
1833
+ name = "slab"
1834
+ version = "0.4.11"
1835
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1836
+ checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
1837
+
1838
+ [[package]]
1839
+ name = "smallvec"
1840
+ version = "1.15.1"
1841
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1842
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1843
+
1844
+ [[package]]
1845
+ name = "socket2"
1846
+ version = "0.6.1"
1847
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1848
+ checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
1849
+ dependencies = [
1850
+ "libc",
1851
+ "windows-sys 0.60.2",
1852
+ ]
1853
+
1854
+ [[package]]
1855
+ name = "stable_deref_trait"
1856
+ version = "1.2.1"
1857
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1858
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
1859
+
1860
+ [[package]]
1861
+ name = "streaming-iterator"
1862
+ version = "0.1.9"
1863
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1864
+ checksum = "2b2231b7c3057d5e4ad0156fb3dc807d900806020c5ffa3ee6ff2c8c76fb8520"
1865
+
1866
+ [[package]]
1867
+ name = "strsim"
1868
+ version = "0.11.1"
1869
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1870
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1871
+
1872
+ [[package]]
1873
+ name = "subtle"
1874
+ version = "2.6.1"
1875
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1876
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1877
+
1878
+ [[package]]
1879
+ name = "syn"
1880
+ version = "2.0.108"
1881
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1882
+ checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
1883
+ dependencies = [
1884
+ "proc-macro2",
1885
+ "quote",
1886
+ "unicode-ident",
1887
+ ]
1888
+
1889
+ [[package]]
1890
+ name = "sync_wrapper"
1891
+ version = "1.0.2"
1892
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1893
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1894
+ dependencies = [
1895
+ "futures-core",
1896
+ ]
1897
+
1898
+ [[package]]
1899
+ name = "synstructure"
1900
+ version = "0.13.2"
1901
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1902
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1903
+ dependencies = [
1904
+ "proc-macro2",
1905
+ "quote",
1906
+ "syn",
1907
+ ]
1908
+
1909
+ [[package]]
1910
+ name = "system-configuration"
1911
+ version = "0.6.1"
1912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1913
+ checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
1914
+ dependencies = [
1915
+ "bitflags",
1916
+ "core-foundation",
1917
+ "system-configuration-sys",
1918
+ ]
1919
+
1920
+ [[package]]
1921
+ name = "system-configuration-sys"
1922
+ version = "0.6.0"
1923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1924
+ checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1925
+ dependencies = [
1926
+ "core-foundation-sys",
1927
+ "libc",
1928
+ ]
1929
+
1930
+ [[package]]
1931
+ name = "tempfile"
1932
+ version = "3.23.0"
1933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1934
+ checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
1935
+ dependencies = [
1936
+ "fastrand",
1937
+ "getrandom 0.3.4",
1938
+ "once_cell",
1939
+ "rustix",
1940
+ "windows-sys 0.61.2",
1941
+ ]
1942
+
1943
+ [[package]]
1944
+ name = "thiserror"
1945
+ version = "2.0.17"
1946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1947
+ checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
1948
+ dependencies = [
1949
+ "thiserror-impl",
1950
+ ]
1951
+
1952
+ [[package]]
1953
+ name = "thiserror-impl"
1954
+ version = "2.0.17"
1955
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1956
+ checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
1957
+ dependencies = [
1958
+ "proc-macro2",
1959
+ "quote",
1960
+ "syn",
1961
+ ]
1962
+
1963
+ [[package]]
1964
+ name = "tinystr"
1965
+ version = "0.8.2"
1966
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1967
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
1968
+ dependencies = [
1969
+ "displaydoc",
1970
+ "zerovec",
1971
+ ]
1972
+
1973
+ [[package]]
1974
+ name = "tinyvec"
1975
+ version = "1.10.0"
1976
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1977
+ checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
1978
+ dependencies = [
1979
+ "tinyvec_macros",
1980
+ ]
1981
+
1982
+ [[package]]
1983
+ name = "tinyvec_macros"
1984
+ version = "0.1.1"
1985
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1986
+ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1987
+
1988
+ [[package]]
1989
+ name = "tokio"
1990
+ version = "1.48.0"
1991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1992
+ checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
1993
+ dependencies = [
1994
+ "bytes",
1995
+ "libc",
1996
+ "mio",
1997
+ "pin-project-lite",
1998
+ "signal-hook-registry",
1999
+ "socket2",
2000
+ "tokio-macros",
2001
+ "windows-sys 0.61.2",
2002
+ ]
2003
+
2004
+ [[package]]
2005
+ name = "tokio-macros"
2006
+ version = "2.6.0"
2007
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2008
+ checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
2009
+ dependencies = [
2010
+ "proc-macro2",
2011
+ "quote",
2012
+ "syn",
2013
+ ]
2014
+
2015
+ [[package]]
2016
+ name = "tokio-native-tls"
2017
+ version = "0.3.1"
2018
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2019
+ checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2020
+ dependencies = [
2021
+ "native-tls",
2022
+ "tokio",
2023
+ ]
2024
+
2025
+ [[package]]
2026
+ name = "tokio-rustls"
2027
+ version = "0.26.4"
2028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2029
+ checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2030
+ dependencies = [
2031
+ "rustls",
2032
+ "tokio",
2033
+ ]
2034
+
2035
+ [[package]]
2036
+ name = "tokio-stream"
2037
+ version = "0.1.17"
2038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2039
+ checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2040
+ dependencies = [
2041
+ "futures-core",
2042
+ "pin-project-lite",
2043
+ "tokio",
2044
+ ]
2045
+
2046
+ [[package]]
2047
+ name = "tokio-util"
2048
+ version = "0.7.16"
2049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2050
+ checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
2051
+ dependencies = [
2052
+ "bytes",
2053
+ "futures-core",
2054
+ "futures-sink",
2055
+ "pin-project-lite",
2056
+ "tokio",
2057
+ ]
2058
+
2059
+ [[package]]
2060
+ name = "toml"
2061
+ version = "0.9.8"
2062
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2063
+ checksum = "f0dc8b1fb61449e27716ec0e1bdf0f6b8f3e8f6b05391e8497b8b6d7804ea6d8"
2064
+ dependencies = [
2065
+ "indexmap",
2066
+ "serde_core",
2067
+ "serde_spanned",
2068
+ "toml_datetime",
2069
+ "toml_parser",
2070
+ "toml_writer",
2071
+ "winnow",
2072
+ ]
2073
+
2074
+ [[package]]
2075
+ name = "toml_datetime"
2076
+ version = "0.7.3"
2077
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2078
+ checksum = "f2cdb639ebbc97961c51720f858597f7f24c4fc295327923af55b74c3c724533"
2079
+ dependencies = [
2080
+ "serde_core",
2081
+ ]
2082
+
2083
+ [[package]]
2084
+ name = "toml_parser"
2085
+ version = "1.0.4"
2086
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2087
+ checksum = "c0cbe268d35bdb4bb5a56a2de88d0ad0eb70af5384a99d648cd4b3d04039800e"
2088
+ dependencies = [
2089
+ "winnow",
2090
+ ]
2091
+
2092
+ [[package]]
2093
+ name = "toml_writer"
2094
+ version = "1.0.4"
2095
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2096
+ checksum = "df8b2b54733674ad286d16267dcfc7a71ed5c776e4ac7aa3c3e2561f7c637bf2"
2097
+
2098
+ [[package]]
2099
+ name = "tower"
2100
+ version = "0.5.2"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2103
+ dependencies = [
2104
+ "futures-core",
2105
+ "futures-util",
2106
+ "pin-project-lite",
2107
+ "sync_wrapper",
2108
+ "tokio",
2109
+ "tower-layer",
2110
+ "tower-service",
2111
+ ]
2112
+
2113
+ [[package]]
2114
+ name = "tower-http"
2115
+ version = "0.6.6"
2116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2117
+ checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
2118
+ dependencies = [
2119
+ "bitflags",
2120
+ "bytes",
2121
+ "futures-util",
2122
+ "http",
2123
+ "http-body",
2124
+ "iri-string",
2125
+ "pin-project-lite",
2126
+ "tower",
2127
+ "tower-layer",
2128
+ "tower-service",
2129
+ ]
2130
+
2131
+ [[package]]
2132
+ name = "tower-layer"
2133
+ version = "0.3.3"
2134
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2135
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2136
+
2137
+ [[package]]
2138
+ name = "tower-service"
2139
+ version = "0.3.3"
2140
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2141
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2142
+
2143
+ [[package]]
2144
+ name = "tracing"
2145
+ version = "0.1.41"
2146
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2147
+ checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2148
+ dependencies = [
2149
+ "pin-project-lite",
2150
+ "tracing-core",
2151
+ ]
2152
+
2153
+ [[package]]
2154
+ name = "tracing-core"
2155
+ version = "0.1.34"
2156
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2157
+ checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2158
+ dependencies = [
2159
+ "once_cell",
2160
+ ]
2161
+
2162
+ [[package]]
2163
+ name = "tree-sitter"
2164
+ version = "0.25.10"
2165
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2166
+ checksum = "78f873475d258561b06f1c595d93308a7ed124d9977cb26b148c2084a4a3cc87"
2167
+ dependencies = [
2168
+ "cc",
2169
+ "regex",
2170
+ "regex-syntax",
2171
+ "serde_json",
2172
+ "streaming-iterator",
2173
+ "tree-sitter-language",
2174
+ ]
2175
+
2176
+ [[package]]
2177
+ name = "tree-sitter-language"
2178
+ version = "0.1.5"
2179
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2180
+ checksum = "c4013970217383f67b18aef68f6fb2e8d409bc5755227092d32efb0422ba24b8"
2181
+
2182
+ [[package]]
2183
+ name = "try-lock"
2184
+ version = "0.2.5"
2185
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2186
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2187
+
2188
+ [[package]]
2189
+ name = "unicode-ident"
2190
+ version = "1.0.22"
2191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2192
+ checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
2193
+
2194
+ [[package]]
2195
+ name = "unicode-segmentation"
2196
+ version = "1.12.0"
2197
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2198
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2199
+
2200
+ [[package]]
2201
+ name = "unicode-width"
2202
+ version = "0.2.2"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
2205
+
2206
+ [[package]]
2207
+ name = "untrusted"
2208
+ version = "0.9.0"
2209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2210
+ checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2211
+
2212
+ [[package]]
2213
+ name = "url"
2214
+ version = "2.5.7"
2215
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2216
+ checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
2217
+ dependencies = [
2218
+ "form_urlencoded",
2219
+ "idna",
2220
+ "percent-encoding",
2221
+ "serde",
2222
+ ]
2223
+
2224
+ [[package]]
2225
+ name = "utf8_iter"
2226
+ version = "1.0.4"
2227
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2228
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2229
+
2230
+ [[package]]
2231
+ name = "utf8parse"
2232
+ version = "0.2.2"
2233
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2234
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2235
+
2236
+ [[package]]
2237
+ name = "vcpkg"
2238
+ version = "0.2.15"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2241
+
2242
+ [[package]]
2243
+ name = "walkdir"
2244
+ version = "2.5.0"
2245
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2246
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2247
+ dependencies = [
2248
+ "same-file",
2249
+ "winapi-util",
2250
+ ]
2251
+
2252
+ [[package]]
2253
+ name = "want"
2254
+ version = "0.3.1"
2255
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2256
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2257
+ dependencies = [
2258
+ "try-lock",
2259
+ ]
2260
+
2261
+ [[package]]
2262
+ name = "wasi"
2263
+ version = "0.11.1+wasi-snapshot-preview1"
2264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2265
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2266
+
2267
+ [[package]]
2268
+ name = "wasip2"
2269
+ version = "1.0.1+wasi-0.2.4"
2270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2271
+ checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
2272
+ dependencies = [
2273
+ "wit-bindgen",
2274
+ ]
2275
+
2276
+ [[package]]
2277
+ name = "wasm-bindgen"
2278
+ version = "0.2.105"
2279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2280
+ checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
2281
+ dependencies = [
2282
+ "cfg-if",
2283
+ "once_cell",
2284
+ "rustversion",
2285
+ "wasm-bindgen-macro",
2286
+ "wasm-bindgen-shared",
2287
+ ]
2288
+
2289
+ [[package]]
2290
+ name = "wasm-bindgen-futures"
2291
+ version = "0.4.55"
2292
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2293
+ checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
2294
+ dependencies = [
2295
+ "cfg-if",
2296
+ "js-sys",
2297
+ "once_cell",
2298
+ "wasm-bindgen",
2299
+ "web-sys",
2300
+ ]
2301
+
2302
+ [[package]]
2303
+ name = "wasm-bindgen-macro"
2304
+ version = "0.2.105"
2305
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2306
+ checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
2307
+ dependencies = [
2308
+ "quote",
2309
+ "wasm-bindgen-macro-support",
2310
+ ]
2311
+
2312
+ [[package]]
2313
+ name = "wasm-bindgen-macro-support"
2314
+ version = "0.2.105"
2315
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2316
+ checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
2317
+ dependencies = [
2318
+ "bumpalo",
2319
+ "proc-macro2",
2320
+ "quote",
2321
+ "syn",
2322
+ "wasm-bindgen-shared",
2323
+ ]
2324
+
2325
+ [[package]]
2326
+ name = "wasm-bindgen-shared"
2327
+ version = "0.2.105"
2328
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2329
+ checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
2330
+ dependencies = [
2331
+ "unicode-ident",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "wasm-streams"
2336
+ version = "0.4.2"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
2339
+ dependencies = [
2340
+ "futures-util",
2341
+ "js-sys",
2342
+ "wasm-bindgen",
2343
+ "wasm-bindgen-futures",
2344
+ "web-sys",
2345
+ ]
2346
+
2347
+ [[package]]
2348
+ name = "web-sys"
2349
+ version = "0.3.82"
2350
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2351
+ checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
2352
+ dependencies = [
2353
+ "js-sys",
2354
+ "wasm-bindgen",
2355
+ ]
2356
+
2357
+ [[package]]
2358
+ name = "web-time"
2359
+ version = "1.1.0"
2360
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2361
+ checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
2362
+ dependencies = [
2363
+ "js-sys",
2364
+ "wasm-bindgen",
2365
+ ]
2366
+
2367
+ [[package]]
2368
+ name = "webpki-roots"
2369
+ version = "1.0.4"
2370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2371
+ checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
2372
+ dependencies = [
2373
+ "rustls-pki-types",
2374
+ ]
2375
+
2376
+ [[package]]
2377
+ name = "winapi"
2378
+ version = "0.3.9"
2379
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2380
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2381
+ dependencies = [
2382
+ "winapi-i686-pc-windows-gnu",
2383
+ "winapi-x86_64-pc-windows-gnu",
2384
+ ]
2385
+
2386
+ [[package]]
2387
+ name = "winapi-i686-pc-windows-gnu"
2388
+ version = "0.4.0"
2389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2390
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2391
+
2392
+ [[package]]
2393
+ name = "winapi-util"
2394
+ version = "0.1.11"
2395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2396
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2397
+ dependencies = [
2398
+ "windows-sys 0.61.2",
2399
+ ]
2400
+
2401
+ [[package]]
2402
+ name = "winapi-x86_64-pc-windows-gnu"
2403
+ version = "0.4.0"
2404
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2405
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2406
+
2407
+ [[package]]
2408
+ name = "windows-core"
2409
+ version = "0.62.2"
2410
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2411
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
2412
+ dependencies = [
2413
+ "windows-implement",
2414
+ "windows-interface",
2415
+ "windows-link 0.2.1",
2416
+ "windows-result 0.4.1",
2417
+ "windows-strings 0.5.1",
2418
+ ]
2419
+
2420
+ [[package]]
2421
+ name = "windows-implement"
2422
+ version = "0.60.2"
2423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2424
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
2425
+ dependencies = [
2426
+ "proc-macro2",
2427
+ "quote",
2428
+ "syn",
2429
+ ]
2430
+
2431
+ [[package]]
2432
+ name = "windows-interface"
2433
+ version = "0.59.3"
2434
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2435
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
2436
+ dependencies = [
2437
+ "proc-macro2",
2438
+ "quote",
2439
+ "syn",
2440
+ ]
2441
+
2442
+ [[package]]
2443
+ name = "windows-link"
2444
+ version = "0.1.3"
2445
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2446
+ checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
2447
+
2448
+ [[package]]
2449
+ name = "windows-link"
2450
+ version = "0.2.1"
2451
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2452
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2453
+
2454
+ [[package]]
2455
+ name = "windows-registry"
2456
+ version = "0.5.3"
2457
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2458
+ checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
2459
+ dependencies = [
2460
+ "windows-link 0.1.3",
2461
+ "windows-result 0.3.4",
2462
+ "windows-strings 0.4.2",
2463
+ ]
2464
+
2465
+ [[package]]
2466
+ name = "windows-result"
2467
+ version = "0.3.4"
2468
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2469
+ checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
2470
+ dependencies = [
2471
+ "windows-link 0.1.3",
2472
+ ]
2473
+
2474
+ [[package]]
2475
+ name = "windows-result"
2476
+ version = "0.4.1"
2477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2478
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2479
+ dependencies = [
2480
+ "windows-link 0.2.1",
2481
+ ]
2482
+
2483
+ [[package]]
2484
+ name = "windows-strings"
2485
+ version = "0.4.2"
2486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2487
+ checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
2488
+ dependencies = [
2489
+ "windows-link 0.1.3",
2490
+ ]
2491
+
2492
+ [[package]]
2493
+ name = "windows-strings"
2494
+ version = "0.5.1"
2495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2496
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2497
+ dependencies = [
2498
+ "windows-link 0.2.1",
2499
+ ]
2500
+
2501
+ [[package]]
2502
+ name = "windows-sys"
2503
+ version = "0.52.0"
2504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2505
+ checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2506
+ dependencies = [
2507
+ "windows-targets 0.52.6",
2508
+ ]
2509
+
2510
+ [[package]]
2511
+ name = "windows-sys"
2512
+ version = "0.59.0"
2513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2514
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2515
+ dependencies = [
2516
+ "windows-targets 0.52.6",
2517
+ ]
2518
+
2519
+ [[package]]
2520
+ name = "windows-sys"
2521
+ version = "0.60.2"
2522
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2523
+ checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
2524
+ dependencies = [
2525
+ "windows-targets 0.53.5",
2526
+ ]
2527
+
2528
+ [[package]]
2529
+ name = "windows-sys"
2530
+ version = "0.61.2"
2531
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2532
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2533
+ dependencies = [
2534
+ "windows-link 0.2.1",
2535
+ ]
2536
+
2537
+ [[package]]
2538
+ name = "windows-targets"
2539
+ version = "0.52.6"
2540
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2541
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2542
+ dependencies = [
2543
+ "windows_aarch64_gnullvm 0.52.6",
2544
+ "windows_aarch64_msvc 0.52.6",
2545
+ "windows_i686_gnu 0.52.6",
2546
+ "windows_i686_gnullvm 0.52.6",
2547
+ "windows_i686_msvc 0.52.6",
2548
+ "windows_x86_64_gnu 0.52.6",
2549
+ "windows_x86_64_gnullvm 0.52.6",
2550
+ "windows_x86_64_msvc 0.52.6",
2551
+ ]
2552
+
2553
+ [[package]]
2554
+ name = "windows-targets"
2555
+ version = "0.53.5"
2556
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2557
+ checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
2558
+ dependencies = [
2559
+ "windows-link 0.2.1",
2560
+ "windows_aarch64_gnullvm 0.53.1",
2561
+ "windows_aarch64_msvc 0.53.1",
2562
+ "windows_i686_gnu 0.53.1",
2563
+ "windows_i686_gnullvm 0.53.1",
2564
+ "windows_i686_msvc 0.53.1",
2565
+ "windows_x86_64_gnu 0.53.1",
2566
+ "windows_x86_64_gnullvm 0.53.1",
2567
+ "windows_x86_64_msvc 0.53.1",
2568
+ ]
2569
+
2570
+ [[package]]
2571
+ name = "windows_aarch64_gnullvm"
2572
+ version = "0.52.6"
2573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2574
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2575
+
2576
+ [[package]]
2577
+ name = "windows_aarch64_gnullvm"
2578
+ version = "0.53.1"
2579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2580
+ checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
2581
+
2582
+ [[package]]
2583
+ name = "windows_aarch64_msvc"
2584
+ version = "0.52.6"
2585
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2586
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2587
+
2588
+ [[package]]
2589
+ name = "windows_aarch64_msvc"
2590
+ version = "0.53.1"
2591
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2592
+ checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
2593
+
2594
+ [[package]]
2595
+ name = "windows_i686_gnu"
2596
+ version = "0.52.6"
2597
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2598
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2599
+
2600
+ [[package]]
2601
+ name = "windows_i686_gnu"
2602
+ version = "0.53.1"
2603
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2604
+ checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
2605
+
2606
+ [[package]]
2607
+ name = "windows_i686_gnullvm"
2608
+ version = "0.52.6"
2609
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2610
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2611
+
2612
+ [[package]]
2613
+ name = "windows_i686_gnullvm"
2614
+ version = "0.53.1"
2615
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2616
+ checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
2617
+
2618
+ [[package]]
2619
+ name = "windows_i686_msvc"
2620
+ version = "0.52.6"
2621
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2622
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2623
+
2624
+ [[package]]
2625
+ name = "windows_i686_msvc"
2626
+ version = "0.53.1"
2627
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2628
+ checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
2629
+
2630
+ [[package]]
2631
+ name = "windows_x86_64_gnu"
2632
+ version = "0.52.6"
2633
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2634
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2635
+
2636
+ [[package]]
2637
+ name = "windows_x86_64_gnu"
2638
+ version = "0.53.1"
2639
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2640
+ checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
2641
+
2642
+ [[package]]
2643
+ name = "windows_x86_64_gnullvm"
2644
+ version = "0.52.6"
2645
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2646
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2647
+
2648
+ [[package]]
2649
+ name = "windows_x86_64_gnullvm"
2650
+ version = "0.53.1"
2651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2652
+ checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
2653
+
2654
+ [[package]]
2655
+ name = "windows_x86_64_msvc"
2656
+ version = "0.52.6"
2657
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2658
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2659
+
2660
+ [[package]]
2661
+ name = "windows_x86_64_msvc"
2662
+ version = "0.53.1"
2663
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2664
+ checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
2665
+
2666
+ [[package]]
2667
+ name = "winnow"
2668
+ version = "0.7.13"
2669
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2670
+ checksum = "21a0236b59786fed61e2a80582dd500fe61f18b5dca67a4a067d0bc9039339cf"
2671
+
2672
+ [[package]]
2673
+ name = "wit-bindgen"
2674
+ version = "0.46.0"
2675
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2676
+ checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
2677
+
2678
+ [[package]]
2679
+ name = "writeable"
2680
+ version = "0.6.2"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
2683
+
2684
+ [[package]]
2685
+ name = "yoke"
2686
+ version = "0.8.1"
2687
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2688
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
2689
+ dependencies = [
2690
+ "stable_deref_trait",
2691
+ "yoke-derive",
2692
+ "zerofrom",
2693
+ ]
2694
+
2695
+ [[package]]
2696
+ name = "yoke-derive"
2697
+ version = "0.8.1"
2698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2699
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
2700
+ dependencies = [
2701
+ "proc-macro2",
2702
+ "quote",
2703
+ "syn",
2704
+ "synstructure",
2705
+ ]
2706
+
2707
+ [[package]]
2708
+ name = "zarzcli"
2709
+ version = "0.3.1-ALPHA"
2710
+ dependencies = [
2711
+ "anyhow",
2712
+ "async-trait",
2713
+ "bytes",
2714
+ "chrono",
2715
+ "clap",
2716
+ "crossterm",
2717
+ "dialoguer",
2718
+ "dirs",
2719
+ "eventsource-stream",
2720
+ "futures",
2721
+ "ignore",
2722
+ "quote",
2723
+ "regex",
2724
+ "reqwest",
2725
+ "rustyline",
2726
+ "serde",
2727
+ "serde_json",
2728
+ "similar",
2729
+ "syn",
2730
+ "tokio",
2731
+ "tokio-stream",
2732
+ "toml",
2733
+ "tree-sitter",
2734
+ "walkdir",
2735
+ ]
2736
+
2737
+ [[package]]
2738
+ name = "zerocopy"
2739
+ version = "0.8.27"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
2742
+ dependencies = [
2743
+ "zerocopy-derive",
2744
+ ]
2745
+
2746
+ [[package]]
2747
+ name = "zerocopy-derive"
2748
+ version = "0.8.27"
2749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2750
+ checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
2751
+ dependencies = [
2752
+ "proc-macro2",
2753
+ "quote",
2754
+ "syn",
2755
+ ]
2756
+
2757
+ [[package]]
2758
+ name = "zerofrom"
2759
+ version = "0.1.6"
2760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2761
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2762
+ dependencies = [
2763
+ "zerofrom-derive",
2764
+ ]
2765
+
2766
+ [[package]]
2767
+ name = "zerofrom-derive"
2768
+ version = "0.1.6"
2769
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2770
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2771
+ dependencies = [
2772
+ "proc-macro2",
2773
+ "quote",
2774
+ "syn",
2775
+ "synstructure",
2776
+ ]
2777
+
2778
+ [[package]]
2779
+ name = "zeroize"
2780
+ version = "1.8.2"
2781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2782
+ checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
2783
+
2784
+ [[package]]
2785
+ name = "zerotrie"
2786
+ version = "0.2.3"
2787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2788
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
2789
+ dependencies = [
2790
+ "displaydoc",
2791
+ "yoke",
2792
+ "zerofrom",
2793
+ ]
2794
+
2795
+ [[package]]
2796
+ name = "zerovec"
2797
+ version = "0.11.5"
2798
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2799
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
2800
+ dependencies = [
2801
+ "yoke",
2802
+ "zerofrom",
2803
+ "zerovec-derive",
2804
+ ]
2805
+
2806
+ [[package]]
2807
+ name = "zerovec-derive"
2808
+ version = "0.11.2"
2809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2810
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
2811
+ dependencies = [
2812
+ "proc-macro2",
2813
+ "quote",
2814
+ "syn",
2815
+ ]