[WIP] A (somewhat barebones) atproto app for creating custom sites without hosting!
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.3"
48source = "registry+https://github.com/rust-lang/crates.io-index"
49checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
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.32"
143source = "registry+https://github.com/rust-lang/crates.io-index"
144checksum = "5a89bce6054c720275ac2432fbba080a66a2106a44a1b804553930ca6909f4e0"
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.106",
162]
163
164[[package]]
165name = "atcities-upload"
166version = "0.1.0"
167dependencies = [
168 "clap",
169 "env_logger",
170 "ignore",
171 "jacquard",
172 "lexicons",
173 "miette",
174 "mime_guess",
175 "regex",
176 "reqwest",
177 "thiserror 2.0.17",
178 "tokio",
179]
180
181[[package]]
182name = "atomic-waker"
183version = "1.1.2"
184source = "registry+https://github.com/rust-lang/crates.io-index"
185checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
186
187[[package]]
188name = "autocfg"
189version = "1.5.0"
190source = "registry+https://github.com/rust-lang/crates.io-index"
191checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
192
193[[package]]
194name = "backtrace"
195version = "0.3.76"
196source = "registry+https://github.com/rust-lang/crates.io-index"
197checksum = "bb531853791a215d7c62a30daf0dde835f381ab5de4589cfe7c649d2cbe92bd6"
198dependencies = [
199 "addr2line",
200 "cfg-if",
201 "libc",
202 "miniz_oxide",
203 "object",
204 "rustc-demangle",
205 "windows-link 0.2.1",
206]
207
208[[package]]
209name = "backtrace-ext"
210version = "0.2.1"
211source = "registry+https://github.com/rust-lang/crates.io-index"
212checksum = "537beee3be4a18fb023b570f80e3ae28003db9167a751266b259926e25539d50"
213dependencies = [
214 "backtrace",
215]
216
217[[package]]
218name = "base-x"
219version = "0.2.11"
220source = "registry+https://github.com/rust-lang/crates.io-index"
221checksum = "4cbbc9d0964165b47557570cce6c952866c2678457aca742aafc9fb771d30270"
222
223[[package]]
224name = "base16ct"
225version = "0.2.0"
226source = "registry+https://github.com/rust-lang/crates.io-index"
227checksum = "4c7f02d4ea65f2c1853089ffd8d2787bdbc63de2f0d29dedbcf8ccdfa0ccd4cf"
228
229[[package]]
230name = "base256emoji"
231version = "1.0.2"
232source = "registry+https://github.com/rust-lang/crates.io-index"
233checksum = "b5e9430d9a245a77c92176e649af6e275f20839a48389859d1661e9a128d077c"
234dependencies = [
235 "const-str",
236 "match-lookup",
237]
238
239[[package]]
240name = "base64"
241version = "0.13.1"
242source = "registry+https://github.com/rust-lang/crates.io-index"
243checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
244
245[[package]]
246name = "base64"
247version = "0.22.1"
248source = "registry+https://github.com/rust-lang/crates.io-index"
249checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
250
251[[package]]
252name = "base64ct"
253version = "1.8.0"
254source = "registry+https://github.com/rust-lang/crates.io-index"
255checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
256
257[[package]]
258name = "bitflags"
259version = "2.9.4"
260source = "registry+https://github.com/rust-lang/crates.io-index"
261checksum = "2261d10cca569e4643e526d8dc2e62e433cc8aba21ab764233731f8d369bf394"
262
263[[package]]
264name = "block-buffer"
265version = "0.10.4"
266source = "registry+https://github.com/rust-lang/crates.io-index"
267checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
268dependencies = [
269 "generic-array",
270]
271
272[[package]]
273name = "bon"
274version = "3.8.1"
275source = "registry+https://github.com/rust-lang/crates.io-index"
276checksum = "ebeb9aaf9329dff6ceb65c689ca3db33dbf15f324909c60e4e5eef5701ce31b1"
277dependencies = [
278 "bon-macros",
279 "rustversion",
280]
281
282[[package]]
283name = "bon-macros"
284version = "3.8.1"
285source = "registry+https://github.com/rust-lang/crates.io-index"
286checksum = "77e9d642a7e3a318e37c2c9427b5a6a48aa1ad55dcd986f3034ab2239045a645"
287dependencies = [
288 "darling",
289 "ident_case",
290 "prettyplease",
291 "proc-macro2",
292 "quote",
293 "rustversion",
294 "syn 2.0.106",
295]
296
297[[package]]
298name = "borsh"
299version = "1.5.7"
300source = "registry+https://github.com/rust-lang/crates.io-index"
301checksum = "ad8646f98db542e39fc66e68a20b2144f6a732636df7c2354e74645faaa433ce"
302dependencies = [
303 "cfg_aliases",
304]
305
306[[package]]
307name = "brotli"
308version = "3.5.0"
309source = "registry+https://github.com/rust-lang/crates.io-index"
310checksum = "d640d25bc63c50fb1f0b545ffd80207d2e10a4c965530809b40ba3386825c391"
311dependencies = [
312 "alloc-no-stdlib",
313 "alloc-stdlib",
314 "brotli-decompressor",
315]
316
317[[package]]
318name = "brotli-decompressor"
319version = "2.5.1"
320source = "registry+https://github.com/rust-lang/crates.io-index"
321checksum = "4e2e4afe60d7dd600fdd3de8d0f08c2b7ec039712e3b6137ff98b7004e82de4f"
322dependencies = [
323 "alloc-no-stdlib",
324 "alloc-stdlib",
325]
326
327[[package]]
328name = "bstr"
329version = "1.12.0"
330source = "registry+https://github.com/rust-lang/crates.io-index"
331checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
332dependencies = [
333 "memchr",
334 "serde",
335]
336
337[[package]]
338name = "btree-range-map"
339version = "0.7.2"
340source = "registry+https://github.com/rust-lang/crates.io-index"
341checksum = "1be5c9672446d3800bcbcaabaeba121fe22f1fb25700c4562b22faf76d377c33"
342dependencies = [
343 "btree-slab",
344 "cc-traits",
345 "range-traits",
346 "serde",
347 "slab",
348]
349
350[[package]]
351name = "btree-slab"
352version = "0.6.1"
353source = "registry+https://github.com/rust-lang/crates.io-index"
354checksum = "7a2b56d3029f075c4fa892428a098425b86cef5c89ae54073137ece416aef13c"
355dependencies = [
356 "cc-traits",
357 "slab",
358 "smallvec",
359]
360
361[[package]]
362name = "buf_redux"
363version = "0.8.4"
364source = "registry+https://github.com/rust-lang/crates.io-index"
365checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f"
366dependencies = [
367 "memchr",
368 "safemem",
369]
370
371[[package]]
372name = "bumpalo"
373version = "3.19.0"
374source = "registry+https://github.com/rust-lang/crates.io-index"
375checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
376
377[[package]]
378name = "byteorder"
379version = "1.5.0"
380source = "registry+https://github.com/rust-lang/crates.io-index"
381checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
382
383[[package]]
384name = "bytes"
385version = "1.10.1"
386source = "registry+https://github.com/rust-lang/crates.io-index"
387checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
388dependencies = [
389 "serde",
390]
391
392[[package]]
393name = "cbor4ii"
394version = "0.2.14"
395source = "registry+https://github.com/rust-lang/crates.io-index"
396checksum = "b544cf8c89359205f4f990d0e6f3828db42df85b5dac95d09157a250eb0749c4"
397dependencies = [
398 "serde",
399]
400
401[[package]]
402name = "cc"
403version = "1.2.41"
404source = "registry+https://github.com/rust-lang/crates.io-index"
405checksum = "ac9fe6cdbb24b6ade63616c0a0688e45bb56732262c158df3c0c4bea4ca47cb7"
406dependencies = [
407 "find-msvc-tools",
408 "shlex",
409]
410
411[[package]]
412name = "cc-traits"
413version = "2.0.0"
414source = "registry+https://github.com/rust-lang/crates.io-index"
415checksum = "060303ef31ef4a522737e1b1ab68c67916f2a787bb2f4f54f383279adba962b5"
416dependencies = [
417 "slab",
418]
419
420[[package]]
421name = "cesu8"
422version = "1.1.0"
423source = "registry+https://github.com/rust-lang/crates.io-index"
424checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c"
425
426[[package]]
427name = "cfg-if"
428version = "1.0.4"
429source = "registry+https://github.com/rust-lang/crates.io-index"
430checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
431
432[[package]]
433name = "cfg_aliases"
434version = "0.2.1"
435source = "registry+https://github.com/rust-lang/crates.io-index"
436checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
437
438[[package]]
439name = "chrono"
440version = "0.4.42"
441source = "registry+https://github.com/rust-lang/crates.io-index"
442checksum = "145052bdd345b87320e369255277e3fb5152762ad123a901ef5c262dd38fe8d2"
443dependencies = [
444 "iana-time-zone",
445 "js-sys",
446 "num-traits",
447 "wasm-bindgen",
448 "windows-link 0.2.1",
449]
450
451[[package]]
452name = "chunked_transfer"
453version = "1.5.0"
454source = "registry+https://github.com/rust-lang/crates.io-index"
455checksum = "6e4de3bc4ea267985becf712dc6d9eed8b04c953b3fcfb339ebc87acd9804901"
456
457[[package]]
458name = "ciborium"
459version = "0.2.2"
460source = "registry+https://github.com/rust-lang/crates.io-index"
461checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
462dependencies = [
463 "ciborium-io",
464 "ciborium-ll",
465 "serde",
466]
467
468[[package]]
469name = "ciborium-io"
470version = "0.2.2"
471source = "registry+https://github.com/rust-lang/crates.io-index"
472checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
473
474[[package]]
475name = "ciborium-ll"
476version = "0.2.2"
477source = "registry+https://github.com/rust-lang/crates.io-index"
478checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
479dependencies = [
480 "ciborium-io",
481 "half",
482]
483
484[[package]]
485name = "cid"
486version = "0.11.1"
487source = "registry+https://github.com/rust-lang/crates.io-index"
488checksum = "3147d8272e8fa0ccd29ce51194dd98f79ddfb8191ba9e3409884e751798acf3a"
489dependencies = [
490 "core2",
491 "multibase",
492 "multihash",
493 "serde",
494 "serde_bytes",
495 "unsigned-varint",
496]
497
498[[package]]
499name = "clap"
500version = "4.5.49"
501source = "registry+https://github.com/rust-lang/crates.io-index"
502checksum = "f4512b90fa68d3a9932cea5184017c5d200f5921df706d45e853537dea51508f"
503dependencies = [
504 "clap_builder",
505 "clap_derive",
506]
507
508[[package]]
509name = "clap_builder"
510version = "4.5.49"
511source = "registry+https://github.com/rust-lang/crates.io-index"
512checksum = "0025e98baa12e766c67ba13ff4695a887a1eba19569aad00a472546795bd6730"
513dependencies = [
514 "anstream",
515 "anstyle",
516 "clap_lex",
517 "strsim",
518]
519
520[[package]]
521name = "clap_derive"
522version = "4.5.49"
523source = "registry+https://github.com/rust-lang/crates.io-index"
524checksum = "2a0b5487afeab2deb2ff4e03a807ad1a03ac532ff5a2cee5d86884440c7f7671"
525dependencies = [
526 "heck 0.5.0",
527 "proc-macro2",
528 "quote",
529 "syn 2.0.106",
530]
531
532[[package]]
533name = "clap_lex"
534version = "0.7.6"
535source = "registry+https://github.com/rust-lang/crates.io-index"
536checksum = "a1d728cc89cf3aee9ff92b05e62b19ee65a02b5702cff7d5a377e32c6ae29d8d"
537
538[[package]]
539name = "colorchoice"
540version = "1.0.4"
541source = "registry+https://github.com/rust-lang/crates.io-index"
542checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
543
544[[package]]
545name = "combine"
546version = "4.6.7"
547source = "registry+https://github.com/rust-lang/crates.io-index"
548checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
549dependencies = [
550 "bytes",
551 "memchr",
552]
553
554[[package]]
555name = "compression-codecs"
556version = "0.4.31"
557source = "registry+https://github.com/rust-lang/crates.io-index"
558checksum = "ef8a506ec4b81c460798f572caead636d57d3d7e940f998160f52bd254bf2d23"
559dependencies = [
560 "compression-core",
561 "flate2",
562 "memchr",
563]
564
565[[package]]
566name = "compression-core"
567version = "0.4.29"
568source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "e47641d3deaf41fb1538ac1f54735925e275eaf3bf4d55c81b137fba797e5cbb"
570
571[[package]]
572name = "const-oid"
573version = "0.9.6"
574source = "registry+https://github.com/rust-lang/crates.io-index"
575checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
576
577[[package]]
578name = "const-str"
579version = "0.4.3"
580source = "registry+https://github.com/rust-lang/crates.io-index"
581checksum = "2f421161cb492475f1661ddc9815a745a1c894592070661180fdec3d4872e9c3"
582
583[[package]]
584name = "core-foundation"
585version = "0.9.4"
586source = "registry+https://github.com/rust-lang/crates.io-index"
587checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
588dependencies = [
589 "core-foundation-sys",
590 "libc",
591]
592
593[[package]]
594name = "core-foundation-sys"
595version = "0.8.7"
596source = "registry+https://github.com/rust-lang/crates.io-index"
597checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
598
599[[package]]
600name = "core2"
601version = "0.4.0"
602source = "registry+https://github.com/rust-lang/crates.io-index"
603checksum = "b49ba7ef1ad6107f8824dbe97de947cbaac53c44e7f9756a1fba0d37c1eec505"
604dependencies = [
605 "memchr",
606]
607
608[[package]]
609name = "cpufeatures"
610version = "0.2.17"
611source = "registry+https://github.com/rust-lang/crates.io-index"
612checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
613dependencies = [
614 "libc",
615]
616
617[[package]]
618name = "crc32fast"
619version = "1.5.0"
620source = "registry+https://github.com/rust-lang/crates.io-index"
621checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
622dependencies = [
623 "cfg-if",
624]
625
626[[package]]
627name = "crossbeam-deque"
628version = "0.8.6"
629source = "registry+https://github.com/rust-lang/crates.io-index"
630checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
631dependencies = [
632 "crossbeam-epoch",
633 "crossbeam-utils",
634]
635
636[[package]]
637name = "crossbeam-epoch"
638version = "0.9.18"
639source = "registry+https://github.com/rust-lang/crates.io-index"
640checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
641dependencies = [
642 "crossbeam-utils",
643]
644
645[[package]]
646name = "crossbeam-utils"
647version = "0.8.21"
648source = "registry+https://github.com/rust-lang/crates.io-index"
649checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
650
651[[package]]
652name = "crunchy"
653version = "0.2.4"
654source = "registry+https://github.com/rust-lang/crates.io-index"
655checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
656
657[[package]]
658name = "crypto-bigint"
659version = "0.5.5"
660source = "registry+https://github.com/rust-lang/crates.io-index"
661checksum = "0dc92fb57ca44df6db8059111ab3af99a63d5d0f8375d9972e319a379c6bab76"
662dependencies = [
663 "generic-array",
664 "rand_core 0.6.4",
665 "subtle",
666 "zeroize",
667]
668
669[[package]]
670name = "crypto-common"
671version = "0.1.6"
672source = "registry+https://github.com/rust-lang/crates.io-index"
673checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
674dependencies = [
675 "generic-array",
676 "typenum",
677]
678
679[[package]]
680name = "darling"
681version = "0.21.3"
682source = "registry+https://github.com/rust-lang/crates.io-index"
683checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
684dependencies = [
685 "darling_core",
686 "darling_macro",
687]
688
689[[package]]
690name = "darling_core"
691version = "0.21.3"
692source = "registry+https://github.com/rust-lang/crates.io-index"
693checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
694dependencies = [
695 "fnv",
696 "ident_case",
697 "proc-macro2",
698 "quote",
699 "strsim",
700 "syn 2.0.106",
701]
702
703[[package]]
704name = "darling_macro"
705version = "0.21.3"
706source = "registry+https://github.com/rust-lang/crates.io-index"
707checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
708dependencies = [
709 "darling_core",
710 "quote",
711 "syn 2.0.106",
712]
713
714[[package]]
715name = "dashmap"
716version = "6.1.0"
717source = "registry+https://github.com/rust-lang/crates.io-index"
718checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
719dependencies = [
720 "cfg-if",
721 "crossbeam-utils",
722 "hashbrown 0.14.5",
723 "lock_api",
724 "once_cell",
725 "parking_lot_core",
726]
727
728[[package]]
729name = "data-encoding"
730version = "2.9.0"
731source = "registry+https://github.com/rust-lang/crates.io-index"
732checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
733
734[[package]]
735name = "data-encoding-macro"
736version = "0.1.18"
737source = "registry+https://github.com/rust-lang/crates.io-index"
738checksum = "47ce6c96ea0102f01122a185683611bd5ac8d99e62bc59dd12e6bda344ee673d"
739dependencies = [
740 "data-encoding",
741 "data-encoding-macro-internal",
742]
743
744[[package]]
745name = "data-encoding-macro-internal"
746version = "0.1.16"
747source = "registry+https://github.com/rust-lang/crates.io-index"
748checksum = "8d162beedaa69905488a8da94f5ac3edb4dd4788b732fadb7bd120b2625c1976"
749dependencies = [
750 "data-encoding",
751 "syn 2.0.106",
752]
753
754[[package]]
755name = "deflate"
756version = "1.0.0"
757source = "registry+https://github.com/rust-lang/crates.io-index"
758checksum = "c86f7e25f518f4b81808a2cf1c50996a61f5c2eb394b2393bd87f2a4780a432f"
759dependencies = [
760 "adler32",
761 "gzip-header",
762]
763
764[[package]]
765name = "der"
766version = "0.7.10"
767source = "registry+https://github.com/rust-lang/crates.io-index"
768checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
769dependencies = [
770 "const-oid",
771 "pem-rfc7468",
772 "zeroize",
773]
774
775[[package]]
776name = "deranged"
777version = "0.5.4"
778source = "registry+https://github.com/rust-lang/crates.io-index"
779checksum = "a41953f86f8a05768a6cda24def994fd2f424b04ec5c719cf89989779f199071"
780dependencies = [
781 "powerfmt",
782]
783
784[[package]]
785name = "digest"
786version = "0.10.7"
787source = "registry+https://github.com/rust-lang/crates.io-index"
788checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
789dependencies = [
790 "block-buffer",
791 "const-oid",
792 "crypto-common",
793 "subtle",
794]
795
796[[package]]
797name = "displaydoc"
798version = "0.2.5"
799source = "registry+https://github.com/rust-lang/crates.io-index"
800checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
801dependencies = [
802 "proc-macro2",
803 "quote",
804 "syn 2.0.106",
805]
806
807[[package]]
808name = "ecdsa"
809version = "0.16.9"
810source = "registry+https://github.com/rust-lang/crates.io-index"
811checksum = "ee27f32b5c5292967d2d4a9d7f1e0b0aed2c15daded5a60300e4abb9d8020bca"
812dependencies = [
813 "der",
814 "digest",
815 "elliptic-curve",
816 "rfc6979",
817 "signature",
818 "spki",
819]
820
821[[package]]
822name = "elliptic-curve"
823version = "0.13.8"
824source = "registry+https://github.com/rust-lang/crates.io-index"
825checksum = "b5e6043086bf7973472e0c7dff2142ea0b680d30e18d9cc40f267efbf222bd47"
826dependencies = [
827 "base16ct",
828 "crypto-bigint",
829 "digest",
830 "ff",
831 "generic-array",
832 "group",
833 "pem-rfc7468",
834 "pkcs8",
835 "rand_core 0.6.4",
836 "sec1",
837 "subtle",
838 "zeroize",
839]
840
841[[package]]
842name = "encoding_rs"
843version = "0.8.35"
844source = "registry+https://github.com/rust-lang/crates.io-index"
845checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
846dependencies = [
847 "cfg-if",
848]
849
850[[package]]
851name = "enum-as-inner"
852version = "0.6.1"
853source = "registry+https://github.com/rust-lang/crates.io-index"
854checksum = "a1e6a265c649f3f5979b601d26f1d05ada116434c87741c9493cb56218f76cbc"
855dependencies = [
856 "heck 0.5.0",
857 "proc-macro2",
858 "quote",
859 "syn 2.0.106",
860]
861
862[[package]]
863name = "env_filter"
864version = "0.1.4"
865source = "registry+https://github.com/rust-lang/crates.io-index"
866checksum = "1bf3c259d255ca70051b30e2e95b5446cdb8949ac4cd22c0d7fd634d89f568e2"
867dependencies = [
868 "log",
869 "regex",
870]
871
872[[package]]
873name = "env_logger"
874version = "0.11.8"
875source = "registry+https://github.com/rust-lang/crates.io-index"
876checksum = "13c863f0904021b108aa8b2f55046443e6b1ebde8fd4a15c399893aae4fa069f"
877dependencies = [
878 "anstream",
879 "anstyle",
880 "env_filter",
881 "jiff",
882 "log",
883]
884
885[[package]]
886name = "equivalent"
887version = "1.0.2"
888source = "registry+https://github.com/rust-lang/crates.io-index"
889checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
890
891[[package]]
892name = "errno"
893version = "0.3.14"
894source = "registry+https://github.com/rust-lang/crates.io-index"
895checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
896dependencies = [
897 "libc",
898 "windows-sys 0.61.2",
899]
900
901[[package]]
902name = "fastrand"
903version = "2.3.0"
904source = "registry+https://github.com/rust-lang/crates.io-index"
905checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
906
907[[package]]
908name = "ff"
909version = "0.13.1"
910source = "registry+https://github.com/rust-lang/crates.io-index"
911checksum = "c0b50bfb653653f9ca9095b427bed08ab8d75a137839d9ad64eb11810d5b6393"
912dependencies = [
913 "rand_core 0.6.4",
914 "subtle",
915]
916
917[[package]]
918name = "filetime"
919version = "0.2.26"
920source = "registry+https://github.com/rust-lang/crates.io-index"
921checksum = "bc0505cd1b6fa6580283f6bdf70a73fcf4aba1184038c90902b92b3dd0df63ed"
922dependencies = [
923 "cfg-if",
924 "libc",
925 "libredox",
926 "windows-sys 0.60.2",
927]
928
929[[package]]
930name = "find-msvc-tools"
931version = "0.1.4"
932source = "registry+https://github.com/rust-lang/crates.io-index"
933checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
934
935[[package]]
936name = "flate2"
937version = "1.1.4"
938source = "registry+https://github.com/rust-lang/crates.io-index"
939checksum = "dc5a4e564e38c699f2880d3fda590bedc2e69f3f84cd48b457bd892ce61d0aa9"
940dependencies = [
941 "crc32fast",
942 "miniz_oxide",
943]
944
945[[package]]
946name = "fnv"
947version = "1.0.7"
948source = "registry+https://github.com/rust-lang/crates.io-index"
949checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
950
951[[package]]
952name = "foreign-types"
953version = "0.3.2"
954source = "registry+https://github.com/rust-lang/crates.io-index"
955checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
956dependencies = [
957 "foreign-types-shared",
958]
959
960[[package]]
961name = "foreign-types-shared"
962version = "0.1.1"
963source = "registry+https://github.com/rust-lang/crates.io-index"
964checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
965
966[[package]]
967name = "form_urlencoded"
968version = "1.2.2"
969source = "registry+https://github.com/rust-lang/crates.io-index"
970checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
971dependencies = [
972 "percent-encoding",
973]
974
975[[package]]
976name = "futures-channel"
977version = "0.3.31"
978source = "registry+https://github.com/rust-lang/crates.io-index"
979checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
980dependencies = [
981 "futures-core",
982]
983
984[[package]]
985name = "futures-core"
986version = "0.3.31"
987source = "registry+https://github.com/rust-lang/crates.io-index"
988checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
989
990[[package]]
991name = "futures-io"
992version = "0.3.31"
993source = "registry+https://github.com/rust-lang/crates.io-index"
994checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
995
996[[package]]
997name = "futures-macro"
998version = "0.3.31"
999source = "registry+https://github.com/rust-lang/crates.io-index"
1000checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
1001dependencies = [
1002 "proc-macro2",
1003 "quote",
1004 "syn 2.0.106",
1005]
1006
1007[[package]]
1008name = "futures-sink"
1009version = "0.3.31"
1010source = "registry+https://github.com/rust-lang/crates.io-index"
1011checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
1012
1013[[package]]
1014name = "futures-task"
1015version = "0.3.31"
1016source = "registry+https://github.com/rust-lang/crates.io-index"
1017checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
1018
1019[[package]]
1020name = "futures-util"
1021version = "0.3.31"
1022source = "registry+https://github.com/rust-lang/crates.io-index"
1023checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
1024dependencies = [
1025 "futures-core",
1026 "futures-io",
1027 "futures-macro",
1028 "futures-sink",
1029 "futures-task",
1030 "memchr",
1031 "pin-project-lite",
1032 "pin-utils",
1033 "slab",
1034]
1035
1036[[package]]
1037name = "generic-array"
1038version = "0.14.9"
1039source = "registry+https://github.com/rust-lang/crates.io-index"
1040checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1041dependencies = [
1042 "typenum",
1043 "version_check",
1044 "zeroize",
1045]
1046
1047[[package]]
1048name = "getrandom"
1049version = "0.2.16"
1050source = "registry+https://github.com/rust-lang/crates.io-index"
1051checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1052dependencies = [
1053 "cfg-if",
1054 "js-sys",
1055 "libc",
1056 "wasi",
1057 "wasm-bindgen",
1058]
1059
1060[[package]]
1061name = "getrandom"
1062version = "0.3.4"
1063source = "registry+https://github.com/rust-lang/crates.io-index"
1064checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1065dependencies = [
1066 "cfg-if",
1067 "js-sys",
1068 "libc",
1069 "r-efi",
1070 "wasip2",
1071 "wasm-bindgen",
1072]
1073
1074[[package]]
1075name = "gimli"
1076version = "0.32.3"
1077source = "registry+https://github.com/rust-lang/crates.io-index"
1078checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1079
1080[[package]]
1081name = "globset"
1082version = "0.4.17"
1083source = "registry+https://github.com/rust-lang/crates.io-index"
1084checksum = "eab69130804d941f8075cfd713bf8848a2c3b3f201a9457a11e6f87e1ab62305"
1085dependencies = [
1086 "aho-corasick",
1087 "bstr",
1088 "log",
1089 "regex-automata",
1090 "regex-syntax",
1091]
1092
1093[[package]]
1094name = "group"
1095version = "0.13.0"
1096source = "registry+https://github.com/rust-lang/crates.io-index"
1097checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1098dependencies = [
1099 "ff",
1100 "rand_core 0.6.4",
1101 "subtle",
1102]
1103
1104[[package]]
1105name = "gzip-header"
1106version = "1.0.0"
1107source = "registry+https://github.com/rust-lang/crates.io-index"
1108checksum = "95cc527b92e6029a62960ad99aa8a6660faa4555fe5f731aab13aa6a921795a2"
1109dependencies = [
1110 "crc32fast",
1111]
1112
1113[[package]]
1114name = "h2"
1115version = "0.4.12"
1116source = "registry+https://github.com/rust-lang/crates.io-index"
1117checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1118dependencies = [
1119 "atomic-waker",
1120 "bytes",
1121 "fnv",
1122 "futures-core",
1123 "futures-sink",
1124 "http",
1125 "indexmap",
1126 "slab",
1127 "tokio",
1128 "tokio-util",
1129 "tracing",
1130]
1131
1132[[package]]
1133name = "half"
1134version = "2.7.1"
1135source = "registry+https://github.com/rust-lang/crates.io-index"
1136checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1137dependencies = [
1138 "cfg-if",
1139 "crunchy",
1140 "zerocopy",
1141]
1142
1143[[package]]
1144name = "hashbrown"
1145version = "0.14.5"
1146source = "registry+https://github.com/rust-lang/crates.io-index"
1147checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1148
1149[[package]]
1150name = "hashbrown"
1151version = "0.16.0"
1152source = "registry+https://github.com/rust-lang/crates.io-index"
1153checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1154
1155[[package]]
1156name = "heck"
1157version = "0.4.1"
1158source = "registry+https://github.com/rust-lang/crates.io-index"
1159checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1160
1161[[package]]
1162name = "heck"
1163version = "0.5.0"
1164source = "registry+https://github.com/rust-lang/crates.io-index"
1165checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1166
1167[[package]]
1168name = "hermit-abi"
1169version = "0.5.2"
1170source = "registry+https://github.com/rust-lang/crates.io-index"
1171checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1172
1173[[package]]
1174name = "hex_fmt"
1175version = "0.3.0"
1176source = "registry+https://github.com/rust-lang/crates.io-index"
1177checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
1178
1179[[package]]
1180name = "hickory-proto"
1181version = "0.24.4"
1182source = "registry+https://github.com/rust-lang/crates.io-index"
1183checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248"
1184dependencies = [
1185 "async-trait",
1186 "cfg-if",
1187 "data-encoding",
1188 "enum-as-inner",
1189 "futures-channel",
1190 "futures-io",
1191 "futures-util",
1192 "idna",
1193 "ipnet",
1194 "once_cell",
1195 "rand 0.8.5",
1196 "thiserror 1.0.69",
1197 "tinyvec",
1198 "tokio",
1199 "tracing",
1200 "url",
1201]
1202
1203[[package]]
1204name = "hickory-resolver"
1205version = "0.24.4"
1206source = "registry+https://github.com/rust-lang/crates.io-index"
1207checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e"
1208dependencies = [
1209 "cfg-if",
1210 "futures-util",
1211 "hickory-proto",
1212 "ipconfig",
1213 "lru-cache",
1214 "once_cell",
1215 "parking_lot",
1216 "rand 0.8.5",
1217 "resolv-conf",
1218 "smallvec",
1219 "thiserror 1.0.69",
1220 "tokio",
1221 "tracing",
1222]
1223
1224[[package]]
1225name = "hmac"
1226version = "0.12.1"
1227source = "registry+https://github.com/rust-lang/crates.io-index"
1228checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1229dependencies = [
1230 "digest",
1231]
1232
1233[[package]]
1234name = "home"
1235version = "0.5.11"
1236source = "registry+https://github.com/rust-lang/crates.io-index"
1237checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1238dependencies = [
1239 "windows-sys 0.59.0",
1240]
1241
1242[[package]]
1243name = "http"
1244version = "1.3.1"
1245source = "registry+https://github.com/rust-lang/crates.io-index"
1246checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1247dependencies = [
1248 "bytes",
1249 "fnv",
1250 "itoa",
1251]
1252
1253[[package]]
1254name = "http-body"
1255version = "1.0.1"
1256source = "registry+https://github.com/rust-lang/crates.io-index"
1257checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1258dependencies = [
1259 "bytes",
1260 "http",
1261]
1262
1263[[package]]
1264name = "http-body-util"
1265version = "0.1.3"
1266source = "registry+https://github.com/rust-lang/crates.io-index"
1267checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1268dependencies = [
1269 "bytes",
1270 "futures-core",
1271 "http",
1272 "http-body",
1273 "pin-project-lite",
1274]
1275
1276[[package]]
1277name = "httparse"
1278version = "1.10.1"
1279source = "registry+https://github.com/rust-lang/crates.io-index"
1280checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1281
1282[[package]]
1283name = "httpdate"
1284version = "1.0.3"
1285source = "registry+https://github.com/rust-lang/crates.io-index"
1286checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1287
1288[[package]]
1289name = "hyper"
1290version = "1.7.0"
1291source = "registry+https://github.com/rust-lang/crates.io-index"
1292checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1293dependencies = [
1294 "atomic-waker",
1295 "bytes",
1296 "futures-channel",
1297 "futures-core",
1298 "h2",
1299 "http",
1300 "http-body",
1301 "httparse",
1302 "itoa",
1303 "pin-project-lite",
1304 "pin-utils",
1305 "smallvec",
1306 "tokio",
1307 "want",
1308]
1309
1310[[package]]
1311name = "hyper-rustls"
1312version = "0.27.7"
1313source = "registry+https://github.com/rust-lang/crates.io-index"
1314checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1315dependencies = [
1316 "http",
1317 "hyper",
1318 "hyper-util",
1319 "rustls",
1320 "rustls-pki-types",
1321 "tokio",
1322 "tokio-rustls",
1323 "tower-service",
1324 "webpki-roots",
1325]
1326
1327[[package]]
1328name = "hyper-tls"
1329version = "0.6.0"
1330source = "registry+https://github.com/rust-lang/crates.io-index"
1331checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1332dependencies = [
1333 "bytes",
1334 "http-body-util",
1335 "hyper",
1336 "hyper-util",
1337 "native-tls",
1338 "tokio",
1339 "tokio-native-tls",
1340 "tower-service",
1341]
1342
1343[[package]]
1344name = "hyper-util"
1345version = "0.1.17"
1346source = "registry+https://github.com/rust-lang/crates.io-index"
1347checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1348dependencies = [
1349 "base64 0.22.1",
1350 "bytes",
1351 "futures-channel",
1352 "futures-core",
1353 "futures-util",
1354 "http",
1355 "http-body",
1356 "hyper",
1357 "ipnet",
1358 "libc",
1359 "percent-encoding",
1360 "pin-project-lite",
1361 "socket2 0.6.1",
1362 "system-configuration",
1363 "tokio",
1364 "tower-service",
1365 "tracing",
1366 "windows-registry",
1367]
1368
1369[[package]]
1370name = "iana-time-zone"
1371version = "0.1.64"
1372source = "registry+https://github.com/rust-lang/crates.io-index"
1373checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1374dependencies = [
1375 "android_system_properties",
1376 "core-foundation-sys",
1377 "iana-time-zone-haiku",
1378 "js-sys",
1379 "log",
1380 "wasm-bindgen",
1381 "windows-core",
1382]
1383
1384[[package]]
1385name = "iana-time-zone-haiku"
1386version = "0.1.2"
1387source = "registry+https://github.com/rust-lang/crates.io-index"
1388checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1389dependencies = [
1390 "cc",
1391]
1392
1393[[package]]
1394name = "icu_collections"
1395version = "2.0.0"
1396source = "registry+https://github.com/rust-lang/crates.io-index"
1397checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1398dependencies = [
1399 "displaydoc",
1400 "potential_utf",
1401 "yoke",
1402 "zerofrom",
1403 "zerovec",
1404]
1405
1406[[package]]
1407name = "icu_locale_core"
1408version = "2.0.0"
1409source = "registry+https://github.com/rust-lang/crates.io-index"
1410checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1411dependencies = [
1412 "displaydoc",
1413 "litemap",
1414 "tinystr",
1415 "writeable",
1416 "zerovec",
1417]
1418
1419[[package]]
1420name = "icu_normalizer"
1421version = "2.0.0"
1422source = "registry+https://github.com/rust-lang/crates.io-index"
1423checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1424dependencies = [
1425 "displaydoc",
1426 "icu_collections",
1427 "icu_normalizer_data",
1428 "icu_properties",
1429 "icu_provider",
1430 "smallvec",
1431 "zerovec",
1432]
1433
1434[[package]]
1435name = "icu_normalizer_data"
1436version = "2.0.0"
1437source = "registry+https://github.com/rust-lang/crates.io-index"
1438checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1439
1440[[package]]
1441name = "icu_properties"
1442version = "2.0.1"
1443source = "registry+https://github.com/rust-lang/crates.io-index"
1444checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1445dependencies = [
1446 "displaydoc",
1447 "icu_collections",
1448 "icu_locale_core",
1449 "icu_properties_data",
1450 "icu_provider",
1451 "potential_utf",
1452 "zerotrie",
1453 "zerovec",
1454]
1455
1456[[package]]
1457name = "icu_properties_data"
1458version = "2.0.1"
1459source = "registry+https://github.com/rust-lang/crates.io-index"
1460checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1461
1462[[package]]
1463name = "icu_provider"
1464version = "2.0.0"
1465source = "registry+https://github.com/rust-lang/crates.io-index"
1466checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1467dependencies = [
1468 "displaydoc",
1469 "icu_locale_core",
1470 "stable_deref_trait",
1471 "tinystr",
1472 "writeable",
1473 "yoke",
1474 "zerofrom",
1475 "zerotrie",
1476 "zerovec",
1477]
1478
1479[[package]]
1480name = "ident_case"
1481version = "1.0.1"
1482source = "registry+https://github.com/rust-lang/crates.io-index"
1483checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1484
1485[[package]]
1486name = "idna"
1487version = "1.1.0"
1488source = "registry+https://github.com/rust-lang/crates.io-index"
1489checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1490dependencies = [
1491 "idna_adapter",
1492 "smallvec",
1493 "utf8_iter",
1494]
1495
1496[[package]]
1497name = "idna_adapter"
1498version = "1.2.1"
1499source = "registry+https://github.com/rust-lang/crates.io-index"
1500checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1501dependencies = [
1502 "icu_normalizer",
1503 "icu_properties",
1504]
1505
1506[[package]]
1507name = "ignore"
1508version = "0.4.24"
1509source = "registry+https://github.com/rust-lang/crates.io-index"
1510checksum = "81776e6f9464432afcc28d03e52eb101c93b6f0566f52aef2427663e700f0403"
1511dependencies = [
1512 "crossbeam-deque",
1513 "globset",
1514 "log",
1515 "memchr",
1516 "regex-automata",
1517 "same-file",
1518 "walkdir",
1519 "winapi-util",
1520]
1521
1522[[package]]
1523name = "indexmap"
1524version = "2.11.4"
1525source = "registry+https://github.com/rust-lang/crates.io-index"
1526checksum = "4b0f83760fb341a774ed326568e19f5a863af4a952def8c39f9ab92fd95b88e5"
1527dependencies = [
1528 "equivalent",
1529 "hashbrown 0.16.0",
1530]
1531
1532[[package]]
1533name = "indoc"
1534version = "2.0.6"
1535source = "registry+https://github.com/rust-lang/crates.io-index"
1536checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1537
1538[[package]]
1539name = "ipconfig"
1540version = "0.3.2"
1541source = "registry+https://github.com/rust-lang/crates.io-index"
1542checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
1543dependencies = [
1544 "socket2 0.5.10",
1545 "widestring",
1546 "windows-sys 0.48.0",
1547 "winreg",
1548]
1549
1550[[package]]
1551name = "ipld-core"
1552version = "0.4.2"
1553source = "registry+https://github.com/rust-lang/crates.io-index"
1554checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db"
1555dependencies = [
1556 "cid",
1557 "serde",
1558 "serde_bytes",
1559]
1560
1561[[package]]
1562name = "ipnet"
1563version = "2.11.0"
1564source = "registry+https://github.com/rust-lang/crates.io-index"
1565checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1566
1567[[package]]
1568name = "iri-string"
1569version = "0.7.8"
1570source = "registry+https://github.com/rust-lang/crates.io-index"
1571checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1572dependencies = [
1573 "memchr",
1574 "serde",
1575]
1576
1577[[package]]
1578name = "is_ci"
1579version = "1.2.0"
1580source = "registry+https://github.com/rust-lang/crates.io-index"
1581checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
1582
1583[[package]]
1584name = "is_terminal_polyfill"
1585version = "1.70.1"
1586source = "registry+https://github.com/rust-lang/crates.io-index"
1587checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1588
1589[[package]]
1590name = "itoa"
1591version = "1.0.15"
1592source = "registry+https://github.com/rust-lang/crates.io-index"
1593checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1594
1595[[package]]
1596name = "jacquard"
1597version = "0.5.4"
1598source = "registry+https://github.com/rust-lang/crates.io-index"
1599checksum = "c9f7e9e2fb15b8e526c8f44ba197ba8b4174858d05522f088d1ff8de0ce02836"
1600dependencies = [
1601 "bon",
1602 "bytes",
1603 "getrandom 0.2.16",
1604 "http",
1605 "jacquard-api",
1606 "jacquard-common",
1607 "jacquard-derive",
1608 "jacquard-identity",
1609 "jacquard-oauth",
1610 "jose-jwk",
1611 "miette",
1612 "p256",
1613 "percent-encoding",
1614 "rand_core 0.6.4",
1615 "reqwest",
1616 "serde",
1617 "serde_html_form",
1618 "serde_ipld_dagcbor",
1619 "serde_json",
1620 "smol_str",
1621 "thiserror 2.0.17",
1622 "tokio",
1623 "trait-variant",
1624 "url",
1625]
1626
1627[[package]]
1628name = "jacquard-api"
1629version = "0.5.5"
1630source = "registry+https://github.com/rust-lang/crates.io-index"
1631checksum = "eef8307959cc031759816d8e44a3c4db5dd184eedec07431579877a8c4741b80"
1632dependencies = [
1633 "bon",
1634 "bytes",
1635 "jacquard-common",
1636 "jacquard-derive",
1637 "miette",
1638 "serde",
1639 "thiserror 2.0.17",
1640]
1641
1642[[package]]
1643name = "jacquard-common"
1644version = "0.5.4"
1645source = "registry+https://github.com/rust-lang/crates.io-index"
1646checksum = "cf91dfa4ade1ca83c9afccee4ece7ed72b6607a0853d88623958d4e7c5382eb3"
1647dependencies = [
1648 "base64 0.22.1",
1649 "bon",
1650 "bytes",
1651 "chrono",
1652 "cid",
1653 "getrandom 0.3.4",
1654 "http",
1655 "ipld-core",
1656 "k256",
1657 "langtag",
1658 "miette",
1659 "multibase",
1660 "multihash",
1661 "ouroboros",
1662 "p256",
1663 "rand 0.9.2",
1664 "regex",
1665 "reqwest",
1666 "serde",
1667 "serde_html_form",
1668 "serde_ipld_dagcbor",
1669 "serde_json",
1670 "signature",
1671 "smol_str",
1672 "thiserror 2.0.17",
1673 "tokio",
1674 "trait-variant",
1675 "url",
1676]
1677
1678[[package]]
1679name = "jacquard-derive"
1680version = "0.5.4"
1681source = "registry+https://github.com/rust-lang/crates.io-index"
1682checksum = "4f7db8498da87d842297b169a0080eed751bce173c56626b5fa71261fe72f804"
1683dependencies = [
1684 "proc-macro2",
1685 "quote",
1686 "syn 2.0.106",
1687]
1688
1689[[package]]
1690name = "jacquard-identity"
1691version = "0.5.3"
1692source = "registry+https://github.com/rust-lang/crates.io-index"
1693checksum = "afafcd8fcc26095789aeefe4f54cda4471f1748ba11fa7886184f515362b6339"
1694dependencies = [
1695 "bon",
1696 "bytes",
1697 "hickory-resolver",
1698 "http",
1699 "jacquard-api",
1700 "jacquard-common",
1701 "miette",
1702 "percent-encoding",
1703 "reqwest",
1704 "serde",
1705 "serde_html_form",
1706 "serde_json",
1707 "thiserror 2.0.17",
1708 "tokio",
1709 "trait-variant",
1710 "url",
1711 "urlencoding",
1712]
1713
1714[[package]]
1715name = "jacquard-oauth"
1716version = "0.5.4"
1717source = "registry+https://github.com/rust-lang/crates.io-index"
1718checksum = "0c583fb0f634654b51d390809f4dc5b08087d34c155b33d89b36475f6e6b1428"
1719dependencies = [
1720 "base64 0.22.1",
1721 "bytes",
1722 "chrono",
1723 "dashmap",
1724 "elliptic-curve",
1725 "http",
1726 "jacquard-common",
1727 "jacquard-identity",
1728 "jose-jwa",
1729 "jose-jwk",
1730 "miette",
1731 "p256",
1732 "rand 0.8.5",
1733 "rand_core 0.6.4",
1734 "reqwest",
1735 "rouille",
1736 "serde",
1737 "serde_html_form",
1738 "serde_json",
1739 "sha2",
1740 "signature",
1741 "smol_str",
1742 "thiserror 2.0.17",
1743 "tokio",
1744 "trait-variant",
1745 "url",
1746 "webbrowser",
1747]
1748
1749[[package]]
1750name = "jiff"
1751version = "0.2.15"
1752source = "registry+https://github.com/rust-lang/crates.io-index"
1753checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
1754dependencies = [
1755 "jiff-static",
1756 "log",
1757 "portable-atomic",
1758 "portable-atomic-util",
1759 "serde",
1760]
1761
1762[[package]]
1763name = "jiff-static"
1764version = "0.2.15"
1765source = "registry+https://github.com/rust-lang/crates.io-index"
1766checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
1767dependencies = [
1768 "proc-macro2",
1769 "quote",
1770 "syn 2.0.106",
1771]
1772
1773[[package]]
1774name = "jni"
1775version = "0.21.1"
1776source = "registry+https://github.com/rust-lang/crates.io-index"
1777checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1778dependencies = [
1779 "cesu8",
1780 "cfg-if",
1781 "combine",
1782 "jni-sys",
1783 "log",
1784 "thiserror 1.0.69",
1785 "walkdir",
1786 "windows-sys 0.45.0",
1787]
1788
1789[[package]]
1790name = "jni-sys"
1791version = "0.3.0"
1792source = "registry+https://github.com/rust-lang/crates.io-index"
1793checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1794
1795[[package]]
1796name = "jose-b64"
1797version = "0.1.2"
1798source = "registry+https://github.com/rust-lang/crates.io-index"
1799checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56"
1800dependencies = [
1801 "base64ct",
1802 "serde",
1803 "subtle",
1804 "zeroize",
1805]
1806
1807[[package]]
1808name = "jose-jwa"
1809version = "0.1.2"
1810source = "registry+https://github.com/rust-lang/crates.io-index"
1811checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7"
1812dependencies = [
1813 "serde",
1814]
1815
1816[[package]]
1817name = "jose-jwk"
1818version = "0.1.2"
1819source = "registry+https://github.com/rust-lang/crates.io-index"
1820checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7"
1821dependencies = [
1822 "jose-b64",
1823 "jose-jwa",
1824 "p256",
1825 "p384",
1826 "rsa",
1827 "serde",
1828 "zeroize",
1829]
1830
1831[[package]]
1832name = "js-sys"
1833version = "0.3.81"
1834source = "registry+https://github.com/rust-lang/crates.io-index"
1835checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
1836dependencies = [
1837 "once_cell",
1838 "wasm-bindgen",
1839]
1840
1841[[package]]
1842name = "k256"
1843version = "0.13.4"
1844source = "registry+https://github.com/rust-lang/crates.io-index"
1845checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
1846dependencies = [
1847 "cfg-if",
1848 "ecdsa",
1849 "elliptic-curve",
1850 "sha2",
1851]
1852
1853[[package]]
1854name = "langtag"
1855version = "0.4.0"
1856source = "registry+https://github.com/rust-lang/crates.io-index"
1857checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600"
1858dependencies = [
1859 "serde",
1860 "static-regular-grammar",
1861 "thiserror 1.0.69",
1862]
1863
1864[[package]]
1865name = "lazy_static"
1866version = "1.5.0"
1867source = "registry+https://github.com/rust-lang/crates.io-index"
1868checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1869dependencies = [
1870 "spin",
1871]
1872
1873[[package]]
1874name = "lexicons"
1875version = "0.1.0"
1876dependencies = [
1877 "bon",
1878 "bytes",
1879 "jacquard-common",
1880 "jacquard-derive",
1881 "miette",
1882 "serde",
1883 "thiserror 2.0.17",
1884]
1885
1886[[package]]
1887name = "libc"
1888version = "0.2.177"
1889source = "registry+https://github.com/rust-lang/crates.io-index"
1890checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1891
1892[[package]]
1893name = "libm"
1894version = "0.2.15"
1895source = "registry+https://github.com/rust-lang/crates.io-index"
1896checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1897
1898[[package]]
1899name = "libredox"
1900version = "0.1.10"
1901source = "registry+https://github.com/rust-lang/crates.io-index"
1902checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
1903dependencies = [
1904 "bitflags",
1905 "libc",
1906 "redox_syscall",
1907]
1908
1909[[package]]
1910name = "linked-hash-map"
1911version = "0.5.6"
1912source = "registry+https://github.com/rust-lang/crates.io-index"
1913checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1914
1915[[package]]
1916name = "linux-raw-sys"
1917version = "0.11.0"
1918source = "registry+https://github.com/rust-lang/crates.io-index"
1919checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1920
1921[[package]]
1922name = "litemap"
1923version = "0.8.0"
1924source = "registry+https://github.com/rust-lang/crates.io-index"
1925checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1926
1927[[package]]
1928name = "lock_api"
1929version = "0.4.14"
1930source = "registry+https://github.com/rust-lang/crates.io-index"
1931checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1932dependencies = [
1933 "scopeguard",
1934]
1935
1936[[package]]
1937name = "log"
1938version = "0.4.28"
1939source = "registry+https://github.com/rust-lang/crates.io-index"
1940checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1941
1942[[package]]
1943name = "lru-cache"
1944version = "0.1.2"
1945source = "registry+https://github.com/rust-lang/crates.io-index"
1946checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
1947dependencies = [
1948 "linked-hash-map",
1949]
1950
1951[[package]]
1952name = "lru-slab"
1953version = "0.1.2"
1954source = "registry+https://github.com/rust-lang/crates.io-index"
1955checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1956
1957[[package]]
1958name = "malloc_buf"
1959version = "0.0.6"
1960source = "registry+https://github.com/rust-lang/crates.io-index"
1961checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1962dependencies = [
1963 "libc",
1964]
1965
1966[[package]]
1967name = "match-lookup"
1968version = "0.1.1"
1969source = "registry+https://github.com/rust-lang/crates.io-index"
1970checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e"
1971dependencies = [
1972 "proc-macro2",
1973 "quote",
1974 "syn 1.0.109",
1975]
1976
1977[[package]]
1978name = "memchr"
1979version = "2.7.6"
1980source = "registry+https://github.com/rust-lang/crates.io-index"
1981checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
1982
1983[[package]]
1984name = "miette"
1985version = "7.6.0"
1986source = "registry+https://github.com/rust-lang/crates.io-index"
1987checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1988dependencies = [
1989 "backtrace",
1990 "backtrace-ext",
1991 "cfg-if",
1992 "miette-derive",
1993 "owo-colors",
1994 "supports-color",
1995 "supports-hyperlinks",
1996 "supports-unicode",
1997 "terminal_size",
1998 "textwrap",
1999 "unicode-width 0.1.14",
2000]
2001
2002[[package]]
2003name = "miette-derive"
2004version = "7.6.0"
2005source = "registry+https://github.com/rust-lang/crates.io-index"
2006checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
2007dependencies = [
2008 "proc-macro2",
2009 "quote",
2010 "syn 2.0.106",
2011]
2012
2013[[package]]
2014name = "mime"
2015version = "0.3.17"
2016source = "registry+https://github.com/rust-lang/crates.io-index"
2017checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2018
2019[[package]]
2020name = "mime_guess"
2021version = "2.0.5"
2022source = "registry+https://github.com/rust-lang/crates.io-index"
2023checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2024dependencies = [
2025 "mime",
2026 "unicase",
2027]
2028
2029[[package]]
2030name = "minimal-lexical"
2031version = "0.2.1"
2032source = "registry+https://github.com/rust-lang/crates.io-index"
2033checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2034
2035[[package]]
2036name = "miniz_oxide"
2037version = "0.8.9"
2038source = "registry+https://github.com/rust-lang/crates.io-index"
2039checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2040dependencies = [
2041 "adler2",
2042 "simd-adler32",
2043]
2044
2045[[package]]
2046name = "mio"
2047version = "1.0.4"
2048source = "registry+https://github.com/rust-lang/crates.io-index"
2049checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
2050dependencies = [
2051 "libc",
2052 "wasi",
2053 "windows-sys 0.59.0",
2054]
2055
2056[[package]]
2057name = "multibase"
2058version = "0.9.2"
2059source = "registry+https://github.com/rust-lang/crates.io-index"
2060checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
2061dependencies = [
2062 "base-x",
2063 "base256emoji",
2064 "data-encoding",
2065 "data-encoding-macro",
2066]
2067
2068[[package]]
2069name = "multihash"
2070version = "0.19.3"
2071source = "registry+https://github.com/rust-lang/crates.io-index"
2072checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d"
2073dependencies = [
2074 "core2",
2075 "serde",
2076 "unsigned-varint",
2077]
2078
2079[[package]]
2080name = "multipart"
2081version = "0.18.0"
2082source = "registry+https://github.com/rust-lang/crates.io-index"
2083checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
2084dependencies = [
2085 "buf_redux",
2086 "httparse",
2087 "log",
2088 "mime",
2089 "mime_guess",
2090 "quick-error",
2091 "rand 0.8.5",
2092 "safemem",
2093 "tempfile",
2094 "twoway",
2095]
2096
2097[[package]]
2098name = "native-tls"
2099version = "0.2.14"
2100source = "registry+https://github.com/rust-lang/crates.io-index"
2101checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
2102dependencies = [
2103 "libc",
2104 "log",
2105 "openssl",
2106 "openssl-probe",
2107 "openssl-sys",
2108 "schannel",
2109 "security-framework",
2110 "security-framework-sys",
2111 "tempfile",
2112]
2113
2114[[package]]
2115name = "ndk-context"
2116version = "0.1.1"
2117source = "registry+https://github.com/rust-lang/crates.io-index"
2118checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
2119
2120[[package]]
2121name = "nom"
2122version = "7.1.3"
2123source = "registry+https://github.com/rust-lang/crates.io-index"
2124checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2125dependencies = [
2126 "memchr",
2127 "minimal-lexical",
2128]
2129
2130[[package]]
2131name = "num-bigint-dig"
2132version = "0.8.4"
2133source = "registry+https://github.com/rust-lang/crates.io-index"
2134checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
2135dependencies = [
2136 "byteorder",
2137 "lazy_static",
2138 "libm",
2139 "num-integer",
2140 "num-iter",
2141 "num-traits",
2142 "rand 0.8.5",
2143 "smallvec",
2144 "zeroize",
2145]
2146
2147[[package]]
2148name = "num-conv"
2149version = "0.1.0"
2150source = "registry+https://github.com/rust-lang/crates.io-index"
2151checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2152
2153[[package]]
2154name = "num-integer"
2155version = "0.1.46"
2156source = "registry+https://github.com/rust-lang/crates.io-index"
2157checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2158dependencies = [
2159 "num-traits",
2160]
2161
2162[[package]]
2163name = "num-iter"
2164version = "0.1.45"
2165source = "registry+https://github.com/rust-lang/crates.io-index"
2166checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2167dependencies = [
2168 "autocfg",
2169 "num-integer",
2170 "num-traits",
2171]
2172
2173[[package]]
2174name = "num-traits"
2175version = "0.2.19"
2176source = "registry+https://github.com/rust-lang/crates.io-index"
2177checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2178dependencies = [
2179 "autocfg",
2180 "libm",
2181]
2182
2183[[package]]
2184name = "num_cpus"
2185version = "1.17.0"
2186source = "registry+https://github.com/rust-lang/crates.io-index"
2187checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2188dependencies = [
2189 "hermit-abi",
2190 "libc",
2191]
2192
2193[[package]]
2194name = "num_threads"
2195version = "0.1.7"
2196source = "registry+https://github.com/rust-lang/crates.io-index"
2197checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2198dependencies = [
2199 "libc",
2200]
2201
2202[[package]]
2203name = "objc"
2204version = "0.2.7"
2205source = "registry+https://github.com/rust-lang/crates.io-index"
2206checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2207dependencies = [
2208 "malloc_buf",
2209]
2210
2211[[package]]
2212name = "object"
2213version = "0.37.3"
2214source = "registry+https://github.com/rust-lang/crates.io-index"
2215checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
2216dependencies = [
2217 "memchr",
2218]
2219
2220[[package]]
2221name = "once_cell"
2222version = "1.21.3"
2223source = "registry+https://github.com/rust-lang/crates.io-index"
2224checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2225
2226[[package]]
2227name = "once_cell_polyfill"
2228version = "1.70.1"
2229source = "registry+https://github.com/rust-lang/crates.io-index"
2230checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
2231
2232[[package]]
2233name = "openssl"
2234version = "0.10.74"
2235source = "registry+https://github.com/rust-lang/crates.io-index"
2236checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654"
2237dependencies = [
2238 "bitflags",
2239 "cfg-if",
2240 "foreign-types",
2241 "libc",
2242 "once_cell",
2243 "openssl-macros",
2244 "openssl-sys",
2245]
2246
2247[[package]]
2248name = "openssl-macros"
2249version = "0.1.1"
2250source = "registry+https://github.com/rust-lang/crates.io-index"
2251checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2252dependencies = [
2253 "proc-macro2",
2254 "quote",
2255 "syn 2.0.106",
2256]
2257
2258[[package]]
2259name = "openssl-probe"
2260version = "0.1.6"
2261source = "registry+https://github.com/rust-lang/crates.io-index"
2262checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2263
2264[[package]]
2265name = "openssl-sys"
2266version = "0.9.110"
2267source = "registry+https://github.com/rust-lang/crates.io-index"
2268checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2"
2269dependencies = [
2270 "cc",
2271 "libc",
2272 "pkg-config",
2273 "vcpkg",
2274]
2275
2276[[package]]
2277name = "ouroboros"
2278version = "0.18.5"
2279source = "registry+https://github.com/rust-lang/crates.io-index"
2280checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59"
2281dependencies = [
2282 "aliasable",
2283 "ouroboros_macro",
2284 "static_assertions",
2285]
2286
2287[[package]]
2288name = "ouroboros_macro"
2289version = "0.18.5"
2290source = "registry+https://github.com/rust-lang/crates.io-index"
2291checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0"
2292dependencies = [
2293 "heck 0.4.1",
2294 "proc-macro2",
2295 "proc-macro2-diagnostics",
2296 "quote",
2297 "syn 2.0.106",
2298]
2299
2300[[package]]
2301name = "owo-colors"
2302version = "4.2.3"
2303source = "registry+https://github.com/rust-lang/crates.io-index"
2304checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
2305
2306[[package]]
2307name = "p256"
2308version = "0.13.2"
2309source = "registry+https://github.com/rust-lang/crates.io-index"
2310checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2311dependencies = [
2312 "ecdsa",
2313 "elliptic-curve",
2314 "primeorder",
2315 "sha2",
2316]
2317
2318[[package]]
2319name = "p384"
2320version = "0.13.1"
2321source = "registry+https://github.com/rust-lang/crates.io-index"
2322checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2323dependencies = [
2324 "elliptic-curve",
2325 "primeorder",
2326]
2327
2328[[package]]
2329name = "parking_lot"
2330version = "0.12.5"
2331source = "registry+https://github.com/rust-lang/crates.io-index"
2332checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2333dependencies = [
2334 "lock_api",
2335 "parking_lot_core",
2336]
2337
2338[[package]]
2339name = "parking_lot_core"
2340version = "0.9.12"
2341source = "registry+https://github.com/rust-lang/crates.io-index"
2342checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2343dependencies = [
2344 "cfg-if",
2345 "libc",
2346 "redox_syscall",
2347 "smallvec",
2348 "windows-link 0.2.1",
2349]
2350
2351[[package]]
2352name = "pem-rfc7468"
2353version = "0.7.0"
2354source = "registry+https://github.com/rust-lang/crates.io-index"
2355checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2356dependencies = [
2357 "base64ct",
2358]
2359
2360[[package]]
2361name = "percent-encoding"
2362version = "2.3.2"
2363source = "registry+https://github.com/rust-lang/crates.io-index"
2364checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2365
2366[[package]]
2367name = "pin-project-lite"
2368version = "0.2.16"
2369source = "registry+https://github.com/rust-lang/crates.io-index"
2370checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2371
2372[[package]]
2373name = "pin-utils"
2374version = "0.1.0"
2375source = "registry+https://github.com/rust-lang/crates.io-index"
2376checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2377
2378[[package]]
2379name = "pkcs1"
2380version = "0.7.5"
2381source = "registry+https://github.com/rust-lang/crates.io-index"
2382checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2383dependencies = [
2384 "der",
2385 "pkcs8",
2386 "spki",
2387]
2388
2389[[package]]
2390name = "pkcs8"
2391version = "0.10.2"
2392source = "registry+https://github.com/rust-lang/crates.io-index"
2393checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2394dependencies = [
2395 "der",
2396 "spki",
2397]
2398
2399[[package]]
2400name = "pkg-config"
2401version = "0.3.32"
2402source = "registry+https://github.com/rust-lang/crates.io-index"
2403checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2404
2405[[package]]
2406name = "portable-atomic"
2407version = "1.11.1"
2408source = "registry+https://github.com/rust-lang/crates.io-index"
2409checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2410
2411[[package]]
2412name = "portable-atomic-util"
2413version = "0.2.4"
2414source = "registry+https://github.com/rust-lang/crates.io-index"
2415checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2416dependencies = [
2417 "portable-atomic",
2418]
2419
2420[[package]]
2421name = "potential_utf"
2422version = "0.1.3"
2423source = "registry+https://github.com/rust-lang/crates.io-index"
2424checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2425dependencies = [
2426 "zerovec",
2427]
2428
2429[[package]]
2430name = "powerfmt"
2431version = "0.2.0"
2432source = "registry+https://github.com/rust-lang/crates.io-index"
2433checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2434
2435[[package]]
2436name = "ppv-lite86"
2437version = "0.2.21"
2438source = "registry+https://github.com/rust-lang/crates.io-index"
2439checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2440dependencies = [
2441 "zerocopy",
2442]
2443
2444[[package]]
2445name = "prettyplease"
2446version = "0.2.37"
2447source = "registry+https://github.com/rust-lang/crates.io-index"
2448checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2449dependencies = [
2450 "proc-macro2",
2451 "syn 2.0.106",
2452]
2453
2454[[package]]
2455name = "primeorder"
2456version = "0.13.6"
2457source = "registry+https://github.com/rust-lang/crates.io-index"
2458checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2459dependencies = [
2460 "elliptic-curve",
2461]
2462
2463[[package]]
2464name = "proc-macro-error"
2465version = "1.0.4"
2466source = "registry+https://github.com/rust-lang/crates.io-index"
2467checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2468dependencies = [
2469 "proc-macro-error-attr",
2470 "proc-macro2",
2471 "quote",
2472 "syn 1.0.109",
2473 "version_check",
2474]
2475
2476[[package]]
2477name = "proc-macro-error-attr"
2478version = "1.0.4"
2479source = "registry+https://github.com/rust-lang/crates.io-index"
2480checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2481dependencies = [
2482 "proc-macro2",
2483 "quote",
2484 "version_check",
2485]
2486
2487[[package]]
2488name = "proc-macro2"
2489version = "1.0.101"
2490source = "registry+https://github.com/rust-lang/crates.io-index"
2491checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2492dependencies = [
2493 "unicode-ident",
2494]
2495
2496[[package]]
2497name = "proc-macro2-diagnostics"
2498version = "0.10.1"
2499source = "registry+https://github.com/rust-lang/crates.io-index"
2500checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
2501dependencies = [
2502 "proc-macro2",
2503 "quote",
2504 "syn 2.0.106",
2505 "version_check",
2506 "yansi",
2507]
2508
2509[[package]]
2510name = "quick-error"
2511version = "1.2.3"
2512source = "registry+https://github.com/rust-lang/crates.io-index"
2513checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2514
2515[[package]]
2516name = "quinn"
2517version = "0.11.9"
2518source = "registry+https://github.com/rust-lang/crates.io-index"
2519checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2520dependencies = [
2521 "bytes",
2522 "cfg_aliases",
2523 "pin-project-lite",
2524 "quinn-proto",
2525 "quinn-udp",
2526 "rustc-hash",
2527 "rustls",
2528 "socket2 0.6.1",
2529 "thiserror 2.0.17",
2530 "tokio",
2531 "tracing",
2532 "web-time",
2533]
2534
2535[[package]]
2536name = "quinn-proto"
2537version = "0.11.13"
2538source = "registry+https://github.com/rust-lang/crates.io-index"
2539checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2540dependencies = [
2541 "bytes",
2542 "getrandom 0.3.4",
2543 "lru-slab",
2544 "rand 0.9.2",
2545 "ring",
2546 "rustc-hash",
2547 "rustls",
2548 "rustls-pki-types",
2549 "slab",
2550 "thiserror 2.0.17",
2551 "tinyvec",
2552 "tracing",
2553 "web-time",
2554]
2555
2556[[package]]
2557name = "quinn-udp"
2558version = "0.5.14"
2559source = "registry+https://github.com/rust-lang/crates.io-index"
2560checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2561dependencies = [
2562 "cfg_aliases",
2563 "libc",
2564 "once_cell",
2565 "socket2 0.6.1",
2566 "tracing",
2567 "windows-sys 0.60.2",
2568]
2569
2570[[package]]
2571name = "quote"
2572version = "1.0.41"
2573source = "registry+https://github.com/rust-lang/crates.io-index"
2574checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
2575dependencies = [
2576 "proc-macro2",
2577]
2578
2579[[package]]
2580name = "r-efi"
2581version = "5.3.0"
2582source = "registry+https://github.com/rust-lang/crates.io-index"
2583checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2584
2585[[package]]
2586name = "rand"
2587version = "0.8.5"
2588source = "registry+https://github.com/rust-lang/crates.io-index"
2589checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2590dependencies = [
2591 "libc",
2592 "rand_chacha 0.3.1",
2593 "rand_core 0.6.4",
2594]
2595
2596[[package]]
2597name = "rand"
2598version = "0.9.2"
2599source = "registry+https://github.com/rust-lang/crates.io-index"
2600checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2601dependencies = [
2602 "rand_chacha 0.9.0",
2603 "rand_core 0.9.3",
2604]
2605
2606[[package]]
2607name = "rand_chacha"
2608version = "0.3.1"
2609source = "registry+https://github.com/rust-lang/crates.io-index"
2610checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2611dependencies = [
2612 "ppv-lite86",
2613 "rand_core 0.6.4",
2614]
2615
2616[[package]]
2617name = "rand_chacha"
2618version = "0.9.0"
2619source = "registry+https://github.com/rust-lang/crates.io-index"
2620checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2621dependencies = [
2622 "ppv-lite86",
2623 "rand_core 0.9.3",
2624]
2625
2626[[package]]
2627name = "rand_core"
2628version = "0.6.4"
2629source = "registry+https://github.com/rust-lang/crates.io-index"
2630checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2631dependencies = [
2632 "getrandom 0.2.16",
2633]
2634
2635[[package]]
2636name = "rand_core"
2637version = "0.9.3"
2638source = "registry+https://github.com/rust-lang/crates.io-index"
2639checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2640dependencies = [
2641 "getrandom 0.3.4",
2642]
2643
2644[[package]]
2645name = "range-traits"
2646version = "0.3.2"
2647source = "registry+https://github.com/rust-lang/crates.io-index"
2648checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab"
2649
2650[[package]]
2651name = "raw-window-handle"
2652version = "0.5.2"
2653source = "registry+https://github.com/rust-lang/crates.io-index"
2654checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
2655
2656[[package]]
2657name = "redox_syscall"
2658version = "0.5.18"
2659source = "registry+https://github.com/rust-lang/crates.io-index"
2660checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2661dependencies = [
2662 "bitflags",
2663]
2664
2665[[package]]
2666name = "regex"
2667version = "1.12.2"
2668source = "registry+https://github.com/rust-lang/crates.io-index"
2669checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2670dependencies = [
2671 "aho-corasick",
2672 "memchr",
2673 "regex-automata",
2674 "regex-syntax",
2675]
2676
2677[[package]]
2678name = "regex-automata"
2679version = "0.4.13"
2680source = "registry+https://github.com/rust-lang/crates.io-index"
2681checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2682dependencies = [
2683 "aho-corasick",
2684 "memchr",
2685 "regex-syntax",
2686]
2687
2688[[package]]
2689name = "regex-syntax"
2690version = "0.8.8"
2691source = "registry+https://github.com/rust-lang/crates.io-index"
2692checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2693
2694[[package]]
2695name = "reqwest"
2696version = "0.12.24"
2697source = "registry+https://github.com/rust-lang/crates.io-index"
2698checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
2699dependencies = [
2700 "async-compression",
2701 "base64 0.22.1",
2702 "bytes",
2703 "encoding_rs",
2704 "futures-core",
2705 "futures-util",
2706 "h2",
2707 "http",
2708 "http-body",
2709 "http-body-util",
2710 "hyper",
2711 "hyper-rustls",
2712 "hyper-tls",
2713 "hyper-util",
2714 "js-sys",
2715 "log",
2716 "mime",
2717 "native-tls",
2718 "percent-encoding",
2719 "pin-project-lite",
2720 "quinn",
2721 "rustls",
2722 "rustls-pki-types",
2723 "serde",
2724 "serde_json",
2725 "serde_urlencoded",
2726 "sync_wrapper",
2727 "tokio",
2728 "tokio-native-tls",
2729 "tokio-rustls",
2730 "tokio-util",
2731 "tower",
2732 "tower-http",
2733 "tower-service",
2734 "url",
2735 "wasm-bindgen",
2736 "wasm-bindgen-futures",
2737 "wasm-streams",
2738 "web-sys",
2739 "webpki-roots",
2740]
2741
2742[[package]]
2743name = "resolv-conf"
2744version = "0.7.5"
2745source = "registry+https://github.com/rust-lang/crates.io-index"
2746checksum = "6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799"
2747
2748[[package]]
2749name = "rfc6979"
2750version = "0.4.0"
2751source = "registry+https://github.com/rust-lang/crates.io-index"
2752checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
2753dependencies = [
2754 "hmac",
2755 "subtle",
2756]
2757
2758[[package]]
2759name = "ring"
2760version = "0.17.14"
2761source = "registry+https://github.com/rust-lang/crates.io-index"
2762checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2763dependencies = [
2764 "cc",
2765 "cfg-if",
2766 "getrandom 0.2.16",
2767 "libc",
2768 "untrusted",
2769 "windows-sys 0.52.0",
2770]
2771
2772[[package]]
2773name = "rouille"
2774version = "3.6.2"
2775source = "registry+https://github.com/rust-lang/crates.io-index"
2776checksum = "3716fbf57fc1084d7a706adf4e445298d123e4a44294c4e8213caf1b85fcc921"
2777dependencies = [
2778 "base64 0.13.1",
2779 "brotli",
2780 "chrono",
2781 "deflate",
2782 "filetime",
2783 "multipart",
2784 "percent-encoding",
2785 "rand 0.8.5",
2786 "serde",
2787 "serde_derive",
2788 "serde_json",
2789 "sha1_smol",
2790 "threadpool",
2791 "time",
2792 "tiny_http",
2793 "url",
2794]
2795
2796[[package]]
2797name = "rsa"
2798version = "0.9.8"
2799source = "registry+https://github.com/rust-lang/crates.io-index"
2800checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
2801dependencies = [
2802 "const-oid",
2803 "digest",
2804 "num-bigint-dig",
2805 "num-integer",
2806 "num-traits",
2807 "pkcs1",
2808 "pkcs8",
2809 "rand_core 0.6.4",
2810 "signature",
2811 "spki",
2812 "subtle",
2813 "zeroize",
2814]
2815
2816[[package]]
2817name = "rustc-demangle"
2818version = "0.1.26"
2819source = "registry+https://github.com/rust-lang/crates.io-index"
2820checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2821
2822[[package]]
2823name = "rustc-hash"
2824version = "2.1.1"
2825source = "registry+https://github.com/rust-lang/crates.io-index"
2826checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2827
2828[[package]]
2829name = "rustix"
2830version = "1.1.2"
2831source = "registry+https://github.com/rust-lang/crates.io-index"
2832checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2833dependencies = [
2834 "bitflags",
2835 "errno",
2836 "libc",
2837 "linux-raw-sys",
2838 "windows-sys 0.61.2",
2839]
2840
2841[[package]]
2842name = "rustls"
2843version = "0.23.33"
2844source = "registry+https://github.com/rust-lang/crates.io-index"
2845checksum = "751e04a496ca00bb97a5e043158d23d66b5aabf2e1d5aa2a0aaebb1aafe6f82c"
2846dependencies = [
2847 "once_cell",
2848 "ring",
2849 "rustls-pki-types",
2850 "rustls-webpki",
2851 "subtle",
2852 "zeroize",
2853]
2854
2855[[package]]
2856name = "rustls-pki-types"
2857version = "1.12.0"
2858source = "registry+https://github.com/rust-lang/crates.io-index"
2859checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2860dependencies = [
2861 "web-time",
2862 "zeroize",
2863]
2864
2865[[package]]
2866name = "rustls-webpki"
2867version = "0.103.7"
2868source = "registry+https://github.com/rust-lang/crates.io-index"
2869checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf"
2870dependencies = [
2871 "ring",
2872 "rustls-pki-types",
2873 "untrusted",
2874]
2875
2876[[package]]
2877name = "rustversion"
2878version = "1.0.22"
2879source = "registry+https://github.com/rust-lang/crates.io-index"
2880checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2881
2882[[package]]
2883name = "ryu"
2884version = "1.0.20"
2885source = "registry+https://github.com/rust-lang/crates.io-index"
2886checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2887
2888[[package]]
2889name = "safemem"
2890version = "0.3.3"
2891source = "registry+https://github.com/rust-lang/crates.io-index"
2892checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2893
2894[[package]]
2895name = "same-file"
2896version = "1.0.6"
2897source = "registry+https://github.com/rust-lang/crates.io-index"
2898checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2899dependencies = [
2900 "winapi-util",
2901]
2902
2903[[package]]
2904name = "schannel"
2905version = "0.1.28"
2906source = "registry+https://github.com/rust-lang/crates.io-index"
2907checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2908dependencies = [
2909 "windows-sys 0.61.2",
2910]
2911
2912[[package]]
2913name = "scopeguard"
2914version = "1.2.0"
2915source = "registry+https://github.com/rust-lang/crates.io-index"
2916checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2917
2918[[package]]
2919name = "sec1"
2920version = "0.7.3"
2921source = "registry+https://github.com/rust-lang/crates.io-index"
2922checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2923dependencies = [
2924 "base16ct",
2925 "der",
2926 "generic-array",
2927 "pkcs8",
2928 "subtle",
2929 "zeroize",
2930]
2931
2932[[package]]
2933name = "security-framework"
2934version = "2.11.1"
2935source = "registry+https://github.com/rust-lang/crates.io-index"
2936checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2937dependencies = [
2938 "bitflags",
2939 "core-foundation",
2940 "core-foundation-sys",
2941 "libc",
2942 "security-framework-sys",
2943]
2944
2945[[package]]
2946name = "security-framework-sys"
2947version = "2.15.0"
2948source = "registry+https://github.com/rust-lang/crates.io-index"
2949checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
2950dependencies = [
2951 "core-foundation-sys",
2952 "libc",
2953]
2954
2955[[package]]
2956name = "serde"
2957version = "1.0.228"
2958source = "registry+https://github.com/rust-lang/crates.io-index"
2959checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2960dependencies = [
2961 "serde_core",
2962 "serde_derive",
2963]
2964
2965[[package]]
2966name = "serde_bytes"
2967version = "0.11.19"
2968source = "registry+https://github.com/rust-lang/crates.io-index"
2969checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
2970dependencies = [
2971 "serde",
2972 "serde_core",
2973]
2974
2975[[package]]
2976name = "serde_core"
2977version = "1.0.228"
2978source = "registry+https://github.com/rust-lang/crates.io-index"
2979checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2980dependencies = [
2981 "serde_derive",
2982]
2983
2984[[package]]
2985name = "serde_derive"
2986version = "1.0.228"
2987source = "registry+https://github.com/rust-lang/crates.io-index"
2988checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2989dependencies = [
2990 "proc-macro2",
2991 "quote",
2992 "syn 2.0.106",
2993]
2994
2995[[package]]
2996name = "serde_html_form"
2997version = "0.2.8"
2998source = "registry+https://github.com/rust-lang/crates.io-index"
2999checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f"
3000dependencies = [
3001 "form_urlencoded",
3002 "indexmap",
3003 "itoa",
3004 "ryu",
3005 "serde_core",
3006]
3007
3008[[package]]
3009name = "serde_ipld_dagcbor"
3010version = "0.6.4"
3011source = "registry+https://github.com/rust-lang/crates.io-index"
3012checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778"
3013dependencies = [
3014 "cbor4ii",
3015 "ipld-core",
3016 "scopeguard",
3017 "serde",
3018]
3019
3020[[package]]
3021name = "serde_json"
3022version = "1.0.145"
3023source = "registry+https://github.com/rust-lang/crates.io-index"
3024checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3025dependencies = [
3026 "itoa",
3027 "memchr",
3028 "ryu",
3029 "serde",
3030 "serde_core",
3031]
3032
3033[[package]]
3034name = "serde_urlencoded"
3035version = "0.7.1"
3036source = "registry+https://github.com/rust-lang/crates.io-index"
3037checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3038dependencies = [
3039 "form_urlencoded",
3040 "itoa",
3041 "ryu",
3042 "serde",
3043]
3044
3045[[package]]
3046name = "sha1_smol"
3047version = "1.0.1"
3048source = "registry+https://github.com/rust-lang/crates.io-index"
3049checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
3050
3051[[package]]
3052name = "sha2"
3053version = "0.10.9"
3054source = "registry+https://github.com/rust-lang/crates.io-index"
3055checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3056dependencies = [
3057 "cfg-if",
3058 "cpufeatures",
3059 "digest",
3060]
3061
3062[[package]]
3063name = "shlex"
3064version = "1.3.0"
3065source = "registry+https://github.com/rust-lang/crates.io-index"
3066checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3067
3068[[package]]
3069name = "signal-hook-registry"
3070version = "1.4.6"
3071source = "registry+https://github.com/rust-lang/crates.io-index"
3072checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
3073dependencies = [
3074 "libc",
3075]
3076
3077[[package]]
3078name = "signature"
3079version = "2.2.0"
3080source = "registry+https://github.com/rust-lang/crates.io-index"
3081checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3082dependencies = [
3083 "digest",
3084 "rand_core 0.6.4",
3085]
3086
3087[[package]]
3088name = "simd-adler32"
3089version = "0.3.7"
3090source = "registry+https://github.com/rust-lang/crates.io-index"
3091checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
3092
3093[[package]]
3094name = "slab"
3095version = "0.4.11"
3096source = "registry+https://github.com/rust-lang/crates.io-index"
3097checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3098
3099[[package]]
3100name = "smallvec"
3101version = "1.15.1"
3102source = "registry+https://github.com/rust-lang/crates.io-index"
3103checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3104
3105[[package]]
3106name = "smol_str"
3107version = "0.3.2"
3108source = "registry+https://github.com/rust-lang/crates.io-index"
3109checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d"
3110dependencies = [
3111 "borsh",
3112 "serde",
3113]
3114
3115[[package]]
3116name = "socket2"
3117version = "0.5.10"
3118source = "registry+https://github.com/rust-lang/crates.io-index"
3119checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3120dependencies = [
3121 "libc",
3122 "windows-sys 0.52.0",
3123]
3124
3125[[package]]
3126name = "socket2"
3127version = "0.6.1"
3128source = "registry+https://github.com/rust-lang/crates.io-index"
3129checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3130dependencies = [
3131 "libc",
3132 "windows-sys 0.60.2",
3133]
3134
3135[[package]]
3136name = "spin"
3137version = "0.9.8"
3138source = "registry+https://github.com/rust-lang/crates.io-index"
3139checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3140
3141[[package]]
3142name = "spki"
3143version = "0.7.3"
3144source = "registry+https://github.com/rust-lang/crates.io-index"
3145checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3146dependencies = [
3147 "base64ct",
3148 "der",
3149]
3150
3151[[package]]
3152name = "stable_deref_trait"
3153version = "1.2.1"
3154source = "registry+https://github.com/rust-lang/crates.io-index"
3155checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3156
3157[[package]]
3158name = "static-regular-grammar"
3159version = "2.0.2"
3160source = "registry+https://github.com/rust-lang/crates.io-index"
3161checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957"
3162dependencies = [
3163 "abnf",
3164 "btree-range-map",
3165 "ciborium",
3166 "hex_fmt",
3167 "indoc",
3168 "proc-macro-error",
3169 "proc-macro2",
3170 "quote",
3171 "serde",
3172 "sha2",
3173 "syn 2.0.106",
3174 "thiserror 1.0.69",
3175]
3176
3177[[package]]
3178name = "static_assertions"
3179version = "1.1.0"
3180source = "registry+https://github.com/rust-lang/crates.io-index"
3181checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3182
3183[[package]]
3184name = "strsim"
3185version = "0.11.1"
3186source = "registry+https://github.com/rust-lang/crates.io-index"
3187checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3188
3189[[package]]
3190name = "subtle"
3191version = "2.6.1"
3192source = "registry+https://github.com/rust-lang/crates.io-index"
3193checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3194
3195[[package]]
3196name = "supports-color"
3197version = "3.0.2"
3198source = "registry+https://github.com/rust-lang/crates.io-index"
3199checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
3200dependencies = [
3201 "is_ci",
3202]
3203
3204[[package]]
3205name = "supports-hyperlinks"
3206version = "3.1.0"
3207source = "registry+https://github.com/rust-lang/crates.io-index"
3208checksum = "804f44ed3c63152de6a9f90acbea1a110441de43006ea51bcce8f436196a288b"
3209
3210[[package]]
3211name = "supports-unicode"
3212version = "3.0.0"
3213source = "registry+https://github.com/rust-lang/crates.io-index"
3214checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
3215
3216[[package]]
3217name = "syn"
3218version = "1.0.109"
3219source = "registry+https://github.com/rust-lang/crates.io-index"
3220checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3221dependencies = [
3222 "proc-macro2",
3223 "quote",
3224 "unicode-ident",
3225]
3226
3227[[package]]
3228name = "syn"
3229version = "2.0.106"
3230source = "registry+https://github.com/rust-lang/crates.io-index"
3231checksum = "ede7c438028d4436d71104916910f5bb611972c5cfd7f89b8300a8186e6fada6"
3232dependencies = [
3233 "proc-macro2",
3234 "quote",
3235 "unicode-ident",
3236]
3237
3238[[package]]
3239name = "sync_wrapper"
3240version = "1.0.2"
3241source = "registry+https://github.com/rust-lang/crates.io-index"
3242checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3243dependencies = [
3244 "futures-core",
3245]
3246
3247[[package]]
3248name = "synstructure"
3249version = "0.13.2"
3250source = "registry+https://github.com/rust-lang/crates.io-index"
3251checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3252dependencies = [
3253 "proc-macro2",
3254 "quote",
3255 "syn 2.0.106",
3256]
3257
3258[[package]]
3259name = "system-configuration"
3260version = "0.6.1"
3261source = "registry+https://github.com/rust-lang/crates.io-index"
3262checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
3263dependencies = [
3264 "bitflags",
3265 "core-foundation",
3266 "system-configuration-sys",
3267]
3268
3269[[package]]
3270name = "system-configuration-sys"
3271version = "0.6.0"
3272source = "registry+https://github.com/rust-lang/crates.io-index"
3273checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3274dependencies = [
3275 "core-foundation-sys",
3276 "libc",
3277]
3278
3279[[package]]
3280name = "tempfile"
3281version = "3.23.0"
3282source = "registry+https://github.com/rust-lang/crates.io-index"
3283checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3284dependencies = [
3285 "fastrand",
3286 "getrandom 0.3.4",
3287 "once_cell",
3288 "rustix",
3289 "windows-sys 0.61.2",
3290]
3291
3292[[package]]
3293name = "terminal_size"
3294version = "0.4.3"
3295source = "registry+https://github.com/rust-lang/crates.io-index"
3296checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
3297dependencies = [
3298 "rustix",
3299 "windows-sys 0.60.2",
3300]
3301
3302[[package]]
3303name = "textwrap"
3304version = "0.16.2"
3305source = "registry+https://github.com/rust-lang/crates.io-index"
3306checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
3307dependencies = [
3308 "unicode-linebreak",
3309 "unicode-width 0.2.2",
3310]
3311
3312[[package]]
3313name = "thiserror"
3314version = "1.0.69"
3315source = "registry+https://github.com/rust-lang/crates.io-index"
3316checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3317dependencies = [
3318 "thiserror-impl 1.0.69",
3319]
3320
3321[[package]]
3322name = "thiserror"
3323version = "2.0.17"
3324source = "registry+https://github.com/rust-lang/crates.io-index"
3325checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3326dependencies = [
3327 "thiserror-impl 2.0.17",
3328]
3329
3330[[package]]
3331name = "thiserror-impl"
3332version = "1.0.69"
3333source = "registry+https://github.com/rust-lang/crates.io-index"
3334checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3335dependencies = [
3336 "proc-macro2",
3337 "quote",
3338 "syn 2.0.106",
3339]
3340
3341[[package]]
3342name = "thiserror-impl"
3343version = "2.0.17"
3344source = "registry+https://github.com/rust-lang/crates.io-index"
3345checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3346dependencies = [
3347 "proc-macro2",
3348 "quote",
3349 "syn 2.0.106",
3350]
3351
3352[[package]]
3353name = "threadpool"
3354version = "1.8.1"
3355source = "registry+https://github.com/rust-lang/crates.io-index"
3356checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
3357dependencies = [
3358 "num_cpus",
3359]
3360
3361[[package]]
3362name = "time"
3363version = "0.3.44"
3364source = "registry+https://github.com/rust-lang/crates.io-index"
3365checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
3366dependencies = [
3367 "deranged",
3368 "libc",
3369 "num-conv",
3370 "num_threads",
3371 "powerfmt",
3372 "serde",
3373 "time-core",
3374]
3375
3376[[package]]
3377name = "time-core"
3378version = "0.1.6"
3379source = "registry+https://github.com/rust-lang/crates.io-index"
3380checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
3381
3382[[package]]
3383name = "tiny_http"
3384version = "0.12.0"
3385source = "registry+https://github.com/rust-lang/crates.io-index"
3386checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
3387dependencies = [
3388 "ascii",
3389 "chunked_transfer",
3390 "httpdate",
3391 "log",
3392]
3393
3394[[package]]
3395name = "tinystr"
3396version = "0.8.1"
3397source = "registry+https://github.com/rust-lang/crates.io-index"
3398checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3399dependencies = [
3400 "displaydoc",
3401 "zerovec",
3402]
3403
3404[[package]]
3405name = "tinyvec"
3406version = "1.10.0"
3407source = "registry+https://github.com/rust-lang/crates.io-index"
3408checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3409dependencies = [
3410 "tinyvec_macros",
3411]
3412
3413[[package]]
3414name = "tinyvec_macros"
3415version = "0.1.1"
3416source = "registry+https://github.com/rust-lang/crates.io-index"
3417checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3418
3419[[package]]
3420name = "tokio"
3421version = "1.48.0"
3422source = "registry+https://github.com/rust-lang/crates.io-index"
3423checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3424dependencies = [
3425 "bytes",
3426 "libc",
3427 "mio",
3428 "parking_lot",
3429 "pin-project-lite",
3430 "signal-hook-registry",
3431 "socket2 0.6.1",
3432 "tokio-macros",
3433 "windows-sys 0.61.2",
3434]
3435
3436[[package]]
3437name = "tokio-macros"
3438version = "2.6.0"
3439source = "registry+https://github.com/rust-lang/crates.io-index"
3440checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3441dependencies = [
3442 "proc-macro2",
3443 "quote",
3444 "syn 2.0.106",
3445]
3446
3447[[package]]
3448name = "tokio-native-tls"
3449version = "0.3.1"
3450source = "registry+https://github.com/rust-lang/crates.io-index"
3451checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3452dependencies = [
3453 "native-tls",
3454 "tokio",
3455]
3456
3457[[package]]
3458name = "tokio-rustls"
3459version = "0.26.4"
3460source = "registry+https://github.com/rust-lang/crates.io-index"
3461checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3462dependencies = [
3463 "rustls",
3464 "tokio",
3465]
3466
3467[[package]]
3468name = "tokio-util"
3469version = "0.7.16"
3470source = "registry+https://github.com/rust-lang/crates.io-index"
3471checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
3472dependencies = [
3473 "bytes",
3474 "futures-core",
3475 "futures-sink",
3476 "pin-project-lite",
3477 "tokio",
3478]
3479
3480[[package]]
3481name = "tower"
3482version = "0.5.2"
3483source = "registry+https://github.com/rust-lang/crates.io-index"
3484checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3485dependencies = [
3486 "futures-core",
3487 "futures-util",
3488 "pin-project-lite",
3489 "sync_wrapper",
3490 "tokio",
3491 "tower-layer",
3492 "tower-service",
3493]
3494
3495[[package]]
3496name = "tower-http"
3497version = "0.6.6"
3498source = "registry+https://github.com/rust-lang/crates.io-index"
3499checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3500dependencies = [
3501 "bitflags",
3502 "bytes",
3503 "futures-util",
3504 "http",
3505 "http-body",
3506 "iri-string",
3507 "pin-project-lite",
3508 "tower",
3509 "tower-layer",
3510 "tower-service",
3511]
3512
3513[[package]]
3514name = "tower-layer"
3515version = "0.3.3"
3516source = "registry+https://github.com/rust-lang/crates.io-index"
3517checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3518
3519[[package]]
3520name = "tower-service"
3521version = "0.3.3"
3522source = "registry+https://github.com/rust-lang/crates.io-index"
3523checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3524
3525[[package]]
3526name = "tracing"
3527version = "0.1.41"
3528source = "registry+https://github.com/rust-lang/crates.io-index"
3529checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3530dependencies = [
3531 "pin-project-lite",
3532 "tracing-attributes",
3533 "tracing-core",
3534]
3535
3536[[package]]
3537name = "tracing-attributes"
3538version = "0.1.30"
3539source = "registry+https://github.com/rust-lang/crates.io-index"
3540checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3541dependencies = [
3542 "proc-macro2",
3543 "quote",
3544 "syn 2.0.106",
3545]
3546
3547[[package]]
3548name = "tracing-core"
3549version = "0.1.34"
3550source = "registry+https://github.com/rust-lang/crates.io-index"
3551checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3552dependencies = [
3553 "once_cell",
3554]
3555
3556[[package]]
3557name = "trait-variant"
3558version = "0.1.2"
3559source = "registry+https://github.com/rust-lang/crates.io-index"
3560checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
3561dependencies = [
3562 "proc-macro2",
3563 "quote",
3564 "syn 2.0.106",
3565]
3566
3567[[package]]
3568name = "try-lock"
3569version = "0.2.5"
3570source = "registry+https://github.com/rust-lang/crates.io-index"
3571checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3572
3573[[package]]
3574name = "twoway"
3575version = "0.1.8"
3576source = "registry+https://github.com/rust-lang/crates.io-index"
3577checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1"
3578dependencies = [
3579 "memchr",
3580]
3581
3582[[package]]
3583name = "typenum"
3584version = "1.19.0"
3585source = "registry+https://github.com/rust-lang/crates.io-index"
3586checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3587
3588[[package]]
3589name = "unicase"
3590version = "2.8.1"
3591source = "registry+https://github.com/rust-lang/crates.io-index"
3592checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3593
3594[[package]]
3595name = "unicode-ident"
3596version = "1.0.19"
3597source = "registry+https://github.com/rust-lang/crates.io-index"
3598checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
3599
3600[[package]]
3601name = "unicode-linebreak"
3602version = "0.1.5"
3603source = "registry+https://github.com/rust-lang/crates.io-index"
3604checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
3605
3606[[package]]
3607name = "unicode-width"
3608version = "0.1.14"
3609source = "registry+https://github.com/rust-lang/crates.io-index"
3610checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3611
3612[[package]]
3613name = "unicode-width"
3614version = "0.2.2"
3615source = "registry+https://github.com/rust-lang/crates.io-index"
3616checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3617
3618[[package]]
3619name = "unsigned-varint"
3620version = "0.8.0"
3621source = "registry+https://github.com/rust-lang/crates.io-index"
3622checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
3623
3624[[package]]
3625name = "untrusted"
3626version = "0.9.0"
3627source = "registry+https://github.com/rust-lang/crates.io-index"
3628checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3629
3630[[package]]
3631name = "url"
3632version = "2.5.7"
3633source = "registry+https://github.com/rust-lang/crates.io-index"
3634checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3635dependencies = [
3636 "form_urlencoded",
3637 "idna",
3638 "percent-encoding",
3639 "serde",
3640]
3641
3642[[package]]
3643name = "urlencoding"
3644version = "2.1.3"
3645source = "registry+https://github.com/rust-lang/crates.io-index"
3646checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3647
3648[[package]]
3649name = "utf8_iter"
3650version = "1.0.4"
3651source = "registry+https://github.com/rust-lang/crates.io-index"
3652checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3653
3654[[package]]
3655name = "utf8parse"
3656version = "0.2.2"
3657source = "registry+https://github.com/rust-lang/crates.io-index"
3658checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3659
3660[[package]]
3661name = "vcpkg"
3662version = "0.2.15"
3663source = "registry+https://github.com/rust-lang/crates.io-index"
3664checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3665
3666[[package]]
3667name = "version_check"
3668version = "0.9.5"
3669source = "registry+https://github.com/rust-lang/crates.io-index"
3670checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3671
3672[[package]]
3673name = "walkdir"
3674version = "2.5.0"
3675source = "registry+https://github.com/rust-lang/crates.io-index"
3676checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3677dependencies = [
3678 "same-file",
3679 "winapi-util",
3680]
3681
3682[[package]]
3683name = "want"
3684version = "0.3.1"
3685source = "registry+https://github.com/rust-lang/crates.io-index"
3686checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3687dependencies = [
3688 "try-lock",
3689]
3690
3691[[package]]
3692name = "wasi"
3693version = "0.11.1+wasi-snapshot-preview1"
3694source = "registry+https://github.com/rust-lang/crates.io-index"
3695checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3696
3697[[package]]
3698name = "wasip2"
3699version = "1.0.1+wasi-0.2.4"
3700source = "registry+https://github.com/rust-lang/crates.io-index"
3701checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3702dependencies = [
3703 "wit-bindgen",
3704]
3705
3706[[package]]
3707name = "wasm-bindgen"
3708version = "0.2.104"
3709source = "registry+https://github.com/rust-lang/crates.io-index"
3710checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
3711dependencies = [
3712 "cfg-if",
3713 "once_cell",
3714 "rustversion",
3715 "wasm-bindgen-macro",
3716 "wasm-bindgen-shared",
3717]
3718
3719[[package]]
3720name = "wasm-bindgen-backend"
3721version = "0.2.104"
3722source = "registry+https://github.com/rust-lang/crates.io-index"
3723checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
3724dependencies = [
3725 "bumpalo",
3726 "log",
3727 "proc-macro2",
3728 "quote",
3729 "syn 2.0.106",
3730 "wasm-bindgen-shared",
3731]
3732
3733[[package]]
3734name = "wasm-bindgen-futures"
3735version = "0.4.54"
3736source = "registry+https://github.com/rust-lang/crates.io-index"
3737checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c"
3738dependencies = [
3739 "cfg-if",
3740 "js-sys",
3741 "once_cell",
3742 "wasm-bindgen",
3743 "web-sys",
3744]
3745
3746[[package]]
3747name = "wasm-bindgen-macro"
3748version = "0.2.104"
3749source = "registry+https://github.com/rust-lang/crates.io-index"
3750checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
3751dependencies = [
3752 "quote",
3753 "wasm-bindgen-macro-support",
3754]
3755
3756[[package]]
3757name = "wasm-bindgen-macro-support"
3758version = "0.2.104"
3759source = "registry+https://github.com/rust-lang/crates.io-index"
3760checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
3761dependencies = [
3762 "proc-macro2",
3763 "quote",
3764 "syn 2.0.106",
3765 "wasm-bindgen-backend",
3766 "wasm-bindgen-shared",
3767]
3768
3769[[package]]
3770name = "wasm-bindgen-shared"
3771version = "0.2.104"
3772source = "registry+https://github.com/rust-lang/crates.io-index"
3773checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
3774dependencies = [
3775 "unicode-ident",
3776]
3777
3778[[package]]
3779name = "wasm-streams"
3780version = "0.4.2"
3781source = "registry+https://github.com/rust-lang/crates.io-index"
3782checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3783dependencies = [
3784 "futures-util",
3785 "js-sys",
3786 "wasm-bindgen",
3787 "wasm-bindgen-futures",
3788 "web-sys",
3789]
3790
3791[[package]]
3792name = "web-sys"
3793version = "0.3.81"
3794source = "registry+https://github.com/rust-lang/crates.io-index"
3795checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
3796dependencies = [
3797 "js-sys",
3798 "wasm-bindgen",
3799]
3800
3801[[package]]
3802name = "web-time"
3803version = "1.1.0"
3804source = "registry+https://github.com/rust-lang/crates.io-index"
3805checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3806dependencies = [
3807 "js-sys",
3808 "wasm-bindgen",
3809]
3810
3811[[package]]
3812name = "webbrowser"
3813version = "0.8.15"
3814source = "registry+https://github.com/rust-lang/crates.io-index"
3815checksum = "db67ae75a9405634f5882791678772c94ff5f16a66535aae186e26aa0841fc8b"
3816dependencies = [
3817 "core-foundation",
3818 "home",
3819 "jni",
3820 "log",
3821 "ndk-context",
3822 "objc",
3823 "raw-window-handle",
3824 "url",
3825 "web-sys",
3826]
3827
3828[[package]]
3829name = "webpki-roots"
3830version = "1.0.3"
3831source = "registry+https://github.com/rust-lang/crates.io-index"
3832checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8"
3833dependencies = [
3834 "rustls-pki-types",
3835]
3836
3837[[package]]
3838name = "widestring"
3839version = "1.2.1"
3840source = "registry+https://github.com/rust-lang/crates.io-index"
3841checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
3842
3843[[package]]
3844name = "winapi-util"
3845version = "0.1.11"
3846source = "registry+https://github.com/rust-lang/crates.io-index"
3847checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3848dependencies = [
3849 "windows-sys 0.61.2",
3850]
3851
3852[[package]]
3853name = "windows-core"
3854version = "0.62.2"
3855source = "registry+https://github.com/rust-lang/crates.io-index"
3856checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3857dependencies = [
3858 "windows-implement",
3859 "windows-interface",
3860 "windows-link 0.2.1",
3861 "windows-result 0.4.1",
3862 "windows-strings 0.5.1",
3863]
3864
3865[[package]]
3866name = "windows-implement"
3867version = "0.60.2"
3868source = "registry+https://github.com/rust-lang/crates.io-index"
3869checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3870dependencies = [
3871 "proc-macro2",
3872 "quote",
3873 "syn 2.0.106",
3874]
3875
3876[[package]]
3877name = "windows-interface"
3878version = "0.59.3"
3879source = "registry+https://github.com/rust-lang/crates.io-index"
3880checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3881dependencies = [
3882 "proc-macro2",
3883 "quote",
3884 "syn 2.0.106",
3885]
3886
3887[[package]]
3888name = "windows-link"
3889version = "0.1.3"
3890source = "registry+https://github.com/rust-lang/crates.io-index"
3891checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3892
3893[[package]]
3894name = "windows-link"
3895version = "0.2.1"
3896source = "registry+https://github.com/rust-lang/crates.io-index"
3897checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3898
3899[[package]]
3900name = "windows-registry"
3901version = "0.5.3"
3902source = "registry+https://github.com/rust-lang/crates.io-index"
3903checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
3904dependencies = [
3905 "windows-link 0.1.3",
3906 "windows-result 0.3.4",
3907 "windows-strings 0.4.2",
3908]
3909
3910[[package]]
3911name = "windows-result"
3912version = "0.3.4"
3913source = "registry+https://github.com/rust-lang/crates.io-index"
3914checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3915dependencies = [
3916 "windows-link 0.1.3",
3917]
3918
3919[[package]]
3920name = "windows-result"
3921version = "0.4.1"
3922source = "registry+https://github.com/rust-lang/crates.io-index"
3923checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3924dependencies = [
3925 "windows-link 0.2.1",
3926]
3927
3928[[package]]
3929name = "windows-strings"
3930version = "0.4.2"
3931source = "registry+https://github.com/rust-lang/crates.io-index"
3932checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3933dependencies = [
3934 "windows-link 0.1.3",
3935]
3936
3937[[package]]
3938name = "windows-strings"
3939version = "0.5.1"
3940source = "registry+https://github.com/rust-lang/crates.io-index"
3941checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3942dependencies = [
3943 "windows-link 0.2.1",
3944]
3945
3946[[package]]
3947name = "windows-sys"
3948version = "0.45.0"
3949source = "registry+https://github.com/rust-lang/crates.io-index"
3950checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
3951dependencies = [
3952 "windows-targets 0.42.2",
3953]
3954
3955[[package]]
3956name = "windows-sys"
3957version = "0.48.0"
3958source = "registry+https://github.com/rust-lang/crates.io-index"
3959checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3960dependencies = [
3961 "windows-targets 0.48.5",
3962]
3963
3964[[package]]
3965name = "windows-sys"
3966version = "0.52.0"
3967source = "registry+https://github.com/rust-lang/crates.io-index"
3968checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3969dependencies = [
3970 "windows-targets 0.52.6",
3971]
3972
3973[[package]]
3974name = "windows-sys"
3975version = "0.59.0"
3976source = "registry+https://github.com/rust-lang/crates.io-index"
3977checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3978dependencies = [
3979 "windows-targets 0.52.6",
3980]
3981
3982[[package]]
3983name = "windows-sys"
3984version = "0.60.2"
3985source = "registry+https://github.com/rust-lang/crates.io-index"
3986checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
3987dependencies = [
3988 "windows-targets 0.53.5",
3989]
3990
3991[[package]]
3992name = "windows-sys"
3993version = "0.61.2"
3994source = "registry+https://github.com/rust-lang/crates.io-index"
3995checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3996dependencies = [
3997 "windows-link 0.2.1",
3998]
3999
4000[[package]]
4001name = "windows-targets"
4002version = "0.42.2"
4003source = "registry+https://github.com/rust-lang/crates.io-index"
4004checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4005dependencies = [
4006 "windows_aarch64_gnullvm 0.42.2",
4007 "windows_aarch64_msvc 0.42.2",
4008 "windows_i686_gnu 0.42.2",
4009 "windows_i686_msvc 0.42.2",
4010 "windows_x86_64_gnu 0.42.2",
4011 "windows_x86_64_gnullvm 0.42.2",
4012 "windows_x86_64_msvc 0.42.2",
4013]
4014
4015[[package]]
4016name = "windows-targets"
4017version = "0.48.5"
4018source = "registry+https://github.com/rust-lang/crates.io-index"
4019checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4020dependencies = [
4021 "windows_aarch64_gnullvm 0.48.5",
4022 "windows_aarch64_msvc 0.48.5",
4023 "windows_i686_gnu 0.48.5",
4024 "windows_i686_msvc 0.48.5",
4025 "windows_x86_64_gnu 0.48.5",
4026 "windows_x86_64_gnullvm 0.48.5",
4027 "windows_x86_64_msvc 0.48.5",
4028]
4029
4030[[package]]
4031name = "windows-targets"
4032version = "0.52.6"
4033source = "registry+https://github.com/rust-lang/crates.io-index"
4034checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4035dependencies = [
4036 "windows_aarch64_gnullvm 0.52.6",
4037 "windows_aarch64_msvc 0.52.6",
4038 "windows_i686_gnu 0.52.6",
4039 "windows_i686_gnullvm 0.52.6",
4040 "windows_i686_msvc 0.52.6",
4041 "windows_x86_64_gnu 0.52.6",
4042 "windows_x86_64_gnullvm 0.52.6",
4043 "windows_x86_64_msvc 0.52.6",
4044]
4045
4046[[package]]
4047name = "windows-targets"
4048version = "0.53.5"
4049source = "registry+https://github.com/rust-lang/crates.io-index"
4050checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4051dependencies = [
4052 "windows-link 0.2.1",
4053 "windows_aarch64_gnullvm 0.53.1",
4054 "windows_aarch64_msvc 0.53.1",
4055 "windows_i686_gnu 0.53.1",
4056 "windows_i686_gnullvm 0.53.1",
4057 "windows_i686_msvc 0.53.1",
4058 "windows_x86_64_gnu 0.53.1",
4059 "windows_x86_64_gnullvm 0.53.1",
4060 "windows_x86_64_msvc 0.53.1",
4061]
4062
4063[[package]]
4064name = "windows_aarch64_gnullvm"
4065version = "0.42.2"
4066source = "registry+https://github.com/rust-lang/crates.io-index"
4067checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4068
4069[[package]]
4070name = "windows_aarch64_gnullvm"
4071version = "0.48.5"
4072source = "registry+https://github.com/rust-lang/crates.io-index"
4073checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4074
4075[[package]]
4076name = "windows_aarch64_gnullvm"
4077version = "0.52.6"
4078source = "registry+https://github.com/rust-lang/crates.io-index"
4079checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4080
4081[[package]]
4082name = "windows_aarch64_gnullvm"
4083version = "0.53.1"
4084source = "registry+https://github.com/rust-lang/crates.io-index"
4085checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4086
4087[[package]]
4088name = "windows_aarch64_msvc"
4089version = "0.42.2"
4090source = "registry+https://github.com/rust-lang/crates.io-index"
4091checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4092
4093[[package]]
4094name = "windows_aarch64_msvc"
4095version = "0.48.5"
4096source = "registry+https://github.com/rust-lang/crates.io-index"
4097checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4098
4099[[package]]
4100name = "windows_aarch64_msvc"
4101version = "0.52.6"
4102source = "registry+https://github.com/rust-lang/crates.io-index"
4103checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4104
4105[[package]]
4106name = "windows_aarch64_msvc"
4107version = "0.53.1"
4108source = "registry+https://github.com/rust-lang/crates.io-index"
4109checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4110
4111[[package]]
4112name = "windows_i686_gnu"
4113version = "0.42.2"
4114source = "registry+https://github.com/rust-lang/crates.io-index"
4115checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4116
4117[[package]]
4118name = "windows_i686_gnu"
4119version = "0.48.5"
4120source = "registry+https://github.com/rust-lang/crates.io-index"
4121checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4122
4123[[package]]
4124name = "windows_i686_gnu"
4125version = "0.52.6"
4126source = "registry+https://github.com/rust-lang/crates.io-index"
4127checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4128
4129[[package]]
4130name = "windows_i686_gnu"
4131version = "0.53.1"
4132source = "registry+https://github.com/rust-lang/crates.io-index"
4133checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4134
4135[[package]]
4136name = "windows_i686_gnullvm"
4137version = "0.52.6"
4138source = "registry+https://github.com/rust-lang/crates.io-index"
4139checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4140
4141[[package]]
4142name = "windows_i686_gnullvm"
4143version = "0.53.1"
4144source = "registry+https://github.com/rust-lang/crates.io-index"
4145checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4146
4147[[package]]
4148name = "windows_i686_msvc"
4149version = "0.42.2"
4150source = "registry+https://github.com/rust-lang/crates.io-index"
4151checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4152
4153[[package]]
4154name = "windows_i686_msvc"
4155version = "0.48.5"
4156source = "registry+https://github.com/rust-lang/crates.io-index"
4157checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4158
4159[[package]]
4160name = "windows_i686_msvc"
4161version = "0.52.6"
4162source = "registry+https://github.com/rust-lang/crates.io-index"
4163checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4164
4165[[package]]
4166name = "windows_i686_msvc"
4167version = "0.53.1"
4168source = "registry+https://github.com/rust-lang/crates.io-index"
4169checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4170
4171[[package]]
4172name = "windows_x86_64_gnu"
4173version = "0.42.2"
4174source = "registry+https://github.com/rust-lang/crates.io-index"
4175checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4176
4177[[package]]
4178name = "windows_x86_64_gnu"
4179version = "0.48.5"
4180source = "registry+https://github.com/rust-lang/crates.io-index"
4181checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4182
4183[[package]]
4184name = "windows_x86_64_gnu"
4185version = "0.52.6"
4186source = "registry+https://github.com/rust-lang/crates.io-index"
4187checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4188
4189[[package]]
4190name = "windows_x86_64_gnu"
4191version = "0.53.1"
4192source = "registry+https://github.com/rust-lang/crates.io-index"
4193checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4194
4195[[package]]
4196name = "windows_x86_64_gnullvm"
4197version = "0.42.2"
4198source = "registry+https://github.com/rust-lang/crates.io-index"
4199checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4200
4201[[package]]
4202name = "windows_x86_64_gnullvm"
4203version = "0.48.5"
4204source = "registry+https://github.com/rust-lang/crates.io-index"
4205checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4206
4207[[package]]
4208name = "windows_x86_64_gnullvm"
4209version = "0.52.6"
4210source = "registry+https://github.com/rust-lang/crates.io-index"
4211checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4212
4213[[package]]
4214name = "windows_x86_64_gnullvm"
4215version = "0.53.1"
4216source = "registry+https://github.com/rust-lang/crates.io-index"
4217checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4218
4219[[package]]
4220name = "windows_x86_64_msvc"
4221version = "0.42.2"
4222source = "registry+https://github.com/rust-lang/crates.io-index"
4223checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4224
4225[[package]]
4226name = "windows_x86_64_msvc"
4227version = "0.48.5"
4228source = "registry+https://github.com/rust-lang/crates.io-index"
4229checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4230
4231[[package]]
4232name = "windows_x86_64_msvc"
4233version = "0.52.6"
4234source = "registry+https://github.com/rust-lang/crates.io-index"
4235checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4236
4237[[package]]
4238name = "windows_x86_64_msvc"
4239version = "0.53.1"
4240source = "registry+https://github.com/rust-lang/crates.io-index"
4241checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4242
4243[[package]]
4244name = "winreg"
4245version = "0.50.0"
4246source = "registry+https://github.com/rust-lang/crates.io-index"
4247checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
4248dependencies = [
4249 "cfg-if",
4250 "windows-sys 0.48.0",
4251]
4252
4253[[package]]
4254name = "wit-bindgen"
4255version = "0.46.0"
4256source = "registry+https://github.com/rust-lang/crates.io-index"
4257checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4258
4259[[package]]
4260name = "writeable"
4261version = "0.6.1"
4262source = "registry+https://github.com/rust-lang/crates.io-index"
4263checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4264
4265[[package]]
4266name = "yansi"
4267version = "1.0.1"
4268source = "registry+https://github.com/rust-lang/crates.io-index"
4269checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4270
4271[[package]]
4272name = "yoke"
4273version = "0.8.0"
4274source = "registry+https://github.com/rust-lang/crates.io-index"
4275checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4276dependencies = [
4277 "serde",
4278 "stable_deref_trait",
4279 "yoke-derive",
4280 "zerofrom",
4281]
4282
4283[[package]]
4284name = "yoke-derive"
4285version = "0.8.0"
4286source = "registry+https://github.com/rust-lang/crates.io-index"
4287checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4288dependencies = [
4289 "proc-macro2",
4290 "quote",
4291 "syn 2.0.106",
4292 "synstructure",
4293]
4294
4295[[package]]
4296name = "zerocopy"
4297version = "0.8.27"
4298source = "registry+https://github.com/rust-lang/crates.io-index"
4299checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
4300dependencies = [
4301 "zerocopy-derive",
4302]
4303
4304[[package]]
4305name = "zerocopy-derive"
4306version = "0.8.27"
4307source = "registry+https://github.com/rust-lang/crates.io-index"
4308checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
4309dependencies = [
4310 "proc-macro2",
4311 "quote",
4312 "syn 2.0.106",
4313]
4314
4315[[package]]
4316name = "zerofrom"
4317version = "0.1.6"
4318source = "registry+https://github.com/rust-lang/crates.io-index"
4319checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4320dependencies = [
4321 "zerofrom-derive",
4322]
4323
4324[[package]]
4325name = "zerofrom-derive"
4326version = "0.1.6"
4327source = "registry+https://github.com/rust-lang/crates.io-index"
4328checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4329dependencies = [
4330 "proc-macro2",
4331 "quote",
4332 "syn 2.0.106",
4333 "synstructure",
4334]
4335
4336[[package]]
4337name = "zeroize"
4338version = "1.8.2"
4339source = "registry+https://github.com/rust-lang/crates.io-index"
4340checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4341dependencies = [
4342 "serde",
4343]
4344
4345[[package]]
4346name = "zerotrie"
4347version = "0.2.2"
4348source = "registry+https://github.com/rust-lang/crates.io-index"
4349checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4350dependencies = [
4351 "displaydoc",
4352 "yoke",
4353 "zerofrom",
4354]
4355
4356[[package]]
4357name = "zerovec"
4358version = "0.11.4"
4359source = "registry+https://github.com/rust-lang/crates.io-index"
4360checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
4361dependencies = [
4362 "yoke",
4363 "zerofrom",
4364 "zerovec-derive",
4365]
4366
4367[[package]]
4368name = "zerovec-derive"
4369version = "0.11.1"
4370source = "registry+https://github.com/rust-lang/crates.io-index"
4371checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4372dependencies = [
4373 "proc-macro2",
4374 "quote",
4375 "syn 2.0.106",
4376]