A local-first private AI assistant for everyday use. Runs on-device models with encrypted P2P sync, and supports sharing chats publicly on ATProto.
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "acto"
7version = "0.8.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "148541f13c28e3e840354ee4d6c99046c10be2c81068bbd23b9e3a38f95a917e"
10dependencies = [
11 "parking_lot",
12 "pin-project-lite",
13 "rustc_version",
14 "smol_str",
15 "sync_wrapper",
16 "tokio",
17 "tracing",
18]
19
20[[package]]
21name = "adler2"
22version = "2.0.1"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
25
26[[package]]
27name = "aead"
28version = "0.5.2"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
31dependencies = [
32 "crypto-common 0.1.7",
33 "generic-array",
34]
35
36[[package]]
37name = "aes"
38version = "0.8.4"
39source = "registry+https://github.com/rust-lang/crates.io-index"
40checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
41dependencies = [
42 "cfg-if",
43 "cipher",
44 "cpufeatures 0.2.17",
45]
46
47[[package]]
48name = "aes-gcm"
49version = "0.10.3"
50source = "registry+https://github.com/rust-lang/crates.io-index"
51checksum = "831010a0f742e1209b3bcea8fab6a8e149051ba6099432c8cb2cc117dec3ead1"
52dependencies = [
53 "aead",
54 "aes",
55 "cipher",
56 "ctr",
57 "ghash",
58 "subtle",
59]
60
61[[package]]
62name = "ahash"
63version = "0.8.12"
64source = "registry+https://github.com/rust-lang/crates.io-index"
65checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
66dependencies = [
67 "cfg-if",
68 "const-random",
69 "getrandom 0.3.4",
70 "once_cell",
71 "version_check",
72 "zerocopy",
73]
74
75[[package]]
76name = "aho-corasick"
77version = "1.1.4"
78source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
80dependencies = [
81 "memchr",
82]
83
84[[package]]
85name = "alloc-no-stdlib"
86version = "2.0.4"
87source = "registry+https://github.com/rust-lang/crates.io-index"
88checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
89
90[[package]]
91name = "alloc-stdlib"
92version = "0.2.2"
93source = "registry+https://github.com/rust-lang/crates.io-index"
94checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
95dependencies = [
96 "alloc-no-stdlib",
97]
98
99[[package]]
100name = "allocator-api2"
101version = "0.2.21"
102source = "registry+https://github.com/rust-lang/crates.io-index"
103checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
104
105[[package]]
106name = "android_system_properties"
107version = "0.1.5"
108source = "registry+https://github.com/rust-lang/crates.io-index"
109checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
110dependencies = [
111 "libc",
112]
113
114[[package]]
115name = "anstream"
116version = "1.0.0"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
119dependencies = [
120 "anstyle",
121 "anstyle-parse",
122 "anstyle-query",
123 "anstyle-wincon",
124 "colorchoice",
125 "is_terminal_polyfill",
126 "utf8parse",
127]
128
129[[package]]
130name = "anstyle"
131version = "1.0.14"
132source = "registry+https://github.com/rust-lang/crates.io-index"
133checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
134
135[[package]]
136name = "anstyle-parse"
137version = "1.0.0"
138source = "registry+https://github.com/rust-lang/crates.io-index"
139checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
140dependencies = [
141 "utf8parse",
142]
143
144[[package]]
145name = "anstyle-query"
146version = "1.1.5"
147source = "registry+https://github.com/rust-lang/crates.io-index"
148checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
149dependencies = [
150 "windows-sys 0.61.2",
151]
152
153[[package]]
154name = "anstyle-wincon"
155version = "3.0.11"
156source = "registry+https://github.com/rust-lang/crates.io-index"
157checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
158dependencies = [
159 "anstyle",
160 "once_cell_polyfill",
161 "windows-sys 0.61.2",
162]
163
164[[package]]
165name = "anyhow"
166version = "1.0.102"
167source = "registry+https://github.com/rust-lang/crates.io-index"
168checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
169
170[[package]]
171name = "arbitrary"
172version = "1.4.2"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "c3d036a3c4ab069c7b410a2ce876bd74808d2d0888a82667669f8e783a898bf1"
175
176[[package]]
177name = "arc-swap"
178version = "1.8.2"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "f9f3647c145568cec02c42054e07bdf9a5a698e15b466fb2341bfc393cd24aa5"
181dependencies = [
182 "rustversion",
183]
184
185[[package]]
186name = "arrayref"
187version = "0.3.9"
188source = "registry+https://github.com/rust-lang/crates.io-index"
189checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
190
191[[package]]
192name = "arrayvec"
193version = "0.7.6"
194source = "registry+https://github.com/rust-lang/crates.io-index"
195checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
196
197[[package]]
198name = "arrow"
199version = "56.2.0"
200source = "registry+https://github.com/rust-lang/crates.io-index"
201checksum = "6e833808ff2d94ed40d9379848a950d995043c7fb3e81a30b383f4c6033821cc"
202dependencies = [
203 "arrow-arith",
204 "arrow-array",
205 "arrow-buffer",
206 "arrow-cast",
207 "arrow-csv",
208 "arrow-data",
209 "arrow-ipc",
210 "arrow-json",
211 "arrow-ord",
212 "arrow-row",
213 "arrow-schema",
214 "arrow-select",
215 "arrow-string",
216]
217
218[[package]]
219name = "arrow-arith"
220version = "56.2.0"
221source = "registry+https://github.com/rust-lang/crates.io-index"
222checksum = "ad08897b81588f60ba983e3ca39bda2b179bdd84dced378e7df81a5313802ef8"
223dependencies = [
224 "arrow-array",
225 "arrow-buffer",
226 "arrow-data",
227 "arrow-schema",
228 "chrono",
229 "num",
230]
231
232[[package]]
233name = "arrow-array"
234version = "56.2.0"
235source = "registry+https://github.com/rust-lang/crates.io-index"
236checksum = "8548ca7c070d8db9ce7aa43f37393e4bfcf3f2d3681df278490772fd1673d08d"
237dependencies = [
238 "ahash",
239 "arrow-buffer",
240 "arrow-data",
241 "arrow-schema",
242 "chrono",
243 "half",
244 "hashbrown 0.16.1",
245 "num",
246]
247
248[[package]]
249name = "arrow-buffer"
250version = "56.2.0"
251source = "registry+https://github.com/rust-lang/crates.io-index"
252checksum = "e003216336f70446457e280807a73899dd822feaf02087d31febca1363e2fccc"
253dependencies = [
254 "bytes",
255 "half",
256 "num",
257]
258
259[[package]]
260name = "arrow-cast"
261version = "56.2.0"
262source = "registry+https://github.com/rust-lang/crates.io-index"
263checksum = "919418a0681298d3a77d1a315f625916cb5678ad0d74b9c60108eb15fd083023"
264dependencies = [
265 "arrow-array",
266 "arrow-buffer",
267 "arrow-data",
268 "arrow-schema",
269 "arrow-select",
270 "atoi",
271 "base64",
272 "chrono",
273 "half",
274 "lexical-core",
275 "num",
276 "ryu",
277]
278
279[[package]]
280name = "arrow-csv"
281version = "56.2.0"
282source = "registry+https://github.com/rust-lang/crates.io-index"
283checksum = "bfa9bf02705b5cf762b6f764c65f04ae9082c7cfc4e96e0c33548ee3f67012eb"
284dependencies = [
285 "arrow-array",
286 "arrow-cast",
287 "arrow-schema",
288 "chrono",
289 "csv",
290 "csv-core",
291 "regex",
292]
293
294[[package]]
295name = "arrow-data"
296version = "56.2.0"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "a5c64fff1d142f833d78897a772f2e5b55b36cb3e6320376f0961ab0db7bd6d0"
299dependencies = [
300 "arrow-buffer",
301 "arrow-schema",
302 "half",
303 "num",
304]
305
306[[package]]
307name = "arrow-ipc"
308version = "56.2.0"
309source = "registry+https://github.com/rust-lang/crates.io-index"
310checksum = "1d3594dcddccc7f20fd069bc8e9828ce37220372680ff638c5e00dea427d88f5"
311dependencies = [
312 "arrow-array",
313 "arrow-buffer",
314 "arrow-data",
315 "arrow-schema",
316 "arrow-select",
317 "flatbuffers",
318]
319
320[[package]]
321name = "arrow-json"
322version = "56.2.0"
323source = "registry+https://github.com/rust-lang/crates.io-index"
324checksum = "88cf36502b64a127dc659e3b305f1d993a544eab0d48cce704424e62074dc04b"
325dependencies = [
326 "arrow-array",
327 "arrow-buffer",
328 "arrow-cast",
329 "arrow-data",
330 "arrow-schema",
331 "chrono",
332 "half",
333 "indexmap",
334 "lexical-core",
335 "memchr",
336 "num",
337 "serde",
338 "serde_json",
339 "simdutf8",
340]
341
342[[package]]
343name = "arrow-ord"
344version = "56.2.0"
345source = "registry+https://github.com/rust-lang/crates.io-index"
346checksum = "3c8f82583eb4f8d84d4ee55fd1cb306720cddead7596edce95b50ee418edf66f"
347dependencies = [
348 "arrow-array",
349 "arrow-buffer",
350 "arrow-data",
351 "arrow-schema",
352 "arrow-select",
353]
354
355[[package]]
356name = "arrow-row"
357version = "56.2.0"
358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "9d07ba24522229d9085031df6b94605e0f4b26e099fb7cdeec37abd941a73753"
360dependencies = [
361 "arrow-array",
362 "arrow-buffer",
363 "arrow-data",
364 "arrow-schema",
365 "half",
366]
367
368[[package]]
369name = "arrow-schema"
370version = "56.2.0"
371source = "registry+https://github.com/rust-lang/crates.io-index"
372checksum = "b3aa9e59c611ebc291c28582077ef25c97f1975383f1479b12f3b9ffee2ffabe"
373
374[[package]]
375name = "arrow-select"
376version = "56.2.0"
377source = "registry+https://github.com/rust-lang/crates.io-index"
378checksum = "8c41dbbd1e97bfcaee4fcb30e29105fb2c75e4d82ae4de70b792a5d3f66b2e7a"
379dependencies = [
380 "ahash",
381 "arrow-array",
382 "arrow-buffer",
383 "arrow-data",
384 "arrow-schema",
385 "num",
386]
387
388[[package]]
389name = "arrow-string"
390version = "56.2.0"
391source = "registry+https://github.com/rust-lang/crates.io-index"
392checksum = "53f5183c150fbc619eede22b861ea7c0eebed8eaac0333eaa7f6da5205fd504d"
393dependencies = [
394 "arrow-array",
395 "arrow-buffer",
396 "arrow-data",
397 "arrow-schema",
398 "arrow-select",
399 "memchr",
400 "num",
401 "regex",
402 "regex-syntax",
403]
404
405[[package]]
406name = "as-any"
407version = "0.3.2"
408source = "registry+https://github.com/rust-lang/crates.io-index"
409checksum = "b0f477b951e452a0b6b4a10b53ccd569042d1d01729b519e02074a9c0958a063"
410
411[[package]]
412name = "asn1-rs"
413version = "0.7.1"
414source = "registry+https://github.com/rust-lang/crates.io-index"
415checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
416dependencies = [
417 "asn1-rs-derive",
418 "asn1-rs-impl",
419 "displaydoc",
420 "nom 7.1.3",
421 "num-traits",
422 "rusticata-macros",
423 "thiserror 2.0.18",
424 "time",
425]
426
427[[package]]
428name = "asn1-rs-derive"
429version = "0.6.0"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
432dependencies = [
433 "proc-macro2",
434 "quote",
435 "syn 2.0.117",
436 "synstructure",
437]
438
439[[package]]
440name = "asn1-rs-impl"
441version = "0.2.0"
442source = "registry+https://github.com/rust-lang/crates.io-index"
443checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
444dependencies = [
445 "proc-macro2",
446 "quote",
447 "syn 2.0.117",
448]
449
450[[package]]
451name = "assert-json-diff"
452version = "2.0.2"
453source = "registry+https://github.com/rust-lang/crates.io-index"
454checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
455dependencies = [
456 "serde",
457 "serde_json",
458]
459
460[[package]]
461name = "async-attributes"
462version = "1.1.2"
463source = "registry+https://github.com/rust-lang/crates.io-index"
464checksum = "a3203e79f4dd9bdda415ed03cf14dae5a2bf775c683a00f94e9cd1faf0f596e5"
465dependencies = [
466 "quote",
467 "syn 1.0.109",
468]
469
470[[package]]
471name = "async-channel"
472version = "1.9.0"
473source = "registry+https://github.com/rust-lang/crates.io-index"
474checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
475dependencies = [
476 "concurrent-queue",
477 "event-listener 2.5.3",
478 "futures-core",
479]
480
481[[package]]
482name = "async-channel"
483version = "2.5.0"
484source = "registry+https://github.com/rust-lang/crates.io-index"
485checksum = "924ed96dd52d1b75e9c1a3e6275715fd320f5f9439fb5a4a11fa51f4221158d2"
486dependencies = [
487 "concurrent-queue",
488 "event-listener-strategy",
489 "futures-core",
490 "pin-project-lite",
491]
492
493[[package]]
494name = "async-compression"
495version = "0.4.41"
496source = "registry+https://github.com/rust-lang/crates.io-index"
497checksum = "d0f9ee0f6e02ffd7ad5816e9464499fba7b3effd01123b515c41d1697c43dad1"
498dependencies = [
499 "compression-codecs",
500 "compression-core",
501 "pin-project-lite",
502 "tokio",
503]
504
505[[package]]
506name = "async-executor"
507version = "1.14.0"
508source = "registry+https://github.com/rust-lang/crates.io-index"
509checksum = "c96bf972d85afc50bf5ab8fe2d54d1586b4e0b46c97c50a0c9e71e2f7bcd812a"
510dependencies = [
511 "async-task",
512 "concurrent-queue",
513 "fastrand",
514 "futures-lite",
515 "pin-project-lite",
516 "slab",
517]
518
519[[package]]
520name = "async-global-executor"
521version = "2.4.1"
522source = "registry+https://github.com/rust-lang/crates.io-index"
523checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
524dependencies = [
525 "async-channel 2.5.0",
526 "async-executor",
527 "async-io",
528 "async-lock",
529 "blocking",
530 "futures-lite",
531 "once_cell",
532]
533
534[[package]]
535name = "async-io"
536version = "2.6.0"
537source = "registry+https://github.com/rust-lang/crates.io-index"
538checksum = "456b8a8feb6f42d237746d4b3e9a178494627745c3c56c6ea55d92ba50d026fc"
539dependencies = [
540 "autocfg",
541 "cfg-if",
542 "concurrent-queue",
543 "futures-io",
544 "futures-lite",
545 "parking",
546 "polling",
547 "rustix",
548 "slab",
549 "windows-sys 0.61.2",
550]
551
552[[package]]
553name = "async-lock"
554version = "3.4.2"
555source = "registry+https://github.com/rust-lang/crates.io-index"
556checksum = "290f7f2596bd5b78a9fec8088ccd89180d7f9f55b94b0576823bbbdc72ee8311"
557dependencies = [
558 "event-listener 5.4.1",
559 "event-listener-strategy",
560 "pin-project-lite",
561]
562
563[[package]]
564name = "async-signature"
565version = "0.5.1"
566source = "registry+https://github.com/rust-lang/crates.io-index"
567checksum = "646dcc11163091f40c1618702bcde3d2e152c52b05fc4527fc67cfe077e47c22"
568dependencies = [
569 "signature 2.2.0",
570]
571
572[[package]]
573name = "async-std"
574version = "1.13.2"
575source = "registry+https://github.com/rust-lang/crates.io-index"
576checksum = "2c8e079a4ab67ae52b7403632e4618815d6db36d2a010cfe41b02c1b1578f93b"
577dependencies = [
578 "async-attributes",
579 "async-channel 1.9.0",
580 "async-global-executor",
581 "async-io",
582 "async-lock",
583 "crossbeam-utils",
584 "futures-channel",
585 "futures-core",
586 "futures-io",
587 "futures-lite",
588 "gloo-timers",
589 "kv-log-macro",
590 "log",
591 "memchr",
592 "once_cell",
593 "pin-project-lite",
594 "pin-utils",
595 "slab",
596 "wasm-bindgen-futures",
597]
598
599[[package]]
600name = "async-stream"
601version = "0.3.6"
602source = "registry+https://github.com/rust-lang/crates.io-index"
603checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
604dependencies = [
605 "async-stream-impl",
606 "futures-core",
607 "pin-project-lite",
608]
609
610[[package]]
611name = "async-stream-impl"
612version = "0.3.6"
613source = "registry+https://github.com/rust-lang/crates.io-index"
614checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
615dependencies = [
616 "proc-macro2",
617 "quote",
618 "syn 2.0.117",
619]
620
621[[package]]
622name = "async-task"
623version = "4.7.1"
624source = "registry+https://github.com/rust-lang/crates.io-index"
625checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
626
627[[package]]
628name = "async-trait"
629version = "0.1.89"
630source = "registry+https://github.com/rust-lang/crates.io-index"
631checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
632dependencies = [
633 "proc-macro2",
634 "quote",
635 "syn 2.0.117",
636]
637
638[[package]]
639name = "async_io_stream"
640version = "0.3.3"
641source = "registry+https://github.com/rust-lang/crates.io-index"
642checksum = "b6d7b9decdf35d8908a7e3ef02f64c5e9b1695e230154c0e8de3969142d9b94c"
643dependencies = [
644 "futures",
645 "pharos",
646 "rustc_version",
647]
648
649[[package]]
650name = "atoi"
651version = "2.0.0"
652source = "registry+https://github.com/rust-lang/crates.io-index"
653checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
654dependencies = [
655 "num-traits",
656]
657
658[[package]]
659name = "atomic-polyfill"
660version = "1.0.3"
661source = "registry+https://github.com/rust-lang/crates.io-index"
662checksum = "8cf2bce30dfe09ef0bfaef228b9d414faaf7e563035494d7fe092dba54b300f4"
663dependencies = [
664 "critical-section",
665]
666
667[[package]]
668name = "atomic-waker"
669version = "1.1.2"
670source = "registry+https://github.com/rust-lang/crates.io-index"
671checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
672
673[[package]]
674name = "atrium-api"
675version = "0.25.8"
676source = "registry+https://github.com/rust-lang/crates.io-index"
677checksum = "e04c38c6bfc922a7950a13ad52f8d21bee77020b90e822364c7ec8625c4cd403"
678dependencies = [
679 "atrium-common",
680 "atrium-xrpc",
681 "chrono",
682 "http",
683 "ipld-core",
684 "langtag",
685 "regex",
686 "serde",
687 "serde_bytes",
688 "serde_json",
689 "thiserror 1.0.69",
690 "tokio",
691 "trait-variant",
692]
693
694[[package]]
695name = "atrium-common"
696version = "0.1.4"
697source = "registry+https://github.com/rust-lang/crates.io-index"
698checksum = "98466259d2e6189ddf3439b96432d5303668b4d51c2a78996934d981065550f3"
699dependencies = [
700 "dashmap",
701 "lru",
702 "moka",
703 "thiserror 1.0.69",
704 "tokio",
705 "trait-variant",
706 "web-time",
707]
708
709[[package]]
710name = "atrium-identity"
711version = "0.1.9"
712source = "registry+https://github.com/rust-lang/crates.io-index"
713checksum = "c11c7225bc15376200cbb81fb9c91a9ce8000edac76484dc636cca2ec200f673"
714dependencies = [
715 "atrium-api",
716 "atrium-common",
717 "atrium-xrpc",
718 "serde",
719 "serde_html_form",
720 "serde_json",
721 "thiserror 1.0.69",
722 "trait-variant",
723]
724
725[[package]]
726name = "atrium-oauth"
727version = "0.1.7"
728source = "registry+https://github.com/rust-lang/crates.io-index"
729checksum = "8d027eb47a804181f5a0632cf0af816227a89a64aa0c1ac99e92e999dcc4939b"
730dependencies = [
731 "atrium-api",
732 "atrium-common",
733 "atrium-identity",
734 "atrium-xrpc",
735 "base64",
736 "chrono",
737 "dashmap",
738 "ecdsa",
739 "elliptic-curve",
740 "jose-jwa",
741 "jose-jwk",
742 "p256",
743 "rand 0.8.5",
744 "reqwest",
745 "serde",
746 "serde_html_form",
747 "serde_json",
748 "sha2 0.10.9",
749 "thiserror 1.0.69",
750 "tokio",
751 "trait-variant",
752]
753
754[[package]]
755name = "atrium-xrpc"
756version = "0.12.4"
757source = "registry+https://github.com/rust-lang/crates.io-index"
758checksum = "944b35cc08732d40ddbb3356be9e38d11aed4b4c40c33f5b0f235e0650eff296"
759dependencies = [
760 "http",
761 "serde",
762 "serde_html_form",
763 "serde_json",
764 "thiserror 1.0.69",
765 "trait-variant",
766]
767
768[[package]]
769name = "attohttpc"
770version = "0.30.1"
771source = "registry+https://github.com/rust-lang/crates.io-index"
772checksum = "16e2cdb6d5ed835199484bb92bb8b3edd526effe995c61732580439c1a67e2e9"
773dependencies = [
774 "base64",
775 "http",
776 "log",
777 "url",
778]
779
780[[package]]
781name = "autocfg"
782version = "1.5.0"
783source = "registry+https://github.com/rust-lang/crates.io-index"
784checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
785
786[[package]]
787name = "axum"
788version = "0.8.8"
789source = "registry+https://github.com/rust-lang/crates.io-index"
790checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
791dependencies = [
792 "axum-core",
793 "bytes",
794 "form_urlencoded",
795 "futures-util",
796 "http",
797 "http-body",
798 "http-body-util",
799 "hyper",
800 "hyper-util",
801 "itoa",
802 "matchit",
803 "memchr",
804 "mime",
805 "percent-encoding",
806 "pin-project-lite",
807 "serde_core",
808 "serde_json",
809 "serde_path_to_error",
810 "serde_urlencoded",
811 "sync_wrapper",
812 "tokio",
813 "tower",
814 "tower-layer",
815 "tower-service",
816 "tracing",
817]
818
819[[package]]
820name = "axum-core"
821version = "0.5.6"
822source = "registry+https://github.com/rust-lang/crates.io-index"
823checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
824dependencies = [
825 "bytes",
826 "futures-core",
827 "http",
828 "http-body",
829 "http-body-util",
830 "mime",
831 "pin-project-lite",
832 "sync_wrapper",
833 "tower-layer",
834 "tower-service",
835 "tracing",
836]
837
838[[package]]
839name = "axum-macros"
840version = "0.5.0"
841source = "registry+https://github.com/rust-lang/crates.io-index"
842checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
843dependencies = [
844 "proc-macro2",
845 "quote",
846 "syn 2.0.117",
847]
848
849[[package]]
850name = "backon"
851version = "1.6.0"
852source = "registry+https://github.com/rust-lang/crates.io-index"
853checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
854dependencies = [
855 "fastrand",
856 "gloo-timers",
857 "tokio",
858]
859
860[[package]]
861name = "bao-tree"
862version = "0.16.0"
863source = "registry+https://github.com/rust-lang/crates.io-index"
864checksum = "06384416b1825e6e04fde63262fda2dc408f5b64c02d04e0d8b70ae72c17a52b"
865dependencies = [
866 "blake3",
867 "bytes",
868 "futures-lite",
869 "genawaiter",
870 "iroh-io",
871 "positioned-io",
872 "range-collections",
873 "self_cell",
874 "serde",
875 "smallvec",
876 "tokio",
877]
878
879[[package]]
880name = "base-x"
881version = "0.2.11"
882source = "registry+https://github.com/rust-lang/crates.io-index"
883checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
884
885[[package]]
886name = "base16ct"
887version = "0.2.0"
888source = "registry+https://github.com/rust-lang/crates.io-index"
889checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
890
891[[package]]
892name = "base256emoji"
893version = "1.0.2"
894source = "registry+https://github.com/rust-lang/crates.io-index"
895checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c"
896dependencies = [
897 "const-str",
898 "match-lookup",
899]
900
901[[package]]
902name = "base32"
903version = "0.5.1"
904source = "registry+https://github.com/rust-lang/crates.io-index"
905checksum = "022dfe9eb35f19ebbcb51e0b40a5ab759f46ad60cadf7297e0bd085afb50e076"
906
907[[package]]
908name = "base58"
909version = "0.2.0"
910source = "registry+https://github.com/rust-lang/crates.io-index"
911checksum = "6107fe1be6682a68940da878d9e9f5e90ca5745b3dec9fd1bb393c8777d4f581"
912
913[[package]]
914name = "base64"
915version = "0.22.1"
916source = "registry+https://github.com/rust-lang/crates.io-index"
917checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
918
919[[package]]
920name = "base64ct"
921version = "1.8.3"
922source = "registry+https://github.com/rust-lang/crates.io-index"
923checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
924
925[[package]]
926name = "binary-merge"
927version = "0.1.2"
928source = "registry+https://github.com/rust-lang/crates.io-index"
929checksum = "597bb81c80a54b6a4381b23faba8d7774b144c94cbd1d6fe3f1329bd776554ab"
930
931[[package]]
932name = "bincode"
933version = "1.3.3"
934source = "registry+https://github.com/rust-lang/crates.io-index"
935checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
936dependencies = [
937 "serde",
938]
939
940[[package]]
941name = "bitflags"
942version = "2.11.0"
943source = "registry+https://github.com/rust-lang/crates.io-index"
944checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
945
946[[package]]
947name = "blake3"
948version = "1.8.3"
949source = "registry+https://github.com/rust-lang/crates.io-index"
950checksum = "2468ef7d57b3fb7e16b576e8377cdbde2320c60e1491e961d11da40fc4f02a2d"
951dependencies = [
952 "arrayref",
953 "arrayvec",
954 "cc",
955 "cfg-if",
956 "constant_time_eq",
957 "cpufeatures 0.2.17",
958]
959
960[[package]]
961name = "block-buffer"
962version = "0.10.4"
963source = "registry+https://github.com/rust-lang/crates.io-index"
964checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
965dependencies = [
966 "generic-array",
967]
968
969[[package]]
970name = "block-buffer"
971version = "0.11.0"
972source = "registry+https://github.com/rust-lang/crates.io-index"
973checksum = "96eb4cdd6cf1b31d671e9efe75c5d1ec614776856cefbe109ca373554a6d514f"
974dependencies = [
975 "hybrid-array",
976]
977
978[[package]]
979name = "block2"
980version = "0.6.2"
981source = "registry+https://github.com/rust-lang/crates.io-index"
982checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5"
983dependencies = [
984 "objc2",
985]
986
987[[package]]
988name = "blocking"
989version = "1.6.2"
990source = "registry+https://github.com/rust-lang/crates.io-index"
991checksum = "e83f8d02be6967315521be875afa792a316e28d57b5a2d401897e2a7921b7f21"
992dependencies = [
993 "async-channel 2.5.0",
994 "async-task",
995 "futures-io",
996 "futures-lite",
997 "piper",
998]
999
1000[[package]]
1001name = "bon"
1002version = "3.9.1"
1003source = "registry+https://github.com/rust-lang/crates.io-index"
1004checksum = "f47dbe92550676ee653353c310dfb9cf6ba17ee70396e1f7cf0a2020ad49b2fe"
1005dependencies = [
1006 "bon-macros",
1007 "rustversion",
1008]
1009
1010[[package]]
1011name = "bon-macros"
1012version = "3.9.1"
1013source = "registry+https://github.com/rust-lang/crates.io-index"
1014checksum = "519bd3116aeeb42d5372c29d982d16d0170d3d4a5ed85fc7dd91642ffff3c67c"
1015dependencies = [
1016 "darling 0.23.0",
1017 "ident_case",
1018 "prettyplease",
1019 "proc-macro2",
1020 "quote",
1021 "rustversion",
1022 "syn 2.0.117",
1023]
1024
1025[[package]]
1026name = "brotli"
1027version = "8.0.2"
1028source = "registry+https://github.com/rust-lang/crates.io-index"
1029checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560"
1030dependencies = [
1031 "alloc-no-stdlib",
1032 "alloc-stdlib",
1033 "brotli-decompressor",
1034]
1035
1036[[package]]
1037name = "brotli-decompressor"
1038version = "5.0.0"
1039source = "registry+https://github.com/rust-lang/crates.io-index"
1040checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03"
1041dependencies = [
1042 "alloc-no-stdlib",
1043 "alloc-stdlib",
1044]
1045
1046[[package]]
1047name = "bumpalo"
1048version = "3.20.2"
1049source = "registry+https://github.com/rust-lang/crates.io-index"
1050checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
1051
1052[[package]]
1053name = "byteorder"
1054version = "1.5.0"
1055source = "registry+https://github.com/rust-lang/crates.io-index"
1056checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
1057
1058[[package]]
1059name = "bytes"
1060version = "1.11.1"
1061source = "registry+https://github.com/rust-lang/crates.io-index"
1062checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
1063dependencies = [
1064 "serde",
1065]
1066
1067[[package]]
1068name = "cbor4ii"
1069version = "0.2.14"
1070source = "registry+https://github.com/rust-lang/crates.io-index"
1071checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4"
1072dependencies = [
1073 "serde",
1074]
1075
1076[[package]]
1077name = "cc"
1078version = "1.2.57"
1079source = "registry+https://github.com/rust-lang/crates.io-index"
1080checksum = "7a0dd1ca384932ff3641c8718a02769f1698e7563dc6974ffd03346116310423"
1081dependencies = [
1082 "find-msvc-tools",
1083 "jobserver",
1084 "libc",
1085 "shlex",
1086]
1087
1088[[package]]
1089name = "cesu8"
1090version = "1.1.0"
1091source = "registry+https://github.com/rust-lang/crates.io-index"
1092checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
1093
1094[[package]]
1095name = "cfg-if"
1096version = "1.0.4"
1097source = "registry+https://github.com/rust-lang/crates.io-index"
1098checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
1099
1100[[package]]
1101name = "cfg_aliases"
1102version = "0.2.1"
1103source = "registry+https://github.com/rust-lang/crates.io-index"
1104checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
1105
1106[[package]]
1107name = "chacha20"
1108version = "0.10.0"
1109source = "registry+https://github.com/rust-lang/crates.io-index"
1110checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
1111dependencies = [
1112 "cfg-if",
1113 "cpufeatures 0.3.0",
1114 "rand_core 0.10.0",
1115]
1116
1117[[package]]
1118name = "chrono"
1119version = "0.4.44"
1120source = "registry+https://github.com/rust-lang/crates.io-index"
1121checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0"
1122dependencies = [
1123 "iana-time-zone",
1124 "js-sys",
1125 "num-traits",
1126 "serde",
1127 "wasm-bindgen",
1128 "windows-link",
1129]
1130
1131[[package]]
1132name = "cid"
1133version = "0.11.1"
1134source = "registry+https://github.com/rust-lang/crates.io-index"
1135checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a"
1136dependencies = [
1137 "arbitrary",
1138 "core2",
1139 "multibase",
1140 "multihash",
1141 "quickcheck",
1142 "rand 0.8.5",
1143 "serde",
1144 "serde_bytes",
1145 "unsigned-varint",
1146]
1147
1148[[package]]
1149name = "cipher"
1150version = "0.4.4"
1151source = "registry+https://github.com/rust-lang/crates.io-index"
1152checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
1153dependencies = [
1154 "crypto-common 0.1.7",
1155 "inout",
1156]
1157
1158[[package]]
1159name = "clap"
1160version = "4.6.0"
1161source = "registry+https://github.com/rust-lang/crates.io-index"
1162checksum = "b193af5b67834b676abd72466a96c1024e6a6ad978a1f484bd90b85c94041351"
1163dependencies = [
1164 "clap_builder",
1165 "clap_derive",
1166]
1167
1168[[package]]
1169name = "clap_builder"
1170version = "4.6.0"
1171source = "registry+https://github.com/rust-lang/crates.io-index"
1172checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
1173dependencies = [
1174 "anstream",
1175 "anstyle",
1176 "clap_lex",
1177 "strsim 0.11.1",
1178]
1179
1180[[package]]
1181name = "clap_derive"
1182version = "4.6.0"
1183source = "registry+https://github.com/rust-lang/crates.io-index"
1184checksum = "1110bd8a634a1ab8cb04345d8d878267d57c3cf1b38d91b71af6686408bbca6a"
1185dependencies = [
1186 "heck",
1187 "proc-macro2",
1188 "quote",
1189 "syn 2.0.117",
1190]
1191
1192[[package]]
1193name = "clap_lex"
1194version = "1.1.0"
1195source = "registry+https://github.com/rust-lang/crates.io-index"
1196checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
1197
1198[[package]]
1199name = "clipboard-win"
1200version = "5.4.1"
1201source = "registry+https://github.com/rust-lang/crates.io-index"
1202checksum = "bde03770d3df201d4fb868f2c9c59e66a3e4e2bd06692a0fe701e7103c7e84d4"
1203dependencies = [
1204 "error-code",
1205]
1206
1207[[package]]
1208name = "cmsketch"
1209version = "0.2.4"
1210source = "registry+https://github.com/rust-lang/crates.io-index"
1211checksum = "d7ee2cfacbd29706479902b06d75ad8f1362900836aa32799eabc7e004bfd854"
1212
1213[[package]]
1214name = "cobs"
1215version = "0.3.0"
1216source = "registry+https://github.com/rust-lang/crates.io-index"
1217checksum = "0fa961b519f0b462e3a3b4a34b64d119eeaca1d59af726fe450bbba07a9fc0a1"
1218dependencies = [
1219 "thiserror 2.0.18",
1220]
1221
1222[[package]]
1223name = "colorchoice"
1224version = "1.0.5"
1225source = "registry+https://github.com/rust-lang/crates.io-index"
1226checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
1227
1228[[package]]
1229name = "combine"
1230version = "4.6.7"
1231source = "registry+https://github.com/rust-lang/crates.io-index"
1232checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
1233dependencies = [
1234 "bytes",
1235 "memchr",
1236]
1237
1238[[package]]
1239name = "compression-codecs"
1240version = "0.4.37"
1241source = "registry+https://github.com/rust-lang/crates.io-index"
1242checksum = "eb7b51a7d9c967fc26773061ba86150f19c50c0d65c887cb1fbe295fd16619b7"
1243dependencies = [
1244 "compression-core",
1245 "flate2",
1246 "memchr",
1247]
1248
1249[[package]]
1250name = "compression-core"
1251version = "0.4.31"
1252source = "registry+https://github.com/rust-lang/crates.io-index"
1253checksum = "75984efb6ed102a0d42db99afb6c1948f0380d1d91808d5529916e6c08b49d8d"
1254
1255[[package]]
1256name = "concurrent-queue"
1257version = "2.5.0"
1258source = "registry+https://github.com/rust-lang/crates.io-index"
1259checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
1260dependencies = [
1261 "crossbeam-utils",
1262]
1263
1264[[package]]
1265name = "console"
1266version = "0.15.11"
1267source = "registry+https://github.com/rust-lang/crates.io-index"
1268checksum = "054ccb5b10f9f2cbf51eb355ca1d05c2d279ce1804688d0db74b4733a5aeafd8"
1269dependencies = [
1270 "encode_unicode",
1271 "libc",
1272 "once_cell",
1273 "unicode-width",
1274 "windows-sys 0.59.0",
1275]
1276
1277[[package]]
1278name = "const-oid"
1279version = "0.9.6"
1280source = "registry+https://github.com/rust-lang/crates.io-index"
1281checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
1282
1283[[package]]
1284name = "const-oid"
1285version = "0.10.2"
1286source = "registry+https://github.com/rust-lang/crates.io-index"
1287checksum = "a6ef517f0926dd24a1582492c791b6a4818a4d94e789a334894aa15b0d12f55c"
1288
1289[[package]]
1290name = "const-random"
1291version = "0.1.18"
1292source = "registry+https://github.com/rust-lang/crates.io-index"
1293checksum = "87e00182fe74b066627d63b85fd550ac2998d4b0bd86bfed477a0ae4c7c71359"
1294dependencies = [
1295 "const-random-macro",
1296]
1297
1298[[package]]
1299name = "const-random-macro"
1300version = "0.1.16"
1301source = "registry+https://github.com/rust-lang/crates.io-index"
1302checksum = "f9d839f2a20b0aee515dc581a6172f2321f96cab76c1a38a4c584a194955390e"
1303dependencies = [
1304 "getrandom 0.2.17",
1305 "once_cell",
1306 "tiny-keccak",
1307]
1308
1309[[package]]
1310name = "const-str"
1311version = "0.4.3"
1312source = "registry+https://github.com/rust-lang/crates.io-index"
1313checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
1314
1315[[package]]
1316name = "constant_time_eq"
1317version = "0.4.2"
1318source = "registry+https://github.com/rust-lang/crates.io-index"
1319checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
1320
1321[[package]]
1322name = "convert_case"
1323version = "0.10.0"
1324source = "registry+https://github.com/rust-lang/crates.io-index"
1325checksum = "633458d4ef8c78b72454de2d54fd6ab2e60f9e02be22f3c6104cdc8a4e0fceb9"
1326dependencies = [
1327 "unicode-segmentation",
1328]
1329
1330[[package]]
1331name = "cordyceps"
1332version = "0.3.4"
1333source = "registry+https://github.com/rust-lang/crates.io-index"
1334checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a"
1335dependencies = [
1336 "loom",
1337 "tracing",
1338]
1339
1340[[package]]
1341name = "core-foundation"
1342version = "0.9.4"
1343source = "registry+https://github.com/rust-lang/crates.io-index"
1344checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
1345dependencies = [
1346 "core-foundation-sys",
1347 "libc",
1348]
1349
1350[[package]]
1351name = "core-foundation"
1352version = "0.10.1"
1353source = "registry+https://github.com/rust-lang/crates.io-index"
1354checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
1355dependencies = [
1356 "core-foundation-sys",
1357 "libc",
1358]
1359
1360[[package]]
1361name = "core-foundation-sys"
1362version = "0.8.7"
1363source = "registry+https://github.com/rust-lang/crates.io-index"
1364checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
1365
1366[[package]]
1367name = "core2"
1368version = "0.4.0"
1369source = "registry+https://github.com/rust-lang/crates.io-index"
1370checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
1371dependencies = [
1372 "memchr",
1373]
1374
1375[[package]]
1376name = "core_affinity"
1377version = "0.8.3"
1378source = "registry+https://github.com/rust-lang/crates.io-index"
1379checksum = "a034b3a7b624016c6e13f5df875747cc25f884156aad2abd12b6c46797971342"
1380dependencies = [
1381 "libc",
1382 "num_cpus",
1383 "winapi",
1384]
1385
1386[[package]]
1387name = "cpufeatures"
1388version = "0.2.17"
1389source = "registry+https://github.com/rust-lang/crates.io-index"
1390checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
1391dependencies = [
1392 "libc",
1393]
1394
1395[[package]]
1396name = "cpufeatures"
1397version = "0.3.0"
1398source = "registry+https://github.com/rust-lang/crates.io-index"
1399checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
1400dependencies = [
1401 "libc",
1402]
1403
1404[[package]]
1405name = "crc32fast"
1406version = "1.5.0"
1407source = "registry+https://github.com/rust-lang/crates.io-index"
1408checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
1409dependencies = [
1410 "cfg-if",
1411]
1412
1413[[package]]
1414name = "critical-section"
1415version = "1.2.0"
1416source = "registry+https://github.com/rust-lang/crates.io-index"
1417checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
1418
1419[[package]]
1420name = "crossbeam-channel"
1421version = "0.5.15"
1422source = "registry+https://github.com/rust-lang/crates.io-index"
1423checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
1424dependencies = [
1425 "crossbeam-utils",
1426]
1427
1428[[package]]
1429name = "crossbeam-deque"
1430version = "0.8.6"
1431source = "registry+https://github.com/rust-lang/crates.io-index"
1432checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
1433dependencies = [
1434 "crossbeam-epoch",
1435 "crossbeam-utils",
1436]
1437
1438[[package]]
1439name = "crossbeam-epoch"
1440version = "0.9.18"
1441source = "registry+https://github.com/rust-lang/crates.io-index"
1442checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
1443dependencies = [
1444 "crossbeam-utils",
1445]
1446
1447[[package]]
1448name = "crossbeam-utils"
1449version = "0.8.21"
1450source = "registry+https://github.com/rust-lang/crates.io-index"
1451checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
1452
1453[[package]]
1454name = "crunchy"
1455version = "0.2.4"
1456source = "registry+https://github.com/rust-lang/crates.io-index"
1457checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
1458
1459[[package]]
1460name = "crypto-bigint"
1461version = "0.5.5"
1462source = "registry+https://github.com/rust-lang/crates.io-index"
1463checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
1464dependencies = [
1465 "generic-array",
1466 "rand_core 0.6.4",
1467 "subtle",
1468 "zeroize",
1469]
1470
1471[[package]]
1472name = "crypto-common"
1473version = "0.1.7"
1474source = "registry+https://github.com/rust-lang/crates.io-index"
1475checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
1476dependencies = [
1477 "generic-array",
1478 "typenum",
1479]
1480
1481[[package]]
1482name = "crypto-common"
1483version = "0.2.1"
1484source = "registry+https://github.com/rust-lang/crates.io-index"
1485checksum = "77727bb15fa921304124b128af125e7e3b968275d1b108b379190264f4423710"
1486dependencies = [
1487 "hybrid-array",
1488]
1489
1490[[package]]
1491name = "csv"
1492version = "1.4.0"
1493source = "registry+https://github.com/rust-lang/crates.io-index"
1494checksum = "52cd9d68cf7efc6ddfaaee42e7288d3a99d613d4b50f76ce9827ae0c6e14f938"
1495dependencies = [
1496 "csv-core",
1497 "itoa",
1498 "ryu",
1499 "serde_core",
1500]
1501
1502[[package]]
1503name = "csv-core"
1504version = "0.1.13"
1505source = "registry+https://github.com/rust-lang/crates.io-index"
1506checksum = "704a3c26996a80471189265814dbc2c257598b96b8a7feae2d31ace646bb9782"
1507dependencies = [
1508 "memchr",
1509]
1510
1511[[package]]
1512name = "ctr"
1513version = "0.9.2"
1514source = "registry+https://github.com/rust-lang/crates.io-index"
1515checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
1516dependencies = [
1517 "cipher",
1518]
1519
1520[[package]]
1521name = "curve25519-dalek"
1522version = "4.1.3"
1523source = "registry+https://github.com/rust-lang/crates.io-index"
1524checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
1525dependencies = [
1526 "cfg-if",
1527 "cpufeatures 0.2.17",
1528 "curve25519-dalek-derive",
1529 "digest 0.10.7",
1530 "fiat-crypto 0.2.9",
1531 "rustc_version",
1532 "subtle",
1533 "zeroize",
1534]
1535
1536[[package]]
1537name = "curve25519-dalek"
1538version = "5.0.0-pre.1"
1539source = "registry+https://github.com/rust-lang/crates.io-index"
1540checksum = "6f9200d1d13637f15a6acb71e758f64624048d85b31a5fdbfd8eca1e2687d0b7"
1541dependencies = [
1542 "cfg-if",
1543 "cpufeatures 0.2.17",
1544 "curve25519-dalek-derive",
1545 "digest 0.11.0-rc.10",
1546 "fiat-crypto 0.3.0",
1547 "rand_core 0.9.5",
1548 "rustc_version",
1549 "serde",
1550 "subtle",
1551 "zeroize",
1552]
1553
1554[[package]]
1555name = "curve25519-dalek-derive"
1556version = "0.1.1"
1557source = "registry+https://github.com/rust-lang/crates.io-index"
1558checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
1559dependencies = [
1560 "proc-macro2",
1561 "quote",
1562 "syn 2.0.117",
1563]
1564
1565[[package]]
1566name = "darling"
1567version = "0.14.4"
1568source = "registry+https://github.com/rust-lang/crates.io-index"
1569checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
1570dependencies = [
1571 "darling_core 0.14.4",
1572 "darling_macro 0.14.4",
1573]
1574
1575[[package]]
1576name = "darling"
1577version = "0.20.11"
1578source = "registry+https://github.com/rust-lang/crates.io-index"
1579checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
1580dependencies = [
1581 "darling_core 0.20.11",
1582 "darling_macro 0.20.11",
1583]
1584
1585[[package]]
1586name = "darling"
1587version = "0.23.0"
1588source = "registry+https://github.com/rust-lang/crates.io-index"
1589checksum = "25ae13da2f202d56bd7f91c25fba009e7717a1e4a1cc98a76d844b65ae912e9d"
1590dependencies = [
1591 "darling_core 0.23.0",
1592 "darling_macro 0.23.0",
1593]
1594
1595[[package]]
1596name = "darling_core"
1597version = "0.14.4"
1598source = "registry+https://github.com/rust-lang/crates.io-index"
1599checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
1600dependencies = [
1601 "fnv",
1602 "ident_case",
1603 "proc-macro2",
1604 "quote",
1605 "strsim 0.10.0",
1606 "syn 1.0.109",
1607]
1608
1609[[package]]
1610name = "darling_core"
1611version = "0.20.11"
1612source = "registry+https://github.com/rust-lang/crates.io-index"
1613checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
1614dependencies = [
1615 "fnv",
1616 "ident_case",
1617 "proc-macro2",
1618 "quote",
1619 "strsim 0.11.1",
1620 "syn 2.0.117",
1621]
1622
1623[[package]]
1624name = "darling_core"
1625version = "0.23.0"
1626source = "registry+https://github.com/rust-lang/crates.io-index"
1627checksum = "9865a50f7c335f53564bb694ef660825eb8610e0a53d3e11bf1b0d3df31e03b0"
1628dependencies = [
1629 "ident_case",
1630 "proc-macro2",
1631 "quote",
1632 "strsim 0.11.1",
1633 "syn 2.0.117",
1634]
1635
1636[[package]]
1637name = "darling_macro"
1638version = "0.14.4"
1639source = "registry+https://github.com/rust-lang/crates.io-index"
1640checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
1641dependencies = [
1642 "darling_core 0.14.4",
1643 "quote",
1644 "syn 1.0.109",
1645]
1646
1647[[package]]
1648name = "darling_macro"
1649version = "0.20.11"
1650source = "registry+https://github.com/rust-lang/crates.io-index"
1651checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
1652dependencies = [
1653 "darling_core 0.20.11",
1654 "quote",
1655 "syn 2.0.117",
1656]
1657
1658[[package]]
1659name = "darling_macro"
1660version = "0.23.0"
1661source = "registry+https://github.com/rust-lang/crates.io-index"
1662checksum = "ac3984ec7bd6cfa798e62b4a642426a5be0e68f9401cfc2a01e3fa9ea2fcdb8d"
1663dependencies = [
1664 "darling_core 0.23.0",
1665 "quote",
1666 "syn 2.0.117",
1667]
1668
1669[[package]]
1670name = "dashmap"
1671version = "6.1.0"
1672source = "registry+https://github.com/rust-lang/crates.io-index"
1673checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
1674dependencies = [
1675 "cfg-if",
1676 "crossbeam-utils",
1677 "hashbrown 0.14.5",
1678 "lock_api",
1679 "once_cell",
1680 "parking_lot_core",
1681]
1682
1683[[package]]
1684name = "data-encoding"
1685version = "2.10.0"
1686source = "registry+https://github.com/rust-lang/crates.io-index"
1687checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
1688
1689[[package]]
1690name = "data-encoding-macro"
1691version = "0.1.19"
1692source = "registry+https://github.com/rust-lang/crates.io-index"
1693checksum = "8142a83c17aa9461d637e649271eae18bf2edd00e91f2e105df36c3c16355bdb"
1694dependencies = [
1695 "data-encoding",
1696 "data-encoding-macro-internal",
1697]
1698
1699[[package]]
1700name = "data-encoding-macro-internal"
1701version = "0.1.17"
1702source = "registry+https://github.com/rust-lang/crates.io-index"
1703checksum = "7ab67060fc6b8ef687992d439ca0fa36e7ed17e9a0b16b25b601e8757df720de"
1704dependencies = [
1705 "data-encoding",
1706 "syn 2.0.117",
1707]
1708
1709[[package]]
1710name = "deadpool"
1711version = "0.12.3"
1712source = "registry+https://github.com/rust-lang/crates.io-index"
1713checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
1714dependencies = [
1715 "deadpool-runtime",
1716 "lazy_static",
1717 "num_cpus",
1718 "tokio",
1719]
1720
1721[[package]]
1722name = "deadpool-runtime"
1723version = "0.1.4"
1724source = "registry+https://github.com/rust-lang/crates.io-index"
1725checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
1726
1727[[package]]
1728name = "der"
1729version = "0.7.10"
1730source = "registry+https://github.com/rust-lang/crates.io-index"
1731checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
1732dependencies = [
1733 "const-oid 0.9.6",
1734 "pem-rfc7468 0.7.0",
1735 "zeroize",
1736]
1737
1738[[package]]
1739name = "der"
1740version = "0.8.0"
1741source = "registry+https://github.com/rust-lang/crates.io-index"
1742checksum = "71fd89660b2dc699704064e59e9dba0147b903e85319429e131620d022be411b"
1743dependencies = [
1744 "const-oid 0.10.2",
1745 "pem-rfc7468 1.0.0",
1746 "zeroize",
1747]
1748
1749[[package]]
1750name = "der-parser"
1751version = "10.0.0"
1752source = "registry+https://github.com/rust-lang/crates.io-index"
1753checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
1754dependencies = [
1755 "asn1-rs",
1756 "displaydoc",
1757 "nom 7.1.3",
1758 "num-bigint",
1759 "num-traits",
1760 "rusticata-macros",
1761]
1762
1763[[package]]
1764name = "deranged"
1765version = "0.5.8"
1766source = "registry+https://github.com/rust-lang/crates.io-index"
1767checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
1768dependencies = [
1769 "powerfmt",
1770]
1771
1772[[package]]
1773name = "derive_builder"
1774version = "0.20.2"
1775source = "registry+https://github.com/rust-lang/crates.io-index"
1776checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
1777dependencies = [
1778 "derive_builder_macro",
1779]
1780
1781[[package]]
1782name = "derive_builder_core"
1783version = "0.20.2"
1784source = "registry+https://github.com/rust-lang/crates.io-index"
1785checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
1786dependencies = [
1787 "darling 0.20.11",
1788 "proc-macro2",
1789 "quote",
1790 "syn 2.0.117",
1791]
1792
1793[[package]]
1794name = "derive_builder_macro"
1795version = "0.20.2"
1796source = "registry+https://github.com/rust-lang/crates.io-index"
1797checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
1798dependencies = [
1799 "derive_builder_core",
1800 "syn 2.0.117",
1801]
1802
1803[[package]]
1804name = "derive_more"
1805version = "2.1.1"
1806source = "registry+https://github.com/rust-lang/crates.io-index"
1807checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
1808dependencies = [
1809 "derive_more-impl",
1810]
1811
1812[[package]]
1813name = "derive_more-impl"
1814version = "2.1.1"
1815source = "registry+https://github.com/rust-lang/crates.io-index"
1816checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
1817dependencies = [
1818 "convert_case",
1819 "proc-macro2",
1820 "quote",
1821 "rustc_version",
1822 "syn 2.0.117",
1823 "unicode-xid",
1824]
1825
1826[[package]]
1827name = "diatomic-waker"
1828version = "0.2.3"
1829source = "registry+https://github.com/rust-lang/crates.io-index"
1830checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c"
1831
1832[[package]]
1833name = "digest"
1834version = "0.10.7"
1835source = "registry+https://github.com/rust-lang/crates.io-index"
1836checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
1837dependencies = [
1838 "block-buffer 0.10.4",
1839 "const-oid 0.9.6",
1840 "crypto-common 0.1.7",
1841 "subtle",
1842]
1843
1844[[package]]
1845name = "digest"
1846version = "0.11.0-rc.10"
1847source = "registry+https://github.com/rust-lang/crates.io-index"
1848checksum = "afa94b64bfc6549e6e4b5a3216f22593224174083da7a90db47e951c4fb31725"
1849dependencies = [
1850 "block-buffer 0.11.0",
1851 "const-oid 0.10.2",
1852 "crypto-common 0.2.1",
1853]
1854
1855[[package]]
1856name = "dirs"
1857version = "6.0.0"
1858source = "registry+https://github.com/rust-lang/crates.io-index"
1859checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
1860dependencies = [
1861 "dirs-sys",
1862]
1863
1864[[package]]
1865name = "dirs-sys"
1866version = "0.5.0"
1867source = "registry+https://github.com/rust-lang/crates.io-index"
1868checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
1869dependencies = [
1870 "libc",
1871 "option-ext",
1872 "redox_users",
1873 "windows-sys 0.61.2",
1874]
1875
1876[[package]]
1877name = "dispatch2"
1878version = "0.3.1"
1879source = "registry+https://github.com/rust-lang/crates.io-index"
1880checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38"
1881dependencies = [
1882 "bitflags",
1883 "block2",
1884 "libc",
1885 "objc2",
1886]
1887
1888[[package]]
1889name = "displaydoc"
1890version = "0.2.5"
1891source = "registry+https://github.com/rust-lang/crates.io-index"
1892checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
1893dependencies = [
1894 "proc-macro2",
1895 "quote",
1896 "syn 2.0.117",
1897]
1898
1899[[package]]
1900name = "dlopen2"
1901version = "0.5.0"
1902source = "registry+https://github.com/rust-lang/crates.io-index"
1903checksum = "09b4f5f101177ff01b8ec4ecc81eead416a8aa42819a2869311b3420fa114ffa"
1904dependencies = [
1905 "libc",
1906 "once_cell",
1907 "winapi",
1908]
1909
1910[[package]]
1911name = "document-features"
1912version = "0.2.12"
1913source = "registry+https://github.com/rust-lang/crates.io-index"
1914checksum = "d4b8a88685455ed29a21542a33abd9cb6510b6b129abadabdcef0f4c55bc8f61"
1915dependencies = [
1916 "litrs",
1917]
1918
1919[[package]]
1920name = "downcast-rs"
1921version = "1.2.1"
1922source = "registry+https://github.com/rust-lang/crates.io-index"
1923checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
1924
1925[[package]]
1926name = "dspy-rs"
1927version = "0.7.3"
1928source = "registry+https://github.com/rust-lang/crates.io-index"
1929checksum = "969a8d429908d989e1f8229d3965a96c28a132870f2d7b336fcb60a20beb3623"
1930dependencies = [
1931 "anyhow",
1932 "arrow",
1933 "async-trait",
1934 "bon",
1935 "csv",
1936 "dsrs_macros",
1937 "enum_dispatch",
1938 "foyer",
1939 "futures",
1940 "hf-hub",
1941 "indexmap",
1942 "kdam",
1943 "parquet",
1944 "rand 0.8.5",
1945 "rayon",
1946 "regex",
1947 "reqwest",
1948 "rig-core",
1949 "rstest",
1950 "schemars",
1951 "serde",
1952 "serde_json",
1953 "tempfile",
1954 "tokio",
1955]
1956
1957[[package]]
1958name = "dsrs_macros"
1959version = "0.7.2"
1960source = "registry+https://github.com/rust-lang/crates.io-index"
1961checksum = "210ab5a55bd4b091b7929538746d0e2368df327c1322298e48e6e52bac6b20f6"
1962dependencies = [
1963 "anyhow",
1964 "indexmap",
1965 "proc-macro2",
1966 "quote",
1967 "schemars",
1968 "serde",
1969 "serde_json",
1970 "syn 2.0.117",
1971]
1972
1973[[package]]
1974name = "dyn-clone"
1975version = "1.0.20"
1976source = "registry+https://github.com/rust-lang/crates.io-index"
1977checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
1978
1979[[package]]
1980name = "ecdsa"
1981version = "0.16.9"
1982source = "registry+https://github.com/rust-lang/crates.io-index"
1983checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
1984dependencies = [
1985 "der 0.7.10",
1986 "digest 0.10.7",
1987 "elliptic-curve",
1988 "rfc6979",
1989 "signature 2.2.0",
1990 "spki 0.7.3",
1991]
1992
1993[[package]]
1994name = "ed25519"
1995version = "2.2.3"
1996source = "registry+https://github.com/rust-lang/crates.io-index"
1997checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
1998dependencies = [
1999 "pkcs8 0.10.2",
2000 "serde",
2001 "signature 2.2.0",
2002]
2003
2004[[package]]
2005name = "ed25519"
2006version = "3.0.0-rc.4"
2007source = "registry+https://github.com/rust-lang/crates.io-index"
2008checksum = "c6e914c7c52decb085cea910552e24c63ac019e3ab8bf001ff736da9a9d9d890"
2009dependencies = [
2010 "pkcs8 0.11.0-rc.11",
2011 "serde",
2012 "signature 3.0.0-rc.10",
2013]
2014
2015[[package]]
2016name = "ed25519-dalek"
2017version = "2.2.0"
2018source = "registry+https://github.com/rust-lang/crates.io-index"
2019checksum = "70e796c081cee67dc755e1a36a0a172b897fab85fc3f6bc48307991f64e4eca9"
2020dependencies = [
2021 "curve25519-dalek 4.1.3",
2022 "ed25519 2.2.3",
2023 "rand_core 0.6.4",
2024 "serde",
2025 "sha2 0.10.9",
2026 "subtle",
2027 "zeroize",
2028]
2029
2030[[package]]
2031name = "ed25519-dalek"
2032version = "3.0.0-pre.1"
2033source = "registry+https://github.com/rust-lang/crates.io-index"
2034checksum = "ad207ed88a133091f83224265eac21109930db09bedcad05d5252f2af2de20a1"
2035dependencies = [
2036 "curve25519-dalek 5.0.0-pre.1",
2037 "ed25519 3.0.0-rc.4",
2038 "rand_core 0.9.5",
2039 "serde",
2040 "sha2 0.11.0-rc.2",
2041 "signature 3.0.0-rc.10",
2042 "subtle",
2043 "zeroize",
2044]
2045
2046[[package]]
2047name = "either"
2048version = "1.15.0"
2049source = "registry+https://github.com/rust-lang/crates.io-index"
2050checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
2051
2052[[package]]
2053name = "elliptic-curve"
2054version = "0.13.8"
2055source = "registry+https://github.com/rust-lang/crates.io-index"
2056checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
2057dependencies = [
2058 "base16ct",
2059 "crypto-bigint",
2060 "digest 0.10.7",
2061 "ff",
2062 "generic-array",
2063 "group",
2064 "pem-rfc7468 0.7.0",
2065 "pkcs8 0.10.2",
2066 "rand_core 0.6.4",
2067 "sec1",
2068 "subtle",
2069 "zeroize",
2070]
2071
2072[[package]]
2073name = "embedded-io"
2074version = "0.4.0"
2075source = "registry+https://github.com/rust-lang/crates.io-index"
2076checksum = "ef1a6892d9eef45c8fa6b9e0086428a2cca8491aca8f787c534a3d6d0bcb3ced"
2077
2078[[package]]
2079name = "embedded-io"
2080version = "0.6.1"
2081source = "registry+https://github.com/rust-lang/crates.io-index"
2082checksum = "edd0f118536f44f5ccd48bcb8b111bdc3de888b58c74639dfb034a357d0f206d"
2083
2084[[package]]
2085name = "encode_unicode"
2086version = "1.0.0"
2087source = "registry+https://github.com/rust-lang/crates.io-index"
2088checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
2089
2090[[package]]
2091name = "encoding_rs"
2092version = "0.8.35"
2093source = "registry+https://github.com/rust-lang/crates.io-index"
2094checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
2095dependencies = [
2096 "cfg-if",
2097]
2098
2099[[package]]
2100name = "endian-type"
2101version = "0.1.2"
2102source = "registry+https://github.com/rust-lang/crates.io-index"
2103checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
2104
2105[[package]]
2106name = "enum-as-inner"
2107version = "0.6.1"
2108source = "registry+https://github.com/rust-lang/crates.io-index"
2109checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
2110dependencies = [
2111 "heck",
2112 "proc-macro2",
2113 "quote",
2114 "syn 2.0.117",
2115]
2116
2117[[package]]
2118name = "enum-assoc"
2119version = "1.3.0"
2120source = "registry+https://github.com/rust-lang/crates.io-index"
2121checksum = "3ed8956bd5c1f0415200516e78ff07ec9e16415ade83c056c230d7b7ea0d55b7"
2122dependencies = [
2123 "proc-macro2",
2124 "quote",
2125 "syn 2.0.117",
2126]
2127
2128[[package]]
2129name = "enum_dispatch"
2130version = "0.3.13"
2131source = "registry+https://github.com/rust-lang/crates.io-index"
2132checksum = "aa18ce2bc66555b3218614519ac839ddb759a7d6720732f979ef8d13be147ecd"
2133dependencies = [
2134 "once_cell",
2135 "proc-macro2",
2136 "quote",
2137 "syn 2.0.117",
2138]
2139
2140[[package]]
2141name = "env_filter"
2142version = "1.0.0"
2143source = "registry+https://github.com/rust-lang/crates.io-index"
2144checksum = "7a1c3cc8e57274ec99de65301228b537f1e4eedc1b8e0f9411c6caac8ae7308f"
2145dependencies = [
2146 "log",
2147 "regex",
2148]
2149
2150[[package]]
2151name = "env_logger"
2152version = "0.11.10"
2153source = "registry+https://github.com/rust-lang/crates.io-index"
2154checksum = "0621c04f2196ac3f488dd583365b9c09be011a4ab8b9f37248ffcc8f6198b56a"
2155dependencies = [
2156 "anstream",
2157 "anstyle",
2158 "env_filter",
2159 "jiff",
2160 "log",
2161]
2162
2163[[package]]
2164name = "equivalent"
2165version = "1.0.2"
2166source = "registry+https://github.com/rust-lang/crates.io-index"
2167checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
2168
2169[[package]]
2170name = "errno"
2171version = "0.3.14"
2172source = "registry+https://github.com/rust-lang/crates.io-index"
2173checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
2174dependencies = [
2175 "libc",
2176 "windows-sys 0.61.2",
2177]
2178
2179[[package]]
2180name = "error-code"
2181version = "3.3.2"
2182source = "registry+https://github.com/rust-lang/crates.io-index"
2183checksum = "dea2df4cf52843e0452895c455a1a2cfbb842a1e7329671acf418fdc53ed4c59"
2184
2185[[package]]
2186name = "event-listener"
2187version = "2.5.3"
2188source = "registry+https://github.com/rust-lang/crates.io-index"
2189checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
2190
2191[[package]]
2192name = "event-listener"
2193version = "5.4.1"
2194source = "registry+https://github.com/rust-lang/crates.io-index"
2195checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
2196dependencies = [
2197 "concurrent-queue",
2198 "parking",
2199 "pin-project-lite",
2200]
2201
2202[[package]]
2203name = "event-listener-strategy"
2204version = "0.5.4"
2205source = "registry+https://github.com/rust-lang/crates.io-index"
2206checksum = "8be9f3dfaaffdae2972880079a491a1a8bb7cbed0b8dd7a347f668b4150a3b93"
2207dependencies = [
2208 "event-listener 5.4.1",
2209 "pin-project-lite",
2210]
2211
2212[[package]]
2213name = "eventsource-stream"
2214version = "0.2.3"
2215source = "registry+https://github.com/rust-lang/crates.io-index"
2216checksum = "74fef4569247a5f429d9156b9d0a2599914385dd189c539334c625d8099d90ab"
2217dependencies = [
2218 "futures-core",
2219 "nom 7.1.3",
2220 "pin-project-lite",
2221]
2222
2223[[package]]
2224name = "fallible-iterator"
2225version = "0.3.0"
2226source = "registry+https://github.com/rust-lang/crates.io-index"
2227checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
2228
2229[[package]]
2230name = "fallible-streaming-iterator"
2231version = "0.1.9"
2232source = "registry+https://github.com/rust-lang/crates.io-index"
2233checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
2234
2235[[package]]
2236name = "fastant"
2237version = "0.1.11"
2238source = "registry+https://github.com/rust-lang/crates.io-index"
2239checksum = "2e825441bfb2d831c47c97d05821552db8832479f44c571b97fededbf0099c07"
2240dependencies = [
2241 "small_ctor",
2242 "web-time",
2243]
2244
2245[[package]]
2246name = "fastbloom"
2247version = "0.14.1"
2248source = "registry+https://github.com/rust-lang/crates.io-index"
2249checksum = "4e7f34442dbe69c60fe8eaf58a8cafff81a1f278816d8ab4db255b3bef4ac3c4"
2250dependencies = [
2251 "getrandom 0.3.4",
2252 "libm",
2253 "rand 0.9.2",
2254 "siphasher",
2255]
2256
2257[[package]]
2258name = "fastrand"
2259version = "2.3.0"
2260source = "registry+https://github.com/rust-lang/crates.io-index"
2261checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
2262
2263[[package]]
2264name = "fd-lock"
2265version = "4.0.4"
2266source = "registry+https://github.com/rust-lang/crates.io-index"
2267checksum = "0ce92ff622d6dadf7349484f42c93271a0d49b7cc4d466a936405bacbe10aa78"
2268dependencies = [
2269 "cfg-if",
2270 "rustix",
2271 "windows-sys 0.59.0",
2272]
2273
2274[[package]]
2275name = "ff"
2276version = "0.13.1"
2277source = "registry+https://github.com/rust-lang/crates.io-index"
2278checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
2279dependencies = [
2280 "rand_core 0.6.4",
2281 "subtle",
2282]
2283
2284[[package]]
2285name = "fiat-crypto"
2286version = "0.2.9"
2287source = "registry+https://github.com/rust-lang/crates.io-index"
2288checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
2289
2290[[package]]
2291name = "fiat-crypto"
2292version = "0.3.0"
2293source = "registry+https://github.com/rust-lang/crates.io-index"
2294checksum = "64cd1e32ddd350061ae6edb1b082d7c54915b5c672c389143b9a63403a109f24"
2295
2296[[package]]
2297name = "find-msvc-tools"
2298version = "0.1.9"
2299source = "registry+https://github.com/rust-lang/crates.io-index"
2300checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
2301
2302[[package]]
2303name = "fixedbitset"
2304version = "0.5.7"
2305source = "registry+https://github.com/rust-lang/crates.io-index"
2306checksum = "1d674e81391d1e1ab681a28d99df07927c6d4aa5b027d7da16ba32d1d21ecd99"
2307
2308[[package]]
2309name = "flatbuffers"
2310version = "25.12.19"
2311source = "registry+https://github.com/rust-lang/crates.io-index"
2312checksum = "35f6839d7b3b98adde531effaf34f0c2badc6f4735d26fe74709d8e513a96ef3"
2313dependencies = [
2314 "bitflags",
2315 "rustc_version",
2316]
2317
2318[[package]]
2319name = "flate2"
2320version = "1.1.9"
2321source = "registry+https://github.com/rust-lang/crates.io-index"
2322checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c"
2323dependencies = [
2324 "crc32fast",
2325 "miniz_oxide",
2326 "zlib-rs",
2327]
2328
2329[[package]]
2330name = "flume"
2331version = "0.11.1"
2332source = "registry+https://github.com/rust-lang/crates.io-index"
2333checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
2334dependencies = [
2335 "futures-core",
2336 "futures-sink",
2337 "nanorand",
2338 "spin 0.9.8",
2339]
2340
2341[[package]]
2342name = "fnv"
2343version = "1.0.7"
2344source = "registry+https://github.com/rust-lang/crates.io-index"
2345checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2346
2347[[package]]
2348name = "foldhash"
2349version = "0.1.5"
2350source = "registry+https://github.com/rust-lang/crates.io-index"
2351checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
2352
2353[[package]]
2354name = "foldhash"
2355version = "0.2.0"
2356source = "registry+https://github.com/rust-lang/crates.io-index"
2357checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
2358
2359[[package]]
2360name = "foreign-types"
2361version = "0.3.2"
2362source = "registry+https://github.com/rust-lang/crates.io-index"
2363checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
2364dependencies = [
2365 "foreign-types-shared",
2366]
2367
2368[[package]]
2369name = "foreign-types-shared"
2370version = "0.1.1"
2371source = "registry+https://github.com/rust-lang/crates.io-index"
2372checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2373
2374[[package]]
2375name = "form_urlencoded"
2376version = "1.2.2"
2377source = "registry+https://github.com/rust-lang/crates.io-index"
2378checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
2379dependencies = [
2380 "percent-encoding",
2381]
2382
2383[[package]]
2384name = "foyer"
2385version = "0.20.1"
2386source = "registry+https://github.com/rust-lang/crates.io-index"
2387checksum = "50b7b23bdff0e7fecbef83438ce9389c352743ea0b8bda44fabca354f21b19a9"
2388dependencies = [
2389 "equivalent",
2390 "foyer-common",
2391 "foyer-memory",
2392 "foyer-storage",
2393 "madsim-tokio",
2394 "mixtrics",
2395 "pin-project",
2396 "serde",
2397 "thiserror 2.0.18",
2398 "tokio",
2399 "tracing",
2400]
2401
2402[[package]]
2403name = "foyer-common"
2404version = "0.20.1"
2405source = "registry+https://github.com/rust-lang/crates.io-index"
2406checksum = "1a72f40b0c110e4233f46df0589bf1b2b3b5ed04e4cf504a582374d7548c9c05"
2407dependencies = [
2408 "bincode",
2409 "bytes",
2410 "cfg-if",
2411 "itertools",
2412 "madsim-tokio",
2413 "mixtrics",
2414 "parking_lot",
2415 "pin-project",
2416 "serde",
2417 "thiserror 2.0.18",
2418 "tokio",
2419 "twox-hash",
2420]
2421
2422[[package]]
2423name = "foyer-intrusive-collections"
2424version = "0.10.0-dev"
2425source = "registry+https://github.com/rust-lang/crates.io-index"
2426checksum = "6e4fee46bea69e0596130e3210e65d3424e0ac1e6df3bde6636304bdf1ca4a3b"
2427dependencies = [
2428 "memoffset",
2429]
2430
2431[[package]]
2432name = "foyer-memory"
2433version = "0.20.1"
2434source = "registry+https://github.com/rust-lang/crates.io-index"
2435checksum = "6b1b23cefdcd78b4d729679d75bb6fb96a57f7dd94f141dcc373a2db1c04fbaa"
2436dependencies = [
2437 "arc-swap",
2438 "bitflags",
2439 "cmsketch",
2440 "equivalent",
2441 "foyer-common",
2442 "foyer-intrusive-collections",
2443 "hashbrown 0.15.5",
2444 "itertools",
2445 "madsim-tokio",
2446 "mixtrics",
2447 "parking_lot",
2448 "pin-project",
2449 "serde",
2450 "thiserror 2.0.18",
2451 "tokio",
2452 "tracing",
2453]
2454
2455[[package]]
2456name = "foyer-storage"
2457version = "0.20.1"
2458source = "registry+https://github.com/rust-lang/crates.io-index"
2459checksum = "f1ea5872e0073e3c37bec0aa99923f03bcec3951a056c77cfdfcc8001a370f9a"
2460dependencies = [
2461 "allocator-api2",
2462 "anyhow",
2463 "bytes",
2464 "core_affinity",
2465 "equivalent",
2466 "fastant",
2467 "flume",
2468 "foyer-common",
2469 "foyer-memory",
2470 "fs4",
2471 "futures-core",
2472 "futures-util",
2473 "hashbrown 0.15.5",
2474 "io-uring",
2475 "itertools",
2476 "libc",
2477 "lz4",
2478 "madsim-tokio",
2479 "parking_lot",
2480 "pin-project",
2481 "rand 0.9.2",
2482 "serde",
2483 "thiserror 2.0.18",
2484 "tokio",
2485 "tracing",
2486 "twox-hash",
2487 "zstd",
2488]
2489
2490[[package]]
2491name = "fs4"
2492version = "0.13.1"
2493source = "registry+https://github.com/rust-lang/crates.io-index"
2494checksum = "8640e34b88f7652208ce9e88b1a37a2ae95227d84abec377ccd3c5cfeb141ed4"
2495dependencies = [
2496 "rustix",
2497 "windows-sys 0.59.0",
2498]
2499
2500[[package]]
2501name = "futures"
2502version = "0.3.32"
2503source = "registry+https://github.com/rust-lang/crates.io-index"
2504checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
2505dependencies = [
2506 "futures-channel",
2507 "futures-core",
2508 "futures-executor",
2509 "futures-io",
2510 "futures-sink",
2511 "futures-task",
2512 "futures-util",
2513]
2514
2515[[package]]
2516name = "futures-buffered"
2517version = "0.2.13"
2518source = "registry+https://github.com/rust-lang/crates.io-index"
2519checksum = "4421cb78ee172b6b06080093479d3c50f058e7c81b7d577bbb8d118d551d4cd5"
2520dependencies = [
2521 "cordyceps",
2522 "diatomic-waker",
2523 "futures-core",
2524 "pin-project-lite",
2525 "spin 0.10.0",
2526]
2527
2528[[package]]
2529name = "futures-channel"
2530version = "0.3.32"
2531source = "registry+https://github.com/rust-lang/crates.io-index"
2532checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
2533dependencies = [
2534 "futures-core",
2535 "futures-sink",
2536]
2537
2538[[package]]
2539name = "futures-concurrency"
2540version = "7.7.1"
2541source = "registry+https://github.com/rust-lang/crates.io-index"
2542checksum = "175cd8cca9e1d45b87f18ffa75088f2099e3c4fe5e2f83e42de112560bea8ea6"
2543dependencies = [
2544 "fixedbitset",
2545 "futures-core",
2546 "futures-lite",
2547 "pin-project",
2548 "smallvec",
2549]
2550
2551[[package]]
2552name = "futures-core"
2553version = "0.3.32"
2554source = "registry+https://github.com/rust-lang/crates.io-index"
2555checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
2556
2557[[package]]
2558name = "futures-executor"
2559version = "0.3.32"
2560source = "registry+https://github.com/rust-lang/crates.io-index"
2561checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
2562dependencies = [
2563 "futures-core",
2564 "futures-task",
2565 "futures-util",
2566]
2567
2568[[package]]
2569name = "futures-io"
2570version = "0.3.32"
2571source = "registry+https://github.com/rust-lang/crates.io-index"
2572checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
2573
2574[[package]]
2575name = "futures-lite"
2576version = "2.6.1"
2577source = "registry+https://github.com/rust-lang/crates.io-index"
2578checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
2579dependencies = [
2580 "fastrand",
2581 "futures-core",
2582 "futures-io",
2583 "parking",
2584 "pin-project-lite",
2585]
2586
2587[[package]]
2588name = "futures-macro"
2589version = "0.3.32"
2590source = "registry+https://github.com/rust-lang/crates.io-index"
2591checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
2592dependencies = [
2593 "proc-macro2",
2594 "quote",
2595 "syn 2.0.117",
2596]
2597
2598[[package]]
2599name = "futures-sink"
2600version = "0.3.32"
2601source = "registry+https://github.com/rust-lang/crates.io-index"
2602checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
2603
2604[[package]]
2605name = "futures-task"
2606version = "0.3.32"
2607source = "registry+https://github.com/rust-lang/crates.io-index"
2608checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
2609
2610[[package]]
2611name = "futures-timer"
2612version = "3.0.3"
2613source = "registry+https://github.com/rust-lang/crates.io-index"
2614checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
2615
2616[[package]]
2617name = "futures-util"
2618version = "0.3.32"
2619source = "registry+https://github.com/rust-lang/crates.io-index"
2620checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
2621dependencies = [
2622 "futures-channel",
2623 "futures-core",
2624 "futures-io",
2625 "futures-macro",
2626 "futures-sink",
2627 "futures-task",
2628 "memchr",
2629 "pin-project-lite",
2630 "slab",
2631]
2632
2633[[package]]
2634name = "genawaiter"
2635version = "0.99.1"
2636source = "registry+https://github.com/rust-lang/crates.io-index"
2637checksum = "c86bd0361bcbde39b13475e6e36cb24c329964aa2611be285289d1e4b751c1a0"
2638dependencies = [
2639 "futures-core",
2640 "genawaiter-macro",
2641 "genawaiter-proc-macro",
2642 "proc-macro-hack",
2643]
2644
2645[[package]]
2646name = "genawaiter-macro"
2647version = "0.99.1"
2648source = "registry+https://github.com/rust-lang/crates.io-index"
2649checksum = "0b32dfe1fdfc0bbde1f22a5da25355514b5e450c33a6af6770884c8750aedfbc"
2650
2651[[package]]
2652name = "genawaiter-proc-macro"
2653version = "0.99.1"
2654source = "registry+https://github.com/rust-lang/crates.io-index"
2655checksum = "784f84eebc366e15251c4a8c3acee82a6a6f427949776ecb88377362a9621738"
2656dependencies = [
2657 "proc-macro-error",
2658 "proc-macro-hack",
2659 "proc-macro2",
2660 "quote",
2661 "syn 1.0.109",
2662]
2663
2664[[package]]
2665name = "generator"
2666version = "0.8.8"
2667source = "registry+https://github.com/rust-lang/crates.io-index"
2668checksum = "52f04ae4152da20c76fe800fa48659201d5cf627c5149ca0b707b69d7eef6cf9"
2669dependencies = [
2670 "cc",
2671 "cfg-if",
2672 "libc",
2673 "log",
2674 "rustversion",
2675 "windows-link",
2676 "windows-result",
2677]
2678
2679[[package]]
2680name = "generic-array"
2681version = "0.14.7"
2682source = "registry+https://github.com/rust-lang/crates.io-index"
2683checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2684dependencies = [
2685 "typenum",
2686 "version_check",
2687 "zeroize",
2688]
2689
2690[[package]]
2691name = "getrandom"
2692version = "0.2.17"
2693source = "registry+https://github.com/rust-lang/crates.io-index"
2694checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
2695dependencies = [
2696 "cfg-if",
2697 "js-sys",
2698 "libc",
2699 "wasi",
2700 "wasm-bindgen",
2701]
2702
2703[[package]]
2704name = "getrandom"
2705version = "0.3.4"
2706source = "registry+https://github.com/rust-lang/crates.io-index"
2707checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
2708dependencies = [
2709 "cfg-if",
2710 "js-sys",
2711 "libc",
2712 "r-efi 5.3.0",
2713 "wasip2",
2714 "wasm-bindgen",
2715]
2716
2717[[package]]
2718name = "getrandom"
2719version = "0.4.2"
2720source = "registry+https://github.com/rust-lang/crates.io-index"
2721checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
2722dependencies = [
2723 "cfg-if",
2724 "js-sys",
2725 "libc",
2726 "r-efi 6.0.0",
2727 "rand_core 0.10.0",
2728 "wasip2",
2729 "wasip3",
2730 "wasm-bindgen",
2731]
2732
2733[[package]]
2734name = "ghash"
2735version = "0.5.1"
2736source = "registry+https://github.com/rust-lang/crates.io-index"
2737checksum = "f0d8a4362ccb29cb0b265253fb0a2728f592895ee6854fd9bc13f2ffda266ff1"
2738dependencies = [
2739 "opaque-debug",
2740 "polyval",
2741]
2742
2743[[package]]
2744name = "glob"
2745version = "0.3.3"
2746source = "registry+https://github.com/rust-lang/crates.io-index"
2747checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280"
2748
2749[[package]]
2750name = "gloo-timers"
2751version = "0.3.0"
2752source = "registry+https://github.com/rust-lang/crates.io-index"
2753checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
2754dependencies = [
2755 "futures-channel",
2756 "futures-core",
2757 "js-sys",
2758 "wasm-bindgen",
2759]
2760
2761[[package]]
2762name = "group"
2763version = "0.13.0"
2764source = "registry+https://github.com/rust-lang/crates.io-index"
2765checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
2766dependencies = [
2767 "ff",
2768 "rand_core 0.6.4",
2769 "subtle",
2770]
2771
2772[[package]]
2773name = "h2"
2774version = "0.4.13"
2775source = "registry+https://github.com/rust-lang/crates.io-index"
2776checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
2777dependencies = [
2778 "atomic-waker",
2779 "bytes",
2780 "fnv",
2781 "futures-core",
2782 "futures-sink",
2783 "http",
2784 "indexmap",
2785 "slab",
2786 "tokio",
2787 "tokio-util",
2788 "tracing",
2789]
2790
2791[[package]]
2792name = "half"
2793version = "2.7.1"
2794source = "registry+https://github.com/rust-lang/crates.io-index"
2795checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
2796dependencies = [
2797 "cfg-if",
2798 "crunchy",
2799 "num-traits",
2800 "zerocopy",
2801]
2802
2803[[package]]
2804name = "hash32"
2805version = "0.2.1"
2806source = "registry+https://github.com/rust-lang/crates.io-index"
2807checksum = "b0c35f58762feb77d74ebe43bdbc3210f09be9fe6742234d573bacc26ed92b67"
2808dependencies = [
2809 "byteorder",
2810]
2811
2812[[package]]
2813name = "hashbrown"
2814version = "0.14.5"
2815source = "registry+https://github.com/rust-lang/crates.io-index"
2816checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2817
2818[[package]]
2819name = "hashbrown"
2820version = "0.15.5"
2821source = "registry+https://github.com/rust-lang/crates.io-index"
2822checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
2823dependencies = [
2824 "allocator-api2",
2825 "equivalent",
2826 "foldhash 0.1.5",
2827]
2828
2829[[package]]
2830name = "hashbrown"
2831version = "0.16.1"
2832source = "registry+https://github.com/rust-lang/crates.io-index"
2833checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
2834dependencies = [
2835 "allocator-api2",
2836 "equivalent",
2837 "foldhash 0.2.0",
2838]
2839
2840[[package]]
2841name = "hashlink"
2842version = "0.11.0"
2843source = "registry+https://github.com/rust-lang/crates.io-index"
2844checksum = "ea0b22561a9c04a7cb1a302c013e0259cd3b4bb619f145b32f72b8b4bcbed230"
2845dependencies = [
2846 "hashbrown 0.16.1",
2847]
2848
2849[[package]]
2850name = "heapless"
2851version = "0.7.17"
2852source = "registry+https://github.com/rust-lang/crates.io-index"
2853checksum = "cdc6457c0eb62c71aac4bc17216026d8410337c4126773b9c5daba343f17964f"
2854dependencies = [
2855 "atomic-polyfill",
2856 "hash32",
2857 "rustc_version",
2858 "serde",
2859 "spin 0.9.8",
2860 "stable_deref_trait",
2861]
2862
2863[[package]]
2864name = "heck"
2865version = "0.5.0"
2866source = "registry+https://github.com/rust-lang/crates.io-index"
2867checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2868
2869[[package]]
2870name = "hermit-abi"
2871version = "0.5.2"
2872source = "registry+https://github.com/rust-lang/crates.io-index"
2873checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
2874
2875[[package]]
2876name = "hex"
2877version = "0.4.3"
2878source = "registry+https://github.com/rust-lang/crates.io-index"
2879checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2880
2881[[package]]
2882name = "hf-hub"
2883version = "0.4.3"
2884source = "registry+https://github.com/rust-lang/crates.io-index"
2885checksum = "629d8f3bbeda9d148036d6b0de0a3ab947abd08ce90626327fc3547a49d59d97"
2886dependencies = [
2887 "dirs",
2888 "futures",
2889 "http",
2890 "indicatif",
2891 "libc",
2892 "log",
2893 "native-tls",
2894 "num_cpus",
2895 "rand 0.9.2",
2896 "reqwest",
2897 "serde",
2898 "serde_json",
2899 "thiserror 2.0.18",
2900 "tokio",
2901 "ureq",
2902 "windows-sys 0.60.2",
2903]
2904
2905[[package]]
2906name = "hickory-net"
2907version = "0.26.0"
2908source = "registry+https://github.com/rust-lang/crates.io-index"
2909checksum = "0c61c8db47fae51ba9f8f2a2748bd87542acfbe22f2ec9cf9c8ec72d1ee6e9a6"
2910dependencies = [
2911 "async-trait",
2912 "cfg-if",
2913 "data-encoding",
2914 "futures-channel",
2915 "futures-io",
2916 "futures-util",
2917 "hickory-proto 0.26.0",
2918 "idna",
2919 "ipnet",
2920 "jni 0.22.4",
2921 "rand 0.10.0",
2922 "thiserror 2.0.18",
2923 "tinyvec",
2924 "tokio",
2925 "tracing",
2926 "url",
2927]
2928
2929[[package]]
2930name = "hickory-proto"
2931version = "0.25.2"
2932source = "registry+https://github.com/rust-lang/crates.io-index"
2933checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
2934dependencies = [
2935 "async-trait",
2936 "bytes",
2937 "cfg-if",
2938 "data-encoding",
2939 "enum-as-inner",
2940 "futures-channel",
2941 "futures-io",
2942 "futures-util",
2943 "h2",
2944 "http",
2945 "idna",
2946 "ipnet",
2947 "once_cell",
2948 "rand 0.9.2",
2949 "ring",
2950 "rustls",
2951 "thiserror 2.0.18",
2952 "tinyvec",
2953 "tokio",
2954 "tokio-rustls",
2955 "tracing",
2956 "url",
2957]
2958
2959[[package]]
2960name = "hickory-proto"
2961version = "0.26.0"
2962source = "registry+https://github.com/rust-lang/crates.io-index"
2963checksum = "a916d0494600d99ecb15aadfab677ad97c4de559e8f1af0c129353a733ac1fcc"
2964dependencies = [
2965 "data-encoding",
2966 "idna",
2967 "ipnet",
2968 "jni 0.22.4",
2969 "once_cell",
2970 "prefix-trie",
2971 "rand 0.10.0",
2972 "ring",
2973 "thiserror 2.0.18",
2974 "tinyvec",
2975 "tracing",
2976 "url",
2977]
2978
2979[[package]]
2980name = "hickory-resolver"
2981version = "0.25.2"
2982source = "registry+https://github.com/rust-lang/crates.io-index"
2983checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a"
2984dependencies = [
2985 "cfg-if",
2986 "futures-util",
2987 "hickory-proto 0.25.2",
2988 "ipconfig",
2989 "moka",
2990 "once_cell",
2991 "parking_lot",
2992 "rand 0.9.2",
2993 "resolv-conf",
2994 "rustls",
2995 "smallvec",
2996 "thiserror 2.0.18",
2997 "tokio",
2998 "tokio-rustls",
2999 "tracing",
3000]
3001
3002[[package]]
3003name = "hickory-resolver"
3004version = "0.26.0"
3005source = "registry+https://github.com/rust-lang/crates.io-index"
3006checksum = "a10bd64d950b4d38ca21e25c8ae230712e4955fb8290cfcb29a5e5dc6017e544"
3007dependencies = [
3008 "cfg-if",
3009 "futures-util",
3010 "hickory-net",
3011 "hickory-proto 0.26.0",
3012 "ipconfig",
3013 "ipnet",
3014 "jni 0.22.4",
3015 "moka",
3016 "ndk-context",
3017 "once_cell",
3018 "parking_lot",
3019 "rand 0.10.0",
3020 "resolv-conf",
3021 "smallvec",
3022 "system-configuration",
3023 "thiserror 2.0.18",
3024 "tokio",
3025 "tracing",
3026]
3027
3028[[package]]
3029name = "hmac"
3030version = "0.12.1"
3031source = "registry+https://github.com/rust-lang/crates.io-index"
3032checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
3033dependencies = [
3034 "digest 0.10.7",
3035]
3036
3037[[package]]
3038name = "home"
3039version = "0.5.12"
3040source = "registry+https://github.com/rust-lang/crates.io-index"
3041checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
3042dependencies = [
3043 "windows-sys 0.61.2",
3044]
3045
3046[[package]]
3047name = "http"
3048version = "1.4.0"
3049source = "registry+https://github.com/rust-lang/crates.io-index"
3050checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
3051dependencies = [
3052 "bytes",
3053 "itoa",
3054]
3055
3056[[package]]
3057name = "http-body"
3058version = "1.0.1"
3059source = "registry+https://github.com/rust-lang/crates.io-index"
3060checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
3061dependencies = [
3062 "bytes",
3063 "http",
3064]
3065
3066[[package]]
3067name = "http-body-util"
3068version = "0.1.3"
3069source = "registry+https://github.com/rust-lang/crates.io-index"
3070checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
3071dependencies = [
3072 "bytes",
3073 "futures-core",
3074 "http",
3075 "http-body",
3076 "pin-project-lite",
3077]
3078
3079[[package]]
3080name = "httparse"
3081version = "1.10.1"
3082source = "registry+https://github.com/rust-lang/crates.io-index"
3083checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
3084
3085[[package]]
3086name = "httpdate"
3087version = "1.0.3"
3088source = "registry+https://github.com/rust-lang/crates.io-index"
3089checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
3090
3091[[package]]
3092name = "hybrid-array"
3093version = "0.4.8"
3094source = "registry+https://github.com/rust-lang/crates.io-index"
3095checksum = "8655f91cd07f2b9d0c24137bd650fe69617773435ee5ec83022377777ce65ef1"
3096dependencies = [
3097 "typenum",
3098]
3099
3100[[package]]
3101name = "hyper"
3102version = "1.8.1"
3103source = "registry+https://github.com/rust-lang/crates.io-index"
3104checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
3105dependencies = [
3106 "atomic-waker",
3107 "bytes",
3108 "futures-channel",
3109 "futures-core",
3110 "h2",
3111 "http",
3112 "http-body",
3113 "httparse",
3114 "httpdate",
3115 "itoa",
3116 "pin-project-lite",
3117 "pin-utils",
3118 "smallvec",
3119 "tokio",
3120 "want",
3121]
3122
3123[[package]]
3124name = "hyper-rustls"
3125version = "0.27.7"
3126source = "registry+https://github.com/rust-lang/crates.io-index"
3127checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
3128dependencies = [
3129 "http",
3130 "hyper",
3131 "hyper-util",
3132 "rustls",
3133 "rustls-pki-types",
3134 "tokio",
3135 "tokio-rustls",
3136 "tower-service",
3137 "webpki-roots 1.0.6",
3138]
3139
3140[[package]]
3141name = "hyper-tls"
3142version = "0.6.0"
3143source = "registry+https://github.com/rust-lang/crates.io-index"
3144checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
3145dependencies = [
3146 "bytes",
3147 "http-body-util",
3148 "hyper",
3149 "hyper-util",
3150 "native-tls",
3151 "tokio",
3152 "tokio-native-tls",
3153 "tower-service",
3154]
3155
3156[[package]]
3157name = "hyper-util"
3158version = "0.1.20"
3159source = "registry+https://github.com/rust-lang/crates.io-index"
3160checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
3161dependencies = [
3162 "base64",
3163 "bytes",
3164 "futures-channel",
3165 "futures-util",
3166 "http",
3167 "http-body",
3168 "hyper",
3169 "ipnet",
3170 "libc",
3171 "percent-encoding",
3172 "pin-project-lite",
3173 "socket2 0.6.3",
3174 "system-configuration",
3175 "tokio",
3176 "tower-service",
3177 "tracing",
3178 "windows-registry",
3179]
3180
3181[[package]]
3182name = "iana-time-zone"
3183version = "0.1.65"
3184source = "registry+https://github.com/rust-lang/crates.io-index"
3185checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470"
3186dependencies = [
3187 "android_system_properties",
3188 "core-foundation-sys",
3189 "iana-time-zone-haiku",
3190 "js-sys",
3191 "log",
3192 "wasm-bindgen",
3193 "windows-core",
3194]
3195
3196[[package]]
3197name = "iana-time-zone-haiku"
3198version = "0.1.2"
3199source = "registry+https://github.com/rust-lang/crates.io-index"
3200checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
3201dependencies = [
3202 "cc",
3203]
3204
3205[[package]]
3206name = "icu_collections"
3207version = "2.1.1"
3208source = "registry+https://github.com/rust-lang/crates.io-index"
3209checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
3210dependencies = [
3211 "displaydoc",
3212 "potential_utf",
3213 "yoke",
3214 "zerofrom",
3215 "zerovec",
3216]
3217
3218[[package]]
3219name = "icu_locale_core"
3220version = "2.1.1"
3221source = "registry+https://github.com/rust-lang/crates.io-index"
3222checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
3223dependencies = [
3224 "displaydoc",
3225 "litemap",
3226 "tinystr",
3227 "writeable",
3228 "zerovec",
3229]
3230
3231[[package]]
3232name = "icu_normalizer"
3233version = "2.1.1"
3234source = "registry+https://github.com/rust-lang/crates.io-index"
3235checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
3236dependencies = [
3237 "icu_collections",
3238 "icu_normalizer_data",
3239 "icu_properties",
3240 "icu_provider",
3241 "smallvec",
3242 "zerovec",
3243]
3244
3245[[package]]
3246name = "icu_normalizer_data"
3247version = "2.1.1"
3248source = "registry+https://github.com/rust-lang/crates.io-index"
3249checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
3250
3251[[package]]
3252name = "icu_properties"
3253version = "2.1.2"
3254source = "registry+https://github.com/rust-lang/crates.io-index"
3255checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec"
3256dependencies = [
3257 "icu_collections",
3258 "icu_locale_core",
3259 "icu_properties_data",
3260 "icu_provider",
3261 "zerotrie",
3262 "zerovec",
3263]
3264
3265[[package]]
3266name = "icu_properties_data"
3267version = "2.1.2"
3268source = "registry+https://github.com/rust-lang/crates.io-index"
3269checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af"
3270
3271[[package]]
3272name = "icu_provider"
3273version = "2.1.1"
3274source = "registry+https://github.com/rust-lang/crates.io-index"
3275checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
3276dependencies = [
3277 "displaydoc",
3278 "icu_locale_core",
3279 "writeable",
3280 "yoke",
3281 "zerofrom",
3282 "zerotrie",
3283 "zerovec",
3284]
3285
3286[[package]]
3287name = "id-arena"
3288version = "2.3.0"
3289source = "registry+https://github.com/rust-lang/crates.io-index"
3290checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
3291
3292[[package]]
3293name = "ident_case"
3294version = "1.0.1"
3295source = "registry+https://github.com/rust-lang/crates.io-index"
3296checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
3297
3298[[package]]
3299name = "identity-hash"
3300version = "0.1.0"
3301source = "registry+https://github.com/rust-lang/crates.io-index"
3302checksum = "dfdd7caa900436d8f13b2346fe10257e0c05c1f1f9e351f4f5d57c03bd5f45da"
3303
3304[[package]]
3305name = "idna"
3306version = "1.1.0"
3307source = "registry+https://github.com/rust-lang/crates.io-index"
3308checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
3309dependencies = [
3310 "idna_adapter",
3311 "smallvec",
3312 "utf8_iter",
3313]
3314
3315[[package]]
3316name = "idna_adapter"
3317version = "1.2.1"
3318source = "registry+https://github.com/rust-lang/crates.io-index"
3319checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
3320dependencies = [
3321 "icu_normalizer",
3322 "icu_properties",
3323]
3324
3325[[package]]
3326name = "igd-next"
3327version = "0.16.2"
3328source = "registry+https://github.com/rust-lang/crates.io-index"
3329checksum = "516893339c97f6011282d5825ac94fc1c7aad5cad26bdc2d0cee068c0bf97f97"
3330dependencies = [
3331 "async-trait",
3332 "attohttpc",
3333 "bytes",
3334 "futures",
3335 "http",
3336 "http-body-util",
3337 "hyper",
3338 "hyper-util",
3339 "log",
3340 "rand 0.9.2",
3341 "tokio",
3342 "url",
3343 "xmltree",
3344]
3345
3346[[package]]
3347name = "indexmap"
3348version = "2.13.0"
3349source = "registry+https://github.com/rust-lang/crates.io-index"
3350checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
3351dependencies = [
3352 "equivalent",
3353 "hashbrown 0.16.1",
3354 "serde",
3355 "serde_core",
3356]
3357
3358[[package]]
3359name = "indicatif"
3360version = "0.17.11"
3361source = "registry+https://github.com/rust-lang/crates.io-index"
3362checksum = "183b3088984b400f4cfac3620d5e076c84da5364016b4f49473de574b2586235"
3363dependencies = [
3364 "console",
3365 "number_prefix",
3366 "portable-atomic",
3367 "unicode-width",
3368 "web-time",
3369]
3370
3371[[package]]
3372name = "inout"
3373version = "0.1.4"
3374source = "registry+https://github.com/rust-lang/crates.io-index"
3375checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
3376dependencies = [
3377 "generic-array",
3378]
3379
3380[[package]]
3381name = "inplace-vec-builder"
3382version = "0.1.1"
3383source = "registry+https://github.com/rust-lang/crates.io-index"
3384checksum = "cf64c2edc8226891a71f127587a2861b132d2b942310843814d5001d99a1d307"
3385dependencies = [
3386 "smallvec",
3387]
3388
3389[[package]]
3390name = "integer-encoding"
3391version = "3.0.4"
3392source = "registry+https://github.com/rust-lang/crates.io-index"
3393checksum = "8bb03732005da905c88227371639bf1ad885cc712789c011c31c5fb3ab3ccf02"
3394
3395[[package]]
3396name = "io-uring"
3397version = "0.7.11"
3398source = "registry+https://github.com/rust-lang/crates.io-index"
3399checksum = "fdd7bddefd0a8833b88a4b68f90dae22c7450d11b354198baee3874fd811b344"
3400dependencies = [
3401 "bitflags",
3402 "cfg-if",
3403 "libc",
3404]
3405
3406[[package]]
3407name = "ipconfig"
3408version = "0.3.2"
3409source = "registry+https://github.com/rust-lang/crates.io-index"
3410checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
3411dependencies = [
3412 "socket2 0.5.10",
3413 "widestring",
3414 "windows-sys 0.48.0",
3415 "winreg",
3416]
3417
3418[[package]]
3419name = "ipld-core"
3420version = "0.4.3"
3421source = "registry+https://github.com/rust-lang/crates.io-index"
3422checksum = "090f624976d72f0b0bb71b86d58dc16c15e069193067cb3a3a09d655246cbbda"
3423dependencies = [
3424 "cid",
3425 "quickcheck",
3426 "serde",
3427 "serde_bytes",
3428]
3429
3430[[package]]
3431name = "ipnet"
3432version = "2.12.0"
3433source = "registry+https://github.com/rust-lang/crates.io-index"
3434checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
3435dependencies = [
3436 "serde",
3437]
3438
3439[[package]]
3440name = "iri-string"
3441version = "0.7.10"
3442source = "registry+https://github.com/rust-lang/crates.io-index"
3443checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a"
3444dependencies = [
3445 "memchr",
3446 "serde",
3447]
3448
3449[[package]]
3450name = "iroh"
3451version = "0.97.0"
3452source = "registry+https://github.com/rust-lang/crates.io-index"
3453checksum = "feb56e7e4b0ec7fba7efa6a236b016a52b5d927d50244aceb9e20566159b1a32"
3454dependencies = [
3455 "backon",
3456 "bytes",
3457 "cfg_aliases",
3458 "data-encoding",
3459 "derive_more",
3460 "ed25519-dalek 3.0.0-pre.1",
3461 "futures-util",
3462 "getrandom 0.3.4",
3463 "hickory-resolver 0.25.2",
3464 "http",
3465 "ipnet",
3466 "iroh-base",
3467 "iroh-metrics",
3468 "iroh-relay",
3469 "n0-error",
3470 "n0-future",
3471 "n0-watcher",
3472 "netwatch",
3473 "noq",
3474 "noq-proto",
3475 "noq-udp",
3476 "papaya",
3477 "pin-project",
3478 "pkarr",
3479 "pkcs8 0.11.0-rc.11",
3480 "portable-atomic",
3481 "portmapper",
3482 "rand 0.9.2",
3483 "reqwest",
3484 "rustc-hash",
3485 "rustls",
3486 "rustls-pki-types",
3487 "rustls-webpki",
3488 "serde",
3489 "smallvec",
3490 "strum",
3491 "swarm-discovery",
3492 "sync_wrapper",
3493 "time",
3494 "tokio",
3495 "tokio-stream",
3496 "tokio-util",
3497 "tracing",
3498 "url",
3499 "wasm-bindgen-futures",
3500 "webpki-roots 1.0.6",
3501]
3502
3503[[package]]
3504name = "iroh-base"
3505version = "0.97.0"
3506source = "registry+https://github.com/rust-lang/crates.io-index"
3507checksum = "55a354e3396b62c14717ee807dfee9a7f43f6dad47e4ac0fd1d49f1ffad14ef0"
3508dependencies = [
3509 "curve25519-dalek 5.0.0-pre.1",
3510 "data-encoding",
3511 "derive_more",
3512 "digest 0.11.0-rc.10",
3513 "ed25519-dalek 3.0.0-pre.1",
3514 "n0-error",
3515 "rand_core 0.9.5",
3516 "serde",
3517 "sha2 0.11.0-rc.2",
3518 "url",
3519 "zeroize",
3520 "zeroize_derive",
3521]
3522
3523[[package]]
3524name = "iroh-blobs"
3525version = "0.99.0"
3526source = "registry+https://github.com/rust-lang/crates.io-index"
3527checksum = "51b06914e77bd07bc1b3600096be66e2a63d391e8f4a901f61771630e20f2116"
3528dependencies = [
3529 "arrayvec",
3530 "bao-tree",
3531 "bytes",
3532 "cfg_aliases",
3533 "chrono",
3534 "data-encoding",
3535 "derive_more",
3536 "futures-lite",
3537 "genawaiter",
3538 "hex",
3539 "iroh",
3540 "iroh-base",
3541 "iroh-io",
3542 "iroh-metrics",
3543 "iroh-tickets",
3544 "irpc",
3545 "n0-error",
3546 "n0-future",
3547 "nested_enum_utils",
3548 "noq",
3549 "postcard",
3550 "rand 0.9.2",
3551 "range-collections",
3552 "redb",
3553 "ref-cast",
3554 "reflink-copy",
3555 "self_cell",
3556 "serde",
3557 "smallvec",
3558 "tokio",
3559 "tracing",
3560]
3561
3562[[package]]
3563name = "iroh-gossip"
3564version = "0.97.0"
3565source = "registry+https://github.com/rust-lang/crates.io-index"
3566checksum = "4db5b64f3cb0a0c8b68b57888acd4cefcd2f0774f1a132d2a498cbb2a92fbc55"
3567dependencies = [
3568 "blake3",
3569 "bytes",
3570 "data-encoding",
3571 "derive_more",
3572 "ed25519-dalek 3.0.0-pre.1",
3573 "futures-concurrency",
3574 "futures-lite",
3575 "futures-util",
3576 "hex",
3577 "indexmap",
3578 "iroh",
3579 "iroh-base",
3580 "iroh-metrics",
3581 "irpc",
3582 "n0-error",
3583 "n0-future",
3584 "postcard",
3585 "rand 0.9.2",
3586 "serde",
3587 "tokio",
3588 "tokio-util",
3589 "tracing",
3590]
3591
3592[[package]]
3593name = "iroh-io"
3594version = "0.6.2"
3595source = "registry+https://github.com/rust-lang/crates.io-index"
3596checksum = "e0a5feb781017b983ff1b155cd1faf8174da2acafd807aa482876da2d7e6577a"
3597dependencies = [
3598 "bytes",
3599 "futures-lite",
3600 "pin-project",
3601 "smallvec",
3602 "tokio",
3603]
3604
3605[[package]]
3606name = "iroh-metrics"
3607version = "0.38.3"
3608source = "registry+https://github.com/rust-lang/crates.io-index"
3609checksum = "761b45ba046134b11eb3e432fa501616b45c4bf3a30c21717578bc07aa6461dd"
3610dependencies = [
3611 "iroh-metrics-derive",
3612 "itoa",
3613 "n0-error",
3614 "portable-atomic",
3615 "postcard",
3616 "ryu",
3617 "serde",
3618 "tracing",
3619]
3620
3621[[package]]
3622name = "iroh-metrics-derive"
3623version = "0.4.1"
3624source = "registry+https://github.com/rust-lang/crates.io-index"
3625checksum = "cab063c2bfd6c3d5a33a913d4fdb5252f140db29ec67c704f20f3da7e8f92dbf"
3626dependencies = [
3627 "heck",
3628 "proc-macro2",
3629 "quote",
3630 "syn 2.0.117",
3631]
3632
3633[[package]]
3634name = "iroh-relay"
3635version = "0.97.0"
3636source = "registry+https://github.com/rust-lang/crates.io-index"
3637checksum = "d786b260cadfe82ae0b6a9e372e8c78949096a06c857d1c3521355cefced0f55"
3638dependencies = [
3639 "blake3",
3640 "bytes",
3641 "cfg_aliases",
3642 "data-encoding",
3643 "derive_more",
3644 "getrandom 0.3.4",
3645 "hickory-resolver 0.25.2",
3646 "http",
3647 "http-body-util",
3648 "hyper",
3649 "hyper-util",
3650 "iroh-base",
3651 "iroh-metrics",
3652 "lru",
3653 "n0-error",
3654 "n0-future",
3655 "noq",
3656 "noq-proto",
3657 "num_enum",
3658 "pin-project",
3659 "pkarr",
3660 "postcard",
3661 "rand 0.9.2",
3662 "reqwest",
3663 "rustls",
3664 "rustls-pki-types",
3665 "serde",
3666 "serde_bytes",
3667 "strum",
3668 "tokio",
3669 "tokio-rustls",
3670 "tokio-util",
3671 "tokio-websockets",
3672 "tracing",
3673 "url",
3674 "vergen-gitcl",
3675 "webpki-roots 1.0.6",
3676 "ws_stream_wasm",
3677 "z32",
3678]
3679
3680[[package]]
3681name = "iroh-tickets"
3682version = "0.4.0"
3683source = "registry+https://github.com/rust-lang/crates.io-index"
3684checksum = "ab64bac4bb573b9cfd2142bd2876ed65ca792efbc4398361a4ee51a0f9afbed6"
3685dependencies = [
3686 "data-encoding",
3687 "derive_more",
3688 "iroh-base",
3689 "n0-error",
3690 "postcard",
3691 "serde",
3692]
3693
3694[[package]]
3695name = "irpc"
3696version = "0.13.0"
3697source = "registry+https://github.com/rust-lang/crates.io-index"
3698checksum = "4f47b7c52662d673df377b5ac40c121c7ff56eb764e520fae6543686132f7957"
3699dependencies = [
3700 "futures-buffered",
3701 "futures-util",
3702 "irpc-derive",
3703 "n0-error",
3704 "n0-future",
3705 "noq",
3706 "postcard",
3707 "rcgen",
3708 "rustls",
3709 "serde",
3710 "smallvec",
3711 "tokio",
3712 "tokio-util",
3713 "tracing",
3714]
3715
3716[[package]]
3717name = "irpc-derive"
3718version = "0.10.0"
3719source = "registry+https://github.com/rust-lang/crates.io-index"
3720checksum = "83c1a4b460634aeed6dc01236a0047867de70e30562d91a0ad031dcb3ac33fb4"
3721dependencies = [
3722 "proc-macro2",
3723 "quote",
3724 "syn 2.0.117",
3725]
3726
3727[[package]]
3728name = "is_terminal_polyfill"
3729version = "1.70.2"
3730source = "registry+https://github.com/rust-lang/crates.io-index"
3731checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
3732
3733[[package]]
3734name = "itertools"
3735version = "0.14.0"
3736source = "registry+https://github.com/rust-lang/crates.io-index"
3737checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285"
3738dependencies = [
3739 "either",
3740]
3741
3742[[package]]
3743name = "itoa"
3744version = "1.0.18"
3745source = "registry+https://github.com/rust-lang/crates.io-index"
3746checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
3747
3748[[package]]
3749name = "jiff"
3750version = "0.2.23"
3751source = "registry+https://github.com/rust-lang/crates.io-index"
3752checksum = "1a3546dc96b6d42c5f24902af9e2538e82e39ad350b0c766eb3fbf2d8f3d8359"
3753dependencies = [
3754 "jiff-static",
3755 "log",
3756 "portable-atomic",
3757 "portable-atomic-util",
3758 "serde_core",
3759]
3760
3761[[package]]
3762name = "jiff-static"
3763version = "0.2.23"
3764source = "registry+https://github.com/rust-lang/crates.io-index"
3765checksum = "2a8c8b344124222efd714b73bb41f8b5120b27a7cc1c75593a6ff768d9d05aa4"
3766dependencies = [
3767 "proc-macro2",
3768 "quote",
3769 "syn 2.0.117",
3770]
3771
3772[[package]]
3773name = "jni"
3774version = "0.21.1"
3775source = "registry+https://github.com/rust-lang/crates.io-index"
3776checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
3777dependencies = [
3778 "cesu8",
3779 "cfg-if",
3780 "combine",
3781 "jni-sys 0.3.1",
3782 "log",
3783 "thiserror 1.0.69",
3784 "walkdir",
3785 "windows-sys 0.45.0",
3786]
3787
3788[[package]]
3789name = "jni"
3790version = "0.22.4"
3791source = "registry+https://github.com/rust-lang/crates.io-index"
3792checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
3793dependencies = [
3794 "cfg-if",
3795 "combine",
3796 "jni-macros",
3797 "jni-sys 0.4.1",
3798 "log",
3799 "simd_cesu8",
3800 "thiserror 2.0.18",
3801 "walkdir",
3802 "windows-link",
3803]
3804
3805[[package]]
3806name = "jni-macros"
3807version = "0.22.4"
3808source = "registry+https://github.com/rust-lang/crates.io-index"
3809checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
3810dependencies = [
3811 "proc-macro2",
3812 "quote",
3813 "rustc_version",
3814 "simd_cesu8",
3815 "syn 2.0.117",
3816]
3817
3818[[package]]
3819name = "jni-sys"
3820version = "0.3.1"
3821source = "registry+https://github.com/rust-lang/crates.io-index"
3822checksum = "41a652e1f9b6e0275df1f15b32661cf0d4b78d4d87ddec5e0c3c20f097433258"
3823dependencies = [
3824 "jni-sys 0.4.1",
3825]
3826
3827[[package]]
3828name = "jni-sys"
3829version = "0.4.1"
3830source = "registry+https://github.com/rust-lang/crates.io-index"
3831checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
3832dependencies = [
3833 "jni-sys-macros",
3834]
3835
3836[[package]]
3837name = "jni-sys-macros"
3838version = "0.4.1"
3839source = "registry+https://github.com/rust-lang/crates.io-index"
3840checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
3841dependencies = [
3842 "quote",
3843 "syn 2.0.117",
3844]
3845
3846[[package]]
3847name = "jobserver"
3848version = "0.1.34"
3849source = "registry+https://github.com/rust-lang/crates.io-index"
3850checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
3851dependencies = [
3852 "getrandom 0.3.4",
3853 "libc",
3854]
3855
3856[[package]]
3857name = "jose-b64"
3858version = "0.1.2"
3859source = "registry+https://github.com/rust-lang/crates.io-index"
3860checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56"
3861dependencies = [
3862 "base64ct",
3863 "serde",
3864 "subtle",
3865 "zeroize",
3866]
3867
3868[[package]]
3869name = "jose-jwa"
3870version = "0.1.2"
3871source = "registry+https://github.com/rust-lang/crates.io-index"
3872checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7"
3873dependencies = [
3874 "serde",
3875]
3876
3877[[package]]
3878name = "jose-jwk"
3879version = "0.1.2"
3880source = "registry+https://github.com/rust-lang/crates.io-index"
3881checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7"
3882dependencies = [
3883 "jose-b64",
3884 "jose-jwa",
3885 "p256",
3886 "serde",
3887 "zeroize",
3888]
3889
3890[[package]]
3891name = "js-sys"
3892version = "0.3.91"
3893source = "registry+https://github.com/rust-lang/crates.io-index"
3894checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c"
3895dependencies = [
3896 "once_cell",
3897 "wasm-bindgen",
3898]
3899
3900[[package]]
3901name = "k256"
3902version = "0.13.4"
3903source = "registry+https://github.com/rust-lang/crates.io-index"
3904checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
3905dependencies = [
3906 "cfg-if",
3907 "ecdsa",
3908 "elliptic-curve",
3909 "once_cell",
3910 "sha2 0.10.9",
3911 "signature 2.2.0",
3912]
3913
3914[[package]]
3915name = "kdam"
3916version = "0.6.4"
3917source = "registry+https://github.com/rust-lang/crates.io-index"
3918checksum = "d847be338ef16a13f97637c062d97fb52ebe0ff3b77fa18456d5ed366317e4f7"
3919dependencies = [
3920 "terminal_size",
3921 "windows-sys 0.61.2",
3922]
3923
3924[[package]]
3925name = "keyring"
3926version = "3.6.3"
3927source = "registry+https://github.com/rust-lang/crates.io-index"
3928checksum = "eebcc3aff044e5944a8fbaf69eb277d11986064cba30c468730e8b9909fb551c"
3929dependencies = [
3930 "log",
3931 "security-framework 2.11.1",
3932 "security-framework 3.7.0",
3933 "zeroize",
3934]
3935
3936[[package]]
3937name = "kv-log-macro"
3938version = "1.0.7"
3939source = "registry+https://github.com/rust-lang/crates.io-index"
3940checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
3941dependencies = [
3942 "log",
3943]
3944
3945[[package]]
3946name = "langtag"
3947version = "0.3.4"
3948source = "registry+https://github.com/rust-lang/crates.io-index"
3949checksum = "ed60c85f254d6ae8450cec15eedd921efbc4d1bdf6fcf6202b9a58b403f6f805"
3950dependencies = [
3951 "serde",
3952]
3953
3954[[package]]
3955name = "lazy_static"
3956version = "1.5.0"
3957source = "registry+https://github.com/rust-lang/crates.io-index"
3958checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
3959
3960[[package]]
3961name = "leb128"
3962version = "0.2.5"
3963source = "registry+https://github.com/rust-lang/crates.io-index"
3964checksum = "884e2677b40cc8c339eaefcb701c32ef1fd2493d71118dc0ca4b6a736c93bd67"
3965
3966[[package]]
3967name = "leb128fmt"
3968version = "0.1.0"
3969source = "registry+https://github.com/rust-lang/crates.io-index"
3970checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
3971
3972[[package]]
3973name = "lexical-core"
3974version = "1.0.6"
3975source = "registry+https://github.com/rust-lang/crates.io-index"
3976checksum = "7d8d125a277f807e55a77304455eb7b1cb52f2b18c143b60e766c120bd64a594"
3977dependencies = [
3978 "lexical-parse-float",
3979 "lexical-parse-integer",
3980 "lexical-util",
3981 "lexical-write-float",
3982 "lexical-write-integer",
3983]
3984
3985[[package]]
3986name = "lexical-parse-float"
3987version = "1.0.6"
3988source = "registry+https://github.com/rust-lang/crates.io-index"
3989checksum = "52a9f232fbd6f550bc0137dcb5f99ab674071ac2d690ac69704593cb4abbea56"
3990dependencies = [
3991 "lexical-parse-integer",
3992 "lexical-util",
3993]
3994
3995[[package]]
3996name = "lexical-parse-integer"
3997version = "1.0.6"
3998source = "registry+https://github.com/rust-lang/crates.io-index"
3999checksum = "9a7a039f8fb9c19c996cd7b2fcce303c1b2874fe1aca544edc85c4a5f8489b34"
4000dependencies = [
4001 "lexical-util",
4002]
4003
4004[[package]]
4005name = "lexical-util"
4006version = "1.0.7"
4007source = "registry+https://github.com/rust-lang/crates.io-index"
4008checksum = "2604dd126bb14f13fb5d1bd6a66155079cb9fa655b37f875b3a742c705dbed17"
4009
4010[[package]]
4011name = "lexical-write-float"
4012version = "1.0.6"
4013source = "registry+https://github.com/rust-lang/crates.io-index"
4014checksum = "50c438c87c013188d415fbabbb1dceb44249ab81664efbd31b14ae55dabb6361"
4015dependencies = [
4016 "lexical-util",
4017 "lexical-write-integer",
4018]
4019
4020[[package]]
4021name = "lexical-write-integer"
4022version = "1.0.6"
4023source = "registry+https://github.com/rust-lang/crates.io-index"
4024checksum = "409851a618475d2d5796377cad353802345cba92c867d9fbcde9cf4eac4e14df"
4025dependencies = [
4026 "lexical-util",
4027]
4028
4029[[package]]
4030name = "libc"
4031version = "0.2.183"
4032source = "registry+https://github.com/rust-lang/crates.io-index"
4033checksum = "b5b646652bf6661599e1da8901b3b9522896f01e736bad5f723fe7a3a27f899d"
4034
4035[[package]]
4036name = "libm"
4037version = "0.2.16"
4038source = "registry+https://github.com/rust-lang/crates.io-index"
4039checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
4040
4041[[package]]
4042name = "libredox"
4043version = "0.1.14"
4044source = "registry+https://github.com/rust-lang/crates.io-index"
4045checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a"
4046dependencies = [
4047 "libc",
4048]
4049
4050[[package]]
4051name = "libsqlite3-sys"
4052version = "0.36.0"
4053source = "registry+https://github.com/rust-lang/crates.io-index"
4054checksum = "95b4103cffefa72eb8428cb6b47d6627161e51c2739fc5e3b734584157bc642a"
4055dependencies = [
4056 "cc",
4057 "openssl-sys",
4058 "pkg-config",
4059 "vcpkg",
4060]
4061
4062[[package]]
4063name = "linux-raw-sys"
4064version = "0.12.1"
4065source = "registry+https://github.com/rust-lang/crates.io-index"
4066checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
4067
4068[[package]]
4069name = "litemap"
4070version = "0.8.1"
4071source = "registry+https://github.com/rust-lang/crates.io-index"
4072checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
4073
4074[[package]]
4075name = "litrs"
4076version = "1.0.0"
4077source = "registry+https://github.com/rust-lang/crates.io-index"
4078checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092"
4079
4080[[package]]
4081name = "lock_api"
4082version = "0.4.14"
4083source = "registry+https://github.com/rust-lang/crates.io-index"
4084checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
4085dependencies = [
4086 "scopeguard",
4087]
4088
4089[[package]]
4090name = "log"
4091version = "0.4.29"
4092source = "registry+https://github.com/rust-lang/crates.io-index"
4093checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
4094dependencies = [
4095 "value-bag",
4096]
4097
4098[[package]]
4099name = "loom"
4100version = "0.7.2"
4101source = "registry+https://github.com/rust-lang/crates.io-index"
4102checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
4103dependencies = [
4104 "cfg-if",
4105 "generator",
4106 "scoped-tls",
4107 "tracing",
4108 "tracing-subscriber",
4109]
4110
4111[[package]]
4112name = "lru"
4113version = "0.16.3"
4114source = "registry+https://github.com/rust-lang/crates.io-index"
4115checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593"
4116dependencies = [
4117 "hashbrown 0.16.1",
4118]
4119
4120[[package]]
4121name = "lru-slab"
4122version = "0.1.2"
4123source = "registry+https://github.com/rust-lang/crates.io-index"
4124checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
4125
4126[[package]]
4127name = "lz4"
4128version = "1.28.1"
4129source = "registry+https://github.com/rust-lang/crates.io-index"
4130checksum = "a20b523e860d03443e98350ceaac5e71c6ba89aea7d960769ec3ce37f4de5af4"
4131dependencies = [
4132 "lz4-sys",
4133]
4134
4135[[package]]
4136name = "lz4-sys"
4137version = "1.11.1+lz4-1.10.0"
4138source = "registry+https://github.com/rust-lang/crates.io-index"
4139checksum = "6bd8c0d6c6ed0cd30b3652886bb8711dc4bb01d637a68105a3d5158039b418e6"
4140dependencies = [
4141 "cc",
4142 "libc",
4143]
4144
4145[[package]]
4146name = "lz4_flex"
4147version = "0.11.6"
4148source = "registry+https://github.com/rust-lang/crates.io-index"
4149checksum = "373f5eceeeab7925e0c1098212f2fbc4d416adec9d35051a6ab251e824c1854a"
4150dependencies = [
4151 "twox-hash",
4152]
4153
4154[[package]]
4155name = "mac-addr"
4156version = "0.3.0"
4157source = "registry+https://github.com/rust-lang/crates.io-index"
4158checksum = "d3d25b0e0b648a86960ac23b7ad4abb9717601dec6f66c165f5b037f3f03065f"
4159
4160[[package]]
4161name = "madsim"
4162version = "0.2.34"
4163source = "registry+https://github.com/rust-lang/crates.io-index"
4164checksum = "18351aac4194337d6ea9ffbd25b3d1540ecc0754142af1bff5ba7392d1f6f771"
4165dependencies = [
4166 "ahash",
4167 "async-channel 2.5.0",
4168 "async-stream",
4169 "async-task",
4170 "bincode",
4171 "bytes",
4172 "downcast-rs",
4173 "errno",
4174 "futures-util",
4175 "lazy_static",
4176 "libc",
4177 "madsim-macros",
4178 "naive-timer",
4179 "panic-message",
4180 "rand 0.8.5",
4181 "rand_xoshiro",
4182 "rustversion",
4183 "serde",
4184 "spin 0.9.8",
4185 "tokio",
4186 "tokio-util",
4187 "toml 0.9.12+spec-1.1.0",
4188 "tracing",
4189 "tracing-subscriber",
4190]
4191
4192[[package]]
4193name = "madsim-macros"
4194version = "0.2.12"
4195source = "registry+https://github.com/rust-lang/crates.io-index"
4196checksum = "f3d248e97b1a48826a12c3828d921e8548e714394bf17274dd0a93910dc946e1"
4197dependencies = [
4198 "darling 0.14.4",
4199 "proc-macro2",
4200 "quote",
4201 "syn 1.0.109",
4202]
4203
4204[[package]]
4205name = "madsim-tokio"
4206version = "0.2.30"
4207source = "registry+https://github.com/rust-lang/crates.io-index"
4208checksum = "7d3eb2acc57c82d21d699119b859e2df70a91dbdb84734885a1e72be83bdecb5"
4209dependencies = [
4210 "madsim",
4211 "spin 0.9.8",
4212 "tokio",
4213]
4214
4215[[package]]
4216name = "match-lookup"
4217version = "0.1.2"
4218source = "registry+https://github.com/rust-lang/crates.io-index"
4219checksum = "757aee279b8bdbb9f9e676796fd459e4207a1f986e87886700abf589f5abf771"
4220dependencies = [
4221 "proc-macro2",
4222 "quote",
4223 "syn 2.0.117",
4224]
4225
4226[[package]]
4227name = "matchers"
4228version = "0.2.0"
4229source = "registry+https://github.com/rust-lang/crates.io-index"
4230checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
4231dependencies = [
4232 "regex-automata",
4233]
4234
4235[[package]]
4236name = "matchit"
4237version = "0.8.4"
4238source = "registry+https://github.com/rust-lang/crates.io-index"
4239checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
4240
4241[[package]]
4242name = "memchr"
4243version = "2.8.0"
4244source = "registry+https://github.com/rust-lang/crates.io-index"
4245checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
4246
4247[[package]]
4248name = "memoffset"
4249version = "0.9.1"
4250source = "registry+https://github.com/rust-lang/crates.io-index"
4251checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
4252dependencies = [
4253 "autocfg",
4254]
4255
4256[[package]]
4257name = "mime"
4258version = "0.3.17"
4259source = "registry+https://github.com/rust-lang/crates.io-index"
4260checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
4261
4262[[package]]
4263name = "mime_guess"
4264version = "2.0.5"
4265source = "registry+https://github.com/rust-lang/crates.io-index"
4266checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
4267dependencies = [
4268 "mime",
4269 "unicase",
4270]
4271
4272[[package]]
4273name = "minimal-lexical"
4274version = "0.2.1"
4275source = "registry+https://github.com/rust-lang/crates.io-index"
4276checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
4277
4278[[package]]
4279name = "miniz_oxide"
4280version = "0.8.9"
4281source = "registry+https://github.com/rust-lang/crates.io-index"
4282checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
4283dependencies = [
4284 "adler2",
4285 "simd-adler32",
4286]
4287
4288[[package]]
4289name = "mio"
4290version = "1.1.1"
4291source = "registry+https://github.com/rust-lang/crates.io-index"
4292checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
4293dependencies = [
4294 "libc",
4295 "wasi",
4296 "windows-sys 0.61.2",
4297]
4298
4299[[package]]
4300name = "mixtrics"
4301version = "0.2.3"
4302source = "registry+https://github.com/rust-lang/crates.io-index"
4303checksum = "fb252c728b9d77c6ef9103f0c81524fa0a3d3b161d0a936295d7fbeff6e04c11"
4304dependencies = [
4305 "itertools",
4306 "parking_lot",
4307]
4308
4309[[package]]
4310name = "moka"
4311version = "0.12.14"
4312source = "registry+https://github.com/rust-lang/crates.io-index"
4313checksum = "85f8024e1c8e71c778968af91d43700ce1d11b219d127d79fb2934153b82b42b"
4314dependencies = [
4315 "async-lock",
4316 "crossbeam-channel",
4317 "crossbeam-epoch",
4318 "crossbeam-utils",
4319 "equivalent",
4320 "event-listener 5.4.1",
4321 "futures-util",
4322 "parking_lot",
4323 "portable-atomic",
4324 "smallvec",
4325 "tagptr",
4326 "uuid",
4327]
4328
4329[[package]]
4330name = "multibase"
4331version = "0.9.2"
4332source = "registry+https://github.com/rust-lang/crates.io-index"
4333checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
4334dependencies = [
4335 "base-x",
4336 "base256emoji",
4337 "data-encoding",
4338 "data-encoding-macro",
4339]
4340
4341[[package]]
4342name = "multihash"
4343version = "0.19.3"
4344source = "registry+https://github.com/rust-lang/crates.io-index"
4345checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d"
4346dependencies = [
4347 "arbitrary",
4348 "core2",
4349 "quickcheck",
4350 "rand 0.8.5",
4351 "serde",
4352 "unsigned-varint",
4353]
4354
4355[[package]]
4356name = "n0-error"
4357version = "0.1.3"
4358source = "registry+https://github.com/rust-lang/crates.io-index"
4359checksum = "af4782b4baf92d686d161c15460c83d16ebcfd215918763903e9619842665cae"
4360dependencies = [
4361 "anyhow",
4362 "n0-error-macros",
4363 "spez",
4364]
4365
4366[[package]]
4367name = "n0-error-macros"
4368version = "0.1.3"
4369source = "registry+https://github.com/rust-lang/crates.io-index"
4370checksum = "03755949235714b2b307e5ae89dd8c1c2531fb127d9b8b7b4adf9c876cd3ed18"
4371dependencies = [
4372 "proc-macro2",
4373 "quote",
4374 "syn 2.0.117",
4375]
4376
4377[[package]]
4378name = "n0-future"
4379version = "0.3.2"
4380source = "registry+https://github.com/rust-lang/crates.io-index"
4381checksum = "e2ab99dfb861450e68853d34ae665243a88b8c493d01ba957321a1e9b2312bbe"
4382dependencies = [
4383 "cfg_aliases",
4384 "derive_more",
4385 "futures-buffered",
4386 "futures-lite",
4387 "futures-util",
4388 "js-sys",
4389 "pin-project",
4390 "send_wrapper",
4391 "tokio",
4392 "tokio-util",
4393 "wasm-bindgen",
4394 "wasm-bindgen-futures",
4395 "web-time",
4396]
4397
4398[[package]]
4399name = "n0-watcher"
4400version = "0.6.1"
4401source = "registry+https://github.com/rust-lang/crates.io-index"
4402checksum = "38795f7932e6e9d1c6e989270ef5b3ff24ebb910e2c9d4bed2d28d8bae3007dc"
4403dependencies = [
4404 "derive_more",
4405 "n0-error",
4406 "n0-future",
4407]
4408
4409[[package]]
4410name = "naive-timer"
4411version = "0.2.0"
4412source = "registry+https://github.com/rust-lang/crates.io-index"
4413checksum = "034a0ad7deebf0c2abcf2435950a6666c3c15ea9d8fad0c0f48efa8a7f843fed"
4414
4415[[package]]
4416name = "nanorand"
4417version = "0.7.0"
4418source = "registry+https://github.com/rust-lang/crates.io-index"
4419checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
4420dependencies = [
4421 "getrandom 0.2.17",
4422]
4423
4424[[package]]
4425name = "native-tls"
4426version = "0.2.18"
4427source = "registry+https://github.com/rust-lang/crates.io-index"
4428checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
4429dependencies = [
4430 "libc",
4431 "log",
4432 "openssl",
4433 "openssl-probe",
4434 "openssl-sys",
4435 "schannel",
4436 "security-framework 3.7.0",
4437 "security-framework-sys",
4438 "tempfile",
4439]
4440
4441[[package]]
4442name = "ndk-context"
4443version = "0.1.1"
4444source = "registry+https://github.com/rust-lang/crates.io-index"
4445checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
4446
4447[[package]]
4448name = "nested_enum_utils"
4449version = "0.2.3"
4450source = "registry+https://github.com/rust-lang/crates.io-index"
4451checksum = "b1d5475271bdd36a4a2769eac1ef88df0f99428ea43e52dfd8b0ee5cb674695f"
4452dependencies = [
4453 "proc-macro-crate",
4454 "proc-macro2",
4455 "quote",
4456 "syn 2.0.117",
4457]
4458
4459[[package]]
4460name = "netdev"
4461version = "0.40.1"
4462source = "registry+https://github.com/rust-lang/crates.io-index"
4463checksum = "1b0a0096d9613ee878dba89bbe595f079d373e3f1960d882e4f2f78ff9c30a0a"
4464dependencies = [
4465 "block2",
4466 "dispatch2",
4467 "dlopen2",
4468 "ipnet",
4469 "libc",
4470 "mac-addr",
4471 "netlink-packet-core",
4472 "netlink-packet-route",
4473 "netlink-sys",
4474 "objc2-core-foundation",
4475 "objc2-system-configuration",
4476 "once_cell",
4477 "plist",
4478 "windows-sys 0.59.0",
4479]
4480
4481[[package]]
4482name = "netlink-packet-core"
4483version = "0.8.1"
4484source = "registry+https://github.com/rust-lang/crates.io-index"
4485checksum = "3463cbb78394cb0141e2c926b93fc2197e473394b761986eca3b9da2c63ae0f4"
4486dependencies = [
4487 "paste",
4488]
4489
4490[[package]]
4491name = "netlink-packet-route"
4492version = "0.29.0"
4493source = "registry+https://github.com/rust-lang/crates.io-index"
4494checksum = "df9854ea6ad14e3f4698a7f03b65bce0833dd2d81d594a0e4a984170537146b6"
4495dependencies = [
4496 "bitflags",
4497 "libc",
4498 "log",
4499 "netlink-packet-core",
4500]
4501
4502[[package]]
4503name = "netlink-proto"
4504version = "0.12.0"
4505source = "registry+https://github.com/rust-lang/crates.io-index"
4506checksum = "b65d130ee111430e47eed7896ea43ca693c387f097dd97376bffafbf25812128"
4507dependencies = [
4508 "bytes",
4509 "futures",
4510 "log",
4511 "netlink-packet-core",
4512 "netlink-sys",
4513 "thiserror 2.0.18",
4514]
4515
4516[[package]]
4517name = "netlink-sys"
4518version = "0.8.8"
4519source = "registry+https://github.com/rust-lang/crates.io-index"
4520checksum = "cd6c30ed10fa69cc491d491b85cc971f6bdeb8e7367b7cde2ee6cc878d583fae"
4521dependencies = [
4522 "bytes",
4523 "futures-util",
4524 "libc",
4525 "log",
4526 "tokio",
4527]
4528
4529[[package]]
4530name = "netwatch"
4531version = "0.15.0"
4532source = "registry+https://github.com/rust-lang/crates.io-index"
4533checksum = "3b1b27babe89ef9f2237bc6c028bea24fa84163a1b6f8f17ff93573ebd7d861f"
4534dependencies = [
4535 "atomic-waker",
4536 "bytes",
4537 "cfg_aliases",
4538 "derive_more",
4539 "js-sys",
4540 "libc",
4541 "n0-error",
4542 "n0-future",
4543 "n0-watcher",
4544 "netdev",
4545 "netlink-packet-core",
4546 "netlink-packet-route",
4547 "netlink-proto",
4548 "netlink-sys",
4549 "noq-udp",
4550 "objc2-core-foundation",
4551 "objc2-system-configuration",
4552 "pin-project-lite",
4553 "serde",
4554 "socket2 0.6.3",
4555 "time",
4556 "tokio",
4557 "tokio-util",
4558 "tracing",
4559 "web-sys",
4560 "windows",
4561 "windows-result",
4562 "wmi",
4563]
4564
4565[[package]]
4566name = "nibble_vec"
4567version = "0.1.0"
4568source = "registry+https://github.com/rust-lang/crates.io-index"
4569checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
4570dependencies = [
4571 "smallvec",
4572]
4573
4574[[package]]
4575name = "nix"
4576version = "0.30.1"
4577source = "registry+https://github.com/rust-lang/crates.io-index"
4578checksum = "74523f3a35e05aba87a1d978330aef40f67b0304ac79c1c00b294c9830543db6"
4579dependencies = [
4580 "bitflags",
4581 "cfg-if",
4582 "cfg_aliases",
4583 "libc",
4584]
4585
4586[[package]]
4587name = "nom"
4588version = "7.1.3"
4589source = "registry+https://github.com/rust-lang/crates.io-index"
4590checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
4591dependencies = [
4592 "memchr",
4593 "minimal-lexical",
4594]
4595
4596[[package]]
4597name = "nom"
4598version = "8.0.0"
4599source = "registry+https://github.com/rust-lang/crates.io-index"
4600checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
4601dependencies = [
4602 "memchr",
4603]
4604
4605[[package]]
4606name = "nom-unicode"
4607version = "0.4.0"
4608source = "registry+https://github.com/rust-lang/crates.io-index"
4609checksum = "00dea06b6b61609274f105c468f1ea996d2f7226bfa528b4de79c05eabf5f759"
4610dependencies = [
4611 "nom 8.0.0",
4612]
4613
4614[[package]]
4615name = "nonempty"
4616version = "0.10.0"
4617source = "registry+https://github.com/rust-lang/crates.io-index"
4618checksum = "303e8749c804ccd6ca3b428de7fe0d86cb86bc7606bc15291f100fd487960bb8"
4619dependencies = [
4620 "serde",
4621]
4622
4623[[package]]
4624name = "noq"
4625version = "0.17.0"
4626source = "registry+https://github.com/rust-lang/crates.io-index"
4627checksum = "8df966fb44ac763bc86da97fa6c811c54ae82ef656575949f93c6dae0c9f09bf"
4628dependencies = [
4629 "bytes",
4630 "cfg_aliases",
4631 "noq-proto",
4632 "noq-udp",
4633 "pin-project-lite",
4634 "rustc-hash",
4635 "rustls",
4636 "socket2 0.6.3",
4637 "thiserror 2.0.18",
4638 "tokio",
4639 "tokio-stream",
4640 "tracing",
4641 "web-time",
4642]
4643
4644[[package]]
4645name = "noq-proto"
4646version = "0.16.0"
4647source = "registry+https://github.com/rust-lang/crates.io-index"
4648checksum = "5c61b72abd670eebc05b5cf720e077b04a3ef3354bc7bc19f1c3524cb424db7b"
4649dependencies = [
4650 "aes-gcm",
4651 "bytes",
4652 "derive_more",
4653 "enum-assoc",
4654 "fastbloom",
4655 "getrandom 0.3.4",
4656 "identity-hash",
4657 "lru-slab",
4658 "rand 0.9.2",
4659 "ring",
4660 "rustc-hash",
4661 "rustls",
4662 "rustls-pki-types",
4663 "rustls-platform-verifier",
4664 "slab",
4665 "sorted-index-buffer",
4666 "thiserror 2.0.18",
4667 "tinyvec",
4668 "tracing",
4669 "web-time",
4670]
4671
4672[[package]]
4673name = "noq-udp"
4674version = "0.9.0"
4675source = "registry+https://github.com/rust-lang/crates.io-index"
4676checksum = "bb9be4fedd6b98f3ba82ccd3506f4d0219fb723c3f97c67e12fe1494aa020e44"
4677dependencies = [
4678 "cfg_aliases",
4679 "libc",
4680 "socket2 0.6.3",
4681 "tracing",
4682 "windows-sys 0.61.2",
4683]
4684
4685[[package]]
4686name = "ntimestamp"
4687version = "1.0.0"
4688source = "registry+https://github.com/rust-lang/crates.io-index"
4689checksum = "c50f94c405726d3e0095e89e72f75ce7f6587b94a8bd8dc8054b73f65c0fd68c"
4690dependencies = [
4691 "base32",
4692 "document-features",
4693 "getrandom 0.2.17",
4694 "httpdate",
4695 "js-sys",
4696 "once_cell",
4697 "serde",
4698]
4699
4700[[package]]
4701name = "nu-ansi-term"
4702version = "0.50.3"
4703source = "registry+https://github.com/rust-lang/crates.io-index"
4704checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
4705dependencies = [
4706 "windows-sys 0.61.2",
4707]
4708
4709[[package]]
4710name = "num"
4711version = "0.4.3"
4712source = "registry+https://github.com/rust-lang/crates.io-index"
4713checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
4714dependencies = [
4715 "num-bigint",
4716 "num-complex",
4717 "num-integer",
4718 "num-iter",
4719 "num-rational",
4720 "num-traits",
4721]
4722
4723[[package]]
4724name = "num-bigint"
4725version = "0.4.6"
4726source = "registry+https://github.com/rust-lang/crates.io-index"
4727checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
4728dependencies = [
4729 "num-integer",
4730 "num-traits",
4731]
4732
4733[[package]]
4734name = "num-complex"
4735version = "0.4.6"
4736source = "registry+https://github.com/rust-lang/crates.io-index"
4737checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
4738dependencies = [
4739 "num-traits",
4740]
4741
4742[[package]]
4743name = "num-conv"
4744version = "0.2.0"
4745source = "registry+https://github.com/rust-lang/crates.io-index"
4746checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
4747
4748[[package]]
4749name = "num-integer"
4750version = "0.1.46"
4751source = "registry+https://github.com/rust-lang/crates.io-index"
4752checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
4753dependencies = [
4754 "num-traits",
4755]
4756
4757[[package]]
4758name = "num-iter"
4759version = "0.1.45"
4760source = "registry+https://github.com/rust-lang/crates.io-index"
4761checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
4762dependencies = [
4763 "autocfg",
4764 "num-integer",
4765 "num-traits",
4766]
4767
4768[[package]]
4769name = "num-rational"
4770version = "0.4.2"
4771source = "registry+https://github.com/rust-lang/crates.io-index"
4772checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
4773dependencies = [
4774 "num-bigint",
4775 "num-integer",
4776 "num-traits",
4777]
4778
4779[[package]]
4780name = "num-traits"
4781version = "0.2.19"
4782source = "registry+https://github.com/rust-lang/crates.io-index"
4783checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
4784dependencies = [
4785 "autocfg",
4786 "libm",
4787]
4788
4789[[package]]
4790name = "num_cpus"
4791version = "1.17.0"
4792source = "registry+https://github.com/rust-lang/crates.io-index"
4793checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
4794dependencies = [
4795 "hermit-abi",
4796 "libc",
4797]
4798
4799[[package]]
4800name = "num_enum"
4801version = "0.7.6"
4802source = "registry+https://github.com/rust-lang/crates.io-index"
4803checksum = "5d0bca838442ec211fa11de3a8b0e0e8f3a4522575b5c4c06ed722e005036f26"
4804dependencies = [
4805 "num_enum_derive",
4806 "rustversion",
4807]
4808
4809[[package]]
4810name = "num_enum_derive"
4811version = "0.7.6"
4812source = "registry+https://github.com/rust-lang/crates.io-index"
4813checksum = "680998035259dcfcafe653688bf2aa6d3e2dc05e98be6ab46afb089dc84f1df8"
4814dependencies = [
4815 "proc-macro-crate",
4816 "proc-macro2",
4817 "quote",
4818 "syn 2.0.117",
4819]
4820
4821[[package]]
4822name = "num_threads"
4823version = "0.1.7"
4824source = "registry+https://github.com/rust-lang/crates.io-index"
4825checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
4826dependencies = [
4827 "libc",
4828]
4829
4830[[package]]
4831name = "number_prefix"
4832version = "0.4.0"
4833source = "registry+https://github.com/rust-lang/crates.io-index"
4834checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
4835
4836[[package]]
4837name = "objc2"
4838version = "0.6.4"
4839source = "registry+https://github.com/rust-lang/crates.io-index"
4840checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f"
4841dependencies = [
4842 "objc2-encode",
4843]
4844
4845[[package]]
4846name = "objc2-core-foundation"
4847version = "0.3.2"
4848source = "registry+https://github.com/rust-lang/crates.io-index"
4849checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536"
4850dependencies = [
4851 "bitflags",
4852 "block2",
4853 "dispatch2",
4854 "libc",
4855 "objc2",
4856]
4857
4858[[package]]
4859name = "objc2-encode"
4860version = "4.1.0"
4861source = "registry+https://github.com/rust-lang/crates.io-index"
4862checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
4863
4864[[package]]
4865name = "objc2-security"
4866version = "0.3.2"
4867source = "registry+https://github.com/rust-lang/crates.io-index"
4868checksum = "709fe137109bd1e8b5a99390f77a7d8b2961dafc1a1c5db8f2e60329ad6d895a"
4869dependencies = [
4870 "bitflags",
4871 "objc2",
4872 "objc2-core-foundation",
4873]
4874
4875[[package]]
4876name = "objc2-system-configuration"
4877version = "0.3.2"
4878source = "registry+https://github.com/rust-lang/crates.io-index"
4879checksum = "7216bd11cbda54ccabcab84d523dc93b858ec75ecfb3a7d89513fa22464da396"
4880dependencies = [
4881 "bitflags",
4882 "dispatch2",
4883 "libc",
4884 "objc2",
4885 "objc2-core-foundation",
4886 "objc2-security",
4887]
4888
4889[[package]]
4890name = "oid-registry"
4891version = "0.8.1"
4892source = "registry+https://github.com/rust-lang/crates.io-index"
4893checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
4894dependencies = [
4895 "asn1-rs",
4896]
4897
4898[[package]]
4899name = "once_cell"
4900version = "1.21.4"
4901source = "registry+https://github.com/rust-lang/crates.io-index"
4902checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
4903dependencies = [
4904 "critical-section",
4905 "portable-atomic",
4906]
4907
4908[[package]]
4909name = "once_cell_polyfill"
4910version = "1.70.2"
4911source = "registry+https://github.com/rust-lang/crates.io-index"
4912checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
4913
4914[[package]]
4915name = "opaque-debug"
4916version = "0.3.1"
4917source = "registry+https://github.com/rust-lang/crates.io-index"
4918checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
4919
4920[[package]]
4921name = "openssl"
4922version = "0.10.76"
4923source = "registry+https://github.com/rust-lang/crates.io-index"
4924checksum = "951c002c75e16ea2c65b8c7e4d3d51d5530d8dfa7d060b4776828c88cfb18ecf"
4925dependencies = [
4926 "bitflags",
4927 "cfg-if",
4928 "foreign-types",
4929 "libc",
4930 "once_cell",
4931 "openssl-macros",
4932 "openssl-sys",
4933]
4934
4935[[package]]
4936name = "openssl-macros"
4937version = "0.1.1"
4938source = "registry+https://github.com/rust-lang/crates.io-index"
4939checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
4940dependencies = [
4941 "proc-macro2",
4942 "quote",
4943 "syn 2.0.117",
4944]
4945
4946[[package]]
4947name = "openssl-probe"
4948version = "0.2.1"
4949source = "registry+https://github.com/rust-lang/crates.io-index"
4950checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
4951
4952[[package]]
4953name = "openssl-src"
4954version = "300.5.5+3.5.5"
4955source = "registry+https://github.com/rust-lang/crates.io-index"
4956checksum = "3f1787d533e03597a7934fd0a765f0d28e94ecc5fb7789f8053b1e699a56f709"
4957dependencies = [
4958 "cc",
4959]
4960
4961[[package]]
4962name = "openssl-sys"
4963version = "0.9.112"
4964source = "registry+https://github.com/rust-lang/crates.io-index"
4965checksum = "57d55af3b3e226502be1526dfdba67ab0e9c96fc293004e79576b2b9edb0dbdb"
4966dependencies = [
4967 "cc",
4968 "libc",
4969 "openssl-src",
4970 "pkg-config",
4971 "vcpkg",
4972]
4973
4974[[package]]
4975name = "option-ext"
4976version = "0.2.0"
4977source = "registry+https://github.com/rust-lang/crates.io-index"
4978checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
4979
4980[[package]]
4981name = "ordered-float"
4982version = "2.10.1"
4983source = "registry+https://github.com/rust-lang/crates.io-index"
4984checksum = "68f19d67e5a2795c94e73e0bb1cc1a7edeb2e28efd39e2e1c9b7a40c1108b11c"
4985dependencies = [
4986 "num-traits",
4987]
4988
4989[[package]]
4990name = "ordered-float"
4991version = "5.1.0"
4992source = "registry+https://github.com/rust-lang/crates.io-index"
4993checksum = "7f4779c6901a562440c3786d08192c6fbda7c1c2060edd10006b05ee35d10f2d"
4994dependencies = [
4995 "num-traits",
4996]
4997
4998[[package]]
4999name = "owo-colors"
5000version = "4.3.0"
5001source = "registry+https://github.com/rust-lang/crates.io-index"
5002checksum = "d211803b9b6b570f68772237e415a029d5a50c65d382910b879fb19d3271f94d"
5003
5004[[package]]
5005name = "p256"
5006version = "0.13.2"
5007source = "registry+https://github.com/rust-lang/crates.io-index"
5008checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
5009dependencies = [
5010 "ecdsa",
5011 "elliptic-curve",
5012 "primeorder",
5013 "sha2 0.10.9",
5014]
5015
5016[[package]]
5017name = "panic-message"
5018version = "0.3.0"
5019source = "registry+https://github.com/rust-lang/crates.io-index"
5020checksum = "384e52fd8fbd4cbe3c317e8216260c21a0f9134de108cea8a4dd4e7e152c472d"
5021
5022[[package]]
5023name = "papaya"
5024version = "0.2.3"
5025source = "registry+https://github.com/rust-lang/crates.io-index"
5026checksum = "f92dd0b07c53a0a0c764db2ace8c541dc47320dad97c2200c2a637ab9dd2328f"
5027dependencies = [
5028 "equivalent",
5029 "seize",
5030]
5031
5032[[package]]
5033name = "parking"
5034version = "2.2.1"
5035source = "registry+https://github.com/rust-lang/crates.io-index"
5036checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
5037
5038[[package]]
5039name = "parking_lot"
5040version = "0.12.5"
5041source = "registry+https://github.com/rust-lang/crates.io-index"
5042checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
5043dependencies = [
5044 "lock_api",
5045 "parking_lot_core",
5046]
5047
5048[[package]]
5049name = "parking_lot_core"
5050version = "0.9.12"
5051source = "registry+https://github.com/rust-lang/crates.io-index"
5052checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
5053dependencies = [
5054 "cfg-if",
5055 "libc",
5056 "redox_syscall",
5057 "smallvec",
5058 "windows-link",
5059]
5060
5061[[package]]
5062name = "parquet"
5063version = "56.2.0"
5064source = "registry+https://github.com/rust-lang/crates.io-index"
5065checksum = "f0dbd48ad52d7dccf8ea1b90a3ddbfaea4f69878dd7683e51c507d4bc52b5b27"
5066dependencies = [
5067 "ahash",
5068 "arrow-array",
5069 "arrow-buffer",
5070 "arrow-cast",
5071 "arrow-data",
5072 "arrow-ipc",
5073 "arrow-schema",
5074 "arrow-select",
5075 "base64",
5076 "brotli",
5077 "bytes",
5078 "chrono",
5079 "flate2",
5080 "half",
5081 "hashbrown 0.16.1",
5082 "lz4_flex",
5083 "num",
5084 "num-bigint",
5085 "paste",
5086 "seq-macro",
5087 "simdutf8",
5088 "snap",
5089 "thrift",
5090 "twox-hash",
5091 "zstd",
5092]
5093
5094[[package]]
5095name = "paste"
5096version = "1.0.15"
5097source = "registry+https://github.com/rust-lang/crates.io-index"
5098checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
5099
5100[[package]]
5101name = "pem"
5102version = "3.0.6"
5103source = "registry+https://github.com/rust-lang/crates.io-index"
5104checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
5105dependencies = [
5106 "base64",
5107 "serde_core",
5108]
5109
5110[[package]]
5111name = "pem-rfc7468"
5112version = "0.7.0"
5113source = "registry+https://github.com/rust-lang/crates.io-index"
5114checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
5115dependencies = [
5116 "base64ct",
5117]
5118
5119[[package]]
5120name = "pem-rfc7468"
5121version = "1.0.0"
5122source = "registry+https://github.com/rust-lang/crates.io-index"
5123checksum = "a6305423e0e7738146434843d1694d621cce767262b2a86910beab705e4493d9"
5124dependencies = [
5125 "base64ct",
5126]
5127
5128[[package]]
5129name = "percent-encoding"
5130version = "2.3.2"
5131source = "registry+https://github.com/rust-lang/crates.io-index"
5132checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
5133
5134[[package]]
5135name = "pharos"
5136version = "0.5.3"
5137source = "registry+https://github.com/rust-lang/crates.io-index"
5138checksum = "e9567389417feee6ce15dd6527a8a1ecac205ef62c2932bcf3d9f6fc5b78b414"
5139dependencies = [
5140 "futures",
5141 "rustc_version",
5142]
5143
5144[[package]]
5145name = "pin-project"
5146version = "1.1.11"
5147source = "registry+https://github.com/rust-lang/crates.io-index"
5148checksum = "f1749c7ed4bcaf4c3d0a3efc28538844fb29bcdd7d2b67b2be7e20ba861ff517"
5149dependencies = [
5150 "pin-project-internal",
5151]
5152
5153[[package]]
5154name = "pin-project-internal"
5155version = "1.1.11"
5156source = "registry+https://github.com/rust-lang/crates.io-index"
5157checksum = "d9b20ed30f105399776b9c883e68e536ef602a16ae6f596d2c473591d6ad64c6"
5158dependencies = [
5159 "proc-macro2",
5160 "quote",
5161 "syn 2.0.117",
5162]
5163
5164[[package]]
5165name = "pin-project-lite"
5166version = "0.2.17"
5167source = "registry+https://github.com/rust-lang/crates.io-index"
5168checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
5169
5170[[package]]
5171name = "pin-utils"
5172version = "0.1.0"
5173source = "registry+https://github.com/rust-lang/crates.io-index"
5174checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
5175
5176[[package]]
5177name = "piper"
5178version = "0.2.5"
5179source = "registry+https://github.com/rust-lang/crates.io-index"
5180checksum = "c835479a4443ded371d6c535cbfd8d31ad92c5d23ae9770a61bc155e4992a3c1"
5181dependencies = [
5182 "atomic-waker",
5183 "fastrand",
5184 "futures-io",
5185]
5186
5187[[package]]
5188name = "pkarr"
5189version = "5.0.3"
5190source = "registry+https://github.com/rust-lang/crates.io-index"
5191checksum = "2f950360d31be432c0c9467fba5024a94f55128e7f32bc9d32db140369f24c77"
5192dependencies = [
5193 "base32",
5194 "bytes",
5195 "cfg_aliases",
5196 "document-features",
5197 "ed25519-dalek 3.0.0-pre.1",
5198 "getrandom 0.4.2",
5199 "ntimestamp",
5200 "self_cell",
5201 "serde",
5202 "simple-dns",
5203 "thiserror 2.0.18",
5204]
5205
5206[[package]]
5207name = "pkcs8"
5208version = "0.10.2"
5209source = "registry+https://github.com/rust-lang/crates.io-index"
5210checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
5211dependencies = [
5212 "der 0.7.10",
5213 "spki 0.7.3",
5214]
5215
5216[[package]]
5217name = "pkcs8"
5218version = "0.11.0-rc.11"
5219source = "registry+https://github.com/rust-lang/crates.io-index"
5220checksum = "12922b6296c06eb741b02d7b5161e3aaa22864af38dfa025a1a3ba3f68c84577"
5221dependencies = [
5222 "der 0.8.0",
5223 "spki 0.8.0-rc.4",
5224]
5225
5226[[package]]
5227name = "pkg-config"
5228version = "0.3.32"
5229source = "registry+https://github.com/rust-lang/crates.io-index"
5230checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
5231
5232[[package]]
5233name = "plist"
5234version = "1.8.0"
5235source = "registry+https://github.com/rust-lang/crates.io-index"
5236checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07"
5237dependencies = [
5238 "base64",
5239 "indexmap",
5240 "quick-xml",
5241 "serde",
5242 "time",
5243]
5244
5245[[package]]
5246name = "polling"
5247version = "3.11.0"
5248source = "registry+https://github.com/rust-lang/crates.io-index"
5249checksum = "5d0e4f59085d47d8241c88ead0f274e8a0cb551f3625263c05eb8dd897c34218"
5250dependencies = [
5251 "cfg-if",
5252 "concurrent-queue",
5253 "hermit-abi",
5254 "pin-project-lite",
5255 "rustix",
5256 "windows-sys 0.61.2",
5257]
5258
5259[[package]]
5260name = "polyval"
5261version = "0.6.2"
5262source = "registry+https://github.com/rust-lang/crates.io-index"
5263checksum = "9d1fe60d06143b2430aa532c94cfe9e29783047f06c0d7fd359a9a51b729fa25"
5264dependencies = [
5265 "cfg-if",
5266 "cpufeatures 0.2.17",
5267 "opaque-debug",
5268 "universal-hash",
5269]
5270
5271[[package]]
5272name = "portable-atomic"
5273version = "1.13.1"
5274source = "registry+https://github.com/rust-lang/crates.io-index"
5275checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
5276dependencies = [
5277 "serde",
5278]
5279
5280[[package]]
5281name = "portable-atomic-util"
5282version = "0.2.6"
5283source = "registry+https://github.com/rust-lang/crates.io-index"
5284checksum = "091397be61a01d4be58e7841595bd4bfedb15f1cd54977d79b8271e94ed799a3"
5285dependencies = [
5286 "portable-atomic",
5287]
5288
5289[[package]]
5290name = "portmapper"
5291version = "0.15.0"
5292source = "registry+https://github.com/rust-lang/crates.io-index"
5293checksum = "74748bc706fa6b6aebac6bbe0bbe0de806b384cb5c557ea974f771360a4e3858"
5294dependencies = [
5295 "base64",
5296 "bytes",
5297 "derive_more",
5298 "futures-lite",
5299 "futures-util",
5300 "hyper-util",
5301 "igd-next",
5302 "iroh-metrics",
5303 "libc",
5304 "n0-error",
5305 "netwatch",
5306 "num_enum",
5307 "rand 0.9.2",
5308 "serde",
5309 "smallvec",
5310 "socket2 0.6.3",
5311 "time",
5312 "tokio",
5313 "tokio-util",
5314 "tower-layer",
5315 "tracing",
5316 "url",
5317]
5318
5319[[package]]
5320name = "positioned-io"
5321version = "0.3.5"
5322source = "registry+https://github.com/rust-lang/crates.io-index"
5323checksum = "d4ec4b80060f033312b99b6874025d9503d2af87aef2dd4c516e253fbfcdada7"
5324dependencies = [
5325 "libc",
5326 "winapi",
5327]
5328
5329[[package]]
5330name = "postcard"
5331version = "1.1.3"
5332source = "registry+https://github.com/rust-lang/crates.io-index"
5333checksum = "6764c3b5dd454e283a30e6dfe78e9b31096d9e32036b5d1eaac7a6119ccb9a24"
5334dependencies = [
5335 "cobs",
5336 "embedded-io 0.4.0",
5337 "embedded-io 0.6.1",
5338 "heapless",
5339 "postcard-derive",
5340 "serde",
5341]
5342
5343[[package]]
5344name = "postcard-derive"
5345version = "0.2.2"
5346source = "registry+https://github.com/rust-lang/crates.io-index"
5347checksum = "e0232bd009a197ceec9cc881ba46f727fcd8060a2d8d6a9dde7a69030a6fe2bb"
5348dependencies = [
5349 "proc-macro2",
5350 "quote",
5351 "syn 2.0.117",
5352]
5353
5354[[package]]
5355name = "potential_utf"
5356version = "0.1.4"
5357source = "registry+https://github.com/rust-lang/crates.io-index"
5358checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
5359dependencies = [
5360 "zerovec",
5361]
5362
5363[[package]]
5364name = "powerfmt"
5365version = "0.2.0"
5366source = "registry+https://github.com/rust-lang/crates.io-index"
5367checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
5368
5369[[package]]
5370name = "ppv-lite86"
5371version = "0.2.21"
5372source = "registry+https://github.com/rust-lang/crates.io-index"
5373checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
5374dependencies = [
5375 "zerocopy",
5376]
5377
5378[[package]]
5379name = "prefix-trie"
5380version = "0.8.2"
5381source = "registry+https://github.com/rust-lang/crates.io-index"
5382checksum = "23370be78b7e5bcbb0cab4a02047eb040279a693c78daad04c2c5f1c24a83503"
5383dependencies = [
5384 "either",
5385 "ipnet",
5386 "num-traits",
5387]
5388
5389[[package]]
5390name = "prettyplease"
5391version = "0.2.37"
5392source = "registry+https://github.com/rust-lang/crates.io-index"
5393checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
5394dependencies = [
5395 "proc-macro2",
5396 "syn 2.0.117",
5397]
5398
5399[[package]]
5400name = "primeorder"
5401version = "0.13.6"
5402source = "registry+https://github.com/rust-lang/crates.io-index"
5403checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
5404dependencies = [
5405 "elliptic-curve",
5406]
5407
5408[[package]]
5409name = "proc-macro-crate"
5410version = "3.5.0"
5411source = "registry+https://github.com/rust-lang/crates.io-index"
5412checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f"
5413dependencies = [
5414 "toml_edit",
5415]
5416
5417[[package]]
5418name = "proc-macro-error"
5419version = "0.4.12"
5420source = "registry+https://github.com/rust-lang/crates.io-index"
5421checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7"
5422dependencies = [
5423 "proc-macro-error-attr",
5424 "proc-macro2",
5425 "quote",
5426 "syn 1.0.109",
5427 "version_check",
5428]
5429
5430[[package]]
5431name = "proc-macro-error-attr"
5432version = "0.4.12"
5433source = "registry+https://github.com/rust-lang/crates.io-index"
5434checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de"
5435dependencies = [
5436 "proc-macro2",
5437 "quote",
5438 "syn 1.0.109",
5439 "syn-mid",
5440 "version_check",
5441]
5442
5443[[package]]
5444name = "proc-macro-hack"
5445version = "0.5.20+deprecated"
5446source = "registry+https://github.com/rust-lang/crates.io-index"
5447checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
5448
5449[[package]]
5450name = "proc-macro2"
5451version = "1.0.106"
5452source = "registry+https://github.com/rust-lang/crates.io-index"
5453checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
5454dependencies = [
5455 "unicode-ident",
5456]
5457
5458[[package]]
5459name = "quick-xml"
5460version = "0.38.4"
5461source = "registry+https://github.com/rust-lang/crates.io-index"
5462checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
5463dependencies = [
5464 "memchr",
5465]
5466
5467[[package]]
5468name = "quickcheck"
5469version = "1.1.0"
5470source = "registry+https://github.com/rust-lang/crates.io-index"
5471checksum = "95c589f335db0f6aaa168a7cd27b1fc6920f5e1470c804f814d9cd6e62a0f70b"
5472dependencies = [
5473 "env_logger",
5474 "log",
5475 "rand 0.10.0",
5476]
5477
5478[[package]]
5479name = "quinn"
5480version = "0.11.9"
5481source = "registry+https://github.com/rust-lang/crates.io-index"
5482checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
5483dependencies = [
5484 "bytes",
5485 "cfg_aliases",
5486 "pin-project-lite",
5487 "quinn-proto",
5488 "quinn-udp",
5489 "rustc-hash",
5490 "rustls",
5491 "socket2 0.6.3",
5492 "thiserror 2.0.18",
5493 "tokio",
5494 "tracing",
5495 "web-time",
5496]
5497
5498[[package]]
5499name = "quinn-proto"
5500version = "0.11.14"
5501source = "registry+https://github.com/rust-lang/crates.io-index"
5502checksum = "434b42fec591c96ef50e21e886936e66d3cc3f737104fdb9b737c40ffb94c098"
5503dependencies = [
5504 "bytes",
5505 "getrandom 0.3.4",
5506 "lru-slab",
5507 "rand 0.9.2",
5508 "ring",
5509 "rustc-hash",
5510 "rustls",
5511 "rustls-pki-types",
5512 "slab",
5513 "thiserror 2.0.18",
5514 "tinyvec",
5515 "tracing",
5516 "web-time",
5517]
5518
5519[[package]]
5520name = "quinn-udp"
5521version = "0.5.14"
5522source = "registry+https://github.com/rust-lang/crates.io-index"
5523checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
5524dependencies = [
5525 "cfg_aliases",
5526 "libc",
5527 "once_cell",
5528 "socket2 0.6.3",
5529 "tracing",
5530 "windows-sys 0.60.2",
5531]
5532
5533[[package]]
5534name = "quote"
5535version = "1.0.45"
5536source = "registry+https://github.com/rust-lang/crates.io-index"
5537checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
5538dependencies = [
5539 "proc-macro2",
5540]
5541
5542[[package]]
5543name = "r-efi"
5544version = "5.3.0"
5545source = "registry+https://github.com/rust-lang/crates.io-index"
5546checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
5547
5548[[package]]
5549name = "r-efi"
5550version = "6.0.0"
5551source = "registry+https://github.com/rust-lang/crates.io-index"
5552checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
5553
5554[[package]]
5555name = "radix_trie"
5556version = "0.2.1"
5557source = "registry+https://github.com/rust-lang/crates.io-index"
5558checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
5559dependencies = [
5560 "endian-type",
5561 "nibble_vec",
5562]
5563
5564[[package]]
5565name = "rand"
5566version = "0.8.5"
5567source = "registry+https://github.com/rust-lang/crates.io-index"
5568checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
5569dependencies = [
5570 "libc",
5571 "rand_chacha 0.3.1",
5572 "rand_core 0.6.4",
5573]
5574
5575[[package]]
5576name = "rand"
5577version = "0.9.2"
5578source = "registry+https://github.com/rust-lang/crates.io-index"
5579checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
5580dependencies = [
5581 "rand_chacha 0.9.0",
5582 "rand_core 0.9.5",
5583]
5584
5585[[package]]
5586name = "rand"
5587version = "0.10.0"
5588source = "registry+https://github.com/rust-lang/crates.io-index"
5589checksum = "bc266eb313df6c5c09c1c7b1fbe2510961e5bcd3add930c1e31f7ed9da0feff8"
5590dependencies = [
5591 "chacha20",
5592 "getrandom 0.4.2",
5593 "rand_core 0.10.0",
5594]
5595
5596[[package]]
5597name = "rand_chacha"
5598version = "0.3.1"
5599source = "registry+https://github.com/rust-lang/crates.io-index"
5600checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
5601dependencies = [
5602 "ppv-lite86",
5603 "rand_core 0.6.4",
5604]
5605
5606[[package]]
5607name = "rand_chacha"
5608version = "0.9.0"
5609source = "registry+https://github.com/rust-lang/crates.io-index"
5610checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
5611dependencies = [
5612 "ppv-lite86",
5613 "rand_core 0.9.5",
5614]
5615
5616[[package]]
5617name = "rand_core"
5618version = "0.6.4"
5619source = "registry+https://github.com/rust-lang/crates.io-index"
5620checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
5621dependencies = [
5622 "getrandom 0.2.17",
5623]
5624
5625[[package]]
5626name = "rand_core"
5627version = "0.9.5"
5628source = "registry+https://github.com/rust-lang/crates.io-index"
5629checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
5630dependencies = [
5631 "getrandom 0.3.4",
5632]
5633
5634[[package]]
5635name = "rand_core"
5636version = "0.10.0"
5637source = "registry+https://github.com/rust-lang/crates.io-index"
5638checksum = "0c8d0fd677905edcbeedbf2edb6494d676f0e98d54d5cf9bda0b061cb8fb8aba"
5639
5640[[package]]
5641name = "rand_xoshiro"
5642version = "0.6.0"
5643source = "registry+https://github.com/rust-lang/crates.io-index"
5644checksum = "6f97cdb2a36ed4183de61b2f824cc45c9f1037f28afe0a322e9fff4c108b5aaa"
5645dependencies = [
5646 "rand_core 0.6.4",
5647]
5648
5649[[package]]
5650name = "range-collections"
5651version = "0.4.6"
5652source = "registry+https://github.com/rust-lang/crates.io-index"
5653checksum = "861706ea9c4aded7584c5cd1d241cec2ea7f5f50999f236c22b65409a1f1a0d0"
5654dependencies = [
5655 "binary-merge",
5656 "inplace-vec-builder",
5657 "ref-cast",
5658 "serde",
5659 "smallvec",
5660]
5661
5662[[package]]
5663name = "rayon"
5664version = "1.11.0"
5665source = "registry+https://github.com/rust-lang/crates.io-index"
5666checksum = "368f01d005bf8fd9b1206fb6fa653e6c4a81ceb1466406b81792d87c5677a58f"
5667dependencies = [
5668 "either",
5669 "rayon-core",
5670]
5671
5672[[package]]
5673name = "rayon-core"
5674version = "1.13.0"
5675source = "registry+https://github.com/rust-lang/crates.io-index"
5676checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
5677dependencies = [
5678 "crossbeam-deque",
5679 "crossbeam-utils",
5680]
5681
5682[[package]]
5683name = "rcgen"
5684version = "0.14.7"
5685source = "registry+https://github.com/rust-lang/crates.io-index"
5686checksum = "10b99e0098aa4082912d4c649628623db6aba77335e4f4569ff5083a6448b32e"
5687dependencies = [
5688 "pem",
5689 "ring",
5690 "rustls-pki-types",
5691 "time",
5692 "x509-parser",
5693 "yasna",
5694]
5695
5696[[package]]
5697name = "redb"
5698version = "2.6.3"
5699source = "registry+https://github.com/rust-lang/crates.io-index"
5700checksum = "8eca1e9d98d5a7e9002d0013e18d5a9b000aee942eb134883a82f06ebffb6c01"
5701dependencies = [
5702 "libc",
5703]
5704
5705[[package]]
5706name = "redox_syscall"
5707version = "0.5.18"
5708source = "registry+https://github.com/rust-lang/crates.io-index"
5709checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
5710dependencies = [
5711 "bitflags",
5712]
5713
5714[[package]]
5715name = "redox_users"
5716version = "0.5.2"
5717source = "registry+https://github.com/rust-lang/crates.io-index"
5718checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
5719dependencies = [
5720 "getrandom 0.2.17",
5721 "libredox",
5722 "thiserror 2.0.18",
5723]
5724
5725[[package]]
5726name = "ref-cast"
5727version = "1.0.25"
5728source = "registry+https://github.com/rust-lang/crates.io-index"
5729checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
5730dependencies = [
5731 "ref-cast-impl",
5732]
5733
5734[[package]]
5735name = "ref-cast-impl"
5736version = "1.0.25"
5737source = "registry+https://github.com/rust-lang/crates.io-index"
5738checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
5739dependencies = [
5740 "proc-macro2",
5741 "quote",
5742 "syn 2.0.117",
5743]
5744
5745[[package]]
5746name = "reflink-copy"
5747version = "0.1.29"
5748source = "registry+https://github.com/rust-lang/crates.io-index"
5749checksum = "13362233b147e57674c37b802d216b7c5e3dcccbed8967c84f0d8d223868ae27"
5750dependencies = [
5751 "cfg-if",
5752 "libc",
5753 "rustix",
5754 "windows",
5755]
5756
5757[[package]]
5758name = "regex"
5759version = "1.12.3"
5760source = "registry+https://github.com/rust-lang/crates.io-index"
5761checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
5762dependencies = [
5763 "aho-corasick",
5764 "memchr",
5765 "regex-automata",
5766 "regex-syntax",
5767]
5768
5769[[package]]
5770name = "regex-automata"
5771version = "0.4.14"
5772source = "registry+https://github.com/rust-lang/crates.io-index"
5773checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
5774dependencies = [
5775 "aho-corasick",
5776 "memchr",
5777 "regex-syntax",
5778]
5779
5780[[package]]
5781name = "regex-syntax"
5782version = "0.8.10"
5783source = "registry+https://github.com/rust-lang/crates.io-index"
5784checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
5785
5786[[package]]
5787name = "relative-path"
5788version = "1.9.3"
5789source = "registry+https://github.com/rust-lang/crates.io-index"
5790checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
5791
5792[[package]]
5793name = "reqwest"
5794version = "0.12.28"
5795source = "registry+https://github.com/rust-lang/crates.io-index"
5796checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
5797dependencies = [
5798 "base64",
5799 "bytes",
5800 "encoding_rs",
5801 "futures-channel",
5802 "futures-core",
5803 "futures-util",
5804 "h2",
5805 "http",
5806 "http-body",
5807 "http-body-util",
5808 "hyper",
5809 "hyper-rustls",
5810 "hyper-tls",
5811 "hyper-util",
5812 "js-sys",
5813 "log",
5814 "mime",
5815 "mime_guess",
5816 "native-tls",
5817 "percent-encoding",
5818 "pin-project-lite",
5819 "quinn",
5820 "rustls",
5821 "rustls-pki-types",
5822 "serde",
5823 "serde_json",
5824 "serde_urlencoded",
5825 "sync_wrapper",
5826 "tokio",
5827 "tokio-native-tls",
5828 "tokio-rustls",
5829 "tokio-util",
5830 "tower",
5831 "tower-http",
5832 "tower-service",
5833 "url",
5834 "wasm-bindgen",
5835 "wasm-bindgen-futures",
5836 "wasm-streams",
5837 "web-sys",
5838 "webpki-roots 1.0.6",
5839]
5840
5841[[package]]
5842name = "reqwest-eventsource"
5843version = "0.6.0"
5844source = "registry+https://github.com/rust-lang/crates.io-index"
5845checksum = "632c55746dbb44275691640e7b40c907c16a2dc1a5842aa98aaec90da6ec6bde"
5846dependencies = [
5847 "eventsource-stream",
5848 "futures-core",
5849 "futures-timer",
5850 "mime",
5851 "nom 7.1.3",
5852 "pin-project-lite",
5853 "reqwest",
5854 "thiserror 1.0.69",
5855]
5856
5857[[package]]
5858name = "resolv-conf"
5859version = "0.7.6"
5860source = "registry+https://github.com/rust-lang/crates.io-index"
5861checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
5862
5863[[package]]
5864name = "rfc6979"
5865version = "0.4.0"
5866source = "registry+https://github.com/rust-lang/crates.io-index"
5867checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
5868dependencies = [
5869 "hmac",
5870 "subtle",
5871]
5872
5873[[package]]
5874name = "rig-core"
5875version = "0.22.0"
5876source = "registry+https://github.com/rust-lang/crates.io-index"
5877checksum = "136b8115983df35be2c9b176c50c8a793886411e7b5ee8767b8c9cfd25e0ea90"
5878dependencies = [
5879 "as-any",
5880 "async-stream",
5881 "base64",
5882 "bytes",
5883 "futures",
5884 "glob",
5885 "http",
5886 "mime_guess",
5887 "ordered-float 5.1.0",
5888 "reqwest",
5889 "reqwest-eventsource",
5890 "schemars",
5891 "serde",
5892 "serde_json",
5893 "thiserror 2.0.18",
5894 "tokio",
5895 "tracing",
5896 "tracing-futures",
5897 "url",
5898]
5899
5900[[package]]
5901name = "ring"
5902version = "0.17.14"
5903source = "registry+https://github.com/rust-lang/crates.io-index"
5904checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
5905dependencies = [
5906 "cc",
5907 "cfg-if",
5908 "getrandom 0.2.17",
5909 "libc",
5910 "untrusted",
5911 "windows-sys 0.52.0",
5912]
5913
5914[[package]]
5915name = "rsqlite-vfs"
5916version = "0.1.0"
5917source = "registry+https://github.com/rust-lang/crates.io-index"
5918checksum = "a8a1f2315036ef6b1fbacd1972e8ee7688030b0a2121edfc2a6550febd41574d"
5919dependencies = [
5920 "hashbrown 0.16.1",
5921 "thiserror 2.0.18",
5922]
5923
5924[[package]]
5925name = "rstest"
5926version = "0.25.0"
5927source = "registry+https://github.com/rust-lang/crates.io-index"
5928checksum = "6fc39292f8613e913f7df8fa892b8944ceb47c247b78e1b1ae2f09e019be789d"
5929dependencies = [
5930 "futures-timer",
5931 "futures-util",
5932 "rstest_macros",
5933 "rustc_version",
5934]
5935
5936[[package]]
5937name = "rstest_macros"
5938version = "0.25.0"
5939source = "registry+https://github.com/rust-lang/crates.io-index"
5940checksum = "1f168d99749d307be9de54d23fd226628d99768225ef08f6ffb52e0182a27746"
5941dependencies = [
5942 "cfg-if",
5943 "glob",
5944 "proc-macro-crate",
5945 "proc-macro2",
5946 "quote",
5947 "regex",
5948 "relative-path",
5949 "rustc_version",
5950 "syn 2.0.117",
5951 "unicode-ident",
5952]
5953
5954[[package]]
5955name = "rusqlite"
5956version = "0.38.0"
5957source = "registry+https://github.com/rust-lang/crates.io-index"
5958checksum = "f1c93dd1c9683b438c392c492109cb702b8090b2bfc8fed6f6e4eb4523f17af3"
5959dependencies = [
5960 "bitflags",
5961 "fallible-iterator",
5962 "fallible-streaming-iterator",
5963 "hashlink",
5964 "libsqlite3-sys",
5965 "smallvec",
5966 "sqlite-wasm-rs",
5967]
5968
5969[[package]]
5970name = "rusqlite_migration"
5971version = "2.4.1"
5972source = "registry+https://github.com/rust-lang/crates.io-index"
5973checksum = "67ffe0efe8568c769d1e39c67ea2a093134afaac9bb4559246a2ee7a4d686044"
5974dependencies = [
5975 "log",
5976 "rusqlite",
5977]
5978
5979[[package]]
5980name = "rustc-hash"
5981version = "2.1.1"
5982source = "registry+https://github.com/rust-lang/crates.io-index"
5983checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
5984
5985[[package]]
5986name = "rustc_version"
5987version = "0.4.1"
5988source = "registry+https://github.com/rust-lang/crates.io-index"
5989checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
5990dependencies = [
5991 "semver",
5992]
5993
5994[[package]]
5995name = "rusticata-macros"
5996version = "4.1.0"
5997source = "registry+https://github.com/rust-lang/crates.io-index"
5998checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
5999dependencies = [
6000 "nom 7.1.3",
6001]
6002
6003[[package]]
6004name = "rustix"
6005version = "1.1.4"
6006source = "registry+https://github.com/rust-lang/crates.io-index"
6007checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
6008dependencies = [
6009 "bitflags",
6010 "errno",
6011 "libc",
6012 "linux-raw-sys",
6013 "windows-sys 0.61.2",
6014]
6015
6016[[package]]
6017name = "rustls"
6018version = "0.23.37"
6019source = "registry+https://github.com/rust-lang/crates.io-index"
6020checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
6021dependencies = [
6022 "log",
6023 "once_cell",
6024 "ring",
6025 "rustls-pki-types",
6026 "rustls-webpki",
6027 "subtle",
6028 "zeroize",
6029]
6030
6031[[package]]
6032name = "rustls-native-certs"
6033version = "0.8.3"
6034source = "registry+https://github.com/rust-lang/crates.io-index"
6035checksum = "612460d5f7bea540c490b2b6395d8e34a953e52b491accd6c86c8164c5932a63"
6036dependencies = [
6037 "openssl-probe",
6038 "rustls-pki-types",
6039 "schannel",
6040 "security-framework 3.7.0",
6041]
6042
6043[[package]]
6044name = "rustls-pki-types"
6045version = "1.14.0"
6046source = "registry+https://github.com/rust-lang/crates.io-index"
6047checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
6048dependencies = [
6049 "web-time",
6050 "zeroize",
6051]
6052
6053[[package]]
6054name = "rustls-platform-verifier"
6055version = "0.6.2"
6056source = "registry+https://github.com/rust-lang/crates.io-index"
6057checksum = "1d99feebc72bae7ab76ba994bb5e121b8d83d910ca40b36e0921f53becc41784"
6058dependencies = [
6059 "core-foundation 0.10.1",
6060 "core-foundation-sys",
6061 "jni 0.21.1",
6062 "log",
6063 "once_cell",
6064 "rustls",
6065 "rustls-native-certs",
6066 "rustls-platform-verifier-android",
6067 "rustls-webpki",
6068 "security-framework 3.7.0",
6069 "security-framework-sys",
6070 "webpki-root-certs",
6071 "windows-sys 0.61.2",
6072]
6073
6074[[package]]
6075name = "rustls-platform-verifier-android"
6076version = "0.1.1"
6077source = "registry+https://github.com/rust-lang/crates.io-index"
6078checksum = "f87165f0995f63a9fbeea62b64d10b4d9d8e78ec6d7d51fb2125fda7bb36788f"
6079
6080[[package]]
6081name = "rustls-webpki"
6082version = "0.103.10"
6083source = "registry+https://github.com/rust-lang/crates.io-index"
6084checksum = "df33b2b81ac578cabaf06b89b0631153a3f416b0a886e8a7a1707fb51abbd1ef"
6085dependencies = [
6086 "ring",
6087 "rustls-pki-types",
6088 "untrusted",
6089]
6090
6091[[package]]
6092name = "rustversion"
6093version = "1.0.22"
6094source = "registry+https://github.com/rust-lang/crates.io-index"
6095checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
6096
6097[[package]]
6098name = "rustyline"
6099version = "17.0.2"
6100source = "registry+https://github.com/rust-lang/crates.io-index"
6101checksum = "e902948a25149d50edc1a8e0141aad50f54e22ba83ff988cf8f7c9ef07f50564"
6102dependencies = [
6103 "bitflags",
6104 "cfg-if",
6105 "clipboard-win",
6106 "fd-lock",
6107 "home",
6108 "libc",
6109 "log",
6110 "memchr",
6111 "nix",
6112 "radix_trie",
6113 "unicode-segmentation",
6114 "unicode-width",
6115 "utf8parse",
6116 "windows-sys 0.60.2",
6117]
6118
6119[[package]]
6120name = "ryu"
6121version = "1.0.23"
6122source = "registry+https://github.com/rust-lang/crates.io-index"
6123checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
6124
6125[[package]]
6126name = "same-file"
6127version = "1.0.6"
6128source = "registry+https://github.com/rust-lang/crates.io-index"
6129checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
6130dependencies = [
6131 "winapi-util",
6132]
6133
6134[[package]]
6135name = "scc"
6136version = "2.4.0"
6137source = "registry+https://github.com/rust-lang/crates.io-index"
6138checksum = "46e6f046b7fef48e2660c57ed794263155d713de679057f2d0c169bfc6e756cc"
6139dependencies = [
6140 "sdd",
6141]
6142
6143[[package]]
6144name = "schannel"
6145version = "0.1.29"
6146source = "registry+https://github.com/rust-lang/crates.io-index"
6147checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
6148dependencies = [
6149 "windows-sys 0.61.2",
6150]
6151
6152[[package]]
6153name = "schemars"
6154version = "1.2.1"
6155source = "registry+https://github.com/rust-lang/crates.io-index"
6156checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc"
6157dependencies = [
6158 "dyn-clone",
6159 "ref-cast",
6160 "schemars_derive",
6161 "serde",
6162 "serde_json",
6163]
6164
6165[[package]]
6166name = "schemars_derive"
6167version = "1.2.1"
6168source = "registry+https://github.com/rust-lang/crates.io-index"
6169checksum = "7d115b50f4aaeea07e79c1912f645c7513d81715d0420f8bc77a18c6260b307f"
6170dependencies = [
6171 "proc-macro2",
6172 "quote",
6173 "serde_derive_internals",
6174 "syn 2.0.117",
6175]
6176
6177[[package]]
6178name = "scoped-tls"
6179version = "1.0.1"
6180source = "registry+https://github.com/rust-lang/crates.io-index"
6181checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
6182
6183[[package]]
6184name = "scopeguard"
6185version = "1.2.0"
6186source = "registry+https://github.com/rust-lang/crates.io-index"
6187checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
6188
6189[[package]]
6190name = "sdd"
6191version = "3.0.10"
6192source = "registry+https://github.com/rust-lang/crates.io-index"
6193checksum = "490dcfcbfef26be6800d11870ff2df8774fa6e86d047e3e8c8a76b25655e41ca"
6194
6195[[package]]
6196name = "sec1"
6197version = "0.7.3"
6198source = "registry+https://github.com/rust-lang/crates.io-index"
6199checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
6200dependencies = [
6201 "base16ct",
6202 "der 0.7.10",
6203 "generic-array",
6204 "pkcs8 0.10.2",
6205 "subtle",
6206 "zeroize",
6207]
6208
6209[[package]]
6210name = "security-framework"
6211version = "2.11.1"
6212source = "registry+https://github.com/rust-lang/crates.io-index"
6213checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
6214dependencies = [
6215 "bitflags",
6216 "core-foundation 0.9.4",
6217 "core-foundation-sys",
6218 "libc",
6219 "security-framework-sys",
6220]
6221
6222[[package]]
6223name = "security-framework"
6224version = "3.7.0"
6225source = "registry+https://github.com/rust-lang/crates.io-index"
6226checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
6227dependencies = [
6228 "bitflags",
6229 "core-foundation 0.10.1",
6230 "core-foundation-sys",
6231 "libc",
6232 "security-framework-sys",
6233]
6234
6235[[package]]
6236name = "security-framework-sys"
6237version = "2.17.0"
6238source = "registry+https://github.com/rust-lang/crates.io-index"
6239checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
6240dependencies = [
6241 "core-foundation-sys",
6242 "libc",
6243]
6244
6245[[package]]
6246name = "seize"
6247version = "0.5.1"
6248source = "registry+https://github.com/rust-lang/crates.io-index"
6249checksum = "5b55fb86dfd3a2f5f76ea78310a88f96c4ea21a3031f8d212443d56123fd0521"
6250dependencies = [
6251 "libc",
6252 "windows-sys 0.61.2",
6253]
6254
6255[[package]]
6256name = "self_cell"
6257version = "1.2.2"
6258source = "registry+https://github.com/rust-lang/crates.io-index"
6259checksum = "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
6260
6261[[package]]
6262name = "semver"
6263version = "1.0.27"
6264source = "registry+https://github.com/rust-lang/crates.io-index"
6265checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
6266
6267[[package]]
6268name = "send_wrapper"
6269version = "0.6.0"
6270source = "registry+https://github.com/rust-lang/crates.io-index"
6271checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
6272
6273[[package]]
6274name = "seq-macro"
6275version = "0.3.6"
6276source = "registry+https://github.com/rust-lang/crates.io-index"
6277checksum = "1bc711410fbe7399f390ca1c3b60ad0f53f80e95c5eb935e52268a0e2cd49acc"
6278
6279[[package]]
6280name = "serde"
6281version = "1.0.228"
6282source = "registry+https://github.com/rust-lang/crates.io-index"
6283checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
6284dependencies = [
6285 "serde_core",
6286 "serde_derive",
6287]
6288
6289[[package]]
6290name = "serde-value"
6291version = "0.7.0"
6292source = "registry+https://github.com/rust-lang/crates.io-index"
6293checksum = "f3a1a3341211875ef120e117ea7fd5228530ae7e7036a779fdc9117be6b3282c"
6294dependencies = [
6295 "ordered-float 2.10.1",
6296 "serde",
6297]
6298
6299[[package]]
6300name = "serde_bytes"
6301version = "0.11.19"
6302source = "registry+https://github.com/rust-lang/crates.io-index"
6303checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
6304dependencies = [
6305 "serde",
6306 "serde_core",
6307]
6308
6309[[package]]
6310name = "serde_core"
6311version = "1.0.228"
6312source = "registry+https://github.com/rust-lang/crates.io-index"
6313checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
6314dependencies = [
6315 "serde_derive",
6316]
6317
6318[[package]]
6319name = "serde_derive"
6320version = "1.0.228"
6321source = "registry+https://github.com/rust-lang/crates.io-index"
6322checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
6323dependencies = [
6324 "proc-macro2",
6325 "quote",
6326 "syn 2.0.117",
6327]
6328
6329[[package]]
6330name = "serde_derive_internals"
6331version = "0.29.1"
6332source = "registry+https://github.com/rust-lang/crates.io-index"
6333checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711"
6334dependencies = [
6335 "proc-macro2",
6336 "quote",
6337 "syn 2.0.117",
6338]
6339
6340[[package]]
6341name = "serde_html_form"
6342version = "0.2.8"
6343source = "registry+https://github.com/rust-lang/crates.io-index"
6344checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f"
6345dependencies = [
6346 "form_urlencoded",
6347 "indexmap",
6348 "itoa",
6349 "ryu",
6350 "serde_core",
6351]
6352
6353[[package]]
6354name = "serde_ipld_dagcbor"
6355version = "0.6.4"
6356source = "registry+https://github.com/rust-lang/crates.io-index"
6357checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778"
6358dependencies = [
6359 "cbor4ii",
6360 "ipld-core",
6361 "scopeguard",
6362 "serde",
6363]
6364
6365[[package]]
6366name = "serde_json"
6367version = "1.0.149"
6368source = "registry+https://github.com/rust-lang/crates.io-index"
6369checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
6370dependencies = [
6371 "indexmap",
6372 "itoa",
6373 "memchr",
6374 "serde",
6375 "serde_core",
6376 "zmij",
6377]
6378
6379[[package]]
6380name = "serde_path_to_error"
6381version = "0.1.20"
6382source = "registry+https://github.com/rust-lang/crates.io-index"
6383checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
6384dependencies = [
6385 "itoa",
6386 "serde",
6387 "serde_core",
6388]
6389
6390[[package]]
6391name = "serde_spanned"
6392version = "1.0.4"
6393source = "registry+https://github.com/rust-lang/crates.io-index"
6394checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776"
6395dependencies = [
6396 "serde_core",
6397]
6398
6399[[package]]
6400name = "serde_urlencoded"
6401version = "0.7.1"
6402source = "registry+https://github.com/rust-lang/crates.io-index"
6403checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
6404dependencies = [
6405 "form_urlencoded",
6406 "itoa",
6407 "ryu",
6408 "serde",
6409]
6410
6411[[package]]
6412name = "serial_test"
6413version = "3.4.0"
6414source = "registry+https://github.com/rust-lang/crates.io-index"
6415checksum = "911bd979bf1070a3f3aa7b691a3b3e9968f339ceeec89e08c280a8a22207a32f"
6416dependencies = [
6417 "futures-executor",
6418 "futures-util",
6419 "log",
6420 "once_cell",
6421 "parking_lot",
6422 "scc",
6423 "serial_test_derive",
6424]
6425
6426[[package]]
6427name = "serial_test_derive"
6428version = "3.4.0"
6429source = "registry+https://github.com/rust-lang/crates.io-index"
6430checksum = "0a7d91949b85b0d2fb687445e448b40d322b6b3e4af6b44a29b21d9a5f33e6d9"
6431dependencies = [
6432 "proc-macro2",
6433 "quote",
6434 "syn 2.0.117",
6435]
6436
6437[[package]]
6438name = "sha2"
6439version = "0.10.9"
6440source = "registry+https://github.com/rust-lang/crates.io-index"
6441checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
6442dependencies = [
6443 "cfg-if",
6444 "cpufeatures 0.2.17",
6445 "digest 0.10.7",
6446]
6447
6448[[package]]
6449name = "sha2"
6450version = "0.11.0-rc.2"
6451source = "registry+https://github.com/rust-lang/crates.io-index"
6452checksum = "d1e3878ab0f98e35b2df35fe53201d088299b41a6bb63e3e34dada2ac4abd924"
6453dependencies = [
6454 "cfg-if",
6455 "cpufeatures 0.2.17",
6456 "digest 0.11.0-rc.10",
6457]
6458
6459[[package]]
6460name = "sharded-slab"
6461version = "0.1.7"
6462source = "registry+https://github.com/rust-lang/crates.io-index"
6463checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
6464dependencies = [
6465 "lazy_static",
6466]
6467
6468[[package]]
6469name = "shlex"
6470version = "1.3.0"
6471source = "registry+https://github.com/rust-lang/crates.io-index"
6472checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
6473
6474[[package]]
6475name = "signal-hook-registry"
6476version = "1.4.8"
6477source = "registry+https://github.com/rust-lang/crates.io-index"
6478checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
6479dependencies = [
6480 "errno",
6481 "libc",
6482]
6483
6484[[package]]
6485name = "signature"
6486version = "2.2.0"
6487source = "registry+https://github.com/rust-lang/crates.io-index"
6488checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
6489dependencies = [
6490 "digest 0.10.7",
6491 "rand_core 0.6.4",
6492]
6493
6494[[package]]
6495name = "signature"
6496version = "3.0.0-rc.10"
6497source = "registry+https://github.com/rust-lang/crates.io-index"
6498checksum = "7f1880df446116126965eeec169136b2e0251dba37c6223bcc819569550edea3"
6499
6500[[package]]
6501name = "simd-adler32"
6502version = "0.3.8"
6503source = "registry+https://github.com/rust-lang/crates.io-index"
6504checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2"
6505
6506[[package]]
6507name = "simd_cesu8"
6508version = "1.1.1"
6509source = "registry+https://github.com/rust-lang/crates.io-index"
6510checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
6511dependencies = [
6512 "rustc_version",
6513 "simdutf8",
6514]
6515
6516[[package]]
6517name = "simdutf8"
6518version = "0.1.5"
6519source = "registry+https://github.com/rust-lang/crates.io-index"
6520checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
6521
6522[[package]]
6523name = "simple-dns"
6524version = "0.9.3"
6525source = "registry+https://github.com/rust-lang/crates.io-index"
6526checksum = "dee851d0e5e7af3721faea1843e8015e820a234f81fda3dea9247e15bac9a86a"
6527dependencies = [
6528 "bitflags",
6529]
6530
6531[[package]]
6532name = "siphasher"
6533version = "1.0.2"
6534source = "registry+https://github.com/rust-lang/crates.io-index"
6535checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e"
6536
6537[[package]]
6538name = "slab"
6539version = "0.4.12"
6540source = "registry+https://github.com/rust-lang/crates.io-index"
6541checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
6542
6543[[package]]
6544name = "small_ctor"
6545version = "0.1.2"
6546source = "registry+https://github.com/rust-lang/crates.io-index"
6547checksum = "88414a5ca1f85d82cc34471e975f0f74f6aa54c40f062efa42c0080e7f763f81"
6548
6549[[package]]
6550name = "smallvec"
6551version = "1.15.1"
6552source = "registry+https://github.com/rust-lang/crates.io-index"
6553checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
6554dependencies = [
6555 "serde",
6556]
6557
6558[[package]]
6559name = "smol_str"
6560version = "0.1.24"
6561source = "registry+https://github.com/rust-lang/crates.io-index"
6562checksum = "fad6c857cbab2627dcf01ec85a623ca4e7dcb5691cbaa3d7fb7653671f0d09c9"
6563
6564[[package]]
6565name = "snap"
6566version = "1.1.1"
6567source = "registry+https://github.com/rust-lang/crates.io-index"
6568checksum = "1b6b67fb9a61334225b5b790716f609cd58395f895b3fe8b328786812a40bc3b"
6569
6570[[package]]
6571name = "socket2"
6572version = "0.5.10"
6573source = "registry+https://github.com/rust-lang/crates.io-index"
6574checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
6575dependencies = [
6576 "libc",
6577 "windows-sys 0.52.0",
6578]
6579
6580[[package]]
6581name = "socket2"
6582version = "0.6.3"
6583source = "registry+https://github.com/rust-lang/crates.io-index"
6584checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
6585dependencies = [
6586 "libc",
6587 "windows-sys 0.61.2",
6588]
6589
6590[[package]]
6591name = "socks"
6592version = "0.3.4"
6593source = "registry+https://github.com/rust-lang/crates.io-index"
6594checksum = "f0c3dbbd9ae980613c6dd8e28a9407b50509d3803b57624d5dfe8315218cd58b"
6595dependencies = [
6596 "byteorder",
6597 "libc",
6598 "winapi",
6599]
6600
6601[[package]]
6602name = "sorted-index-buffer"
6603version = "0.2.1"
6604source = "registry+https://github.com/rust-lang/crates.io-index"
6605checksum = "ea06cc588e43c632923a55450401b8f25e628131571d4e1baea1bdfdb2b5ed06"
6606
6607[[package]]
6608name = "spez"
6609version = "0.1.2"
6610source = "registry+https://github.com/rust-lang/crates.io-index"
6611checksum = "c87e960f4dca2788eeb86bbdde8dd246be8948790b7618d656e68f9b720a86e8"
6612dependencies = [
6613 "proc-macro2",
6614 "quote",
6615 "syn 2.0.117",
6616]
6617
6618[[package]]
6619name = "spin"
6620version = "0.9.8"
6621source = "registry+https://github.com/rust-lang/crates.io-index"
6622checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
6623dependencies = [
6624 "lock_api",
6625]
6626
6627[[package]]
6628name = "spin"
6629version = "0.10.0"
6630source = "registry+https://github.com/rust-lang/crates.io-index"
6631checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
6632
6633[[package]]
6634name = "spki"
6635version = "0.7.3"
6636source = "registry+https://github.com/rust-lang/crates.io-index"
6637checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
6638dependencies = [
6639 "base64ct",
6640 "der 0.7.10",
6641]
6642
6643[[package]]
6644name = "spki"
6645version = "0.8.0-rc.4"
6646source = "registry+https://github.com/rust-lang/crates.io-index"
6647checksum = "8baeff88f34ed0691978ec34440140e1572b68c7dd4a495fd14a3dc1944daa80"
6648dependencies = [
6649 "base64ct",
6650 "der 0.8.0",
6651]
6652
6653[[package]]
6654name = "sqlite-wasm-rs"
6655version = "0.5.2"
6656source = "registry+https://github.com/rust-lang/crates.io-index"
6657checksum = "2f4206ed3a67690b9c29b77d728f6acc3ce78f16bf846d83c94f76400320181b"
6658dependencies = [
6659 "cc",
6660 "js-sys",
6661 "rsqlite-vfs",
6662 "wasm-bindgen",
6663]
6664
6665[[package]]
6666name = "stable_deref_trait"
6667version = "1.2.1"
6668source = "registry+https://github.com/rust-lang/crates.io-index"
6669checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
6670
6671[[package]]
6672name = "strsim"
6673version = "0.10.0"
6674source = "registry+https://github.com/rust-lang/crates.io-index"
6675checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
6676
6677[[package]]
6678name = "strsim"
6679version = "0.11.1"
6680source = "registry+https://github.com/rust-lang/crates.io-index"
6681checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
6682
6683[[package]]
6684name = "strum"
6685version = "0.28.0"
6686source = "registry+https://github.com/rust-lang/crates.io-index"
6687checksum = "9628de9b8791db39ceda2b119bbe13134770b56c138ec1d3af810d045c04f9bd"
6688dependencies = [
6689 "strum_macros",
6690]
6691
6692[[package]]
6693name = "strum_macros"
6694version = "0.28.0"
6695source = "registry+https://github.com/rust-lang/crates.io-index"
6696checksum = "ab85eea0270ee17587ed4156089e10b9e6880ee688791d45a905f5b1ca36f664"
6697dependencies = [
6698 "heck",
6699 "proc-macro2",
6700 "quote",
6701 "syn 2.0.117",
6702]
6703
6704[[package]]
6705name = "subtle"
6706version = "2.6.1"
6707source = "registry+https://github.com/rust-lang/crates.io-index"
6708checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
6709
6710[[package]]
6711name = "swarm-discovery"
6712version = "0.5.0"
6713source = "registry+https://github.com/rust-lang/crates.io-index"
6714checksum = "1a5ab62937edac8b23fa40e55a358ea1924245b17fc1eb20d14929c8f11be98d"
6715dependencies = [
6716 "acto",
6717 "hickory-proto 0.25.2",
6718 "rand 0.9.2",
6719 "socket2 0.6.3",
6720 "thiserror 2.0.18",
6721 "tokio",
6722 "tracing",
6723]
6724
6725[[package]]
6726name = "syn"
6727version = "1.0.109"
6728source = "registry+https://github.com/rust-lang/crates.io-index"
6729checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
6730dependencies = [
6731 "proc-macro2",
6732 "quote",
6733 "unicode-ident",
6734]
6735
6736[[package]]
6737name = "syn"
6738version = "2.0.117"
6739source = "registry+https://github.com/rust-lang/crates.io-index"
6740checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
6741dependencies = [
6742 "proc-macro2",
6743 "quote",
6744 "unicode-ident",
6745]
6746
6747[[package]]
6748name = "syn-mid"
6749version = "0.5.4"
6750source = "registry+https://github.com/rust-lang/crates.io-index"
6751checksum = "fea305d57546cc8cd04feb14b62ec84bf17f50e3f7b12560d7bfa9265f39d9ed"
6752dependencies = [
6753 "proc-macro2",
6754 "quote",
6755 "syn 1.0.109",
6756]
6757
6758[[package]]
6759name = "sync_wrapper"
6760version = "1.0.2"
6761source = "registry+https://github.com/rust-lang/crates.io-index"
6762checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
6763dependencies = [
6764 "futures-core",
6765]
6766
6767[[package]]
6768name = "synstructure"
6769version = "0.13.2"
6770source = "registry+https://github.com/rust-lang/crates.io-index"
6771checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
6772dependencies = [
6773 "proc-macro2",
6774 "quote",
6775 "syn 2.0.117",
6776]
6777
6778[[package]]
6779name = "system-configuration"
6780version = "0.7.0"
6781source = "registry+https://github.com/rust-lang/crates.io-index"
6782checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
6783dependencies = [
6784 "bitflags",
6785 "core-foundation 0.9.4",
6786 "system-configuration-sys",
6787]
6788
6789[[package]]
6790name = "system-configuration-sys"
6791version = "0.6.0"
6792source = "registry+https://github.com/rust-lang/crates.io-index"
6793checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
6794dependencies = [
6795 "core-foundation-sys",
6796 "libc",
6797]
6798
6799[[package]]
6800name = "tagptr"
6801version = "0.2.0"
6802source = "registry+https://github.com/rust-lang/crates.io-index"
6803checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
6804
6805[[package]]
6806name = "tempfile"
6807version = "3.27.0"
6808source = "registry+https://github.com/rust-lang/crates.io-index"
6809checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
6810dependencies = [
6811 "fastrand",
6812 "getrandom 0.4.2",
6813 "once_cell",
6814 "rustix",
6815 "windows-sys 0.61.2",
6816]
6817
6818[[package]]
6819name = "terminal_size"
6820version = "0.4.3"
6821source = "registry+https://github.com/rust-lang/crates.io-index"
6822checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
6823dependencies = [
6824 "rustix",
6825 "windows-sys 0.60.2",
6826]
6827
6828[[package]]
6829name = "thiserror"
6830version = "1.0.69"
6831source = "registry+https://github.com/rust-lang/crates.io-index"
6832checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
6833dependencies = [
6834 "thiserror-impl 1.0.69",
6835]
6836
6837[[package]]
6838name = "thiserror"
6839version = "2.0.18"
6840source = "registry+https://github.com/rust-lang/crates.io-index"
6841checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
6842dependencies = [
6843 "thiserror-impl 2.0.18",
6844]
6845
6846[[package]]
6847name = "thiserror-impl"
6848version = "1.0.69"
6849source = "registry+https://github.com/rust-lang/crates.io-index"
6850checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
6851dependencies = [
6852 "proc-macro2",
6853 "quote",
6854 "syn 2.0.117",
6855]
6856
6857[[package]]
6858name = "thiserror-impl"
6859version = "2.0.18"
6860source = "registry+https://github.com/rust-lang/crates.io-index"
6861checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
6862dependencies = [
6863 "proc-macro2",
6864 "quote",
6865 "syn 2.0.117",
6866]
6867
6868[[package]]
6869name = "thread_local"
6870version = "1.1.9"
6871source = "registry+https://github.com/rust-lang/crates.io-index"
6872checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
6873dependencies = [
6874 "cfg-if",
6875]
6876
6877[[package]]
6878name = "thrift"
6879version = "0.17.0"
6880source = "registry+https://github.com/rust-lang/crates.io-index"
6881checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09"
6882dependencies = [
6883 "byteorder",
6884 "integer-encoding",
6885 "ordered-float 2.10.1",
6886]
6887
6888[[package]]
6889name = "tilekit"
6890version = "0.2.0"
6891dependencies = [
6892 "anyhow",
6893 "bon",
6894 "dspy-rs",
6895 "ed25519-dalek 2.2.0",
6896 "indexmap",
6897 "keyring",
6898 "nom 8.0.0",
6899 "serde",
6900 "serde_json",
6901 "tokio",
6902 "ucan",
6903]
6904
6905[[package]]
6906name = "tiles"
6907version = "0.4.8"
6908dependencies = [
6909 "anyhow",
6910 "async-std",
6911 "atrium-api",
6912 "atrium-common",
6913 "atrium-identity",
6914 "atrium-oauth",
6915 "axum",
6916 "axum-macros",
6917 "clap",
6918 "data-encoding",
6919 "env_logger",
6920 "futures-util",
6921 "hf-hub",
6922 "hickory-resolver 0.26.0",
6923 "iroh",
6924 "iroh-blobs",
6925 "iroh-gossip",
6926 "iroh-tickets",
6927 "keyring",
6928 "log",
6929 "owo-colors",
6930 "postcard",
6931 "reqwest",
6932 "rusqlite",
6933 "rusqlite_migration",
6934 "rustyline",
6935 "semver",
6936 "serde",
6937 "serde_json",
6938 "serial_test",
6939 "sha2 0.10.9",
6940 "tempfile",
6941 "tilekit",
6942 "tokio",
6943 "toml 1.0.7+spec-1.1.0",
6944 "uuid",
6945 "wiremock",
6946]
6947
6948[[package]]
6949name = "time"
6950version = "0.3.47"
6951source = "registry+https://github.com/rust-lang/crates.io-index"
6952checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
6953dependencies = [
6954 "deranged",
6955 "itoa",
6956 "js-sys",
6957 "libc",
6958 "num-conv",
6959 "num_threads",
6960 "powerfmt",
6961 "serde_core",
6962 "time-core",
6963 "time-macros",
6964]
6965
6966[[package]]
6967name = "time-core"
6968version = "0.1.8"
6969source = "registry+https://github.com/rust-lang/crates.io-index"
6970checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
6971
6972[[package]]
6973name = "time-macros"
6974version = "0.2.27"
6975source = "registry+https://github.com/rust-lang/crates.io-index"
6976checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
6977dependencies = [
6978 "num-conv",
6979 "time-core",
6980]
6981
6982[[package]]
6983name = "tiny-keccak"
6984version = "2.0.2"
6985source = "registry+https://github.com/rust-lang/crates.io-index"
6986checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
6987dependencies = [
6988 "crunchy",
6989]
6990
6991[[package]]
6992name = "tinystr"
6993version = "0.8.2"
6994source = "registry+https://github.com/rust-lang/crates.io-index"
6995checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
6996dependencies = [
6997 "displaydoc",
6998 "zerovec",
6999]
7000
7001[[package]]
7002name = "tinyvec"
7003version = "1.11.0"
7004source = "registry+https://github.com/rust-lang/crates.io-index"
7005checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
7006dependencies = [
7007 "tinyvec_macros",
7008]
7009
7010[[package]]
7011name = "tinyvec_macros"
7012version = "0.1.1"
7013source = "registry+https://github.com/rust-lang/crates.io-index"
7014checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
7015
7016[[package]]
7017name = "tokio"
7018version = "1.50.0"
7019source = "registry+https://github.com/rust-lang/crates.io-index"
7020checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
7021dependencies = [
7022 "bytes",
7023 "libc",
7024 "mio",
7025 "parking_lot",
7026 "pin-project-lite",
7027 "signal-hook-registry",
7028 "socket2 0.6.3",
7029 "tokio-macros",
7030 "windows-sys 0.61.2",
7031]
7032
7033[[package]]
7034name = "tokio-macros"
7035version = "2.6.1"
7036source = "registry+https://github.com/rust-lang/crates.io-index"
7037checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
7038dependencies = [
7039 "proc-macro2",
7040 "quote",
7041 "syn 2.0.117",
7042]
7043
7044[[package]]
7045name = "tokio-native-tls"
7046version = "0.3.1"
7047source = "registry+https://github.com/rust-lang/crates.io-index"
7048checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
7049dependencies = [
7050 "native-tls",
7051 "tokio",
7052]
7053
7054[[package]]
7055name = "tokio-rustls"
7056version = "0.26.4"
7057source = "registry+https://github.com/rust-lang/crates.io-index"
7058checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
7059dependencies = [
7060 "rustls",
7061 "tokio",
7062]
7063
7064[[package]]
7065name = "tokio-stream"
7066version = "0.1.18"
7067source = "registry+https://github.com/rust-lang/crates.io-index"
7068checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
7069dependencies = [
7070 "futures-core",
7071 "pin-project-lite",
7072 "tokio",
7073 "tokio-util",
7074]
7075
7076[[package]]
7077name = "tokio-util"
7078version = "0.7.18"
7079source = "registry+https://github.com/rust-lang/crates.io-index"
7080checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
7081dependencies = [
7082 "bytes",
7083 "futures-core",
7084 "futures-sink",
7085 "futures-util",
7086 "pin-project-lite",
7087 "tokio",
7088]
7089
7090[[package]]
7091name = "tokio-websockets"
7092version = "0.12.3"
7093source = "registry+https://github.com/rust-lang/crates.io-index"
7094checksum = "b1b6348ebfaaecd771cecb69e832961d277f59845d4220a584701f72728152b7"
7095dependencies = [
7096 "base64",
7097 "bytes",
7098 "futures-core",
7099 "futures-sink",
7100 "getrandom 0.3.4",
7101 "http",
7102 "httparse",
7103 "rand 0.9.2",
7104 "ring",
7105 "rustls-pki-types",
7106 "simdutf8",
7107 "tokio",
7108 "tokio-rustls",
7109 "tokio-util",
7110]
7111
7112[[package]]
7113name = "toml"
7114version = "0.9.12+spec-1.1.0"
7115source = "registry+https://github.com/rust-lang/crates.io-index"
7116checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863"
7117dependencies = [
7118 "indexmap",
7119 "serde_core",
7120 "serde_spanned",
7121 "toml_datetime 0.7.5+spec-1.1.0",
7122 "toml_parser",
7123 "toml_writer",
7124 "winnow 0.7.15",
7125]
7126
7127[[package]]
7128name = "toml"
7129version = "1.0.7+spec-1.1.0"
7130source = "registry+https://github.com/rust-lang/crates.io-index"
7131checksum = "dd28d57d8a6f6e458bc0b8784f8fdcc4b99a437936056fa122cb234f18656a96"
7132dependencies = [
7133 "indexmap",
7134 "serde_core",
7135 "serde_spanned",
7136 "toml_datetime 1.0.1+spec-1.1.0",
7137 "toml_parser",
7138 "toml_writer",
7139 "winnow 1.0.0",
7140]
7141
7142[[package]]
7143name = "toml_datetime"
7144version = "0.7.5+spec-1.1.0"
7145source = "registry+https://github.com/rust-lang/crates.io-index"
7146checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347"
7147dependencies = [
7148 "serde_core",
7149]
7150
7151[[package]]
7152name = "toml_datetime"
7153version = "1.0.1+spec-1.1.0"
7154source = "registry+https://github.com/rust-lang/crates.io-index"
7155checksum = "9b320e741db58cac564e26c607d3cc1fdc4a88fd36c879568c07856ed83ff3e9"
7156dependencies = [
7157 "serde_core",
7158]
7159
7160[[package]]
7161name = "toml_edit"
7162version = "0.25.5+spec-1.1.0"
7163source = "registry+https://github.com/rust-lang/crates.io-index"
7164checksum = "8ca1a40644a28bce036923f6a431df0b34236949d111cc07cb6dca830c9ef2e1"
7165dependencies = [
7166 "indexmap",
7167 "toml_datetime 1.0.1+spec-1.1.0",
7168 "toml_parser",
7169 "winnow 1.0.0",
7170]
7171
7172[[package]]
7173name = "toml_parser"
7174version = "1.0.10+spec-1.1.0"
7175source = "registry+https://github.com/rust-lang/crates.io-index"
7176checksum = "7df25b4befd31c4816df190124375d5a20c6b6921e2cad937316de3fccd63420"
7177dependencies = [
7178 "winnow 1.0.0",
7179]
7180
7181[[package]]
7182name = "toml_writer"
7183version = "1.0.7+spec-1.1.0"
7184source = "registry+https://github.com/rust-lang/crates.io-index"
7185checksum = "f17aaa1c6e3dc22b1da4b6bba97d066e354c7945cac2f7852d4e4e7ca7a6b56d"
7186
7187[[package]]
7188name = "tower"
7189version = "0.5.3"
7190source = "registry+https://github.com/rust-lang/crates.io-index"
7191checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
7192dependencies = [
7193 "futures-core",
7194 "futures-util",
7195 "pin-project-lite",
7196 "sync_wrapper",
7197 "tokio",
7198 "tower-layer",
7199 "tower-service",
7200 "tracing",
7201]
7202
7203[[package]]
7204name = "tower-http"
7205version = "0.6.8"
7206source = "registry+https://github.com/rust-lang/crates.io-index"
7207checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8"
7208dependencies = [
7209 "async-compression",
7210 "bitflags",
7211 "bytes",
7212 "futures-core",
7213 "futures-util",
7214 "http",
7215 "http-body",
7216 "http-body-util",
7217 "iri-string",
7218 "pin-project-lite",
7219 "tokio",
7220 "tokio-util",
7221 "tower",
7222 "tower-layer",
7223 "tower-service",
7224]
7225
7226[[package]]
7227name = "tower-layer"
7228version = "0.3.3"
7229source = "registry+https://github.com/rust-lang/crates.io-index"
7230checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
7231
7232[[package]]
7233name = "tower-service"
7234version = "0.3.3"
7235source = "registry+https://github.com/rust-lang/crates.io-index"
7236checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
7237
7238[[package]]
7239name = "tracing"
7240version = "0.1.44"
7241source = "registry+https://github.com/rust-lang/crates.io-index"
7242checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
7243dependencies = [
7244 "log",
7245 "pin-project-lite",
7246 "tracing-attributes",
7247 "tracing-core",
7248]
7249
7250[[package]]
7251name = "tracing-attributes"
7252version = "0.1.31"
7253source = "registry+https://github.com/rust-lang/crates.io-index"
7254checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
7255dependencies = [
7256 "proc-macro2",
7257 "quote",
7258 "syn 2.0.117",
7259]
7260
7261[[package]]
7262name = "tracing-core"
7263version = "0.1.36"
7264source = "registry+https://github.com/rust-lang/crates.io-index"
7265checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
7266dependencies = [
7267 "once_cell",
7268 "valuable",
7269]
7270
7271[[package]]
7272name = "tracing-futures"
7273version = "0.2.5"
7274source = "registry+https://github.com/rust-lang/crates.io-index"
7275checksum = "97d095ae15e245a057c8e8451bab9b3ee1e1f68e9ba2b4fbc18d0ac5237835f2"
7276dependencies = [
7277 "futures",
7278 "futures-task",
7279 "pin-project",
7280 "tracing",
7281]
7282
7283[[package]]
7284name = "tracing-log"
7285version = "0.2.0"
7286source = "registry+https://github.com/rust-lang/crates.io-index"
7287checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
7288dependencies = [
7289 "log",
7290 "once_cell",
7291 "tracing-core",
7292]
7293
7294[[package]]
7295name = "tracing-subscriber"
7296version = "0.3.23"
7297source = "registry+https://github.com/rust-lang/crates.io-index"
7298checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
7299dependencies = [
7300 "matchers",
7301 "nu-ansi-term",
7302 "once_cell",
7303 "regex-automata",
7304 "sharded-slab",
7305 "smallvec",
7306 "thread_local",
7307 "tracing",
7308 "tracing-core",
7309 "tracing-log",
7310]
7311
7312[[package]]
7313name = "trait-variant"
7314version = "0.1.2"
7315source = "registry+https://github.com/rust-lang/crates.io-index"
7316checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
7317dependencies = [
7318 "proc-macro2",
7319 "quote",
7320 "syn 2.0.117",
7321]
7322
7323[[package]]
7324name = "try-lock"
7325version = "0.2.5"
7326source = "registry+https://github.com/rust-lang/crates.io-index"
7327checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
7328
7329[[package]]
7330name = "twox-hash"
7331version = "2.1.2"
7332source = "registry+https://github.com/rust-lang/crates.io-index"
7333checksum = "9ea3136b675547379c4bd395ca6b938e5ad3c3d20fad76e7fe85f9e0d011419c"
7334dependencies = [
7335 "rand 0.9.2",
7336]
7337
7338[[package]]
7339name = "typenum"
7340version = "1.19.0"
7341source = "registry+https://github.com/rust-lang/crates.io-index"
7342checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
7343
7344[[package]]
7345name = "ucan"
7346version = "0.5.0"
7347source = "git+https://github.com/ucan-wg/rs-ucan.git?branch=main#c4d1cb7558582cbe0fe1f21b22026fe8303a0cab"
7348dependencies = [
7349 "base58",
7350 "ed25519-dalek 2.2.0",
7351 "futures",
7352 "getrandom 0.2.17",
7353 "ipld-core",
7354 "leb128",
7355 "nom 8.0.0",
7356 "nom-unicode",
7357 "nonempty",
7358 "serde",
7359 "serde-value",
7360 "serde_bytes",
7361 "serde_ipld_dagcbor",
7362 "sha2 0.10.9",
7363 "signature 2.2.0",
7364 "thiserror 1.0.69",
7365 "tracing",
7366 "varsig",
7367]
7368
7369[[package]]
7370name = "unicase"
7371version = "2.9.0"
7372source = "registry+https://github.com/rust-lang/crates.io-index"
7373checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
7374
7375[[package]]
7376name = "unicode-ident"
7377version = "1.0.24"
7378source = "registry+https://github.com/rust-lang/crates.io-index"
7379checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
7380
7381[[package]]
7382name = "unicode-segmentation"
7383version = "1.12.0"
7384source = "registry+https://github.com/rust-lang/crates.io-index"
7385checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
7386
7387[[package]]
7388name = "unicode-width"
7389version = "0.2.2"
7390source = "registry+https://github.com/rust-lang/crates.io-index"
7391checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
7392
7393[[package]]
7394name = "unicode-xid"
7395version = "0.2.6"
7396source = "registry+https://github.com/rust-lang/crates.io-index"
7397checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
7398
7399[[package]]
7400name = "universal-hash"
7401version = "0.5.1"
7402source = "registry+https://github.com/rust-lang/crates.io-index"
7403checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
7404dependencies = [
7405 "crypto-common 0.1.7",
7406 "subtle",
7407]
7408
7409[[package]]
7410name = "unsigned-varint"
7411version = "0.8.0"
7412source = "registry+https://github.com/rust-lang/crates.io-index"
7413checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
7414
7415[[package]]
7416name = "untrusted"
7417version = "0.9.0"
7418source = "registry+https://github.com/rust-lang/crates.io-index"
7419checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
7420
7421[[package]]
7422name = "ureq"
7423version = "2.12.1"
7424source = "registry+https://github.com/rust-lang/crates.io-index"
7425checksum = "02d1a66277ed75f640d608235660df48c8e3c19f3b4edb6a263315626cc3c01d"
7426dependencies = [
7427 "base64",
7428 "flate2",
7429 "log",
7430 "native-tls",
7431 "once_cell",
7432 "rustls",
7433 "rustls-pki-types",
7434 "serde",
7435 "serde_json",
7436 "socks",
7437 "url",
7438 "webpki-roots 0.26.11",
7439]
7440
7441[[package]]
7442name = "url"
7443version = "2.5.8"
7444source = "registry+https://github.com/rust-lang/crates.io-index"
7445checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
7446dependencies = [
7447 "form_urlencoded",
7448 "idna",
7449 "percent-encoding",
7450 "serde",
7451 "serde_derive",
7452]
7453
7454[[package]]
7455name = "utf8_iter"
7456version = "1.0.4"
7457source = "registry+https://github.com/rust-lang/crates.io-index"
7458checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
7459
7460[[package]]
7461name = "utf8parse"
7462version = "0.2.2"
7463source = "registry+https://github.com/rust-lang/crates.io-index"
7464checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
7465
7466[[package]]
7467name = "uuid"
7468version = "1.22.0"
7469source = "registry+https://github.com/rust-lang/crates.io-index"
7470checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37"
7471dependencies = [
7472 "getrandom 0.4.2",
7473 "js-sys",
7474 "wasm-bindgen",
7475]
7476
7477[[package]]
7478name = "valuable"
7479version = "0.1.1"
7480source = "registry+https://github.com/rust-lang/crates.io-index"
7481checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
7482
7483[[package]]
7484name = "value-bag"
7485version = "1.12.0"
7486source = "registry+https://github.com/rust-lang/crates.io-index"
7487checksum = "7ba6f5989077681266825251a52748b8c1d8a4ad098cc37e440103d0ea717fc0"
7488
7489[[package]]
7490name = "varsig"
7491version = "0.1.0"
7492source = "git+https://github.com/ucan-wg/rs-ucan.git?branch=main#c4d1cb7558582cbe0fe1f21b22026fe8303a0cab"
7493dependencies = [
7494 "async-signature",
7495 "ed25519-dalek 2.2.0",
7496 "ipld-core",
7497 "k256",
7498 "leb128",
7499 "p256",
7500 "serde",
7501 "serde_bytes",
7502 "serde_ipld_dagcbor",
7503 "signature 2.2.0",
7504 "thiserror 1.0.69",
7505 "tracing",
7506]
7507
7508[[package]]
7509name = "vcpkg"
7510version = "0.2.15"
7511source = "registry+https://github.com/rust-lang/crates.io-index"
7512checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
7513
7514[[package]]
7515name = "vergen"
7516version = "9.1.0"
7517source = "registry+https://github.com/rust-lang/crates.io-index"
7518checksum = "b849a1f6d8639e8de261e81ee0fc881e3e3620db1af9f2e0da015d4382ceaf75"
7519dependencies = [
7520 "anyhow",
7521 "derive_builder",
7522 "rustversion",
7523 "vergen-lib 9.1.0",
7524]
7525
7526[[package]]
7527name = "vergen-gitcl"
7528version = "1.0.8"
7529source = "registry+https://github.com/rust-lang/crates.io-index"
7530checksum = "b9dfc1de6eb2e08a4ddf152f1b179529638bedc0ea95e6d667c014506377aefe"
7531dependencies = [
7532 "anyhow",
7533 "derive_builder",
7534 "rustversion",
7535 "time",
7536 "vergen",
7537 "vergen-lib 0.1.6",
7538]
7539
7540[[package]]
7541name = "vergen-lib"
7542version = "0.1.6"
7543source = "registry+https://github.com/rust-lang/crates.io-index"
7544checksum = "9b07e6010c0f3e59fcb164e0163834597da68d1f864e2b8ca49f74de01e9c166"
7545dependencies = [
7546 "anyhow",
7547 "derive_builder",
7548 "rustversion",
7549]
7550
7551[[package]]
7552name = "vergen-lib"
7553version = "9.1.0"
7554source = "registry+https://github.com/rust-lang/crates.io-index"
7555checksum = "b34a29ba7e9c59e62f229ae1932fb1b8fb8a6fdcc99215a641913f5f5a59a569"
7556dependencies = [
7557 "anyhow",
7558 "derive_builder",
7559 "rustversion",
7560]
7561
7562[[package]]
7563name = "version_check"
7564version = "0.9.5"
7565source = "registry+https://github.com/rust-lang/crates.io-index"
7566checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
7567
7568[[package]]
7569name = "walkdir"
7570version = "2.5.0"
7571source = "registry+https://github.com/rust-lang/crates.io-index"
7572checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
7573dependencies = [
7574 "same-file",
7575 "winapi-util",
7576]
7577
7578[[package]]
7579name = "want"
7580version = "0.3.1"
7581source = "registry+https://github.com/rust-lang/crates.io-index"
7582checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
7583dependencies = [
7584 "try-lock",
7585]
7586
7587[[package]]
7588name = "wasi"
7589version = "0.11.1+wasi-snapshot-preview1"
7590source = "registry+https://github.com/rust-lang/crates.io-index"
7591checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
7592
7593[[package]]
7594name = "wasip2"
7595version = "1.0.2+wasi-0.2.9"
7596source = "registry+https://github.com/rust-lang/crates.io-index"
7597checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
7598dependencies = [
7599 "wit-bindgen",
7600]
7601
7602[[package]]
7603name = "wasip3"
7604version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
7605source = "registry+https://github.com/rust-lang/crates.io-index"
7606checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
7607dependencies = [
7608 "wit-bindgen",
7609]
7610
7611[[package]]
7612name = "wasm-bindgen"
7613version = "0.2.114"
7614source = "registry+https://github.com/rust-lang/crates.io-index"
7615checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e"
7616dependencies = [
7617 "cfg-if",
7618 "once_cell",
7619 "rustversion",
7620 "wasm-bindgen-macro",
7621 "wasm-bindgen-shared",
7622]
7623
7624[[package]]
7625name = "wasm-bindgen-futures"
7626version = "0.4.64"
7627source = "registry+https://github.com/rust-lang/crates.io-index"
7628checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8"
7629dependencies = [
7630 "cfg-if",
7631 "futures-util",
7632 "js-sys",
7633 "once_cell",
7634 "wasm-bindgen",
7635 "web-sys",
7636]
7637
7638[[package]]
7639name = "wasm-bindgen-macro"
7640version = "0.2.114"
7641source = "registry+https://github.com/rust-lang/crates.io-index"
7642checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6"
7643dependencies = [
7644 "quote",
7645 "wasm-bindgen-macro-support",
7646]
7647
7648[[package]]
7649name = "wasm-bindgen-macro-support"
7650version = "0.2.114"
7651source = "registry+https://github.com/rust-lang/crates.io-index"
7652checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3"
7653dependencies = [
7654 "bumpalo",
7655 "proc-macro2",
7656 "quote",
7657 "syn 2.0.117",
7658 "wasm-bindgen-shared",
7659]
7660
7661[[package]]
7662name = "wasm-bindgen-shared"
7663version = "0.2.114"
7664source = "registry+https://github.com/rust-lang/crates.io-index"
7665checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16"
7666dependencies = [
7667 "unicode-ident",
7668]
7669
7670[[package]]
7671name = "wasm-encoder"
7672version = "0.244.0"
7673source = "registry+https://github.com/rust-lang/crates.io-index"
7674checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
7675dependencies = [
7676 "leb128fmt",
7677 "wasmparser",
7678]
7679
7680[[package]]
7681name = "wasm-metadata"
7682version = "0.244.0"
7683source = "registry+https://github.com/rust-lang/crates.io-index"
7684checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
7685dependencies = [
7686 "anyhow",
7687 "indexmap",
7688 "wasm-encoder",
7689 "wasmparser",
7690]
7691
7692[[package]]
7693name = "wasm-streams"
7694version = "0.4.2"
7695source = "registry+https://github.com/rust-lang/crates.io-index"
7696checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
7697dependencies = [
7698 "futures-util",
7699 "js-sys",
7700 "wasm-bindgen",
7701 "wasm-bindgen-futures",
7702 "web-sys",
7703]
7704
7705[[package]]
7706name = "wasmparser"
7707version = "0.244.0"
7708source = "registry+https://github.com/rust-lang/crates.io-index"
7709checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
7710dependencies = [
7711 "bitflags",
7712 "hashbrown 0.15.5",
7713 "indexmap",
7714 "semver",
7715]
7716
7717[[package]]
7718name = "web-sys"
7719version = "0.3.91"
7720source = "registry+https://github.com/rust-lang/crates.io-index"
7721checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9"
7722dependencies = [
7723 "js-sys",
7724 "wasm-bindgen",
7725]
7726
7727[[package]]
7728name = "web-time"
7729version = "1.1.0"
7730source = "registry+https://github.com/rust-lang/crates.io-index"
7731checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
7732dependencies = [
7733 "js-sys",
7734 "wasm-bindgen",
7735]
7736
7737[[package]]
7738name = "webpki-root-certs"
7739version = "1.0.6"
7740source = "registry+https://github.com/rust-lang/crates.io-index"
7741checksum = "804f18a4ac2676ffb4e8b5b5fa9ae38af06df08162314f96a68d2a363e21a8ca"
7742dependencies = [
7743 "rustls-pki-types",
7744]
7745
7746[[package]]
7747name = "webpki-roots"
7748version = "0.26.11"
7749source = "registry+https://github.com/rust-lang/crates.io-index"
7750checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
7751dependencies = [
7752 "webpki-roots 1.0.6",
7753]
7754
7755[[package]]
7756name = "webpki-roots"
7757version = "1.0.6"
7758source = "registry+https://github.com/rust-lang/crates.io-index"
7759checksum = "22cfaf3c063993ff62e73cb4311efde4db1efb31ab78a3e5c457939ad5cc0bed"
7760dependencies = [
7761 "rustls-pki-types",
7762]
7763
7764[[package]]
7765name = "widestring"
7766version = "1.2.1"
7767source = "registry+https://github.com/rust-lang/crates.io-index"
7768checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
7769
7770[[package]]
7771name = "winapi"
7772version = "0.3.9"
7773source = "registry+https://github.com/rust-lang/crates.io-index"
7774checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
7775dependencies = [
7776 "winapi-i686-pc-windows-gnu",
7777 "winapi-x86_64-pc-windows-gnu",
7778]
7779
7780[[package]]
7781name = "winapi-i686-pc-windows-gnu"
7782version = "0.4.0"
7783source = "registry+https://github.com/rust-lang/crates.io-index"
7784checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
7785
7786[[package]]
7787name = "winapi-util"
7788version = "0.1.11"
7789source = "registry+https://github.com/rust-lang/crates.io-index"
7790checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
7791dependencies = [
7792 "windows-sys 0.61.2",
7793]
7794
7795[[package]]
7796name = "winapi-x86_64-pc-windows-gnu"
7797version = "0.4.0"
7798source = "registry+https://github.com/rust-lang/crates.io-index"
7799checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
7800
7801[[package]]
7802name = "windows"
7803version = "0.62.2"
7804source = "registry+https://github.com/rust-lang/crates.io-index"
7805checksum = "527fadee13e0c05939a6a05d5bd6eec6cd2e3dbd648b9f8e447c6518133d8580"
7806dependencies = [
7807 "windows-collections",
7808 "windows-core",
7809 "windows-future",
7810 "windows-numerics",
7811]
7812
7813[[package]]
7814name = "windows-collections"
7815version = "0.3.2"
7816source = "registry+https://github.com/rust-lang/crates.io-index"
7817checksum = "23b2d95af1a8a14a3c7367e1ed4fc9c20e0a26e79551b1454d72583c97cc6610"
7818dependencies = [
7819 "windows-core",
7820]
7821
7822[[package]]
7823name = "windows-core"
7824version = "0.62.2"
7825source = "registry+https://github.com/rust-lang/crates.io-index"
7826checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
7827dependencies = [
7828 "windows-implement",
7829 "windows-interface",
7830 "windows-link",
7831 "windows-result",
7832 "windows-strings",
7833]
7834
7835[[package]]
7836name = "windows-future"
7837version = "0.3.2"
7838source = "registry+https://github.com/rust-lang/crates.io-index"
7839checksum = "e1d6f90251fe18a279739e78025bd6ddc52a7e22f921070ccdc67dde84c605cb"
7840dependencies = [
7841 "windows-core",
7842 "windows-link",
7843 "windows-threading",
7844]
7845
7846[[package]]
7847name = "windows-implement"
7848version = "0.60.2"
7849source = "registry+https://github.com/rust-lang/crates.io-index"
7850checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
7851dependencies = [
7852 "proc-macro2",
7853 "quote",
7854 "syn 2.0.117",
7855]
7856
7857[[package]]
7858name = "windows-interface"
7859version = "0.59.3"
7860source = "registry+https://github.com/rust-lang/crates.io-index"
7861checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
7862dependencies = [
7863 "proc-macro2",
7864 "quote",
7865 "syn 2.0.117",
7866]
7867
7868[[package]]
7869name = "windows-link"
7870version = "0.2.1"
7871source = "registry+https://github.com/rust-lang/crates.io-index"
7872checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
7873
7874[[package]]
7875name = "windows-numerics"
7876version = "0.3.1"
7877source = "registry+https://github.com/rust-lang/crates.io-index"
7878checksum = "6e2e40844ac143cdb44aead537bbf727de9b044e107a0f1220392177d15b0f26"
7879dependencies = [
7880 "windows-core",
7881 "windows-link",
7882]
7883
7884[[package]]
7885name = "windows-registry"
7886version = "0.6.1"
7887source = "registry+https://github.com/rust-lang/crates.io-index"
7888checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
7889dependencies = [
7890 "windows-link",
7891 "windows-result",
7892 "windows-strings",
7893]
7894
7895[[package]]
7896name = "windows-result"
7897version = "0.4.1"
7898source = "registry+https://github.com/rust-lang/crates.io-index"
7899checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
7900dependencies = [
7901 "windows-link",
7902]
7903
7904[[package]]
7905name = "windows-strings"
7906version = "0.5.1"
7907source = "registry+https://github.com/rust-lang/crates.io-index"
7908checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
7909dependencies = [
7910 "windows-link",
7911]
7912
7913[[package]]
7914name = "windows-sys"
7915version = "0.45.0"
7916source = "registry+https://github.com/rust-lang/crates.io-index"
7917checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
7918dependencies = [
7919 "windows-targets 0.42.2",
7920]
7921
7922[[package]]
7923name = "windows-sys"
7924version = "0.48.0"
7925source = "registry+https://github.com/rust-lang/crates.io-index"
7926checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
7927dependencies = [
7928 "windows-targets 0.48.5",
7929]
7930
7931[[package]]
7932name = "windows-sys"
7933version = "0.52.0"
7934source = "registry+https://github.com/rust-lang/crates.io-index"
7935checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
7936dependencies = [
7937 "windows-targets 0.52.6",
7938]
7939
7940[[package]]
7941name = "windows-sys"
7942version = "0.59.0"
7943source = "registry+https://github.com/rust-lang/crates.io-index"
7944checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
7945dependencies = [
7946 "windows-targets 0.52.6",
7947]
7948
7949[[package]]
7950name = "windows-sys"
7951version = "0.60.2"
7952source = "registry+https://github.com/rust-lang/crates.io-index"
7953checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
7954dependencies = [
7955 "windows-targets 0.53.5",
7956]
7957
7958[[package]]
7959name = "windows-sys"
7960version = "0.61.2"
7961source = "registry+https://github.com/rust-lang/crates.io-index"
7962checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
7963dependencies = [
7964 "windows-link",
7965]
7966
7967[[package]]
7968name = "windows-targets"
7969version = "0.42.2"
7970source = "registry+https://github.com/rust-lang/crates.io-index"
7971checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
7972dependencies = [
7973 "windows_aarch64_gnullvm 0.42.2",
7974 "windows_aarch64_msvc 0.42.2",
7975 "windows_i686_gnu 0.42.2",
7976 "windows_i686_msvc 0.42.2",
7977 "windows_x86_64_gnu 0.42.2",
7978 "windows_x86_64_gnullvm 0.42.2",
7979 "windows_x86_64_msvc 0.42.2",
7980]
7981
7982[[package]]
7983name = "windows-targets"
7984version = "0.48.5"
7985source = "registry+https://github.com/rust-lang/crates.io-index"
7986checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
7987dependencies = [
7988 "windows_aarch64_gnullvm 0.48.5",
7989 "windows_aarch64_msvc 0.48.5",
7990 "windows_i686_gnu 0.48.5",
7991 "windows_i686_msvc 0.48.5",
7992 "windows_x86_64_gnu 0.48.5",
7993 "windows_x86_64_gnullvm 0.48.5",
7994 "windows_x86_64_msvc 0.48.5",
7995]
7996
7997[[package]]
7998name = "windows-targets"
7999version = "0.52.6"
8000source = "registry+https://github.com/rust-lang/crates.io-index"
8001checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
8002dependencies = [
8003 "windows_aarch64_gnullvm 0.52.6",
8004 "windows_aarch64_msvc 0.52.6",
8005 "windows_i686_gnu 0.52.6",
8006 "windows_i686_gnullvm 0.52.6",
8007 "windows_i686_msvc 0.52.6",
8008 "windows_x86_64_gnu 0.52.6",
8009 "windows_x86_64_gnullvm 0.52.6",
8010 "windows_x86_64_msvc 0.52.6",
8011]
8012
8013[[package]]
8014name = "windows-targets"
8015version = "0.53.5"
8016source = "registry+https://github.com/rust-lang/crates.io-index"
8017checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
8018dependencies = [
8019 "windows-link",
8020 "windows_aarch64_gnullvm 0.53.1",
8021 "windows_aarch64_msvc 0.53.1",
8022 "windows_i686_gnu 0.53.1",
8023 "windows_i686_gnullvm 0.53.1",
8024 "windows_i686_msvc 0.53.1",
8025 "windows_x86_64_gnu 0.53.1",
8026 "windows_x86_64_gnullvm 0.53.1",
8027 "windows_x86_64_msvc 0.53.1",
8028]
8029
8030[[package]]
8031name = "windows-threading"
8032version = "0.2.1"
8033source = "registry+https://github.com/rust-lang/crates.io-index"
8034checksum = "3949bd5b99cafdf1c7ca86b43ca564028dfe27d66958f2470940f73d86d75b37"
8035dependencies = [
8036 "windows-link",
8037]
8038
8039[[package]]
8040name = "windows_aarch64_gnullvm"
8041version = "0.42.2"
8042source = "registry+https://github.com/rust-lang/crates.io-index"
8043checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
8044
8045[[package]]
8046name = "windows_aarch64_gnullvm"
8047version = "0.48.5"
8048source = "registry+https://github.com/rust-lang/crates.io-index"
8049checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
8050
8051[[package]]
8052name = "windows_aarch64_gnullvm"
8053version = "0.52.6"
8054source = "registry+https://github.com/rust-lang/crates.io-index"
8055checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
8056
8057[[package]]
8058name = "windows_aarch64_gnullvm"
8059version = "0.53.1"
8060source = "registry+https://github.com/rust-lang/crates.io-index"
8061checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
8062
8063[[package]]
8064name = "windows_aarch64_msvc"
8065version = "0.42.2"
8066source = "registry+https://github.com/rust-lang/crates.io-index"
8067checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
8068
8069[[package]]
8070name = "windows_aarch64_msvc"
8071version = "0.48.5"
8072source = "registry+https://github.com/rust-lang/crates.io-index"
8073checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
8074
8075[[package]]
8076name = "windows_aarch64_msvc"
8077version = "0.52.6"
8078source = "registry+https://github.com/rust-lang/crates.io-index"
8079checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
8080
8081[[package]]
8082name = "windows_aarch64_msvc"
8083version = "0.53.1"
8084source = "registry+https://github.com/rust-lang/crates.io-index"
8085checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
8086
8087[[package]]
8088name = "windows_i686_gnu"
8089version = "0.42.2"
8090source = "registry+https://github.com/rust-lang/crates.io-index"
8091checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
8092
8093[[package]]
8094name = "windows_i686_gnu"
8095version = "0.48.5"
8096source = "registry+https://github.com/rust-lang/crates.io-index"
8097checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
8098
8099[[package]]
8100name = "windows_i686_gnu"
8101version = "0.52.6"
8102source = "registry+https://github.com/rust-lang/crates.io-index"
8103checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
8104
8105[[package]]
8106name = "windows_i686_gnu"
8107version = "0.53.1"
8108source = "registry+https://github.com/rust-lang/crates.io-index"
8109checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
8110
8111[[package]]
8112name = "windows_i686_gnullvm"
8113version = "0.52.6"
8114source = "registry+https://github.com/rust-lang/crates.io-index"
8115checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
8116
8117[[package]]
8118name = "windows_i686_gnullvm"
8119version = "0.53.1"
8120source = "registry+https://github.com/rust-lang/crates.io-index"
8121checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
8122
8123[[package]]
8124name = "windows_i686_msvc"
8125version = "0.42.2"
8126source = "registry+https://github.com/rust-lang/crates.io-index"
8127checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
8128
8129[[package]]
8130name = "windows_i686_msvc"
8131version = "0.48.5"
8132source = "registry+https://github.com/rust-lang/crates.io-index"
8133checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
8134
8135[[package]]
8136name = "windows_i686_msvc"
8137version = "0.52.6"
8138source = "registry+https://github.com/rust-lang/crates.io-index"
8139checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
8140
8141[[package]]
8142name = "windows_i686_msvc"
8143version = "0.53.1"
8144source = "registry+https://github.com/rust-lang/crates.io-index"
8145checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
8146
8147[[package]]
8148name = "windows_x86_64_gnu"
8149version = "0.42.2"
8150source = "registry+https://github.com/rust-lang/crates.io-index"
8151checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
8152
8153[[package]]
8154name = "windows_x86_64_gnu"
8155version = "0.48.5"
8156source = "registry+https://github.com/rust-lang/crates.io-index"
8157checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
8158
8159[[package]]
8160name = "windows_x86_64_gnu"
8161version = "0.52.6"
8162source = "registry+https://github.com/rust-lang/crates.io-index"
8163checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
8164
8165[[package]]
8166name = "windows_x86_64_gnu"
8167version = "0.53.1"
8168source = "registry+https://github.com/rust-lang/crates.io-index"
8169checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
8170
8171[[package]]
8172name = "windows_x86_64_gnullvm"
8173version = "0.42.2"
8174source = "registry+https://github.com/rust-lang/crates.io-index"
8175checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
8176
8177[[package]]
8178name = "windows_x86_64_gnullvm"
8179version = "0.48.5"
8180source = "registry+https://github.com/rust-lang/crates.io-index"
8181checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
8182
8183[[package]]
8184name = "windows_x86_64_gnullvm"
8185version = "0.52.6"
8186source = "registry+https://github.com/rust-lang/crates.io-index"
8187checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
8188
8189[[package]]
8190name = "windows_x86_64_gnullvm"
8191version = "0.53.1"
8192source = "registry+https://github.com/rust-lang/crates.io-index"
8193checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
8194
8195[[package]]
8196name = "windows_x86_64_msvc"
8197version = "0.42.2"
8198source = "registry+https://github.com/rust-lang/crates.io-index"
8199checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
8200
8201[[package]]
8202name = "windows_x86_64_msvc"
8203version = "0.48.5"
8204source = "registry+https://github.com/rust-lang/crates.io-index"
8205checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
8206
8207[[package]]
8208name = "windows_x86_64_msvc"
8209version = "0.52.6"
8210source = "registry+https://github.com/rust-lang/crates.io-index"
8211checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
8212
8213[[package]]
8214name = "windows_x86_64_msvc"
8215version = "0.53.1"
8216source = "registry+https://github.com/rust-lang/crates.io-index"
8217checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
8218
8219[[package]]
8220name = "winnow"
8221version = "0.7.15"
8222source = "registry+https://github.com/rust-lang/crates.io-index"
8223checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
8224
8225[[package]]
8226name = "winnow"
8227version = "1.0.0"
8228source = "registry+https://github.com/rust-lang/crates.io-index"
8229checksum = "a90e88e4667264a994d34e6d1ab2d26d398dcdca8b7f52bec8668957517fc7d8"
8230dependencies = [
8231 "memchr",
8232]
8233
8234[[package]]
8235name = "winreg"
8236version = "0.50.0"
8237source = "registry+https://github.com/rust-lang/crates.io-index"
8238checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
8239dependencies = [
8240 "cfg-if",
8241 "windows-sys 0.48.0",
8242]
8243
8244[[package]]
8245name = "wiremock"
8246version = "0.6.5"
8247source = "registry+https://github.com/rust-lang/crates.io-index"
8248checksum = "08db1edfb05d9b3c1542e521aea074442088292f00b5f28e435c714a98f85031"
8249dependencies = [
8250 "assert-json-diff",
8251 "base64",
8252 "deadpool",
8253 "futures",
8254 "http",
8255 "http-body-util",
8256 "hyper",
8257 "hyper-util",
8258 "log",
8259 "once_cell",
8260 "regex",
8261 "serde",
8262 "serde_json",
8263 "tokio",
8264 "url",
8265]
8266
8267[[package]]
8268name = "wit-bindgen"
8269version = "0.51.0"
8270source = "registry+https://github.com/rust-lang/crates.io-index"
8271checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
8272dependencies = [
8273 "wit-bindgen-rust-macro",
8274]
8275
8276[[package]]
8277name = "wit-bindgen-core"
8278version = "0.51.0"
8279source = "registry+https://github.com/rust-lang/crates.io-index"
8280checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
8281dependencies = [
8282 "anyhow",
8283 "heck",
8284 "wit-parser",
8285]
8286
8287[[package]]
8288name = "wit-bindgen-rust"
8289version = "0.51.0"
8290source = "registry+https://github.com/rust-lang/crates.io-index"
8291checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
8292dependencies = [
8293 "anyhow",
8294 "heck",
8295 "indexmap",
8296 "prettyplease",
8297 "syn 2.0.117",
8298 "wasm-metadata",
8299 "wit-bindgen-core",
8300 "wit-component",
8301]
8302
8303[[package]]
8304name = "wit-bindgen-rust-macro"
8305version = "0.51.0"
8306source = "registry+https://github.com/rust-lang/crates.io-index"
8307checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
8308dependencies = [
8309 "anyhow",
8310 "prettyplease",
8311 "proc-macro2",
8312 "quote",
8313 "syn 2.0.117",
8314 "wit-bindgen-core",
8315 "wit-bindgen-rust",
8316]
8317
8318[[package]]
8319name = "wit-component"
8320version = "0.244.0"
8321source = "registry+https://github.com/rust-lang/crates.io-index"
8322checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
8323dependencies = [
8324 "anyhow",
8325 "bitflags",
8326 "indexmap",
8327 "log",
8328 "serde",
8329 "serde_derive",
8330 "serde_json",
8331 "wasm-encoder",
8332 "wasm-metadata",
8333 "wasmparser",
8334 "wit-parser",
8335]
8336
8337[[package]]
8338name = "wit-parser"
8339version = "0.244.0"
8340source = "registry+https://github.com/rust-lang/crates.io-index"
8341checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
8342dependencies = [
8343 "anyhow",
8344 "id-arena",
8345 "indexmap",
8346 "log",
8347 "semver",
8348 "serde",
8349 "serde_derive",
8350 "serde_json",
8351 "unicode-xid",
8352 "wasmparser",
8353]
8354
8355[[package]]
8356name = "wmi"
8357version = "0.18.3"
8358source = "registry+https://github.com/rust-lang/crates.io-index"
8359checksum = "003e65f4934cf9449b9ce913ad822cd054a5af669d24f93db101fdb02856bb23"
8360dependencies = [
8361 "chrono",
8362 "futures",
8363 "log",
8364 "serde",
8365 "thiserror 2.0.18",
8366 "windows",
8367 "windows-core",
8368]
8369
8370[[package]]
8371name = "writeable"
8372version = "0.6.2"
8373source = "registry+https://github.com/rust-lang/crates.io-index"
8374checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
8375
8376[[package]]
8377name = "ws_stream_wasm"
8378version = "0.7.5"
8379source = "registry+https://github.com/rust-lang/crates.io-index"
8380checksum = "6c173014acad22e83f16403ee360115b38846fe754e735c5d9d3803fe70c6abc"
8381dependencies = [
8382 "async_io_stream",
8383 "futures",
8384 "js-sys",
8385 "log",
8386 "pharos",
8387 "rustc_version",
8388 "send_wrapper",
8389 "thiserror 2.0.18",
8390 "wasm-bindgen",
8391 "wasm-bindgen-futures",
8392 "web-sys",
8393]
8394
8395[[package]]
8396name = "x509-parser"
8397version = "0.18.1"
8398source = "registry+https://github.com/rust-lang/crates.io-index"
8399checksum = "d43b0f71ce057da06bc0851b23ee24f3f86190b07203dd8f567d0b706a185202"
8400dependencies = [
8401 "asn1-rs",
8402 "data-encoding",
8403 "der-parser",
8404 "lazy_static",
8405 "nom 7.1.3",
8406 "oid-registry",
8407 "ring",
8408 "rusticata-macros",
8409 "thiserror 2.0.18",
8410 "time",
8411]
8412
8413[[package]]
8414name = "xml-rs"
8415version = "0.8.28"
8416source = "registry+https://github.com/rust-lang/crates.io-index"
8417checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
8418
8419[[package]]
8420name = "xmltree"
8421version = "0.10.3"
8422source = "registry+https://github.com/rust-lang/crates.io-index"
8423checksum = "d7d8a75eaf6557bb84a65ace8609883db44a29951042ada9b393151532e41fcb"
8424dependencies = [
8425 "xml-rs",
8426]
8427
8428[[package]]
8429name = "yasna"
8430version = "0.5.2"
8431source = "registry+https://github.com/rust-lang/crates.io-index"
8432checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
8433dependencies = [
8434 "time",
8435]
8436
8437[[package]]
8438name = "yoke"
8439version = "0.8.1"
8440source = "registry+https://github.com/rust-lang/crates.io-index"
8441checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
8442dependencies = [
8443 "stable_deref_trait",
8444 "yoke-derive",
8445 "zerofrom",
8446]
8447
8448[[package]]
8449name = "yoke-derive"
8450version = "0.8.1"
8451source = "registry+https://github.com/rust-lang/crates.io-index"
8452checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
8453dependencies = [
8454 "proc-macro2",
8455 "quote",
8456 "syn 2.0.117",
8457 "synstructure",
8458]
8459
8460[[package]]
8461name = "z32"
8462version = "1.3.0"
8463source = "registry+https://github.com/rust-lang/crates.io-index"
8464checksum = "2164e798d9e3d84ee2c91139ace54638059a3b23e361f5c11781c2c6459bde0f"
8465
8466[[package]]
8467name = "zerocopy"
8468version = "0.8.47"
8469source = "registry+https://github.com/rust-lang/crates.io-index"
8470checksum = "efbb2a062be311f2ba113ce66f697a4dc589f85e78a4aea276200804cea0ed87"
8471dependencies = [
8472 "zerocopy-derive",
8473]
8474
8475[[package]]
8476name = "zerocopy-derive"
8477version = "0.8.47"
8478source = "registry+https://github.com/rust-lang/crates.io-index"
8479checksum = "0e8bc7269b54418e7aeeef514aa68f8690b8c0489a06b0136e5f57c4c5ccab89"
8480dependencies = [
8481 "proc-macro2",
8482 "quote",
8483 "syn 2.0.117",
8484]
8485
8486[[package]]
8487name = "zerofrom"
8488version = "0.1.6"
8489source = "registry+https://github.com/rust-lang/crates.io-index"
8490checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
8491dependencies = [
8492 "zerofrom-derive",
8493]
8494
8495[[package]]
8496name = "zerofrom-derive"
8497version = "0.1.6"
8498source = "registry+https://github.com/rust-lang/crates.io-index"
8499checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
8500dependencies = [
8501 "proc-macro2",
8502 "quote",
8503 "syn 2.0.117",
8504 "synstructure",
8505]
8506
8507[[package]]
8508name = "zeroize"
8509version = "1.8.2"
8510source = "registry+https://github.com/rust-lang/crates.io-index"
8511checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
8512dependencies = [
8513 "serde",
8514 "zeroize_derive",
8515]
8516
8517[[package]]
8518name = "zeroize_derive"
8519version = "1.4.3"
8520source = "registry+https://github.com/rust-lang/crates.io-index"
8521checksum = "85a5b4158499876c763cb03bc4e49185d3cccbabb15b33c627f7884f43db852e"
8522dependencies = [
8523 "proc-macro2",
8524 "quote",
8525 "syn 2.0.117",
8526]
8527
8528[[package]]
8529name = "zerotrie"
8530version = "0.2.3"
8531source = "registry+https://github.com/rust-lang/crates.io-index"
8532checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
8533dependencies = [
8534 "displaydoc",
8535 "yoke",
8536 "zerofrom",
8537]
8538
8539[[package]]
8540name = "zerovec"
8541version = "0.11.5"
8542source = "registry+https://github.com/rust-lang/crates.io-index"
8543checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
8544dependencies = [
8545 "yoke",
8546 "zerofrom",
8547 "zerovec-derive",
8548]
8549
8550[[package]]
8551name = "zerovec-derive"
8552version = "0.11.2"
8553source = "registry+https://github.com/rust-lang/crates.io-index"
8554checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
8555dependencies = [
8556 "proc-macro2",
8557 "quote",
8558 "syn 2.0.117",
8559]
8560
8561[[package]]
8562name = "zlib-rs"
8563version = "0.6.3"
8564source = "registry+https://github.com/rust-lang/crates.io-index"
8565checksum = "3be3d40e40a133f9c916ee3f9f4fa2d9d63435b5fbe1bfc6d9dae0aa0ada1513"
8566
8567[[package]]
8568name = "zmij"
8569version = "1.0.21"
8570source = "registry+https://github.com/rust-lang/crates.io-index"
8571checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
8572
8573[[package]]
8574name = "zstd"
8575version = "0.13.3"
8576source = "registry+https://github.com/rust-lang/crates.io-index"
8577checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
8578dependencies = [
8579 "zstd-safe",
8580]
8581
8582[[package]]
8583name = "zstd-safe"
8584version = "7.2.4"
8585source = "registry+https://github.com/rust-lang/crates.io-index"
8586checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
8587dependencies = [
8588 "zstd-sys",
8589]
8590
8591[[package]]
8592name = "zstd-sys"
8593version = "2.0.16+zstd.1.5.7"
8594source = "registry+https://github.com/rust-lang/crates.io-index"
8595checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
8596dependencies = [
8597 "cc",
8598 "pkg-config",
8599]