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