QuickDID is a high-performance AT Protocol identity resolution service written in Rust. It provides handle-to-DID resolution with Redis-backed caching and queue processing.
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "aho-corasick"
7version = "1.1.4"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
10dependencies = [
11 "memchr",
12]
13
14[[package]]
15name = "allocator-api2"
16version = "0.2.21"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
19
20[[package]]
21name = "anyhow"
22version = "1.0.100"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
25
26[[package]]
27name = "arc-swap"
28version = "1.7.1"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
31
32[[package]]
33name = "async-trait"
34version = "0.1.89"
35source = "registry+https://github.com/rust-lang/crates.io-index"
36checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
37dependencies = [
38 "proc-macro2",
39 "quote",
40 "syn 2.0.108",
41]
42
43[[package]]
44name = "atoi"
45version = "2.0.0"
46source = "registry+https://github.com/rust-lang/crates.io-index"
47checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
48dependencies = [
49 "num-traits",
50]
51
52[[package]]
53name = "atomic-waker"
54version = "1.1.2"
55source = "registry+https://github.com/rust-lang/crates.io-index"
56checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
57
58[[package]]
59name = "atproto-client"
60version = "0.13.0"
61source = "git+https://tangled.org/@smokesignal.events/atproto-identity-rs#8a38edecc8ebebd74d511ae7863c7eecd0b877ad"
62dependencies = [
63 "anyhow",
64 "async-trait",
65 "atproto-identity",
66 "atproto-oauth",
67 "atproto-record",
68 "bytes",
69 "reqwest",
70 "reqwest-chain",
71 "reqwest-middleware",
72 "serde",
73 "serde_json",
74 "thiserror 2.0.17",
75 "tokio",
76 "tracing",
77 "urlencoding",
78]
79
80[[package]]
81name = "atproto-identity"
82version = "0.13.0"
83source = "git+https://tangled.org/@smokesignal.events/atproto-identity-rs#8a38edecc8ebebd74d511ae7863c7eecd0b877ad"
84dependencies = [
85 "anyhow",
86 "async-trait",
87 "ecdsa",
88 "elliptic-curve",
89 "hickory-resolver",
90 "k256",
91 "lru",
92 "multibase",
93 "p256",
94 "p384",
95 "rand 0.8.5",
96 "reqwest",
97 "serde",
98 "serde_ipld_dagcbor",
99 "serde_json",
100 "thiserror 2.0.17",
101 "tokio",
102 "tracing",
103 "url",
104 "urlencoding",
105]
106
107[[package]]
108name = "atproto-jetstream"
109version = "0.13.0"
110source = "git+https://tangled.org/@smokesignal.events/atproto-identity-rs#8a38edecc8ebebd74d511ae7863c7eecd0b877ad"
111dependencies = [
112 "anyhow",
113 "async-trait",
114 "atproto-identity",
115 "futures",
116 "http",
117 "serde",
118 "serde_json",
119 "thiserror 2.0.17",
120 "tokio",
121 "tokio-util",
122 "tokio-websockets",
123 "tracing",
124 "tracing-subscriber",
125 "urlencoding",
126 "zstd",
127]
128
129[[package]]
130name = "atproto-lexicon"
131version = "0.13.0"
132source = "git+https://tangled.org/@smokesignal.events/atproto-identity-rs#8a38edecc8ebebd74d511ae7863c7eecd0b877ad"
133dependencies = [
134 "anyhow",
135 "async-trait",
136 "atproto-client",
137 "atproto-identity",
138 "hickory-resolver",
139 "reqwest",
140 "serde",
141 "serde_json",
142 "thiserror 2.0.17",
143 "tokio",
144 "tracing",
145]
146
147[[package]]
148name = "atproto-oauth"
149version = "0.13.0"
150source = "git+https://tangled.org/@smokesignal.events/atproto-identity-rs#8a38edecc8ebebd74d511ae7863c7eecd0b877ad"
151dependencies = [
152 "anyhow",
153 "async-trait",
154 "atproto-identity",
155 "base64",
156 "chrono",
157 "ecdsa",
158 "elliptic-curve",
159 "k256",
160 "lru",
161 "multibase",
162 "p256",
163 "p384",
164 "rand 0.8.5",
165 "reqwest",
166 "reqwest-chain",
167 "reqwest-middleware",
168 "serde",
169 "serde_ipld_dagcbor",
170 "serde_json",
171 "sha2",
172 "thiserror 2.0.17",
173 "tokio",
174 "tracing",
175 "ulid",
176]
177
178[[package]]
179name = "atproto-record"
180version = "0.13.0"
181source = "git+https://tangled.org/@smokesignal.events/atproto-identity-rs#8a38edecc8ebebd74d511ae7863c7eecd0b877ad"
182dependencies = [
183 "anyhow",
184 "atproto-identity",
185 "base64",
186 "chrono",
187 "cid",
188 "multihash",
189 "rand 0.8.5",
190 "serde",
191 "serde_ipld_dagcbor",
192 "serde_json",
193 "sha2",
194 "thiserror 2.0.17",
195]
196
197[[package]]
198name = "autocfg"
199version = "1.5.0"
200source = "registry+https://github.com/rust-lang/crates.io-index"
201checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
202
203[[package]]
204name = "axum"
205version = "0.8.6"
206source = "registry+https://github.com/rust-lang/crates.io-index"
207checksum = "8a18ed336352031311f4e0b4dd2ff392d4fbb370777c9d18d7fc9d7359f73871"
208dependencies = [
209 "axum-core",
210 "bytes",
211 "form_urlencoded",
212 "futures-util",
213 "http",
214 "http-body",
215 "http-body-util",
216 "hyper",
217 "hyper-util",
218 "itoa",
219 "matchit",
220 "memchr",
221 "mime",
222 "percent-encoding",
223 "pin-project-lite",
224 "serde_core",
225 "serde_json",
226 "serde_path_to_error",
227 "serde_urlencoded",
228 "sync_wrapper",
229 "tokio",
230 "tower",
231 "tower-layer",
232 "tower-service",
233 "tracing",
234]
235
236[[package]]
237name = "axum-core"
238version = "0.5.5"
239source = "registry+https://github.com/rust-lang/crates.io-index"
240checksum = "59446ce19cd142f8833f856eb31f3eb097812d1479ab224f54d72428ca21ea22"
241dependencies = [
242 "bytes",
243 "futures-core",
244 "http",
245 "http-body",
246 "http-body-util",
247 "mime",
248 "pin-project-lite",
249 "sync_wrapper",
250 "tower-layer",
251 "tower-service",
252 "tracing",
253]
254
255[[package]]
256name = "backon"
257version = "1.6.0"
258source = "registry+https://github.com/rust-lang/crates.io-index"
259checksum = "cffb0e931875b666fc4fcb20fee52e9bbd1ef836fd9e9e04ec21555f9f85f7ef"
260dependencies = [
261 "fastrand",
262]
263
264[[package]]
265name = "base-x"
266version = "0.2.11"
267source = "registry+https://github.com/rust-lang/crates.io-index"
268checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
269
270[[package]]
271name = "base16ct"
272version = "0.2.0"
273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
275
276[[package]]
277name = "base256emoji"
278version = "1.0.2"
279source = "registry+https://github.com/rust-lang/crates.io-index"
280checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c"
281dependencies = [
282 "const-str",
283 "match-lookup",
284]
285
286[[package]]
287name = "base64"
288version = "0.22.1"
289source = "registry+https://github.com/rust-lang/crates.io-index"
290checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
291
292[[package]]
293name = "base64ct"
294version = "1.8.0"
295source = "registry+https://github.com/rust-lang/crates.io-index"
296checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
297
298[[package]]
299name = "bincode"
300version = "2.0.1"
301source = "registry+https://github.com/rust-lang/crates.io-index"
302checksum = "36eaf5d7b090263e8150820482d5d93cd964a81e4019913c972f4edcc6edb740"
303dependencies = [
304 "bincode_derive",
305 "serde",
306 "unty",
307]
308
309[[package]]
310name = "bincode_derive"
311version = "2.0.1"
312source = "registry+https://github.com/rust-lang/crates.io-index"
313checksum = "bf95709a440f45e986983918d0e8a1f30a9b1df04918fc828670606804ac3c09"
314dependencies = [
315 "virtue",
316]
317
318[[package]]
319name = "bitflags"
320version = "2.10.0"
321source = "registry+https://github.com/rust-lang/crates.io-index"
322checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
323dependencies = [
324 "serde_core",
325]
326
327[[package]]
328name = "block-buffer"
329version = "0.10.4"
330source = "registry+https://github.com/rust-lang/crates.io-index"
331checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
332dependencies = [
333 "generic-array",
334]
335
336[[package]]
337name = "bumpalo"
338version = "3.19.0"
339source = "registry+https://github.com/rust-lang/crates.io-index"
340checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
341
342[[package]]
343name = "byteorder"
344version = "1.5.0"
345source = "registry+https://github.com/rust-lang/crates.io-index"
346checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
347
348[[package]]
349name = "bytes"
350version = "1.10.1"
351source = "registry+https://github.com/rust-lang/crates.io-index"
352checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
353
354[[package]]
355name = "cadence"
356version = "1.6.0"
357source = "registry+https://github.com/rust-lang/crates.io-index"
358checksum = "3075f133bee430b7644c54fb629b9b4420346ffa275a45c81a6babe8b09b4f51"
359dependencies = [
360 "crossbeam-channel",
361]
362
363[[package]]
364name = "cbor4ii"
365version = "0.2.14"
366source = "registry+https://github.com/rust-lang/crates.io-index"
367checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4"
368dependencies = [
369 "serde",
370]
371
372[[package]]
373name = "cc"
374version = "1.2.44"
375source = "registry+https://github.com/rust-lang/crates.io-index"
376checksum = "37521ac7aabe3d13122dc382493e20c9416f299d2ccd5b3a5340a2570cdeb0f3"
377dependencies = [
378 "find-msvc-tools",
379 "jobserver",
380 "libc",
381 "shlex",
382]
383
384[[package]]
385name = "cfg-if"
386version = "1.0.4"
387source = "registry+https://github.com/rust-lang/crates.io-index"
388checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
389
390[[package]]
391name = "cfg_aliases"
392version = "0.2.1"
393source = "registry+https://github.com/rust-lang/crates.io-index"
394checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
395
396[[package]]
397name = "chrono"
398version = "0.4.42"
399source = "registry+https://github.com/rust-lang/crates.io-index"
400checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
401dependencies = [
402 "num-traits",
403 "serde",
404]
405
406[[package]]
407name = "cid"
408version = "0.11.1"
409source = "registry+https://github.com/rust-lang/crates.io-index"
410checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a"
411dependencies = [
412 "core2",
413 "multibase",
414 "multihash",
415 "serde",
416 "serde_bytes",
417 "unsigned-varint",
418]
419
420[[package]]
421name = "combine"
422version = "4.6.7"
423source = "registry+https://github.com/rust-lang/crates.io-index"
424checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
425dependencies = [
426 "bytes",
427 "futures-core",
428 "memchr",
429 "pin-project-lite",
430 "tokio",
431 "tokio-util",
432]
433
434[[package]]
435name = "concurrent-queue"
436version = "2.5.0"
437source = "registry+https://github.com/rust-lang/crates.io-index"
438checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
439dependencies = [
440 "crossbeam-utils",
441]
442
443[[package]]
444name = "const-oid"
445version = "0.9.6"
446source = "registry+https://github.com/rust-lang/crates.io-index"
447checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
448
449[[package]]
450name = "const-str"
451version = "0.4.3"
452source = "registry+https://github.com/rust-lang/crates.io-index"
453checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
454
455[[package]]
456name = "core-foundation"
457version = "0.9.4"
458source = "registry+https://github.com/rust-lang/crates.io-index"
459checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
460dependencies = [
461 "core-foundation-sys",
462 "libc",
463]
464
465[[package]]
466name = "core-foundation"
467version = "0.10.1"
468source = "registry+https://github.com/rust-lang/crates.io-index"
469checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
470dependencies = [
471 "core-foundation-sys",
472 "libc",
473]
474
475[[package]]
476name = "core-foundation-sys"
477version = "0.8.7"
478source = "registry+https://github.com/rust-lang/crates.io-index"
479checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
480
481[[package]]
482name = "core2"
483version = "0.4.0"
484source = "registry+https://github.com/rust-lang/crates.io-index"
485checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
486dependencies = [
487 "memchr",
488]
489
490[[package]]
491name = "cpufeatures"
492version = "0.2.17"
493source = "registry+https://github.com/rust-lang/crates.io-index"
494checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
495dependencies = [
496 "libc",
497]
498
499[[package]]
500name = "crc"
501version = "3.3.0"
502source = "registry+https://github.com/rust-lang/crates.io-index"
503checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
504dependencies = [
505 "crc-catalog",
506]
507
508[[package]]
509name = "crc-catalog"
510version = "2.4.0"
511source = "registry+https://github.com/rust-lang/crates.io-index"
512checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
513
514[[package]]
515name = "critical-section"
516version = "1.2.0"
517source = "registry+https://github.com/rust-lang/crates.io-index"
518checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
519
520[[package]]
521name = "crossbeam-channel"
522version = "0.5.15"
523source = "registry+https://github.com/rust-lang/crates.io-index"
524checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
525dependencies = [
526 "crossbeam-utils",
527]
528
529[[package]]
530name = "crossbeam-epoch"
531version = "0.9.18"
532source = "registry+https://github.com/rust-lang/crates.io-index"
533checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
534dependencies = [
535 "crossbeam-utils",
536]
537
538[[package]]
539name = "crossbeam-queue"
540version = "0.3.12"
541source = "registry+https://github.com/rust-lang/crates.io-index"
542checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
543dependencies = [
544 "crossbeam-utils",
545]
546
547[[package]]
548name = "crossbeam-utils"
549version = "0.8.21"
550source = "registry+https://github.com/rust-lang/crates.io-index"
551checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
552
553[[package]]
554name = "crypto-bigint"
555version = "0.5.5"
556source = "registry+https://github.com/rust-lang/crates.io-index"
557checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
558dependencies = [
559 "generic-array",
560 "rand_core 0.6.4",
561 "subtle",
562 "zeroize",
563]
564
565[[package]]
566name = "crypto-common"
567version = "0.1.6"
568source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
570dependencies = [
571 "generic-array",
572 "typenum",
573]
574
575[[package]]
576name = "data-encoding"
577version = "2.9.0"
578source = "registry+https://github.com/rust-lang/crates.io-index"
579checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
580
581[[package]]
582name = "data-encoding-macro"
583version = "0.1.18"
584source = "registry+https://github.com/rust-lang/crates.io-index"
585checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d"
586dependencies = [
587 "data-encoding",
588 "data-encoding-macro-internal",
589]
590
591[[package]]
592name = "data-encoding-macro-internal"
593version = "0.1.16"
594source = "registry+https://github.com/rust-lang/crates.io-index"
595checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976"
596dependencies = [
597 "data-encoding",
598 "syn 2.0.108",
599]
600
601[[package]]
602name = "deadpool"
603version = "0.12.3"
604source = "registry+https://github.com/rust-lang/crates.io-index"
605checksum = "0be2b1d1d6ec8d846f05e137292d0b89133caf95ef33695424c09568bdd39b1b"
606dependencies = [
607 "deadpool-runtime",
608 "lazy_static",
609 "num_cpus",
610 "tokio",
611]
612
613[[package]]
614name = "deadpool-redis"
615version = "0.22.0"
616source = "registry+https://github.com/rust-lang/crates.io-index"
617checksum = "c0965b977f1244bc3783bb27cd79cfcff335a8341da18f79232d00504b18eb1a"
618dependencies = [
619 "deadpool",
620 "redis",
621]
622
623[[package]]
624name = "deadpool-runtime"
625version = "0.1.4"
626source = "registry+https://github.com/rust-lang/crates.io-index"
627checksum = "092966b41edc516079bdf31ec78a2e0588d1d0c08f78b91d8307215928642b2b"
628dependencies = [
629 "tokio",
630]
631
632[[package]]
633name = "der"
634version = "0.7.10"
635source = "registry+https://github.com/rust-lang/crates.io-index"
636checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
637dependencies = [
638 "const-oid",
639 "pem-rfc7468",
640 "zeroize",
641]
642
643[[package]]
644name = "digest"
645version = "0.10.7"
646source = "registry+https://github.com/rust-lang/crates.io-index"
647checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
648dependencies = [
649 "block-buffer",
650 "const-oid",
651 "crypto-common",
652 "subtle",
653]
654
655[[package]]
656name = "displaydoc"
657version = "0.2.5"
658source = "registry+https://github.com/rust-lang/crates.io-index"
659checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
660dependencies = [
661 "proc-macro2",
662 "quote",
663 "syn 2.0.108",
664]
665
666[[package]]
667name = "dotenvy"
668version = "0.15.7"
669source = "registry+https://github.com/rust-lang/crates.io-index"
670checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
671
672[[package]]
673name = "ecdsa"
674version = "0.16.9"
675source = "registry+https://github.com/rust-lang/crates.io-index"
676checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
677dependencies = [
678 "der",
679 "digest",
680 "elliptic-curve",
681 "rfc6979",
682 "serdect",
683 "signature",
684 "spki",
685]
686
687[[package]]
688name = "either"
689version = "1.15.0"
690source = "registry+https://github.com/rust-lang/crates.io-index"
691checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
692dependencies = [
693 "serde",
694]
695
696[[package]]
697name = "elliptic-curve"
698version = "0.13.8"
699source = "registry+https://github.com/rust-lang/crates.io-index"
700checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
701dependencies = [
702 "base16ct",
703 "base64ct",
704 "crypto-bigint",
705 "digest",
706 "ff",
707 "generic-array",
708 "group",
709 "hkdf",
710 "pem-rfc7468",
711 "pkcs8",
712 "rand_core 0.6.4",
713 "sec1",
714 "serde_json",
715 "serdect",
716 "subtle",
717 "zeroize",
718]
719
720[[package]]
721name = "encoding_rs"
722version = "0.8.35"
723source = "registry+https://github.com/rust-lang/crates.io-index"
724checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
725dependencies = [
726 "cfg-if",
727]
728
729[[package]]
730name = "enum-as-inner"
731version = "0.6.1"
732source = "registry+https://github.com/rust-lang/crates.io-index"
733checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
734dependencies = [
735 "heck",
736 "proc-macro2",
737 "quote",
738 "syn 2.0.108",
739]
740
741[[package]]
742name = "equivalent"
743version = "1.0.2"
744source = "registry+https://github.com/rust-lang/crates.io-index"
745checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
746
747[[package]]
748name = "errno"
749version = "0.3.14"
750source = "registry+https://github.com/rust-lang/crates.io-index"
751checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
752dependencies = [
753 "libc",
754 "windows-sys 0.61.2",
755]
756
757[[package]]
758name = "etcetera"
759version = "0.8.0"
760source = "registry+https://github.com/rust-lang/crates.io-index"
761checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
762dependencies = [
763 "cfg-if",
764 "home",
765 "windows-sys 0.48.0",
766]
767
768[[package]]
769name = "event-listener"
770version = "5.4.1"
771source = "registry+https://github.com/rust-lang/crates.io-index"
772checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
773dependencies = [
774 "concurrent-queue",
775 "parking",
776 "pin-project-lite",
777]
778
779[[package]]
780name = "fastrand"
781version = "2.3.0"
782source = "registry+https://github.com/rust-lang/crates.io-index"
783checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
784
785[[package]]
786name = "ff"
787version = "0.13.1"
788source = "registry+https://github.com/rust-lang/crates.io-index"
789checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
790dependencies = [
791 "rand_core 0.6.4",
792 "subtle",
793]
794
795[[package]]
796name = "find-msvc-tools"
797version = "0.1.4"
798source = "registry+https://github.com/rust-lang/crates.io-index"
799checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
800
801[[package]]
802name = "flume"
803version = "0.11.1"
804source = "registry+https://github.com/rust-lang/crates.io-index"
805checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
806dependencies = [
807 "futures-core",
808 "futures-sink",
809 "spin",
810]
811
812[[package]]
813name = "fnv"
814version = "1.0.7"
815source = "registry+https://github.com/rust-lang/crates.io-index"
816checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
817
818[[package]]
819name = "foldhash"
820version = "0.1.5"
821source = "registry+https://github.com/rust-lang/crates.io-index"
822checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
823
824[[package]]
825name = "foreign-types"
826version = "0.3.2"
827source = "registry+https://github.com/rust-lang/crates.io-index"
828checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
829dependencies = [
830 "foreign-types-shared",
831]
832
833[[package]]
834name = "foreign-types-shared"
835version = "0.1.1"
836source = "registry+https://github.com/rust-lang/crates.io-index"
837checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
838
839[[package]]
840name = "form_urlencoded"
841version = "1.2.2"
842source = "registry+https://github.com/rust-lang/crates.io-index"
843checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
844dependencies = [
845 "percent-encoding",
846]
847
848[[package]]
849name = "futures"
850version = "0.3.31"
851source = "registry+https://github.com/rust-lang/crates.io-index"
852checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
853dependencies = [
854 "futures-channel",
855 "futures-core",
856 "futures-executor",
857 "futures-io",
858 "futures-sink",
859 "futures-task",
860 "futures-util",
861]
862
863[[package]]
864name = "futures-channel"
865version = "0.3.31"
866source = "registry+https://github.com/rust-lang/crates.io-index"
867checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
868dependencies = [
869 "futures-core",
870 "futures-sink",
871]
872
873[[package]]
874name = "futures-core"
875version = "0.3.31"
876source = "registry+https://github.com/rust-lang/crates.io-index"
877checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
878
879[[package]]
880name = "futures-executor"
881version = "0.3.31"
882source = "registry+https://github.com/rust-lang/crates.io-index"
883checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
884dependencies = [
885 "futures-core",
886 "futures-task",
887 "futures-util",
888]
889
890[[package]]
891name = "futures-intrusive"
892version = "0.5.0"
893source = "registry+https://github.com/rust-lang/crates.io-index"
894checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
895dependencies = [
896 "futures-core",
897 "lock_api",
898 "parking_lot",
899]
900
901[[package]]
902name = "futures-io"
903version = "0.3.31"
904source = "registry+https://github.com/rust-lang/crates.io-index"
905checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
906
907[[package]]
908name = "futures-macro"
909version = "0.3.31"
910source = "registry+https://github.com/rust-lang/crates.io-index"
911checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
912dependencies = [
913 "proc-macro2",
914 "quote",
915 "syn 2.0.108",
916]
917
918[[package]]
919name = "futures-sink"
920version = "0.3.31"
921source = "registry+https://github.com/rust-lang/crates.io-index"
922checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
923
924[[package]]
925name = "futures-task"
926version = "0.3.31"
927source = "registry+https://github.com/rust-lang/crates.io-index"
928checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
929
930[[package]]
931name = "futures-util"
932version = "0.3.31"
933source = "registry+https://github.com/rust-lang/crates.io-index"
934checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
935dependencies = [
936 "futures-channel",
937 "futures-core",
938 "futures-io",
939 "futures-macro",
940 "futures-sink",
941 "futures-task",
942 "memchr",
943 "pin-project-lite",
944 "pin-utils",
945 "slab",
946]
947
948[[package]]
949name = "generic-array"
950version = "0.14.9"
951source = "registry+https://github.com/rust-lang/crates.io-index"
952checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
953dependencies = [
954 "typenum",
955 "version_check",
956 "zeroize",
957]
958
959[[package]]
960name = "getrandom"
961version = "0.2.16"
962source = "registry+https://github.com/rust-lang/crates.io-index"
963checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
964dependencies = [
965 "cfg-if",
966 "js-sys",
967 "libc",
968 "wasi",
969 "wasm-bindgen",
970]
971
972[[package]]
973name = "getrandom"
974version = "0.3.4"
975source = "registry+https://github.com/rust-lang/crates.io-index"
976checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
977dependencies = [
978 "cfg-if",
979 "js-sys",
980 "libc",
981 "r-efi",
982 "wasip2",
983 "wasm-bindgen",
984]
985
986[[package]]
987name = "group"
988version = "0.13.0"
989source = "registry+https://github.com/rust-lang/crates.io-index"
990checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
991dependencies = [
992 "ff",
993 "rand_core 0.6.4",
994 "subtle",
995]
996
997[[package]]
998name = "h2"
999version = "0.4.12"
1000source = "registry+https://github.com/rust-lang/crates.io-index"
1001checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1002dependencies = [
1003 "atomic-waker",
1004 "bytes",
1005 "fnv",
1006 "futures-core",
1007 "futures-sink",
1008 "http",
1009 "indexmap",
1010 "slab",
1011 "tokio",
1012 "tokio-util",
1013 "tracing",
1014]
1015
1016[[package]]
1017name = "hashbrown"
1018version = "0.15.5"
1019source = "registry+https://github.com/rust-lang/crates.io-index"
1020checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
1021dependencies = [
1022 "allocator-api2",
1023 "equivalent",
1024 "foldhash",
1025]
1026
1027[[package]]
1028name = "hashbrown"
1029version = "0.16.0"
1030source = "registry+https://github.com/rust-lang/crates.io-index"
1031checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1032
1033[[package]]
1034name = "hashlink"
1035version = "0.10.0"
1036source = "registry+https://github.com/rust-lang/crates.io-index"
1037checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1038dependencies = [
1039 "hashbrown 0.15.5",
1040]
1041
1042[[package]]
1043name = "heck"
1044version = "0.5.0"
1045source = "registry+https://github.com/rust-lang/crates.io-index"
1046checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1047
1048[[package]]
1049name = "hermit-abi"
1050version = "0.5.2"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1053
1054[[package]]
1055name = "hex"
1056version = "0.4.3"
1057source = "registry+https://github.com/rust-lang/crates.io-index"
1058checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1059
1060[[package]]
1061name = "hickory-proto"
1062version = "0.25.2"
1063source = "registry+https://github.com/rust-lang/crates.io-index"
1064checksum = "f8a6fe56c0038198998a6f217ca4e7ef3a5e51f46163bd6dd60b5c71ca6c6502"
1065dependencies = [
1066 "async-trait",
1067 "cfg-if",
1068 "data-encoding",
1069 "enum-as-inner",
1070 "futures-channel",
1071 "futures-io",
1072 "futures-util",
1073 "idna",
1074 "ipnet",
1075 "once_cell",
1076 "rand 0.9.2",
1077 "ring",
1078 "thiserror 2.0.17",
1079 "tinyvec",
1080 "tokio",
1081 "tracing",
1082 "url",
1083]
1084
1085[[package]]
1086name = "hickory-resolver"
1087version = "0.25.2"
1088source = "registry+https://github.com/rust-lang/crates.io-index"
1089checksum = "dc62a9a99b0bfb44d2ab95a7208ac952d31060efc16241c87eaf36406fecf87a"
1090dependencies = [
1091 "cfg-if",
1092 "futures-util",
1093 "hickory-proto",
1094 "ipconfig",
1095 "moka",
1096 "once_cell",
1097 "parking_lot",
1098 "rand 0.9.2",
1099 "resolv-conf",
1100 "smallvec",
1101 "thiserror 2.0.17",
1102 "tokio",
1103 "tracing",
1104]
1105
1106[[package]]
1107name = "hkdf"
1108version = "0.12.4"
1109source = "registry+https://github.com/rust-lang/crates.io-index"
1110checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1111dependencies = [
1112 "hmac",
1113]
1114
1115[[package]]
1116name = "hmac"
1117version = "0.12.1"
1118source = "registry+https://github.com/rust-lang/crates.io-index"
1119checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1120dependencies = [
1121 "digest",
1122]
1123
1124[[package]]
1125name = "home"
1126version = "0.5.12"
1127source = "registry+https://github.com/rust-lang/crates.io-index"
1128checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
1129dependencies = [
1130 "windows-sys 0.61.2",
1131]
1132
1133[[package]]
1134name = "http"
1135version = "1.3.1"
1136source = "registry+https://github.com/rust-lang/crates.io-index"
1137checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1138dependencies = [
1139 "bytes",
1140 "fnv",
1141 "itoa",
1142]
1143
1144[[package]]
1145name = "http-body"
1146version = "1.0.1"
1147source = "registry+https://github.com/rust-lang/crates.io-index"
1148checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1149dependencies = [
1150 "bytes",
1151 "http",
1152]
1153
1154[[package]]
1155name = "http-body-util"
1156version = "0.1.3"
1157source = "registry+https://github.com/rust-lang/crates.io-index"
1158checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1159dependencies = [
1160 "bytes",
1161 "futures-core",
1162 "http",
1163 "http-body",
1164 "pin-project-lite",
1165]
1166
1167[[package]]
1168name = "http-range-header"
1169version = "0.4.2"
1170source = "registry+https://github.com/rust-lang/crates.io-index"
1171checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
1172
1173[[package]]
1174name = "httparse"
1175version = "1.10.1"
1176source = "registry+https://github.com/rust-lang/crates.io-index"
1177checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1178
1179[[package]]
1180name = "httpdate"
1181version = "1.0.3"
1182source = "registry+https://github.com/rust-lang/crates.io-index"
1183checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1184
1185[[package]]
1186name = "hyper"
1187version = "1.7.0"
1188source = "registry+https://github.com/rust-lang/crates.io-index"
1189checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1190dependencies = [
1191 "atomic-waker",
1192 "bytes",
1193 "futures-channel",
1194 "futures-core",
1195 "h2",
1196 "http",
1197 "http-body",
1198 "httparse",
1199 "httpdate",
1200 "itoa",
1201 "pin-project-lite",
1202 "pin-utils",
1203 "smallvec",
1204 "tokio",
1205 "want",
1206]
1207
1208[[package]]
1209name = "hyper-rustls"
1210version = "0.27.7"
1211source = "registry+https://github.com/rust-lang/crates.io-index"
1212checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1213dependencies = [
1214 "http",
1215 "hyper",
1216 "hyper-util",
1217 "rustls",
1218 "rustls-pki-types",
1219 "tokio",
1220 "tokio-rustls",
1221 "tower-service",
1222 "webpki-roots",
1223]
1224
1225[[package]]
1226name = "hyper-tls"
1227version = "0.6.0"
1228source = "registry+https://github.com/rust-lang/crates.io-index"
1229checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1230dependencies = [
1231 "bytes",
1232 "http-body-util",
1233 "hyper",
1234 "hyper-util",
1235 "native-tls",
1236 "tokio",
1237 "tokio-native-tls",
1238 "tower-service",
1239]
1240
1241[[package]]
1242name = "hyper-util"
1243version = "0.1.17"
1244source = "registry+https://github.com/rust-lang/crates.io-index"
1245checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1246dependencies = [
1247 "base64",
1248 "bytes",
1249 "futures-channel",
1250 "futures-core",
1251 "futures-util",
1252 "http",
1253 "http-body",
1254 "hyper",
1255 "ipnet",
1256 "libc",
1257 "percent-encoding",
1258 "pin-project-lite",
1259 "socket2 0.6.1",
1260 "system-configuration",
1261 "tokio",
1262 "tower-service",
1263 "tracing",
1264 "windows-registry",
1265]
1266
1267[[package]]
1268name = "icu_collections"
1269version = "2.1.1"
1270source = "registry+https://github.com/rust-lang/crates.io-index"
1271checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1272dependencies = [
1273 "displaydoc",
1274 "potential_utf",
1275 "yoke",
1276 "zerofrom",
1277 "zerovec",
1278]
1279
1280[[package]]
1281name = "icu_locale_core"
1282version = "2.1.1"
1283source = "registry+https://github.com/rust-lang/crates.io-index"
1284checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1285dependencies = [
1286 "displaydoc",
1287 "litemap",
1288 "tinystr",
1289 "writeable",
1290 "zerovec",
1291]
1292
1293[[package]]
1294name = "icu_normalizer"
1295version = "2.1.1"
1296source = "registry+https://github.com/rust-lang/crates.io-index"
1297checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1298dependencies = [
1299 "icu_collections",
1300 "icu_normalizer_data",
1301 "icu_properties",
1302 "icu_provider",
1303 "smallvec",
1304 "zerovec",
1305]
1306
1307[[package]]
1308name = "icu_normalizer_data"
1309version = "2.1.1"
1310source = "registry+https://github.com/rust-lang/crates.io-index"
1311checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1312
1313[[package]]
1314name = "icu_properties"
1315version = "2.1.1"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
1318dependencies = [
1319 "icu_collections",
1320 "icu_locale_core",
1321 "icu_properties_data",
1322 "icu_provider",
1323 "zerotrie",
1324 "zerovec",
1325]
1326
1327[[package]]
1328name = "icu_properties_data"
1329version = "2.1.1"
1330source = "registry+https://github.com/rust-lang/crates.io-index"
1331checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
1332
1333[[package]]
1334name = "icu_provider"
1335version = "2.1.1"
1336source = "registry+https://github.com/rust-lang/crates.io-index"
1337checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1338dependencies = [
1339 "displaydoc",
1340 "icu_locale_core",
1341 "writeable",
1342 "yoke",
1343 "zerofrom",
1344 "zerotrie",
1345 "zerovec",
1346]
1347
1348[[package]]
1349name = "idna"
1350version = "1.1.0"
1351source = "registry+https://github.com/rust-lang/crates.io-index"
1352checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1353dependencies = [
1354 "idna_adapter",
1355 "smallvec",
1356 "utf8_iter",
1357]
1358
1359[[package]]
1360name = "idna_adapter"
1361version = "1.2.1"
1362source = "registry+https://github.com/rust-lang/crates.io-index"
1363checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1364dependencies = [
1365 "icu_normalizer",
1366 "icu_properties",
1367]
1368
1369[[package]]
1370name = "indexmap"
1371version = "2.12.0"
1372source = "registry+https://github.com/rust-lang/crates.io-index"
1373checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1374dependencies = [
1375 "equivalent",
1376 "hashbrown 0.16.0",
1377]
1378
1379[[package]]
1380name = "ipconfig"
1381version = "0.3.2"
1382source = "registry+https://github.com/rust-lang/crates.io-index"
1383checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
1384dependencies = [
1385 "socket2 0.5.10",
1386 "widestring",
1387 "windows-sys 0.48.0",
1388 "winreg",
1389]
1390
1391[[package]]
1392name = "ipld-core"
1393version = "0.4.2"
1394source = "registry+https://github.com/rust-lang/crates.io-index"
1395checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db"
1396dependencies = [
1397 "cid",
1398 "serde",
1399 "serde_bytes",
1400]
1401
1402[[package]]
1403name = "ipnet"
1404version = "2.11.0"
1405source = "registry+https://github.com/rust-lang/crates.io-index"
1406checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1407
1408[[package]]
1409name = "iri-string"
1410version = "0.7.8"
1411source = "registry+https://github.com/rust-lang/crates.io-index"
1412checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1413dependencies = [
1414 "memchr",
1415 "serde",
1416]
1417
1418[[package]]
1419name = "itoa"
1420version = "1.0.15"
1421source = "registry+https://github.com/rust-lang/crates.io-index"
1422checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1423
1424[[package]]
1425name = "jobserver"
1426version = "0.1.34"
1427source = "registry+https://github.com/rust-lang/crates.io-index"
1428checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1429dependencies = [
1430 "getrandom 0.3.4",
1431 "libc",
1432]
1433
1434[[package]]
1435name = "js-sys"
1436version = "0.3.82"
1437source = "registry+https://github.com/rust-lang/crates.io-index"
1438checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
1439dependencies = [
1440 "once_cell",
1441 "wasm-bindgen",
1442]
1443
1444[[package]]
1445name = "k256"
1446version = "0.13.4"
1447source = "registry+https://github.com/rust-lang/crates.io-index"
1448checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
1449dependencies = [
1450 "cfg-if",
1451 "ecdsa",
1452 "elliptic-curve",
1453 "once_cell",
1454 "sha2",
1455 "signature",
1456]
1457
1458[[package]]
1459name = "lazy_static"
1460version = "1.5.0"
1461source = "registry+https://github.com/rust-lang/crates.io-index"
1462checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1463dependencies = [
1464 "spin",
1465]
1466
1467[[package]]
1468name = "libc"
1469version = "0.2.177"
1470source = "registry+https://github.com/rust-lang/crates.io-index"
1471checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1472
1473[[package]]
1474name = "libm"
1475version = "0.2.15"
1476source = "registry+https://github.com/rust-lang/crates.io-index"
1477checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1478
1479[[package]]
1480name = "libredox"
1481version = "0.1.10"
1482source = "registry+https://github.com/rust-lang/crates.io-index"
1483checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
1484dependencies = [
1485 "bitflags",
1486 "libc",
1487 "redox_syscall",
1488]
1489
1490[[package]]
1491name = "libsqlite3-sys"
1492version = "0.30.1"
1493source = "registry+https://github.com/rust-lang/crates.io-index"
1494checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1495dependencies = [
1496 "cc",
1497 "pkg-config",
1498 "vcpkg",
1499]
1500
1501[[package]]
1502name = "linux-raw-sys"
1503version = "0.11.0"
1504source = "registry+https://github.com/rust-lang/crates.io-index"
1505checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1506
1507[[package]]
1508name = "litemap"
1509version = "0.8.1"
1510source = "registry+https://github.com/rust-lang/crates.io-index"
1511checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
1512
1513[[package]]
1514name = "lock_api"
1515version = "0.4.14"
1516source = "registry+https://github.com/rust-lang/crates.io-index"
1517checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1518dependencies = [
1519 "scopeguard",
1520]
1521
1522[[package]]
1523name = "log"
1524version = "0.4.28"
1525source = "registry+https://github.com/rust-lang/crates.io-index"
1526checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1527
1528[[package]]
1529name = "lru"
1530version = "0.12.5"
1531source = "registry+https://github.com/rust-lang/crates.io-index"
1532checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
1533dependencies = [
1534 "hashbrown 0.15.5",
1535]
1536
1537[[package]]
1538name = "lru-slab"
1539version = "0.1.2"
1540source = "registry+https://github.com/rust-lang/crates.io-index"
1541checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1542
1543[[package]]
1544name = "match-lookup"
1545version = "0.1.1"
1546source = "registry+https://github.com/rust-lang/crates.io-index"
1547checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e"
1548dependencies = [
1549 "proc-macro2",
1550 "quote",
1551 "syn 1.0.109",
1552]
1553
1554[[package]]
1555name = "matchers"
1556version = "0.2.0"
1557source = "registry+https://github.com/rust-lang/crates.io-index"
1558checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1559dependencies = [
1560 "regex-automata",
1561]
1562
1563[[package]]
1564name = "matchit"
1565version = "0.8.4"
1566source = "registry+https://github.com/rust-lang/crates.io-index"
1567checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1568
1569[[package]]
1570name = "md-5"
1571version = "0.10.6"
1572source = "registry+https://github.com/rust-lang/crates.io-index"
1573checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1574dependencies = [
1575 "cfg-if",
1576 "digest",
1577]
1578
1579[[package]]
1580name = "memchr"
1581version = "2.7.6"
1582source = "registry+https://github.com/rust-lang/crates.io-index"
1583checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1584
1585[[package]]
1586name = "metrohash"
1587version = "1.0.7"
1588source = "registry+https://github.com/rust-lang/crates.io-index"
1589checksum = "a84011bfadc339f60fbcc38181da8a0a91cd16375394dd52edf9da80deacd8c5"
1590
1591[[package]]
1592name = "mime"
1593version = "0.3.17"
1594source = "registry+https://github.com/rust-lang/crates.io-index"
1595checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1596
1597[[package]]
1598name = "mime_guess"
1599version = "2.0.5"
1600source = "registry+https://github.com/rust-lang/crates.io-index"
1601checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1602dependencies = [
1603 "mime",
1604 "unicase",
1605]
1606
1607[[package]]
1608name = "mio"
1609version = "1.1.0"
1610source = "registry+https://github.com/rust-lang/crates.io-index"
1611checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
1612dependencies = [
1613 "libc",
1614 "wasi",
1615 "windows-sys 0.61.2",
1616]
1617
1618[[package]]
1619name = "moka"
1620version = "0.12.11"
1621source = "registry+https://github.com/rust-lang/crates.io-index"
1622checksum = "8261cd88c312e0004c1d51baad2980c66528dfdb2bee62003e643a4d8f86b077"
1623dependencies = [
1624 "crossbeam-channel",
1625 "crossbeam-epoch",
1626 "crossbeam-utils",
1627 "equivalent",
1628 "parking_lot",
1629 "portable-atomic",
1630 "rustc_version",
1631 "smallvec",
1632 "tagptr",
1633 "uuid",
1634]
1635
1636[[package]]
1637name = "multibase"
1638version = "0.9.2"
1639source = "registry+https://github.com/rust-lang/crates.io-index"
1640checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
1641dependencies = [
1642 "base-x",
1643 "base256emoji",
1644 "data-encoding",
1645 "data-encoding-macro",
1646]
1647
1648[[package]]
1649name = "multihash"
1650version = "0.19.3"
1651source = "registry+https://github.com/rust-lang/crates.io-index"
1652checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d"
1653dependencies = [
1654 "core2",
1655 "serde",
1656 "unsigned-varint",
1657]
1658
1659[[package]]
1660name = "native-tls"
1661version = "0.2.14"
1662source = "registry+https://github.com/rust-lang/crates.io-index"
1663checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1664dependencies = [
1665 "libc",
1666 "log",
1667 "openssl",
1668 "openssl-probe",
1669 "openssl-sys",
1670 "schannel",
1671 "security-framework 2.11.1",
1672 "security-framework-sys",
1673 "tempfile",
1674]
1675
1676[[package]]
1677name = "nu-ansi-term"
1678version = "0.50.3"
1679source = "registry+https://github.com/rust-lang/crates.io-index"
1680checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1681dependencies = [
1682 "windows-sys 0.61.2",
1683]
1684
1685[[package]]
1686name = "num-bigint"
1687version = "0.4.6"
1688source = "registry+https://github.com/rust-lang/crates.io-index"
1689checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1690dependencies = [
1691 "num-integer",
1692 "num-traits",
1693]
1694
1695[[package]]
1696name = "num-bigint-dig"
1697version = "0.8.5"
1698source = "registry+https://github.com/rust-lang/crates.io-index"
1699checksum = "82c79c15c05d4bf82b6f5ef163104cc81a760d8e874d38ac50ab67c8877b647b"
1700dependencies = [
1701 "lazy_static",
1702 "libm",
1703 "num-integer",
1704 "num-iter",
1705 "num-traits",
1706 "rand 0.8.5",
1707 "smallvec",
1708 "zeroize",
1709]
1710
1711[[package]]
1712name = "num-integer"
1713version = "0.1.46"
1714source = "registry+https://github.com/rust-lang/crates.io-index"
1715checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1716dependencies = [
1717 "num-traits",
1718]
1719
1720[[package]]
1721name = "num-iter"
1722version = "0.1.45"
1723source = "registry+https://github.com/rust-lang/crates.io-index"
1724checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1725dependencies = [
1726 "autocfg",
1727 "num-integer",
1728 "num-traits",
1729]
1730
1731[[package]]
1732name = "num-traits"
1733version = "0.2.19"
1734source = "registry+https://github.com/rust-lang/crates.io-index"
1735checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1736dependencies = [
1737 "autocfg",
1738 "libm",
1739]
1740
1741[[package]]
1742name = "num_cpus"
1743version = "1.17.0"
1744source = "registry+https://github.com/rust-lang/crates.io-index"
1745checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
1746dependencies = [
1747 "hermit-abi",
1748 "libc",
1749]
1750
1751[[package]]
1752name = "once_cell"
1753version = "1.21.3"
1754source = "registry+https://github.com/rust-lang/crates.io-index"
1755checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1756dependencies = [
1757 "critical-section",
1758 "portable-atomic",
1759]
1760
1761[[package]]
1762name = "openssl"
1763version = "0.10.74"
1764source = "registry+https://github.com/rust-lang/crates.io-index"
1765checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654"
1766dependencies = [
1767 "bitflags",
1768 "cfg-if",
1769 "foreign-types",
1770 "libc",
1771 "once_cell",
1772 "openssl-macros",
1773 "openssl-sys",
1774]
1775
1776[[package]]
1777name = "openssl-macros"
1778version = "0.1.1"
1779source = "registry+https://github.com/rust-lang/crates.io-index"
1780checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1781dependencies = [
1782 "proc-macro2",
1783 "quote",
1784 "syn 2.0.108",
1785]
1786
1787[[package]]
1788name = "openssl-probe"
1789version = "0.1.6"
1790source = "registry+https://github.com/rust-lang/crates.io-index"
1791checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1792
1793[[package]]
1794name = "openssl-sys"
1795version = "0.9.110"
1796source = "registry+https://github.com/rust-lang/crates.io-index"
1797checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2"
1798dependencies = [
1799 "cc",
1800 "libc",
1801 "pkg-config",
1802 "vcpkg",
1803]
1804
1805[[package]]
1806name = "p256"
1807version = "0.13.2"
1808source = "registry+https://github.com/rust-lang/crates.io-index"
1809checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
1810dependencies = [
1811 "ecdsa",
1812 "elliptic-curve",
1813 "primeorder",
1814 "serdect",
1815 "sha2",
1816]
1817
1818[[package]]
1819name = "p384"
1820version = "0.13.1"
1821source = "registry+https://github.com/rust-lang/crates.io-index"
1822checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
1823dependencies = [
1824 "ecdsa",
1825 "elliptic-curve",
1826 "primeorder",
1827 "serdect",
1828 "sha2",
1829]
1830
1831[[package]]
1832name = "parking"
1833version = "2.2.1"
1834source = "registry+https://github.com/rust-lang/crates.io-index"
1835checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1836
1837[[package]]
1838name = "parking_lot"
1839version = "0.12.5"
1840source = "registry+https://github.com/rust-lang/crates.io-index"
1841checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1842dependencies = [
1843 "lock_api",
1844 "parking_lot_core",
1845]
1846
1847[[package]]
1848name = "parking_lot_core"
1849version = "0.9.12"
1850source = "registry+https://github.com/rust-lang/crates.io-index"
1851checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1852dependencies = [
1853 "cfg-if",
1854 "libc",
1855 "redox_syscall",
1856 "smallvec",
1857 "windows-link 0.2.1",
1858]
1859
1860[[package]]
1861name = "pem-rfc7468"
1862version = "0.7.0"
1863source = "registry+https://github.com/rust-lang/crates.io-index"
1864checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1865dependencies = [
1866 "base64ct",
1867]
1868
1869[[package]]
1870name = "percent-encoding"
1871version = "2.3.2"
1872source = "registry+https://github.com/rust-lang/crates.io-index"
1873checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1874
1875[[package]]
1876name = "pin-project-lite"
1877version = "0.2.16"
1878source = "registry+https://github.com/rust-lang/crates.io-index"
1879checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1880
1881[[package]]
1882name = "pin-utils"
1883version = "0.1.0"
1884source = "registry+https://github.com/rust-lang/crates.io-index"
1885checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1886
1887[[package]]
1888name = "pkcs1"
1889version = "0.7.5"
1890source = "registry+https://github.com/rust-lang/crates.io-index"
1891checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1892dependencies = [
1893 "der",
1894 "pkcs8",
1895 "spki",
1896]
1897
1898[[package]]
1899name = "pkcs8"
1900version = "0.10.2"
1901source = "registry+https://github.com/rust-lang/crates.io-index"
1902checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1903dependencies = [
1904 "der",
1905 "spki",
1906]
1907
1908[[package]]
1909name = "pkg-config"
1910version = "0.3.32"
1911source = "registry+https://github.com/rust-lang/crates.io-index"
1912checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1913
1914[[package]]
1915name = "portable-atomic"
1916version = "1.11.1"
1917source = "registry+https://github.com/rust-lang/crates.io-index"
1918checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1919
1920[[package]]
1921name = "potential_utf"
1922version = "0.1.4"
1923source = "registry+https://github.com/rust-lang/crates.io-index"
1924checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
1925dependencies = [
1926 "zerovec",
1927]
1928
1929[[package]]
1930name = "ppv-lite86"
1931version = "0.2.21"
1932source = "registry+https://github.com/rust-lang/crates.io-index"
1933checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1934dependencies = [
1935 "zerocopy",
1936]
1937
1938[[package]]
1939name = "primeorder"
1940version = "0.13.6"
1941source = "registry+https://github.com/rust-lang/crates.io-index"
1942checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
1943dependencies = [
1944 "elliptic-curve",
1945 "serdect",
1946]
1947
1948[[package]]
1949name = "proc-macro2"
1950version = "1.0.103"
1951source = "registry+https://github.com/rust-lang/crates.io-index"
1952checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
1953dependencies = [
1954 "unicode-ident",
1955]
1956
1957[[package]]
1958name = "quickdid"
1959version = "1.0.0-rc.5"
1960dependencies = [
1961 "anyhow",
1962 "async-trait",
1963 "atproto-identity",
1964 "atproto-jetstream",
1965 "atproto-lexicon",
1966 "axum",
1967 "bincode",
1968 "cadence",
1969 "deadpool-redis",
1970 "httpdate",
1971 "metrohash",
1972 "once_cell",
1973 "reqwest",
1974 "serde",
1975 "serde_json",
1976 "sqlx",
1977 "thiserror 2.0.17",
1978 "tokio",
1979 "tokio-util",
1980 "tower-http",
1981 "tracing",
1982 "tracing-subscriber",
1983]
1984
1985[[package]]
1986name = "quinn"
1987version = "0.11.9"
1988source = "registry+https://github.com/rust-lang/crates.io-index"
1989checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
1990dependencies = [
1991 "bytes",
1992 "cfg_aliases",
1993 "pin-project-lite",
1994 "quinn-proto",
1995 "quinn-udp",
1996 "rustc-hash",
1997 "rustls",
1998 "socket2 0.6.1",
1999 "thiserror 2.0.17",
2000 "tokio",
2001 "tracing",
2002 "web-time",
2003]
2004
2005[[package]]
2006name = "quinn-proto"
2007version = "0.11.13"
2008source = "registry+https://github.com/rust-lang/crates.io-index"
2009checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2010dependencies = [
2011 "bytes",
2012 "getrandom 0.3.4",
2013 "lru-slab",
2014 "rand 0.9.2",
2015 "ring",
2016 "rustc-hash",
2017 "rustls",
2018 "rustls-pki-types",
2019 "slab",
2020 "thiserror 2.0.17",
2021 "tinyvec",
2022 "tracing",
2023 "web-time",
2024]
2025
2026[[package]]
2027name = "quinn-udp"
2028version = "0.5.14"
2029source = "registry+https://github.com/rust-lang/crates.io-index"
2030checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2031dependencies = [
2032 "cfg_aliases",
2033 "libc",
2034 "once_cell",
2035 "socket2 0.6.1",
2036 "tracing",
2037 "windows-sys 0.60.2",
2038]
2039
2040[[package]]
2041name = "quote"
2042version = "1.0.41"
2043source = "registry+https://github.com/rust-lang/crates.io-index"
2044checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
2045dependencies = [
2046 "proc-macro2",
2047]
2048
2049[[package]]
2050name = "r-efi"
2051version = "5.3.0"
2052source = "registry+https://github.com/rust-lang/crates.io-index"
2053checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2054
2055[[package]]
2056name = "rand"
2057version = "0.8.5"
2058source = "registry+https://github.com/rust-lang/crates.io-index"
2059checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2060dependencies = [
2061 "libc",
2062 "rand_chacha 0.3.1",
2063 "rand_core 0.6.4",
2064]
2065
2066[[package]]
2067name = "rand"
2068version = "0.9.2"
2069source = "registry+https://github.com/rust-lang/crates.io-index"
2070checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2071dependencies = [
2072 "rand_chacha 0.9.0",
2073 "rand_core 0.9.3",
2074]
2075
2076[[package]]
2077name = "rand_chacha"
2078version = "0.3.1"
2079source = "registry+https://github.com/rust-lang/crates.io-index"
2080checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2081dependencies = [
2082 "ppv-lite86",
2083 "rand_core 0.6.4",
2084]
2085
2086[[package]]
2087name = "rand_chacha"
2088version = "0.9.0"
2089source = "registry+https://github.com/rust-lang/crates.io-index"
2090checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2091dependencies = [
2092 "ppv-lite86",
2093 "rand_core 0.9.3",
2094]
2095
2096[[package]]
2097name = "rand_core"
2098version = "0.6.4"
2099source = "registry+https://github.com/rust-lang/crates.io-index"
2100checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2101dependencies = [
2102 "getrandom 0.2.16",
2103]
2104
2105[[package]]
2106name = "rand_core"
2107version = "0.9.3"
2108source = "registry+https://github.com/rust-lang/crates.io-index"
2109checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2110dependencies = [
2111 "getrandom 0.3.4",
2112]
2113
2114[[package]]
2115name = "redis"
2116version = "0.32.7"
2117source = "registry+https://github.com/rust-lang/crates.io-index"
2118checksum = "014cc767fefab6a3e798ca45112bccad9c6e0e218fbd49720042716c73cfef44"
2119dependencies = [
2120 "arc-swap",
2121 "backon",
2122 "bytes",
2123 "cfg-if",
2124 "combine",
2125 "futures-channel",
2126 "futures-util",
2127 "itoa",
2128 "num-bigint",
2129 "percent-encoding",
2130 "pin-project-lite",
2131 "rustls",
2132 "rustls-native-certs",
2133 "ryu",
2134 "socket2 0.6.1",
2135 "tokio",
2136 "tokio-rustls",
2137 "tokio-util",
2138 "url",
2139]
2140
2141[[package]]
2142name = "redox_syscall"
2143version = "0.5.18"
2144source = "registry+https://github.com/rust-lang/crates.io-index"
2145checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2146dependencies = [
2147 "bitflags",
2148]
2149
2150[[package]]
2151name = "regex-automata"
2152version = "0.4.13"
2153source = "registry+https://github.com/rust-lang/crates.io-index"
2154checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2155dependencies = [
2156 "aho-corasick",
2157 "memchr",
2158 "regex-syntax",
2159]
2160
2161[[package]]
2162name = "regex-syntax"
2163version = "0.8.8"
2164source = "registry+https://github.com/rust-lang/crates.io-index"
2165checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2166
2167[[package]]
2168name = "reqwest"
2169version = "0.12.24"
2170source = "registry+https://github.com/rust-lang/crates.io-index"
2171checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
2172dependencies = [
2173 "base64",
2174 "bytes",
2175 "encoding_rs",
2176 "futures-core",
2177 "futures-util",
2178 "h2",
2179 "http",
2180 "http-body",
2181 "http-body-util",
2182 "hyper",
2183 "hyper-rustls",
2184 "hyper-tls",
2185 "hyper-util",
2186 "js-sys",
2187 "log",
2188 "mime",
2189 "mime_guess",
2190 "native-tls",
2191 "percent-encoding",
2192 "pin-project-lite",
2193 "quinn",
2194 "rustls",
2195 "rustls-pki-types",
2196 "serde",
2197 "serde_json",
2198 "serde_urlencoded",
2199 "sync_wrapper",
2200 "tokio",
2201 "tokio-native-tls",
2202 "tokio-rustls",
2203 "tower",
2204 "tower-http",
2205 "tower-service",
2206 "url",
2207 "wasm-bindgen",
2208 "wasm-bindgen-futures",
2209 "web-sys",
2210 "webpki-roots",
2211]
2212
2213[[package]]
2214name = "reqwest-chain"
2215version = "1.0.0"
2216source = "registry+https://github.com/rust-lang/crates.io-index"
2217checksum = "da5c014fb79a8227db44a0433d748107750d2550b7fca55c59a3d7ee7d2ee2b2"
2218dependencies = [
2219 "anyhow",
2220 "async-trait",
2221 "http",
2222 "reqwest-middleware",
2223]
2224
2225[[package]]
2226name = "reqwest-middleware"
2227version = "0.4.2"
2228source = "registry+https://github.com/rust-lang/crates.io-index"
2229checksum = "57f17d28a6e6acfe1733fe24bcd30774d13bffa4b8a22535b4c8c98423088d4e"
2230dependencies = [
2231 "anyhow",
2232 "async-trait",
2233 "http",
2234 "reqwest",
2235 "serde",
2236 "thiserror 1.0.69",
2237 "tower-service",
2238]
2239
2240[[package]]
2241name = "resolv-conf"
2242version = "0.7.5"
2243source = "registry+https://github.com/rust-lang/crates.io-index"
2244checksum = "6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799"
2245
2246[[package]]
2247name = "rfc6979"
2248version = "0.4.0"
2249source = "registry+https://github.com/rust-lang/crates.io-index"
2250checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
2251dependencies = [
2252 "hmac",
2253 "subtle",
2254]
2255
2256[[package]]
2257name = "ring"
2258version = "0.17.14"
2259source = "registry+https://github.com/rust-lang/crates.io-index"
2260checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2261dependencies = [
2262 "cc",
2263 "cfg-if",
2264 "getrandom 0.2.16",
2265 "libc",
2266 "untrusted",
2267 "windows-sys 0.52.0",
2268]
2269
2270[[package]]
2271name = "rsa"
2272version = "0.9.8"
2273source = "registry+https://github.com/rust-lang/crates.io-index"
2274checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
2275dependencies = [
2276 "const-oid",
2277 "digest",
2278 "num-bigint-dig",
2279 "num-integer",
2280 "num-traits",
2281 "pkcs1",
2282 "pkcs8",
2283 "rand_core 0.6.4",
2284 "signature",
2285 "spki",
2286 "subtle",
2287 "zeroize",
2288]
2289
2290[[package]]
2291name = "rustc-hash"
2292version = "2.1.1"
2293source = "registry+https://github.com/rust-lang/crates.io-index"
2294checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2295
2296[[package]]
2297name = "rustc_version"
2298version = "0.4.1"
2299source = "registry+https://github.com/rust-lang/crates.io-index"
2300checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2301dependencies = [
2302 "semver",
2303]
2304
2305[[package]]
2306name = "rustix"
2307version = "1.1.2"
2308source = "registry+https://github.com/rust-lang/crates.io-index"
2309checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2310dependencies = [
2311 "bitflags",
2312 "errno",
2313 "libc",
2314 "linux-raw-sys",
2315 "windows-sys 0.61.2",
2316]
2317
2318[[package]]
2319name = "rustls"
2320version = "0.23.34"
2321source = "registry+https://github.com/rust-lang/crates.io-index"
2322checksum = "6a9586e9ee2b4f8fab52a0048ca7334d7024eef48e2cb9407e3497bb7cab7fa7"
2323dependencies = [
2324 "once_cell",
2325 "ring",
2326 "rustls-pki-types",
2327 "rustls-webpki",
2328 "subtle",
2329 "zeroize",
2330]
2331
2332[[package]]
2333name = "rustls-native-certs"
2334version = "0.8.2"
2335source = "registry+https://github.com/rust-lang/crates.io-index"
2336checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
2337dependencies = [
2338 "openssl-probe",
2339 "rustls-pki-types",
2340 "schannel",
2341 "security-framework 3.5.1",
2342]
2343
2344[[package]]
2345name = "rustls-pki-types"
2346version = "1.13.0"
2347source = "registry+https://github.com/rust-lang/crates.io-index"
2348checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
2349dependencies = [
2350 "web-time",
2351 "zeroize",
2352]
2353
2354[[package]]
2355name = "rustls-webpki"
2356version = "0.103.8"
2357source = "registry+https://github.com/rust-lang/crates.io-index"
2358checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
2359dependencies = [
2360 "ring",
2361 "rustls-pki-types",
2362 "untrusted",
2363]
2364
2365[[package]]
2366name = "rustversion"
2367version = "1.0.22"
2368source = "registry+https://github.com/rust-lang/crates.io-index"
2369checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2370
2371[[package]]
2372name = "ryu"
2373version = "1.0.20"
2374source = "registry+https://github.com/rust-lang/crates.io-index"
2375checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2376
2377[[package]]
2378name = "schannel"
2379version = "0.1.28"
2380source = "registry+https://github.com/rust-lang/crates.io-index"
2381checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2382dependencies = [
2383 "windows-sys 0.61.2",
2384]
2385
2386[[package]]
2387name = "scopeguard"
2388version = "1.2.0"
2389source = "registry+https://github.com/rust-lang/crates.io-index"
2390checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2391
2392[[package]]
2393name = "sec1"
2394version = "0.7.3"
2395source = "registry+https://github.com/rust-lang/crates.io-index"
2396checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2397dependencies = [
2398 "base16ct",
2399 "der",
2400 "generic-array",
2401 "pkcs8",
2402 "serdect",
2403 "subtle",
2404 "zeroize",
2405]
2406
2407[[package]]
2408name = "security-framework"
2409version = "2.11.1"
2410source = "registry+https://github.com/rust-lang/crates.io-index"
2411checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2412dependencies = [
2413 "bitflags",
2414 "core-foundation 0.9.4",
2415 "core-foundation-sys",
2416 "libc",
2417 "security-framework-sys",
2418]
2419
2420[[package]]
2421name = "security-framework"
2422version = "3.5.1"
2423source = "registry+https://github.com/rust-lang/crates.io-index"
2424checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
2425dependencies = [
2426 "bitflags",
2427 "core-foundation 0.10.1",
2428 "core-foundation-sys",
2429 "libc",
2430 "security-framework-sys",
2431]
2432
2433[[package]]
2434name = "security-framework-sys"
2435version = "2.15.0"
2436source = "registry+https://github.com/rust-lang/crates.io-index"
2437checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2438dependencies = [
2439 "core-foundation-sys",
2440 "libc",
2441]
2442
2443[[package]]
2444name = "semver"
2445version = "1.0.27"
2446source = "registry+https://github.com/rust-lang/crates.io-index"
2447checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2"
2448
2449[[package]]
2450name = "serde"
2451version = "1.0.228"
2452source = "registry+https://github.com/rust-lang/crates.io-index"
2453checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2454dependencies = [
2455 "serde_core",
2456 "serde_derive",
2457]
2458
2459[[package]]
2460name = "serde_bytes"
2461version = "0.11.19"
2462source = "registry+https://github.com/rust-lang/crates.io-index"
2463checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
2464dependencies = [
2465 "serde",
2466 "serde_core",
2467]
2468
2469[[package]]
2470name = "serde_core"
2471version = "1.0.228"
2472source = "registry+https://github.com/rust-lang/crates.io-index"
2473checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2474dependencies = [
2475 "serde_derive",
2476]
2477
2478[[package]]
2479name = "serde_derive"
2480version = "1.0.228"
2481source = "registry+https://github.com/rust-lang/crates.io-index"
2482checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2483dependencies = [
2484 "proc-macro2",
2485 "quote",
2486 "syn 2.0.108",
2487]
2488
2489[[package]]
2490name = "serde_ipld_dagcbor"
2491version = "0.6.4"
2492source = "registry+https://github.com/rust-lang/crates.io-index"
2493checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778"
2494dependencies = [
2495 "cbor4ii",
2496 "ipld-core",
2497 "scopeguard",
2498 "serde",
2499]
2500
2501[[package]]
2502name = "serde_json"
2503version = "1.0.145"
2504source = "registry+https://github.com/rust-lang/crates.io-index"
2505checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
2506dependencies = [
2507 "itoa",
2508 "memchr",
2509 "ryu",
2510 "serde",
2511 "serde_core",
2512]
2513
2514[[package]]
2515name = "serde_path_to_error"
2516version = "0.1.20"
2517source = "registry+https://github.com/rust-lang/crates.io-index"
2518checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
2519dependencies = [
2520 "itoa",
2521 "serde",
2522 "serde_core",
2523]
2524
2525[[package]]
2526name = "serde_urlencoded"
2527version = "0.7.1"
2528source = "registry+https://github.com/rust-lang/crates.io-index"
2529checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2530dependencies = [
2531 "form_urlencoded",
2532 "itoa",
2533 "ryu",
2534 "serde",
2535]
2536
2537[[package]]
2538name = "serdect"
2539version = "0.2.0"
2540source = "registry+https://github.com/rust-lang/crates.io-index"
2541checksum = "a84f14a19e9a014bb9f4512488d9829a68e04ecabffb0f9904cd1ace94598177"
2542dependencies = [
2543 "base16ct",
2544 "serde",
2545]
2546
2547[[package]]
2548name = "sha1"
2549version = "0.10.6"
2550source = "registry+https://github.com/rust-lang/crates.io-index"
2551checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2552dependencies = [
2553 "cfg-if",
2554 "cpufeatures",
2555 "digest",
2556]
2557
2558[[package]]
2559name = "sha2"
2560version = "0.10.9"
2561source = "registry+https://github.com/rust-lang/crates.io-index"
2562checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2563dependencies = [
2564 "cfg-if",
2565 "cpufeatures",
2566 "digest",
2567]
2568
2569[[package]]
2570name = "sharded-slab"
2571version = "0.1.7"
2572source = "registry+https://github.com/rust-lang/crates.io-index"
2573checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2574dependencies = [
2575 "lazy_static",
2576]
2577
2578[[package]]
2579name = "shlex"
2580version = "1.3.0"
2581source = "registry+https://github.com/rust-lang/crates.io-index"
2582checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2583
2584[[package]]
2585name = "signal-hook-registry"
2586version = "1.4.6"
2587source = "registry+https://github.com/rust-lang/crates.io-index"
2588checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
2589dependencies = [
2590 "libc",
2591]
2592
2593[[package]]
2594name = "signature"
2595version = "2.2.0"
2596source = "registry+https://github.com/rust-lang/crates.io-index"
2597checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2598dependencies = [
2599 "digest",
2600 "rand_core 0.6.4",
2601]
2602
2603[[package]]
2604name = "simdutf8"
2605version = "0.1.5"
2606source = "registry+https://github.com/rust-lang/crates.io-index"
2607checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2608
2609[[package]]
2610name = "slab"
2611version = "0.4.11"
2612source = "registry+https://github.com/rust-lang/crates.io-index"
2613checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2614
2615[[package]]
2616name = "smallvec"
2617version = "1.15.1"
2618source = "registry+https://github.com/rust-lang/crates.io-index"
2619checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2620dependencies = [
2621 "serde",
2622]
2623
2624[[package]]
2625name = "socket2"
2626version = "0.5.10"
2627source = "registry+https://github.com/rust-lang/crates.io-index"
2628checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
2629dependencies = [
2630 "libc",
2631 "windows-sys 0.52.0",
2632]
2633
2634[[package]]
2635name = "socket2"
2636version = "0.6.1"
2637source = "registry+https://github.com/rust-lang/crates.io-index"
2638checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
2639dependencies = [
2640 "libc",
2641 "windows-sys 0.60.2",
2642]
2643
2644[[package]]
2645name = "spin"
2646version = "0.9.8"
2647source = "registry+https://github.com/rust-lang/crates.io-index"
2648checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2649dependencies = [
2650 "lock_api",
2651]
2652
2653[[package]]
2654name = "spki"
2655version = "0.7.3"
2656source = "registry+https://github.com/rust-lang/crates.io-index"
2657checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2658dependencies = [
2659 "base64ct",
2660 "der",
2661]
2662
2663[[package]]
2664name = "sqlx"
2665version = "0.8.6"
2666source = "registry+https://github.com/rust-lang/crates.io-index"
2667checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
2668dependencies = [
2669 "sqlx-core",
2670 "sqlx-macros",
2671 "sqlx-mysql",
2672 "sqlx-postgres",
2673 "sqlx-sqlite",
2674]
2675
2676[[package]]
2677name = "sqlx-core"
2678version = "0.8.6"
2679source = "registry+https://github.com/rust-lang/crates.io-index"
2680checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
2681dependencies = [
2682 "base64",
2683 "bytes",
2684 "crc",
2685 "crossbeam-queue",
2686 "either",
2687 "event-listener",
2688 "futures-core",
2689 "futures-intrusive",
2690 "futures-io",
2691 "futures-util",
2692 "hashbrown 0.15.5",
2693 "hashlink",
2694 "indexmap",
2695 "log",
2696 "memchr",
2697 "once_cell",
2698 "percent-encoding",
2699 "serde",
2700 "serde_json",
2701 "sha2",
2702 "smallvec",
2703 "thiserror 2.0.17",
2704 "tokio",
2705 "tokio-stream",
2706 "tracing",
2707 "url",
2708]
2709
2710[[package]]
2711name = "sqlx-macros"
2712version = "0.8.6"
2713source = "registry+https://github.com/rust-lang/crates.io-index"
2714checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
2715dependencies = [
2716 "proc-macro2",
2717 "quote",
2718 "sqlx-core",
2719 "sqlx-macros-core",
2720 "syn 2.0.108",
2721]
2722
2723[[package]]
2724name = "sqlx-macros-core"
2725version = "0.8.6"
2726source = "registry+https://github.com/rust-lang/crates.io-index"
2727checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
2728dependencies = [
2729 "dotenvy",
2730 "either",
2731 "heck",
2732 "hex",
2733 "once_cell",
2734 "proc-macro2",
2735 "quote",
2736 "serde",
2737 "serde_json",
2738 "sha2",
2739 "sqlx-core",
2740 "sqlx-mysql",
2741 "sqlx-postgres",
2742 "sqlx-sqlite",
2743 "syn 2.0.108",
2744 "tokio",
2745 "url",
2746]
2747
2748[[package]]
2749name = "sqlx-mysql"
2750version = "0.8.6"
2751source = "registry+https://github.com/rust-lang/crates.io-index"
2752checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
2753dependencies = [
2754 "atoi",
2755 "base64",
2756 "bitflags",
2757 "byteorder",
2758 "bytes",
2759 "crc",
2760 "digest",
2761 "dotenvy",
2762 "either",
2763 "futures-channel",
2764 "futures-core",
2765 "futures-io",
2766 "futures-util",
2767 "generic-array",
2768 "hex",
2769 "hkdf",
2770 "hmac",
2771 "itoa",
2772 "log",
2773 "md-5",
2774 "memchr",
2775 "once_cell",
2776 "percent-encoding",
2777 "rand 0.8.5",
2778 "rsa",
2779 "serde",
2780 "sha1",
2781 "sha2",
2782 "smallvec",
2783 "sqlx-core",
2784 "stringprep",
2785 "thiserror 2.0.17",
2786 "tracing",
2787 "whoami",
2788]
2789
2790[[package]]
2791name = "sqlx-postgres"
2792version = "0.8.6"
2793source = "registry+https://github.com/rust-lang/crates.io-index"
2794checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
2795dependencies = [
2796 "atoi",
2797 "base64",
2798 "bitflags",
2799 "byteorder",
2800 "crc",
2801 "dotenvy",
2802 "etcetera",
2803 "futures-channel",
2804 "futures-core",
2805 "futures-util",
2806 "hex",
2807 "hkdf",
2808 "hmac",
2809 "home",
2810 "itoa",
2811 "log",
2812 "md-5",
2813 "memchr",
2814 "once_cell",
2815 "rand 0.8.5",
2816 "serde",
2817 "serde_json",
2818 "sha2",
2819 "smallvec",
2820 "sqlx-core",
2821 "stringprep",
2822 "thiserror 2.0.17",
2823 "tracing",
2824 "whoami",
2825]
2826
2827[[package]]
2828name = "sqlx-sqlite"
2829version = "0.8.6"
2830source = "registry+https://github.com/rust-lang/crates.io-index"
2831checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
2832dependencies = [
2833 "atoi",
2834 "flume",
2835 "futures-channel",
2836 "futures-core",
2837 "futures-executor",
2838 "futures-intrusive",
2839 "futures-util",
2840 "libsqlite3-sys",
2841 "log",
2842 "percent-encoding",
2843 "serde",
2844 "serde_urlencoded",
2845 "sqlx-core",
2846 "thiserror 2.0.17",
2847 "tracing",
2848 "url",
2849]
2850
2851[[package]]
2852name = "stable_deref_trait"
2853version = "1.2.1"
2854source = "registry+https://github.com/rust-lang/crates.io-index"
2855checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2856
2857[[package]]
2858name = "stringprep"
2859version = "0.1.5"
2860source = "registry+https://github.com/rust-lang/crates.io-index"
2861checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2862dependencies = [
2863 "unicode-bidi",
2864 "unicode-normalization",
2865 "unicode-properties",
2866]
2867
2868[[package]]
2869name = "subtle"
2870version = "2.6.1"
2871source = "registry+https://github.com/rust-lang/crates.io-index"
2872checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2873
2874[[package]]
2875name = "syn"
2876version = "1.0.109"
2877source = "registry+https://github.com/rust-lang/crates.io-index"
2878checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2879dependencies = [
2880 "proc-macro2",
2881 "quote",
2882 "unicode-ident",
2883]
2884
2885[[package]]
2886name = "syn"
2887version = "2.0.108"
2888source = "registry+https://github.com/rust-lang/crates.io-index"
2889checksum = "da58917d35242480a05c2897064da0a80589a2a0476c9a3f2fdc83b53502e917"
2890dependencies = [
2891 "proc-macro2",
2892 "quote",
2893 "unicode-ident",
2894]
2895
2896[[package]]
2897name = "sync_wrapper"
2898version = "1.0.2"
2899source = "registry+https://github.com/rust-lang/crates.io-index"
2900checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2901dependencies = [
2902 "futures-core",
2903]
2904
2905[[package]]
2906name = "synstructure"
2907version = "0.13.2"
2908source = "registry+https://github.com/rust-lang/crates.io-index"
2909checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2910dependencies = [
2911 "proc-macro2",
2912 "quote",
2913 "syn 2.0.108",
2914]
2915
2916[[package]]
2917name = "system-configuration"
2918version = "0.6.1"
2919source = "registry+https://github.com/rust-lang/crates.io-index"
2920checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2921dependencies = [
2922 "bitflags",
2923 "core-foundation 0.9.4",
2924 "system-configuration-sys",
2925]
2926
2927[[package]]
2928name = "system-configuration-sys"
2929version = "0.6.0"
2930source = "registry+https://github.com/rust-lang/crates.io-index"
2931checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2932dependencies = [
2933 "core-foundation-sys",
2934 "libc",
2935]
2936
2937[[package]]
2938name = "tagptr"
2939version = "0.2.0"
2940source = "registry+https://github.com/rust-lang/crates.io-index"
2941checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
2942
2943[[package]]
2944name = "tempfile"
2945version = "3.23.0"
2946source = "registry+https://github.com/rust-lang/crates.io-index"
2947checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
2948dependencies = [
2949 "fastrand",
2950 "getrandom 0.3.4",
2951 "once_cell",
2952 "rustix",
2953 "windows-sys 0.61.2",
2954]
2955
2956[[package]]
2957name = "thiserror"
2958version = "1.0.69"
2959source = "registry+https://github.com/rust-lang/crates.io-index"
2960checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2961dependencies = [
2962 "thiserror-impl 1.0.69",
2963]
2964
2965[[package]]
2966name = "thiserror"
2967version = "2.0.17"
2968source = "registry+https://github.com/rust-lang/crates.io-index"
2969checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
2970dependencies = [
2971 "thiserror-impl 2.0.17",
2972]
2973
2974[[package]]
2975name = "thiserror-impl"
2976version = "1.0.69"
2977source = "registry+https://github.com/rust-lang/crates.io-index"
2978checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2979dependencies = [
2980 "proc-macro2",
2981 "quote",
2982 "syn 2.0.108",
2983]
2984
2985[[package]]
2986name = "thiserror-impl"
2987version = "2.0.17"
2988source = "registry+https://github.com/rust-lang/crates.io-index"
2989checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
2990dependencies = [
2991 "proc-macro2",
2992 "quote",
2993 "syn 2.0.108",
2994]
2995
2996[[package]]
2997name = "thread_local"
2998version = "1.1.9"
2999source = "registry+https://github.com/rust-lang/crates.io-index"
3000checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3001dependencies = [
3002 "cfg-if",
3003]
3004
3005[[package]]
3006name = "tinystr"
3007version = "0.8.2"
3008source = "registry+https://github.com/rust-lang/crates.io-index"
3009checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3010dependencies = [
3011 "displaydoc",
3012 "zerovec",
3013]
3014
3015[[package]]
3016name = "tinyvec"
3017version = "1.10.0"
3018source = "registry+https://github.com/rust-lang/crates.io-index"
3019checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3020dependencies = [
3021 "tinyvec_macros",
3022]
3023
3024[[package]]
3025name = "tinyvec_macros"
3026version = "0.1.1"
3027source = "registry+https://github.com/rust-lang/crates.io-index"
3028checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3029
3030[[package]]
3031name = "tokio"
3032version = "1.48.0"
3033source = "registry+https://github.com/rust-lang/crates.io-index"
3034checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3035dependencies = [
3036 "bytes",
3037 "libc",
3038 "mio",
3039 "parking_lot",
3040 "pin-project-lite",
3041 "signal-hook-registry",
3042 "socket2 0.6.1",
3043 "tokio-macros",
3044 "windows-sys 0.61.2",
3045]
3046
3047[[package]]
3048name = "tokio-macros"
3049version = "2.6.0"
3050source = "registry+https://github.com/rust-lang/crates.io-index"
3051checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3052dependencies = [
3053 "proc-macro2",
3054 "quote",
3055 "syn 2.0.108",
3056]
3057
3058[[package]]
3059name = "tokio-native-tls"
3060version = "0.3.1"
3061source = "registry+https://github.com/rust-lang/crates.io-index"
3062checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3063dependencies = [
3064 "native-tls",
3065 "tokio",
3066]
3067
3068[[package]]
3069name = "tokio-rustls"
3070version = "0.26.4"
3071source = "registry+https://github.com/rust-lang/crates.io-index"
3072checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3073dependencies = [
3074 "rustls",
3075 "tokio",
3076]
3077
3078[[package]]
3079name = "tokio-stream"
3080version = "0.1.17"
3081source = "registry+https://github.com/rust-lang/crates.io-index"
3082checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
3083dependencies = [
3084 "futures-core",
3085 "pin-project-lite",
3086 "tokio",
3087]
3088
3089[[package]]
3090name = "tokio-util"
3091version = "0.7.17"
3092source = "registry+https://github.com/rust-lang/crates.io-index"
3093checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
3094dependencies = [
3095 "bytes",
3096 "futures-core",
3097 "futures-sink",
3098 "futures-util",
3099 "pin-project-lite",
3100 "tokio",
3101]
3102
3103[[package]]
3104name = "tokio-websockets"
3105version = "0.11.4"
3106source = "registry+https://github.com/rust-lang/crates.io-index"
3107checksum = "9fcaf159b4e7a376b05b5bfd77bfd38f3324f5fce751b4213bfc7eaa47affb4e"
3108dependencies = [
3109 "base64",
3110 "bytes",
3111 "futures-core",
3112 "futures-sink",
3113 "http",
3114 "httparse",
3115 "rand 0.9.2",
3116 "ring",
3117 "rustls-native-certs",
3118 "rustls-pki-types",
3119 "simdutf8",
3120 "tokio",
3121 "tokio-rustls",
3122 "tokio-util",
3123]
3124
3125[[package]]
3126name = "tower"
3127version = "0.5.2"
3128source = "registry+https://github.com/rust-lang/crates.io-index"
3129checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3130dependencies = [
3131 "futures-core",
3132 "futures-util",
3133 "pin-project-lite",
3134 "sync_wrapper",
3135 "tokio",
3136 "tower-layer",
3137 "tower-service",
3138 "tracing",
3139]
3140
3141[[package]]
3142name = "tower-http"
3143version = "0.6.6"
3144source = "registry+https://github.com/rust-lang/crates.io-index"
3145checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3146dependencies = [
3147 "bitflags",
3148 "bytes",
3149 "futures-core",
3150 "futures-util",
3151 "http",
3152 "http-body",
3153 "http-body-util",
3154 "http-range-header",
3155 "httpdate",
3156 "iri-string",
3157 "mime",
3158 "mime_guess",
3159 "percent-encoding",
3160 "pin-project-lite",
3161 "tokio",
3162 "tokio-util",
3163 "tower",
3164 "tower-layer",
3165 "tower-service",
3166 "tracing",
3167]
3168
3169[[package]]
3170name = "tower-layer"
3171version = "0.3.3"
3172source = "registry+https://github.com/rust-lang/crates.io-index"
3173checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3174
3175[[package]]
3176name = "tower-service"
3177version = "0.3.3"
3178source = "registry+https://github.com/rust-lang/crates.io-index"
3179checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3180
3181[[package]]
3182name = "tracing"
3183version = "0.1.41"
3184source = "registry+https://github.com/rust-lang/crates.io-index"
3185checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3186dependencies = [
3187 "log",
3188 "pin-project-lite",
3189 "tracing-attributes",
3190 "tracing-core",
3191]
3192
3193[[package]]
3194name = "tracing-attributes"
3195version = "0.1.30"
3196source = "registry+https://github.com/rust-lang/crates.io-index"
3197checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3198dependencies = [
3199 "proc-macro2",
3200 "quote",
3201 "syn 2.0.108",
3202]
3203
3204[[package]]
3205name = "tracing-core"
3206version = "0.1.34"
3207source = "registry+https://github.com/rust-lang/crates.io-index"
3208checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3209dependencies = [
3210 "once_cell",
3211 "valuable",
3212]
3213
3214[[package]]
3215name = "tracing-log"
3216version = "0.2.0"
3217source = "registry+https://github.com/rust-lang/crates.io-index"
3218checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
3219dependencies = [
3220 "log",
3221 "once_cell",
3222 "tracing-core",
3223]
3224
3225[[package]]
3226name = "tracing-subscriber"
3227version = "0.3.20"
3228source = "registry+https://github.com/rust-lang/crates.io-index"
3229checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
3230dependencies = [
3231 "matchers",
3232 "nu-ansi-term",
3233 "once_cell",
3234 "regex-automata",
3235 "sharded-slab",
3236 "smallvec",
3237 "thread_local",
3238 "tracing",
3239 "tracing-core",
3240 "tracing-log",
3241]
3242
3243[[package]]
3244name = "try-lock"
3245version = "0.2.5"
3246source = "registry+https://github.com/rust-lang/crates.io-index"
3247checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3248
3249[[package]]
3250name = "typenum"
3251version = "1.19.0"
3252source = "registry+https://github.com/rust-lang/crates.io-index"
3253checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3254
3255[[package]]
3256name = "ulid"
3257version = "1.2.1"
3258source = "registry+https://github.com/rust-lang/crates.io-index"
3259checksum = "470dbf6591da1b39d43c14523b2b469c86879a53e8b758c8e090a470fe7b1fbe"
3260dependencies = [
3261 "rand 0.9.2",
3262 "web-time",
3263]
3264
3265[[package]]
3266name = "unicase"
3267version = "2.8.1"
3268source = "registry+https://github.com/rust-lang/crates.io-index"
3269checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3270
3271[[package]]
3272name = "unicode-bidi"
3273version = "0.3.18"
3274source = "registry+https://github.com/rust-lang/crates.io-index"
3275checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
3276
3277[[package]]
3278name = "unicode-ident"
3279version = "1.0.22"
3280source = "registry+https://github.com/rust-lang/crates.io-index"
3281checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
3282
3283[[package]]
3284name = "unicode-normalization"
3285version = "0.1.25"
3286source = "registry+https://github.com/rust-lang/crates.io-index"
3287checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
3288dependencies = [
3289 "tinyvec",
3290]
3291
3292[[package]]
3293name = "unicode-properties"
3294version = "0.1.4"
3295source = "registry+https://github.com/rust-lang/crates.io-index"
3296checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
3297
3298[[package]]
3299name = "unsigned-varint"
3300version = "0.8.0"
3301source = "registry+https://github.com/rust-lang/crates.io-index"
3302checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
3303
3304[[package]]
3305name = "untrusted"
3306version = "0.9.0"
3307source = "registry+https://github.com/rust-lang/crates.io-index"
3308checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3309
3310[[package]]
3311name = "unty"
3312version = "0.0.4"
3313source = "registry+https://github.com/rust-lang/crates.io-index"
3314checksum = "6d49784317cd0d1ee7ec5c716dd598ec5b4483ea832a2dced265471cc0f690ae"
3315
3316[[package]]
3317name = "url"
3318version = "2.5.7"
3319source = "registry+https://github.com/rust-lang/crates.io-index"
3320checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3321dependencies = [
3322 "form_urlencoded",
3323 "idna",
3324 "percent-encoding",
3325 "serde",
3326]
3327
3328[[package]]
3329name = "urlencoding"
3330version = "2.1.3"
3331source = "registry+https://github.com/rust-lang/crates.io-index"
3332checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3333
3334[[package]]
3335name = "utf8_iter"
3336version = "1.0.4"
3337source = "registry+https://github.com/rust-lang/crates.io-index"
3338checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3339
3340[[package]]
3341name = "uuid"
3342version = "1.18.1"
3343source = "registry+https://github.com/rust-lang/crates.io-index"
3344checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
3345dependencies = [
3346 "getrandom 0.3.4",
3347 "js-sys",
3348 "wasm-bindgen",
3349]
3350
3351[[package]]
3352name = "valuable"
3353version = "0.1.1"
3354source = "registry+https://github.com/rust-lang/crates.io-index"
3355checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3356
3357[[package]]
3358name = "vcpkg"
3359version = "0.2.15"
3360source = "registry+https://github.com/rust-lang/crates.io-index"
3361checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3362
3363[[package]]
3364name = "version_check"
3365version = "0.9.5"
3366source = "registry+https://github.com/rust-lang/crates.io-index"
3367checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3368
3369[[package]]
3370name = "virtue"
3371version = "0.0.18"
3372source = "registry+https://github.com/rust-lang/crates.io-index"
3373checksum = "051eb1abcf10076295e815102942cc58f9d5e3b4560e46e53c21e8ff6f3af7b1"
3374
3375[[package]]
3376name = "want"
3377version = "0.3.1"
3378source = "registry+https://github.com/rust-lang/crates.io-index"
3379checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3380dependencies = [
3381 "try-lock",
3382]
3383
3384[[package]]
3385name = "wasi"
3386version = "0.11.1+wasi-snapshot-preview1"
3387source = "registry+https://github.com/rust-lang/crates.io-index"
3388checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3389
3390[[package]]
3391name = "wasip2"
3392version = "1.0.1+wasi-0.2.4"
3393source = "registry+https://github.com/rust-lang/crates.io-index"
3394checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3395dependencies = [
3396 "wit-bindgen",
3397]
3398
3399[[package]]
3400name = "wasite"
3401version = "0.1.0"
3402source = "registry+https://github.com/rust-lang/crates.io-index"
3403checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3404
3405[[package]]
3406name = "wasm-bindgen"
3407version = "0.2.105"
3408source = "registry+https://github.com/rust-lang/crates.io-index"
3409checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
3410dependencies = [
3411 "cfg-if",
3412 "once_cell",
3413 "rustversion",
3414 "wasm-bindgen-macro",
3415 "wasm-bindgen-shared",
3416]
3417
3418[[package]]
3419name = "wasm-bindgen-futures"
3420version = "0.4.55"
3421source = "registry+https://github.com/rust-lang/crates.io-index"
3422checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
3423dependencies = [
3424 "cfg-if",
3425 "js-sys",
3426 "once_cell",
3427 "wasm-bindgen",
3428 "web-sys",
3429]
3430
3431[[package]]
3432name = "wasm-bindgen-macro"
3433version = "0.2.105"
3434source = "registry+https://github.com/rust-lang/crates.io-index"
3435checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
3436dependencies = [
3437 "quote",
3438 "wasm-bindgen-macro-support",
3439]
3440
3441[[package]]
3442name = "wasm-bindgen-macro-support"
3443version = "0.2.105"
3444source = "registry+https://github.com/rust-lang/crates.io-index"
3445checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
3446dependencies = [
3447 "bumpalo",
3448 "proc-macro2",
3449 "quote",
3450 "syn 2.0.108",
3451 "wasm-bindgen-shared",
3452]
3453
3454[[package]]
3455name = "wasm-bindgen-shared"
3456version = "0.2.105"
3457source = "registry+https://github.com/rust-lang/crates.io-index"
3458checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
3459dependencies = [
3460 "unicode-ident",
3461]
3462
3463[[package]]
3464name = "web-sys"
3465version = "0.3.82"
3466source = "registry+https://github.com/rust-lang/crates.io-index"
3467checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
3468dependencies = [
3469 "js-sys",
3470 "wasm-bindgen",
3471]
3472
3473[[package]]
3474name = "web-time"
3475version = "1.1.0"
3476source = "registry+https://github.com/rust-lang/crates.io-index"
3477checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3478dependencies = [
3479 "js-sys",
3480 "wasm-bindgen",
3481]
3482
3483[[package]]
3484name = "webpki-roots"
3485version = "1.0.4"
3486source = "registry+https://github.com/rust-lang/crates.io-index"
3487checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
3488dependencies = [
3489 "rustls-pki-types",
3490]
3491
3492[[package]]
3493name = "whoami"
3494version = "1.6.1"
3495source = "registry+https://github.com/rust-lang/crates.io-index"
3496checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
3497dependencies = [
3498 "libredox",
3499 "wasite",
3500]
3501
3502[[package]]
3503name = "widestring"
3504version = "1.2.1"
3505source = "registry+https://github.com/rust-lang/crates.io-index"
3506checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
3507
3508[[package]]
3509name = "windows-link"
3510version = "0.1.3"
3511source = "registry+https://github.com/rust-lang/crates.io-index"
3512checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3513
3514[[package]]
3515name = "windows-link"
3516version = "0.2.1"
3517source = "registry+https://github.com/rust-lang/crates.io-index"
3518checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3519
3520[[package]]
3521name = "windows-registry"
3522version = "0.5.3"
3523source = "registry+https://github.com/rust-lang/crates.io-index"
3524checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
3525dependencies = [
3526 "windows-link 0.1.3",
3527 "windows-result",
3528 "windows-strings",
3529]
3530
3531[[package]]
3532name = "windows-result"
3533version = "0.3.4"
3534source = "registry+https://github.com/rust-lang/crates.io-index"
3535checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3536dependencies = [
3537 "windows-link 0.1.3",
3538]
3539
3540[[package]]
3541name = "windows-strings"
3542version = "0.4.2"
3543source = "registry+https://github.com/rust-lang/crates.io-index"
3544checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3545dependencies = [
3546 "windows-link 0.1.3",
3547]
3548
3549[[package]]
3550name = "windows-sys"
3551version = "0.48.0"
3552source = "registry+https://github.com/rust-lang/crates.io-index"
3553checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3554dependencies = [
3555 "windows-targets 0.48.5",
3556]
3557
3558[[package]]
3559name = "windows-sys"
3560version = "0.52.0"
3561source = "registry+https://github.com/rust-lang/crates.io-index"
3562checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3563dependencies = [
3564 "windows-targets 0.52.6",
3565]
3566
3567[[package]]
3568name = "windows-sys"
3569version = "0.60.2"
3570source = "registry+https://github.com/rust-lang/crates.io-index"
3571checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3572dependencies = [
3573 "windows-targets 0.53.5",
3574]
3575
3576[[package]]
3577name = "windows-sys"
3578version = "0.61.2"
3579source = "registry+https://github.com/rust-lang/crates.io-index"
3580checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3581dependencies = [
3582 "windows-link 0.2.1",
3583]
3584
3585[[package]]
3586name = "windows-targets"
3587version = "0.48.5"
3588source = "registry+https://github.com/rust-lang/crates.io-index"
3589checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3590dependencies = [
3591 "windows_aarch64_gnullvm 0.48.5",
3592 "windows_aarch64_msvc 0.48.5",
3593 "windows_i686_gnu 0.48.5",
3594 "windows_i686_msvc 0.48.5",
3595 "windows_x86_64_gnu 0.48.5",
3596 "windows_x86_64_gnullvm 0.48.5",
3597 "windows_x86_64_msvc 0.48.5",
3598]
3599
3600[[package]]
3601name = "windows-targets"
3602version = "0.52.6"
3603source = "registry+https://github.com/rust-lang/crates.io-index"
3604checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3605dependencies = [
3606 "windows_aarch64_gnullvm 0.52.6",
3607 "windows_aarch64_msvc 0.52.6",
3608 "windows_i686_gnu 0.52.6",
3609 "windows_i686_gnullvm 0.52.6",
3610 "windows_i686_msvc 0.52.6",
3611 "windows_x86_64_gnu 0.52.6",
3612 "windows_x86_64_gnullvm 0.52.6",
3613 "windows_x86_64_msvc 0.52.6",
3614]
3615
3616[[package]]
3617name = "windows-targets"
3618version = "0.53.5"
3619source = "registry+https://github.com/rust-lang/crates.io-index"
3620checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
3621dependencies = [
3622 "windows-link 0.2.1",
3623 "windows_aarch64_gnullvm 0.53.1",
3624 "windows_aarch64_msvc 0.53.1",
3625 "windows_i686_gnu 0.53.1",
3626 "windows_i686_gnullvm 0.53.1",
3627 "windows_i686_msvc 0.53.1",
3628 "windows_x86_64_gnu 0.53.1",
3629 "windows_x86_64_gnullvm 0.53.1",
3630 "windows_x86_64_msvc 0.53.1",
3631]
3632
3633[[package]]
3634name = "windows_aarch64_gnullvm"
3635version = "0.48.5"
3636source = "registry+https://github.com/rust-lang/crates.io-index"
3637checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3638
3639[[package]]
3640name = "windows_aarch64_gnullvm"
3641version = "0.52.6"
3642source = "registry+https://github.com/rust-lang/crates.io-index"
3643checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3644
3645[[package]]
3646name = "windows_aarch64_gnullvm"
3647version = "0.53.1"
3648source = "registry+https://github.com/rust-lang/crates.io-index"
3649checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
3650
3651[[package]]
3652name = "windows_aarch64_msvc"
3653version = "0.48.5"
3654source = "registry+https://github.com/rust-lang/crates.io-index"
3655checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3656
3657[[package]]
3658name = "windows_aarch64_msvc"
3659version = "0.52.6"
3660source = "registry+https://github.com/rust-lang/crates.io-index"
3661checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3662
3663[[package]]
3664name = "windows_aarch64_msvc"
3665version = "0.53.1"
3666source = "registry+https://github.com/rust-lang/crates.io-index"
3667checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
3668
3669[[package]]
3670name = "windows_i686_gnu"
3671version = "0.48.5"
3672source = "registry+https://github.com/rust-lang/crates.io-index"
3673checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3674
3675[[package]]
3676name = "windows_i686_gnu"
3677version = "0.52.6"
3678source = "registry+https://github.com/rust-lang/crates.io-index"
3679checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3680
3681[[package]]
3682name = "windows_i686_gnu"
3683version = "0.53.1"
3684source = "registry+https://github.com/rust-lang/crates.io-index"
3685checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
3686
3687[[package]]
3688name = "windows_i686_gnullvm"
3689version = "0.52.6"
3690source = "registry+https://github.com/rust-lang/crates.io-index"
3691checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3692
3693[[package]]
3694name = "windows_i686_gnullvm"
3695version = "0.53.1"
3696source = "registry+https://github.com/rust-lang/crates.io-index"
3697checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
3698
3699[[package]]
3700name = "windows_i686_msvc"
3701version = "0.48.5"
3702source = "registry+https://github.com/rust-lang/crates.io-index"
3703checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3704
3705[[package]]
3706name = "windows_i686_msvc"
3707version = "0.52.6"
3708source = "registry+https://github.com/rust-lang/crates.io-index"
3709checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3710
3711[[package]]
3712name = "windows_i686_msvc"
3713version = "0.53.1"
3714source = "registry+https://github.com/rust-lang/crates.io-index"
3715checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
3716
3717[[package]]
3718name = "windows_x86_64_gnu"
3719version = "0.48.5"
3720source = "registry+https://github.com/rust-lang/crates.io-index"
3721checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3722
3723[[package]]
3724name = "windows_x86_64_gnu"
3725version = "0.52.6"
3726source = "registry+https://github.com/rust-lang/crates.io-index"
3727checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3728
3729[[package]]
3730name = "windows_x86_64_gnu"
3731version = "0.53.1"
3732source = "registry+https://github.com/rust-lang/crates.io-index"
3733checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
3734
3735[[package]]
3736name = "windows_x86_64_gnullvm"
3737version = "0.48.5"
3738source = "registry+https://github.com/rust-lang/crates.io-index"
3739checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3740
3741[[package]]
3742name = "windows_x86_64_gnullvm"
3743version = "0.52.6"
3744source = "registry+https://github.com/rust-lang/crates.io-index"
3745checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3746
3747[[package]]
3748name = "windows_x86_64_gnullvm"
3749version = "0.53.1"
3750source = "registry+https://github.com/rust-lang/crates.io-index"
3751checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
3752
3753[[package]]
3754name = "windows_x86_64_msvc"
3755version = "0.48.5"
3756source = "registry+https://github.com/rust-lang/crates.io-index"
3757checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3758
3759[[package]]
3760name = "windows_x86_64_msvc"
3761version = "0.52.6"
3762source = "registry+https://github.com/rust-lang/crates.io-index"
3763checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3764
3765[[package]]
3766name = "windows_x86_64_msvc"
3767version = "0.53.1"
3768source = "registry+https://github.com/rust-lang/crates.io-index"
3769checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
3770
3771[[package]]
3772name = "winreg"
3773version = "0.50.0"
3774source = "registry+https://github.com/rust-lang/crates.io-index"
3775checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
3776dependencies = [
3777 "cfg-if",
3778 "windows-sys 0.48.0",
3779]
3780
3781[[package]]
3782name = "wit-bindgen"
3783version = "0.46.0"
3784source = "registry+https://github.com/rust-lang/crates.io-index"
3785checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
3786
3787[[package]]
3788name = "writeable"
3789version = "0.6.2"
3790source = "registry+https://github.com/rust-lang/crates.io-index"
3791checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
3792
3793[[package]]
3794name = "yoke"
3795version = "0.8.1"
3796source = "registry+https://github.com/rust-lang/crates.io-index"
3797checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
3798dependencies = [
3799 "stable_deref_trait",
3800 "yoke-derive",
3801 "zerofrom",
3802]
3803
3804[[package]]
3805name = "yoke-derive"
3806version = "0.8.1"
3807source = "registry+https://github.com/rust-lang/crates.io-index"
3808checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
3809dependencies = [
3810 "proc-macro2",
3811 "quote",
3812 "syn 2.0.108",
3813 "synstructure",
3814]
3815
3816[[package]]
3817name = "zerocopy"
3818version = "0.8.27"
3819source = "registry+https://github.com/rust-lang/crates.io-index"
3820checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
3821dependencies = [
3822 "zerocopy-derive",
3823]
3824
3825[[package]]
3826name = "zerocopy-derive"
3827version = "0.8.27"
3828source = "registry+https://github.com/rust-lang/crates.io-index"
3829checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
3830dependencies = [
3831 "proc-macro2",
3832 "quote",
3833 "syn 2.0.108",
3834]
3835
3836[[package]]
3837name = "zerofrom"
3838version = "0.1.6"
3839source = "registry+https://github.com/rust-lang/crates.io-index"
3840checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3841dependencies = [
3842 "zerofrom-derive",
3843]
3844
3845[[package]]
3846name = "zerofrom-derive"
3847version = "0.1.6"
3848source = "registry+https://github.com/rust-lang/crates.io-index"
3849checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3850dependencies = [
3851 "proc-macro2",
3852 "quote",
3853 "syn 2.0.108",
3854 "synstructure",
3855]
3856
3857[[package]]
3858name = "zeroize"
3859version = "1.8.2"
3860source = "registry+https://github.com/rust-lang/crates.io-index"
3861checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3862
3863[[package]]
3864name = "zerotrie"
3865version = "0.2.3"
3866source = "registry+https://github.com/rust-lang/crates.io-index"
3867checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
3868dependencies = [
3869 "displaydoc",
3870 "yoke",
3871 "zerofrom",
3872]
3873
3874[[package]]
3875name = "zerovec"
3876version = "0.11.5"
3877source = "registry+https://github.com/rust-lang/crates.io-index"
3878checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
3879dependencies = [
3880 "yoke",
3881 "zerofrom",
3882 "zerovec-derive",
3883]
3884
3885[[package]]
3886name = "zerovec-derive"
3887version = "0.11.2"
3888source = "registry+https://github.com/rust-lang/crates.io-index"
3889checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
3890dependencies = [
3891 "proc-macro2",
3892 "quote",
3893 "syn 2.0.108",
3894]
3895
3896[[package]]
3897name = "zstd"
3898version = "0.13.3"
3899source = "registry+https://github.com/rust-lang/crates.io-index"
3900checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3901dependencies = [
3902 "zstd-safe",
3903]
3904
3905[[package]]
3906name = "zstd-safe"
3907version = "7.2.4"
3908source = "registry+https://github.com/rust-lang/crates.io-index"
3909checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3910dependencies = [
3911 "zstd-sys",
3912]
3913
3914[[package]]
3915name = "zstd-sys"
3916version = "2.0.16+zstd.1.5.7"
3917source = "registry+https://github.com/rust-lang/crates.io-index"
3918checksum = "91e19ebc2adc8f83e43039e79776e3fda8ca919132d68a1fed6a5faca2683748"
3919dependencies = [
3920 "cc",
3921 "pkg-config",
3922]