[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.107",
162]
163
164[[package]]
165name = "atcities-upload"
166version = "1.0.1"
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.107",
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.107",
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.107",
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.107",
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.107",
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.107",
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.107",
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.107",
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 = "genawaiter"
1038version = "0.99.1"
1039source = "registry+https://github.com/rust-lang/crates.io-index"
1040checksum = "c86bd0361bcbde39b13475e6e36cb24c329964aa2611be285289d1e4b751c1a0"
1041dependencies = [
1042 "futures-core",
1043 "genawaiter-macro",
1044 "genawaiter-proc-macro",
1045 "proc-macro-hack",
1046]
1047
1048[[package]]
1049name = "genawaiter-macro"
1050version = "0.99.1"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "0b32dfe1fdfc0bbde1f22a5da25355514b5e450c33a6af6770884c8750aedfbc"
1053
1054[[package]]
1055name = "genawaiter-proc-macro"
1056version = "0.99.1"
1057source = "registry+https://github.com/rust-lang/crates.io-index"
1058checksum = "784f84eebc366e15251c4a8c3acee82a6a6f427949776ecb88377362a9621738"
1059dependencies = [
1060 "proc-macro-error 0.4.12",
1061 "proc-macro-hack",
1062 "proc-macro2",
1063 "quote",
1064 "syn 1.0.109",
1065]
1066
1067[[package]]
1068name = "generic-array"
1069version = "0.14.9"
1070source = "registry+https://github.com/rust-lang/crates.io-index"
1071checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
1072dependencies = [
1073 "typenum",
1074 "version_check",
1075 "zeroize",
1076]
1077
1078[[package]]
1079name = "getrandom"
1080version = "0.2.16"
1081source = "registry+https://github.com/rust-lang/crates.io-index"
1082checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
1083dependencies = [
1084 "cfg-if",
1085 "js-sys",
1086 "libc",
1087 "wasi",
1088 "wasm-bindgen",
1089]
1090
1091[[package]]
1092name = "getrandom"
1093version = "0.3.4"
1094source = "registry+https://github.com/rust-lang/crates.io-index"
1095checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
1096dependencies = [
1097 "cfg-if",
1098 "js-sys",
1099 "libc",
1100 "r-efi",
1101 "wasip2",
1102 "wasm-bindgen",
1103]
1104
1105[[package]]
1106name = "gimli"
1107version = "0.32.3"
1108source = "registry+https://github.com/rust-lang/crates.io-index"
1109checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
1110
1111[[package]]
1112name = "globset"
1113version = "0.4.17"
1114source = "registry+https://github.com/rust-lang/crates.io-index"
1115checksum = "eab69130804d941f8075cfd713bf8848a2c3b3f201a9457a11e6f87e1ab62305"
1116dependencies = [
1117 "aho-corasick",
1118 "bstr",
1119 "log",
1120 "regex-automata",
1121 "regex-syntax",
1122]
1123
1124[[package]]
1125name = "group"
1126version = "0.13.0"
1127source = "registry+https://github.com/rust-lang/crates.io-index"
1128checksum = "f0f9ef7462f7c099f518d754361858f86d8a07af53ba9af0fe635bbccb151a63"
1129dependencies = [
1130 "ff",
1131 "rand_core 0.6.4",
1132 "subtle",
1133]
1134
1135[[package]]
1136name = "gzip-header"
1137version = "1.0.0"
1138source = "registry+https://github.com/rust-lang/crates.io-index"
1139checksum = "95cc527b92e6029a62960ad99aa8a6660faa4555fe5f731aab13aa6a921795a2"
1140dependencies = [
1141 "crc32fast",
1142]
1143
1144[[package]]
1145name = "h2"
1146version = "0.4.12"
1147source = "registry+https://github.com/rust-lang/crates.io-index"
1148checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
1149dependencies = [
1150 "atomic-waker",
1151 "bytes",
1152 "fnv",
1153 "futures-core",
1154 "futures-sink",
1155 "http",
1156 "indexmap",
1157 "slab",
1158 "tokio",
1159 "tokio-util",
1160 "tracing",
1161]
1162
1163[[package]]
1164name = "half"
1165version = "2.7.1"
1166source = "registry+https://github.com/rust-lang/crates.io-index"
1167checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
1168dependencies = [
1169 "cfg-if",
1170 "crunchy",
1171 "zerocopy",
1172]
1173
1174[[package]]
1175name = "hashbrown"
1176version = "0.14.5"
1177source = "registry+https://github.com/rust-lang/crates.io-index"
1178checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
1179
1180[[package]]
1181name = "hashbrown"
1182version = "0.16.0"
1183source = "registry+https://github.com/rust-lang/crates.io-index"
1184checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d"
1185
1186[[package]]
1187name = "heck"
1188version = "0.4.1"
1189source = "registry+https://github.com/rust-lang/crates.io-index"
1190checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
1191
1192[[package]]
1193name = "heck"
1194version = "0.5.0"
1195source = "registry+https://github.com/rust-lang/crates.io-index"
1196checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1197
1198[[package]]
1199name = "hermit-abi"
1200version = "0.5.2"
1201source = "registry+https://github.com/rust-lang/crates.io-index"
1202checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
1203
1204[[package]]
1205name = "hex_fmt"
1206version = "0.3.0"
1207source = "registry+https://github.com/rust-lang/crates.io-index"
1208checksum = "b07f60793ff0a4d9cef0f18e63b5357e06209987153a64648c972c1e5aff336f"
1209
1210[[package]]
1211name = "hickory-proto"
1212version = "0.24.4"
1213source = "registry+https://github.com/rust-lang/crates.io-index"
1214checksum = "92652067c9ce6f66ce53cc38d1169daa36e6e7eb7dd3b63b5103bd9d97117248"
1215dependencies = [
1216 "async-trait",
1217 "cfg-if",
1218 "data-encoding",
1219 "enum-as-inner",
1220 "futures-channel",
1221 "futures-io",
1222 "futures-util",
1223 "idna",
1224 "ipnet",
1225 "once_cell",
1226 "rand 0.8.5",
1227 "thiserror 1.0.69",
1228 "tinyvec",
1229 "tokio",
1230 "tracing",
1231 "url",
1232]
1233
1234[[package]]
1235name = "hickory-resolver"
1236version = "0.24.4"
1237source = "registry+https://github.com/rust-lang/crates.io-index"
1238checksum = "cbb117a1ca520e111743ab2f6688eddee69db4e0ea242545a604dce8a66fd22e"
1239dependencies = [
1240 "cfg-if",
1241 "futures-util",
1242 "hickory-proto",
1243 "ipconfig",
1244 "lru-cache",
1245 "once_cell",
1246 "parking_lot",
1247 "rand 0.8.5",
1248 "resolv-conf",
1249 "smallvec",
1250 "thiserror 1.0.69",
1251 "tokio",
1252 "tracing",
1253]
1254
1255[[package]]
1256name = "hmac"
1257version = "0.12.1"
1258source = "registry+https://github.com/rust-lang/crates.io-index"
1259checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1260dependencies = [
1261 "digest",
1262]
1263
1264[[package]]
1265name = "home"
1266version = "0.5.11"
1267source = "registry+https://github.com/rust-lang/crates.io-index"
1268checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1269dependencies = [
1270 "windows-sys 0.59.0",
1271]
1272
1273[[package]]
1274name = "http"
1275version = "1.3.1"
1276source = "registry+https://github.com/rust-lang/crates.io-index"
1277checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
1278dependencies = [
1279 "bytes",
1280 "fnv",
1281 "itoa",
1282]
1283
1284[[package]]
1285name = "http-body"
1286version = "1.0.1"
1287source = "registry+https://github.com/rust-lang/crates.io-index"
1288checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
1289dependencies = [
1290 "bytes",
1291 "http",
1292]
1293
1294[[package]]
1295name = "http-body-util"
1296version = "0.1.3"
1297source = "registry+https://github.com/rust-lang/crates.io-index"
1298checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
1299dependencies = [
1300 "bytes",
1301 "futures-core",
1302 "http",
1303 "http-body",
1304 "pin-project-lite",
1305]
1306
1307[[package]]
1308name = "httparse"
1309version = "1.10.1"
1310source = "registry+https://github.com/rust-lang/crates.io-index"
1311checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
1312
1313[[package]]
1314name = "httpdate"
1315version = "1.0.3"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1318
1319[[package]]
1320name = "hyper"
1321version = "1.7.0"
1322source = "registry+https://github.com/rust-lang/crates.io-index"
1323checksum = "eb3aa54a13a0dfe7fbe3a59e0c76093041720fdc77b110cc0fc260fafb4dc51e"
1324dependencies = [
1325 "atomic-waker",
1326 "bytes",
1327 "futures-channel",
1328 "futures-core",
1329 "h2",
1330 "http",
1331 "http-body",
1332 "httparse",
1333 "itoa",
1334 "pin-project-lite",
1335 "pin-utils",
1336 "smallvec",
1337 "tokio",
1338 "want",
1339]
1340
1341[[package]]
1342name = "hyper-rustls"
1343version = "0.27.7"
1344source = "registry+https://github.com/rust-lang/crates.io-index"
1345checksum = "e3c93eb611681b207e1fe55d5a71ecf91572ec8a6705cdb6857f7d8d5242cf58"
1346dependencies = [
1347 "http",
1348 "hyper",
1349 "hyper-util",
1350 "rustls",
1351 "rustls-pki-types",
1352 "tokio",
1353 "tokio-rustls",
1354 "tower-service",
1355 "webpki-roots",
1356]
1357
1358[[package]]
1359name = "hyper-tls"
1360version = "0.6.0"
1361source = "registry+https://github.com/rust-lang/crates.io-index"
1362checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
1363dependencies = [
1364 "bytes",
1365 "http-body-util",
1366 "hyper",
1367 "hyper-util",
1368 "native-tls",
1369 "tokio",
1370 "tokio-native-tls",
1371 "tower-service",
1372]
1373
1374[[package]]
1375name = "hyper-util"
1376version = "0.1.17"
1377source = "registry+https://github.com/rust-lang/crates.io-index"
1378checksum = "3c6995591a8f1380fcb4ba966a252a4b29188d51d2b89e3a252f5305be65aea8"
1379dependencies = [
1380 "base64 0.22.1",
1381 "bytes",
1382 "futures-channel",
1383 "futures-core",
1384 "futures-util",
1385 "http",
1386 "http-body",
1387 "hyper",
1388 "ipnet",
1389 "libc",
1390 "percent-encoding",
1391 "pin-project-lite",
1392 "socket2 0.6.1",
1393 "system-configuration",
1394 "tokio",
1395 "tower-service",
1396 "tracing",
1397 "windows-registry",
1398]
1399
1400[[package]]
1401name = "iana-time-zone"
1402version = "0.1.64"
1403source = "registry+https://github.com/rust-lang/crates.io-index"
1404checksum = "33e57f83510bb73707521ebaffa789ec8caf86f9657cad665b092b581d40e9fb"
1405dependencies = [
1406 "android_system_properties",
1407 "core-foundation-sys",
1408 "iana-time-zone-haiku",
1409 "js-sys",
1410 "log",
1411 "wasm-bindgen",
1412 "windows-core",
1413]
1414
1415[[package]]
1416name = "iana-time-zone-haiku"
1417version = "0.1.2"
1418source = "registry+https://github.com/rust-lang/crates.io-index"
1419checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1420dependencies = [
1421 "cc",
1422]
1423
1424[[package]]
1425name = "icu_collections"
1426version = "2.0.0"
1427source = "registry+https://github.com/rust-lang/crates.io-index"
1428checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1429dependencies = [
1430 "displaydoc",
1431 "potential_utf",
1432 "yoke",
1433 "zerofrom",
1434 "zerovec",
1435]
1436
1437[[package]]
1438name = "icu_locale_core"
1439version = "2.0.0"
1440source = "registry+https://github.com/rust-lang/crates.io-index"
1441checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1442dependencies = [
1443 "displaydoc",
1444 "litemap",
1445 "tinystr",
1446 "writeable",
1447 "zerovec",
1448]
1449
1450[[package]]
1451name = "icu_normalizer"
1452version = "2.0.0"
1453source = "registry+https://github.com/rust-lang/crates.io-index"
1454checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1455dependencies = [
1456 "displaydoc",
1457 "icu_collections",
1458 "icu_normalizer_data",
1459 "icu_properties",
1460 "icu_provider",
1461 "smallvec",
1462 "zerovec",
1463]
1464
1465[[package]]
1466name = "icu_normalizer_data"
1467version = "2.0.0"
1468source = "registry+https://github.com/rust-lang/crates.io-index"
1469checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1470
1471[[package]]
1472name = "icu_properties"
1473version = "2.0.1"
1474source = "registry+https://github.com/rust-lang/crates.io-index"
1475checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1476dependencies = [
1477 "displaydoc",
1478 "icu_collections",
1479 "icu_locale_core",
1480 "icu_properties_data",
1481 "icu_provider",
1482 "potential_utf",
1483 "zerotrie",
1484 "zerovec",
1485]
1486
1487[[package]]
1488name = "icu_properties_data"
1489version = "2.0.1"
1490source = "registry+https://github.com/rust-lang/crates.io-index"
1491checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1492
1493[[package]]
1494name = "icu_provider"
1495version = "2.0.0"
1496source = "registry+https://github.com/rust-lang/crates.io-index"
1497checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1498dependencies = [
1499 "displaydoc",
1500 "icu_locale_core",
1501 "stable_deref_trait",
1502 "tinystr",
1503 "writeable",
1504 "yoke",
1505 "zerofrom",
1506 "zerotrie",
1507 "zerovec",
1508]
1509
1510[[package]]
1511name = "ident_case"
1512version = "1.0.1"
1513source = "registry+https://github.com/rust-lang/crates.io-index"
1514checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1515
1516[[package]]
1517name = "idna"
1518version = "1.1.0"
1519source = "registry+https://github.com/rust-lang/crates.io-index"
1520checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1521dependencies = [
1522 "idna_adapter",
1523 "smallvec",
1524 "utf8_iter",
1525]
1526
1527[[package]]
1528name = "idna_adapter"
1529version = "1.2.1"
1530source = "registry+https://github.com/rust-lang/crates.io-index"
1531checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1532dependencies = [
1533 "icu_normalizer",
1534 "icu_properties",
1535]
1536
1537[[package]]
1538name = "ignore"
1539version = "0.4.24"
1540source = "registry+https://github.com/rust-lang/crates.io-index"
1541checksum = "81776e6f9464432afcc28d03e52eb101c93b6f0566f52aef2427663e700f0403"
1542dependencies = [
1543 "crossbeam-deque",
1544 "globset",
1545 "log",
1546 "memchr",
1547 "regex-automata",
1548 "same-file",
1549 "walkdir",
1550 "winapi-util",
1551]
1552
1553[[package]]
1554name = "indexmap"
1555version = "2.12.0"
1556source = "registry+https://github.com/rust-lang/crates.io-index"
1557checksum = "6717a8d2a5a929a1a2eb43a12812498ed141a0bcfb7e8f7844fbdbe4303bba9f"
1558dependencies = [
1559 "equivalent",
1560 "hashbrown 0.16.0",
1561]
1562
1563[[package]]
1564name = "indoc"
1565version = "2.0.6"
1566source = "registry+https://github.com/rust-lang/crates.io-index"
1567checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
1568
1569[[package]]
1570name = "ipconfig"
1571version = "0.3.2"
1572source = "registry+https://github.com/rust-lang/crates.io-index"
1573checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
1574dependencies = [
1575 "socket2 0.5.10",
1576 "widestring",
1577 "windows-sys 0.48.0",
1578 "winreg",
1579]
1580
1581[[package]]
1582name = "ipld-core"
1583version = "0.4.2"
1584source = "registry+https://github.com/rust-lang/crates.io-index"
1585checksum = "104718b1cc124d92a6d01ca9c9258a7df311405debb3408c445a36452f9bf8db"
1586dependencies = [
1587 "cid",
1588 "serde",
1589 "serde_bytes",
1590]
1591
1592[[package]]
1593name = "ipnet"
1594version = "2.11.0"
1595source = "registry+https://github.com/rust-lang/crates.io-index"
1596checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130"
1597
1598[[package]]
1599name = "iri-string"
1600version = "0.7.8"
1601source = "registry+https://github.com/rust-lang/crates.io-index"
1602checksum = "dbc5ebe9c3a1a7a5127f920a418f7585e9e758e911d0466ed004f393b0e380b2"
1603dependencies = [
1604 "memchr",
1605 "serde",
1606]
1607
1608[[package]]
1609name = "is_ci"
1610version = "1.2.0"
1611source = "registry+https://github.com/rust-lang/crates.io-index"
1612checksum = "7655c9839580ee829dfacba1d1278c2b7883e50a277ff7541299489d6bdfdc45"
1613
1614[[package]]
1615name = "is_terminal_polyfill"
1616version = "1.70.1"
1617source = "registry+https://github.com/rust-lang/crates.io-index"
1618checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1619
1620[[package]]
1621name = "itoa"
1622version = "1.0.15"
1623source = "registry+https://github.com/rust-lang/crates.io-index"
1624checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1625
1626[[package]]
1627name = "jacquard"
1628version = "0.6.0"
1629source = "registry+https://github.com/rust-lang/crates.io-index"
1630checksum = "5857f000e67605995ba7c24c9833f840adf5c063a731a6f72f69e0e3c986791c"
1631dependencies = [
1632 "bon",
1633 "bytes",
1634 "getrandom 0.2.16",
1635 "http",
1636 "jacquard-api",
1637 "jacquard-common",
1638 "jacquard-derive",
1639 "jacquard-identity",
1640 "jacquard-oauth",
1641 "jose-jwk",
1642 "miette",
1643 "p256",
1644 "percent-encoding",
1645 "rand_core 0.6.4",
1646 "reqwest",
1647 "serde",
1648 "serde_html_form",
1649 "serde_ipld_dagcbor",
1650 "serde_json",
1651 "smol_str",
1652 "thiserror 2.0.17",
1653 "tokio",
1654 "trait-variant",
1655 "url",
1656]
1657
1658[[package]]
1659name = "jacquard-api"
1660version = "0.6.0"
1661source = "registry+https://github.com/rust-lang/crates.io-index"
1662checksum = "58132b60473124a34c64c267a1c3390c2e4a4dfd62c801639903c4aefd05f52d"
1663dependencies = [
1664 "bon",
1665 "bytes",
1666 "jacquard-common",
1667 "jacquard-derive",
1668 "miette",
1669 "serde",
1670 "serde_ipld_dagcbor",
1671 "thiserror 2.0.17",
1672]
1673
1674[[package]]
1675name = "jacquard-common"
1676version = "0.6.0"
1677source = "registry+https://github.com/rust-lang/crates.io-index"
1678checksum = "f7f1bab0279ae2e29c3383f132a05b9c708585fab62e94292affdf352ce13242"
1679dependencies = [
1680 "base64 0.22.1",
1681 "bon",
1682 "bytes",
1683 "chrono",
1684 "cid",
1685 "genawaiter",
1686 "getrandom 0.3.4",
1687 "http",
1688 "ipld-core",
1689 "k256",
1690 "langtag",
1691 "miette",
1692 "multibase",
1693 "multihash",
1694 "ouroboros",
1695 "p256",
1696 "rand 0.9.2",
1697 "regex",
1698 "reqwest",
1699 "serde",
1700 "serde_html_form",
1701 "serde_ipld_dagcbor",
1702 "serde_json",
1703 "signature",
1704 "smol_str",
1705 "thiserror 2.0.17",
1706 "tokio",
1707 "tokio-util",
1708 "trait-variant",
1709 "url",
1710]
1711
1712[[package]]
1713name = "jacquard-derive"
1714version = "0.6.0"
1715source = "registry+https://github.com/rust-lang/crates.io-index"
1716checksum = "a4741844c0638498156338e6230a81ecb54d0a061ffc6f4f54e97b94972a01fb"
1717dependencies = [
1718 "proc-macro2",
1719 "quote",
1720 "syn 2.0.107",
1721]
1722
1723[[package]]
1724name = "jacquard-identity"
1725version = "0.6.0"
1726source = "registry+https://github.com/rust-lang/crates.io-index"
1727checksum = "65ae022725ddc09ce03c1a02a97b895279e1d46957c0574a032fa78b81273263"
1728dependencies = [
1729 "bon",
1730 "bytes",
1731 "hickory-resolver",
1732 "http",
1733 "jacquard-api",
1734 "jacquard-common",
1735 "miette",
1736 "percent-encoding",
1737 "reqwest",
1738 "serde",
1739 "serde_html_form",
1740 "serde_json",
1741 "thiserror 2.0.17",
1742 "tokio",
1743 "trait-variant",
1744 "url",
1745 "urlencoding",
1746]
1747
1748[[package]]
1749name = "jacquard-oauth"
1750version = "0.6.0"
1751source = "registry+https://github.com/rust-lang/crates.io-index"
1752checksum = "8c37269e2ea0c6c3418bf61fb3d342aab87b1bda706ebae49e454f8e50580cab"
1753dependencies = [
1754 "base64 0.22.1",
1755 "bytes",
1756 "chrono",
1757 "dashmap",
1758 "elliptic-curve",
1759 "http",
1760 "jacquard-common",
1761 "jacquard-identity",
1762 "jose-jwa",
1763 "jose-jwk",
1764 "miette",
1765 "p256",
1766 "rand 0.8.5",
1767 "rand_core 0.6.4",
1768 "reqwest",
1769 "rouille",
1770 "serde",
1771 "serde_html_form",
1772 "serde_json",
1773 "sha2",
1774 "signature",
1775 "smol_str",
1776 "thiserror 2.0.17",
1777 "tokio",
1778 "trait-variant",
1779 "url",
1780 "webbrowser",
1781]
1782
1783[[package]]
1784name = "jiff"
1785version = "0.2.15"
1786source = "registry+https://github.com/rust-lang/crates.io-index"
1787checksum = "be1f93b8b1eb69c77f24bbb0afdf66f54b632ee39af40ca21c4365a1d7347e49"
1788dependencies = [
1789 "jiff-static",
1790 "log",
1791 "portable-atomic",
1792 "portable-atomic-util",
1793 "serde",
1794]
1795
1796[[package]]
1797name = "jiff-static"
1798version = "0.2.15"
1799source = "registry+https://github.com/rust-lang/crates.io-index"
1800checksum = "03343451ff899767262ec32146f6d559dd759fdadf42ff0e227c7c48f72594b4"
1801dependencies = [
1802 "proc-macro2",
1803 "quote",
1804 "syn 2.0.107",
1805]
1806
1807[[package]]
1808name = "jni"
1809version = "0.21.1"
1810source = "registry+https://github.com/rust-lang/crates.io-index"
1811checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97"
1812dependencies = [
1813 "cesu8",
1814 "cfg-if",
1815 "combine",
1816 "jni-sys",
1817 "log",
1818 "thiserror 1.0.69",
1819 "walkdir",
1820 "windows-sys 0.45.0",
1821]
1822
1823[[package]]
1824name = "jni-sys"
1825version = "0.3.0"
1826source = "registry+https://github.com/rust-lang/crates.io-index"
1827checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130"
1828
1829[[package]]
1830name = "jose-b64"
1831version = "0.1.2"
1832source = "registry+https://github.com/rust-lang/crates.io-index"
1833checksum = "bec69375368709666b21c76965ce67549f2d2db7605f1f8707d17c9656801b56"
1834dependencies = [
1835 "base64ct",
1836 "serde",
1837 "subtle",
1838 "zeroize",
1839]
1840
1841[[package]]
1842name = "jose-jwa"
1843version = "0.1.2"
1844source = "registry+https://github.com/rust-lang/crates.io-index"
1845checksum = "9ab78e053fe886a351d67cf0d194c000f9d0dcb92906eb34d853d7e758a4b3a7"
1846dependencies = [
1847 "serde",
1848]
1849
1850[[package]]
1851name = "jose-jwk"
1852version = "0.1.2"
1853source = "registry+https://github.com/rust-lang/crates.io-index"
1854checksum = "280fa263807fe0782ecb6f2baadc28dffc04e00558a58e33bfdb801d11fd58e7"
1855dependencies = [
1856 "jose-b64",
1857 "jose-jwa",
1858 "p256",
1859 "p384",
1860 "rsa",
1861 "serde",
1862 "zeroize",
1863]
1864
1865[[package]]
1866name = "js-sys"
1867version = "0.3.81"
1868source = "registry+https://github.com/rust-lang/crates.io-index"
1869checksum = "ec48937a97411dcb524a265206ccd4c90bb711fca92b2792c407f268825b9305"
1870dependencies = [
1871 "once_cell",
1872 "wasm-bindgen",
1873]
1874
1875[[package]]
1876name = "k256"
1877version = "0.13.4"
1878source = "registry+https://github.com/rust-lang/crates.io-index"
1879checksum = "f6e3919bbaa2945715f0bb6d3934a173d1e9a59ac23767fbaaef277265a7411b"
1880dependencies = [
1881 "cfg-if",
1882 "ecdsa",
1883 "elliptic-curve",
1884 "sha2",
1885]
1886
1887[[package]]
1888name = "langtag"
1889version = "0.4.0"
1890source = "registry+https://github.com/rust-lang/crates.io-index"
1891checksum = "9ecb4c689a30e48ebeaa14237f34037e300dd072e6ad21a9ec72e810ff3c6600"
1892dependencies = [
1893 "serde",
1894 "static-regular-grammar",
1895 "thiserror 1.0.69",
1896]
1897
1898[[package]]
1899name = "lazy_static"
1900version = "1.5.0"
1901source = "registry+https://github.com/rust-lang/crates.io-index"
1902checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1903dependencies = [
1904 "spin",
1905]
1906
1907[[package]]
1908name = "lexicons"
1909version = "1.0.0"
1910dependencies = [
1911 "bon",
1912 "bytes",
1913 "jacquard-common",
1914 "jacquard-derive",
1915 "miette",
1916 "serde",
1917 "thiserror 2.0.17",
1918]
1919
1920[[package]]
1921name = "libc"
1922version = "0.2.177"
1923source = "registry+https://github.com/rust-lang/crates.io-index"
1924checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
1925
1926[[package]]
1927name = "libm"
1928version = "0.2.15"
1929source = "registry+https://github.com/rust-lang/crates.io-index"
1930checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1931
1932[[package]]
1933name = "libredox"
1934version = "0.1.10"
1935source = "registry+https://github.com/rust-lang/crates.io-index"
1936checksum = "416f7e718bdb06000964960ffa43b4335ad4012ae8b99060261aa4a8088d5ccb"
1937dependencies = [
1938 "bitflags",
1939 "libc",
1940 "redox_syscall",
1941]
1942
1943[[package]]
1944name = "linked-hash-map"
1945version = "0.5.6"
1946source = "registry+https://github.com/rust-lang/crates.io-index"
1947checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
1948
1949[[package]]
1950name = "linux-raw-sys"
1951version = "0.11.0"
1952source = "registry+https://github.com/rust-lang/crates.io-index"
1953checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
1954
1955[[package]]
1956name = "litemap"
1957version = "0.8.0"
1958source = "registry+https://github.com/rust-lang/crates.io-index"
1959checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1960
1961[[package]]
1962name = "lock_api"
1963version = "0.4.14"
1964source = "registry+https://github.com/rust-lang/crates.io-index"
1965checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1966dependencies = [
1967 "scopeguard",
1968]
1969
1970[[package]]
1971name = "log"
1972version = "0.4.28"
1973source = "registry+https://github.com/rust-lang/crates.io-index"
1974checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432"
1975
1976[[package]]
1977name = "lru-cache"
1978version = "0.1.2"
1979source = "registry+https://github.com/rust-lang/crates.io-index"
1980checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
1981dependencies = [
1982 "linked-hash-map",
1983]
1984
1985[[package]]
1986name = "lru-slab"
1987version = "0.1.2"
1988source = "registry+https://github.com/rust-lang/crates.io-index"
1989checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154"
1990
1991[[package]]
1992name = "malloc_buf"
1993version = "0.0.6"
1994source = "registry+https://github.com/rust-lang/crates.io-index"
1995checksum = "62bb907fe88d54d8d9ce32a3cceab4218ed2f6b7d35617cafe9adf84e43919cb"
1996dependencies = [
1997 "libc",
1998]
1999
2000[[package]]
2001name = "match-lookup"
2002version = "0.1.1"
2003source = "registry+https://github.com/rust-lang/crates.io-index"
2004checksum = "1265724d8cb29dbbc2b0f06fffb8bf1a8c0cf73a78eede9ba73a4a66c52a981e"
2005dependencies = [
2006 "proc-macro2",
2007 "quote",
2008 "syn 1.0.109",
2009]
2010
2011[[package]]
2012name = "memchr"
2013version = "2.7.6"
2014source = "registry+https://github.com/rust-lang/crates.io-index"
2015checksum = "f52b00d39961fc5b2736ea853c9cc86238e165017a493d1d5c8eac6bdc4cc273"
2016
2017[[package]]
2018name = "miette"
2019version = "7.6.0"
2020source = "registry+https://github.com/rust-lang/crates.io-index"
2021checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
2022dependencies = [
2023 "backtrace",
2024 "backtrace-ext",
2025 "cfg-if",
2026 "miette-derive",
2027 "owo-colors",
2028 "supports-color",
2029 "supports-hyperlinks",
2030 "supports-unicode",
2031 "terminal_size",
2032 "textwrap",
2033 "unicode-width 0.1.14",
2034]
2035
2036[[package]]
2037name = "miette-derive"
2038version = "7.6.0"
2039source = "registry+https://github.com/rust-lang/crates.io-index"
2040checksum = "db5b29714e950dbb20d5e6f74f9dcec4edbcc1067bb7f8ed198c097b8c1a818b"
2041dependencies = [
2042 "proc-macro2",
2043 "quote",
2044 "syn 2.0.107",
2045]
2046
2047[[package]]
2048name = "mime"
2049version = "0.3.17"
2050source = "registry+https://github.com/rust-lang/crates.io-index"
2051checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2052
2053[[package]]
2054name = "mime_guess"
2055version = "2.0.5"
2056source = "registry+https://github.com/rust-lang/crates.io-index"
2057checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
2058dependencies = [
2059 "mime",
2060 "unicase",
2061]
2062
2063[[package]]
2064name = "minimal-lexical"
2065version = "0.2.1"
2066source = "registry+https://github.com/rust-lang/crates.io-index"
2067checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2068
2069[[package]]
2070name = "miniz_oxide"
2071version = "0.8.9"
2072source = "registry+https://github.com/rust-lang/crates.io-index"
2073checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
2074dependencies = [
2075 "adler2",
2076 "simd-adler32",
2077]
2078
2079[[package]]
2080name = "mio"
2081version = "1.1.0"
2082source = "registry+https://github.com/rust-lang/crates.io-index"
2083checksum = "69d83b0086dc8ecf3ce9ae2874b2d1290252e2a30720bea58a5c6639b0092873"
2084dependencies = [
2085 "libc",
2086 "wasi",
2087 "windows-sys 0.61.2",
2088]
2089
2090[[package]]
2091name = "multibase"
2092version = "0.9.2"
2093source = "registry+https://github.com/rust-lang/crates.io-index"
2094checksum = "8694bb4835f452b0e3bb06dbebb1d6fc5385b6ca1caf2e55fd165c042390ec77"
2095dependencies = [
2096 "base-x",
2097 "base256emoji",
2098 "data-encoding",
2099 "data-encoding-macro",
2100]
2101
2102[[package]]
2103name = "multihash"
2104version = "0.19.3"
2105source = "registry+https://github.com/rust-lang/crates.io-index"
2106checksum = "6b430e7953c29dd6a09afc29ff0bb69c6e306329ee6794700aee27b76a1aea8d"
2107dependencies = [
2108 "core2",
2109 "serde",
2110 "unsigned-varint",
2111]
2112
2113[[package]]
2114name = "multipart"
2115version = "0.18.0"
2116source = "registry+https://github.com/rust-lang/crates.io-index"
2117checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
2118dependencies = [
2119 "buf_redux",
2120 "httparse",
2121 "log",
2122 "mime",
2123 "mime_guess",
2124 "quick-error",
2125 "rand 0.8.5",
2126 "safemem",
2127 "tempfile",
2128 "twoway",
2129]
2130
2131[[package]]
2132name = "native-tls"
2133version = "0.2.14"
2134source = "registry+https://github.com/rust-lang/crates.io-index"
2135checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
2136dependencies = [
2137 "libc",
2138 "log",
2139 "openssl",
2140 "openssl-probe",
2141 "openssl-sys",
2142 "schannel",
2143 "security-framework",
2144 "security-framework-sys",
2145 "tempfile",
2146]
2147
2148[[package]]
2149name = "ndk-context"
2150version = "0.1.1"
2151source = "registry+https://github.com/rust-lang/crates.io-index"
2152checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
2153
2154[[package]]
2155name = "nom"
2156version = "7.1.3"
2157source = "registry+https://github.com/rust-lang/crates.io-index"
2158checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
2159dependencies = [
2160 "memchr",
2161 "minimal-lexical",
2162]
2163
2164[[package]]
2165name = "num-bigint-dig"
2166version = "0.8.4"
2167source = "registry+https://github.com/rust-lang/crates.io-index"
2168checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
2169dependencies = [
2170 "byteorder",
2171 "lazy_static",
2172 "libm",
2173 "num-integer",
2174 "num-iter",
2175 "num-traits",
2176 "rand 0.8.5",
2177 "smallvec",
2178 "zeroize",
2179]
2180
2181[[package]]
2182name = "num-conv"
2183version = "0.1.0"
2184source = "registry+https://github.com/rust-lang/crates.io-index"
2185checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
2186
2187[[package]]
2188name = "num-integer"
2189version = "0.1.46"
2190source = "registry+https://github.com/rust-lang/crates.io-index"
2191checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
2192dependencies = [
2193 "num-traits",
2194]
2195
2196[[package]]
2197name = "num-iter"
2198version = "0.1.45"
2199source = "registry+https://github.com/rust-lang/crates.io-index"
2200checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2201dependencies = [
2202 "autocfg",
2203 "num-integer",
2204 "num-traits",
2205]
2206
2207[[package]]
2208name = "num-traits"
2209version = "0.2.19"
2210source = "registry+https://github.com/rust-lang/crates.io-index"
2211checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2212dependencies = [
2213 "autocfg",
2214 "libm",
2215]
2216
2217[[package]]
2218name = "num_cpus"
2219version = "1.17.0"
2220source = "registry+https://github.com/rust-lang/crates.io-index"
2221checksum = "91df4bbde75afed763b708b7eee1e8e7651e02d97f6d5dd763e89367e957b23b"
2222dependencies = [
2223 "hermit-abi",
2224 "libc",
2225]
2226
2227[[package]]
2228name = "num_threads"
2229version = "0.1.7"
2230source = "registry+https://github.com/rust-lang/crates.io-index"
2231checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
2232dependencies = [
2233 "libc",
2234]
2235
2236[[package]]
2237name = "objc"
2238version = "0.2.7"
2239source = "registry+https://github.com/rust-lang/crates.io-index"
2240checksum = "915b1b472bc21c53464d6c8461c9d3af805ba1ef837e1cac254428f4a77177b1"
2241dependencies = [
2242 "malloc_buf",
2243]
2244
2245[[package]]
2246name = "object"
2247version = "0.37.3"
2248source = "registry+https://github.com/rust-lang/crates.io-index"
2249checksum = "ff76201f031d8863c38aa7f905eca4f53abbfa15f609db4277d44cd8938f33fe"
2250dependencies = [
2251 "memchr",
2252]
2253
2254[[package]]
2255name = "once_cell"
2256version = "1.21.3"
2257source = "registry+https://github.com/rust-lang/crates.io-index"
2258checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
2259
2260[[package]]
2261name = "once_cell_polyfill"
2262version = "1.70.1"
2263source = "registry+https://github.com/rust-lang/crates.io-index"
2264checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
2265
2266[[package]]
2267name = "openssl"
2268version = "0.10.74"
2269source = "registry+https://github.com/rust-lang/crates.io-index"
2270checksum = "24ad14dd45412269e1a30f52ad8f0664f0f4f4a89ee8fe28c3b3527021ebb654"
2271dependencies = [
2272 "bitflags",
2273 "cfg-if",
2274 "foreign-types",
2275 "libc",
2276 "once_cell",
2277 "openssl-macros",
2278 "openssl-sys",
2279]
2280
2281[[package]]
2282name = "openssl-macros"
2283version = "0.1.1"
2284source = "registry+https://github.com/rust-lang/crates.io-index"
2285checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
2286dependencies = [
2287 "proc-macro2",
2288 "quote",
2289 "syn 2.0.107",
2290]
2291
2292[[package]]
2293name = "openssl-probe"
2294version = "0.1.6"
2295source = "registry+https://github.com/rust-lang/crates.io-index"
2296checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
2297
2298[[package]]
2299name = "openssl-sys"
2300version = "0.9.110"
2301source = "registry+https://github.com/rust-lang/crates.io-index"
2302checksum = "0a9f0075ba3c21b09f8e8b2026584b1d18d49388648f2fbbf3c97ea8deced8e2"
2303dependencies = [
2304 "cc",
2305 "libc",
2306 "pkg-config",
2307 "vcpkg",
2308]
2309
2310[[package]]
2311name = "ouroboros"
2312version = "0.18.5"
2313source = "registry+https://github.com/rust-lang/crates.io-index"
2314checksum = "1e0f050db9c44b97a94723127e6be766ac5c340c48f2c4bb3ffa11713744be59"
2315dependencies = [
2316 "aliasable",
2317 "ouroboros_macro",
2318 "static_assertions",
2319]
2320
2321[[package]]
2322name = "ouroboros_macro"
2323version = "0.18.5"
2324source = "registry+https://github.com/rust-lang/crates.io-index"
2325checksum = "3c7028bdd3d43083f6d8d4d5187680d0d3560d54df4cc9d752005268b41e64d0"
2326dependencies = [
2327 "heck 0.4.1",
2328 "proc-macro2",
2329 "proc-macro2-diagnostics",
2330 "quote",
2331 "syn 2.0.107",
2332]
2333
2334[[package]]
2335name = "owo-colors"
2336version = "4.2.3"
2337source = "registry+https://github.com/rust-lang/crates.io-index"
2338checksum = "9c6901729fa79e91a0913333229e9ca5dc725089d1c363b2f4b4760709dc4a52"
2339
2340[[package]]
2341name = "p256"
2342version = "0.13.2"
2343source = "registry+https://github.com/rust-lang/crates.io-index"
2344checksum = "c9863ad85fa8f4460f9c48cb909d38a0d689dba1f6f6988a5e3e0d31071bcd4b"
2345dependencies = [
2346 "ecdsa",
2347 "elliptic-curve",
2348 "primeorder",
2349 "sha2",
2350]
2351
2352[[package]]
2353name = "p384"
2354version = "0.13.1"
2355source = "registry+https://github.com/rust-lang/crates.io-index"
2356checksum = "fe42f1670a52a47d448f14b6a5c61dd78fce51856e68edaa38f7ae3a46b8d6b6"
2357dependencies = [
2358 "elliptic-curve",
2359 "primeorder",
2360]
2361
2362[[package]]
2363name = "parking_lot"
2364version = "0.12.5"
2365source = "registry+https://github.com/rust-lang/crates.io-index"
2366checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
2367dependencies = [
2368 "lock_api",
2369 "parking_lot_core",
2370]
2371
2372[[package]]
2373name = "parking_lot_core"
2374version = "0.9.12"
2375source = "registry+https://github.com/rust-lang/crates.io-index"
2376checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
2377dependencies = [
2378 "cfg-if",
2379 "libc",
2380 "redox_syscall",
2381 "smallvec",
2382 "windows-link 0.2.1",
2383]
2384
2385[[package]]
2386name = "pem-rfc7468"
2387version = "0.7.0"
2388source = "registry+https://github.com/rust-lang/crates.io-index"
2389checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
2390dependencies = [
2391 "base64ct",
2392]
2393
2394[[package]]
2395name = "percent-encoding"
2396version = "2.3.2"
2397source = "registry+https://github.com/rust-lang/crates.io-index"
2398checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
2399
2400[[package]]
2401name = "pin-project-lite"
2402version = "0.2.16"
2403source = "registry+https://github.com/rust-lang/crates.io-index"
2404checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
2405
2406[[package]]
2407name = "pin-utils"
2408version = "0.1.0"
2409source = "registry+https://github.com/rust-lang/crates.io-index"
2410checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2411
2412[[package]]
2413name = "pkcs1"
2414version = "0.7.5"
2415source = "registry+https://github.com/rust-lang/crates.io-index"
2416checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
2417dependencies = [
2418 "der",
2419 "pkcs8",
2420 "spki",
2421]
2422
2423[[package]]
2424name = "pkcs8"
2425version = "0.10.2"
2426source = "registry+https://github.com/rust-lang/crates.io-index"
2427checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
2428dependencies = [
2429 "der",
2430 "spki",
2431]
2432
2433[[package]]
2434name = "pkg-config"
2435version = "0.3.32"
2436source = "registry+https://github.com/rust-lang/crates.io-index"
2437checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
2438
2439[[package]]
2440name = "portable-atomic"
2441version = "1.11.1"
2442source = "registry+https://github.com/rust-lang/crates.io-index"
2443checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
2444
2445[[package]]
2446name = "portable-atomic-util"
2447version = "0.2.4"
2448source = "registry+https://github.com/rust-lang/crates.io-index"
2449checksum = "d8a2f0d8d040d7848a709caf78912debcc3f33ee4b3cac47d73d1e1069e83507"
2450dependencies = [
2451 "portable-atomic",
2452]
2453
2454[[package]]
2455name = "potential_utf"
2456version = "0.1.3"
2457source = "registry+https://github.com/rust-lang/crates.io-index"
2458checksum = "84df19adbe5b5a0782edcab45899906947ab039ccf4573713735ee7de1e6b08a"
2459dependencies = [
2460 "zerovec",
2461]
2462
2463[[package]]
2464name = "powerfmt"
2465version = "0.2.0"
2466source = "registry+https://github.com/rust-lang/crates.io-index"
2467checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
2468
2469[[package]]
2470name = "ppv-lite86"
2471version = "0.2.21"
2472source = "registry+https://github.com/rust-lang/crates.io-index"
2473checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
2474dependencies = [
2475 "zerocopy",
2476]
2477
2478[[package]]
2479name = "prettyplease"
2480version = "0.2.37"
2481source = "registry+https://github.com/rust-lang/crates.io-index"
2482checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
2483dependencies = [
2484 "proc-macro2",
2485 "syn 2.0.107",
2486]
2487
2488[[package]]
2489name = "primeorder"
2490version = "0.13.6"
2491source = "registry+https://github.com/rust-lang/crates.io-index"
2492checksum = "353e1ca18966c16d9deb1c69278edbc5f194139612772bd9537af60ac231e1e6"
2493dependencies = [
2494 "elliptic-curve",
2495]
2496
2497[[package]]
2498name = "proc-macro-error"
2499version = "0.4.12"
2500source = "registry+https://github.com/rust-lang/crates.io-index"
2501checksum = "18f33027081eba0a6d8aba6d1b1c3a3be58cbb12106341c2d5759fcd9b5277e7"
2502dependencies = [
2503 "proc-macro-error-attr 0.4.12",
2504 "proc-macro2",
2505 "quote",
2506 "syn 1.0.109",
2507 "version_check",
2508]
2509
2510[[package]]
2511name = "proc-macro-error"
2512version = "1.0.4"
2513source = "registry+https://github.com/rust-lang/crates.io-index"
2514checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
2515dependencies = [
2516 "proc-macro-error-attr 1.0.4",
2517 "proc-macro2",
2518 "quote",
2519 "syn 1.0.109",
2520 "version_check",
2521]
2522
2523[[package]]
2524name = "proc-macro-error-attr"
2525version = "0.4.12"
2526source = "registry+https://github.com/rust-lang/crates.io-index"
2527checksum = "8a5b4b77fdb63c1eca72173d68d24501c54ab1269409f6b672c85deb18af69de"
2528dependencies = [
2529 "proc-macro2",
2530 "quote",
2531 "syn 1.0.109",
2532 "syn-mid",
2533 "version_check",
2534]
2535
2536[[package]]
2537name = "proc-macro-error-attr"
2538version = "1.0.4"
2539source = "registry+https://github.com/rust-lang/crates.io-index"
2540checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
2541dependencies = [
2542 "proc-macro2",
2543 "quote",
2544 "version_check",
2545]
2546
2547[[package]]
2548name = "proc-macro-hack"
2549version = "0.5.20+deprecated"
2550source = "registry+https://github.com/rust-lang/crates.io-index"
2551checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
2552
2553[[package]]
2554name = "proc-macro2"
2555version = "1.0.101"
2556source = "registry+https://github.com/rust-lang/crates.io-index"
2557checksum = "89ae43fd86e4158d6db51ad8e2b80f313af9cc74f5c0e03ccb87de09998732de"
2558dependencies = [
2559 "unicode-ident",
2560]
2561
2562[[package]]
2563name = "proc-macro2-diagnostics"
2564version = "0.10.1"
2565source = "registry+https://github.com/rust-lang/crates.io-index"
2566checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
2567dependencies = [
2568 "proc-macro2",
2569 "quote",
2570 "syn 2.0.107",
2571 "version_check",
2572 "yansi",
2573]
2574
2575[[package]]
2576name = "quick-error"
2577version = "1.2.3"
2578source = "registry+https://github.com/rust-lang/crates.io-index"
2579checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
2580
2581[[package]]
2582name = "quinn"
2583version = "0.11.9"
2584source = "registry+https://github.com/rust-lang/crates.io-index"
2585checksum = "b9e20a958963c291dc322d98411f541009df2ced7b5a4f2bd52337638cfccf20"
2586dependencies = [
2587 "bytes",
2588 "cfg_aliases",
2589 "pin-project-lite",
2590 "quinn-proto",
2591 "quinn-udp",
2592 "rustc-hash",
2593 "rustls",
2594 "socket2 0.6.1",
2595 "thiserror 2.0.17",
2596 "tokio",
2597 "tracing",
2598 "web-time",
2599]
2600
2601[[package]]
2602name = "quinn-proto"
2603version = "0.11.13"
2604source = "registry+https://github.com/rust-lang/crates.io-index"
2605checksum = "f1906b49b0c3bc04b5fe5d86a77925ae6524a19b816ae38ce1e426255f1d8a31"
2606dependencies = [
2607 "bytes",
2608 "getrandom 0.3.4",
2609 "lru-slab",
2610 "rand 0.9.2",
2611 "ring",
2612 "rustc-hash",
2613 "rustls",
2614 "rustls-pki-types",
2615 "slab",
2616 "thiserror 2.0.17",
2617 "tinyvec",
2618 "tracing",
2619 "web-time",
2620]
2621
2622[[package]]
2623name = "quinn-udp"
2624version = "0.5.14"
2625source = "registry+https://github.com/rust-lang/crates.io-index"
2626checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd"
2627dependencies = [
2628 "cfg_aliases",
2629 "libc",
2630 "once_cell",
2631 "socket2 0.6.1",
2632 "tracing",
2633 "windows-sys 0.60.2",
2634]
2635
2636[[package]]
2637name = "quote"
2638version = "1.0.41"
2639source = "registry+https://github.com/rust-lang/crates.io-index"
2640checksum = "ce25767e7b499d1b604768e7cde645d14cc8584231ea6b295e9c9eb22c02e1d1"
2641dependencies = [
2642 "proc-macro2",
2643]
2644
2645[[package]]
2646name = "r-efi"
2647version = "5.3.0"
2648source = "registry+https://github.com/rust-lang/crates.io-index"
2649checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
2650
2651[[package]]
2652name = "rand"
2653version = "0.8.5"
2654source = "registry+https://github.com/rust-lang/crates.io-index"
2655checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2656dependencies = [
2657 "libc",
2658 "rand_chacha 0.3.1",
2659 "rand_core 0.6.4",
2660]
2661
2662[[package]]
2663name = "rand"
2664version = "0.9.2"
2665source = "registry+https://github.com/rust-lang/crates.io-index"
2666checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
2667dependencies = [
2668 "rand_chacha 0.9.0",
2669 "rand_core 0.9.3",
2670]
2671
2672[[package]]
2673name = "rand_chacha"
2674version = "0.3.1"
2675source = "registry+https://github.com/rust-lang/crates.io-index"
2676checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2677dependencies = [
2678 "ppv-lite86",
2679 "rand_core 0.6.4",
2680]
2681
2682[[package]]
2683name = "rand_chacha"
2684version = "0.9.0"
2685source = "registry+https://github.com/rust-lang/crates.io-index"
2686checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
2687dependencies = [
2688 "ppv-lite86",
2689 "rand_core 0.9.3",
2690]
2691
2692[[package]]
2693name = "rand_core"
2694version = "0.6.4"
2695source = "registry+https://github.com/rust-lang/crates.io-index"
2696checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2697dependencies = [
2698 "getrandom 0.2.16",
2699]
2700
2701[[package]]
2702name = "rand_core"
2703version = "0.9.3"
2704source = "registry+https://github.com/rust-lang/crates.io-index"
2705checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
2706dependencies = [
2707 "getrandom 0.3.4",
2708]
2709
2710[[package]]
2711name = "range-traits"
2712version = "0.3.2"
2713source = "registry+https://github.com/rust-lang/crates.io-index"
2714checksum = "d20581732dd76fa913c7dff1a2412b714afe3573e94d41c34719de73337cc8ab"
2715
2716[[package]]
2717name = "raw-window-handle"
2718version = "0.5.2"
2719source = "registry+https://github.com/rust-lang/crates.io-index"
2720checksum = "f2ff9a1f06a88b01621b7ae906ef0211290d1c8a168a15542486a8f61c0833b9"
2721
2722[[package]]
2723name = "redox_syscall"
2724version = "0.5.18"
2725source = "registry+https://github.com/rust-lang/crates.io-index"
2726checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
2727dependencies = [
2728 "bitflags",
2729]
2730
2731[[package]]
2732name = "regex"
2733version = "1.12.2"
2734source = "registry+https://github.com/rust-lang/crates.io-index"
2735checksum = "843bc0191f75f3e22651ae5f1e72939ab2f72a4bc30fa80a066bd66edefc24d4"
2736dependencies = [
2737 "aho-corasick",
2738 "memchr",
2739 "regex-automata",
2740 "regex-syntax",
2741]
2742
2743[[package]]
2744name = "regex-automata"
2745version = "0.4.13"
2746source = "registry+https://github.com/rust-lang/crates.io-index"
2747checksum = "5276caf25ac86c8d810222b3dbb938e512c55c6831a10f3e6ed1c93b84041f1c"
2748dependencies = [
2749 "aho-corasick",
2750 "memchr",
2751 "regex-syntax",
2752]
2753
2754[[package]]
2755name = "regex-syntax"
2756version = "0.8.8"
2757source = "registry+https://github.com/rust-lang/crates.io-index"
2758checksum = "7a2d987857b319362043e95f5353c0535c1f58eec5336fdfcf626430af7def58"
2759
2760[[package]]
2761name = "reqwest"
2762version = "0.12.24"
2763source = "registry+https://github.com/rust-lang/crates.io-index"
2764checksum = "9d0946410b9f7b082a427e4ef5c8ff541a88b357bc6c637c40db3a68ac70a36f"
2765dependencies = [
2766 "async-compression",
2767 "base64 0.22.1",
2768 "bytes",
2769 "encoding_rs",
2770 "futures-core",
2771 "futures-util",
2772 "h2",
2773 "http",
2774 "http-body",
2775 "http-body-util",
2776 "hyper",
2777 "hyper-rustls",
2778 "hyper-tls",
2779 "hyper-util",
2780 "js-sys",
2781 "log",
2782 "mime",
2783 "native-tls",
2784 "percent-encoding",
2785 "pin-project-lite",
2786 "quinn",
2787 "rustls",
2788 "rustls-pki-types",
2789 "serde",
2790 "serde_json",
2791 "serde_urlencoded",
2792 "sync_wrapper",
2793 "tokio",
2794 "tokio-native-tls",
2795 "tokio-rustls",
2796 "tokio-util",
2797 "tower",
2798 "tower-http",
2799 "tower-service",
2800 "url",
2801 "wasm-bindgen",
2802 "wasm-bindgen-futures",
2803 "wasm-streams",
2804 "web-sys",
2805 "webpki-roots",
2806]
2807
2808[[package]]
2809name = "resolv-conf"
2810version = "0.7.5"
2811source = "registry+https://github.com/rust-lang/crates.io-index"
2812checksum = "6b3789b30bd25ba102de4beabd95d21ac45b69b1be7d14522bab988c526d6799"
2813
2814[[package]]
2815name = "rfc6979"
2816version = "0.4.0"
2817source = "registry+https://github.com/rust-lang/crates.io-index"
2818checksum = "f8dd2a808d456c4a54e300a23e9f5a67e122c3024119acbfd73e3bf664491cb2"
2819dependencies = [
2820 "hmac",
2821 "subtle",
2822]
2823
2824[[package]]
2825name = "ring"
2826version = "0.17.14"
2827source = "registry+https://github.com/rust-lang/crates.io-index"
2828checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
2829dependencies = [
2830 "cc",
2831 "cfg-if",
2832 "getrandom 0.2.16",
2833 "libc",
2834 "untrusted",
2835 "windows-sys 0.52.0",
2836]
2837
2838[[package]]
2839name = "rouille"
2840version = "3.6.2"
2841source = "registry+https://github.com/rust-lang/crates.io-index"
2842checksum = "3716fbf57fc1084d7a706adf4e445298d123e4a44294c4e8213caf1b85fcc921"
2843dependencies = [
2844 "base64 0.13.1",
2845 "brotli",
2846 "chrono",
2847 "deflate",
2848 "filetime",
2849 "multipart",
2850 "percent-encoding",
2851 "rand 0.8.5",
2852 "serde",
2853 "serde_derive",
2854 "serde_json",
2855 "sha1_smol",
2856 "threadpool",
2857 "time",
2858 "tiny_http",
2859 "url",
2860]
2861
2862[[package]]
2863name = "rsa"
2864version = "0.9.8"
2865source = "registry+https://github.com/rust-lang/crates.io-index"
2866checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
2867dependencies = [
2868 "const-oid",
2869 "digest",
2870 "num-bigint-dig",
2871 "num-integer",
2872 "num-traits",
2873 "pkcs1",
2874 "pkcs8",
2875 "rand_core 0.6.4",
2876 "signature",
2877 "spki",
2878 "subtle",
2879 "zeroize",
2880]
2881
2882[[package]]
2883name = "rustc-demangle"
2884version = "0.1.26"
2885source = "registry+https://github.com/rust-lang/crates.io-index"
2886checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2887
2888[[package]]
2889name = "rustc-hash"
2890version = "2.1.1"
2891source = "registry+https://github.com/rust-lang/crates.io-index"
2892checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
2893
2894[[package]]
2895name = "rustix"
2896version = "1.1.2"
2897source = "registry+https://github.com/rust-lang/crates.io-index"
2898checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
2899dependencies = [
2900 "bitflags",
2901 "errno",
2902 "libc",
2903 "linux-raw-sys",
2904 "windows-sys 0.61.2",
2905]
2906
2907[[package]]
2908name = "rustls"
2909version = "0.23.33"
2910source = "registry+https://github.com/rust-lang/crates.io-index"
2911checksum = "751e04a496ca00bb97a5e043158d23d66b5aabf2e1d5aa2a0aaebb1aafe6f82c"
2912dependencies = [
2913 "once_cell",
2914 "ring",
2915 "rustls-pki-types",
2916 "rustls-webpki",
2917 "subtle",
2918 "zeroize",
2919]
2920
2921[[package]]
2922name = "rustls-pki-types"
2923version = "1.12.0"
2924source = "registry+https://github.com/rust-lang/crates.io-index"
2925checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2926dependencies = [
2927 "web-time",
2928 "zeroize",
2929]
2930
2931[[package]]
2932name = "rustls-webpki"
2933version = "0.103.7"
2934source = "registry+https://github.com/rust-lang/crates.io-index"
2935checksum = "e10b3f4191e8a80e6b43eebabfac91e5dcecebb27a71f04e820c47ec41d314bf"
2936dependencies = [
2937 "ring",
2938 "rustls-pki-types",
2939 "untrusted",
2940]
2941
2942[[package]]
2943name = "rustversion"
2944version = "1.0.22"
2945source = "registry+https://github.com/rust-lang/crates.io-index"
2946checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2947
2948[[package]]
2949name = "ryu"
2950version = "1.0.20"
2951source = "registry+https://github.com/rust-lang/crates.io-index"
2952checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2953
2954[[package]]
2955name = "safemem"
2956version = "0.3.3"
2957source = "registry+https://github.com/rust-lang/crates.io-index"
2958checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
2959
2960[[package]]
2961name = "same-file"
2962version = "1.0.6"
2963source = "registry+https://github.com/rust-lang/crates.io-index"
2964checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2965dependencies = [
2966 "winapi-util",
2967]
2968
2969[[package]]
2970name = "schannel"
2971version = "0.1.28"
2972source = "registry+https://github.com/rust-lang/crates.io-index"
2973checksum = "891d81b926048e76efe18581bf793546b4c0eaf8448d72be8de2bbee5fd166e1"
2974dependencies = [
2975 "windows-sys 0.61.2",
2976]
2977
2978[[package]]
2979name = "scopeguard"
2980version = "1.2.0"
2981source = "registry+https://github.com/rust-lang/crates.io-index"
2982checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2983
2984[[package]]
2985name = "sec1"
2986version = "0.7.3"
2987source = "registry+https://github.com/rust-lang/crates.io-index"
2988checksum = "d3e97a565f76233a6003f9f5c54be1d9c5bdfa3eccfb189469f11ec4901c47dc"
2989dependencies = [
2990 "base16ct",
2991 "der",
2992 "generic-array",
2993 "pkcs8",
2994 "subtle",
2995 "zeroize",
2996]
2997
2998[[package]]
2999name = "security-framework"
3000version = "2.11.1"
3001source = "registry+https://github.com/rust-lang/crates.io-index"
3002checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
3003dependencies = [
3004 "bitflags",
3005 "core-foundation",
3006 "core-foundation-sys",
3007 "libc",
3008 "security-framework-sys",
3009]
3010
3011[[package]]
3012name = "security-framework-sys"
3013version = "2.15.0"
3014source = "registry+https://github.com/rust-lang/crates.io-index"
3015checksum = "cc1f0cbffaac4852523ce30d8bd3c5cdc873501d96ff467ca09b6767bb8cd5c0"
3016dependencies = [
3017 "core-foundation-sys",
3018 "libc",
3019]
3020
3021[[package]]
3022name = "serde"
3023version = "1.0.228"
3024source = "registry+https://github.com/rust-lang/crates.io-index"
3025checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
3026dependencies = [
3027 "serde_core",
3028 "serde_derive",
3029]
3030
3031[[package]]
3032name = "serde_bytes"
3033version = "0.11.19"
3034source = "registry+https://github.com/rust-lang/crates.io-index"
3035checksum = "a5d440709e79d88e51ac01c4b72fc6cb7314017bb7da9eeff678aa94c10e3ea8"
3036dependencies = [
3037 "serde",
3038 "serde_core",
3039]
3040
3041[[package]]
3042name = "serde_core"
3043version = "1.0.228"
3044source = "registry+https://github.com/rust-lang/crates.io-index"
3045checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
3046dependencies = [
3047 "serde_derive",
3048]
3049
3050[[package]]
3051name = "serde_derive"
3052version = "1.0.228"
3053source = "registry+https://github.com/rust-lang/crates.io-index"
3054checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
3055dependencies = [
3056 "proc-macro2",
3057 "quote",
3058 "syn 2.0.107",
3059]
3060
3061[[package]]
3062name = "serde_html_form"
3063version = "0.2.8"
3064source = "registry+https://github.com/rust-lang/crates.io-index"
3065checksum = "b2f2d7ff8a2140333718bb329f5c40fc5f0865b84c426183ce14c97d2ab8154f"
3066dependencies = [
3067 "form_urlencoded",
3068 "indexmap",
3069 "itoa",
3070 "ryu",
3071 "serde_core",
3072]
3073
3074[[package]]
3075name = "serde_ipld_dagcbor"
3076version = "0.6.4"
3077source = "registry+https://github.com/rust-lang/crates.io-index"
3078checksum = "46182f4f08349a02b45c998ba3215d3f9de826246ba02bb9dddfe9a2a2100778"
3079dependencies = [
3080 "cbor4ii",
3081 "ipld-core",
3082 "scopeguard",
3083 "serde",
3084]
3085
3086[[package]]
3087name = "serde_json"
3088version = "1.0.145"
3089source = "registry+https://github.com/rust-lang/crates.io-index"
3090checksum = "402a6f66d8c709116cf22f558eab210f5a50187f702eb4d7e5ef38d9a7f1c79c"
3091dependencies = [
3092 "itoa",
3093 "memchr",
3094 "ryu",
3095 "serde",
3096 "serde_core",
3097]
3098
3099[[package]]
3100name = "serde_urlencoded"
3101version = "0.7.1"
3102source = "registry+https://github.com/rust-lang/crates.io-index"
3103checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
3104dependencies = [
3105 "form_urlencoded",
3106 "itoa",
3107 "ryu",
3108 "serde",
3109]
3110
3111[[package]]
3112name = "sha1_smol"
3113version = "1.0.1"
3114source = "registry+https://github.com/rust-lang/crates.io-index"
3115checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
3116
3117[[package]]
3118name = "sha2"
3119version = "0.10.9"
3120source = "registry+https://github.com/rust-lang/crates.io-index"
3121checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
3122dependencies = [
3123 "cfg-if",
3124 "cpufeatures",
3125 "digest",
3126]
3127
3128[[package]]
3129name = "shlex"
3130version = "1.3.0"
3131source = "registry+https://github.com/rust-lang/crates.io-index"
3132checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3133
3134[[package]]
3135name = "signature"
3136version = "2.2.0"
3137source = "registry+https://github.com/rust-lang/crates.io-index"
3138checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
3139dependencies = [
3140 "digest",
3141 "rand_core 0.6.4",
3142]
3143
3144[[package]]
3145name = "simd-adler32"
3146version = "0.3.7"
3147source = "registry+https://github.com/rust-lang/crates.io-index"
3148checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
3149
3150[[package]]
3151name = "slab"
3152version = "0.4.11"
3153source = "registry+https://github.com/rust-lang/crates.io-index"
3154checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
3155
3156[[package]]
3157name = "smallvec"
3158version = "1.15.1"
3159source = "registry+https://github.com/rust-lang/crates.io-index"
3160checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
3161
3162[[package]]
3163name = "smol_str"
3164version = "0.3.2"
3165source = "registry+https://github.com/rust-lang/crates.io-index"
3166checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d"
3167dependencies = [
3168 "borsh",
3169 "serde",
3170]
3171
3172[[package]]
3173name = "socket2"
3174version = "0.5.10"
3175source = "registry+https://github.com/rust-lang/crates.io-index"
3176checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
3177dependencies = [
3178 "libc",
3179 "windows-sys 0.52.0",
3180]
3181
3182[[package]]
3183name = "socket2"
3184version = "0.6.1"
3185source = "registry+https://github.com/rust-lang/crates.io-index"
3186checksum = "17129e116933cf371d018bb80ae557e889637989d8638274fb25622827b03881"
3187dependencies = [
3188 "libc",
3189 "windows-sys 0.60.2",
3190]
3191
3192[[package]]
3193name = "spin"
3194version = "0.9.8"
3195source = "registry+https://github.com/rust-lang/crates.io-index"
3196checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
3197
3198[[package]]
3199name = "spki"
3200version = "0.7.3"
3201source = "registry+https://github.com/rust-lang/crates.io-index"
3202checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
3203dependencies = [
3204 "base64ct",
3205 "der",
3206]
3207
3208[[package]]
3209name = "stable_deref_trait"
3210version = "1.2.1"
3211source = "registry+https://github.com/rust-lang/crates.io-index"
3212checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
3213
3214[[package]]
3215name = "static-regular-grammar"
3216version = "2.0.2"
3217source = "registry+https://github.com/rust-lang/crates.io-index"
3218checksum = "4f4a6c40247579acfbb138c3cd7de3dab113ab4ac6227f1b7de7d626ee667957"
3219dependencies = [
3220 "abnf",
3221 "btree-range-map",
3222 "ciborium",
3223 "hex_fmt",
3224 "indoc",
3225 "proc-macro-error 1.0.4",
3226 "proc-macro2",
3227 "quote",
3228 "serde",
3229 "sha2",
3230 "syn 2.0.107",
3231 "thiserror 1.0.69",
3232]
3233
3234[[package]]
3235name = "static_assertions"
3236version = "1.1.0"
3237source = "registry+https://github.com/rust-lang/crates.io-index"
3238checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
3239
3240[[package]]
3241name = "strsim"
3242version = "0.11.1"
3243source = "registry+https://github.com/rust-lang/crates.io-index"
3244checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
3245
3246[[package]]
3247name = "subtle"
3248version = "2.6.1"
3249source = "registry+https://github.com/rust-lang/crates.io-index"
3250checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
3251
3252[[package]]
3253name = "supports-color"
3254version = "3.0.2"
3255source = "registry+https://github.com/rust-lang/crates.io-index"
3256checksum = "c64fc7232dd8d2e4ac5ce4ef302b1d81e0b80d055b9d77c7c4f51f6aa4c867d6"
3257dependencies = [
3258 "is_ci",
3259]
3260
3261[[package]]
3262name = "supports-hyperlinks"
3263version = "3.1.0"
3264source = "registry+https://github.com/rust-lang/crates.io-index"
3265checksum = "804f44ed3c63152de6a9f90acbea1a110441de43006ea51bcce8f436196a288b"
3266
3267[[package]]
3268name = "supports-unicode"
3269version = "3.0.0"
3270source = "registry+https://github.com/rust-lang/crates.io-index"
3271checksum = "b7401a30af6cb5818bb64852270bb722533397edcfc7344954a38f420819ece2"
3272
3273[[package]]
3274name = "syn"
3275version = "1.0.109"
3276source = "registry+https://github.com/rust-lang/crates.io-index"
3277checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
3278dependencies = [
3279 "proc-macro2",
3280 "quote",
3281 "unicode-ident",
3282]
3283
3284[[package]]
3285name = "syn"
3286version = "2.0.107"
3287source = "registry+https://github.com/rust-lang/crates.io-index"
3288checksum = "2a26dbd934e5451d21ef060c018dae56fc073894c5a7896f882928a76e6d081b"
3289dependencies = [
3290 "proc-macro2",
3291 "quote",
3292 "unicode-ident",
3293]
3294
3295[[package]]
3296name = "syn-mid"
3297version = "0.5.4"
3298source = "registry+https://github.com/rust-lang/crates.io-index"
3299checksum = "fea305d57546cc8cd04feb14b62ec84bf17f50e3f7b12560d7bfa9265f39d9ed"
3300dependencies = [
3301 "proc-macro2",
3302 "quote",
3303 "syn 1.0.109",
3304]
3305
3306[[package]]
3307name = "sync_wrapper"
3308version = "1.0.2"
3309source = "registry+https://github.com/rust-lang/crates.io-index"
3310checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
3311dependencies = [
3312 "futures-core",
3313]
3314
3315[[package]]
3316name = "synstructure"
3317version = "0.13.2"
3318source = "registry+https://github.com/rust-lang/crates.io-index"
3319checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
3320dependencies = [
3321 "proc-macro2",
3322 "quote",
3323 "syn 2.0.107",
3324]
3325
3326[[package]]
3327name = "system-configuration"
3328version = "0.6.1"
3329source = "registry+https://github.com/rust-lang/crates.io-index"
3330checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
3331dependencies = [
3332 "bitflags",
3333 "core-foundation",
3334 "system-configuration-sys",
3335]
3336
3337[[package]]
3338name = "system-configuration-sys"
3339version = "0.6.0"
3340source = "registry+https://github.com/rust-lang/crates.io-index"
3341checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
3342dependencies = [
3343 "core-foundation-sys",
3344 "libc",
3345]
3346
3347[[package]]
3348name = "tempfile"
3349version = "3.23.0"
3350source = "registry+https://github.com/rust-lang/crates.io-index"
3351checksum = "2d31c77bdf42a745371d260a26ca7163f1e0924b64afa0b688e61b5a9fa02f16"
3352dependencies = [
3353 "fastrand",
3354 "getrandom 0.3.4",
3355 "once_cell",
3356 "rustix",
3357 "windows-sys 0.61.2",
3358]
3359
3360[[package]]
3361name = "terminal_size"
3362version = "0.4.3"
3363source = "registry+https://github.com/rust-lang/crates.io-index"
3364checksum = "60b8cb979cb11c32ce1603f8137b22262a9d131aaa5c37b5678025f22b8becd0"
3365dependencies = [
3366 "rustix",
3367 "windows-sys 0.60.2",
3368]
3369
3370[[package]]
3371name = "textwrap"
3372version = "0.16.2"
3373source = "registry+https://github.com/rust-lang/crates.io-index"
3374checksum = "c13547615a44dc9c452a8a534638acdf07120d4b6847c8178705da06306a3057"
3375dependencies = [
3376 "unicode-linebreak",
3377 "unicode-width 0.2.2",
3378]
3379
3380[[package]]
3381name = "thiserror"
3382version = "1.0.69"
3383source = "registry+https://github.com/rust-lang/crates.io-index"
3384checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
3385dependencies = [
3386 "thiserror-impl 1.0.69",
3387]
3388
3389[[package]]
3390name = "thiserror"
3391version = "2.0.17"
3392source = "registry+https://github.com/rust-lang/crates.io-index"
3393checksum = "f63587ca0f12b72a0600bcba1d40081f830876000bb46dd2337a3051618f4fc8"
3394dependencies = [
3395 "thiserror-impl 2.0.17",
3396]
3397
3398[[package]]
3399name = "thiserror-impl"
3400version = "1.0.69"
3401source = "registry+https://github.com/rust-lang/crates.io-index"
3402checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
3403dependencies = [
3404 "proc-macro2",
3405 "quote",
3406 "syn 2.0.107",
3407]
3408
3409[[package]]
3410name = "thiserror-impl"
3411version = "2.0.17"
3412source = "registry+https://github.com/rust-lang/crates.io-index"
3413checksum = "3ff15c8ecd7de3849db632e14d18d2571fa09dfc5ed93479bc4485c7a517c913"
3414dependencies = [
3415 "proc-macro2",
3416 "quote",
3417 "syn 2.0.107",
3418]
3419
3420[[package]]
3421name = "threadpool"
3422version = "1.8.1"
3423source = "registry+https://github.com/rust-lang/crates.io-index"
3424checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
3425dependencies = [
3426 "num_cpus",
3427]
3428
3429[[package]]
3430name = "time"
3431version = "0.3.44"
3432source = "registry+https://github.com/rust-lang/crates.io-index"
3433checksum = "91e7d9e3bb61134e77bde20dd4825b97c010155709965fedf0f49bb138e52a9d"
3434dependencies = [
3435 "deranged",
3436 "libc",
3437 "num-conv",
3438 "num_threads",
3439 "powerfmt",
3440 "serde",
3441 "time-core",
3442]
3443
3444[[package]]
3445name = "time-core"
3446version = "0.1.6"
3447source = "registry+https://github.com/rust-lang/crates.io-index"
3448checksum = "40868e7c1d2f0b8d73e4a8c7f0ff63af4f6d19be117e90bd73eb1d62cf831c6b"
3449
3450[[package]]
3451name = "tiny_http"
3452version = "0.12.0"
3453source = "registry+https://github.com/rust-lang/crates.io-index"
3454checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
3455dependencies = [
3456 "ascii",
3457 "chunked_transfer",
3458 "httpdate",
3459 "log",
3460]
3461
3462[[package]]
3463name = "tinystr"
3464version = "0.8.1"
3465source = "registry+https://github.com/rust-lang/crates.io-index"
3466checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
3467dependencies = [
3468 "displaydoc",
3469 "zerovec",
3470]
3471
3472[[package]]
3473name = "tinyvec"
3474version = "1.10.0"
3475source = "registry+https://github.com/rust-lang/crates.io-index"
3476checksum = "bfa5fdc3bce6191a1dbc8c02d5c8bffcf557bafa17c124c5264a458f1b0613fa"
3477dependencies = [
3478 "tinyvec_macros",
3479]
3480
3481[[package]]
3482name = "tinyvec_macros"
3483version = "0.1.1"
3484source = "registry+https://github.com/rust-lang/crates.io-index"
3485checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
3486
3487[[package]]
3488name = "tokio"
3489version = "1.48.0"
3490source = "registry+https://github.com/rust-lang/crates.io-index"
3491checksum = "ff360e02eab121e0bc37a2d3b4d4dc622e6eda3a8e5253d5435ecf5bd4c68408"
3492dependencies = [
3493 "bytes",
3494 "libc",
3495 "mio",
3496 "pin-project-lite",
3497 "socket2 0.6.1",
3498 "tokio-macros",
3499 "windows-sys 0.61.2",
3500]
3501
3502[[package]]
3503name = "tokio-macros"
3504version = "2.6.0"
3505source = "registry+https://github.com/rust-lang/crates.io-index"
3506checksum = "af407857209536a95c8e56f8231ef2c2e2aff839b22e07a1ffcbc617e9db9fa5"
3507dependencies = [
3508 "proc-macro2",
3509 "quote",
3510 "syn 2.0.107",
3511]
3512
3513[[package]]
3514name = "tokio-native-tls"
3515version = "0.3.1"
3516source = "registry+https://github.com/rust-lang/crates.io-index"
3517checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
3518dependencies = [
3519 "native-tls",
3520 "tokio",
3521]
3522
3523[[package]]
3524name = "tokio-rustls"
3525version = "0.26.4"
3526source = "registry+https://github.com/rust-lang/crates.io-index"
3527checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
3528dependencies = [
3529 "rustls",
3530 "tokio",
3531]
3532
3533[[package]]
3534name = "tokio-util"
3535version = "0.7.16"
3536source = "registry+https://github.com/rust-lang/crates.io-index"
3537checksum = "14307c986784f72ef81c89db7d9e28d6ac26d16213b109ea501696195e6e3ce5"
3538dependencies = [
3539 "bytes",
3540 "futures-core",
3541 "futures-sink",
3542 "pin-project-lite",
3543 "tokio",
3544]
3545
3546[[package]]
3547name = "tower"
3548version = "0.5.2"
3549source = "registry+https://github.com/rust-lang/crates.io-index"
3550checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
3551dependencies = [
3552 "futures-core",
3553 "futures-util",
3554 "pin-project-lite",
3555 "sync_wrapper",
3556 "tokio",
3557 "tower-layer",
3558 "tower-service",
3559]
3560
3561[[package]]
3562name = "tower-http"
3563version = "0.6.6"
3564source = "registry+https://github.com/rust-lang/crates.io-index"
3565checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
3566dependencies = [
3567 "bitflags",
3568 "bytes",
3569 "futures-util",
3570 "http",
3571 "http-body",
3572 "iri-string",
3573 "pin-project-lite",
3574 "tower",
3575 "tower-layer",
3576 "tower-service",
3577]
3578
3579[[package]]
3580name = "tower-layer"
3581version = "0.3.3"
3582source = "registry+https://github.com/rust-lang/crates.io-index"
3583checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
3584
3585[[package]]
3586name = "tower-service"
3587version = "0.3.3"
3588source = "registry+https://github.com/rust-lang/crates.io-index"
3589checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
3590
3591[[package]]
3592name = "tracing"
3593version = "0.1.41"
3594source = "registry+https://github.com/rust-lang/crates.io-index"
3595checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
3596dependencies = [
3597 "pin-project-lite",
3598 "tracing-attributes",
3599 "tracing-core",
3600]
3601
3602[[package]]
3603name = "tracing-attributes"
3604version = "0.1.30"
3605source = "registry+https://github.com/rust-lang/crates.io-index"
3606checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
3607dependencies = [
3608 "proc-macro2",
3609 "quote",
3610 "syn 2.0.107",
3611]
3612
3613[[package]]
3614name = "tracing-core"
3615version = "0.1.34"
3616source = "registry+https://github.com/rust-lang/crates.io-index"
3617checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
3618dependencies = [
3619 "once_cell",
3620]
3621
3622[[package]]
3623name = "trait-variant"
3624version = "0.1.2"
3625source = "registry+https://github.com/rust-lang/crates.io-index"
3626checksum = "70977707304198400eb4835a78f6a9f928bf41bba420deb8fdb175cd965d77a7"
3627dependencies = [
3628 "proc-macro2",
3629 "quote",
3630 "syn 2.0.107",
3631]
3632
3633[[package]]
3634name = "try-lock"
3635version = "0.2.5"
3636source = "registry+https://github.com/rust-lang/crates.io-index"
3637checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
3638
3639[[package]]
3640name = "twoway"
3641version = "0.1.8"
3642source = "registry+https://github.com/rust-lang/crates.io-index"
3643checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1"
3644dependencies = [
3645 "memchr",
3646]
3647
3648[[package]]
3649name = "typenum"
3650version = "1.19.0"
3651source = "registry+https://github.com/rust-lang/crates.io-index"
3652checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb"
3653
3654[[package]]
3655name = "unicase"
3656version = "2.8.1"
3657source = "registry+https://github.com/rust-lang/crates.io-index"
3658checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
3659
3660[[package]]
3661name = "unicode-ident"
3662version = "1.0.19"
3663source = "registry+https://github.com/rust-lang/crates.io-index"
3664checksum = "f63a545481291138910575129486daeaf8ac54aee4387fe7906919f7830c7d9d"
3665
3666[[package]]
3667name = "unicode-linebreak"
3668version = "0.1.5"
3669source = "registry+https://github.com/rust-lang/crates.io-index"
3670checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
3671
3672[[package]]
3673name = "unicode-width"
3674version = "0.1.14"
3675source = "registry+https://github.com/rust-lang/crates.io-index"
3676checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
3677
3678[[package]]
3679name = "unicode-width"
3680version = "0.2.2"
3681source = "registry+https://github.com/rust-lang/crates.io-index"
3682checksum = "b4ac048d71ede7ee76d585517add45da530660ef4390e49b098733c6e897f254"
3683
3684[[package]]
3685name = "unsigned-varint"
3686version = "0.8.0"
3687source = "registry+https://github.com/rust-lang/crates.io-index"
3688checksum = "eb066959b24b5196ae73cb057f45598450d2c5f71460e98c49b738086eff9c06"
3689
3690[[package]]
3691name = "untrusted"
3692version = "0.9.0"
3693source = "registry+https://github.com/rust-lang/crates.io-index"
3694checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
3695
3696[[package]]
3697name = "url"
3698version = "2.5.7"
3699source = "registry+https://github.com/rust-lang/crates.io-index"
3700checksum = "08bc136a29a3d1758e07a9cca267be308aeebf5cfd5a10f3f67ab2097683ef5b"
3701dependencies = [
3702 "form_urlencoded",
3703 "idna",
3704 "percent-encoding",
3705 "serde",
3706]
3707
3708[[package]]
3709name = "urlencoding"
3710version = "2.1.3"
3711source = "registry+https://github.com/rust-lang/crates.io-index"
3712checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
3713
3714[[package]]
3715name = "utf8_iter"
3716version = "1.0.4"
3717source = "registry+https://github.com/rust-lang/crates.io-index"
3718checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3719
3720[[package]]
3721name = "utf8parse"
3722version = "0.2.2"
3723source = "registry+https://github.com/rust-lang/crates.io-index"
3724checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
3725
3726[[package]]
3727name = "vcpkg"
3728version = "0.2.15"
3729source = "registry+https://github.com/rust-lang/crates.io-index"
3730checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3731
3732[[package]]
3733name = "version_check"
3734version = "0.9.5"
3735source = "registry+https://github.com/rust-lang/crates.io-index"
3736checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3737
3738[[package]]
3739name = "walkdir"
3740version = "2.5.0"
3741source = "registry+https://github.com/rust-lang/crates.io-index"
3742checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3743dependencies = [
3744 "same-file",
3745 "winapi-util",
3746]
3747
3748[[package]]
3749name = "want"
3750version = "0.3.1"
3751source = "registry+https://github.com/rust-lang/crates.io-index"
3752checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3753dependencies = [
3754 "try-lock",
3755]
3756
3757[[package]]
3758name = "wasi"
3759version = "0.11.1+wasi-snapshot-preview1"
3760source = "registry+https://github.com/rust-lang/crates.io-index"
3761checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3762
3763[[package]]
3764name = "wasip2"
3765version = "1.0.1+wasi-0.2.4"
3766source = "registry+https://github.com/rust-lang/crates.io-index"
3767checksum = "0562428422c63773dad2c345a1882263bbf4d65cf3f42e90921f787ef5ad58e7"
3768dependencies = [
3769 "wit-bindgen",
3770]
3771
3772[[package]]
3773name = "wasm-bindgen"
3774version = "0.2.104"
3775source = "registry+https://github.com/rust-lang/crates.io-index"
3776checksum = "c1da10c01ae9f1ae40cbfac0bac3b1e724b320abfcf52229f80b547c0d250e2d"
3777dependencies = [
3778 "cfg-if",
3779 "once_cell",
3780 "rustversion",
3781 "wasm-bindgen-macro",
3782 "wasm-bindgen-shared",
3783]
3784
3785[[package]]
3786name = "wasm-bindgen-backend"
3787version = "0.2.104"
3788source = "registry+https://github.com/rust-lang/crates.io-index"
3789checksum = "671c9a5a66f49d8a47345ab942e2cb93c7d1d0339065d4f8139c486121b43b19"
3790dependencies = [
3791 "bumpalo",
3792 "log",
3793 "proc-macro2",
3794 "quote",
3795 "syn 2.0.107",
3796 "wasm-bindgen-shared",
3797]
3798
3799[[package]]
3800name = "wasm-bindgen-futures"
3801version = "0.4.54"
3802source = "registry+https://github.com/rust-lang/crates.io-index"
3803checksum = "7e038d41e478cc73bae0ff9b36c60cff1c98b8f38f8d7e8061e79ee63608ac5c"
3804dependencies = [
3805 "cfg-if",
3806 "js-sys",
3807 "once_cell",
3808 "wasm-bindgen",
3809 "web-sys",
3810]
3811
3812[[package]]
3813name = "wasm-bindgen-macro"
3814version = "0.2.104"
3815source = "registry+https://github.com/rust-lang/crates.io-index"
3816checksum = "7ca60477e4c59f5f2986c50191cd972e3a50d8a95603bc9434501cf156a9a119"
3817dependencies = [
3818 "quote",
3819 "wasm-bindgen-macro-support",
3820]
3821
3822[[package]]
3823name = "wasm-bindgen-macro-support"
3824version = "0.2.104"
3825source = "registry+https://github.com/rust-lang/crates.io-index"
3826checksum = "9f07d2f20d4da7b26400c9f4a0511e6e0345b040694e8a75bd41d578fa4421d7"
3827dependencies = [
3828 "proc-macro2",
3829 "quote",
3830 "syn 2.0.107",
3831 "wasm-bindgen-backend",
3832 "wasm-bindgen-shared",
3833]
3834
3835[[package]]
3836name = "wasm-bindgen-shared"
3837version = "0.2.104"
3838source = "registry+https://github.com/rust-lang/crates.io-index"
3839checksum = "bad67dc8b2a1a6e5448428adec4c3e84c43e561d8c9ee8a9e5aabeb193ec41d1"
3840dependencies = [
3841 "unicode-ident",
3842]
3843
3844[[package]]
3845name = "wasm-streams"
3846version = "0.4.2"
3847source = "registry+https://github.com/rust-lang/crates.io-index"
3848checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
3849dependencies = [
3850 "futures-util",
3851 "js-sys",
3852 "wasm-bindgen",
3853 "wasm-bindgen-futures",
3854 "web-sys",
3855]
3856
3857[[package]]
3858name = "web-sys"
3859version = "0.3.81"
3860source = "registry+https://github.com/rust-lang/crates.io-index"
3861checksum = "9367c417a924a74cae129e6a2ae3b47fabb1f8995595ab474029da749a8be120"
3862dependencies = [
3863 "js-sys",
3864 "wasm-bindgen",
3865]
3866
3867[[package]]
3868name = "web-time"
3869version = "1.1.0"
3870source = "registry+https://github.com/rust-lang/crates.io-index"
3871checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3872dependencies = [
3873 "js-sys",
3874 "wasm-bindgen",
3875]
3876
3877[[package]]
3878name = "webbrowser"
3879version = "0.8.15"
3880source = "registry+https://github.com/rust-lang/crates.io-index"
3881checksum = "db67ae75a9405634f5882791678772c94ff5f16a66535aae186e26aa0841fc8b"
3882dependencies = [
3883 "core-foundation",
3884 "home",
3885 "jni",
3886 "log",
3887 "ndk-context",
3888 "objc",
3889 "raw-window-handle",
3890 "url",
3891 "web-sys",
3892]
3893
3894[[package]]
3895name = "webpki-roots"
3896version = "1.0.3"
3897source = "registry+https://github.com/rust-lang/crates.io-index"
3898checksum = "32b130c0d2d49f8b6889abc456e795e82525204f27c42cf767cf0d7734e089b8"
3899dependencies = [
3900 "rustls-pki-types",
3901]
3902
3903[[package]]
3904name = "widestring"
3905version = "1.2.1"
3906source = "registry+https://github.com/rust-lang/crates.io-index"
3907checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
3908
3909[[package]]
3910name = "winapi-util"
3911version = "0.1.11"
3912source = "registry+https://github.com/rust-lang/crates.io-index"
3913checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
3914dependencies = [
3915 "windows-sys 0.61.2",
3916]
3917
3918[[package]]
3919name = "windows-core"
3920version = "0.62.2"
3921source = "registry+https://github.com/rust-lang/crates.io-index"
3922checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb"
3923dependencies = [
3924 "windows-implement",
3925 "windows-interface",
3926 "windows-link 0.2.1",
3927 "windows-result 0.4.1",
3928 "windows-strings 0.5.1",
3929]
3930
3931[[package]]
3932name = "windows-implement"
3933version = "0.60.2"
3934source = "registry+https://github.com/rust-lang/crates.io-index"
3935checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf"
3936dependencies = [
3937 "proc-macro2",
3938 "quote",
3939 "syn 2.0.107",
3940]
3941
3942[[package]]
3943name = "windows-interface"
3944version = "0.59.3"
3945source = "registry+https://github.com/rust-lang/crates.io-index"
3946checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358"
3947dependencies = [
3948 "proc-macro2",
3949 "quote",
3950 "syn 2.0.107",
3951]
3952
3953[[package]]
3954name = "windows-link"
3955version = "0.1.3"
3956source = "registry+https://github.com/rust-lang/crates.io-index"
3957checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3958
3959[[package]]
3960name = "windows-link"
3961version = "0.2.1"
3962source = "registry+https://github.com/rust-lang/crates.io-index"
3963checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3964
3965[[package]]
3966name = "windows-registry"
3967version = "0.5.3"
3968source = "registry+https://github.com/rust-lang/crates.io-index"
3969checksum = "5b8a9ed28765efc97bbc954883f4e6796c33a06546ebafacbabee9696967499e"
3970dependencies = [
3971 "windows-link 0.1.3",
3972 "windows-result 0.3.4",
3973 "windows-strings 0.4.2",
3974]
3975
3976[[package]]
3977name = "windows-result"
3978version = "0.3.4"
3979source = "registry+https://github.com/rust-lang/crates.io-index"
3980checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3981dependencies = [
3982 "windows-link 0.1.3",
3983]
3984
3985[[package]]
3986name = "windows-result"
3987version = "0.4.1"
3988source = "registry+https://github.com/rust-lang/crates.io-index"
3989checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3990dependencies = [
3991 "windows-link 0.2.1",
3992]
3993
3994[[package]]
3995name = "windows-strings"
3996version = "0.4.2"
3997source = "registry+https://github.com/rust-lang/crates.io-index"
3998checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3999dependencies = [
4000 "windows-link 0.1.3",
4001]
4002
4003[[package]]
4004name = "windows-strings"
4005version = "0.5.1"
4006source = "registry+https://github.com/rust-lang/crates.io-index"
4007checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
4008dependencies = [
4009 "windows-link 0.2.1",
4010]
4011
4012[[package]]
4013name = "windows-sys"
4014version = "0.45.0"
4015source = "registry+https://github.com/rust-lang/crates.io-index"
4016checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
4017dependencies = [
4018 "windows-targets 0.42.2",
4019]
4020
4021[[package]]
4022name = "windows-sys"
4023version = "0.48.0"
4024source = "registry+https://github.com/rust-lang/crates.io-index"
4025checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
4026dependencies = [
4027 "windows-targets 0.48.5",
4028]
4029
4030[[package]]
4031name = "windows-sys"
4032version = "0.52.0"
4033source = "registry+https://github.com/rust-lang/crates.io-index"
4034checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
4035dependencies = [
4036 "windows-targets 0.52.6",
4037]
4038
4039[[package]]
4040name = "windows-sys"
4041version = "0.59.0"
4042source = "registry+https://github.com/rust-lang/crates.io-index"
4043checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
4044dependencies = [
4045 "windows-targets 0.52.6",
4046]
4047
4048[[package]]
4049name = "windows-sys"
4050version = "0.60.2"
4051source = "registry+https://github.com/rust-lang/crates.io-index"
4052checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb"
4053dependencies = [
4054 "windows-targets 0.53.5",
4055]
4056
4057[[package]]
4058name = "windows-sys"
4059version = "0.61.2"
4060source = "registry+https://github.com/rust-lang/crates.io-index"
4061checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
4062dependencies = [
4063 "windows-link 0.2.1",
4064]
4065
4066[[package]]
4067name = "windows-targets"
4068version = "0.42.2"
4069source = "registry+https://github.com/rust-lang/crates.io-index"
4070checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
4071dependencies = [
4072 "windows_aarch64_gnullvm 0.42.2",
4073 "windows_aarch64_msvc 0.42.2",
4074 "windows_i686_gnu 0.42.2",
4075 "windows_i686_msvc 0.42.2",
4076 "windows_x86_64_gnu 0.42.2",
4077 "windows_x86_64_gnullvm 0.42.2",
4078 "windows_x86_64_msvc 0.42.2",
4079]
4080
4081[[package]]
4082name = "windows-targets"
4083version = "0.48.5"
4084source = "registry+https://github.com/rust-lang/crates.io-index"
4085checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
4086dependencies = [
4087 "windows_aarch64_gnullvm 0.48.5",
4088 "windows_aarch64_msvc 0.48.5",
4089 "windows_i686_gnu 0.48.5",
4090 "windows_i686_msvc 0.48.5",
4091 "windows_x86_64_gnu 0.48.5",
4092 "windows_x86_64_gnullvm 0.48.5",
4093 "windows_x86_64_msvc 0.48.5",
4094]
4095
4096[[package]]
4097name = "windows-targets"
4098version = "0.52.6"
4099source = "registry+https://github.com/rust-lang/crates.io-index"
4100checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
4101dependencies = [
4102 "windows_aarch64_gnullvm 0.52.6",
4103 "windows_aarch64_msvc 0.52.6",
4104 "windows_i686_gnu 0.52.6",
4105 "windows_i686_gnullvm 0.52.6",
4106 "windows_i686_msvc 0.52.6",
4107 "windows_x86_64_gnu 0.52.6",
4108 "windows_x86_64_gnullvm 0.52.6",
4109 "windows_x86_64_msvc 0.52.6",
4110]
4111
4112[[package]]
4113name = "windows-targets"
4114version = "0.53.5"
4115source = "registry+https://github.com/rust-lang/crates.io-index"
4116checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3"
4117dependencies = [
4118 "windows-link 0.2.1",
4119 "windows_aarch64_gnullvm 0.53.1",
4120 "windows_aarch64_msvc 0.53.1",
4121 "windows_i686_gnu 0.53.1",
4122 "windows_i686_gnullvm 0.53.1",
4123 "windows_i686_msvc 0.53.1",
4124 "windows_x86_64_gnu 0.53.1",
4125 "windows_x86_64_gnullvm 0.53.1",
4126 "windows_x86_64_msvc 0.53.1",
4127]
4128
4129[[package]]
4130name = "windows_aarch64_gnullvm"
4131version = "0.42.2"
4132source = "registry+https://github.com/rust-lang/crates.io-index"
4133checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
4134
4135[[package]]
4136name = "windows_aarch64_gnullvm"
4137version = "0.48.5"
4138source = "registry+https://github.com/rust-lang/crates.io-index"
4139checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
4140
4141[[package]]
4142name = "windows_aarch64_gnullvm"
4143version = "0.52.6"
4144source = "registry+https://github.com/rust-lang/crates.io-index"
4145checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
4146
4147[[package]]
4148name = "windows_aarch64_gnullvm"
4149version = "0.53.1"
4150source = "registry+https://github.com/rust-lang/crates.io-index"
4151checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53"
4152
4153[[package]]
4154name = "windows_aarch64_msvc"
4155version = "0.42.2"
4156source = "registry+https://github.com/rust-lang/crates.io-index"
4157checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
4158
4159[[package]]
4160name = "windows_aarch64_msvc"
4161version = "0.48.5"
4162source = "registry+https://github.com/rust-lang/crates.io-index"
4163checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
4164
4165[[package]]
4166name = "windows_aarch64_msvc"
4167version = "0.52.6"
4168source = "registry+https://github.com/rust-lang/crates.io-index"
4169checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
4170
4171[[package]]
4172name = "windows_aarch64_msvc"
4173version = "0.53.1"
4174source = "registry+https://github.com/rust-lang/crates.io-index"
4175checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006"
4176
4177[[package]]
4178name = "windows_i686_gnu"
4179version = "0.42.2"
4180source = "registry+https://github.com/rust-lang/crates.io-index"
4181checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
4182
4183[[package]]
4184name = "windows_i686_gnu"
4185version = "0.48.5"
4186source = "registry+https://github.com/rust-lang/crates.io-index"
4187checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
4188
4189[[package]]
4190name = "windows_i686_gnu"
4191version = "0.52.6"
4192source = "registry+https://github.com/rust-lang/crates.io-index"
4193checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
4194
4195[[package]]
4196name = "windows_i686_gnu"
4197version = "0.53.1"
4198source = "registry+https://github.com/rust-lang/crates.io-index"
4199checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3"
4200
4201[[package]]
4202name = "windows_i686_gnullvm"
4203version = "0.52.6"
4204source = "registry+https://github.com/rust-lang/crates.io-index"
4205checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
4206
4207[[package]]
4208name = "windows_i686_gnullvm"
4209version = "0.53.1"
4210source = "registry+https://github.com/rust-lang/crates.io-index"
4211checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c"
4212
4213[[package]]
4214name = "windows_i686_msvc"
4215version = "0.42.2"
4216source = "registry+https://github.com/rust-lang/crates.io-index"
4217checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
4218
4219[[package]]
4220name = "windows_i686_msvc"
4221version = "0.48.5"
4222source = "registry+https://github.com/rust-lang/crates.io-index"
4223checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
4224
4225[[package]]
4226name = "windows_i686_msvc"
4227version = "0.52.6"
4228source = "registry+https://github.com/rust-lang/crates.io-index"
4229checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
4230
4231[[package]]
4232name = "windows_i686_msvc"
4233version = "0.53.1"
4234source = "registry+https://github.com/rust-lang/crates.io-index"
4235checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2"
4236
4237[[package]]
4238name = "windows_x86_64_gnu"
4239version = "0.42.2"
4240source = "registry+https://github.com/rust-lang/crates.io-index"
4241checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
4242
4243[[package]]
4244name = "windows_x86_64_gnu"
4245version = "0.48.5"
4246source = "registry+https://github.com/rust-lang/crates.io-index"
4247checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
4248
4249[[package]]
4250name = "windows_x86_64_gnu"
4251version = "0.52.6"
4252source = "registry+https://github.com/rust-lang/crates.io-index"
4253checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
4254
4255[[package]]
4256name = "windows_x86_64_gnu"
4257version = "0.53.1"
4258source = "registry+https://github.com/rust-lang/crates.io-index"
4259checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499"
4260
4261[[package]]
4262name = "windows_x86_64_gnullvm"
4263version = "0.42.2"
4264source = "registry+https://github.com/rust-lang/crates.io-index"
4265checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
4266
4267[[package]]
4268name = "windows_x86_64_gnullvm"
4269version = "0.48.5"
4270source = "registry+https://github.com/rust-lang/crates.io-index"
4271checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
4272
4273[[package]]
4274name = "windows_x86_64_gnullvm"
4275version = "0.52.6"
4276source = "registry+https://github.com/rust-lang/crates.io-index"
4277checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
4278
4279[[package]]
4280name = "windows_x86_64_gnullvm"
4281version = "0.53.1"
4282source = "registry+https://github.com/rust-lang/crates.io-index"
4283checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1"
4284
4285[[package]]
4286name = "windows_x86_64_msvc"
4287version = "0.42.2"
4288source = "registry+https://github.com/rust-lang/crates.io-index"
4289checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
4290
4291[[package]]
4292name = "windows_x86_64_msvc"
4293version = "0.48.5"
4294source = "registry+https://github.com/rust-lang/crates.io-index"
4295checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
4296
4297[[package]]
4298name = "windows_x86_64_msvc"
4299version = "0.52.6"
4300source = "registry+https://github.com/rust-lang/crates.io-index"
4301checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
4302
4303[[package]]
4304name = "windows_x86_64_msvc"
4305version = "0.53.1"
4306source = "registry+https://github.com/rust-lang/crates.io-index"
4307checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650"
4308
4309[[package]]
4310name = "winreg"
4311version = "0.50.0"
4312source = "registry+https://github.com/rust-lang/crates.io-index"
4313checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
4314dependencies = [
4315 "cfg-if",
4316 "windows-sys 0.48.0",
4317]
4318
4319[[package]]
4320name = "wit-bindgen"
4321version = "0.46.0"
4322source = "registry+https://github.com/rust-lang/crates.io-index"
4323checksum = "f17a85883d4e6d00e8a97c586de764dabcc06133f7f1d55dce5cdc070ad7fe59"
4324
4325[[package]]
4326name = "writeable"
4327version = "0.6.1"
4328source = "registry+https://github.com/rust-lang/crates.io-index"
4329checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
4330
4331[[package]]
4332name = "yansi"
4333version = "1.0.1"
4334source = "registry+https://github.com/rust-lang/crates.io-index"
4335checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
4336
4337[[package]]
4338name = "yoke"
4339version = "0.8.0"
4340source = "registry+https://github.com/rust-lang/crates.io-index"
4341checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
4342dependencies = [
4343 "serde",
4344 "stable_deref_trait",
4345 "yoke-derive",
4346 "zerofrom",
4347]
4348
4349[[package]]
4350name = "yoke-derive"
4351version = "0.8.0"
4352source = "registry+https://github.com/rust-lang/crates.io-index"
4353checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
4354dependencies = [
4355 "proc-macro2",
4356 "quote",
4357 "syn 2.0.107",
4358 "synstructure",
4359]
4360
4361[[package]]
4362name = "zerocopy"
4363version = "0.8.27"
4364source = "registry+https://github.com/rust-lang/crates.io-index"
4365checksum = "0894878a5fa3edfd6da3f88c4805f4c8558e2b996227a3d864f47fe11e38282c"
4366dependencies = [
4367 "zerocopy-derive",
4368]
4369
4370[[package]]
4371name = "zerocopy-derive"
4372version = "0.8.27"
4373source = "registry+https://github.com/rust-lang/crates.io-index"
4374checksum = "88d2b8d9c68ad2b9e4340d7832716a4d21a22a1154777ad56ea55c51a9cf3831"
4375dependencies = [
4376 "proc-macro2",
4377 "quote",
4378 "syn 2.0.107",
4379]
4380
4381[[package]]
4382name = "zerofrom"
4383version = "0.1.6"
4384source = "registry+https://github.com/rust-lang/crates.io-index"
4385checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
4386dependencies = [
4387 "zerofrom-derive",
4388]
4389
4390[[package]]
4391name = "zerofrom-derive"
4392version = "0.1.6"
4393source = "registry+https://github.com/rust-lang/crates.io-index"
4394checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
4395dependencies = [
4396 "proc-macro2",
4397 "quote",
4398 "syn 2.0.107",
4399 "synstructure",
4400]
4401
4402[[package]]
4403name = "zeroize"
4404version = "1.8.2"
4405source = "registry+https://github.com/rust-lang/crates.io-index"
4406checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
4407dependencies = [
4408 "serde",
4409]
4410
4411[[package]]
4412name = "zerotrie"
4413version = "0.2.2"
4414source = "registry+https://github.com/rust-lang/crates.io-index"
4415checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
4416dependencies = [
4417 "displaydoc",
4418 "yoke",
4419 "zerofrom",
4420]
4421
4422[[package]]
4423name = "zerovec"
4424version = "0.11.4"
4425source = "registry+https://github.com/rust-lang/crates.io-index"
4426checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
4427dependencies = [
4428 "yoke",
4429 "zerofrom",
4430 "zerovec-derive",
4431]
4432
4433[[package]]
4434name = "zerovec-derive"
4435version = "0.11.1"
4436source = "registry+https://github.com/rust-lang/crates.io-index"
4437checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
4438dependencies = [
4439 "proc-macro2",
4440 "quote",
4441 "syn 2.0.107",
4442]