Monorepo for wisp.place. A static site hosting service built on top of the AT Protocol.
wisp.place
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "abnf"
7version = "0.13.0"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "087113bd50d9adce24850eed5d0476c7d199d532fce8fab5173650331e09033a"
10dependencies = [
11 "abnf-core",
12 "nom",
13]
14
15[[package]]
16name = "abnf-core"
17version = "0.5.0"
18source = "registry+https://github.com/rust-lang/crates.io-index"
19checksum = "c44e09c43ae1c368fb91a03a566472d0087c26cf7e1b9e8e289c14ede681dd7d"
20dependencies = [
21 "nom",
22]
23
24[[package]]
25name = "addr2line"
26version = "0.25.1"
27source = "registry+https://github.com/rust-lang/crates.io-index"
28checksum = "1b5d307320b3181d6d7954e663bd7c774a838b8220fe0593c86d9fb09f498b4b"
29dependencies = [
30 "gimli",
31]
32
33[[package]]
34name = "adler2"
35version = "2.0.1"
36source = "registry+https://github.com/rust-lang/crates.io-index"
37checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
38
39[[package]]
40name = "adler32"
41version = "1.2.0"
42source = "registry+https://github.com/rust-lang/crates.io-index"
43checksum = "aae1277d39aeec15cb388266ecc24b11c80469deae6067e17a1a7aa9e5c1f234"
44
45[[package]]
46name = "aho-corasick"
47version = "1.1.4"
48source = "registry+https://github.com/rust-lang/crates.io-index"
49checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
50dependencies = [
51 "memchr",
52]
53
54[[package]]
55name = "aliasable"
56version = "0.1.3"
57source = "registry+https://github.com/rust-lang/crates.io-index"
58checksum = "250f629c0161ad8107cf89319e990051fae62832fd343083bea452d93e2205fd"
59
60[[package]]
61name = "alloc-no-stdlib"
62version = "2.0.4"
63source = "registry+https://github.com/rust-lang/crates.io-index"
64checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
65
66[[package]]
67name = "alloc-stdlib"
68version = "0.2.2"
69source = "registry+https://github.com/rust-lang/crates.io-index"
70checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
71dependencies = [
72 "alloc-no-stdlib",
73]
74
75[[package]]
76name = "android_system_properties"
77version = "0.1.5"
78source = "registry+https://github.com/rust-lang/crates.io-index"
79checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
80dependencies = [
81 "libc",
82]
83
84[[package]]
85name = "anstream"
86version = "0.6.21"
87source = "registry+https://github.com/rust-lang/crates.io-index"
88checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
89dependencies = [
90 "anstyle",
91 "anstyle-parse",
92 "anstyle-query",
93 "anstyle-wincon",
94 "colorchoice",
95 "is_terminal_polyfill",
96 "utf8parse",
97]
98
99[[package]]
100name = "anstyle"
101version = "1.0.13"
102source = "registry+https://github.com/rust-lang/crates.io-index"
103checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
104
105[[package]]
106name = "anstyle-parse"
107version = "0.2.7"
108source = "registry+https://github.com/rust-lang/crates.io-index"
109checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
110dependencies = [
111 "utf8parse",
112]
113
114[[package]]
115name = "anstyle-query"
116version = "1.1.4"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "9e231f6134f61b71076a3eab506c379d4f36122f2af15a9ff04415ea4c3339e2"
119dependencies = [
120 "windows-sys 0.60.2",
121]
122
123[[package]]
124name = "anstyle-wincon"
125version = "3.0.10"
126source = "registry+https://github.com/rust-lang/crates.io-index"
127checksum = "3e0633414522a32ffaac8ac6cc8f748e090c5717661fddeea04219e2344f5f2a"
128dependencies = [
129 "anstyle",
130 "once_cell_polyfill",
131 "windows-sys 0.60.2",
132]
133
134[[package]]
135name = "ascii"
136version = "1.1.0"
137source = "registry+https://github.com/rust-lang/crates.io-index"
138checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
139
140[[package]]
141name = "async-compression"
142version = "0.4.33"
143source = "registry+https://github.com/rust-lang/crates.io-index"
144checksum = "93c1f86859c1af3d514fa19e8323147ff10ea98684e6c7b307912509f50e67b2"
145dependencies = [
146 "compression-codecs",
147 "compression-core",
148 "futures-core",
149 "pin-project-lite",
150 "tokio",
151]
152
153[[package]]
154name = "async-trait"
155version = "0.1.89"
156source = "registry+https://github.com/rust-lang/crates.io-index"
157checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
158dependencies = [
159 "proc-macro2",
160 "quote",
161 "syn 2.0.110",
162]
163
164[[package]]
165name = "atomic-waker"
166version = "1.1.2"
167source = "registry+https://github.com/rust-lang/crates.io-index"
168checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
169
170[[package]]
171name = "autocfg"
172version = "1.5.0"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
175
176[[package]]
177name = "axum"
178version = "0.7.9"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "edca88bc138befd0323b20752846e6587272d3b03b0343c8ea28a6f819e6e71f"
181dependencies = [
182 "async-trait",
183 "axum-core",
184 "bytes",
185 "futures-util",
186 "http",
187 "http-body",
188 "http-body-util",
189 "hyper",
190 "hyper-util",
191 "itoa",
192 "matchit",
193 "memchr",
194 "mime",
195 "percent-encoding",
196 "pin-project-lite",
197 "rustversion",
198 "serde",
199 "serde_json",
200 "serde_path_to_error",
201 "serde_urlencoded",
202 "sync_wrapper",
203 "tokio",
204 "tower 0.5.2",
205 "tower-layer",
206 "tower-service",
207 "tracing",
208]
209
210[[package]]
211name = "axum-core"
212version = "0.4.5"
213source = "registry+https://github.com/rust-lang/crates.io-index"
214checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199"
215dependencies = [
216 "async-trait",
217 "bytes",
218 "futures-util",
219 "http",
220 "http-body",
221 "http-body-util",
222 "mime",
223 "pin-project-lite",
224 "rustversion",
225 "sync_wrapper",
226 "tower-layer",
227 "tower-service",
228 "tracing",
229]
230
231[[package]]
232name = "backtrace"
233version = "0.3.76"
234source = "registry+https://github.com/rust-lang/crates.io-index"
235checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
236dependencies = [
237 "addr2line",
238 "cfg-if",
239 "libc",
240 "miniz_oxide",
241 "object",
242 "rustc-demangle",
243 "windows-link 0.2.1",
244]
245
246[[package]]
247name = "backtrace-ext"
248version = "0.2.1"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
251dependencies = [
252 "backtrace",
253]
254
255[[package]]
256name = "base-x"
257version = "0.2.11"
258source = "registry+https://github.com/rust-lang/crates.io-index"
259checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
260
261[[package]]
262name = "base16ct"
263version = "0.2.0"
264source = "registry+https://github.com/rust-lang/crates.io-index"
265checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
266
267[[package]]
268name = "base256emoji"
269version = "1.0.2"
270source = "registry+https://github.com/rust-lang/crates.io-index"
271checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c"
272dependencies = [
273 "const-str",
274 "match-lookup",
275]
276
277[[package]]
278name = "base64"
279version = "0.13.1"
280source = "registry+https://github.com/rust-lang/crates.io-index"
281checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
282
283[[package]]
284name = "base64"
285version = "0.22.1"
286source = "registry+https://github.com/rust-lang/crates.io-index"
287checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
288
289[[package]]
290name = "base64ct"
291version = "1.8.0"
292source = "registry+https://github.com/rust-lang/crates.io-index"
293checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
294
295[[package]]
296name = "bitflags"
297version = "2.10.0"
298source = "registry+https://github.com/rust-lang/crates.io-index"
299checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3"
300
301[[package]]
302name = "block-buffer"
303version = "0.10.4"
304source = "registry+https://github.com/rust-lang/crates.io-index"
305checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
306dependencies = [
307 "generic-array",
308]
309
310[[package]]
311name = "bon"
312version = "3.8.1"
313source = "registry+https://github.com/rust-lang/crates.io-index"
314checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1"
315dependencies = [
316 "bon-macros",
317 "rustversion",
318]
319
320[[package]]
321name = "bon-macros"
322version = "3.8.1"
323source = "registry+https://github.com/rust-lang/crates.io-index"
324checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645"
325dependencies = [
326 "darling",
327 "ident_case",
328 "prettyplease",
329 "proc-macro2",
330 "quote",
331 "rustversion",
332 "syn 2.0.110",
333]
334
335[[package]]
336name = "borsh"
337version = "1.5.7"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
340dependencies = [
341 "cfg_aliases",
342]
343
344[[package]]
345name = "brotli"
346version = "3.5.0"
347source = "registry+https://github.com/rust-lang/crates.io-index"
348checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
349dependencies = [
350 "alloc-no-stdlib",
351 "alloc-stdlib",
352 "brotli-decompressor",
353]
354
355[[package]]
356name = "brotli-decompressor"
357version = "2.5.1"
358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
360dependencies = [
361 "alloc-no-stdlib",
362 "alloc-stdlib",
363]
364
365[[package]]
366name = "btree-range-map"
367version = "0.7.2"
368source = "registry+https://github.com/rust-lang/crates.io-index"
369checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33"
370dependencies = [
371 "btree-slab",
372 "cc-traits",
373 "range-traits",
374 "serde",
375 "slab",
376]
377
378[[package]]
379name = "btree-slab"
380version = "0.6.1"
381source = "registry+https://github.com/rust-lang/crates.io-index"
382checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c"
383dependencies = [
384 "cc-traits",
385 "slab",
386 "smallvec",
387]
388
389[[package]]
390name = "buf_redux"
391version = "0.8.4"
392source = "registry+https://github.com/rust-lang/crates.io-index"
393checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f"
394dependencies = [
395 "memchr",
396 "safemem",
397]
398
399[[package]]
400name = "bumpalo"
401version = "3.19.0"
402source = "registry+https://github.com/rust-lang/crates.io-index"
403checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
404
405[[package]]
406name = "byteorder"
407version = "1.5.0"
408source = "registry+https://github.com/rust-lang/crates.io-index"
409checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
410
411[[package]]
412name = "bytes"
413version = "1.10.1"
414source = "registry+https://github.com/rust-lang/crates.io-index"
415checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
416dependencies = [
417 "serde",
418]
419
420[[package]]
421name = "cbor4ii"
422version = "0.2.14"
423source = "registry+https://github.com/rust-lang/crates.io-index"
424checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4"
425dependencies = [
426 "serde",
427]
428
429[[package]]
430name = "cc"
431version = "1.2.45"
432source = "registry+https://github.com/rust-lang/crates.io-index"
433checksum = "35900b6c8d709fb1d854671ae27aeaa9eec2f8b01b364e1619a40da3e6fe2afe"
434dependencies = [
435 "find-msvc-tools",
436 "shlex",
437]
438
439[[package]]
440name = "cc-traits"
441version = "2.0.0"
442source = "registry+https://github.com/rust-lang/crates.io-index"
443checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5"
444dependencies = [
445 "slab",
446]
447
448[[package]]
449name = "cesu8"
450version = "1.1.0"
451source = "registry+https://github.com/rust-lang/crates.io-index"
452checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
453
454[[package]]
455name = "cfg-if"
456version = "1.0.4"
457source = "registry+https://github.com/rust-lang/crates.io-index"
458checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
459
460[[package]]
461name = "cfg_aliases"
462version = "0.2.1"
463source = "registry+https://github.com/rust-lang/crates.io-index"
464checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
465
466[[package]]
467name = "chrono"
468version = "0.4.42"
469source = "registry+https://github.com/rust-lang/crates.io-index"
470checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
471dependencies = [
472 "iana-time-zone",
473 "js-sys",
474 "num-traits",
475 "serde",
476 "wasm-bindgen",
477 "windows-link 0.2.1",
478]
479
480[[package]]
481name = "chunked_transfer"
482version = "1.5.0"
483source = "registry+https://github.com/rust-lang/crates.io-index"
484checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
485
486[[package]]
487name = "ciborium"
488version = "0.2.2"
489source = "registry+https://github.com/rust-lang/crates.io-index"
490checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
491dependencies = [
492 "ciborium-io",
493 "ciborium-ll",
494 "serde",
495]
496
497[[package]]
498name = "ciborium-io"
499version = "0.2.2"
500source = "registry+https://github.com/rust-lang/crates.io-index"
501checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
502
503[[package]]
504name = "ciborium-ll"
505version = "0.2.2"
506source = "registry+https://github.com/rust-lang/crates.io-index"
507checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
508dependencies = [
509 "ciborium-io",
510 "half",
511]
512
513[[package]]
514name = "cid"
515version = "0.11.1"
516source = "registry+https://github.com/rust-lang/crates.io-index"
517checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a"
518dependencies = [
519 "core2",
520 "multibase",
521 "multihash",
522 "serde",
523 "serde_bytes",
524 "unsigned-varint",
525]
526
527[[package]]
528name = "clap"
529version = "4.5.51"
530source = "registry+https://github.com/rust-lang/crates.io-index"
531checksum = "4c26d721170e0295f191a69bd9a1f93efcdb0aff38684b61ab5750468972e5f5"
532dependencies = [
533 "clap_builder",
534 "clap_derive",
535]
536
537[[package]]
538name = "clap_builder"
539version = "4.5.51"
540source = "registry+https://github.com/rust-lang/crates.io-index"
541checksum = "75835f0c7bf681bfd05abe44e965760fea999a5286c6eb2d59883634fd02011a"
542dependencies = [
543 "anstream",
544 "anstyle",
545 "clap_lex",
546 "strsim",
547]
548
549[[package]]
550name = "clap_derive"
551version = "4.5.49"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
554dependencies = [
555 "heck 0.5.0",
556 "proc-macro2",
557 "quote",
558 "syn 2.0.110",
559]
560
561[[package]]
562name = "clap_lex"
563version = "0.7.6"
564source = "registry+https://github.com/rust-lang/crates.io-index"
565checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
566
567[[package]]
568name = "colorchoice"
569version = "1.0.4"
570source = "registry+https://github.com/rust-lang/crates.io-index"
571checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
572
573[[package]]
574name = "combine"
575version = "4.6.7"
576source = "registry+https://github.com/rust-lang/crates.io-index"
577checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
578dependencies = [
579 "bytes",
580 "memchr",
581]
582
583[[package]]
584name = "compression-codecs"
585version = "0.4.32"
586source = "registry+https://github.com/rust-lang/crates.io-index"
587checksum = "680dc087785c5230f8e8843e2e57ac7c1c90488b6a91b88caa265410568f441b"
588dependencies = [
589 "compression-core",
590 "flate2",
591 "memchr",
592]
593
594[[package]]
595name = "compression-core"
596version = "0.4.30"
597source = "registry+https://github.com/rust-lang/crates.io-index"
598checksum = "3a9b614a5787ef0c8802a55766480563cb3a93b435898c422ed2a359cf811582"
599
600[[package]]
601name = "const-oid"
602version = "0.9.6"
603source = "registry+https://github.com/rust-lang/crates.io-index"
604checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
605
606[[package]]
607name = "const-str"
608version = "0.4.3"
609source = "registry+https://github.com/rust-lang/crates.io-index"
610checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
611
612[[package]]
613name = "cordyceps"
614version = "0.3.4"
615source = "registry+https://github.com/rust-lang/crates.io-index"
616checksum = "688d7fbb8092b8de775ef2536f36c8c31f2bc4006ece2e8d8ad2d17d00ce0a2a"
617dependencies = [
618 "loom",
619 "tracing",
620]
621
622[[package]]
623name = "core-foundation"
624version = "0.9.4"
625source = "registry+https://github.com/rust-lang/crates.io-index"
626checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
627dependencies = [
628 "core-foundation-sys",
629 "libc",
630]
631
632[[package]]
633name = "core-foundation"
634version = "0.10.1"
635source = "registry+https://github.com/rust-lang/crates.io-index"
636checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
637dependencies = [
638 "core-foundation-sys",
639 "libc",
640]
641
642[[package]]
643name = "core-foundation-sys"
644version = "0.8.7"
645source = "registry+https://github.com/rust-lang/crates.io-index"
646checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
647
648[[package]]
649name = "core2"
650version = "0.4.0"
651source = "registry+https://github.com/rust-lang/crates.io-index"
652checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
653dependencies = [
654 "memchr",
655]
656
657[[package]]
658name = "cpufeatures"
659version = "0.2.17"
660source = "registry+https://github.com/rust-lang/crates.io-index"
661checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
662dependencies = [
663 "libc",
664]
665
666[[package]]
667name = "crc32fast"
668version = "1.5.0"
669source = "registry+https://github.com/rust-lang/crates.io-index"
670checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
671dependencies = [
672 "cfg-if",
673]
674
675[[package]]
676name = "crossbeam-channel"
677version = "0.5.15"
678source = "registry+https://github.com/rust-lang/crates.io-index"
679checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
680dependencies = [
681 "crossbeam-utils",
682]
683
684[[package]]
685name = "crossbeam-utils"
686version = "0.8.21"
687source = "registry+https://github.com/rust-lang/crates.io-index"
688checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
689
690[[package]]
691name = "crunchy"
692version = "0.2.4"
693source = "registry+https://github.com/rust-lang/crates.io-index"
694checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
695
696[[package]]
697name = "crypto-bigint"
698version = "0.5.5"
699source = "registry+https://github.com/rust-lang/crates.io-index"
700checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
701dependencies = [
702 "generic-array",
703 "rand_core 0.6.4",
704 "subtle",
705 "zeroize",
706]
707
708[[package]]
709name = "crypto-common"
710version = "0.1.6"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
713dependencies = [
714 "generic-array",
715 "typenum",
716]
717
718[[package]]
719name = "darling"
720version = "0.21.3"
721source = "registry+https://github.com/rust-lang/crates.io-index"
722checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
723dependencies = [
724 "darling_core",
725 "darling_macro",
726]
727
728[[package]]
729name = "darling_core"
730version = "0.21.3"
731source = "registry+https://github.com/rust-lang/crates.io-index"
732checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
733dependencies = [
734 "fnv",
735 "ident_case",
736 "proc-macro2",
737 "quote",
738 "strsim",
739 "syn 2.0.110",
740]
741
742[[package]]
743name = "darling_macro"
744version = "0.21.3"
745source = "registry+https://github.com/rust-lang/crates.io-index"
746checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
747dependencies = [
748 "darling_core",
749 "quote",
750 "syn 2.0.110",
751]
752
753[[package]]
754name = "dashmap"
755version = "6.1.0"
756source = "registry+https://github.com/rust-lang/crates.io-index"
757checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
758dependencies = [
759 "cfg-if",
760 "crossbeam-utils",
761 "hashbrown 0.14.5",
762 "lock_api",
763 "once_cell",
764 "parking_lot_core",
765]
766
767[[package]]
768name = "data-encoding"
769version = "2.9.0"
770source = "registry+https://github.com/rust-lang/crates.io-index"
771checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
772
773[[package]]
774name = "data-encoding-macro"
775version = "0.1.18"
776source = "registry+https://github.com/rust-lang/crates.io-index"
777checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d"
778dependencies = [
779 "data-encoding",
780 "data-encoding-macro-internal",
781]
782
783[[package]]
784name = "data-encoding-macro-internal"
785version = "0.1.16"
786source = "registry+https://github.com/rust-lang/crates.io-index"
787checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976"
788dependencies = [
789 "data-encoding",
790 "syn 2.0.110",
791]
792
793[[package]]
794name = "deflate"
795version = "1.0.0"
796source = "registry+https://github.com/rust-lang/crates.io-index"
797checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
798dependencies = [
799 "adler32",
800 "gzip-header",
801]
802
803[[package]]
804name = "der"
805version = "0.7.10"
806source = "registry+https://github.com/rust-lang/crates.io-index"
807checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
808dependencies = [
809 "const-oid",
810 "pem-rfc7468",
811 "zeroize",
812]
813
814[[package]]
815name = "deranged"
816version = "0.5.5"
817source = "registry+https://github.com/rust-lang/crates.io-index"
818checksum = "ececcb659e7ba858fb4f10388c250a7252eb0a27373f1a72b8748afdd248e587"
819dependencies = [
820 "powerfmt",
821 "serde_core",
822]
823
824[[package]]
825name = "derive_more"
826version = "1.0.0"
827source = "registry+https://github.com/rust-lang/crates.io-index"
828checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
829dependencies = [
830 "derive_more-impl",
831]
832
833[[package]]
834name = "derive_more-impl"
835version = "1.0.0"
836source = "registry+https://github.com/rust-lang/crates.io-index"
837checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
838dependencies = [
839 "proc-macro2",
840 "quote",
841 "syn 2.0.110",
842 "unicode-xid",
843]
844
845[[package]]
846name = "diatomic-waker"
847version = "0.2.3"
848source = "registry+https://github.com/rust-lang/crates.io-index"
849checksum = "ab03c107fafeb3ee9f5925686dbb7a73bc76e3932abb0d2b365cb64b169cf04c"
850
851[[package]]
852name = "digest"
853version = "0.10.7"
854source = "registry+https://github.com/rust-lang/crates.io-index"
855checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
856dependencies = [
857 "block-buffer",
858 "const-oid",
859 "crypto-common",
860 "subtle",
861]
862
863[[package]]
864name = "dirs"
865version = "6.0.0"
866source = "registry+https://github.com/rust-lang/crates.io-index"
867checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
868dependencies = [
869 "dirs-sys",
870]
871
872[[package]]
873name = "dirs-sys"
874version = "0.5.0"
875source = "registry+https://github.com/rust-lang/crates.io-index"
876checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
877dependencies = [
878 "libc",
879 "option-ext",
880 "redox_users",
881 "windows-sys 0.61.2",
882]
883
884[[package]]
885name = "displaydoc"
886version = "0.2.5"
887source = "registry+https://github.com/rust-lang/crates.io-index"
888checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
889dependencies = [
890 "proc-macro2",
891 "quote",
892 "syn 2.0.110",
893]
894
895[[package]]
896name = "dyn-clone"
897version = "1.0.20"
898source = "registry+https://github.com/rust-lang/crates.io-index"
899checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555"
900
901[[package]]
902name = "ecdsa"
903version = "0.16.9"
904source = "registry+https://github.com/rust-lang/crates.io-index"
905checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
906dependencies = [
907 "der",
908 "digest",
909 "elliptic-curve",
910 "rfc6979",
911 "signature",
912 "spki",
913]
914
915[[package]]
916name = "elliptic-curve"
917version = "0.13.8"
918source = "registry+https://github.com/rust-lang/crates.io-index"
919checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
920dependencies = [
921 "base16ct",
922 "crypto-bigint",
923 "digest",
924 "ff",
925 "generic-array",
926 "group",
927 "pem-rfc7468",
928 "pkcs8",
929 "rand_core 0.6.4",
930 "sec1",
931 "subtle",
932 "zeroize",
933]
934
935[[package]]
936name = "encoding_rs"
937version = "0.8.35"
938source = "registry+https://github.com/rust-lang/crates.io-index"
939checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
940dependencies = [
941 "cfg-if",
942]
943
944[[package]]
945name = "enum-as-inner"
946version = "0.6.1"
947source = "registry+https://github.com/rust-lang/crates.io-index"
948checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
949dependencies = [
950 "heck 0.5.0",
951 "proc-macro2",
952 "quote",
953 "syn 2.0.110",
954]
955
956[[package]]
957name = "equivalent"
958version = "1.0.2"
959source = "registry+https://github.com/rust-lang/crates.io-index"
960checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
961
962[[package]]
963name = "errno"
964version = "0.3.14"
965source = "registry+https://github.com/rust-lang/crates.io-index"
966checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
967dependencies = [
968 "libc",
969 "windows-sys 0.61.2",
970]
971
972[[package]]
973name = "fastrand"
974version = "2.3.0"
975source = "registry+https://github.com/rust-lang/crates.io-index"
976checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
977
978[[package]]
979name = "ff"
980version = "0.13.1"
981source = "registry+https://github.com/rust-lang/crates.io-index"
982checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
983dependencies = [
984 "rand_core 0.6.4",
985 "subtle",
986]
987
988[[package]]
989name = "filetime"
990version = "0.2.26"
991source = "registry+https://github.com/rust-lang/crates.io-index"
992checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
993dependencies = [
994 "cfg-if",
995 "libc",
996 "libredox",
997 "windows-sys 0.60.2",
998]
999
1000[[package]]
1001name = "find-msvc-tools"
1002version = "0.1.4"
1003source = "registry+https://github.com/rust-lang/crates.io-index"
1004checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
1005
1006[[package]]
1007name = "flate2"
1008version = "1.1.5"
1009source = "registry+https://github.com/rust-lang/crates.io-index"
1010checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
1011dependencies = [
1012 "crc32fast",
1013 "miniz_oxide",
1014]
1015
1016[[package]]
1017name = "fnv"
1018version = "1.0.7"
1019source = "registry+https://github.com/rust-lang/crates.io-index"
1020checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
1021
1022[[package]]
1023name = "form_urlencoded"
1024version = "1.2.2"
1025source = "registry+https://github.com/rust-lang/crates.io-index"
1026checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
1027dependencies = [
1028 "percent-encoding",
1029]
1030
1031[[package]]
1032name = "futf"
1033version = "0.1.5"
1034source = "registry+https://github.com/rust-lang/crates.io-index"
1035checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
1036dependencies = [
1037 "mac",
1038 "new_debug_unreachable",
1039]
1040
1041[[package]]
1042name = "futures"
1043version = "0.3.31"
1044source = "registry+https://github.com/rust-lang/crates.io-index"
1045checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
1046dependencies = [
1047 "futures-channel",
1048 "futures-core",
1049 "futures-executor",
1050 "futures-io",
1051 "futures-sink",
1052 "futures-task",
1053 "futures-util",
1054]
1055
1056[[package]]
1057name = "futures-buffered"
1058version = "0.2.12"
1059source = "registry+https://github.com/rust-lang/crates.io-index"
1060checksum = "a8e0e1f38ec07ba4abbde21eed377082f17ccb988be9d988a5adbf4bafc118fd"
1061dependencies = [
1062 "cordyceps",
1063 "diatomic-waker",
1064 "futures-core",
1065 "pin-project-lite",
1066 "spin 0.10.0",
1067]
1068
1069[[package]]
1070name = "futures-channel"
1071version = "0.3.31"
1072source = "registry+https://github.com/rust-lang/crates.io-index"
1073checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
1074dependencies = [
1075 "futures-core",
1076 "futures-sink",
1077]
1078
1079[[package]]
1080name = "futures-core"
1081version = "0.3.31"
1082source = "registry+https://github.com/rust-lang/crates.io-index"
1083checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
1084
1085[[package]]
1086name = "futures-executor"
1087version = "0.3.31"
1088source = "registry+https://github.com/rust-lang/crates.io-index"
1089checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
1090dependencies = [
1091 "futures-core",
1092 "futures-task",
1093 "futures-util",
1094]
1095
1096[[package]]
1097name = "futures-io"
1098version = "0.3.31"
1099source = "registry+https://github.com/rust-lang/crates.io-index"
1100checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
1101
1102[[package]]
1103name = "futures-lite"
1104version = "2.6.1"
1105source = "registry+https://github.com/rust-lang/crates.io-index"
1106checksum = "f78e10609fe0e0b3f4157ffab1876319b5b0db102a2c60dc4626306dc46b44ad"
1107dependencies = [
1108 "fastrand",
1109 "futures-core",
1110 "futures-io",
1111 "parking",
1112 "pin-project-lite",
1113]
1114
1115[[package]]
1116name = "futures-macro"
1117version = "0.3.31"
1118source = "registry+https://github.com/rust-lang/crates.io-index"
1119checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1120dependencies = [
1121 "proc-macro2",
1122 "quote",
1123 "syn 2.0.110",
1124]
1125
1126[[package]]
1127name = "futures-sink"
1128version = "0.3.31"
1129source = "registry+https://github.com/rust-lang/crates.io-index"
1130checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1131
1132[[package]]
1133name = "futures-task"
1134version = "0.3.31"
1135source = "registry+https://github.com/rust-lang/crates.io-index"
1136checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1137
1138[[package]]
1139name = "futures-util"
1140version = "0.3.31"
1141source = "registry+https://github.com/rust-lang/crates.io-index"
1142checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1143dependencies = [
1144 "futures-channel",
1145 "futures-core",
1146 "futures-io",
1147 "futures-macro",
1148 "futures-sink",
1149 "futures-task",
1150 "memchr",
1151 "pin-project-lite",
1152 "pin-utils",
1153 "slab",
1154]
1155
1156[[package]]
1157name = "generator"
1158version = "0.8.7"
1159source = "registry+https://github.com/rust-lang/crates.io-index"
1160checksum = "605183a538e3e2a9c1038635cc5c2d194e2ee8fd0d1b66b8349fad7dbacce5a2"
1161dependencies = [
1162 "cc",
1163 "cfg-if",
1164 "libc",
1165 "log",
1166 "rustversion",
1167 "windows",
1168]
1169
1170[[package]]
1171name = "generic-array"
1172version = "0.14.9"
1173source = "registry+https://github.com/rust-lang/crates.io-index"
1174checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1175dependencies = [
1176 "typenum",
1177 "version_check",
1178 "zeroize",
1179]
1180
1181[[package]]
1182name = "getrandom"
1183version = "0.2.16"
1184source = "registry+https://github.com/rust-lang/crates.io-index"
1185checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1186dependencies = [
1187 "cfg-if",
1188 "js-sys",
1189 "libc",
1190 "wasi",
1191 "wasm-bindgen",
1192]
1193
1194[[package]]
1195name = "getrandom"
1196version = "0.3.4"
1197source = "registry+https://github.com/rust-lang/crates.io-index"
1198checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1199dependencies = [
1200 "cfg-if",
1201 "js-sys",
1202 "libc",
1203 "r-efi",
1204 "wasip2",
1205 "wasm-bindgen",
1206]
1207
1208[[package]]
1209name = "gimli"
1210version = "0.32.3"
1211source = "registry+https://github.com/rust-lang/crates.io-index"
1212checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1213
1214[[package]]
1215name = "group"
1216version = "0.13.0"
1217source = "registry+https://github.com/rust-lang/crates.io-index"
1218checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1219dependencies = [
1220 "ff",
1221 "rand_core 0.6.4",
1222 "subtle",
1223]
1224
1225[[package]]
1226name = "gzip-header"
1227version = "1.0.0"
1228source = "registry+https://github.com/rust-lang/crates.io-index"
1229checksum = "95cc527b92e6029a62960ad99aa8a6660faa4555fe5f731aab13aa6a921795a2"
1230dependencies = [
1231 "crc32fast",
1232]
1233
1234[[package]]
1235name = "h2"
1236version = "0.4.12"
1237source = "registry+https://github.com/rust-lang/crates.io-index"
1238checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1239dependencies = [
1240 "atomic-waker",
1241 "bytes",
1242 "fnv",
1243 "futures-core",
1244 "futures-sink",
1245 "http",
1246 "indexmap 2.12.0",
1247 "slab",
1248 "tokio",
1249 "tokio-util",
1250 "tracing",
1251]
1252
1253[[package]]
1254name = "half"
1255version = "2.7.1"
1256source = "registry+https://github.com/rust-lang/crates.io-index"
1257checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1258dependencies = [
1259 "cfg-if",
1260 "crunchy",
1261 "zerocopy",
1262]
1263
1264[[package]]
1265name = "hashbrown"
1266version = "0.12.3"
1267source = "registry+https://github.com/rust-lang/crates.io-index"
1268checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
1269
1270[[package]]
1271name = "hashbrown"
1272version = "0.14.5"
1273source = "registry+https://github.com/rust-lang/crates.io-index"
1274checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1275
1276[[package]]
1277name = "hashbrown"
1278version = "0.16.0"
1279source = "registry+https://github.com/rust-lang/crates.io-index"
1280checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1281
1282[[package]]
1283name = "heck"
1284version = "0.4.1"
1285source = "registry+https://github.com/rust-lang/crates.io-index"
1286checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1287
1288[[package]]
1289name = "heck"
1290version = "0.5.0"
1291source = "registry+https://github.com/rust-lang/crates.io-index"
1292checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1293
1294[[package]]
1295name = "hermit-abi"
1296version = "0.5.2"
1297source = "registry+https://github.com/rust-lang/crates.io-index"
1298checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1299
1300[[package]]
1301name = "hex"
1302version = "0.4.3"
1303source = "registry+https://github.com/rust-lang/crates.io-index"
1304checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1305
1306[[package]]
1307name = "hex_fmt"
1308version = "0.3.0"
1309source = "registry+https://github.com/rust-lang/crates.io-index"
1310checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
1311
1312[[package]]
1313name = "hickory-proto"
1314version = "0.24.4"
1315source = "registry+https://github.com/rust-lang/crates.io-index"
1316checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248"
1317dependencies = [
1318 "async-trait",
1319 "cfg-if",
1320 "data-encoding",
1321 "enum-as-inner",
1322 "futures-channel",
1323 "futures-io",
1324 "futures-util",
1325 "idna",
1326 "ipnet",
1327 "once_cell",
1328 "rand 0.8.5",
1329 "thiserror 1.0.69",
1330 "tinyvec",
1331 "tokio",
1332 "tracing",
1333 "url",
1334]
1335
1336[[package]]
1337name = "hickory-resolver"
1338version = "0.24.4"
1339source = "registry+https://github.com/rust-lang/crates.io-index"
1340checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e"
1341dependencies = [
1342 "cfg-if",
1343 "futures-util",
1344 "hickory-proto",
1345 "ipconfig",
1346 "lru-cache",
1347 "once_cell",
1348 "parking_lot",
1349 "rand 0.8.5",
1350 "resolv-conf",
1351 "smallvec",
1352 "thiserror 1.0.69",
1353 "tokio",
1354 "tracing",
1355]
1356
1357[[package]]
1358name = "hmac"
1359version = "0.12.1"
1360source = "registry+https://github.com/rust-lang/crates.io-index"
1361checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1362dependencies = [
1363 "digest",
1364]
1365
1366[[package]]
1367name = "html5ever"
1368version = "0.27.0"
1369source = "registry+https://github.com/rust-lang/crates.io-index"
1370checksum = "c13771afe0e6e846f1e67d038d4cb29998a6779f93c809212e4e9c32efd244d4"
1371dependencies = [
1372 "log",
1373 "mac",
1374 "markup5ever",
1375 "proc-macro2",
1376 "quote",
1377 "syn 2.0.110",
1378]
1379
1380[[package]]
1381name = "http"
1382version = "1.3.1"
1383source = "registry+https://github.com/rust-lang/crates.io-index"
1384checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1385dependencies = [
1386 "bytes",
1387 "fnv",
1388 "itoa",
1389]
1390
1391[[package]]
1392name = "http-body"
1393version = "1.0.1"
1394source = "registry+https://github.com/rust-lang/crates.io-index"
1395checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1396dependencies = [
1397 "bytes",
1398 "http",
1399]
1400
1401[[package]]
1402name = "http-body-util"
1403version = "0.1.3"
1404source = "registry+https://github.com/rust-lang/crates.io-index"
1405checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1406dependencies = [
1407 "bytes",
1408 "futures-core",
1409 "http",
1410 "http-body",
1411 "pin-project-lite",
1412]
1413
1414[[package]]
1415name = "http-range-header"
1416version = "0.4.2"
1417source = "registry+https://github.com/rust-lang/crates.io-index"
1418checksum = "9171a2ea8a68358193d15dd5d70c1c10a2afc3e7e4c5bc92bc9f025cebd7359c"
1419
1420[[package]]
1421name = "httparse"
1422version = "1.10.1"
1423source = "registry+https://github.com/rust-lang/crates.io-index"
1424checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1425
1426[[package]]
1427name = "httpdate"
1428version = "1.0.3"
1429source = "registry+https://github.com/rust-lang/crates.io-index"
1430checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1431
1432[[package]]
1433name = "hyper"
1434version = "1.8.0"
1435source = "registry+https://github.com/rust-lang/crates.io-index"
1436checksum = "1744436df46f0bde35af3eda22aeaba453aada65d8f1c171cd8a5f59030bd69f"
1437dependencies = [
1438 "atomic-waker",
1439 "bytes",
1440 "futures-channel",
1441 "futures-core",
1442 "h2",
1443 "http",
1444 "http-body",
1445 "httparse",
1446 "httpdate",
1447 "itoa",
1448 "pin-project-lite",
1449 "pin-utils",
1450 "smallvec",
1451 "tokio",
1452 "want",
1453]
1454
1455[[package]]
1456name = "hyper-rustls"
1457version = "0.27.7"
1458source = "registry+https://github.com/rust-lang/crates.io-index"
1459checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1460dependencies = [
1461 "http",
1462 "hyper",
1463 "hyper-util",
1464 "rustls",
1465 "rustls-pki-types",
1466 "tokio",
1467 "tokio-rustls",
1468 "tower-service",
1469 "webpki-roots",
1470]
1471
1472[[package]]
1473name = "hyper-util"
1474version = "0.1.17"
1475source = "registry+https://github.com/rust-lang/crates.io-index"
1476checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1477dependencies = [
1478 "base64 0.22.1",
1479 "bytes",
1480 "futures-channel",
1481 "futures-core",
1482 "futures-util",
1483 "http",
1484 "http-body",
1485 "hyper",
1486 "ipnet",
1487 "libc",
1488 "percent-encoding",
1489 "pin-project-lite",
1490 "socket2 0.6.1",
1491 "system-configuration",
1492 "tokio",
1493 "tower-service",
1494 "tracing",
1495 "windows-registry",
1496]
1497
1498[[package]]
1499name = "iana-time-zone"
1500version = "0.1.64"
1501source = "registry+https://github.com/rust-lang/crates.io-index"
1502checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1503dependencies = [
1504 "android_system_properties",
1505 "core-foundation-sys",
1506 "iana-time-zone-haiku",
1507 "js-sys",
1508 "log",
1509 "wasm-bindgen",
1510 "windows-core 0.62.2",
1511]
1512
1513[[package]]
1514name = "iana-time-zone-haiku"
1515version = "0.1.2"
1516source = "registry+https://github.com/rust-lang/crates.io-index"
1517checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1518dependencies = [
1519 "cc",
1520]
1521
1522[[package]]
1523name = "icu_collections"
1524version = "2.1.1"
1525source = "registry+https://github.com/rust-lang/crates.io-index"
1526checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43"
1527dependencies = [
1528 "displaydoc",
1529 "potential_utf",
1530 "yoke",
1531 "zerofrom",
1532 "zerovec",
1533]
1534
1535[[package]]
1536name = "icu_locale_core"
1537version = "2.1.1"
1538source = "registry+https://github.com/rust-lang/crates.io-index"
1539checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6"
1540dependencies = [
1541 "displaydoc",
1542 "litemap",
1543 "tinystr",
1544 "writeable",
1545 "zerovec",
1546]
1547
1548[[package]]
1549name = "icu_normalizer"
1550version = "2.1.1"
1551source = "registry+https://github.com/rust-lang/crates.io-index"
1552checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599"
1553dependencies = [
1554 "icu_collections",
1555 "icu_normalizer_data",
1556 "icu_properties",
1557 "icu_provider",
1558 "smallvec",
1559 "zerovec",
1560]
1561
1562[[package]]
1563name = "icu_normalizer_data"
1564version = "2.1.1"
1565source = "registry+https://github.com/rust-lang/crates.io-index"
1566checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a"
1567
1568[[package]]
1569name = "icu_properties"
1570version = "2.1.1"
1571source = "registry+https://github.com/rust-lang/crates.io-index"
1572checksum = "e93fcd3157766c0c8da2f8cff6ce651a31f0810eaa1c51ec363ef790bbb5fb99"
1573dependencies = [
1574 "icu_collections",
1575 "icu_locale_core",
1576 "icu_properties_data",
1577 "icu_provider",
1578 "zerotrie",
1579 "zerovec",
1580]
1581
1582[[package]]
1583name = "icu_properties_data"
1584version = "2.1.1"
1585source = "registry+https://github.com/rust-lang/crates.io-index"
1586checksum = "02845b3647bb045f1100ecd6480ff52f34c35f82d9880e029d329c21d1054899"
1587
1588[[package]]
1589name = "icu_provider"
1590version = "2.1.1"
1591source = "registry+https://github.com/rust-lang/crates.io-index"
1592checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614"
1593dependencies = [
1594 "displaydoc",
1595 "icu_locale_core",
1596 "writeable",
1597 "yoke",
1598 "zerofrom",
1599 "zerotrie",
1600 "zerovec",
1601]
1602
1603[[package]]
1604name = "ident_case"
1605version = "1.0.1"
1606source = "registry+https://github.com/rust-lang/crates.io-index"
1607checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1608
1609[[package]]
1610name = "idna"
1611version = "1.1.0"
1612source = "registry+https://github.com/rust-lang/crates.io-index"
1613checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1614dependencies = [
1615 "idna_adapter",
1616 "smallvec",
1617 "utf8_iter",
1618]
1619
1620[[package]]
1621name = "idna_adapter"
1622version = "1.2.1"
1623source = "registry+https://github.com/rust-lang/crates.io-index"
1624checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1625dependencies = [
1626 "icu_normalizer",
1627 "icu_properties",
1628]
1629
1630[[package]]
1631name = "indexmap"
1632version = "1.9.3"
1633source = "registry+https://github.com/rust-lang/crates.io-index"
1634checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
1635dependencies = [
1636 "autocfg",
1637 "hashbrown 0.12.3",
1638 "serde",
1639]
1640
1641[[package]]
1642name = "indexmap"
1643version = "2.12.0"
1644source = "registry+https://github.com/rust-lang/crates.io-index"
1645checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1646dependencies = [
1647 "equivalent",
1648 "hashbrown 0.16.0",
1649 "serde",
1650 "serde_core",
1651]
1652
1653[[package]]
1654name = "indoc"
1655version = "2.0.7"
1656source = "registry+https://github.com/rust-lang/crates.io-index"
1657checksum = "79cf5c93f93228cf8efb3ba362535fb11199ac548a09ce117c9b1adc3030d706"
1658dependencies = [
1659 "rustversion",
1660]
1661
1662[[package]]
1663name = "inventory"
1664version = "0.3.21"
1665source = "registry+https://github.com/rust-lang/crates.io-index"
1666checksum = "bc61209c082fbeb19919bee74b176221b27223e27b65d781eb91af24eb1fb46e"
1667dependencies = [
1668 "rustversion",
1669]
1670
1671[[package]]
1672name = "ipconfig"
1673version = "0.3.2"
1674source = "registry+https://github.com/rust-lang/crates.io-index"
1675checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
1676dependencies = [
1677 "socket2 0.5.10",
1678 "widestring",
1679 "windows-sys 0.48.0",
1680 "winreg",
1681]
1682
1683[[package]]
1684name = "ipld-core"
1685version = "0.4.2"
1686source = "registry+https://github.com/rust-lang/crates.io-index"
1687checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db"
1688dependencies = [
1689 "cid",
1690 "serde",
1691 "serde_bytes",
1692]
1693
1694[[package]]
1695name = "ipnet"
1696version = "2.11.0"
1697source = "registry+https://github.com/rust-lang/crates.io-index"
1698checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1699
1700[[package]]
1701name = "iri-string"
1702version = "0.7.9"
1703source = "registry+https://github.com/rust-lang/crates.io-index"
1704checksum = "4f867b9d1d896b67beb18518eda36fdb77a32ea590de864f1325b294a6d14397"
1705dependencies = [
1706 "memchr",
1707 "serde",
1708]
1709
1710[[package]]
1711name = "is_ci"
1712version = "1.2.0"
1713source = "registry+https://github.com/rust-lang/crates.io-index"
1714checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
1715
1716[[package]]
1717name = "is_terminal_polyfill"
1718version = "1.70.2"
1719source = "registry+https://github.com/rust-lang/crates.io-index"
1720checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1721
1722[[package]]
1723name = "itoa"
1724version = "1.0.15"
1725source = "registry+https://github.com/rust-lang/crates.io-index"
1726checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1727
1728[[package]]
1729name = "jacquard"
1730version = "0.9.0"
1731source = "git+https://tangled.org/@nonbinary.computer/jacquard#5c79bb76de544cbd4fa8d5d8b01ba6e828f8ba65"
1732dependencies = [
1733 "bytes",
1734 "getrandom 0.2.16",
1735 "http",
1736 "jacquard-api",
1737 "jacquard-common",
1738 "jacquard-derive",
1739 "jacquard-identity",
1740 "jacquard-oauth",
1741 "jose-jwk",
1742 "miette",
1743 "regex",
1744 "reqwest",
1745 "serde",
1746 "serde_html_form",
1747 "serde_json",
1748 "smol_str",
1749 "thiserror 2.0.17",
1750 "tokio",
1751 "trait-variant",
1752 "url",
1753 "webpage",
1754]
1755
1756[[package]]
1757name = "jacquard-api"
1758version = "0.9.0"
1759source = "git+https://tangled.org/@nonbinary.computer/jacquard#5c79bb76de544cbd4fa8d5d8b01ba6e828f8ba65"
1760dependencies = [
1761 "bon",
1762 "bytes",
1763 "jacquard-common",
1764 "jacquard-derive",
1765 "jacquard-lexicon",
1766 "miette",
1767 "rustversion",
1768 "serde",
1769 "serde_ipld_dagcbor",
1770 "thiserror 2.0.17",
1771 "unicode-segmentation",
1772]
1773
1774[[package]]
1775name = "jacquard-common"
1776version = "0.9.0"
1777source = "git+https://tangled.org/@nonbinary.computer/jacquard#5c79bb76de544cbd4fa8d5d8b01ba6e828f8ba65"
1778dependencies = [
1779 "base64 0.22.1",
1780 "bon",
1781 "bytes",
1782 "chrono",
1783 "ciborium",
1784 "cid",
1785 "futures",
1786 "getrandom 0.2.16",
1787 "getrandom 0.3.4",
1788 "http",
1789 "ipld-core",
1790 "k256",
1791 "langtag",
1792 "miette",
1793 "multibase",
1794 "multihash",
1795 "n0-future",
1796 "ouroboros",
1797 "p256",
1798 "rand 0.9.2",
1799 "regex",
1800 "reqwest",
1801 "serde",
1802 "serde_html_form",
1803 "serde_ipld_dagcbor",
1804 "serde_json",
1805 "signature",
1806 "smol_str",
1807 "thiserror 2.0.17",
1808 "tokio",
1809 "tokio-tungstenite-wasm",
1810 "tokio-util",
1811 "trait-variant",
1812 "url",
1813]
1814
1815[[package]]
1816name = "jacquard-derive"
1817version = "0.9.0"
1818source = "git+https://tangled.org/@nonbinary.computer/jacquard#5c79bb76de544cbd4fa8d5d8b01ba6e828f8ba65"
1819dependencies = [
1820 "heck 0.5.0",
1821 "jacquard-lexicon",
1822 "proc-macro2",
1823 "quote",
1824 "syn 2.0.110",
1825]
1826
1827[[package]]
1828name = "jacquard-identity"
1829version = "0.9.1"
1830source = "git+https://tangled.org/@nonbinary.computer/jacquard#5c79bb76de544cbd4fa8d5d8b01ba6e828f8ba65"
1831dependencies = [
1832 "bon",
1833 "bytes",
1834 "hickory-resolver",
1835 "http",
1836 "jacquard-api",
1837 "jacquard-common",
1838 "jacquard-lexicon",
1839 "miette",
1840 "mini-moka",
1841 "percent-encoding",
1842 "reqwest",
1843 "serde",
1844 "serde_html_form",
1845 "serde_json",
1846 "thiserror 2.0.17",
1847 "tokio",
1848 "trait-variant",
1849 "url",
1850 "urlencoding",
1851]
1852
1853[[package]]
1854name = "jacquard-lexicon"
1855version = "0.9.1"
1856source = "git+https://tangled.org/@nonbinary.computer/jacquard#5c79bb76de544cbd4fa8d5d8b01ba6e828f8ba65"
1857dependencies = [
1858 "cid",
1859 "dashmap",
1860 "heck 0.5.0",
1861 "inventory",
1862 "jacquard-common",
1863 "miette",
1864 "multihash",
1865 "prettyplease",
1866 "proc-macro2",
1867 "quote",
1868 "serde",
1869 "serde_ipld_dagcbor",
1870 "serde_json",
1871 "serde_repr",
1872 "serde_with",
1873 "sha2",
1874 "syn 2.0.110",
1875 "thiserror 2.0.17",
1876 "unicode-segmentation",
1877]
1878
1879[[package]]
1880name = "jacquard-oauth"
1881version = "0.9.0"
1882source = "git+https://tangled.org/@nonbinary.computer/jacquard#5c79bb76de544cbd4fa8d5d8b01ba6e828f8ba65"
1883dependencies = [
1884 "base64 0.22.1",
1885 "bytes",
1886 "chrono",
1887 "dashmap",
1888 "elliptic-curve",
1889 "http",
1890 "jacquard-common",
1891 "jacquard-identity",
1892 "jose-jwa",
1893 "jose-jwk",
1894 "miette",
1895 "p256",
1896 "rand 0.8.5",
1897 "rouille",
1898 "serde",
1899 "serde_html_form",
1900 "serde_json",
1901 "sha2",
1902 "signature",
1903 "smol_str",
1904 "thiserror 2.0.17",
1905 "tokio",
1906 "trait-variant",
1907 "url",
1908 "webbrowser",
1909]
1910
1911[[package]]
1912name = "jni"
1913version = "0.21.1"
1914source = "registry+https://github.com/rust-lang/crates.io-index"
1915checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1916dependencies = [
1917 "cesu8",
1918 "cfg-if",
1919 "combine",
1920 "jni-sys",
1921 "log",
1922 "thiserror 1.0.69",
1923 "walkdir",
1924 "windows-sys 0.45.0",
1925]
1926
1927[[package]]
1928name = "jni-sys"
1929version = "0.3.0"
1930source = "registry+https://github.com/rust-lang/crates.io-index"
1931checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1932
1933[[package]]
1934name = "jose-b64"
1935version = "0.1.2"
1936source = "registry+https://github.com/rust-lang/crates.io-index"
1937checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56"
1938dependencies = [
1939 "base64ct",
1940 "serde",
1941 "subtle",
1942 "zeroize",
1943]
1944
1945[[package]]
1946name = "jose-jwa"
1947version = "0.1.2"
1948source = "registry+https://github.com/rust-lang/crates.io-index"
1949checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7"
1950dependencies = [
1951 "serde",
1952]
1953
1954[[package]]
1955name = "jose-jwk"
1956version = "0.1.2"
1957source = "registry+https://github.com/rust-lang/crates.io-index"
1958checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7"
1959dependencies = [
1960 "jose-b64",
1961 "jose-jwa",
1962 "p256",
1963 "p384",
1964 "rsa",
1965 "serde",
1966 "zeroize",
1967]
1968
1969[[package]]
1970name = "js-sys"
1971version = "0.3.82"
1972source = "registry+https://github.com/rust-lang/crates.io-index"
1973checksum = "b011eec8cc36da2aab2d5cff675ec18454fad408585853910a202391cf9f8e65"
1974dependencies = [
1975 "once_cell",
1976 "wasm-bindgen",
1977]
1978
1979[[package]]
1980name = "k256"
1981version = "0.13.4"
1982source = "registry+https://github.com/rust-lang/crates.io-index"
1983checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
1984dependencies = [
1985 "cfg-if",
1986 "ecdsa",
1987 "elliptic-curve",
1988 "sha2",
1989]
1990
1991[[package]]
1992name = "langtag"
1993version = "0.4.0"
1994source = "registry+https://github.com/rust-lang/crates.io-index"
1995checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600"
1996dependencies = [
1997 "serde",
1998 "static-regular-grammar",
1999 "thiserror 1.0.69",
2000]
2001
2002[[package]]
2003name = "lazy_static"
2004version = "1.5.0"
2005source = "registry+https://github.com/rust-lang/crates.io-index"
2006checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2007dependencies = [
2008 "spin 0.9.8",
2009]
2010
2011[[package]]
2012name = "libc"
2013version = "0.2.177"
2014source = "registry+https://github.com/rust-lang/crates.io-index"
2015checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
2016
2017[[package]]
2018name = "libm"
2019version = "0.2.15"
2020source = "registry+https://github.com/rust-lang/crates.io-index"
2021checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
2022
2023[[package]]
2024name = "libredox"
2025version = "0.1.10"
2026source = "registry+https://github.com/rust-lang/crates.io-index"
2027checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
2028dependencies = [
2029 "bitflags",
2030 "libc",
2031 "redox_syscall",
2032]
2033
2034[[package]]
2035name = "linked-hash-map"
2036version = "0.5.6"
2037source = "registry+https://github.com/rust-lang/crates.io-index"
2038checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
2039
2040[[package]]
2041name = "linux-raw-sys"
2042version = "0.11.0"
2043source = "registry+https://github.com/rust-lang/crates.io-index"
2044checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
2045
2046[[package]]
2047name = "litemap"
2048version = "0.8.1"
2049source = "registry+https://github.com/rust-lang/crates.io-index"
2050checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77"
2051
2052[[package]]
2053name = "lock_api"
2054version = "0.4.14"
2055source = "registry+https://github.com/rust-lang/crates.io-index"
2056checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
2057dependencies = [
2058 "scopeguard",
2059]
2060
2061[[package]]
2062name = "log"
2063version = "0.4.28"
2064source = "registry+https://github.com/rust-lang/crates.io-index"
2065checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
2066
2067[[package]]
2068name = "loom"
2069version = "0.7.2"
2070source = "registry+https://github.com/rust-lang/crates.io-index"
2071checksum = "419e0dc8046cb947daa77eb95ae174acfbddb7673b4151f56d1eed8e93fbfaca"
2072dependencies = [
2073 "cfg-if",
2074 "generator",
2075 "scoped-tls",
2076 "tracing",
2077 "tracing-subscriber",
2078]
2079
2080[[package]]
2081name = "lru-cache"
2082version = "0.1.2"
2083source = "registry+https://github.com/rust-lang/crates.io-index"
2084checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
2085dependencies = [
2086 "linked-hash-map",
2087]
2088
2089[[package]]
2090name = "lru-slab"
2091version = "0.1.2"
2092source = "registry+https://github.com/rust-lang/crates.io-index"
2093checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
2094
2095[[package]]
2096name = "mac"
2097version = "0.1.1"
2098source = "registry+https://github.com/rust-lang/crates.io-index"
2099checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
2100
2101[[package]]
2102name = "markup5ever"
2103version = "0.12.1"
2104source = "registry+https://github.com/rust-lang/crates.io-index"
2105checksum = "16ce3abbeba692c8b8441d036ef91aea6df8da2c6b6e21c7e14d3c18e526be45"
2106dependencies = [
2107 "log",
2108 "phf",
2109 "phf_codegen",
2110 "string_cache",
2111 "string_cache_codegen",
2112 "tendril",
2113]
2114
2115[[package]]
2116name = "markup5ever_rcdom"
2117version = "0.3.0"
2118source = "registry+https://github.com/rust-lang/crates.io-index"
2119checksum = "edaa21ab3701bfee5099ade5f7e1f84553fd19228cf332f13cd6e964bf59be18"
2120dependencies = [
2121 "html5ever",
2122 "markup5ever",
2123 "tendril",
2124 "xml5ever",
2125]
2126
2127[[package]]
2128name = "match-lookup"
2129version = "0.1.1"
2130source = "registry+https://github.com/rust-lang/crates.io-index"
2131checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e"
2132dependencies = [
2133 "proc-macro2",
2134 "quote",
2135 "syn 1.0.109",
2136]
2137
2138[[package]]
2139name = "matchers"
2140version = "0.2.0"
2141source = "registry+https://github.com/rust-lang/crates.io-index"
2142checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
2143dependencies = [
2144 "regex-automata",
2145]
2146
2147[[package]]
2148name = "matchit"
2149version = "0.7.3"
2150source = "registry+https://github.com/rust-lang/crates.io-index"
2151checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2152
2153[[package]]
2154name = "memchr"
2155version = "2.7.6"
2156source = "registry+https://github.com/rust-lang/crates.io-index"
2157checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2158
2159[[package]]
2160name = "miette"
2161version = "7.6.0"
2162source = "registry+https://github.com/rust-lang/crates.io-index"
2163checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
2164dependencies = [
2165 "backtrace",
2166 "backtrace-ext",
2167 "cfg-if",
2168 "miette-derive",
2169 "owo-colors",
2170 "supports-color",
2171 "supports-hyperlinks",
2172 "supports-unicode",
2173 "terminal_size",
2174 "textwrap",
2175 "unicode-width 0.1.14",
2176]
2177
2178[[package]]
2179name = "miette-derive"
2180version = "7.6.0"
2181source = "registry+https://github.com/rust-lang/crates.io-index"
2182checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
2183dependencies = [
2184 "proc-macro2",
2185 "quote",
2186 "syn 2.0.110",
2187]
2188
2189[[package]]
2190name = "mime"
2191version = "0.3.17"
2192source = "registry+https://github.com/rust-lang/crates.io-index"
2193checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2194
2195[[package]]
2196name = "mime_guess"
2197version = "2.0.5"
2198source = "registry+https://github.com/rust-lang/crates.io-index"
2199checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2200dependencies = [
2201 "mime",
2202 "unicase",
2203]
2204
2205[[package]]
2206name = "mini-moka"
2207version = "0.11.0"
2208source = "git+https://github.com/moka-rs/mini-moka?rev=da864e849f5d034f32e02197fee9bb5d5af36d3d#da864e849f5d034f32e02197fee9bb5d5af36d3d"
2209dependencies = [
2210 "crossbeam-channel",
2211 "crossbeam-utils",
2212 "dashmap",
2213 "smallvec",
2214 "tagptr",
2215 "triomphe",
2216 "web-time",
2217]
2218
2219[[package]]
2220name = "minimal-lexical"
2221version = "0.2.1"
2222source = "registry+https://github.com/rust-lang/crates.io-index"
2223checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2224
2225[[package]]
2226name = "miniz_oxide"
2227version = "0.8.9"
2228source = "registry+https://github.com/rust-lang/crates.io-index"
2229checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2230dependencies = [
2231 "adler2",
2232 "simd-adler32",
2233]
2234
2235[[package]]
2236name = "mio"
2237version = "1.1.0"
2238source = "registry+https://github.com/rust-lang/crates.io-index"
2239checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
2240dependencies = [
2241 "libc",
2242 "wasi",
2243 "windows-sys 0.61.2",
2244]
2245
2246[[package]]
2247name = "multibase"
2248version = "0.9.2"
2249source = "registry+https://github.com/rust-lang/crates.io-index"
2250checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
2251dependencies = [
2252 "base-x",
2253 "base256emoji",
2254 "data-encoding",
2255 "data-encoding-macro",
2256]
2257
2258[[package]]
2259name = "multihash"
2260version = "0.19.3"
2261source = "registry+https://github.com/rust-lang/crates.io-index"
2262checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d"
2263dependencies = [
2264 "core2",
2265 "serde",
2266 "unsigned-varint",
2267]
2268
2269[[package]]
2270name = "multipart"
2271version = "0.18.0"
2272source = "registry+https://github.com/rust-lang/crates.io-index"
2273checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
2274dependencies = [
2275 "buf_redux",
2276 "httparse",
2277 "log",
2278 "mime",
2279 "mime_guess",
2280 "quick-error",
2281 "rand 0.8.5",
2282 "safemem",
2283 "tempfile",
2284 "twoway",
2285]
2286
2287[[package]]
2288name = "n0-future"
2289version = "0.1.3"
2290source = "registry+https://github.com/rust-lang/crates.io-index"
2291checksum = "7bb0e5d99e681ab3c938842b96fcb41bf8a7bb4bfdb11ccbd653a7e83e06c794"
2292dependencies = [
2293 "cfg_aliases",
2294 "derive_more",
2295 "futures-buffered",
2296 "futures-lite",
2297 "futures-util",
2298 "js-sys",
2299 "pin-project",
2300 "send_wrapper",
2301 "tokio",
2302 "tokio-util",
2303 "wasm-bindgen",
2304 "wasm-bindgen-futures",
2305 "web-time",
2306]
2307
2308[[package]]
2309name = "ndk-context"
2310version = "0.1.1"
2311source = "registry+https://github.com/rust-lang/crates.io-index"
2312checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
2313
2314[[package]]
2315name = "new_debug_unreachable"
2316version = "1.0.6"
2317source = "registry+https://github.com/rust-lang/crates.io-index"
2318checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
2319
2320[[package]]
2321name = "nom"
2322version = "7.1.3"
2323source = "registry+https://github.com/rust-lang/crates.io-index"
2324checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2325dependencies = [
2326 "memchr",
2327 "minimal-lexical",
2328]
2329
2330[[package]]
2331name = "nu-ansi-term"
2332version = "0.50.3"
2333source = "registry+https://github.com/rust-lang/crates.io-index"
2334checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
2335dependencies = [
2336 "windows-sys 0.61.2",
2337]
2338
2339[[package]]
2340name = "num-bigint-dig"
2341version = "0.8.6"
2342source = "registry+https://github.com/rust-lang/crates.io-index"
2343checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
2344dependencies = [
2345 "lazy_static",
2346 "libm",
2347 "num-integer",
2348 "num-iter",
2349 "num-traits",
2350 "rand 0.8.5",
2351 "smallvec",
2352 "zeroize",
2353]
2354
2355[[package]]
2356name = "num-conv"
2357version = "0.1.0"
2358source = "registry+https://github.com/rust-lang/crates.io-index"
2359checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2360
2361[[package]]
2362name = "num-integer"
2363version = "0.1.46"
2364source = "registry+https://github.com/rust-lang/crates.io-index"
2365checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2366dependencies = [
2367 "num-traits",
2368]
2369
2370[[package]]
2371name = "num-iter"
2372version = "0.1.45"
2373source = "registry+https://github.com/rust-lang/crates.io-index"
2374checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2375dependencies = [
2376 "autocfg",
2377 "num-integer",
2378 "num-traits",
2379]
2380
2381[[package]]
2382name = "num-traits"
2383version = "0.2.19"
2384source = "registry+https://github.com/rust-lang/crates.io-index"
2385checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2386dependencies = [
2387 "autocfg",
2388 "libm",
2389]
2390
2391[[package]]
2392name = "num_cpus"
2393version = "1.17.0"
2394source = "registry+https://github.com/rust-lang/crates.io-index"
2395checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2396dependencies = [
2397 "hermit-abi",
2398 "libc",
2399]
2400
2401[[package]]
2402name = "num_threads"
2403version = "0.1.7"
2404source = "registry+https://github.com/rust-lang/crates.io-index"
2405checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2406dependencies = [
2407 "libc",
2408]
2409
2410[[package]]
2411name = "objc2"
2412version = "0.6.3"
2413source = "registry+https://github.com/rust-lang/crates.io-index"
2414checksum = "b7c2599ce0ec54857b29ce62166b0ed9b4f6f1a70ccc9a71165b6154caca8c05"
2415dependencies = [
2416 "objc2-encode",
2417]
2418
2419[[package]]
2420name = "objc2-encode"
2421version = "4.1.0"
2422source = "registry+https://github.com/rust-lang/crates.io-index"
2423checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33"
2424
2425[[package]]
2426name = "objc2-foundation"
2427version = "0.3.2"
2428source = "registry+https://github.com/rust-lang/crates.io-index"
2429checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272"
2430dependencies = [
2431 "bitflags",
2432 "objc2",
2433]
2434
2435[[package]]
2436name = "object"
2437version = "0.37.3"
2438source = "registry+https://github.com/rust-lang/crates.io-index"
2439checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
2440dependencies = [
2441 "memchr",
2442]
2443
2444[[package]]
2445name = "once_cell"
2446version = "1.21.3"
2447source = "registry+https://github.com/rust-lang/crates.io-index"
2448checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2449
2450[[package]]
2451name = "once_cell_polyfill"
2452version = "1.70.2"
2453source = "registry+https://github.com/rust-lang/crates.io-index"
2454checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
2455
2456[[package]]
2457name = "openssl-probe"
2458version = "0.1.6"
2459source = "registry+https://github.com/rust-lang/crates.io-index"
2460checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2461
2462[[package]]
2463name = "option-ext"
2464version = "0.2.0"
2465source = "registry+https://github.com/rust-lang/crates.io-index"
2466checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
2467
2468[[package]]
2469name = "ouroboros"
2470version = "0.18.5"
2471source = "registry+https://github.com/rust-lang/crates.io-index"
2472checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59"
2473dependencies = [
2474 "aliasable",
2475 "ouroboros_macro",
2476 "static_assertions",
2477]
2478
2479[[package]]
2480name = "ouroboros_macro"
2481version = "0.18.5"
2482source = "registry+https://github.com/rust-lang/crates.io-index"
2483checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0"
2484dependencies = [
2485 "heck 0.4.1",
2486 "proc-macro2",
2487 "proc-macro2-diagnostics",
2488 "quote",
2489 "syn 2.0.110",
2490]
2491
2492[[package]]
2493name = "owo-colors"
2494version = "4.2.3"
2495source = "registry+https://github.com/rust-lang/crates.io-index"
2496checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
2497
2498[[package]]
2499name = "p256"
2500version = "0.13.2"
2501source = "registry+https://github.com/rust-lang/crates.io-index"
2502checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2503dependencies = [
2504 "ecdsa",
2505 "elliptic-curve",
2506 "primeorder",
2507 "sha2",
2508]
2509
2510[[package]]
2511name = "p384"
2512version = "0.13.1"
2513source = "registry+https://github.com/rust-lang/crates.io-index"
2514checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2515dependencies = [
2516 "elliptic-curve",
2517 "primeorder",
2518]
2519
2520[[package]]
2521name = "parking"
2522version = "2.2.1"
2523source = "registry+https://github.com/rust-lang/crates.io-index"
2524checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2525
2526[[package]]
2527name = "parking_lot"
2528version = "0.12.5"
2529source = "registry+https://github.com/rust-lang/crates.io-index"
2530checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2531dependencies = [
2532 "lock_api",
2533 "parking_lot_core",
2534]
2535
2536[[package]]
2537name = "parking_lot_core"
2538version = "0.9.12"
2539source = "registry+https://github.com/rust-lang/crates.io-index"
2540checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2541dependencies = [
2542 "cfg-if",
2543 "libc",
2544 "redox_syscall",
2545 "smallvec",
2546 "windows-link 0.2.1",
2547]
2548
2549[[package]]
2550name = "pem-rfc7468"
2551version = "0.7.0"
2552source = "registry+https://github.com/rust-lang/crates.io-index"
2553checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2554dependencies = [
2555 "base64ct",
2556]
2557
2558[[package]]
2559name = "percent-encoding"
2560version = "2.3.2"
2561source = "registry+https://github.com/rust-lang/crates.io-index"
2562checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2563
2564[[package]]
2565name = "phf"
2566version = "0.11.3"
2567source = "registry+https://github.com/rust-lang/crates.io-index"
2568checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
2569dependencies = [
2570 "phf_shared",
2571]
2572
2573[[package]]
2574name = "phf_codegen"
2575version = "0.11.3"
2576source = "registry+https://github.com/rust-lang/crates.io-index"
2577checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a"
2578dependencies = [
2579 "phf_generator",
2580 "phf_shared",
2581]
2582
2583[[package]]
2584name = "phf_generator"
2585version = "0.11.3"
2586source = "registry+https://github.com/rust-lang/crates.io-index"
2587checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d"
2588dependencies = [
2589 "phf_shared",
2590 "rand 0.8.5",
2591]
2592
2593[[package]]
2594name = "phf_shared"
2595version = "0.11.3"
2596source = "registry+https://github.com/rust-lang/crates.io-index"
2597checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
2598dependencies = [
2599 "siphasher",
2600]
2601
2602[[package]]
2603name = "pin-project"
2604version = "1.1.10"
2605source = "registry+https://github.com/rust-lang/crates.io-index"
2606checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
2607dependencies = [
2608 "pin-project-internal",
2609]
2610
2611[[package]]
2612name = "pin-project-internal"
2613version = "1.1.10"
2614source = "registry+https://github.com/rust-lang/crates.io-index"
2615checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
2616dependencies = [
2617 "proc-macro2",
2618 "quote",
2619 "syn 2.0.110",
2620]
2621
2622[[package]]
2623name = "pin-project-lite"
2624version = "0.2.16"
2625source = "registry+https://github.com/rust-lang/crates.io-index"
2626checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2627
2628[[package]]
2629name = "pin-utils"
2630version = "0.1.0"
2631source = "registry+https://github.com/rust-lang/crates.io-index"
2632checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2633
2634[[package]]
2635name = "pkcs1"
2636version = "0.7.5"
2637source = "registry+https://github.com/rust-lang/crates.io-index"
2638checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2639dependencies = [
2640 "der",
2641 "pkcs8",
2642 "spki",
2643]
2644
2645[[package]]
2646name = "pkcs8"
2647version = "0.10.2"
2648source = "registry+https://github.com/rust-lang/crates.io-index"
2649checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2650dependencies = [
2651 "der",
2652 "spki",
2653]
2654
2655[[package]]
2656name = "potential_utf"
2657version = "0.1.4"
2658source = "registry+https://github.com/rust-lang/crates.io-index"
2659checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77"
2660dependencies = [
2661 "zerovec",
2662]
2663
2664[[package]]
2665name = "powerfmt"
2666version = "0.2.0"
2667source = "registry+https://github.com/rust-lang/crates.io-index"
2668checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2669
2670[[package]]
2671name = "ppv-lite86"
2672version = "0.2.21"
2673source = "registry+https://github.com/rust-lang/crates.io-index"
2674checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2675dependencies = [
2676 "zerocopy",
2677]
2678
2679[[package]]
2680name = "precomputed-hash"
2681version = "0.1.1"
2682source = "registry+https://github.com/rust-lang/crates.io-index"
2683checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
2684
2685[[package]]
2686name = "prettyplease"
2687version = "0.2.37"
2688source = "registry+https://github.com/rust-lang/crates.io-index"
2689checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2690dependencies = [
2691 "proc-macro2",
2692 "syn 2.0.110",
2693]
2694
2695[[package]]
2696name = "primeorder"
2697version = "0.13.6"
2698source = "registry+https://github.com/rust-lang/crates.io-index"
2699checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2700dependencies = [
2701 "elliptic-curve",
2702]
2703
2704[[package]]
2705name = "proc-macro-error"
2706version = "1.0.4"
2707source = "registry+https://github.com/rust-lang/crates.io-index"
2708checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2709dependencies = [
2710 "proc-macro-error-attr",
2711 "proc-macro2",
2712 "quote",
2713 "syn 1.0.109",
2714 "version_check",
2715]
2716
2717[[package]]
2718name = "proc-macro-error-attr"
2719version = "1.0.4"
2720source = "registry+https://github.com/rust-lang/crates.io-index"
2721checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2722dependencies = [
2723 "proc-macro2",
2724 "quote",
2725 "version_check",
2726]
2727
2728[[package]]
2729name = "proc-macro2"
2730version = "1.0.103"
2731source = "registry+https://github.com/rust-lang/crates.io-index"
2732checksum = "5ee95bc4ef87b8d5ba32e8b7714ccc834865276eab0aed5c9958d00ec45f49e8"
2733dependencies = [
2734 "unicode-ident",
2735]
2736
2737[[package]]
2738name = "proc-macro2-diagnostics"
2739version = "0.10.1"
2740source = "registry+https://github.com/rust-lang/crates.io-index"
2741checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
2742dependencies = [
2743 "proc-macro2",
2744 "quote",
2745 "syn 2.0.110",
2746 "version_check",
2747 "yansi",
2748]
2749
2750[[package]]
2751name = "quick-error"
2752version = "1.2.3"
2753source = "registry+https://github.com/rust-lang/crates.io-index"
2754checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2755
2756[[package]]
2757name = "quinn"
2758version = "0.11.9"
2759source = "registry+https://github.com/rust-lang/crates.io-index"
2760checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2761dependencies = [
2762 "bytes",
2763 "cfg_aliases",
2764 "pin-project-lite",
2765 "quinn-proto",
2766 "quinn-udp",
2767 "rustc-hash",
2768 "rustls",
2769 "socket2 0.6.1",
2770 "thiserror 2.0.17",
2771 "tokio",
2772 "tracing",
2773 "web-time",
2774]
2775
2776[[package]]
2777name = "quinn-proto"
2778version = "0.11.13"
2779source = "registry+https://github.com/rust-lang/crates.io-index"
2780checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2781dependencies = [
2782 "bytes",
2783 "getrandom 0.3.4",
2784 "lru-slab",
2785 "rand 0.9.2",
2786 "ring",
2787 "rustc-hash",
2788 "rustls",
2789 "rustls-pki-types",
2790 "slab",
2791 "thiserror 2.0.17",
2792 "tinyvec",
2793 "tracing",
2794 "web-time",
2795]
2796
2797[[package]]
2798name = "quinn-udp"
2799version = "0.5.14"
2800source = "registry+https://github.com/rust-lang/crates.io-index"
2801checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2802dependencies = [
2803 "cfg_aliases",
2804 "libc",
2805 "once_cell",
2806 "socket2 0.6.1",
2807 "tracing",
2808 "windows-sys 0.60.2",
2809]
2810
2811[[package]]
2812name = "quote"
2813version = "1.0.42"
2814source = "registry+https://github.com/rust-lang/crates.io-index"
2815checksum = "a338cc41d27e6cc6dce6cefc13a0729dfbb81c262b1f519331575dd80ef3067f"
2816dependencies = [
2817 "proc-macro2",
2818]
2819
2820[[package]]
2821name = "r-efi"
2822version = "5.3.0"
2823source = "registry+https://github.com/rust-lang/crates.io-index"
2824checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2825
2826[[package]]
2827name = "rand"
2828version = "0.8.5"
2829source = "registry+https://github.com/rust-lang/crates.io-index"
2830checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2831dependencies = [
2832 "libc",
2833 "rand_chacha 0.3.1",
2834 "rand_core 0.6.4",
2835]
2836
2837[[package]]
2838name = "rand"
2839version = "0.9.2"
2840source = "registry+https://github.com/rust-lang/crates.io-index"
2841checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2842dependencies = [
2843 "rand_chacha 0.9.0",
2844 "rand_core 0.9.3",
2845]
2846
2847[[package]]
2848name = "rand_chacha"
2849version = "0.3.1"
2850source = "registry+https://github.com/rust-lang/crates.io-index"
2851checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2852dependencies = [
2853 "ppv-lite86",
2854 "rand_core 0.6.4",
2855]
2856
2857[[package]]
2858name = "rand_chacha"
2859version = "0.9.0"
2860source = "registry+https://github.com/rust-lang/crates.io-index"
2861checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2862dependencies = [
2863 "ppv-lite86",
2864 "rand_core 0.9.3",
2865]
2866
2867[[package]]
2868name = "rand_core"
2869version = "0.6.4"
2870source = "registry+https://github.com/rust-lang/crates.io-index"
2871checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2872dependencies = [
2873 "getrandom 0.2.16",
2874]
2875
2876[[package]]
2877name = "rand_core"
2878version = "0.9.3"
2879source = "registry+https://github.com/rust-lang/crates.io-index"
2880checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2881dependencies = [
2882 "getrandom 0.3.4",
2883]
2884
2885[[package]]
2886name = "range-traits"
2887version = "0.3.2"
2888source = "registry+https://github.com/rust-lang/crates.io-index"
2889checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab"
2890
2891[[package]]
2892name = "redox_syscall"
2893version = "0.5.18"
2894source = "registry+https://github.com/rust-lang/crates.io-index"
2895checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2896dependencies = [
2897 "bitflags",
2898]
2899
2900[[package]]
2901name = "redox_users"
2902version = "0.5.2"
2903source = "registry+https://github.com/rust-lang/crates.io-index"
2904checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
2905dependencies = [
2906 "getrandom 0.2.16",
2907 "libredox",
2908 "thiserror 2.0.17",
2909]
2910
2911[[package]]
2912name = "ref-cast"
2913version = "1.0.25"
2914source = "registry+https://github.com/rust-lang/crates.io-index"
2915checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d"
2916dependencies = [
2917 "ref-cast-impl",
2918]
2919
2920[[package]]
2921name = "ref-cast-impl"
2922version = "1.0.25"
2923source = "registry+https://github.com/rust-lang/crates.io-index"
2924checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da"
2925dependencies = [
2926 "proc-macro2",
2927 "quote",
2928 "syn 2.0.110",
2929]
2930
2931[[package]]
2932name = "regex"
2933version = "1.12.2"
2934source = "registry+https://github.com/rust-lang/crates.io-index"
2935checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2936dependencies = [
2937 "aho-corasick",
2938 "memchr",
2939 "regex-automata",
2940 "regex-syntax",
2941]
2942
2943[[package]]
2944name = "regex-automata"
2945version = "0.4.13"
2946source = "registry+https://github.com/rust-lang/crates.io-index"
2947checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2948dependencies = [
2949 "aho-corasick",
2950 "memchr",
2951 "regex-syntax",
2952]
2953
2954[[package]]
2955name = "regex-syntax"
2956version = "0.8.8"
2957source = "registry+https://github.com/rust-lang/crates.io-index"
2958checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2959
2960[[package]]
2961name = "reqwest"
2962version = "0.12.24"
2963source = "registry+https://github.com/rust-lang/crates.io-index"
2964checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
2965dependencies = [
2966 "async-compression",
2967 "base64 0.22.1",
2968 "bytes",
2969 "encoding_rs",
2970 "futures-core",
2971 "futures-util",
2972 "h2",
2973 "http",
2974 "http-body",
2975 "http-body-util",
2976 "hyper",
2977 "hyper-rustls",
2978 "hyper-util",
2979 "js-sys",
2980 "log",
2981 "mime",
2982 "percent-encoding",
2983 "pin-project-lite",
2984 "quinn",
2985 "rustls",
2986 "rustls-pki-types",
2987 "serde",
2988 "serde_json",
2989 "serde_urlencoded",
2990 "sync_wrapper",
2991 "tokio",
2992 "tokio-rustls",
2993 "tokio-util",
2994 "tower 0.5.2",
2995 "tower-http 0.6.6",
2996 "tower-service",
2997 "url",
2998 "wasm-bindgen",
2999 "wasm-bindgen-futures",
3000 "wasm-streams",
3001 "web-sys",
3002 "webpki-roots",
3003]
3004
3005[[package]]
3006name = "resolv-conf"
3007version = "0.7.5"
3008source = "registry+https://github.com/rust-lang/crates.io-index"
3009checksum = "6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799"
3010
3011[[package]]
3012name = "rfc6979"
3013version = "0.4.0"
3014source = "registry+https://github.com/rust-lang/crates.io-index"
3015checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
3016dependencies = [
3017 "hmac",
3018 "subtle",
3019]
3020
3021[[package]]
3022name = "ring"
3023version = "0.17.14"
3024source = "registry+https://github.com/rust-lang/crates.io-index"
3025checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
3026dependencies = [
3027 "cc",
3028 "cfg-if",
3029 "getrandom 0.2.16",
3030 "libc",
3031 "untrusted",
3032 "windows-sys 0.52.0",
3033]
3034
3035[[package]]
3036name = "rouille"
3037version = "3.6.2"
3038source = "registry+https://github.com/rust-lang/crates.io-index"
3039checksum = "3716fbf57fc1084d7a706adf4e445298d123e4a44294c4e8213caf1b85fcc921"
3040dependencies = [
3041 "base64 0.13.1",
3042 "brotli",
3043 "chrono",
3044 "deflate",
3045 "filetime",
3046 "multipart",
3047 "percent-encoding",
3048 "rand 0.8.5",
3049 "serde",
3050 "serde_derive",
3051 "serde_json",
3052 "sha1_smol",
3053 "threadpool",
3054 "time",
3055 "tiny_http",
3056 "url",
3057]
3058
3059[[package]]
3060name = "rsa"
3061version = "0.9.8"
3062source = "registry+https://github.com/rust-lang/crates.io-index"
3063checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
3064dependencies = [
3065 "const-oid",
3066 "digest",
3067 "num-bigint-dig",
3068 "num-integer",
3069 "num-traits",
3070 "pkcs1",
3071 "pkcs8",
3072 "rand_core 0.6.4",
3073 "signature",
3074 "spki",
3075 "subtle",
3076 "zeroize",
3077]
3078
3079[[package]]
3080name = "rustc-demangle"
3081version = "0.1.26"
3082source = "registry+https://github.com/rust-lang/crates.io-index"
3083checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
3084
3085[[package]]
3086name = "rustc-hash"
3087version = "2.1.1"
3088source = "registry+https://github.com/rust-lang/crates.io-index"
3089checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
3090
3091[[package]]
3092name = "rustix"
3093version = "1.1.2"
3094source = "registry+https://github.com/rust-lang/crates.io-index"
3095checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
3096dependencies = [
3097 "bitflags",
3098 "errno",
3099 "libc",
3100 "linux-raw-sys",
3101 "windows-sys 0.61.2",
3102]
3103
3104[[package]]
3105name = "rustls"
3106version = "0.23.35"
3107source = "registry+https://github.com/rust-lang/crates.io-index"
3108checksum = "533f54bc6a7d4f647e46ad909549eda97bf5afc1585190ef692b4286b198bd8f"
3109dependencies = [
3110 "once_cell",
3111 "ring",
3112 "rustls-pki-types",
3113 "rustls-webpki",
3114 "subtle",
3115 "zeroize",
3116]
3117
3118[[package]]
3119name = "rustls-native-certs"
3120version = "0.8.2"
3121source = "registry+https://github.com/rust-lang/crates.io-index"
3122checksum = "9980d917ebb0c0536119ba501e90834767bffc3d60641457fd84a1f3fd337923"
3123dependencies = [
3124 "openssl-probe",
3125 "rustls-pki-types",
3126 "schannel",
3127 "security-framework",
3128]
3129
3130[[package]]
3131name = "rustls-pki-types"
3132version = "1.13.0"
3133source = "registry+https://github.com/rust-lang/crates.io-index"
3134checksum = "94182ad936a0c91c324cd46c6511b9510ed16af436d7b5bab34beab0afd55f7a"
3135dependencies = [
3136 "web-time",
3137 "zeroize",
3138]
3139
3140[[package]]
3141name = "rustls-webpki"
3142version = "0.103.8"
3143source = "registry+https://github.com/rust-lang/crates.io-index"
3144checksum = "2ffdfa2f5286e2247234e03f680868ac2815974dc39e00ea15adc445d0aafe52"
3145dependencies = [
3146 "ring",
3147 "rustls-pki-types",
3148 "untrusted",
3149]
3150
3151[[package]]
3152name = "rustversion"
3153version = "1.0.22"
3154source = "registry+https://github.com/rust-lang/crates.io-index"
3155checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
3156
3157[[package]]
3158name = "ryu"
3159version = "1.0.20"
3160source = "registry+https://github.com/rust-lang/crates.io-index"
3161checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
3162
3163[[package]]
3164name = "safemem"
3165version = "0.3.3"
3166source = "registry+https://github.com/rust-lang/crates.io-index"
3167checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
3168
3169[[package]]
3170name = "same-file"
3171version = "1.0.6"
3172source = "registry+https://github.com/rust-lang/crates.io-index"
3173checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
3174dependencies = [
3175 "winapi-util",
3176]
3177
3178[[package]]
3179name = "schannel"
3180version = "0.1.28"
3181source = "registry+https://github.com/rust-lang/crates.io-index"
3182checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
3183dependencies = [
3184 "windows-sys 0.61.2",
3185]
3186
3187[[package]]
3188name = "schemars"
3189version = "0.9.0"
3190source = "registry+https://github.com/rust-lang/crates.io-index"
3191checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f"
3192dependencies = [
3193 "dyn-clone",
3194 "ref-cast",
3195 "serde",
3196 "serde_json",
3197]
3198
3199[[package]]
3200name = "schemars"
3201version = "1.1.0"
3202source = "registry+https://github.com/rust-lang/crates.io-index"
3203checksum = "9558e172d4e8533736ba97870c4b2cd63f84b382a3d6eb063da41b91cce17289"
3204dependencies = [
3205 "dyn-clone",
3206 "ref-cast",
3207 "serde",
3208 "serde_json",
3209]
3210
3211[[package]]
3212name = "scoped-tls"
3213version = "1.0.1"
3214source = "registry+https://github.com/rust-lang/crates.io-index"
3215checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
3216
3217[[package]]
3218name = "scopeguard"
3219version = "1.2.0"
3220source = "registry+https://github.com/rust-lang/crates.io-index"
3221checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
3222
3223[[package]]
3224name = "sec1"
3225version = "0.7.3"
3226source = "registry+https://github.com/rust-lang/crates.io-index"
3227checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
3228dependencies = [
3229 "base16ct",
3230 "der",
3231 "generic-array",
3232 "pkcs8",
3233 "subtle",
3234 "zeroize",
3235]
3236
3237[[package]]
3238name = "security-framework"
3239version = "3.5.1"
3240source = "registry+https://github.com/rust-lang/crates.io-index"
3241checksum = "b3297343eaf830f66ede390ea39da1d462b6b0c1b000f420d0a83f898bbbe6ef"
3242dependencies = [
3243 "bitflags",
3244 "core-foundation 0.10.1",
3245 "core-foundation-sys",
3246 "libc",
3247 "security-framework-sys",
3248]
3249
3250[[package]]
3251name = "security-framework-sys"
3252version = "2.15.0"
3253source = "registry+https://github.com/rust-lang/crates.io-index"
3254checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3255dependencies = [
3256 "core-foundation-sys",
3257 "libc",
3258]
3259
3260[[package]]
3261name = "send_wrapper"
3262version = "0.6.0"
3263source = "registry+https://github.com/rust-lang/crates.io-index"
3264checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
3265
3266[[package]]
3267name = "serde"
3268version = "1.0.228"
3269source = "registry+https://github.com/rust-lang/crates.io-index"
3270checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3271dependencies = [
3272 "serde_core",
3273 "serde_derive",
3274]
3275
3276[[package]]
3277name = "serde_bytes"
3278version = "0.11.19"
3279source = "registry+https://github.com/rust-lang/crates.io-index"
3280checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
3281dependencies = [
3282 "serde",
3283 "serde_core",
3284]
3285
3286[[package]]
3287name = "serde_core"
3288version = "1.0.228"
3289source = "registry+https://github.com/rust-lang/crates.io-index"
3290checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3291dependencies = [
3292 "serde_derive",
3293]
3294
3295[[package]]
3296name = "serde_derive"
3297version = "1.0.228"
3298source = "registry+https://github.com/rust-lang/crates.io-index"
3299checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3300dependencies = [
3301 "proc-macro2",
3302 "quote",
3303 "syn 2.0.110",
3304]
3305
3306[[package]]
3307name = "serde_html_form"
3308version = "0.2.8"
3309source = "registry+https://github.com/rust-lang/crates.io-index"
3310checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f"
3311dependencies = [
3312 "form_urlencoded",
3313 "indexmap 2.12.0",
3314 "itoa",
3315 "ryu",
3316 "serde_core",
3317]
3318
3319[[package]]
3320name = "serde_ipld_dagcbor"
3321version = "0.6.4"
3322source = "registry+https://github.com/rust-lang/crates.io-index"
3323checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778"
3324dependencies = [
3325 "cbor4ii",
3326 "ipld-core",
3327 "scopeguard",
3328 "serde",
3329]
3330
3331[[package]]
3332name = "serde_json"
3333version = "1.0.145"
3334source = "registry+https://github.com/rust-lang/crates.io-index"
3335checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3336dependencies = [
3337 "itoa",
3338 "memchr",
3339 "ryu",
3340 "serde",
3341 "serde_core",
3342]
3343
3344[[package]]
3345name = "serde_path_to_error"
3346version = "0.1.20"
3347source = "registry+https://github.com/rust-lang/crates.io-index"
3348checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
3349dependencies = [
3350 "itoa",
3351 "serde",
3352 "serde_core",
3353]
3354
3355[[package]]
3356name = "serde_repr"
3357version = "0.1.20"
3358source = "registry+https://github.com/rust-lang/crates.io-index"
3359checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c"
3360dependencies = [
3361 "proc-macro2",
3362 "quote",
3363 "syn 2.0.110",
3364]
3365
3366[[package]]
3367name = "serde_urlencoded"
3368version = "0.7.1"
3369source = "registry+https://github.com/rust-lang/crates.io-index"
3370checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3371dependencies = [
3372 "form_urlencoded",
3373 "itoa",
3374 "ryu",
3375 "serde",
3376]
3377
3378[[package]]
3379name = "serde_with"
3380version = "3.15.1"
3381source = "registry+https://github.com/rust-lang/crates.io-index"
3382checksum = "aa66c845eee442168b2c8134fec70ac50dc20e760769c8ba0ad1319ca1959b04"
3383dependencies = [
3384 "base64 0.22.1",
3385 "chrono",
3386 "hex",
3387 "indexmap 1.9.3",
3388 "indexmap 2.12.0",
3389 "schemars 0.9.0",
3390 "schemars 1.1.0",
3391 "serde_core",
3392 "serde_json",
3393 "serde_with_macros",
3394 "time",
3395]
3396
3397[[package]]
3398name = "serde_with_macros"
3399version = "3.15.1"
3400source = "registry+https://github.com/rust-lang/crates.io-index"
3401checksum = "b91a903660542fced4e99881aa481bdbaec1634568ee02e0b8bd57c64cb38955"
3402dependencies = [
3403 "darling",
3404 "proc-macro2",
3405 "quote",
3406 "syn 2.0.110",
3407]
3408
3409[[package]]
3410name = "sha1"
3411version = "0.10.6"
3412source = "registry+https://github.com/rust-lang/crates.io-index"
3413checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
3414dependencies = [
3415 "cfg-if",
3416 "cpufeatures",
3417 "digest",
3418]
3419
3420[[package]]
3421name = "sha1_smol"
3422version = "1.0.1"
3423source = "registry+https://github.com/rust-lang/crates.io-index"
3424checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
3425
3426[[package]]
3427name = "sha2"
3428version = "0.10.9"
3429source = "registry+https://github.com/rust-lang/crates.io-index"
3430checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3431dependencies = [
3432 "cfg-if",
3433 "cpufeatures",
3434 "digest",
3435]
3436
3437[[package]]
3438name = "sharded-slab"
3439version = "0.1.7"
3440source = "registry+https://github.com/rust-lang/crates.io-index"
3441checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
3442dependencies = [
3443 "lazy_static",
3444]
3445
3446[[package]]
3447name = "shellexpand"
3448version = "3.1.1"
3449source = "registry+https://github.com/rust-lang/crates.io-index"
3450checksum = "8b1fdf65dd6331831494dd616b30351c38e96e45921a27745cf98490458b90bb"
3451dependencies = [
3452 "dirs",
3453]
3454
3455[[package]]
3456name = "shlex"
3457version = "1.3.0"
3458source = "registry+https://github.com/rust-lang/crates.io-index"
3459checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3460
3461[[package]]
3462name = "signal-hook-registry"
3463version = "1.4.6"
3464source = "registry+https://github.com/rust-lang/crates.io-index"
3465checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3466dependencies = [
3467 "libc",
3468]
3469
3470[[package]]
3471name = "signature"
3472version = "2.2.0"
3473source = "registry+https://github.com/rust-lang/crates.io-index"
3474checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3475dependencies = [
3476 "digest",
3477 "rand_core 0.6.4",
3478]
3479
3480[[package]]
3481name = "simd-adler32"
3482version = "0.3.7"
3483source = "registry+https://github.com/rust-lang/crates.io-index"
3484checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
3485
3486[[package]]
3487name = "siphasher"
3488version = "1.0.1"
3489source = "registry+https://github.com/rust-lang/crates.io-index"
3490checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
3491
3492[[package]]
3493name = "slab"
3494version = "0.4.11"
3495source = "registry+https://github.com/rust-lang/crates.io-index"
3496checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3497
3498[[package]]
3499name = "smallvec"
3500version = "1.15.1"
3501source = "registry+https://github.com/rust-lang/crates.io-index"
3502checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3503
3504[[package]]
3505name = "smol_str"
3506version = "0.3.4"
3507source = "registry+https://github.com/rust-lang/crates.io-index"
3508checksum = "3498b0a27f93ef1402f20eefacfaa1691272ac4eca1cdc8c596cb0a245d6cbf5"
3509dependencies = [
3510 "borsh",
3511 "serde_core",
3512]
3513
3514[[package]]
3515name = "socket2"
3516version = "0.5.10"
3517source = "registry+https://github.com/rust-lang/crates.io-index"
3518checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3519dependencies = [
3520 "libc",
3521 "windows-sys 0.52.0",
3522]
3523
3524[[package]]
3525name = "socket2"
3526version = "0.6.1"
3527source = "registry+https://github.com/rust-lang/crates.io-index"
3528checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3529dependencies = [
3530 "libc",
3531 "windows-sys 0.60.2",
3532]
3533
3534[[package]]
3535name = "spin"
3536version = "0.9.8"
3537source = "registry+https://github.com/rust-lang/crates.io-index"
3538checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3539
3540[[package]]
3541name = "spin"
3542version = "0.10.0"
3543source = "registry+https://github.com/rust-lang/crates.io-index"
3544checksum = "d5fe4ccb98d9c292d56fec89a5e07da7fc4cf0dc11e156b41793132775d3e591"
3545
3546[[package]]
3547name = "spki"
3548version = "0.7.3"
3549source = "registry+https://github.com/rust-lang/crates.io-index"
3550checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3551dependencies = [
3552 "base64ct",
3553 "der",
3554]
3555
3556[[package]]
3557name = "stable_deref_trait"
3558version = "1.2.1"
3559source = "registry+https://github.com/rust-lang/crates.io-index"
3560checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3561
3562[[package]]
3563name = "static-regular-grammar"
3564version = "2.0.2"
3565source = "registry+https://github.com/rust-lang/crates.io-index"
3566checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957"
3567dependencies = [
3568 "abnf",
3569 "btree-range-map",
3570 "ciborium",
3571 "hex_fmt",
3572 "indoc",
3573 "proc-macro-error",
3574 "proc-macro2",
3575 "quote",
3576 "serde",
3577 "sha2",
3578 "syn 2.0.110",
3579 "thiserror 1.0.69",
3580]
3581
3582[[package]]
3583name = "static_assertions"
3584version = "1.1.0"
3585source = "registry+https://github.com/rust-lang/crates.io-index"
3586checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3587
3588[[package]]
3589name = "string_cache"
3590version = "0.8.9"
3591source = "registry+https://github.com/rust-lang/crates.io-index"
3592checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f"
3593dependencies = [
3594 "new_debug_unreachable",
3595 "parking_lot",
3596 "phf_shared",
3597 "precomputed-hash",
3598 "serde",
3599]
3600
3601[[package]]
3602name = "string_cache_codegen"
3603version = "0.5.4"
3604source = "registry+https://github.com/rust-lang/crates.io-index"
3605checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0"
3606dependencies = [
3607 "phf_generator",
3608 "phf_shared",
3609 "proc-macro2",
3610 "quote",
3611]
3612
3613[[package]]
3614name = "strsim"
3615version = "0.11.1"
3616source = "registry+https://github.com/rust-lang/crates.io-index"
3617checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3618
3619[[package]]
3620name = "subtle"
3621version = "2.6.1"
3622source = "registry+https://github.com/rust-lang/crates.io-index"
3623checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3624
3625[[package]]
3626name = "supports-color"
3627version = "3.0.2"
3628source = "registry+https://github.com/rust-lang/crates.io-index"
3629checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
3630dependencies = [
3631 "is_ci",
3632]
3633
3634[[package]]
3635name = "supports-hyperlinks"
3636version = "3.1.0"
3637source = "registry+https://github.com/rust-lang/crates.io-index"
3638checksum = "804f44ed3c63152de6a9f90acbea1a110441de43006ea51bcce8f436196a288b"
3639
3640[[package]]
3641name = "supports-unicode"
3642version = "3.0.0"
3643source = "registry+https://github.com/rust-lang/crates.io-index"
3644checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
3645
3646[[package]]
3647name = "syn"
3648version = "1.0.109"
3649source = "registry+https://github.com/rust-lang/crates.io-index"
3650checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3651dependencies = [
3652 "proc-macro2",
3653 "quote",
3654 "unicode-ident",
3655]
3656
3657[[package]]
3658name = "syn"
3659version = "2.0.110"
3660source = "registry+https://github.com/rust-lang/crates.io-index"
3661checksum = "a99801b5bd34ede4cf3fc688c5919368fea4e4814a4664359503e6015b280aea"
3662dependencies = [
3663 "proc-macro2",
3664 "quote",
3665 "unicode-ident",
3666]
3667
3668[[package]]
3669name = "sync_wrapper"
3670version = "1.0.2"
3671source = "registry+https://github.com/rust-lang/crates.io-index"
3672checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3673dependencies = [
3674 "futures-core",
3675]
3676
3677[[package]]
3678name = "synstructure"
3679version = "0.13.2"
3680source = "registry+https://github.com/rust-lang/crates.io-index"
3681checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3682dependencies = [
3683 "proc-macro2",
3684 "quote",
3685 "syn 2.0.110",
3686]
3687
3688[[package]]
3689name = "system-configuration"
3690version = "0.6.1"
3691source = "registry+https://github.com/rust-lang/crates.io-index"
3692checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
3693dependencies = [
3694 "bitflags",
3695 "core-foundation 0.9.4",
3696 "system-configuration-sys",
3697]
3698
3699[[package]]
3700name = "system-configuration-sys"
3701version = "0.6.0"
3702source = "registry+https://github.com/rust-lang/crates.io-index"
3703checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3704dependencies = [
3705 "core-foundation-sys",
3706 "libc",
3707]
3708
3709[[package]]
3710name = "tagptr"
3711version = "0.2.0"
3712source = "registry+https://github.com/rust-lang/crates.io-index"
3713checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
3714
3715[[package]]
3716name = "tempfile"
3717version = "3.23.0"
3718source = "registry+https://github.com/rust-lang/crates.io-index"
3719checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3720dependencies = [
3721 "fastrand",
3722 "getrandom 0.3.4",
3723 "once_cell",
3724 "rustix",
3725 "windows-sys 0.61.2",
3726]
3727
3728[[package]]
3729name = "tendril"
3730version = "0.4.3"
3731source = "registry+https://github.com/rust-lang/crates.io-index"
3732checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
3733dependencies = [
3734 "futf",
3735 "mac",
3736 "utf-8",
3737]
3738
3739[[package]]
3740name = "terminal_size"
3741version = "0.4.3"
3742source = "registry+https://github.com/rust-lang/crates.io-index"
3743checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
3744dependencies = [
3745 "rustix",
3746 "windows-sys 0.60.2",
3747]
3748
3749[[package]]
3750name = "textwrap"
3751version = "0.16.2"
3752source = "registry+https://github.com/rust-lang/crates.io-index"
3753checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
3754dependencies = [
3755 "unicode-linebreak",
3756 "unicode-width 0.2.2",
3757]
3758
3759[[package]]
3760name = "thiserror"
3761version = "1.0.69"
3762source = "registry+https://github.com/rust-lang/crates.io-index"
3763checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3764dependencies = [
3765 "thiserror-impl 1.0.69",
3766]
3767
3768[[package]]
3769name = "thiserror"
3770version = "2.0.17"
3771source = "registry+https://github.com/rust-lang/crates.io-index"
3772checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3773dependencies = [
3774 "thiserror-impl 2.0.17",
3775]
3776
3777[[package]]
3778name = "thiserror-impl"
3779version = "1.0.69"
3780source = "registry+https://github.com/rust-lang/crates.io-index"
3781checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3782dependencies = [
3783 "proc-macro2",
3784 "quote",
3785 "syn 2.0.110",
3786]
3787
3788[[package]]
3789name = "thiserror-impl"
3790version = "2.0.17"
3791source = "registry+https://github.com/rust-lang/crates.io-index"
3792checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3793dependencies = [
3794 "proc-macro2",
3795 "quote",
3796 "syn 2.0.110",
3797]
3798
3799[[package]]
3800name = "thread_local"
3801version = "1.1.9"
3802source = "registry+https://github.com/rust-lang/crates.io-index"
3803checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
3804dependencies = [
3805 "cfg-if",
3806]
3807
3808[[package]]
3809name = "threadpool"
3810version = "1.8.1"
3811source = "registry+https://github.com/rust-lang/crates.io-index"
3812checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
3813dependencies = [
3814 "num_cpus",
3815]
3816
3817[[package]]
3818name = "time"
3819version = "0.3.44"
3820source = "registry+https://github.com/rust-lang/crates.io-index"
3821checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
3822dependencies = [
3823 "deranged",
3824 "itoa",
3825 "libc",
3826 "num-conv",
3827 "num_threads",
3828 "powerfmt",
3829 "serde",
3830 "time-core",
3831 "time-macros",
3832]
3833
3834[[package]]
3835name = "time-core"
3836version = "0.1.6"
3837source = "registry+https://github.com/rust-lang/crates.io-index"
3838checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
3839
3840[[package]]
3841name = "time-macros"
3842version = "0.2.24"
3843source = "registry+https://github.com/rust-lang/crates.io-index"
3844checksum = "30cfb0125f12d9c277f35663a0a33f8c30190f4e4574868a330595412d34ebf3"
3845dependencies = [
3846 "num-conv",
3847 "time-core",
3848]
3849
3850[[package]]
3851name = "tiny_http"
3852version = "0.12.0"
3853source = "registry+https://github.com/rust-lang/crates.io-index"
3854checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
3855dependencies = [
3856 "ascii",
3857 "chunked_transfer",
3858 "httpdate",
3859 "log",
3860]
3861
3862[[package]]
3863name = "tinystr"
3864version = "0.8.2"
3865source = "registry+https://github.com/rust-lang/crates.io-index"
3866checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869"
3867dependencies = [
3868 "displaydoc",
3869 "zerovec",
3870]
3871
3872[[package]]
3873name = "tinyvec"
3874version = "1.10.0"
3875source = "registry+https://github.com/rust-lang/crates.io-index"
3876checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3877dependencies = [
3878 "tinyvec_macros",
3879]
3880
3881[[package]]
3882name = "tinyvec_macros"
3883version = "0.1.1"
3884source = "registry+https://github.com/rust-lang/crates.io-index"
3885checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3886
3887[[package]]
3888name = "tokio"
3889version = "1.48.0"
3890source = "registry+https://github.com/rust-lang/crates.io-index"
3891checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3892dependencies = [
3893 "bytes",
3894 "libc",
3895 "mio",
3896 "parking_lot",
3897 "pin-project-lite",
3898 "signal-hook-registry",
3899 "socket2 0.6.1",
3900 "tokio-macros",
3901 "windows-sys 0.61.2",
3902]
3903
3904[[package]]
3905name = "tokio-macros"
3906version = "2.6.0"
3907source = "registry+https://github.com/rust-lang/crates.io-index"
3908checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3909dependencies = [
3910 "proc-macro2",
3911 "quote",
3912 "syn 2.0.110",
3913]
3914
3915[[package]]
3916name = "tokio-rustls"
3917version = "0.26.4"
3918source = "registry+https://github.com/rust-lang/crates.io-index"
3919checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3920dependencies = [
3921 "rustls",
3922 "tokio",
3923]
3924
3925[[package]]
3926name = "tokio-tungstenite"
3927version = "0.24.0"
3928source = "registry+https://github.com/rust-lang/crates.io-index"
3929checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9"
3930dependencies = [
3931 "futures-util",
3932 "log",
3933 "rustls",
3934 "rustls-native-certs",
3935 "rustls-pki-types",
3936 "tokio",
3937 "tokio-rustls",
3938 "tungstenite",
3939]
3940
3941[[package]]
3942name = "tokio-tungstenite-wasm"
3943version = "0.4.0"
3944source = "registry+https://github.com/rust-lang/crates.io-index"
3945checksum = "e21a5c399399c3db9f08d8297ac12b500e86bca82e930253fdc62eaf9c0de6ae"
3946dependencies = [
3947 "futures-channel",
3948 "futures-util",
3949 "http",
3950 "httparse",
3951 "js-sys",
3952 "rustls",
3953 "thiserror 1.0.69",
3954 "tokio",
3955 "tokio-tungstenite",
3956 "wasm-bindgen",
3957 "web-sys",
3958]
3959
3960[[package]]
3961name = "tokio-util"
3962version = "0.7.17"
3963source = "registry+https://github.com/rust-lang/crates.io-index"
3964checksum = "2efa149fe76073d6e8fd97ef4f4eca7b67f599660115591483572e406e165594"
3965dependencies = [
3966 "bytes",
3967 "futures-core",
3968 "futures-sink",
3969 "futures-util",
3970 "pin-project-lite",
3971 "tokio",
3972]
3973
3974[[package]]
3975name = "tower"
3976version = "0.4.13"
3977source = "registry+https://github.com/rust-lang/crates.io-index"
3978checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
3979dependencies = [
3980 "tower-layer",
3981 "tower-service",
3982 "tracing",
3983]
3984
3985[[package]]
3986name = "tower"
3987version = "0.5.2"
3988source = "registry+https://github.com/rust-lang/crates.io-index"
3989checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3990dependencies = [
3991 "futures-core",
3992 "futures-util",
3993 "pin-project-lite",
3994 "sync_wrapper",
3995 "tokio",
3996 "tower-layer",
3997 "tower-service",
3998 "tracing",
3999]
4000
4001[[package]]
4002name = "tower-http"
4003version = "0.5.2"
4004source = "registry+https://github.com/rust-lang/crates.io-index"
4005checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
4006dependencies = [
4007 "async-compression",
4008 "bitflags",
4009 "bytes",
4010 "futures-core",
4011 "futures-util",
4012 "http",
4013 "http-body",
4014 "http-body-util",
4015 "http-range-header",
4016 "httpdate",
4017 "mime",
4018 "mime_guess",
4019 "percent-encoding",
4020 "pin-project-lite",
4021 "tokio",
4022 "tokio-util",
4023 "tower-layer",
4024 "tower-service",
4025 "tracing",
4026]
4027
4028[[package]]
4029name = "tower-http"
4030version = "0.6.6"
4031source = "registry+https://github.com/rust-lang/crates.io-index"
4032checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
4033dependencies = [
4034 "bitflags",
4035 "bytes",
4036 "futures-util",
4037 "http",
4038 "http-body",
4039 "iri-string",
4040 "pin-project-lite",
4041 "tower 0.5.2",
4042 "tower-layer",
4043 "tower-service",
4044]
4045
4046[[package]]
4047name = "tower-layer"
4048version = "0.3.3"
4049source = "registry+https://github.com/rust-lang/crates.io-index"
4050checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
4051
4052[[package]]
4053name = "tower-service"
4054version = "0.3.3"
4055source = "registry+https://github.com/rust-lang/crates.io-index"
4056checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
4057
4058[[package]]
4059name = "tracing"
4060version = "0.1.41"
4061source = "registry+https://github.com/rust-lang/crates.io-index"
4062checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
4063dependencies = [
4064 "log",
4065 "pin-project-lite",
4066 "tracing-attributes",
4067 "tracing-core",
4068]
4069
4070[[package]]
4071name = "tracing-attributes"
4072version = "0.1.30"
4073source = "registry+https://github.com/rust-lang/crates.io-index"
4074checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
4075dependencies = [
4076 "proc-macro2",
4077 "quote",
4078 "syn 2.0.110",
4079]
4080
4081[[package]]
4082name = "tracing-core"
4083version = "0.1.34"
4084source = "registry+https://github.com/rust-lang/crates.io-index"
4085checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
4086dependencies = [
4087 "once_cell",
4088 "valuable",
4089]
4090
4091[[package]]
4092name = "tracing-log"
4093version = "0.2.0"
4094source = "registry+https://github.com/rust-lang/crates.io-index"
4095checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
4096dependencies = [
4097 "log",
4098 "once_cell",
4099 "tracing-core",
4100]
4101
4102[[package]]
4103name = "tracing-subscriber"
4104version = "0.3.20"
4105source = "registry+https://github.com/rust-lang/crates.io-index"
4106checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
4107dependencies = [
4108 "matchers",
4109 "nu-ansi-term",
4110 "once_cell",
4111 "regex-automata",
4112 "sharded-slab",
4113 "smallvec",
4114 "thread_local",
4115 "tracing",
4116 "tracing-core",
4117 "tracing-log",
4118]
4119
4120[[package]]
4121name = "trait-variant"
4122version = "0.1.2"
4123source = "registry+https://github.com/rust-lang/crates.io-index"
4124checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
4125dependencies = [
4126 "proc-macro2",
4127 "quote",
4128 "syn 2.0.110",
4129]
4130
4131[[package]]
4132name = "triomphe"
4133version = "0.1.15"
4134source = "registry+https://github.com/rust-lang/crates.io-index"
4135checksum = "dd69c5aa8f924c7519d6372789a74eac5b94fb0f8fcf0d4a97eb0bfc3e785f39"
4136
4137[[package]]
4138name = "try-lock"
4139version = "0.2.5"
4140source = "registry+https://github.com/rust-lang/crates.io-index"
4141checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
4142
4143[[package]]
4144name = "tungstenite"
4145version = "0.24.0"
4146source = "registry+https://github.com/rust-lang/crates.io-index"
4147checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a"
4148dependencies = [
4149 "byteorder",
4150 "bytes",
4151 "data-encoding",
4152 "http",
4153 "httparse",
4154 "log",
4155 "rand 0.8.5",
4156 "rustls",
4157 "rustls-pki-types",
4158 "sha1",
4159 "thiserror 1.0.69",
4160 "utf-8",
4161]
4162
4163[[package]]
4164name = "twoway"
4165version = "0.1.8"
4166source = "registry+https://github.com/rust-lang/crates.io-index"
4167checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1"
4168dependencies = [
4169 "memchr",
4170]
4171
4172[[package]]
4173name = "typenum"
4174version = "1.19.0"
4175source = "registry+https://github.com/rust-lang/crates.io-index"
4176checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
4177
4178[[package]]
4179name = "unicase"
4180version = "2.8.1"
4181source = "registry+https://github.com/rust-lang/crates.io-index"
4182checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
4183
4184[[package]]
4185name = "unicode-ident"
4186version = "1.0.22"
4187source = "registry+https://github.com/rust-lang/crates.io-index"
4188checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5"
4189
4190[[package]]
4191name = "unicode-linebreak"
4192version = "0.1.5"
4193source = "registry+https://github.com/rust-lang/crates.io-index"
4194checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
4195
4196[[package]]
4197name = "unicode-segmentation"
4198version = "1.12.0"
4199source = "registry+https://github.com/rust-lang/crates.io-index"
4200checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
4201
4202[[package]]
4203name = "unicode-width"
4204version = "0.1.14"
4205source = "registry+https://github.com/rust-lang/crates.io-index"
4206checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
4207
4208[[package]]
4209name = "unicode-width"
4210version = "0.2.2"
4211source = "registry+https://github.com/rust-lang/crates.io-index"
4212checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
4213
4214[[package]]
4215name = "unicode-xid"
4216version = "0.2.6"
4217source = "registry+https://github.com/rust-lang/crates.io-index"
4218checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
4219
4220[[package]]
4221name = "unsigned-varint"
4222version = "0.8.0"
4223source = "registry+https://github.com/rust-lang/crates.io-index"
4224checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
4225
4226[[package]]
4227name = "untrusted"
4228version = "0.9.0"
4229source = "registry+https://github.com/rust-lang/crates.io-index"
4230checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
4231
4232[[package]]
4233name = "url"
4234version = "2.5.7"
4235source = "registry+https://github.com/rust-lang/crates.io-index"
4236checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
4237dependencies = [
4238 "form_urlencoded",
4239 "idna",
4240 "percent-encoding",
4241 "serde",
4242]
4243
4244[[package]]
4245name = "urlencoding"
4246version = "2.1.3"
4247source = "registry+https://github.com/rust-lang/crates.io-index"
4248checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
4249
4250[[package]]
4251name = "utf-8"
4252version = "0.7.6"
4253source = "registry+https://github.com/rust-lang/crates.io-index"
4254checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
4255
4256[[package]]
4257name = "utf8_iter"
4258version = "1.0.4"
4259source = "registry+https://github.com/rust-lang/crates.io-index"
4260checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
4261
4262[[package]]
4263name = "utf8parse"
4264version = "0.2.2"
4265source = "registry+https://github.com/rust-lang/crates.io-index"
4266checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
4267
4268[[package]]
4269name = "valuable"
4270version = "0.1.1"
4271source = "registry+https://github.com/rust-lang/crates.io-index"
4272checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
4273
4274[[package]]
4275name = "version_check"
4276version = "0.9.5"
4277source = "registry+https://github.com/rust-lang/crates.io-index"
4278checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
4279
4280[[package]]
4281name = "walkdir"
4282version = "2.5.0"
4283source = "registry+https://github.com/rust-lang/crates.io-index"
4284checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
4285dependencies = [
4286 "same-file",
4287 "winapi-util",
4288]
4289
4290[[package]]
4291name = "want"
4292version = "0.3.1"
4293source = "registry+https://github.com/rust-lang/crates.io-index"
4294checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
4295dependencies = [
4296 "try-lock",
4297]
4298
4299[[package]]
4300name = "wasi"
4301version = "0.11.1+wasi-snapshot-preview1"
4302source = "registry+https://github.com/rust-lang/crates.io-index"
4303checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
4304
4305[[package]]
4306name = "wasip2"
4307version = "1.0.1+wasi-0.2.4"
4308source = "registry+https://github.com/rust-lang/crates.io-index"
4309checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
4310dependencies = [
4311 "wit-bindgen",
4312]
4313
4314[[package]]
4315name = "wasm-bindgen"
4316version = "0.2.105"
4317source = "registry+https://github.com/rust-lang/crates.io-index"
4318checksum = "da95793dfc411fbbd93f5be7715b0578ec61fe87cb1a42b12eb625caa5c5ea60"
4319dependencies = [
4320 "cfg-if",
4321 "once_cell",
4322 "rustversion",
4323 "wasm-bindgen-macro",
4324 "wasm-bindgen-shared",
4325]
4326
4327[[package]]
4328name = "wasm-bindgen-futures"
4329version = "0.4.55"
4330source = "registry+https://github.com/rust-lang/crates.io-index"
4331checksum = "551f88106c6d5e7ccc7cd9a16f312dd3b5d36ea8b4954304657d5dfba115d4a0"
4332dependencies = [
4333 "cfg-if",
4334 "js-sys",
4335 "once_cell",
4336 "wasm-bindgen",
4337 "web-sys",
4338]
4339
4340[[package]]
4341name = "wasm-bindgen-macro"
4342version = "0.2.105"
4343source = "registry+https://github.com/rust-lang/crates.io-index"
4344checksum = "04264334509e04a7bf8690f2384ef5265f05143a4bff3889ab7a3269adab59c2"
4345dependencies = [
4346 "quote",
4347 "wasm-bindgen-macro-support",
4348]
4349
4350[[package]]
4351name = "wasm-bindgen-macro-support"
4352version = "0.2.105"
4353source = "registry+https://github.com/rust-lang/crates.io-index"
4354checksum = "420bc339d9f322e562942d52e115d57e950d12d88983a14c79b86859ee6c7ebc"
4355dependencies = [
4356 "bumpalo",
4357 "proc-macro2",
4358 "quote",
4359 "syn 2.0.110",
4360 "wasm-bindgen-shared",
4361]
4362
4363[[package]]
4364name = "wasm-bindgen-shared"
4365version = "0.2.105"
4366source = "registry+https://github.com/rust-lang/crates.io-index"
4367checksum = "76f218a38c84bcb33c25ec7059b07847d465ce0e0a76b995e134a45adcb6af76"
4368dependencies = [
4369 "unicode-ident",
4370]
4371
4372[[package]]
4373name = "wasm-streams"
4374version = "0.4.2"
4375source = "registry+https://github.com/rust-lang/crates.io-index"
4376checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
4377dependencies = [
4378 "futures-util",
4379 "js-sys",
4380 "wasm-bindgen",
4381 "wasm-bindgen-futures",
4382 "web-sys",
4383]
4384
4385[[package]]
4386name = "web-sys"
4387version = "0.3.82"
4388source = "registry+https://github.com/rust-lang/crates.io-index"
4389checksum = "3a1f95c0d03a47f4ae1f7a64643a6bb97465d9b740f0fa8f90ea33915c99a9a1"
4390dependencies = [
4391 "js-sys",
4392 "wasm-bindgen",
4393]
4394
4395[[package]]
4396name = "web-time"
4397version = "1.1.0"
4398source = "registry+https://github.com/rust-lang/crates.io-index"
4399checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
4400dependencies = [
4401 "js-sys",
4402 "wasm-bindgen",
4403]
4404
4405[[package]]
4406name = "webbrowser"
4407version = "1.0.6"
4408source = "registry+https://github.com/rust-lang/crates.io-index"
4409checksum = "00f1243ef785213e3a32fa0396093424a3a6ea566f9948497e5a2309261a4c97"
4410dependencies = [
4411 "core-foundation 0.10.1",
4412 "jni",
4413 "log",
4414 "ndk-context",
4415 "objc2",
4416 "objc2-foundation",
4417 "url",
4418 "web-sys",
4419]
4420
4421[[package]]
4422name = "webpage"
4423version = "2.0.1"
4424source = "registry+https://github.com/rust-lang/crates.io-index"
4425checksum = "70862efc041d46e6bbaa82bb9c34ae0596d090e86cbd14bd9e93b36ee6802eac"
4426dependencies = [
4427 "html5ever",
4428 "markup5ever_rcdom",
4429 "serde_json",
4430 "url",
4431]
4432
4433[[package]]
4434name = "webpki-roots"
4435version = "1.0.4"
4436source = "registry+https://github.com/rust-lang/crates.io-index"
4437checksum = "b2878ef029c47c6e8cf779119f20fcf52bde7ad42a731b2a304bc221df17571e"
4438dependencies = [
4439 "rustls-pki-types",
4440]
4441
4442[[package]]
4443name = "widestring"
4444version = "1.2.1"
4445source = "registry+https://github.com/rust-lang/crates.io-index"
4446checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
4447
4448[[package]]
4449name = "winapi-util"
4450version = "0.1.11"
4451source = "registry+https://github.com/rust-lang/crates.io-index"
4452checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
4453dependencies = [
4454 "windows-sys 0.61.2",
4455]
4456
4457[[package]]
4458name = "windows"
4459version = "0.61.3"
4460source = "registry+https://github.com/rust-lang/crates.io-index"
4461checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893"
4462dependencies = [
4463 "windows-collections",
4464 "windows-core 0.61.2",
4465 "windows-future",
4466 "windows-link 0.1.3",
4467 "windows-numerics",
4468]
4469
4470[[package]]
4471name = "windows-collections"
4472version = "0.2.0"
4473source = "registry+https://github.com/rust-lang/crates.io-index"
4474checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8"
4475dependencies = [
4476 "windows-core 0.61.2",
4477]
4478
4479[[package]]
4480name = "windows-core"
4481version = "0.61.2"
4482source = "registry+https://github.com/rust-lang/crates.io-index"
4483checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
4484dependencies = [
4485 "windows-implement",
4486 "windows-interface",
4487 "windows-link 0.1.3",
4488 "windows-result 0.3.4",
4489 "windows-strings 0.4.2",
4490]
4491
4492[[package]]
4493name = "windows-core"
4494version = "0.62.2"
4495source = "registry+https://github.com/rust-lang/crates.io-index"
4496checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
4497dependencies = [
4498 "windows-implement",
4499 "windows-interface",
4500 "windows-link 0.2.1",
4501 "windows-result 0.4.1",
4502 "windows-strings 0.5.1",
4503]
4504
4505[[package]]
4506name = "windows-future"
4507version = "0.2.1"
4508source = "registry+https://github.com/rust-lang/crates.io-index"
4509checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e"
4510dependencies = [
4511 "windows-core 0.61.2",
4512 "windows-link 0.1.3",
4513 "windows-threading",
4514]
4515
4516[[package]]
4517name = "windows-implement"
4518version = "0.60.2"
4519source = "registry+https://github.com/rust-lang/crates.io-index"
4520checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
4521dependencies = [
4522 "proc-macro2",
4523 "quote",
4524 "syn 2.0.110",
4525]
4526
4527[[package]]
4528name = "windows-interface"
4529version = "0.59.3"
4530source = "registry+https://github.com/rust-lang/crates.io-index"
4531checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
4532dependencies = [
4533 "proc-macro2",
4534 "quote",
4535 "syn 2.0.110",
4536]
4537
4538[[package]]
4539name = "windows-link"
4540version = "0.1.3"
4541source = "registry+https://github.com/rust-lang/crates.io-index"
4542checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
4543
4544[[package]]
4545name = "windows-link"
4546version = "0.2.1"
4547source = "registry+https://github.com/rust-lang/crates.io-index"
4548checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
4549
4550[[package]]
4551name = "windows-numerics"
4552version = "0.2.0"
4553source = "registry+https://github.com/rust-lang/crates.io-index"
4554checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1"
4555dependencies = [
4556 "windows-core 0.61.2",
4557 "windows-link 0.1.3",
4558]
4559
4560[[package]]
4561name = "windows-registry"
4562version = "0.5.3"
4563source = "registry+https://github.com/rust-lang/crates.io-index"
4564checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
4565dependencies = [
4566 "windows-link 0.1.3",
4567 "windows-result 0.3.4",
4568 "windows-strings 0.4.2",
4569]
4570
4571[[package]]
4572name = "windows-result"
4573version = "0.3.4"
4574source = "registry+https://github.com/rust-lang/crates.io-index"
4575checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
4576dependencies = [
4577 "windows-link 0.1.3",
4578]
4579
4580[[package]]
4581name = "windows-result"
4582version = "0.4.1"
4583source = "registry+https://github.com/rust-lang/crates.io-index"
4584checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
4585dependencies = [
4586 "windows-link 0.2.1",
4587]
4588
4589[[package]]
4590name = "windows-strings"
4591version = "0.4.2"
4592source = "registry+https://github.com/rust-lang/crates.io-index"
4593checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
4594dependencies = [
4595 "windows-link 0.1.3",
4596]
4597
4598[[package]]
4599name = "windows-strings"
4600version = "0.5.1"
4601source = "registry+https://github.com/rust-lang/crates.io-index"
4602checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4603dependencies = [
4604 "windows-link 0.2.1",
4605]
4606
4607[[package]]
4608name = "windows-sys"
4609version = "0.45.0"
4610source = "registry+https://github.com/rust-lang/crates.io-index"
4611checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4612dependencies = [
4613 "windows-targets 0.42.2",
4614]
4615
4616[[package]]
4617name = "windows-sys"
4618version = "0.48.0"
4619source = "registry+https://github.com/rust-lang/crates.io-index"
4620checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4621dependencies = [
4622 "windows-targets 0.48.5",
4623]
4624
4625[[package]]
4626name = "windows-sys"
4627version = "0.52.0"
4628source = "registry+https://github.com/rust-lang/crates.io-index"
4629checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4630dependencies = [
4631 "windows-targets 0.52.6",
4632]
4633
4634[[package]]
4635name = "windows-sys"
4636version = "0.60.2"
4637source = "registry+https://github.com/rust-lang/crates.io-index"
4638checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4639dependencies = [
4640 "windows-targets 0.53.5",
4641]
4642
4643[[package]]
4644name = "windows-sys"
4645version = "0.61.2"
4646source = "registry+https://github.com/rust-lang/crates.io-index"
4647checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4648dependencies = [
4649 "windows-link 0.2.1",
4650]
4651
4652[[package]]
4653name = "windows-targets"
4654version = "0.42.2"
4655source = "registry+https://github.com/rust-lang/crates.io-index"
4656checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4657dependencies = [
4658 "windows_aarch64_gnullvm 0.42.2",
4659 "windows_aarch64_msvc 0.42.2",
4660 "windows_i686_gnu 0.42.2",
4661 "windows_i686_msvc 0.42.2",
4662 "windows_x86_64_gnu 0.42.2",
4663 "windows_x86_64_gnullvm 0.42.2",
4664 "windows_x86_64_msvc 0.42.2",
4665]
4666
4667[[package]]
4668name = "windows-targets"
4669version = "0.48.5"
4670source = "registry+https://github.com/rust-lang/crates.io-index"
4671checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4672dependencies = [
4673 "windows_aarch64_gnullvm 0.48.5",
4674 "windows_aarch64_msvc 0.48.5",
4675 "windows_i686_gnu 0.48.5",
4676 "windows_i686_msvc 0.48.5",
4677 "windows_x86_64_gnu 0.48.5",
4678 "windows_x86_64_gnullvm 0.48.5",
4679 "windows_x86_64_msvc 0.48.5",
4680]
4681
4682[[package]]
4683name = "windows-targets"
4684version = "0.52.6"
4685source = "registry+https://github.com/rust-lang/crates.io-index"
4686checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4687dependencies = [
4688 "windows_aarch64_gnullvm 0.52.6",
4689 "windows_aarch64_msvc 0.52.6",
4690 "windows_i686_gnu 0.52.6",
4691 "windows_i686_gnullvm 0.52.6",
4692 "windows_i686_msvc 0.52.6",
4693 "windows_x86_64_gnu 0.52.6",
4694 "windows_x86_64_gnullvm 0.52.6",
4695 "windows_x86_64_msvc 0.52.6",
4696]
4697
4698[[package]]
4699name = "windows-targets"
4700version = "0.53.5"
4701source = "registry+https://github.com/rust-lang/crates.io-index"
4702checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4703dependencies = [
4704 "windows-link 0.2.1",
4705 "windows_aarch64_gnullvm 0.53.1",
4706 "windows_aarch64_msvc 0.53.1",
4707 "windows_i686_gnu 0.53.1",
4708 "windows_i686_gnullvm 0.53.1",
4709 "windows_i686_msvc 0.53.1",
4710 "windows_x86_64_gnu 0.53.1",
4711 "windows_x86_64_gnullvm 0.53.1",
4712 "windows_x86_64_msvc 0.53.1",
4713]
4714
4715[[package]]
4716name = "windows-threading"
4717version = "0.1.0"
4718source = "registry+https://github.com/rust-lang/crates.io-index"
4719checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6"
4720dependencies = [
4721 "windows-link 0.1.3",
4722]
4723
4724[[package]]
4725name = "windows_aarch64_gnullvm"
4726version = "0.42.2"
4727source = "registry+https://github.com/rust-lang/crates.io-index"
4728checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4729
4730[[package]]
4731name = "windows_aarch64_gnullvm"
4732version = "0.48.5"
4733source = "registry+https://github.com/rust-lang/crates.io-index"
4734checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4735
4736[[package]]
4737name = "windows_aarch64_gnullvm"
4738version = "0.52.6"
4739source = "registry+https://github.com/rust-lang/crates.io-index"
4740checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4741
4742[[package]]
4743name = "windows_aarch64_gnullvm"
4744version = "0.53.1"
4745source = "registry+https://github.com/rust-lang/crates.io-index"
4746checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4747
4748[[package]]
4749name = "windows_aarch64_msvc"
4750version = "0.42.2"
4751source = "registry+https://github.com/rust-lang/crates.io-index"
4752checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4753
4754[[package]]
4755name = "windows_aarch64_msvc"
4756version = "0.48.5"
4757source = "registry+https://github.com/rust-lang/crates.io-index"
4758checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4759
4760[[package]]
4761name = "windows_aarch64_msvc"
4762version = "0.52.6"
4763source = "registry+https://github.com/rust-lang/crates.io-index"
4764checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4765
4766[[package]]
4767name = "windows_aarch64_msvc"
4768version = "0.53.1"
4769source = "registry+https://github.com/rust-lang/crates.io-index"
4770checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4771
4772[[package]]
4773name = "windows_i686_gnu"
4774version = "0.42.2"
4775source = "registry+https://github.com/rust-lang/crates.io-index"
4776checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4777
4778[[package]]
4779name = "windows_i686_gnu"
4780version = "0.48.5"
4781source = "registry+https://github.com/rust-lang/crates.io-index"
4782checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4783
4784[[package]]
4785name = "windows_i686_gnu"
4786version = "0.52.6"
4787source = "registry+https://github.com/rust-lang/crates.io-index"
4788checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4789
4790[[package]]
4791name = "windows_i686_gnu"
4792version = "0.53.1"
4793source = "registry+https://github.com/rust-lang/crates.io-index"
4794checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4795
4796[[package]]
4797name = "windows_i686_gnullvm"
4798version = "0.52.6"
4799source = "registry+https://github.com/rust-lang/crates.io-index"
4800checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4801
4802[[package]]
4803name = "windows_i686_gnullvm"
4804version = "0.53.1"
4805source = "registry+https://github.com/rust-lang/crates.io-index"
4806checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4807
4808[[package]]
4809name = "windows_i686_msvc"
4810version = "0.42.2"
4811source = "registry+https://github.com/rust-lang/crates.io-index"
4812checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4813
4814[[package]]
4815name = "windows_i686_msvc"
4816version = "0.48.5"
4817source = "registry+https://github.com/rust-lang/crates.io-index"
4818checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4819
4820[[package]]
4821name = "windows_i686_msvc"
4822version = "0.52.6"
4823source = "registry+https://github.com/rust-lang/crates.io-index"
4824checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4825
4826[[package]]
4827name = "windows_i686_msvc"
4828version = "0.53.1"
4829source = "registry+https://github.com/rust-lang/crates.io-index"
4830checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4831
4832[[package]]
4833name = "windows_x86_64_gnu"
4834version = "0.42.2"
4835source = "registry+https://github.com/rust-lang/crates.io-index"
4836checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4837
4838[[package]]
4839name = "windows_x86_64_gnu"
4840version = "0.48.5"
4841source = "registry+https://github.com/rust-lang/crates.io-index"
4842checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4843
4844[[package]]
4845name = "windows_x86_64_gnu"
4846version = "0.52.6"
4847source = "registry+https://github.com/rust-lang/crates.io-index"
4848checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4849
4850[[package]]
4851name = "windows_x86_64_gnu"
4852version = "0.53.1"
4853source = "registry+https://github.com/rust-lang/crates.io-index"
4854checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4855
4856[[package]]
4857name = "windows_x86_64_gnullvm"
4858version = "0.42.2"
4859source = "registry+https://github.com/rust-lang/crates.io-index"
4860checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4861
4862[[package]]
4863name = "windows_x86_64_gnullvm"
4864version = "0.48.5"
4865source = "registry+https://github.com/rust-lang/crates.io-index"
4866checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4867
4868[[package]]
4869name = "windows_x86_64_gnullvm"
4870version = "0.52.6"
4871source = "registry+https://github.com/rust-lang/crates.io-index"
4872checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4873
4874[[package]]
4875name = "windows_x86_64_gnullvm"
4876version = "0.53.1"
4877source = "registry+https://github.com/rust-lang/crates.io-index"
4878checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4879
4880[[package]]
4881name = "windows_x86_64_msvc"
4882version = "0.42.2"
4883source = "registry+https://github.com/rust-lang/crates.io-index"
4884checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4885
4886[[package]]
4887name = "windows_x86_64_msvc"
4888version = "0.48.5"
4889source = "registry+https://github.com/rust-lang/crates.io-index"
4890checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4891
4892[[package]]
4893name = "windows_x86_64_msvc"
4894version = "0.52.6"
4895source = "registry+https://github.com/rust-lang/crates.io-index"
4896checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4897
4898[[package]]
4899name = "windows_x86_64_msvc"
4900version = "0.53.1"
4901source = "registry+https://github.com/rust-lang/crates.io-index"
4902checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4903
4904[[package]]
4905name = "winreg"
4906version = "0.50.0"
4907source = "registry+https://github.com/rust-lang/crates.io-index"
4908checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
4909dependencies = [
4910 "cfg-if",
4911 "windows-sys 0.48.0",
4912]
4913
4914[[package]]
4915name = "wisp-cli"
4916version = "0.2.0"
4917dependencies = [
4918 "axum",
4919 "base64 0.22.1",
4920 "bytes",
4921 "chrono",
4922 "clap",
4923 "flate2",
4924 "futures",
4925 "jacquard",
4926 "jacquard-api",
4927 "jacquard-common",
4928 "jacquard-derive",
4929 "jacquard-identity",
4930 "jacquard-lexicon",
4931 "jacquard-oauth",
4932 "miette",
4933 "mime_guess",
4934 "multibase",
4935 "multihash",
4936 "n0-future",
4937 "reqwest",
4938 "rustversion",
4939 "serde",
4940 "serde_json",
4941 "sha2",
4942 "shellexpand",
4943 "tokio",
4944 "tower 0.4.13",
4945 "tower-http 0.5.2",
4946 "url",
4947 "walkdir",
4948]
4949
4950[[package]]
4951name = "wit-bindgen"
4952version = "0.46.0"
4953source = "registry+https://github.com/rust-lang/crates.io-index"
4954checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4955
4956[[package]]
4957name = "writeable"
4958version = "0.6.2"
4959source = "registry+https://github.com/rust-lang/crates.io-index"
4960checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9"
4961
4962[[package]]
4963name = "xml5ever"
4964version = "0.18.1"
4965source = "registry+https://github.com/rust-lang/crates.io-index"
4966checksum = "9bbb26405d8e919bc1547a5aa9abc95cbfa438f04844f5fdd9dc7596b748bf69"
4967dependencies = [
4968 "log",
4969 "mac",
4970 "markup5ever",
4971]
4972
4973[[package]]
4974name = "yansi"
4975version = "1.0.1"
4976source = "registry+https://github.com/rust-lang/crates.io-index"
4977checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4978
4979[[package]]
4980name = "yoke"
4981version = "0.8.1"
4982source = "registry+https://github.com/rust-lang/crates.io-index"
4983checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954"
4984dependencies = [
4985 "stable_deref_trait",
4986 "yoke-derive",
4987 "zerofrom",
4988]
4989
4990[[package]]
4991name = "yoke-derive"
4992version = "0.8.1"
4993source = "registry+https://github.com/rust-lang/crates.io-index"
4994checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d"
4995dependencies = [
4996 "proc-macro2",
4997 "quote",
4998 "syn 2.0.110",
4999 "synstructure",
5000]
5001
5002[[package]]
5003name = "zerocopy"
5004version = "0.8.27"
5005source = "registry+https://github.com/rust-lang/crates.io-index"
5006checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
5007dependencies = [
5008 "zerocopy-derive",
5009]
5010
5011[[package]]
5012name = "zerocopy-derive"
5013version = "0.8.27"
5014source = "registry+https://github.com/rust-lang/crates.io-index"
5015checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
5016dependencies = [
5017 "proc-macro2",
5018 "quote",
5019 "syn 2.0.110",
5020]
5021
5022[[package]]
5023name = "zerofrom"
5024version = "0.1.6"
5025source = "registry+https://github.com/rust-lang/crates.io-index"
5026checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
5027dependencies = [
5028 "zerofrom-derive",
5029]
5030
5031[[package]]
5032name = "zerofrom-derive"
5033version = "0.1.6"
5034source = "registry+https://github.com/rust-lang/crates.io-index"
5035checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
5036dependencies = [
5037 "proc-macro2",
5038 "quote",
5039 "syn 2.0.110",
5040 "synstructure",
5041]
5042
5043[[package]]
5044name = "zeroize"
5045version = "1.8.2"
5046source = "registry+https://github.com/rust-lang/crates.io-index"
5047checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
5048dependencies = [
5049 "serde",
5050]
5051
5052[[package]]
5053name = "zerotrie"
5054version = "0.2.3"
5055source = "registry+https://github.com/rust-lang/crates.io-index"
5056checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851"
5057dependencies = [
5058 "displaydoc",
5059 "yoke",
5060 "zerofrom",
5061]
5062
5063[[package]]
5064name = "zerovec"
5065version = "0.11.5"
5066source = "registry+https://github.com/rust-lang/crates.io-index"
5067checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002"
5068dependencies = [
5069 "yoke",
5070 "zerofrom",
5071 "zerovec-derive",
5072]
5073
5074[[package]]
5075name = "zerovec-derive"
5076version = "0.11.2"
5077source = "registry+https://github.com/rust-lang/crates.io-index"
5078checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3"
5079dependencies = [
5080 "proc-macro2",
5081 "quote",
5082 "syn 2.0.110",
5083]