barca 0.0.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
barca-0.0.2/Cargo.lock ADDED
@@ -0,0 +1,3952 @@
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 = "aead"
13
+ version = "0.5.2"
14
+ source = "registry+https://github.com/rust-lang/crates.io-index"
15
+ checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
16
+ dependencies = [
17
+ "crypto-common",
18
+ "generic-array",
19
+ ]
20
+
21
+ [[package]]
22
+ name = "aegis"
23
+ version = "0.9.7"
24
+ source = "registry+https://github.com/rust-lang/crates.io-index"
25
+ checksum = "8ae1572243695de9c6c8d16c7889899abac907d14c148f1939d837122bbeca79"
26
+ dependencies = [
27
+ "cc",
28
+ "softaes",
29
+ ]
30
+
31
+ [[package]]
32
+ name = "aes"
33
+ version = "0.8.4"
34
+ source = "registry+https://github.com/rust-lang/crates.io-index"
35
+ checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
36
+ dependencies = [
37
+ "cfg-if",
38
+ "cipher",
39
+ "cpufeatures",
40
+ ]
41
+
42
+ [[package]]
43
+ name = "aes-gcm"
44
+ version = "0.10.3"
45
+ source = "registry+https://github.com/rust-lang/crates.io-index"
46
+ checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
47
+ dependencies = [
48
+ "aead",
49
+ "aes",
50
+ "cipher",
51
+ "ctr",
52
+ "ghash",
53
+ "subtle",
54
+ ]
55
+
56
+ [[package]]
57
+ name = "aho-corasick"
58
+ version = "1.1.4"
59
+ source = "registry+https://github.com/rust-lang/crates.io-index"
60
+ checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
61
+ dependencies = [
62
+ "memchr",
63
+ ]
64
+
65
+ [[package]]
66
+ name = "android_system_properties"
67
+ version = "0.1.5"
68
+ source = "registry+https://github.com/rust-lang/crates.io-index"
69
+ checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
70
+ dependencies = [
71
+ "libc",
72
+ ]
73
+
74
+ [[package]]
75
+ name = "anstream"
76
+ version = "0.6.21"
77
+ source = "registry+https://github.com/rust-lang/crates.io-index"
78
+ checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
79
+ dependencies = [
80
+ "anstyle",
81
+ "anstyle-parse",
82
+ "anstyle-query",
83
+ "anstyle-wincon",
84
+ "colorchoice",
85
+ "is_terminal_polyfill",
86
+ "utf8parse",
87
+ ]
88
+
89
+ [[package]]
90
+ name = "anstyle"
91
+ version = "1.0.13"
92
+ source = "registry+https://github.com/rust-lang/crates.io-index"
93
+ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
94
+
95
+ [[package]]
96
+ name = "anstyle-parse"
97
+ version = "0.2.7"
98
+ source = "registry+https://github.com/rust-lang/crates.io-index"
99
+ checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
100
+ dependencies = [
101
+ "utf8parse",
102
+ ]
103
+
104
+ [[package]]
105
+ name = "anstyle-query"
106
+ version = "1.1.5"
107
+ source = "registry+https://github.com/rust-lang/crates.io-index"
108
+ checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
109
+ dependencies = [
110
+ "windows-sys 0.61.2",
111
+ ]
112
+
113
+ [[package]]
114
+ name = "anstyle-wincon"
115
+ version = "3.0.11"
116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
117
+ checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
118
+ dependencies = [
119
+ "anstyle",
120
+ "once_cell_polyfill",
121
+ "windows-sys 0.61.2",
122
+ ]
123
+
124
+ [[package]]
125
+ name = "antithesis_sdk"
126
+ version = "0.2.8"
127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
128
+ checksum = "18dbd97a5b6c21cc9176891cf715f7f0c273caf3959897f43b9bd1231939e675"
129
+ dependencies = [
130
+ "libc",
131
+ "libloading",
132
+ "linkme",
133
+ "once_cell",
134
+ "rand 0.8.5",
135
+ "rustc_version_runtime",
136
+ "serde",
137
+ "serde_json",
138
+ ]
139
+
140
+ [[package]]
141
+ name = "anyhow"
142
+ version = "1.0.102"
143
+ source = "registry+https://github.com/rust-lang/crates.io-index"
144
+ checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
145
+
146
+ [[package]]
147
+ name = "arbitrary"
148
+ version = "1.4.2"
149
+ source = "registry+https://github.com/rust-lang/crates.io-index"
150
+ checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
151
+ dependencies = [
152
+ "derive_arbitrary",
153
+ ]
154
+
155
+ [[package]]
156
+ name = "arc-swap"
157
+ version = "1.8.2"
158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
159
+ checksum = "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5"
160
+ dependencies = [
161
+ "rustversion",
162
+ ]
163
+
164
+ [[package]]
165
+ name = "assert-json-diff"
166
+ version = "2.0.2"
167
+ source = "registry+https://github.com/rust-lang/crates.io-index"
168
+ checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
169
+ dependencies = [
170
+ "serde",
171
+ "serde_json",
172
+ ]
173
+
174
+ [[package]]
175
+ name = "assert_cmd"
176
+ version = "2.1.2"
177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
178
+ checksum = "9c5bcfa8749ac45dd12cb11055aeeb6b27a3895560d60d71e3c23bf979e60514"
179
+ dependencies = [
180
+ "anstyle",
181
+ "bstr",
182
+ "libc",
183
+ "predicates",
184
+ "predicates-core",
185
+ "predicates-tree",
186
+ "wait-timeout",
187
+ ]
188
+
189
+ [[package]]
190
+ name = "assoc"
191
+ version = "0.1.3"
192
+ source = "registry+https://github.com/rust-lang/crates.io-index"
193
+ checksum = "bfdc70193dadb9d7287fa4b633f15f90c876915b31f6af17da307fc59c9859a8"
194
+
195
+ [[package]]
196
+ name = "async-stream"
197
+ version = "0.3.6"
198
+ source = "registry+https://github.com/rust-lang/crates.io-index"
199
+ checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
200
+ dependencies = [
201
+ "async-stream-impl",
202
+ "futures-core",
203
+ "pin-project-lite",
204
+ ]
205
+
206
+ [[package]]
207
+ name = "async-stream-impl"
208
+ version = "0.3.6"
209
+ source = "registry+https://github.com/rust-lang/crates.io-index"
210
+ checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
211
+ dependencies = [
212
+ "proc-macro2",
213
+ "quote",
214
+ "syn",
215
+ ]
216
+
217
+ [[package]]
218
+ name = "async-trait"
219
+ version = "0.1.89"
220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
221
+ checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
222
+ dependencies = [
223
+ "proc-macro2",
224
+ "quote",
225
+ "syn",
226
+ ]
227
+
228
+ [[package]]
229
+ name = "atomic-waker"
230
+ version = "1.1.2"
231
+ source = "registry+https://github.com/rust-lang/crates.io-index"
232
+ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
233
+
234
+ [[package]]
235
+ name = "auto-future"
236
+ version = "1.0.0"
237
+ source = "registry+https://github.com/rust-lang/crates.io-index"
238
+ checksum = "3c1e7e457ea78e524f48639f551fd79703ac3f2237f5ecccdf4708f8a75ad373"
239
+
240
+ [[package]]
241
+ name = "autocfg"
242
+ version = "1.5.0"
243
+ source = "registry+https://github.com/rust-lang/crates.io-index"
244
+ checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
245
+
246
+ [[package]]
247
+ name = "axum"
248
+ version = "0.7.9"
249
+ source = "registry+https://github.com/rust-lang/crates.io-index"
250
+ checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
251
+ dependencies = [
252
+ "async-trait",
253
+ "axum-core 0.4.5",
254
+ "bytes",
255
+ "futures-util",
256
+ "http 1.4.0",
257
+ "http-body",
258
+ "http-body-util",
259
+ "hyper",
260
+ "hyper-util",
261
+ "itoa",
262
+ "matchit 0.7.3",
263
+ "memchr",
264
+ "mime",
265
+ "percent-encoding",
266
+ "pin-project-lite",
267
+ "rustversion",
268
+ "serde",
269
+ "serde_json",
270
+ "serde_path_to_error",
271
+ "serde_urlencoded",
272
+ "sync_wrapper",
273
+ "tokio",
274
+ "tower",
275
+ "tower-layer",
276
+ "tower-service",
277
+ "tracing",
278
+ ]
279
+
280
+ [[package]]
281
+ name = "axum"
282
+ version = "0.8.8"
283
+ source = "registry+https://github.com/rust-lang/crates.io-index"
284
+ checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
285
+ dependencies = [
286
+ "axum-core 0.5.6",
287
+ "axum-macros",
288
+ "bytes",
289
+ "form_urlencoded",
290
+ "futures-util",
291
+ "http 1.4.0",
292
+ "http-body",
293
+ "http-body-util",
294
+ "hyper",
295
+ "hyper-util",
296
+ "itoa",
297
+ "matchit 0.8.4",
298
+ "memchr",
299
+ "mime",
300
+ "percent-encoding",
301
+ "pin-project-lite",
302
+ "serde_core",
303
+ "serde_json",
304
+ "serde_path_to_error",
305
+ "serde_urlencoded",
306
+ "sync_wrapper",
307
+ "tokio",
308
+ "tower",
309
+ "tower-layer",
310
+ "tower-service",
311
+ "tracing",
312
+ ]
313
+
314
+ [[package]]
315
+ name = "axum-core"
316
+ version = "0.4.5"
317
+ source = "registry+https://github.com/rust-lang/crates.io-index"
318
+ checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
319
+ dependencies = [
320
+ "async-trait",
321
+ "bytes",
322
+ "futures-util",
323
+ "http 1.4.0",
324
+ "http-body",
325
+ "http-body-util",
326
+ "mime",
327
+ "pin-project-lite",
328
+ "rustversion",
329
+ "sync_wrapper",
330
+ "tower-layer",
331
+ "tower-service",
332
+ "tracing",
333
+ ]
334
+
335
+ [[package]]
336
+ name = "axum-core"
337
+ version = "0.5.6"
338
+ source = "registry+https://github.com/rust-lang/crates.io-index"
339
+ checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
340
+ dependencies = [
341
+ "bytes",
342
+ "futures-core",
343
+ "http 1.4.0",
344
+ "http-body",
345
+ "http-body-util",
346
+ "mime",
347
+ "pin-project-lite",
348
+ "sync_wrapper",
349
+ "tower-layer",
350
+ "tower-service",
351
+ "tracing",
352
+ ]
353
+
354
+ [[package]]
355
+ name = "axum-macros"
356
+ version = "0.5.0"
357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
358
+ checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
359
+ dependencies = [
360
+ "proc-macro2",
361
+ "quote",
362
+ "syn",
363
+ ]
364
+
365
+ [[package]]
366
+ name = "axum-test"
367
+ version = "16.4.1"
368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
369
+ checksum = "63e3a443d2608936a02a222da7b746eb412fede7225b3030b64fe9be99eab8dc"
370
+ dependencies = [
371
+ "anyhow",
372
+ "assert-json-diff",
373
+ "auto-future",
374
+ "axum 0.7.9",
375
+ "bytes",
376
+ "bytesize",
377
+ "cookie",
378
+ "http 1.4.0",
379
+ "http-body-util",
380
+ "hyper",
381
+ "hyper-util",
382
+ "mime",
383
+ "pretty_assertions",
384
+ "reserve-port",
385
+ "rust-multipart-rfc7578_2",
386
+ "serde",
387
+ "serde_json",
388
+ "serde_urlencoded",
389
+ "smallvec",
390
+ "tokio",
391
+ "tower",
392
+ "url",
393
+ ]
394
+
395
+ [[package]]
396
+ name = "barca-cli"
397
+ version = "0.0.2"
398
+ dependencies = [
399
+ "anyhow",
400
+ "assert_cmd",
401
+ "axum 0.8.8",
402
+ "barca-core",
403
+ "barca-server",
404
+ "clap",
405
+ "predicates",
406
+ "serde_json",
407
+ "serial_test",
408
+ "tempfile",
409
+ "tokio",
410
+ "tracing",
411
+ "tracing-subscriber",
412
+ ]
413
+
414
+ [[package]]
415
+ name = "barca-core"
416
+ version = "0.0.2"
417
+ dependencies = [
418
+ "anyhow",
419
+ "hex",
420
+ "serde",
421
+ "serde_json",
422
+ "sha2",
423
+ "utoipa",
424
+ ]
425
+
426
+ [[package]]
427
+ name = "barca-py"
428
+ version = "0.0.2"
429
+ dependencies = [
430
+ "pyo3",
431
+ "serde_json",
432
+ ]
433
+
434
+ [[package]]
435
+ name = "barca-server"
436
+ version = "0.0.2"
437
+ dependencies = [
438
+ "anyhow",
439
+ "async-stream",
440
+ "async-trait",
441
+ "axum 0.8.8",
442
+ "axum-test",
443
+ "barca-core",
444
+ "clap",
445
+ "comfy-table",
446
+ "datastar",
447
+ "serde",
448
+ "serde_json",
449
+ "tempfile",
450
+ "time",
451
+ "tokio",
452
+ "toml",
453
+ "tower",
454
+ "tracing",
455
+ "tracing-subscriber",
456
+ "turso",
457
+ "utoipa",
458
+ "utoipa-axum",
459
+ "utoipa-swagger-ui",
460
+ ]
461
+
462
+ [[package]]
463
+ name = "base64"
464
+ version = "0.22.1"
465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
466
+ checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
467
+
468
+ [[package]]
469
+ name = "bigdecimal"
470
+ version = "0.4.10"
471
+ source = "registry+https://github.com/rust-lang/crates.io-index"
472
+ checksum = "4d6867f1565b3aad85681f1015055b087fcfd840d6aeee6eee7f2da317603695"
473
+ dependencies = [
474
+ "autocfg",
475
+ "libm",
476
+ "num-bigint",
477
+ "num-integer",
478
+ "num-traits",
479
+ ]
480
+
481
+ [[package]]
482
+ name = "bindgen"
483
+ version = "0.69.5"
484
+ source = "registry+https://github.com/rust-lang/crates.io-index"
485
+ checksum = "271383c67ccabffb7381723dea0672a673f292304fcb45c01cc648c7a8d58088"
486
+ dependencies = [
487
+ "bitflags",
488
+ "cexpr",
489
+ "clang-sys",
490
+ "itertools 0.12.1",
491
+ "lazy_static",
492
+ "lazycell",
493
+ "log",
494
+ "prettyplease",
495
+ "proc-macro2",
496
+ "quote",
497
+ "regex",
498
+ "rustc-hash 1.1.0",
499
+ "shlex",
500
+ "syn",
501
+ "which",
502
+ ]
503
+
504
+ [[package]]
505
+ name = "bitflags"
506
+ version = "2.11.0"
507
+ source = "registry+https://github.com/rust-lang/crates.io-index"
508
+ checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
509
+
510
+ [[package]]
511
+ name = "bitvec"
512
+ version = "1.0.1"
513
+ source = "registry+https://github.com/rust-lang/crates.io-index"
514
+ checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
515
+ dependencies = [
516
+ "funty",
517
+ "radium",
518
+ "tap",
519
+ "wyz",
520
+ ]
521
+
522
+ [[package]]
523
+ name = "block-buffer"
524
+ version = "0.10.4"
525
+ source = "registry+https://github.com/rust-lang/crates.io-index"
526
+ checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
527
+ dependencies = [
528
+ "generic-array",
529
+ ]
530
+
531
+ [[package]]
532
+ name = "branches"
533
+ version = "0.4.4"
534
+ source = "registry+https://github.com/rust-lang/crates.io-index"
535
+ checksum = "e426eb5cc1900033930ec955317b302e68f19f326cc7bb0c8a86865a826cdf0c"
536
+ dependencies = [
537
+ "rustc_version",
538
+ ]
539
+
540
+ [[package]]
541
+ name = "bstr"
542
+ version = "1.12.1"
543
+ source = "registry+https://github.com/rust-lang/crates.io-index"
544
+ checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
545
+ dependencies = [
546
+ "memchr",
547
+ "regex-automata",
548
+ "serde",
549
+ ]
550
+
551
+ [[package]]
552
+ name = "built"
553
+ version = "0.7.7"
554
+ source = "registry+https://github.com/rust-lang/crates.io-index"
555
+ checksum = "56ed6191a7e78c36abdb16ab65341eefd73d64d303fffccdbb00d51e4205967b"
556
+ dependencies = [
557
+ "chrono",
558
+ ]
559
+
560
+ [[package]]
561
+ name = "bumpalo"
562
+ version = "3.20.2"
563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
564
+ checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
565
+
566
+ [[package]]
567
+ name = "bytemuck"
568
+ version = "1.25.0"
569
+ source = "registry+https://github.com/rust-lang/crates.io-index"
570
+ checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
571
+ dependencies = [
572
+ "bytemuck_derive",
573
+ ]
574
+
575
+ [[package]]
576
+ name = "bytemuck_derive"
577
+ version = "1.10.2"
578
+ source = "registry+https://github.com/rust-lang/crates.io-index"
579
+ checksum = "f9abbd1bc6865053c427f7198e6af43bfdedc55ab791faed4fbd361d789575ff"
580
+ dependencies = [
581
+ "proc-macro2",
582
+ "quote",
583
+ "syn",
584
+ ]
585
+
586
+ [[package]]
587
+ name = "byteorder"
588
+ version = "1.5.0"
589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
590
+ checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
591
+
592
+ [[package]]
593
+ name = "bytes"
594
+ version = "1.11.1"
595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
596
+ checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
597
+
598
+ [[package]]
599
+ name = "bytesize"
600
+ version = "1.3.3"
601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
602
+ checksum = "2e93abca9e28e0a1b9877922aacb20576e05d4679ffa78c3d6dc22a26a216659"
603
+
604
+ [[package]]
605
+ name = "cc"
606
+ version = "1.2.56"
607
+ source = "registry+https://github.com/rust-lang/crates.io-index"
608
+ checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
609
+ dependencies = [
610
+ "find-msvc-tools",
611
+ "shlex",
612
+ ]
613
+
614
+ [[package]]
615
+ name = "cexpr"
616
+ version = "0.6.0"
617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
618
+ checksum = "6fac387a98bb7c37292057cffc56d62ecb629900026402633ae9160df93a8766"
619
+ dependencies = [
620
+ "nom",
621
+ ]
622
+
623
+ [[package]]
624
+ name = "cfg-if"
625
+ version = "1.0.4"
626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
627
+ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
628
+
629
+ [[package]]
630
+ name = "cfg_block"
631
+ version = "0.1.1"
632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
633
+ checksum = "18758054972164c3264f7c8386f5fc6da6114cb46b619fd365d4e3b2dc3ae487"
634
+
635
+ [[package]]
636
+ name = "chrono"
637
+ version = "0.4.44"
638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
639
+ checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
640
+ dependencies = [
641
+ "iana-time-zone",
642
+ "js-sys",
643
+ "num-traits",
644
+ "wasm-bindgen",
645
+ "windows-link",
646
+ ]
647
+
648
+ [[package]]
649
+ name = "cipher"
650
+ version = "0.4.4"
651
+ source = "registry+https://github.com/rust-lang/crates.io-index"
652
+ checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
653
+ dependencies = [
654
+ "crypto-common",
655
+ "inout",
656
+ ]
657
+
658
+ [[package]]
659
+ name = "clang-sys"
660
+ version = "1.8.1"
661
+ source = "registry+https://github.com/rust-lang/crates.io-index"
662
+ checksum = "0b023947811758c97c59bf9d1c188fd619ad4718dcaa767947df1cadb14f39f4"
663
+ dependencies = [
664
+ "glob",
665
+ "libc",
666
+ "libloading",
667
+ ]
668
+
669
+ [[package]]
670
+ name = "clap"
671
+ version = "4.5.60"
672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
673
+ checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
674
+ dependencies = [
675
+ "clap_builder",
676
+ "clap_derive",
677
+ ]
678
+
679
+ [[package]]
680
+ name = "clap_builder"
681
+ version = "4.5.60"
682
+ source = "registry+https://github.com/rust-lang/crates.io-index"
683
+ checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
684
+ dependencies = [
685
+ "anstream",
686
+ "anstyle",
687
+ "clap_lex",
688
+ "strsim",
689
+ ]
690
+
691
+ [[package]]
692
+ name = "clap_derive"
693
+ version = "4.5.55"
694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
695
+ checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
696
+ dependencies = [
697
+ "heck",
698
+ "proc-macro2",
699
+ "quote",
700
+ "syn",
701
+ ]
702
+
703
+ [[package]]
704
+ name = "clap_lex"
705
+ version = "1.0.0"
706
+ source = "registry+https://github.com/rust-lang/crates.io-index"
707
+ checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
708
+
709
+ [[package]]
710
+ name = "colorchoice"
711
+ version = "1.0.4"
712
+ source = "registry+https://github.com/rust-lang/crates.io-index"
713
+ checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
714
+
715
+ [[package]]
716
+ name = "comfy-table"
717
+ version = "7.2.2"
718
+ source = "registry+https://github.com/rust-lang/crates.io-index"
719
+ checksum = "958c5d6ecf1f214b4c2bbbbf6ab9523a864bd136dcf71a7e8904799acfe1ad47"
720
+ dependencies = [
721
+ "crossterm",
722
+ "unicode-segmentation",
723
+ "unicode-width 0.2.2",
724
+ ]
725
+
726
+ [[package]]
727
+ name = "concurrent-queue"
728
+ version = "2.5.0"
729
+ source = "registry+https://github.com/rust-lang/crates.io-index"
730
+ checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
731
+ dependencies = [
732
+ "crossbeam-utils",
733
+ ]
734
+
735
+ [[package]]
736
+ name = "cookie"
737
+ version = "0.18.1"
738
+ source = "registry+https://github.com/rust-lang/crates.io-index"
739
+ checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747"
740
+ dependencies = [
741
+ "time",
742
+ "version_check",
743
+ ]
744
+
745
+ [[package]]
746
+ name = "core-foundation-sys"
747
+ version = "0.8.7"
748
+ source = "registry+https://github.com/rust-lang/crates.io-index"
749
+ checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
750
+
751
+ [[package]]
752
+ name = "cpufeatures"
753
+ version = "0.2.17"
754
+ source = "registry+https://github.com/rust-lang/crates.io-index"
755
+ checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
756
+ dependencies = [
757
+ "libc",
758
+ ]
759
+
760
+ [[package]]
761
+ name = "crc32c"
762
+ version = "0.6.8"
763
+ source = "registry+https://github.com/rust-lang/crates.io-index"
764
+ checksum = "3a47af21622d091a8f0fb295b88bc886ac74efcc613efc19f5d0b21de5c89e47"
765
+ dependencies = [
766
+ "rustc_version",
767
+ ]
768
+
769
+ [[package]]
770
+ name = "crc32fast"
771
+ version = "1.5.0"
772
+ source = "registry+https://github.com/rust-lang/crates.io-index"
773
+ checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
774
+ dependencies = [
775
+ "cfg-if",
776
+ ]
777
+
778
+ [[package]]
779
+ name = "crossbeam-channel"
780
+ version = "0.5.15"
781
+ source = "registry+https://github.com/rust-lang/crates.io-index"
782
+ checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
783
+ dependencies = [
784
+ "crossbeam-utils",
785
+ ]
786
+
787
+ [[package]]
788
+ name = "crossbeam-epoch"
789
+ version = "0.9.18"
790
+ source = "registry+https://github.com/rust-lang/crates.io-index"
791
+ checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
792
+ dependencies = [
793
+ "crossbeam-utils",
794
+ ]
795
+
796
+ [[package]]
797
+ name = "crossbeam-skiplist"
798
+ version = "0.1.3"
799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
800
+ checksum = "df29de440c58ca2cc6e587ec3d22347551a32435fbde9d2bff64e78a9ffa151b"
801
+ dependencies = [
802
+ "crossbeam-epoch",
803
+ "crossbeam-utils",
804
+ ]
805
+
806
+ [[package]]
807
+ name = "crossbeam-utils"
808
+ version = "0.8.21"
809
+ source = "registry+https://github.com/rust-lang/crates.io-index"
810
+ checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
811
+
812
+ [[package]]
813
+ name = "crossterm"
814
+ version = "0.29.0"
815
+ source = "registry+https://github.com/rust-lang/crates.io-index"
816
+ checksum = "d8b9f2e4c67f833b660cdb0a3523065869fb35570177239812ed4c905aeff87b"
817
+ dependencies = [
818
+ "bitflags",
819
+ "crossterm_winapi",
820
+ "document-features",
821
+ "parking_lot",
822
+ "rustix 1.1.4",
823
+ "winapi",
824
+ ]
825
+
826
+ [[package]]
827
+ name = "crossterm_winapi"
828
+ version = "0.9.1"
829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
830
+ checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
831
+ dependencies = [
832
+ "winapi",
833
+ ]
834
+
835
+ [[package]]
836
+ name = "crypto-common"
837
+ version = "0.1.7"
838
+ source = "registry+https://github.com/rust-lang/crates.io-index"
839
+ checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
840
+ dependencies = [
841
+ "generic-array",
842
+ "rand_core 0.6.4",
843
+ "typenum",
844
+ ]
845
+
846
+ [[package]]
847
+ name = "ctr"
848
+ version = "0.9.2"
849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
850
+ checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
851
+ dependencies = [
852
+ "cipher",
853
+ ]
854
+
855
+ [[package]]
856
+ name = "datastar"
857
+ version = "0.3.1"
858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
859
+ checksum = "0805c542838bb4c0769e26e1cdf70ff913e43e146b7e7563241fe95f32606643"
860
+ dependencies = [
861
+ "axum 0.8.8",
862
+ "chrono",
863
+ "serde",
864
+ "serde_json",
865
+ ]
866
+
867
+ [[package]]
868
+ name = "deranged"
869
+ version = "0.3.11"
870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
871
+ checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
872
+ dependencies = [
873
+ "powerfmt",
874
+ ]
875
+
876
+ [[package]]
877
+ name = "derive_arbitrary"
878
+ version = "1.4.2"
879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
880
+ checksum = "1e567bd82dcff979e4b03460c307b3cdc9e96fde3d73bed1496d2bc75d9dd62a"
881
+ dependencies = [
882
+ "proc-macro2",
883
+ "quote",
884
+ "syn",
885
+ ]
886
+
887
+ [[package]]
888
+ name = "diff"
889
+ version = "0.1.13"
890
+ source = "registry+https://github.com/rust-lang/crates.io-index"
891
+ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
892
+
893
+ [[package]]
894
+ name = "difflib"
895
+ version = "0.4.0"
896
+ source = "registry+https://github.com/rust-lang/crates.io-index"
897
+ checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
898
+
899
+ [[package]]
900
+ name = "digest"
901
+ version = "0.10.7"
902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
903
+ checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
904
+ dependencies = [
905
+ "block-buffer",
906
+ "crypto-common",
907
+ ]
908
+
909
+ [[package]]
910
+ name = "displaydoc"
911
+ version = "0.2.5"
912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
913
+ checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
914
+ dependencies = [
915
+ "proc-macro2",
916
+ "quote",
917
+ "syn",
918
+ ]
919
+
920
+ [[package]]
921
+ name = "document-features"
922
+ version = "0.2.12"
923
+ source = "registry+https://github.com/rust-lang/crates.io-index"
924
+ checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
925
+ dependencies = [
926
+ "litrs",
927
+ ]
928
+
929
+ [[package]]
930
+ name = "either"
931
+ version = "1.15.0"
932
+ source = "registry+https://github.com/rust-lang/crates.io-index"
933
+ checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
934
+
935
+ [[package]]
936
+ name = "env_filter"
937
+ version = "1.0.0"
938
+ source = "registry+https://github.com/rust-lang/crates.io-index"
939
+ checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
940
+ dependencies = [
941
+ "log",
942
+ ]
943
+
944
+ [[package]]
945
+ name = "env_logger"
946
+ version = "0.11.9"
947
+ source = "registry+https://github.com/rust-lang/crates.io-index"
948
+ checksum = "b2daee4ea451f429a58296525ddf28b45a3b64f1acf6587e2067437bb11e218d"
949
+ dependencies = [
950
+ "env_filter",
951
+ "log",
952
+ ]
953
+
954
+ [[package]]
955
+ name = "equivalent"
956
+ version = "1.0.2"
957
+ source = "registry+https://github.com/rust-lang/crates.io-index"
958
+ checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
959
+
960
+ [[package]]
961
+ name = "errno"
962
+ version = "0.3.14"
963
+ source = "registry+https://github.com/rust-lang/crates.io-index"
964
+ checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
965
+ dependencies = [
966
+ "libc",
967
+ "windows-sys 0.61.2",
968
+ ]
969
+
970
+ [[package]]
971
+ name = "fallible-iterator"
972
+ version = "0.3.0"
973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
974
+ checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
975
+
976
+ [[package]]
977
+ name = "fastbloom"
978
+ version = "0.14.1"
979
+ source = "registry+https://github.com/rust-lang/crates.io-index"
980
+ checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
981
+ dependencies = [
982
+ "getrandom 0.3.4",
983
+ "libm",
984
+ "rand 0.9.2",
985
+ "siphasher",
986
+ ]
987
+
988
+ [[package]]
989
+ name = "fastrand"
990
+ version = "2.3.0"
991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
992
+ checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
993
+
994
+ [[package]]
995
+ name = "find-msvc-tools"
996
+ version = "0.1.9"
997
+ source = "registry+https://github.com/rust-lang/crates.io-index"
998
+ checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
999
+
1000
+ [[package]]
1001
+ name = "flate2"
1002
+ version = "1.1.9"
1003
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1004
+ checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
1005
+ dependencies = [
1006
+ "miniz_oxide",
1007
+ "zlib-rs",
1008
+ ]
1009
+
1010
+ [[package]]
1011
+ name = "float-cmp"
1012
+ version = "0.10.0"
1013
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1014
+ checksum = "b09cf3155332e944990140d967ff5eceb70df778b34f77d8075db46e4704e6d8"
1015
+ dependencies = [
1016
+ "num-traits",
1017
+ ]
1018
+
1019
+ [[package]]
1020
+ name = "fnv"
1021
+ version = "1.0.7"
1022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1023
+ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1024
+
1025
+ [[package]]
1026
+ name = "foldhash"
1027
+ version = "0.1.5"
1028
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1029
+ checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
1030
+
1031
+ [[package]]
1032
+ name = "form_urlencoded"
1033
+ version = "1.2.2"
1034
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1035
+ checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1036
+ dependencies = [
1037
+ "percent-encoding",
1038
+ ]
1039
+
1040
+ [[package]]
1041
+ name = "funty"
1042
+ version = "2.0.0"
1043
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1044
+ checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
1045
+
1046
+ [[package]]
1047
+ name = "futures-channel"
1048
+ version = "0.3.32"
1049
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1050
+ checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
1051
+ dependencies = [
1052
+ "futures-core",
1053
+ ]
1054
+
1055
+ [[package]]
1056
+ name = "futures-core"
1057
+ version = "0.3.32"
1058
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1059
+ checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
1060
+
1061
+ [[package]]
1062
+ name = "futures-executor"
1063
+ version = "0.3.32"
1064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1065
+ checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
1066
+ dependencies = [
1067
+ "futures-core",
1068
+ "futures-task",
1069
+ "futures-util",
1070
+ ]
1071
+
1072
+ [[package]]
1073
+ name = "futures-io"
1074
+ version = "0.3.32"
1075
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1076
+ checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
1077
+
1078
+ [[package]]
1079
+ name = "futures-task"
1080
+ version = "0.3.32"
1081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1082
+ checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
1083
+
1084
+ [[package]]
1085
+ name = "futures-util"
1086
+ version = "0.3.32"
1087
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1088
+ checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
1089
+ dependencies = [
1090
+ "futures-core",
1091
+ "futures-io",
1092
+ "futures-task",
1093
+ "memchr",
1094
+ "pin-project-lite",
1095
+ "slab",
1096
+ ]
1097
+
1098
+ [[package]]
1099
+ name = "genawaiter"
1100
+ version = "0.99.1"
1101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1102
+ checksum = "c86bd0361bcbde39b13475e6e36cb24c329964aa2611be285289d1e4b751c1a0"
1103
+ dependencies = [
1104
+ "genawaiter-macro",
1105
+ ]
1106
+
1107
+ [[package]]
1108
+ name = "genawaiter-macro"
1109
+ version = "0.99.1"
1110
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1111
+ checksum = "0b32dfe1fdfc0bbde1f22a5da25355514b5e450c33a6af6770884c8750aedfbc"
1112
+
1113
+ [[package]]
1114
+ name = "generator"
1115
+ version = "0.8.8"
1116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1117
+ checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
1118
+ dependencies = [
1119
+ "cc",
1120
+ "cfg-if",
1121
+ "libc",
1122
+ "log",
1123
+ "rustversion",
1124
+ "windows-link",
1125
+ "windows-result",
1126
+ ]
1127
+
1128
+ [[package]]
1129
+ name = "generic-array"
1130
+ version = "0.14.7"
1131
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1132
+ checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
1133
+ dependencies = [
1134
+ "typenum",
1135
+ "version_check",
1136
+ ]
1137
+
1138
+ [[package]]
1139
+ name = "getrandom"
1140
+ version = "0.2.17"
1141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1142
+ checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
1143
+ dependencies = [
1144
+ "cfg-if",
1145
+ "libc",
1146
+ "wasi",
1147
+ ]
1148
+
1149
+ [[package]]
1150
+ name = "getrandom"
1151
+ version = "0.3.4"
1152
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1153
+ checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1154
+ dependencies = [
1155
+ "cfg-if",
1156
+ "libc",
1157
+ "r-efi 5.3.0",
1158
+ "wasip2",
1159
+ ]
1160
+
1161
+ [[package]]
1162
+ name = "getrandom"
1163
+ version = "0.4.2"
1164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1165
+ checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
1166
+ dependencies = [
1167
+ "cfg-if",
1168
+ "libc",
1169
+ "r-efi 6.0.0",
1170
+ "wasip2",
1171
+ "wasip3",
1172
+ ]
1173
+
1174
+ [[package]]
1175
+ name = "ghash"
1176
+ version = "0.5.1"
1177
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1178
+ checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
1179
+ dependencies = [
1180
+ "opaque-debug",
1181
+ "polyval",
1182
+ ]
1183
+
1184
+ [[package]]
1185
+ name = "glob"
1186
+ version = "0.3.3"
1187
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1188
+ checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
1189
+
1190
+ [[package]]
1191
+ name = "hashbrown"
1192
+ version = "0.15.5"
1193
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1194
+ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1195
+ dependencies = [
1196
+ "foldhash",
1197
+ ]
1198
+
1199
+ [[package]]
1200
+ name = "hashbrown"
1201
+ version = "0.16.1"
1202
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1203
+ checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
1204
+
1205
+ [[package]]
1206
+ name = "heck"
1207
+ version = "0.5.0"
1208
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1209
+ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1210
+
1211
+ [[package]]
1212
+ name = "hermit-abi"
1213
+ version = "0.5.2"
1214
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1215
+ checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1216
+
1217
+ [[package]]
1218
+ name = "hex"
1219
+ version = "0.4.3"
1220
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1221
+ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1222
+
1223
+ [[package]]
1224
+ name = "home"
1225
+ version = "0.5.12"
1226
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1227
+ checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1228
+ dependencies = [
1229
+ "windows-sys 0.61.2",
1230
+ ]
1231
+
1232
+ [[package]]
1233
+ name = "http"
1234
+ version = "0.2.12"
1235
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1236
+ checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1237
+ dependencies = [
1238
+ "bytes",
1239
+ "fnv",
1240
+ "itoa",
1241
+ ]
1242
+
1243
+ [[package]]
1244
+ name = "http"
1245
+ version = "1.4.0"
1246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1247
+ checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
1248
+ dependencies = [
1249
+ "bytes",
1250
+ "itoa",
1251
+ ]
1252
+
1253
+ [[package]]
1254
+ name = "http-body"
1255
+ version = "1.0.1"
1256
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1257
+ checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1258
+ dependencies = [
1259
+ "bytes",
1260
+ "http 1.4.0",
1261
+ ]
1262
+
1263
+ [[package]]
1264
+ name = "http-body-util"
1265
+ version = "0.1.3"
1266
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1267
+ checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1268
+ dependencies = [
1269
+ "bytes",
1270
+ "futures-core",
1271
+ "http 1.4.0",
1272
+ "http-body",
1273
+ "pin-project-lite",
1274
+ ]
1275
+
1276
+ [[package]]
1277
+ name = "httparse"
1278
+ version = "1.10.1"
1279
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1280
+ checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1281
+
1282
+ [[package]]
1283
+ name = "httpdate"
1284
+ version = "1.0.3"
1285
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1286
+ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1287
+
1288
+ [[package]]
1289
+ name = "hyper"
1290
+ version = "1.8.1"
1291
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1292
+ checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
1293
+ dependencies = [
1294
+ "atomic-waker",
1295
+ "bytes",
1296
+ "futures-channel",
1297
+ "futures-core",
1298
+ "http 1.4.0",
1299
+ "http-body",
1300
+ "httparse",
1301
+ "httpdate",
1302
+ "itoa",
1303
+ "pin-project-lite",
1304
+ "pin-utils",
1305
+ "smallvec",
1306
+ "tokio",
1307
+ "want",
1308
+ ]
1309
+
1310
+ [[package]]
1311
+ name = "hyper-util"
1312
+ version = "0.1.20"
1313
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1314
+ checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
1315
+ dependencies = [
1316
+ "bytes",
1317
+ "futures-channel",
1318
+ "futures-util",
1319
+ "http 1.4.0",
1320
+ "http-body",
1321
+ "hyper",
1322
+ "libc",
1323
+ "pin-project-lite",
1324
+ "socket2",
1325
+ "tokio",
1326
+ "tower-service",
1327
+ "tracing",
1328
+ ]
1329
+
1330
+ [[package]]
1331
+ name = "iana-time-zone"
1332
+ version = "0.1.65"
1333
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1334
+ checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
1335
+ dependencies = [
1336
+ "android_system_properties",
1337
+ "core-foundation-sys",
1338
+ "iana-time-zone-haiku",
1339
+ "js-sys",
1340
+ "log",
1341
+ "wasm-bindgen",
1342
+ "windows-core",
1343
+ ]
1344
+
1345
+ [[package]]
1346
+ name = "iana-time-zone-haiku"
1347
+ version = "0.1.2"
1348
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1349
+ checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1350
+ dependencies = [
1351
+ "cc",
1352
+ ]
1353
+
1354
+ [[package]]
1355
+ name = "icu_collections"
1356
+ version = "2.1.1"
1357
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1358
+ checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1359
+ dependencies = [
1360
+ "displaydoc",
1361
+ "potential_utf",
1362
+ "yoke",
1363
+ "zerofrom",
1364
+ "zerovec",
1365
+ ]
1366
+
1367
+ [[package]]
1368
+ name = "icu_locale_core"
1369
+ version = "2.1.1"
1370
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1371
+ checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1372
+ dependencies = [
1373
+ "displaydoc",
1374
+ "litemap",
1375
+ "tinystr",
1376
+ "writeable",
1377
+ "zerovec",
1378
+ ]
1379
+
1380
+ [[package]]
1381
+ name = "icu_normalizer"
1382
+ version = "2.1.1"
1383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1384
+ checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1385
+ dependencies = [
1386
+ "icu_collections",
1387
+ "icu_normalizer_data",
1388
+ "icu_properties",
1389
+ "icu_provider",
1390
+ "smallvec",
1391
+ "zerovec",
1392
+ ]
1393
+
1394
+ [[package]]
1395
+ name = "icu_normalizer_data"
1396
+ version = "2.1.1"
1397
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1398
+ checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1399
+
1400
+ [[package]]
1401
+ name = "icu_properties"
1402
+ version = "2.1.2"
1403
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1404
+ checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
1405
+ dependencies = [
1406
+ "icu_collections",
1407
+ "icu_locale_core",
1408
+ "icu_properties_data",
1409
+ "icu_provider",
1410
+ "zerotrie",
1411
+ "zerovec",
1412
+ ]
1413
+
1414
+ [[package]]
1415
+ name = "icu_properties_data"
1416
+ version = "2.1.2"
1417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1418
+ checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
1419
+
1420
+ [[package]]
1421
+ name = "icu_provider"
1422
+ version = "2.1.1"
1423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1424
+ checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1425
+ dependencies = [
1426
+ "displaydoc",
1427
+ "icu_locale_core",
1428
+ "writeable",
1429
+ "yoke",
1430
+ "zerofrom",
1431
+ "zerotrie",
1432
+ "zerovec",
1433
+ ]
1434
+
1435
+ [[package]]
1436
+ name = "id-arena"
1437
+ version = "2.3.0"
1438
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1439
+ checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1440
+
1441
+ [[package]]
1442
+ name = "idna"
1443
+ version = "1.1.0"
1444
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1445
+ checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1446
+ dependencies = [
1447
+ "idna_adapter",
1448
+ "smallvec",
1449
+ "utf8_iter",
1450
+ ]
1451
+
1452
+ [[package]]
1453
+ name = "idna_adapter"
1454
+ version = "1.2.1"
1455
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1456
+ checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1457
+ dependencies = [
1458
+ "icu_normalizer",
1459
+ "icu_properties",
1460
+ ]
1461
+
1462
+ [[package]]
1463
+ name = "indexmap"
1464
+ version = "2.13.0"
1465
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1466
+ checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
1467
+ dependencies = [
1468
+ "equivalent",
1469
+ "hashbrown 0.16.1",
1470
+ "serde",
1471
+ "serde_core",
1472
+ ]
1473
+
1474
+ [[package]]
1475
+ name = "indoc"
1476
+ version = "2.0.7"
1477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1478
+ checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1479
+ dependencies = [
1480
+ "rustversion",
1481
+ ]
1482
+
1483
+ [[package]]
1484
+ name = "inout"
1485
+ version = "0.1.4"
1486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1487
+ checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1488
+ dependencies = [
1489
+ "generic-array",
1490
+ ]
1491
+
1492
+ [[package]]
1493
+ name = "intrusive-collections"
1494
+ version = "0.9.7"
1495
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1496
+ checksum = "189d0897e4cbe8c75efedf3502c18c887b05046e59d28404d4d8e46cbc4d1e86"
1497
+ dependencies = [
1498
+ "memoffset",
1499
+ ]
1500
+
1501
+ [[package]]
1502
+ name = "io-uring"
1503
+ version = "0.7.11"
1504
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1505
+ checksum = "fdd7bddefd0a8833b88a4b68f90dae22c7450d11b354198baee3874fd811b344"
1506
+ dependencies = [
1507
+ "bitflags",
1508
+ "cfg-if",
1509
+ "libc",
1510
+ ]
1511
+
1512
+ [[package]]
1513
+ name = "is_terminal_polyfill"
1514
+ version = "1.70.2"
1515
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1516
+ checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1517
+
1518
+ [[package]]
1519
+ name = "itertools"
1520
+ version = "0.12.1"
1521
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1522
+ checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
1523
+ dependencies = [
1524
+ "either",
1525
+ ]
1526
+
1527
+ [[package]]
1528
+ name = "itertools"
1529
+ version = "0.14.0"
1530
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1531
+ checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
1532
+ dependencies = [
1533
+ "either",
1534
+ ]
1535
+
1536
+ [[package]]
1537
+ name = "itoa"
1538
+ version = "1.0.17"
1539
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1540
+ checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
1541
+
1542
+ [[package]]
1543
+ name = "js-sys"
1544
+ version = "0.3.91"
1545
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1546
+ checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
1547
+ dependencies = [
1548
+ "once_cell",
1549
+ "wasm-bindgen",
1550
+ ]
1551
+
1552
+ [[package]]
1553
+ name = "lazy_static"
1554
+ version = "1.5.0"
1555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1556
+ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1557
+
1558
+ [[package]]
1559
+ name = "lazycell"
1560
+ version = "1.3.0"
1561
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1562
+ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1563
+
1564
+ [[package]]
1565
+ name = "leb128fmt"
1566
+ version = "0.1.0"
1567
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1568
+ checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1569
+
1570
+ [[package]]
1571
+ name = "libc"
1572
+ version = "0.2.182"
1573
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1574
+ checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
1575
+
1576
+ [[package]]
1577
+ name = "libloading"
1578
+ version = "0.8.9"
1579
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1580
+ checksum = "d7c4b02199fee7c5d21a5ae7d8cfa79a6ef5bb2fc834d6e9058e89c825efdc55"
1581
+ dependencies = [
1582
+ "cfg-if",
1583
+ "windows-link",
1584
+ ]
1585
+
1586
+ [[package]]
1587
+ name = "libm"
1588
+ version = "0.2.16"
1589
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1590
+ checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1591
+
1592
+ [[package]]
1593
+ name = "libmimalloc-sys"
1594
+ version = "0.1.44"
1595
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1596
+ checksum = "667f4fec20f29dfc6bc7357c582d91796c169ad7e2fce709468aefeb2c099870"
1597
+ dependencies = [
1598
+ "cc",
1599
+ "libc",
1600
+ ]
1601
+
1602
+ [[package]]
1603
+ name = "linkme"
1604
+ version = "0.3.35"
1605
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1606
+ checksum = "5e3283ed2d0e50c06dd8602e0ab319bb048b6325d0bba739db64ed8205179898"
1607
+ dependencies = [
1608
+ "linkme-impl",
1609
+ ]
1610
+
1611
+ [[package]]
1612
+ name = "linkme-impl"
1613
+ version = "0.3.35"
1614
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1615
+ checksum = "e5cec0ec4228b4853bb129c84dbf093a27e6c7a20526da046defc334a1b017f7"
1616
+ dependencies = [
1617
+ "proc-macro2",
1618
+ "quote",
1619
+ "syn",
1620
+ ]
1621
+
1622
+ [[package]]
1623
+ name = "linux-raw-sys"
1624
+ version = "0.4.15"
1625
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1626
+ checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1627
+
1628
+ [[package]]
1629
+ name = "linux-raw-sys"
1630
+ version = "0.12.1"
1631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1632
+ checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1633
+
1634
+ [[package]]
1635
+ name = "litemap"
1636
+ version = "0.8.1"
1637
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1638
+ checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1639
+
1640
+ [[package]]
1641
+ name = "litrs"
1642
+ version = "1.0.0"
1643
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1644
+ checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
1645
+
1646
+ [[package]]
1647
+ name = "lock_api"
1648
+ version = "0.4.14"
1649
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1650
+ checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1651
+ dependencies = [
1652
+ "scopeguard",
1653
+ ]
1654
+
1655
+ [[package]]
1656
+ name = "log"
1657
+ version = "0.4.29"
1658
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1659
+ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
1660
+
1661
+ [[package]]
1662
+ name = "loom"
1663
+ version = "0.7.2"
1664
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1665
+ checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
1666
+ dependencies = [
1667
+ "cfg-if",
1668
+ "generator",
1669
+ "scoped-tls",
1670
+ "tracing",
1671
+ "tracing-subscriber",
1672
+ ]
1673
+
1674
+ [[package]]
1675
+ name = "matchers"
1676
+ version = "0.2.0"
1677
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1678
+ checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1679
+ dependencies = [
1680
+ "regex-automata",
1681
+ ]
1682
+
1683
+ [[package]]
1684
+ name = "matchit"
1685
+ version = "0.7.3"
1686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1687
+ checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
1688
+
1689
+ [[package]]
1690
+ name = "matchit"
1691
+ version = "0.8.4"
1692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1693
+ checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1694
+
1695
+ [[package]]
1696
+ name = "memchr"
1697
+ version = "2.8.0"
1698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1699
+ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1700
+
1701
+ [[package]]
1702
+ name = "memoffset"
1703
+ version = "0.9.1"
1704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1705
+ checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
1706
+ dependencies = [
1707
+ "autocfg",
1708
+ ]
1709
+
1710
+ [[package]]
1711
+ name = "miette"
1712
+ version = "7.6.0"
1713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1714
+ checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1715
+ dependencies = [
1716
+ "cfg-if",
1717
+ "miette-derive",
1718
+ "unicode-width 0.1.14",
1719
+ ]
1720
+
1721
+ [[package]]
1722
+ name = "miette-derive"
1723
+ version = "7.6.0"
1724
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1725
+ checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
1726
+ dependencies = [
1727
+ "proc-macro2",
1728
+ "quote",
1729
+ "syn",
1730
+ ]
1731
+
1732
+ [[package]]
1733
+ name = "mimalloc"
1734
+ version = "0.1.48"
1735
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1736
+ checksum = "e1ee66a4b64c74f4ef288bcbb9192ad9c3feaad75193129ac8509af543894fd8"
1737
+ dependencies = [
1738
+ "libmimalloc-sys",
1739
+ ]
1740
+
1741
+ [[package]]
1742
+ name = "mime"
1743
+ version = "0.3.17"
1744
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1745
+ checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1746
+
1747
+ [[package]]
1748
+ name = "mime_guess"
1749
+ version = "2.0.5"
1750
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1751
+ checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1752
+ dependencies = [
1753
+ "mime",
1754
+ "unicase",
1755
+ ]
1756
+
1757
+ [[package]]
1758
+ name = "minimal-lexical"
1759
+ version = "0.2.1"
1760
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1761
+ checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1762
+
1763
+ [[package]]
1764
+ name = "miniz_oxide"
1765
+ version = "0.8.9"
1766
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1767
+ checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1768
+ dependencies = [
1769
+ "adler2",
1770
+ "simd-adler32",
1771
+ ]
1772
+
1773
+ [[package]]
1774
+ name = "mio"
1775
+ version = "1.1.1"
1776
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1777
+ checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
1778
+ dependencies = [
1779
+ "libc",
1780
+ "wasi",
1781
+ "windows-sys 0.61.2",
1782
+ ]
1783
+
1784
+ [[package]]
1785
+ name = "nom"
1786
+ version = "7.1.3"
1787
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1788
+ checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1789
+ dependencies = [
1790
+ "memchr",
1791
+ "minimal-lexical",
1792
+ ]
1793
+
1794
+ [[package]]
1795
+ name = "normalize-line-endings"
1796
+ version = "0.3.0"
1797
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1798
+ checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
1799
+
1800
+ [[package]]
1801
+ name = "nu-ansi-term"
1802
+ version = "0.50.3"
1803
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1804
+ checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1805
+ dependencies = [
1806
+ "windows-sys 0.61.2",
1807
+ ]
1808
+
1809
+ [[package]]
1810
+ name = "num-bigint"
1811
+ version = "0.4.6"
1812
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1813
+ checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1814
+ dependencies = [
1815
+ "num-integer",
1816
+ "num-traits",
1817
+ ]
1818
+
1819
+ [[package]]
1820
+ name = "num-conv"
1821
+ version = "0.1.0"
1822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1823
+ checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1824
+
1825
+ [[package]]
1826
+ name = "num-integer"
1827
+ version = "0.1.46"
1828
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1829
+ checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1830
+ dependencies = [
1831
+ "num-traits",
1832
+ ]
1833
+
1834
+ [[package]]
1835
+ name = "num-traits"
1836
+ version = "0.2.19"
1837
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1838
+ checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1839
+ dependencies = [
1840
+ "autocfg",
1841
+ ]
1842
+
1843
+ [[package]]
1844
+ name = "once_cell"
1845
+ version = "1.21.3"
1846
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1847
+ checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1848
+
1849
+ [[package]]
1850
+ name = "once_cell_polyfill"
1851
+ version = "1.70.2"
1852
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1853
+ checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1854
+
1855
+ [[package]]
1856
+ name = "opaque-debug"
1857
+ version = "0.3.1"
1858
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1859
+ checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1860
+
1861
+ [[package]]
1862
+ name = "owo-colors"
1863
+ version = "3.5.0"
1864
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1865
+ checksum = "c1b04fb49957986fdce4d6ee7a65027d55d4b6d2265e5848bbb507b58ccfdb6f"
1866
+
1867
+ [[package]]
1868
+ name = "pack1"
1869
+ version = "1.0.0"
1870
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1871
+ checksum = "d6e7cd9bd638dc2c831519a0caa1c006cab771a92b1303403a8322773c5b72d6"
1872
+ dependencies = [
1873
+ "bytemuck",
1874
+ ]
1875
+
1876
+ [[package]]
1877
+ name = "parking_lot"
1878
+ version = "0.12.5"
1879
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1880
+ checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1881
+ dependencies = [
1882
+ "lock_api",
1883
+ "parking_lot_core",
1884
+ ]
1885
+
1886
+ [[package]]
1887
+ name = "parking_lot_core"
1888
+ version = "0.9.12"
1889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1890
+ checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1891
+ dependencies = [
1892
+ "cfg-if",
1893
+ "libc",
1894
+ "redox_syscall",
1895
+ "smallvec",
1896
+ "windows-link",
1897
+ ]
1898
+
1899
+ [[package]]
1900
+ name = "paste"
1901
+ version = "1.0.15"
1902
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1903
+ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1904
+
1905
+ [[package]]
1906
+ name = "percent-encoding"
1907
+ version = "2.3.2"
1908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1909
+ checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1910
+
1911
+ [[package]]
1912
+ name = "pin-project-lite"
1913
+ version = "0.2.17"
1914
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1915
+ checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1916
+
1917
+ [[package]]
1918
+ name = "pin-utils"
1919
+ version = "0.1.0"
1920
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1921
+ checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1922
+
1923
+ [[package]]
1924
+ name = "polling"
1925
+ version = "3.11.0"
1926
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1927
+ checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
1928
+ dependencies = [
1929
+ "cfg-if",
1930
+ "concurrent-queue",
1931
+ "hermit-abi",
1932
+ "pin-project-lite",
1933
+ "rustix 1.1.4",
1934
+ "windows-sys 0.61.2",
1935
+ ]
1936
+
1937
+ [[package]]
1938
+ name = "polyval"
1939
+ version = "0.6.2"
1940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1941
+ checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
1942
+ dependencies = [
1943
+ "cfg-if",
1944
+ "cpufeatures",
1945
+ "opaque-debug",
1946
+ "universal-hash",
1947
+ ]
1948
+
1949
+ [[package]]
1950
+ name = "portable-atomic"
1951
+ version = "1.13.1"
1952
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1953
+ checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1954
+
1955
+ [[package]]
1956
+ name = "potential_utf"
1957
+ version = "0.1.4"
1958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1959
+ checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1960
+ dependencies = [
1961
+ "zerovec",
1962
+ ]
1963
+
1964
+ [[package]]
1965
+ name = "powerfmt"
1966
+ version = "0.2.0"
1967
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1968
+ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1969
+
1970
+ [[package]]
1971
+ name = "ppv-lite86"
1972
+ version = "0.2.21"
1973
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1974
+ checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1975
+ dependencies = [
1976
+ "zerocopy",
1977
+ ]
1978
+
1979
+ [[package]]
1980
+ name = "predicates"
1981
+ version = "3.1.4"
1982
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1983
+ checksum = "ada8f2932f28a27ee7b70dd6c1c39ea0675c55a36879ab92f3a715eaa1e63cfe"
1984
+ dependencies = [
1985
+ "anstyle",
1986
+ "difflib",
1987
+ "float-cmp",
1988
+ "normalize-line-endings",
1989
+ "predicates-core",
1990
+ "regex",
1991
+ ]
1992
+
1993
+ [[package]]
1994
+ name = "predicates-core"
1995
+ version = "1.0.10"
1996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1997
+ checksum = "cad38746f3166b4031b1a0d39ad9f954dd291e7854fcc0eed52ee41a0b50d144"
1998
+
1999
+ [[package]]
2000
+ name = "predicates-tree"
2001
+ version = "1.0.13"
2002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2003
+ checksum = "d0de1b847b39c8131db0467e9df1ff60e6d0562ab8e9a16e568ad0fdb372e2f2"
2004
+ dependencies = [
2005
+ "predicates-core",
2006
+ "termtree",
2007
+ ]
2008
+
2009
+ [[package]]
2010
+ name = "pretty_assertions"
2011
+ version = "1.4.1"
2012
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2013
+ checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d"
2014
+ dependencies = [
2015
+ "diff",
2016
+ "yansi",
2017
+ ]
2018
+
2019
+ [[package]]
2020
+ name = "prettyplease"
2021
+ version = "0.2.37"
2022
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2023
+ checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2024
+ dependencies = [
2025
+ "proc-macro2",
2026
+ "syn",
2027
+ ]
2028
+
2029
+ [[package]]
2030
+ name = "proc-macro2"
2031
+ version = "1.0.106"
2032
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2033
+ checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
2034
+ dependencies = [
2035
+ "unicode-ident",
2036
+ ]
2037
+
2038
+ [[package]]
2039
+ name = "prost"
2040
+ version = "0.14.3"
2041
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2042
+ checksum = "d2ea70524a2f82d518bce41317d0fae74151505651af45faf1ffbd6fd33f0568"
2043
+ dependencies = [
2044
+ "bytes",
2045
+ "prost-derive",
2046
+ ]
2047
+
2048
+ [[package]]
2049
+ name = "prost-derive"
2050
+ version = "0.14.3"
2051
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2052
+ checksum = "27c6023962132f4b30eb4c172c91ce92d933da334c59c23cddee82358ddafb0b"
2053
+ dependencies = [
2054
+ "anyhow",
2055
+ "itertools 0.14.0",
2056
+ "proc-macro2",
2057
+ "quote",
2058
+ "syn",
2059
+ ]
2060
+
2061
+ [[package]]
2062
+ name = "pyo3"
2063
+ version = "0.25.1"
2064
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2065
+ checksum = "8970a78afe0628a3e3430376fc5fd76b6b45c4d43360ffd6cdd40bdde72b682a"
2066
+ dependencies = [
2067
+ "indoc",
2068
+ "libc",
2069
+ "memoffset",
2070
+ "once_cell",
2071
+ "portable-atomic",
2072
+ "pyo3-build-config",
2073
+ "pyo3-ffi",
2074
+ "pyo3-macros",
2075
+ "unindent",
2076
+ ]
2077
+
2078
+ [[package]]
2079
+ name = "pyo3-build-config"
2080
+ version = "0.25.1"
2081
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2082
+ checksum = "458eb0c55e7ece017adeba38f2248ff3ac615e53660d7c71a238d7d2a01c7598"
2083
+ dependencies = [
2084
+ "once_cell",
2085
+ "target-lexicon",
2086
+ ]
2087
+
2088
+ [[package]]
2089
+ name = "pyo3-ffi"
2090
+ version = "0.25.1"
2091
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2092
+ checksum = "7114fe5457c61b276ab77c5055f206295b812608083644a5c5b2640c3102565c"
2093
+ dependencies = [
2094
+ "libc",
2095
+ "pyo3-build-config",
2096
+ ]
2097
+
2098
+ [[package]]
2099
+ name = "pyo3-macros"
2100
+ version = "0.25.1"
2101
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2102
+ checksum = "a8725c0a622b374d6cb051d11a0983786448f7785336139c3c94f5aa6bef7e50"
2103
+ dependencies = [
2104
+ "proc-macro2",
2105
+ "pyo3-macros-backend",
2106
+ "quote",
2107
+ "syn",
2108
+ ]
2109
+
2110
+ [[package]]
2111
+ name = "pyo3-macros-backend"
2112
+ version = "0.25.1"
2113
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2114
+ checksum = "4109984c22491085343c05b0dbc54ddc405c3cf7b4374fc533f5c3313a572ccc"
2115
+ dependencies = [
2116
+ "heck",
2117
+ "proc-macro2",
2118
+ "pyo3-build-config",
2119
+ "quote",
2120
+ "syn",
2121
+ ]
2122
+
2123
+ [[package]]
2124
+ name = "quote"
2125
+ version = "1.0.45"
2126
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2127
+ checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
2128
+ dependencies = [
2129
+ "proc-macro2",
2130
+ ]
2131
+
2132
+ [[package]]
2133
+ name = "r-efi"
2134
+ version = "5.3.0"
2135
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2136
+ checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2137
+
2138
+ [[package]]
2139
+ name = "r-efi"
2140
+ version = "6.0.0"
2141
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2142
+ checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
2143
+
2144
+ [[package]]
2145
+ name = "radium"
2146
+ version = "0.7.0"
2147
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2148
+ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
2149
+
2150
+ [[package]]
2151
+ name = "rand"
2152
+ version = "0.8.5"
2153
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2154
+ checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2155
+ dependencies = [
2156
+ "libc",
2157
+ "rand_chacha 0.3.1",
2158
+ "rand_core 0.6.4",
2159
+ ]
2160
+
2161
+ [[package]]
2162
+ name = "rand"
2163
+ version = "0.9.2"
2164
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2165
+ checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2166
+ dependencies = [
2167
+ "rand_chacha 0.9.0",
2168
+ "rand_core 0.9.5",
2169
+ ]
2170
+
2171
+ [[package]]
2172
+ name = "rand_chacha"
2173
+ version = "0.3.1"
2174
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2175
+ checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2176
+ dependencies = [
2177
+ "ppv-lite86",
2178
+ "rand_core 0.6.4",
2179
+ ]
2180
+
2181
+ [[package]]
2182
+ name = "rand_chacha"
2183
+ version = "0.9.0"
2184
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2185
+ checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2186
+ dependencies = [
2187
+ "ppv-lite86",
2188
+ "rand_core 0.9.5",
2189
+ ]
2190
+
2191
+ [[package]]
2192
+ name = "rand_core"
2193
+ version = "0.6.4"
2194
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2195
+ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2196
+ dependencies = [
2197
+ "getrandom 0.2.17",
2198
+ ]
2199
+
2200
+ [[package]]
2201
+ name = "rand_core"
2202
+ version = "0.9.5"
2203
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2204
+ checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
2205
+ dependencies = [
2206
+ "getrandom 0.3.4",
2207
+ ]
2208
+
2209
+ [[package]]
2210
+ name = "rand_pcg"
2211
+ version = "0.3.1"
2212
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2213
+ checksum = "59cad018caf63deb318e5a4586d99a24424a364f40f1e5778c29aca23f4fc73e"
2214
+ dependencies = [
2215
+ "rand_core 0.6.4",
2216
+ ]
2217
+
2218
+ [[package]]
2219
+ name = "rapidhash"
2220
+ version = "4.4.1"
2221
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2222
+ checksum = "b5e48930979c155e2f33aa36ab3119b5ee81332beb6482199a8ecd6029b80b59"
2223
+ dependencies = [
2224
+ "rustversion",
2225
+ ]
2226
+
2227
+ [[package]]
2228
+ name = "redox_syscall"
2229
+ version = "0.5.18"
2230
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2231
+ checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2232
+ dependencies = [
2233
+ "bitflags",
2234
+ ]
2235
+
2236
+ [[package]]
2237
+ name = "regex"
2238
+ version = "1.12.3"
2239
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2240
+ checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
2241
+ dependencies = [
2242
+ "aho-corasick",
2243
+ "memchr",
2244
+ "regex-automata",
2245
+ "regex-syntax",
2246
+ ]
2247
+
2248
+ [[package]]
2249
+ name = "regex-automata"
2250
+ version = "0.4.14"
2251
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2252
+ checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
2253
+ dependencies = [
2254
+ "aho-corasick",
2255
+ "memchr",
2256
+ "regex-syntax",
2257
+ ]
2258
+
2259
+ [[package]]
2260
+ name = "regex-syntax"
2261
+ version = "0.8.10"
2262
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2263
+ checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
2264
+
2265
+ [[package]]
2266
+ name = "reserve-port"
2267
+ version = "2.4.0"
2268
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2269
+ checksum = "94070964579245eb2f76e62a7668fe87bd9969ed6c41256f3bf614e3323dd3cc"
2270
+ dependencies = [
2271
+ "thiserror 2.0.18",
2272
+ ]
2273
+
2274
+ [[package]]
2275
+ name = "roaring"
2276
+ version = "0.11.3"
2277
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2278
+ checksum = "8ba9ce64a8f45d7fc86358410bb1a82e8c987504c0d4900e9141d69a9f26c885"
2279
+ dependencies = [
2280
+ "bytemuck",
2281
+ "byteorder",
2282
+ ]
2283
+
2284
+ [[package]]
2285
+ name = "rust-embed"
2286
+ version = "8.11.0"
2287
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2288
+ checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
2289
+ dependencies = [
2290
+ "rust-embed-impl",
2291
+ "rust-embed-utils",
2292
+ "walkdir",
2293
+ ]
2294
+
2295
+ [[package]]
2296
+ name = "rust-embed-impl"
2297
+ version = "8.11.0"
2298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2299
+ checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
2300
+ dependencies = [
2301
+ "proc-macro2",
2302
+ "quote",
2303
+ "rust-embed-utils",
2304
+ "syn",
2305
+ "walkdir",
2306
+ ]
2307
+
2308
+ [[package]]
2309
+ name = "rust-embed-utils"
2310
+ version = "8.11.0"
2311
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2312
+ checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
2313
+ dependencies = [
2314
+ "sha2",
2315
+ "walkdir",
2316
+ ]
2317
+
2318
+ [[package]]
2319
+ name = "rust-multipart-rfc7578_2"
2320
+ version = "0.6.1"
2321
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2322
+ checksum = "03b748410c0afdef2ebbe3685a6a862e2ee937127cdaae623336a459451c8d57"
2323
+ dependencies = [
2324
+ "bytes",
2325
+ "futures-core",
2326
+ "futures-util",
2327
+ "http 0.2.12",
2328
+ "mime",
2329
+ "mime_guess",
2330
+ "rand 0.8.5",
2331
+ "thiserror 1.0.69",
2332
+ ]
2333
+
2334
+ [[package]]
2335
+ name = "rustc-hash"
2336
+ version = "1.1.0"
2337
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2338
+ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2339
+
2340
+ [[package]]
2341
+ name = "rustc-hash"
2342
+ version = "2.1.1"
2343
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2344
+ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2345
+
2346
+ [[package]]
2347
+ name = "rustc_version"
2348
+ version = "0.4.1"
2349
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2350
+ checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2351
+ dependencies = [
2352
+ "semver",
2353
+ ]
2354
+
2355
+ [[package]]
2356
+ name = "rustc_version_runtime"
2357
+ version = "0.3.0"
2358
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2359
+ checksum = "2dd18cd2bae1820af0b6ad5e54f4a51d0f3fcc53b05f845675074efcc7af071d"
2360
+ dependencies = [
2361
+ "rustc_version",
2362
+ "semver",
2363
+ ]
2364
+
2365
+ [[package]]
2366
+ name = "rustix"
2367
+ version = "0.38.44"
2368
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2369
+ checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
2370
+ dependencies = [
2371
+ "bitflags",
2372
+ "errno",
2373
+ "libc",
2374
+ "linux-raw-sys 0.4.15",
2375
+ "windows-sys 0.59.0",
2376
+ ]
2377
+
2378
+ [[package]]
2379
+ name = "rustix"
2380
+ version = "1.1.4"
2381
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2382
+ checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
2383
+ dependencies = [
2384
+ "bitflags",
2385
+ "errno",
2386
+ "libc",
2387
+ "linux-raw-sys 0.12.1",
2388
+ "windows-sys 0.61.2",
2389
+ ]
2390
+
2391
+ [[package]]
2392
+ name = "rustversion"
2393
+ version = "1.0.22"
2394
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2395
+ checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2396
+
2397
+ [[package]]
2398
+ name = "ryu"
2399
+ version = "1.0.23"
2400
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2401
+ checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
2402
+
2403
+ [[package]]
2404
+ name = "same-file"
2405
+ version = "1.0.6"
2406
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2407
+ checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2408
+ dependencies = [
2409
+ "winapi-util",
2410
+ ]
2411
+
2412
+ [[package]]
2413
+ name = "scc"
2414
+ version = "2.4.0"
2415
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2416
+ checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
2417
+ dependencies = [
2418
+ "sdd",
2419
+ ]
2420
+
2421
+ [[package]]
2422
+ name = "scoped-tls"
2423
+ version = "1.0.1"
2424
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2425
+ checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
2426
+
2427
+ [[package]]
2428
+ name = "scopeguard"
2429
+ version = "1.2.0"
2430
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2431
+ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2432
+
2433
+ [[package]]
2434
+ name = "sdd"
2435
+ version = "3.0.10"
2436
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2437
+ checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
2438
+
2439
+ [[package]]
2440
+ name = "semver"
2441
+ version = "1.0.27"
2442
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2443
+ checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2444
+
2445
+ [[package]]
2446
+ name = "serde"
2447
+ version = "1.0.228"
2448
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2449
+ checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2450
+ dependencies = [
2451
+ "serde_core",
2452
+ "serde_derive",
2453
+ ]
2454
+
2455
+ [[package]]
2456
+ name = "serde_core"
2457
+ version = "1.0.228"
2458
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2459
+ checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2460
+ dependencies = [
2461
+ "serde_derive",
2462
+ ]
2463
+
2464
+ [[package]]
2465
+ name = "serde_derive"
2466
+ version = "1.0.228"
2467
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2468
+ checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2469
+ dependencies = [
2470
+ "proc-macro2",
2471
+ "quote",
2472
+ "syn",
2473
+ ]
2474
+
2475
+ [[package]]
2476
+ name = "serde_json"
2477
+ version = "1.0.149"
2478
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2479
+ checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
2480
+ dependencies = [
2481
+ "itoa",
2482
+ "memchr",
2483
+ "serde",
2484
+ "serde_core",
2485
+ "zmij",
2486
+ ]
2487
+
2488
+ [[package]]
2489
+ name = "serde_path_to_error"
2490
+ version = "0.1.20"
2491
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2492
+ checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2493
+ dependencies = [
2494
+ "itoa",
2495
+ "serde",
2496
+ "serde_core",
2497
+ ]
2498
+
2499
+ [[package]]
2500
+ name = "serde_spanned"
2501
+ version = "0.6.9"
2502
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2503
+ checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2504
+ dependencies = [
2505
+ "serde",
2506
+ ]
2507
+
2508
+ [[package]]
2509
+ name = "serde_urlencoded"
2510
+ version = "0.7.1"
2511
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2512
+ checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2513
+ dependencies = [
2514
+ "form_urlencoded",
2515
+ "itoa",
2516
+ "ryu",
2517
+ "serde",
2518
+ ]
2519
+
2520
+ [[package]]
2521
+ name = "serial_test"
2522
+ version = "3.4.0"
2523
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2524
+ checksum = "911bd979bf1070a3f3aa7b691a3b3e9968f339ceeec89e08c280a8a22207a32f"
2525
+ dependencies = [
2526
+ "futures-executor",
2527
+ "futures-util",
2528
+ "log",
2529
+ "once_cell",
2530
+ "parking_lot",
2531
+ "scc",
2532
+ "serial_test_derive",
2533
+ ]
2534
+
2535
+ [[package]]
2536
+ name = "serial_test_derive"
2537
+ version = "3.4.0"
2538
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2539
+ checksum = "0a7d91949b85b0d2fb687445e448b40d322b6b3e4af6b44a29b21d9a5f33e6d9"
2540
+ dependencies = [
2541
+ "proc-macro2",
2542
+ "quote",
2543
+ "syn",
2544
+ ]
2545
+
2546
+ [[package]]
2547
+ name = "sha1_smol"
2548
+ version = "1.0.1"
2549
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2550
+ checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
2551
+
2552
+ [[package]]
2553
+ name = "sha2"
2554
+ version = "0.10.9"
2555
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2556
+ checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2557
+ dependencies = [
2558
+ "cfg-if",
2559
+ "cpufeatures",
2560
+ "digest",
2561
+ ]
2562
+
2563
+ [[package]]
2564
+ name = "sharded-slab"
2565
+ version = "0.1.7"
2566
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2567
+ checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2568
+ dependencies = [
2569
+ "lazy_static",
2570
+ ]
2571
+
2572
+ [[package]]
2573
+ name = "shlex"
2574
+ version = "1.3.0"
2575
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2576
+ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2577
+
2578
+ [[package]]
2579
+ name = "shuttle"
2580
+ version = "0.8.1"
2581
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2582
+ checksum = "2ab17edba38d63047f46780cf7360acf7467fec2c048928689a5c1dd1c2b4e31"
2583
+ dependencies = [
2584
+ "assoc",
2585
+ "bitvec",
2586
+ "cfg-if",
2587
+ "generator",
2588
+ "hex",
2589
+ "owo-colors",
2590
+ "rand 0.8.5",
2591
+ "rand_core 0.6.4",
2592
+ "rand_pcg",
2593
+ "scoped-tls",
2594
+ "smallvec",
2595
+ "tracing",
2596
+ ]
2597
+
2598
+ [[package]]
2599
+ name = "signal-hook-registry"
2600
+ version = "1.4.8"
2601
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2602
+ checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2603
+ dependencies = [
2604
+ "errno",
2605
+ "libc",
2606
+ ]
2607
+
2608
+ [[package]]
2609
+ name = "simd-adler32"
2610
+ version = "0.3.8"
2611
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2612
+ checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
2613
+
2614
+ [[package]]
2615
+ name = "simsimd"
2616
+ version = "6.5.16"
2617
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2618
+ checksum = "f4fb3bc3cdce07a7d7d4caa4c54f8aa967f6be41690482b54b24100a2253fa70"
2619
+ dependencies = [
2620
+ "cc",
2621
+ ]
2622
+
2623
+ [[package]]
2624
+ name = "siphasher"
2625
+ version = "1.0.2"
2626
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2627
+ checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
2628
+
2629
+ [[package]]
2630
+ name = "slab"
2631
+ version = "0.4.12"
2632
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2633
+ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2634
+
2635
+ [[package]]
2636
+ name = "smallvec"
2637
+ version = "1.15.1"
2638
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2639
+ checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2640
+
2641
+ [[package]]
2642
+ name = "socket2"
2643
+ version = "0.6.3"
2644
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2645
+ checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2646
+ dependencies = [
2647
+ "libc",
2648
+ "windows-sys 0.61.2",
2649
+ ]
2650
+
2651
+ [[package]]
2652
+ name = "softaes"
2653
+ version = "0.1.3"
2654
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2655
+ checksum = "fef461faaeb36c340b6c887167a9054a034f6acfc50a014ead26a02b4356b3de"
2656
+
2657
+ [[package]]
2658
+ name = "stable_deref_trait"
2659
+ version = "1.2.1"
2660
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2661
+ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2662
+
2663
+ [[package]]
2664
+ name = "strsim"
2665
+ version = "0.11.1"
2666
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2667
+ checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2668
+
2669
+ [[package]]
2670
+ name = "strum"
2671
+ version = "0.26.3"
2672
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2673
+ checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
2674
+ dependencies = [
2675
+ "strum_macros",
2676
+ ]
2677
+
2678
+ [[package]]
2679
+ name = "strum_macros"
2680
+ version = "0.26.4"
2681
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2682
+ checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
2683
+ dependencies = [
2684
+ "heck",
2685
+ "proc-macro2",
2686
+ "quote",
2687
+ "rustversion",
2688
+ "syn",
2689
+ ]
2690
+
2691
+ [[package]]
2692
+ name = "subtle"
2693
+ version = "2.6.1"
2694
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2695
+ checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2696
+
2697
+ [[package]]
2698
+ name = "syn"
2699
+ version = "2.0.117"
2700
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2701
+ checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2702
+ dependencies = [
2703
+ "proc-macro2",
2704
+ "quote",
2705
+ "unicode-ident",
2706
+ ]
2707
+
2708
+ [[package]]
2709
+ name = "sync_wrapper"
2710
+ version = "1.0.2"
2711
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2712
+ checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2713
+
2714
+ [[package]]
2715
+ name = "synstructure"
2716
+ version = "0.13.2"
2717
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2718
+ checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2719
+ dependencies = [
2720
+ "proc-macro2",
2721
+ "quote",
2722
+ "syn",
2723
+ ]
2724
+
2725
+ [[package]]
2726
+ name = "tap"
2727
+ version = "1.0.1"
2728
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2729
+ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
2730
+
2731
+ [[package]]
2732
+ name = "target-lexicon"
2733
+ version = "0.13.5"
2734
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2735
+ checksum = "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
2736
+
2737
+ [[package]]
2738
+ name = "tempfile"
2739
+ version = "3.26.0"
2740
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2741
+ checksum = "82a72c767771b47409d2345987fda8628641887d5466101319899796367354a0"
2742
+ dependencies = [
2743
+ "fastrand",
2744
+ "getrandom 0.4.2",
2745
+ "once_cell",
2746
+ "rustix 1.1.4",
2747
+ "windows-sys 0.61.2",
2748
+ ]
2749
+
2750
+ [[package]]
2751
+ name = "termtree"
2752
+ version = "0.5.1"
2753
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2754
+ checksum = "8f50febec83f5ee1df3015341d8bd429f2d1cc62bcba7ea2076759d315084683"
2755
+
2756
+ [[package]]
2757
+ name = "thiserror"
2758
+ version = "1.0.69"
2759
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2760
+ checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2761
+ dependencies = [
2762
+ "thiserror-impl 1.0.69",
2763
+ ]
2764
+
2765
+ [[package]]
2766
+ name = "thiserror"
2767
+ version = "2.0.18"
2768
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2769
+ checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2770
+ dependencies = [
2771
+ "thiserror-impl 2.0.18",
2772
+ ]
2773
+
2774
+ [[package]]
2775
+ name = "thiserror-impl"
2776
+ version = "1.0.69"
2777
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2778
+ checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2779
+ dependencies = [
2780
+ "proc-macro2",
2781
+ "quote",
2782
+ "syn",
2783
+ ]
2784
+
2785
+ [[package]]
2786
+ name = "thiserror-impl"
2787
+ version = "2.0.18"
2788
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2789
+ checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2790
+ dependencies = [
2791
+ "proc-macro2",
2792
+ "quote",
2793
+ "syn",
2794
+ ]
2795
+
2796
+ [[package]]
2797
+ name = "thread_local"
2798
+ version = "1.1.9"
2799
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2800
+ checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2801
+ dependencies = [
2802
+ "cfg-if",
2803
+ ]
2804
+
2805
+ [[package]]
2806
+ name = "time"
2807
+ version = "0.3.36"
2808
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2809
+ checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2810
+ dependencies = [
2811
+ "deranged",
2812
+ "itoa",
2813
+ "num-conv",
2814
+ "powerfmt",
2815
+ "serde",
2816
+ "time-core",
2817
+ "time-macros",
2818
+ ]
2819
+
2820
+ [[package]]
2821
+ name = "time-core"
2822
+ version = "0.1.2"
2823
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2824
+ checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2825
+
2826
+ [[package]]
2827
+ name = "time-macros"
2828
+ version = "0.2.18"
2829
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2830
+ checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2831
+ dependencies = [
2832
+ "num-conv",
2833
+ "time-core",
2834
+ ]
2835
+
2836
+ [[package]]
2837
+ name = "tinystr"
2838
+ version = "0.8.2"
2839
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2840
+ checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
2841
+ dependencies = [
2842
+ "displaydoc",
2843
+ "zerovec",
2844
+ ]
2845
+
2846
+ [[package]]
2847
+ name = "tokio"
2848
+ version = "1.50.0"
2849
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2850
+ checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
2851
+ dependencies = [
2852
+ "bytes",
2853
+ "libc",
2854
+ "mio",
2855
+ "parking_lot",
2856
+ "pin-project-lite",
2857
+ "signal-hook-registry",
2858
+ "socket2",
2859
+ "tokio-macros",
2860
+ "windows-sys 0.61.2",
2861
+ ]
2862
+
2863
+ [[package]]
2864
+ name = "tokio-macros"
2865
+ version = "2.6.1"
2866
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2867
+ checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
2868
+ dependencies = [
2869
+ "proc-macro2",
2870
+ "quote",
2871
+ "syn",
2872
+ ]
2873
+
2874
+ [[package]]
2875
+ name = "toml"
2876
+ version = "0.8.23"
2877
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2878
+ checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2879
+ dependencies = [
2880
+ "serde",
2881
+ "serde_spanned",
2882
+ "toml_datetime",
2883
+ "toml_edit",
2884
+ ]
2885
+
2886
+ [[package]]
2887
+ name = "toml_datetime"
2888
+ version = "0.6.11"
2889
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2890
+ checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2891
+ dependencies = [
2892
+ "serde",
2893
+ ]
2894
+
2895
+ [[package]]
2896
+ name = "toml_edit"
2897
+ version = "0.22.27"
2898
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2899
+ checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2900
+ dependencies = [
2901
+ "indexmap",
2902
+ "serde",
2903
+ "serde_spanned",
2904
+ "toml_datetime",
2905
+ "toml_write",
2906
+ "winnow",
2907
+ ]
2908
+
2909
+ [[package]]
2910
+ name = "toml_write"
2911
+ version = "0.1.2"
2912
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2913
+ checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2914
+
2915
+ [[package]]
2916
+ name = "tower"
2917
+ version = "0.5.3"
2918
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2919
+ checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2920
+ dependencies = [
2921
+ "futures-core",
2922
+ "futures-util",
2923
+ "pin-project-lite",
2924
+ "sync_wrapper",
2925
+ "tokio",
2926
+ "tower-layer",
2927
+ "tower-service",
2928
+ "tracing",
2929
+ ]
2930
+
2931
+ [[package]]
2932
+ name = "tower-layer"
2933
+ version = "0.3.3"
2934
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2935
+ checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2936
+
2937
+ [[package]]
2938
+ name = "tower-service"
2939
+ version = "0.3.3"
2940
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2941
+ checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2942
+
2943
+ [[package]]
2944
+ name = "tracing"
2945
+ version = "0.1.44"
2946
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2947
+ checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2948
+ dependencies = [
2949
+ "log",
2950
+ "pin-project-lite",
2951
+ "tracing-attributes",
2952
+ "tracing-core",
2953
+ ]
2954
+
2955
+ [[package]]
2956
+ name = "tracing-appender"
2957
+ version = "0.2.4"
2958
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2959
+ checksum = "786d480bce6247ab75f005b14ae1624ad978d3029d9113f0a22fa1ac773faeaf"
2960
+ dependencies = [
2961
+ "crossbeam-channel",
2962
+ "thiserror 2.0.18",
2963
+ "time",
2964
+ "tracing-subscriber",
2965
+ ]
2966
+
2967
+ [[package]]
2968
+ name = "tracing-attributes"
2969
+ version = "0.1.31"
2970
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2971
+ checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2972
+ dependencies = [
2973
+ "proc-macro2",
2974
+ "quote",
2975
+ "syn",
2976
+ ]
2977
+
2978
+ [[package]]
2979
+ name = "tracing-core"
2980
+ version = "0.1.36"
2981
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2982
+ checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2983
+ dependencies = [
2984
+ "once_cell",
2985
+ "valuable",
2986
+ ]
2987
+
2988
+ [[package]]
2989
+ name = "tracing-log"
2990
+ version = "0.2.0"
2991
+ source = "registry+https://github.com/rust-lang/crates.io-index"
2992
+ checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2993
+ dependencies = [
2994
+ "log",
2995
+ "once_cell",
2996
+ "tracing-core",
2997
+ ]
2998
+
2999
+ [[package]]
3000
+ name = "tracing-subscriber"
3001
+ version = "0.3.22"
3002
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3003
+ checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e"
3004
+ dependencies = [
3005
+ "matchers",
3006
+ "nu-ansi-term",
3007
+ "once_cell",
3008
+ "regex-automata",
3009
+ "sharded-slab",
3010
+ "smallvec",
3011
+ "thread_local",
3012
+ "tracing",
3013
+ "tracing-core",
3014
+ "tracing-log",
3015
+ ]
3016
+
3017
+ [[package]]
3018
+ name = "try-lock"
3019
+ version = "0.2.5"
3020
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3021
+ checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3022
+
3023
+ [[package]]
3024
+ name = "turso"
3025
+ version = "0.5.1-pre.1"
3026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3027
+ checksum = "50c0d87ff7db4ae801ee82558f0db5d4b1ce85d45768e0661b56481618437152"
3028
+ dependencies = [
3029
+ "mimalloc",
3030
+ "thiserror 2.0.18",
3031
+ "tracing",
3032
+ "tracing-subscriber",
3033
+ "turso_sdk_kit",
3034
+ "turso_sync_sdk_kit",
3035
+ ]
3036
+
3037
+ [[package]]
3038
+ name = "turso_core"
3039
+ version = "0.5.1-pre.1"
3040
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3041
+ checksum = "a35e9d13104e8542141bb3717951f199ac5c697d51f8ce789640615d5fcd7a04"
3042
+ dependencies = [
3043
+ "aegis",
3044
+ "aes",
3045
+ "aes-gcm",
3046
+ "antithesis_sdk",
3047
+ "arc-swap",
3048
+ "bigdecimal",
3049
+ "bitflags",
3050
+ "branches",
3051
+ "built",
3052
+ "bumpalo",
3053
+ "bytemuck",
3054
+ "cfg_block",
3055
+ "chrono",
3056
+ "crc32c",
3057
+ "crossbeam-skiplist",
3058
+ "either",
3059
+ "fallible-iterator",
3060
+ "fastbloom",
3061
+ "hex",
3062
+ "intrusive-collections",
3063
+ "io-uring",
3064
+ "libc",
3065
+ "libloading",
3066
+ "libm",
3067
+ "loom",
3068
+ "miette",
3069
+ "num-bigint",
3070
+ "num-traits",
3071
+ "pack1",
3072
+ "parking_lot",
3073
+ "paste",
3074
+ "polling",
3075
+ "rand 0.9.2",
3076
+ "rapidhash",
3077
+ "regex",
3078
+ "regex-syntax",
3079
+ "roaring",
3080
+ "rustc-hash 2.1.1",
3081
+ "rustix 1.1.4",
3082
+ "ryu",
3083
+ "serde_json",
3084
+ "shuttle",
3085
+ "simsimd",
3086
+ "smallvec",
3087
+ "strum",
3088
+ "strum_macros",
3089
+ "tempfile",
3090
+ "thiserror 2.0.18",
3091
+ "tracing",
3092
+ "tracing-subscriber",
3093
+ "turso_ext",
3094
+ "turso_macros",
3095
+ "turso_parser",
3096
+ "twox-hash",
3097
+ "uncased",
3098
+ "uuid",
3099
+ "windows-sys 0.61.2",
3100
+ ]
3101
+
3102
+ [[package]]
3103
+ name = "turso_ext"
3104
+ version = "0.5.1-pre.1"
3105
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3106
+ checksum = "896650485bb78ccf4bb17f420d5202ae801f5aabd9f647a917701d821c76f251"
3107
+ dependencies = [
3108
+ "chrono",
3109
+ "getrandom 0.3.4",
3110
+ "turso_macros",
3111
+ ]
3112
+
3113
+ [[package]]
3114
+ name = "turso_macros"
3115
+ version = "0.5.1-pre.1"
3116
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3117
+ checksum = "c460baf424e84aebcf375eeaca799a9599ee5b9d32e2b1ed9456c94b3a441a79"
3118
+ dependencies = [
3119
+ "proc-macro2",
3120
+ "quote",
3121
+ "syn",
3122
+ ]
3123
+
3124
+ [[package]]
3125
+ name = "turso_parser"
3126
+ version = "0.5.1-pre.1"
3127
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3128
+ checksum = "675c9bc0a81817dc9fe661a9d93a1d73088c194f4955864b89974d42d015895e"
3129
+ dependencies = [
3130
+ "bitflags",
3131
+ "memchr",
3132
+ "miette",
3133
+ "strum",
3134
+ "strum_macros",
3135
+ "thiserror 2.0.18",
3136
+ "turso_macros",
3137
+ ]
3138
+
3139
+ [[package]]
3140
+ name = "turso_sdk_kit"
3141
+ version = "0.5.1-pre.1"
3142
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3143
+ checksum = "e874c0dd2d28c082674f7028c2ea8af1eeb1463d607e6c802b591e3dc8bdc029"
3144
+ dependencies = [
3145
+ "bindgen",
3146
+ "env_logger",
3147
+ "parking_lot",
3148
+ "tracing",
3149
+ "tracing-appender",
3150
+ "tracing-subscriber",
3151
+ "turso_core",
3152
+ "turso_sdk_kit_macros",
3153
+ ]
3154
+
3155
+ [[package]]
3156
+ name = "turso_sdk_kit_macros"
3157
+ version = "0.5.1-pre.1"
3158
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3159
+ checksum = "be806c4919965d4430c6cc05905eb31b6431da5da90fafd3df5ea68aeb19393d"
3160
+ dependencies = [
3161
+ "proc-macro2",
3162
+ "quote",
3163
+ "syn",
3164
+ ]
3165
+
3166
+ [[package]]
3167
+ name = "turso_sync_engine"
3168
+ version = "0.5.1-pre.1"
3169
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3170
+ checksum = "ea90914ca364ca89d30338ec8c7a9bb765ae7471ac3f1417309e9e166db97b56"
3171
+ dependencies = [
3172
+ "base64",
3173
+ "bytes",
3174
+ "genawaiter",
3175
+ "http 1.4.0",
3176
+ "libc",
3177
+ "prost",
3178
+ "roaring",
3179
+ "serde",
3180
+ "serde_json",
3181
+ "thiserror 2.0.18",
3182
+ "tracing",
3183
+ "turso_core",
3184
+ "turso_parser",
3185
+ "uuid",
3186
+ ]
3187
+
3188
+ [[package]]
3189
+ name = "turso_sync_sdk_kit"
3190
+ version = "0.5.1-pre.1"
3191
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3192
+ checksum = "c8bbc5b3daa8721e1985c0dc14aa92b8d814532245453e6305ce430c7c4e95b3"
3193
+ dependencies = [
3194
+ "bindgen",
3195
+ "env_logger",
3196
+ "genawaiter",
3197
+ "parking_lot",
3198
+ "tracing",
3199
+ "tracing-appender",
3200
+ "tracing-subscriber",
3201
+ "turso_core",
3202
+ "turso_sdk_kit",
3203
+ "turso_sdk_kit_macros",
3204
+ "turso_sync_engine",
3205
+ ]
3206
+
3207
+ [[package]]
3208
+ name = "twox-hash"
3209
+ version = "2.1.2"
3210
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3211
+ checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
3212
+ dependencies = [
3213
+ "rand 0.9.2",
3214
+ ]
3215
+
3216
+ [[package]]
3217
+ name = "typenum"
3218
+ version = "1.19.0"
3219
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3220
+ checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3221
+
3222
+ [[package]]
3223
+ name = "uncased"
3224
+ version = "0.9.10"
3225
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3226
+ checksum = "e1b88fcfe09e89d3866a5c11019378088af2d24c3fbd4f0543f96b479ec90697"
3227
+ dependencies = [
3228
+ "version_check",
3229
+ ]
3230
+
3231
+ [[package]]
3232
+ name = "unicase"
3233
+ version = "2.9.0"
3234
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3235
+ checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
3236
+
3237
+ [[package]]
3238
+ name = "unicode-ident"
3239
+ version = "1.0.24"
3240
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3241
+ checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
3242
+
3243
+ [[package]]
3244
+ name = "unicode-segmentation"
3245
+ version = "1.12.0"
3246
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3247
+ checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
3248
+
3249
+ [[package]]
3250
+ name = "unicode-width"
3251
+ version = "0.1.14"
3252
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3253
+ checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3254
+
3255
+ [[package]]
3256
+ name = "unicode-width"
3257
+ version = "0.2.2"
3258
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3259
+ checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3260
+
3261
+ [[package]]
3262
+ name = "unicode-xid"
3263
+ version = "0.2.6"
3264
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3265
+ checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
3266
+
3267
+ [[package]]
3268
+ name = "unindent"
3269
+ version = "0.2.4"
3270
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3271
+ checksum = "7264e107f553ccae879d21fbea1d6724ac785e8c3bfc762137959b5802826ef3"
3272
+
3273
+ [[package]]
3274
+ name = "universal-hash"
3275
+ version = "0.5.1"
3276
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3277
+ checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
3278
+ dependencies = [
3279
+ "crypto-common",
3280
+ "subtle",
3281
+ ]
3282
+
3283
+ [[package]]
3284
+ name = "url"
3285
+ version = "2.5.8"
3286
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3287
+ checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
3288
+ dependencies = [
3289
+ "form_urlencoded",
3290
+ "idna",
3291
+ "percent-encoding",
3292
+ "serde",
3293
+ ]
3294
+
3295
+ [[package]]
3296
+ name = "utf8_iter"
3297
+ version = "1.0.4"
3298
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3299
+ checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3300
+
3301
+ [[package]]
3302
+ name = "utf8parse"
3303
+ version = "0.2.2"
3304
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3305
+ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3306
+
3307
+ [[package]]
3308
+ name = "utoipa"
3309
+ version = "5.4.0"
3310
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3311
+ checksum = "2fcc29c80c21c31608227e0912b2d7fddba57ad76b606890627ba8ee7964e993"
3312
+ dependencies = [
3313
+ "indexmap",
3314
+ "serde",
3315
+ "serde_json",
3316
+ "utoipa-gen",
3317
+ ]
3318
+
3319
+ [[package]]
3320
+ name = "utoipa-axum"
3321
+ version = "0.2.0"
3322
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3323
+ checksum = "7c25bae5bccc842449ec0c5ddc5cbb6a3a1eaeac4503895dc105a1138f8234a0"
3324
+ dependencies = [
3325
+ "axum 0.8.8",
3326
+ "paste",
3327
+ "tower-layer",
3328
+ "tower-service",
3329
+ "utoipa",
3330
+ ]
3331
+
3332
+ [[package]]
3333
+ name = "utoipa-gen"
3334
+ version = "5.4.0"
3335
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3336
+ checksum = "6d79d08d92ab8af4c5e8a6da20c47ae3f61a0f1dabc1997cdf2d082b757ca08b"
3337
+ dependencies = [
3338
+ "proc-macro2",
3339
+ "quote",
3340
+ "regex",
3341
+ "syn",
3342
+ ]
3343
+
3344
+ [[package]]
3345
+ name = "utoipa-swagger-ui"
3346
+ version = "9.0.2"
3347
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3348
+ checksum = "d047458f1b5b65237c2f6dc6db136945667f40a7668627b3490b9513a3d43a55"
3349
+ dependencies = [
3350
+ "axum 0.8.8",
3351
+ "base64",
3352
+ "mime_guess",
3353
+ "regex",
3354
+ "rust-embed",
3355
+ "serde",
3356
+ "serde_json",
3357
+ "url",
3358
+ "utoipa",
3359
+ "zip",
3360
+ ]
3361
+
3362
+ [[package]]
3363
+ name = "uuid"
3364
+ version = "1.22.0"
3365
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3366
+ checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
3367
+ dependencies = [
3368
+ "getrandom 0.4.2",
3369
+ "js-sys",
3370
+ "sha1_smol",
3371
+ "wasm-bindgen",
3372
+ ]
3373
+
3374
+ [[package]]
3375
+ name = "valuable"
3376
+ version = "0.1.1"
3377
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3378
+ checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3379
+
3380
+ [[package]]
3381
+ name = "version_check"
3382
+ version = "0.9.5"
3383
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3384
+ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3385
+
3386
+ [[package]]
3387
+ name = "wait-timeout"
3388
+ version = "0.2.1"
3389
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3390
+ checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
3391
+ dependencies = [
3392
+ "libc",
3393
+ ]
3394
+
3395
+ [[package]]
3396
+ name = "walkdir"
3397
+ version = "2.5.0"
3398
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3399
+ checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3400
+ dependencies = [
3401
+ "same-file",
3402
+ "winapi-util",
3403
+ ]
3404
+
3405
+ [[package]]
3406
+ name = "want"
3407
+ version = "0.3.1"
3408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3409
+ checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3410
+ dependencies = [
3411
+ "try-lock",
3412
+ ]
3413
+
3414
+ [[package]]
3415
+ name = "wasi"
3416
+ version = "0.11.1+wasi-snapshot-preview1"
3417
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3418
+ checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3419
+
3420
+ [[package]]
3421
+ name = "wasip2"
3422
+ version = "1.0.2+wasi-0.2.9"
3423
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3424
+ checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
3425
+ dependencies = [
3426
+ "wit-bindgen",
3427
+ ]
3428
+
3429
+ [[package]]
3430
+ name = "wasip3"
3431
+ version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3432
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3433
+ checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3434
+ dependencies = [
3435
+ "wit-bindgen",
3436
+ ]
3437
+
3438
+ [[package]]
3439
+ name = "wasm-bindgen"
3440
+ version = "0.2.114"
3441
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3442
+ checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
3443
+ dependencies = [
3444
+ "cfg-if",
3445
+ "once_cell",
3446
+ "rustversion",
3447
+ "wasm-bindgen-macro",
3448
+ "wasm-bindgen-shared",
3449
+ ]
3450
+
3451
+ [[package]]
3452
+ name = "wasm-bindgen-macro"
3453
+ version = "0.2.114"
3454
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3455
+ checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
3456
+ dependencies = [
3457
+ "quote",
3458
+ "wasm-bindgen-macro-support",
3459
+ ]
3460
+
3461
+ [[package]]
3462
+ name = "wasm-bindgen-macro-support"
3463
+ version = "0.2.114"
3464
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3465
+ checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
3466
+ dependencies = [
3467
+ "bumpalo",
3468
+ "proc-macro2",
3469
+ "quote",
3470
+ "syn",
3471
+ "wasm-bindgen-shared",
3472
+ ]
3473
+
3474
+ [[package]]
3475
+ name = "wasm-bindgen-shared"
3476
+ version = "0.2.114"
3477
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3478
+ checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
3479
+ dependencies = [
3480
+ "unicode-ident",
3481
+ ]
3482
+
3483
+ [[package]]
3484
+ name = "wasm-encoder"
3485
+ version = "0.244.0"
3486
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3487
+ checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3488
+ dependencies = [
3489
+ "leb128fmt",
3490
+ "wasmparser",
3491
+ ]
3492
+
3493
+ [[package]]
3494
+ name = "wasm-metadata"
3495
+ version = "0.244.0"
3496
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3497
+ checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3498
+ dependencies = [
3499
+ "anyhow",
3500
+ "indexmap",
3501
+ "wasm-encoder",
3502
+ "wasmparser",
3503
+ ]
3504
+
3505
+ [[package]]
3506
+ name = "wasmparser"
3507
+ version = "0.244.0"
3508
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3509
+ checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3510
+ dependencies = [
3511
+ "bitflags",
3512
+ "hashbrown 0.15.5",
3513
+ "indexmap",
3514
+ "semver",
3515
+ ]
3516
+
3517
+ [[package]]
3518
+ name = "which"
3519
+ version = "4.4.2"
3520
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3521
+ checksum = "87ba24419a2078cd2b0f2ede2691b6c66d8e47836da3b6db8265ebad47afbfc7"
3522
+ dependencies = [
3523
+ "either",
3524
+ "home",
3525
+ "once_cell",
3526
+ "rustix 0.38.44",
3527
+ ]
3528
+
3529
+ [[package]]
3530
+ name = "winapi"
3531
+ version = "0.3.9"
3532
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3533
+ checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3534
+ dependencies = [
3535
+ "winapi-i686-pc-windows-gnu",
3536
+ "winapi-x86_64-pc-windows-gnu",
3537
+ ]
3538
+
3539
+ [[package]]
3540
+ name = "winapi-i686-pc-windows-gnu"
3541
+ version = "0.4.0"
3542
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3543
+ checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3544
+
3545
+ [[package]]
3546
+ name = "winapi-util"
3547
+ version = "0.1.11"
3548
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3549
+ checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3550
+ dependencies = [
3551
+ "windows-sys 0.61.2",
3552
+ ]
3553
+
3554
+ [[package]]
3555
+ name = "winapi-x86_64-pc-windows-gnu"
3556
+ version = "0.4.0"
3557
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3558
+ checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3559
+
3560
+ [[package]]
3561
+ name = "windows-core"
3562
+ version = "0.62.2"
3563
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3564
+ checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3565
+ dependencies = [
3566
+ "windows-implement",
3567
+ "windows-interface",
3568
+ "windows-link",
3569
+ "windows-result",
3570
+ "windows-strings",
3571
+ ]
3572
+
3573
+ [[package]]
3574
+ name = "windows-implement"
3575
+ version = "0.60.2"
3576
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3577
+ checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3578
+ dependencies = [
3579
+ "proc-macro2",
3580
+ "quote",
3581
+ "syn",
3582
+ ]
3583
+
3584
+ [[package]]
3585
+ name = "windows-interface"
3586
+ version = "0.59.3"
3587
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3588
+ checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3589
+ dependencies = [
3590
+ "proc-macro2",
3591
+ "quote",
3592
+ "syn",
3593
+ ]
3594
+
3595
+ [[package]]
3596
+ name = "windows-link"
3597
+ version = "0.2.1"
3598
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3599
+ checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3600
+
3601
+ [[package]]
3602
+ name = "windows-result"
3603
+ version = "0.4.1"
3604
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3605
+ checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3606
+ dependencies = [
3607
+ "windows-link",
3608
+ ]
3609
+
3610
+ [[package]]
3611
+ name = "windows-strings"
3612
+ version = "0.5.1"
3613
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3614
+ checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3615
+ dependencies = [
3616
+ "windows-link",
3617
+ ]
3618
+
3619
+ [[package]]
3620
+ name = "windows-sys"
3621
+ version = "0.59.0"
3622
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3623
+ checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3624
+ dependencies = [
3625
+ "windows-targets",
3626
+ ]
3627
+
3628
+ [[package]]
3629
+ name = "windows-sys"
3630
+ version = "0.61.2"
3631
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3632
+ checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3633
+ dependencies = [
3634
+ "windows-link",
3635
+ ]
3636
+
3637
+ [[package]]
3638
+ name = "windows-targets"
3639
+ version = "0.52.6"
3640
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3641
+ checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3642
+ dependencies = [
3643
+ "windows_aarch64_gnullvm",
3644
+ "windows_aarch64_msvc",
3645
+ "windows_i686_gnu",
3646
+ "windows_i686_gnullvm",
3647
+ "windows_i686_msvc",
3648
+ "windows_x86_64_gnu",
3649
+ "windows_x86_64_gnullvm",
3650
+ "windows_x86_64_msvc",
3651
+ ]
3652
+
3653
+ [[package]]
3654
+ name = "windows_aarch64_gnullvm"
3655
+ version = "0.52.6"
3656
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3657
+ checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3658
+
3659
+ [[package]]
3660
+ name = "windows_aarch64_msvc"
3661
+ version = "0.52.6"
3662
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3663
+ checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3664
+
3665
+ [[package]]
3666
+ name = "windows_i686_gnu"
3667
+ version = "0.52.6"
3668
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3669
+ checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3670
+
3671
+ [[package]]
3672
+ name = "windows_i686_gnullvm"
3673
+ version = "0.52.6"
3674
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3675
+ checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3676
+
3677
+ [[package]]
3678
+ name = "windows_i686_msvc"
3679
+ version = "0.52.6"
3680
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3681
+ checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3682
+
3683
+ [[package]]
3684
+ name = "windows_x86_64_gnu"
3685
+ version = "0.52.6"
3686
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3687
+ checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3688
+
3689
+ [[package]]
3690
+ name = "windows_x86_64_gnullvm"
3691
+ version = "0.52.6"
3692
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3693
+ checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3694
+
3695
+ [[package]]
3696
+ name = "windows_x86_64_msvc"
3697
+ version = "0.52.6"
3698
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3699
+ checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3700
+
3701
+ [[package]]
3702
+ name = "winnow"
3703
+ version = "0.7.15"
3704
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3705
+ checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
3706
+ dependencies = [
3707
+ "memchr",
3708
+ ]
3709
+
3710
+ [[package]]
3711
+ name = "wit-bindgen"
3712
+ version = "0.51.0"
3713
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3714
+ checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3715
+ dependencies = [
3716
+ "wit-bindgen-rust-macro",
3717
+ ]
3718
+
3719
+ [[package]]
3720
+ name = "wit-bindgen-core"
3721
+ version = "0.51.0"
3722
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3723
+ checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3724
+ dependencies = [
3725
+ "anyhow",
3726
+ "heck",
3727
+ "wit-parser",
3728
+ ]
3729
+
3730
+ [[package]]
3731
+ name = "wit-bindgen-rust"
3732
+ version = "0.51.0"
3733
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3734
+ checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3735
+ dependencies = [
3736
+ "anyhow",
3737
+ "heck",
3738
+ "indexmap",
3739
+ "prettyplease",
3740
+ "syn",
3741
+ "wasm-metadata",
3742
+ "wit-bindgen-core",
3743
+ "wit-component",
3744
+ ]
3745
+
3746
+ [[package]]
3747
+ name = "wit-bindgen-rust-macro"
3748
+ version = "0.51.0"
3749
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3750
+ checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3751
+ dependencies = [
3752
+ "anyhow",
3753
+ "prettyplease",
3754
+ "proc-macro2",
3755
+ "quote",
3756
+ "syn",
3757
+ "wit-bindgen-core",
3758
+ "wit-bindgen-rust",
3759
+ ]
3760
+
3761
+ [[package]]
3762
+ name = "wit-component"
3763
+ version = "0.244.0"
3764
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3765
+ checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3766
+ dependencies = [
3767
+ "anyhow",
3768
+ "bitflags",
3769
+ "indexmap",
3770
+ "log",
3771
+ "serde",
3772
+ "serde_derive",
3773
+ "serde_json",
3774
+ "wasm-encoder",
3775
+ "wasm-metadata",
3776
+ "wasmparser",
3777
+ "wit-parser",
3778
+ ]
3779
+
3780
+ [[package]]
3781
+ name = "wit-parser"
3782
+ version = "0.244.0"
3783
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3784
+ checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3785
+ dependencies = [
3786
+ "anyhow",
3787
+ "id-arena",
3788
+ "indexmap",
3789
+ "log",
3790
+ "semver",
3791
+ "serde",
3792
+ "serde_derive",
3793
+ "serde_json",
3794
+ "unicode-xid",
3795
+ "wasmparser",
3796
+ ]
3797
+
3798
+ [[package]]
3799
+ name = "writeable"
3800
+ version = "0.6.2"
3801
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3802
+ checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3803
+
3804
+ [[package]]
3805
+ name = "wyz"
3806
+ version = "0.5.1"
3807
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3808
+ checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
3809
+ dependencies = [
3810
+ "tap",
3811
+ ]
3812
+
3813
+ [[package]]
3814
+ name = "yansi"
3815
+ version = "1.0.1"
3816
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3817
+ checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
3818
+
3819
+ [[package]]
3820
+ name = "yoke"
3821
+ version = "0.8.1"
3822
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3823
+ checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3824
+ dependencies = [
3825
+ "stable_deref_trait",
3826
+ "yoke-derive",
3827
+ "zerofrom",
3828
+ ]
3829
+
3830
+ [[package]]
3831
+ name = "yoke-derive"
3832
+ version = "0.8.1"
3833
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3834
+ checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3835
+ dependencies = [
3836
+ "proc-macro2",
3837
+ "quote",
3838
+ "syn",
3839
+ "synstructure",
3840
+ ]
3841
+
3842
+ [[package]]
3843
+ name = "zerocopy"
3844
+ version = "0.8.40"
3845
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3846
+ checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5"
3847
+ dependencies = [
3848
+ "zerocopy-derive",
3849
+ ]
3850
+
3851
+ [[package]]
3852
+ name = "zerocopy-derive"
3853
+ version = "0.8.40"
3854
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3855
+ checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953"
3856
+ dependencies = [
3857
+ "proc-macro2",
3858
+ "quote",
3859
+ "syn",
3860
+ ]
3861
+
3862
+ [[package]]
3863
+ name = "zerofrom"
3864
+ version = "0.1.6"
3865
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3866
+ checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3867
+ dependencies = [
3868
+ "zerofrom-derive",
3869
+ ]
3870
+
3871
+ [[package]]
3872
+ name = "zerofrom-derive"
3873
+ version = "0.1.6"
3874
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3875
+ checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3876
+ dependencies = [
3877
+ "proc-macro2",
3878
+ "quote",
3879
+ "syn",
3880
+ "synstructure",
3881
+ ]
3882
+
3883
+ [[package]]
3884
+ name = "zerotrie"
3885
+ version = "0.2.3"
3886
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3887
+ checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3888
+ dependencies = [
3889
+ "displaydoc",
3890
+ "yoke",
3891
+ "zerofrom",
3892
+ ]
3893
+
3894
+ [[package]]
3895
+ name = "zerovec"
3896
+ version = "0.11.5"
3897
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3898
+ checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3899
+ dependencies = [
3900
+ "yoke",
3901
+ "zerofrom",
3902
+ "zerovec-derive",
3903
+ ]
3904
+
3905
+ [[package]]
3906
+ name = "zerovec-derive"
3907
+ version = "0.11.2"
3908
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3909
+ checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3910
+ dependencies = [
3911
+ "proc-macro2",
3912
+ "quote",
3913
+ "syn",
3914
+ ]
3915
+
3916
+ [[package]]
3917
+ name = "zip"
3918
+ version = "3.0.0"
3919
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3920
+ checksum = "12598812502ed0105f607f941c386f43d441e00148fce9dec3ca5ffb0bde9308"
3921
+ dependencies = [
3922
+ "arbitrary",
3923
+ "crc32fast",
3924
+ "flate2",
3925
+ "indexmap",
3926
+ "memchr",
3927
+ "zopfli",
3928
+ ]
3929
+
3930
+ [[package]]
3931
+ name = "zlib-rs"
3932
+ version = "0.6.3"
3933
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3934
+ checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
3935
+
3936
+ [[package]]
3937
+ name = "zmij"
3938
+ version = "1.0.21"
3939
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3940
+ checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
3941
+
3942
+ [[package]]
3943
+ name = "zopfli"
3944
+ version = "0.8.3"
3945
+ source = "registry+https://github.com/rust-lang/crates.io-index"
3946
+ checksum = "f05cd8797d63865425ff89b5c4a48804f35ba0ce8d125800027ad6017d2b5249"
3947
+ dependencies = [
3948
+ "bumpalo",
3949
+ "crc32fast",
3950
+ "log",
3951
+ "simd-adler32",
3952
+ ]