A native webfishing installer for macos
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "addr2line"
7version = "0.24.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10dependencies = [
11 "gimli",
12]
13
14[[package]]
15name = "adler2"
16version = "2.0.0"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
20[[package]]
21name = "asky"
22version = "0.1.1"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "dfac9a487b76922077604f2da106badccc7bdd01674de28475a8ea3282792879"
25dependencies = [
26 "colored",
27 "crossterm",
28]
29
30[[package]]
31name = "async-channel"
32version = "1.9.0"
33source = "registry+https://github.com/rust-lang/crates.io-index"
34checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
35dependencies = [
36 "concurrent-queue",
37 "event-listener 2.5.3",
38 "futures-core",
39]
40
41[[package]]
42name = "async-channel"
43version = "2.3.1"
44source = "registry+https://github.com/rust-lang/crates.io-index"
45checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
46dependencies = [
47 "concurrent-queue",
48 "event-listener-strategy",
49 "futures-core",
50 "pin-project-lite",
51]
52
53[[package]]
54name = "async-executor"
55version = "1.13.1"
56source = "registry+https://github.com/rust-lang/crates.io-index"
57checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
58dependencies = [
59 "async-task",
60 "concurrent-queue",
61 "fastrand",
62 "futures-lite",
63 "slab",
64]
65
66[[package]]
67name = "async-global-executor"
68version = "2.4.1"
69source = "registry+https://github.com/rust-lang/crates.io-index"
70checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
71dependencies = [
72 "async-channel 2.3.1",
73 "async-executor",
74 "async-io",
75 "async-lock",
76 "blocking",
77 "futures-lite",
78 "once_cell",
79]
80
81[[package]]
82name = "async-io"
83version = "2.4.0"
84source = "registry+https://github.com/rust-lang/crates.io-index"
85checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
86dependencies = [
87 "async-lock",
88 "cfg-if",
89 "concurrent-queue",
90 "futures-io",
91 "futures-lite",
92 "parking",
93 "polling",
94 "rustix",
95 "slab",
96 "tracing",
97 "windows-sys 0.59.0",
98]
99
100[[package]]
101name = "async-lock"
102version = "3.4.0"
103source = "registry+https://github.com/rust-lang/crates.io-index"
104checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
105dependencies = [
106 "event-listener 5.3.1",
107 "event-listener-strategy",
108 "pin-project-lite",
109]
110
111[[package]]
112name = "async-std"
113version = "1.13.0"
114source = "registry+https://github.com/rust-lang/crates.io-index"
115checksum = "c634475f29802fde2b8f0b505b1bd00dfe4df7d4a000f0b36f7671197d5c3615"
116dependencies = [
117 "async-channel 1.9.0",
118 "async-global-executor",
119 "async-io",
120 "async-lock",
121 "crossbeam-utils",
122 "futures-channel",
123 "futures-core",
124 "futures-io",
125 "futures-lite",
126 "gloo-timers",
127 "kv-log-macro",
128 "log",
129 "memchr",
130 "once_cell",
131 "pin-project-lite",
132 "pin-utils",
133 "slab",
134 "wasm-bindgen-futures",
135]
136
137[[package]]
138name = "async-task"
139version = "4.7.1"
140source = "registry+https://github.com/rust-lang/crates.io-index"
141checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
142
143[[package]]
144name = "atomic-waker"
145version = "1.1.2"
146source = "registry+https://github.com/rust-lang/crates.io-index"
147checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
148
149[[package]]
150name = "autocfg"
151version = "1.4.0"
152source = "registry+https://github.com/rust-lang/crates.io-index"
153checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
154
155[[package]]
156name = "backtrace"
157version = "0.3.74"
158source = "registry+https://github.com/rust-lang/crates.io-index"
159checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
160dependencies = [
161 "addr2line",
162 "cfg-if",
163 "libc",
164 "miniz_oxide",
165 "object",
166 "rustc-demangle",
167 "windows-targets 0.52.6",
168]
169
170[[package]]
171name = "base64"
172version = "0.22.1"
173source = "registry+https://github.com/rust-lang/crates.io-index"
174checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
175
176[[package]]
177name = "binary-reader"
178version = "0.4.5"
179source = "registry+https://github.com/rust-lang/crates.io-index"
180checksum = "1d173c51941d642588ed6a13d464617e3a9176b8fe00dc2de182434c36812a5e"
181dependencies = [
182 "byteorder",
183]
184
185[[package]]
186name = "bitflags"
187version = "1.3.2"
188source = "registry+https://github.com/rust-lang/crates.io-index"
189checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
190
191[[package]]
192name = "bitflags"
193version = "2.6.0"
194source = "registry+https://github.com/rust-lang/crates.io-index"
195checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
196
197[[package]]
198name = "block-buffer"
199version = "0.10.4"
200source = "registry+https://github.com/rust-lang/crates.io-index"
201checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
202dependencies = [
203 "generic-array",
204]
205
206[[package]]
207name = "blocking"
208version = "1.6.1"
209source = "registry+https://github.com/rust-lang/crates.io-index"
210checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
211dependencies = [
212 "async-channel 2.3.1",
213 "async-task",
214 "futures-io",
215 "futures-lite",
216 "piper",
217]
218
219[[package]]
220name = "bumpalo"
221version = "3.16.0"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
224
225[[package]]
226name = "byteorder"
227version = "1.5.0"
228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
230
231[[package]]
232name = "bytes"
233version = "1.9.0"
234source = "registry+https://github.com/rust-lang/crates.io-index"
235checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
236
237[[package]]
238name = "cc"
239version = "1.2.5"
240source = "registry+https://github.com/rust-lang/crates.io-index"
241checksum = "c31a0499c1dc64f458ad13872de75c0eb7e3fdb0e67964610c914b034fc5956e"
242dependencies = [
243 "shlex",
244]
245
246[[package]]
247name = "cfg-if"
248version = "1.0.0"
249source = "registry+https://github.com/rust-lang/crates.io-index"
250checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
251
252[[package]]
253name = "colored"
254version = "2.2.0"
255source = "registry+https://github.com/rust-lang/crates.io-index"
256checksum = "117725a109d387c937a1533ce01b450cbde6b88abceea8473c4d7a85853cda3c"
257dependencies = [
258 "lazy_static",
259 "windows-sys 0.59.0",
260]
261
262[[package]]
263name = "concurrent-queue"
264version = "2.5.0"
265source = "registry+https://github.com/rust-lang/crates.io-index"
266checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
267dependencies = [
268 "crossbeam-utils",
269]
270
271[[package]]
272name = "core-foundation"
273version = "0.9.4"
274source = "registry+https://github.com/rust-lang/crates.io-index"
275checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
276dependencies = [
277 "core-foundation-sys",
278 "libc",
279]
280
281[[package]]
282name = "core-foundation-sys"
283version = "0.8.7"
284source = "registry+https://github.com/rust-lang/crates.io-index"
285checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
286
287[[package]]
288name = "cpufeatures"
289version = "0.2.16"
290source = "registry+https://github.com/rust-lang/crates.io-index"
291checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
292dependencies = [
293 "libc",
294]
295
296[[package]]
297name = "crc"
298version = "3.2.1"
299source = "registry+https://github.com/rust-lang/crates.io-index"
300checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
301dependencies = [
302 "crc-catalog",
303]
304
305[[package]]
306name = "crc-catalog"
307version = "2.4.0"
308source = "registry+https://github.com/rust-lang/crates.io-index"
309checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
310
311[[package]]
312name = "crossbeam-deque"
313version = "0.8.6"
314source = "registry+https://github.com/rust-lang/crates.io-index"
315checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
316dependencies = [
317 "crossbeam-epoch",
318 "crossbeam-utils",
319]
320
321[[package]]
322name = "crossbeam-epoch"
323version = "0.9.18"
324source = "registry+https://github.com/rust-lang/crates.io-index"
325checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
326dependencies = [
327 "crossbeam-utils",
328]
329
330[[package]]
331name = "crossbeam-utils"
332version = "0.8.21"
333source = "registry+https://github.com/rust-lang/crates.io-index"
334checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
335
336[[package]]
337name = "crossterm"
338version = "0.26.1"
339source = "registry+https://github.com/rust-lang/crates.io-index"
340checksum = "a84cda67535339806297f1b331d6dd6320470d2a0fe65381e79ee9e156dd3d13"
341dependencies = [
342 "bitflags 1.3.2",
343 "crossterm_winapi",
344 "libc",
345 "mio 0.8.11",
346 "parking_lot",
347 "signal-hook",
348 "signal-hook-mio",
349 "winapi",
350]
351
352[[package]]
353name = "crossterm_winapi"
354version = "0.9.1"
355source = "registry+https://github.com/rust-lang/crates.io-index"
356checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
357dependencies = [
358 "winapi",
359]
360
361[[package]]
362name = "crypto-common"
363version = "0.1.6"
364source = "registry+https://github.com/rust-lang/crates.io-index"
365checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
366dependencies = [
367 "generic-array",
368 "typenum",
369]
370
371[[package]]
372name = "digest"
373version = "0.10.7"
374source = "registry+https://github.com/rust-lang/crates.io-index"
375checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
376dependencies = [
377 "block-buffer",
378 "crypto-common",
379]
380
381[[package]]
382name = "displaydoc"
383version = "0.2.5"
384source = "registry+https://github.com/rust-lang/crates.io-index"
385checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
386dependencies = [
387 "proc-macro2",
388 "quote",
389 "syn",
390]
391
392[[package]]
393name = "either"
394version = "1.13.0"
395source = "registry+https://github.com/rust-lang/crates.io-index"
396checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
397
398[[package]]
399name = "encoding_rs"
400version = "0.8.35"
401source = "registry+https://github.com/rust-lang/crates.io-index"
402checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
403dependencies = [
404 "cfg-if",
405]
406
407[[package]]
408name = "equivalent"
409version = "1.0.1"
410source = "registry+https://github.com/rust-lang/crates.io-index"
411checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
412
413[[package]]
414name = "errno"
415version = "0.3.10"
416source = "registry+https://github.com/rust-lang/crates.io-index"
417checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
418dependencies = [
419 "libc",
420 "windows-sys 0.59.0",
421]
422
423[[package]]
424name = "event-listener"
425version = "2.5.3"
426source = "registry+https://github.com/rust-lang/crates.io-index"
427checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
428
429[[package]]
430name = "event-listener"
431version = "5.3.1"
432source = "registry+https://github.com/rust-lang/crates.io-index"
433checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
434dependencies = [
435 "concurrent-queue",
436 "parking",
437 "pin-project-lite",
438]
439
440[[package]]
441name = "event-listener-strategy"
442version = "0.5.3"
443source = "registry+https://github.com/rust-lang/crates.io-index"
444checksum = "3c3e4e0dd3673c1139bf041f3008816d9cf2946bbfac2945c09e523b8d7b05b2"
445dependencies = [
446 "event-listener 5.3.1",
447 "pin-project-lite",
448]
449
450[[package]]
451name = "fastrand"
452version = "2.3.0"
453source = "registry+https://github.com/rust-lang/crates.io-index"
454checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
455
456[[package]]
457name = "fnv"
458version = "1.0.7"
459source = "registry+https://github.com/rust-lang/crates.io-index"
460checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
461
462[[package]]
463name = "foreign-types"
464version = "0.3.2"
465source = "registry+https://github.com/rust-lang/crates.io-index"
466checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
467dependencies = [
468 "foreign-types-shared",
469]
470
471[[package]]
472name = "foreign-types-shared"
473version = "0.1.1"
474source = "registry+https://github.com/rust-lang/crates.io-index"
475checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
476
477[[package]]
478name = "form_urlencoded"
479version = "1.2.1"
480source = "registry+https://github.com/rust-lang/crates.io-index"
481checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
482dependencies = [
483 "percent-encoding",
484]
485
486[[package]]
487name = "futures-channel"
488version = "0.3.31"
489source = "registry+https://github.com/rust-lang/crates.io-index"
490checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
491dependencies = [
492 "futures-core",
493]
494
495[[package]]
496name = "futures-core"
497version = "0.3.31"
498source = "registry+https://github.com/rust-lang/crates.io-index"
499checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
500
501[[package]]
502name = "futures-io"
503version = "0.3.31"
504source = "registry+https://github.com/rust-lang/crates.io-index"
505checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
506
507[[package]]
508name = "futures-lite"
509version = "2.5.0"
510source = "registry+https://github.com/rust-lang/crates.io-index"
511checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1"
512dependencies = [
513 "fastrand",
514 "futures-core",
515 "futures-io",
516 "parking",
517 "pin-project-lite",
518]
519
520[[package]]
521name = "futures-sink"
522version = "0.3.31"
523source = "registry+https://github.com/rust-lang/crates.io-index"
524checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
525
526[[package]]
527name = "futures-task"
528version = "0.3.31"
529source = "registry+https://github.com/rust-lang/crates.io-index"
530checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
531
532[[package]]
533name = "futures-util"
534version = "0.3.31"
535source = "registry+https://github.com/rust-lang/crates.io-index"
536checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
537dependencies = [
538 "futures-core",
539 "futures-task",
540 "pin-project-lite",
541 "pin-utils",
542]
543
544[[package]]
545name = "generic-array"
546version = "0.14.7"
547source = "registry+https://github.com/rust-lang/crates.io-index"
548checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
549dependencies = [
550 "typenum",
551 "version_check",
552]
553
554[[package]]
555name = "getrandom"
556version = "0.2.15"
557source = "registry+https://github.com/rust-lang/crates.io-index"
558checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
559dependencies = [
560 "cfg-if",
561 "libc",
562 "wasi",
563]
564
565[[package]]
566name = "gimli"
567version = "0.31.1"
568source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
570
571[[package]]
572name = "gloo-timers"
573version = "0.3.0"
574source = "registry+https://github.com/rust-lang/crates.io-index"
575checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
576dependencies = [
577 "futures-channel",
578 "futures-core",
579 "js-sys",
580 "wasm-bindgen",
581]
582
583[[package]]
584name = "godot_pck"
585version = "0.1.0"
586dependencies = [
587 "binary-reader",
588 "md5",
589]
590
591[[package]]
592name = "h2"
593version = "0.4.7"
594source = "registry+https://github.com/rust-lang/crates.io-index"
595checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
596dependencies = [
597 "atomic-waker",
598 "bytes",
599 "fnv",
600 "futures-core",
601 "futures-sink",
602 "http",
603 "indexmap",
604 "slab",
605 "tokio",
606 "tokio-util",
607 "tracing",
608]
609
610[[package]]
611name = "hashbrown"
612version = "0.15.2"
613source = "registry+https://github.com/rust-lang/crates.io-index"
614checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
615
616[[package]]
617name = "hermit-abi"
618version = "0.4.0"
619source = "registry+https://github.com/rust-lang/crates.io-index"
620checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
621
622[[package]]
623name = "home"
624version = "0.5.11"
625source = "registry+https://github.com/rust-lang/crates.io-index"
626checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
627dependencies = [
628 "windows-sys 0.59.0",
629]
630
631[[package]]
632name = "http"
633version = "1.2.0"
634source = "registry+https://github.com/rust-lang/crates.io-index"
635checksum = "f16ca2af56261c99fba8bac40a10251ce8188205a4c448fbb745a2e4daa76fea"
636dependencies = [
637 "bytes",
638 "fnv",
639 "itoa",
640]
641
642[[package]]
643name = "http-body"
644version = "1.0.1"
645source = "registry+https://github.com/rust-lang/crates.io-index"
646checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
647dependencies = [
648 "bytes",
649 "http",
650]
651
652[[package]]
653name = "http-body-util"
654version = "0.1.2"
655source = "registry+https://github.com/rust-lang/crates.io-index"
656checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
657dependencies = [
658 "bytes",
659 "futures-util",
660 "http",
661 "http-body",
662 "pin-project-lite",
663]
664
665[[package]]
666name = "httparse"
667version = "1.9.5"
668source = "registry+https://github.com/rust-lang/crates.io-index"
669checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
670
671[[package]]
672name = "hyper"
673version = "1.5.2"
674source = "registry+https://github.com/rust-lang/crates.io-index"
675checksum = "256fb8d4bd6413123cc9d91832d78325c48ff41677595be797d90f42969beae0"
676dependencies = [
677 "bytes",
678 "futures-channel",
679 "futures-util",
680 "h2",
681 "http",
682 "http-body",
683 "httparse",
684 "itoa",
685 "pin-project-lite",
686 "smallvec",
687 "tokio",
688 "want",
689]
690
691[[package]]
692name = "hyper-rustls"
693version = "0.27.5"
694source = "registry+https://github.com/rust-lang/crates.io-index"
695checksum = "2d191583f3da1305256f22463b9bb0471acad48a4e534a5218b9963e9c1f59b2"
696dependencies = [
697 "futures-util",
698 "http",
699 "hyper",
700 "hyper-util",
701 "rustls",
702 "rustls-pki-types",
703 "tokio",
704 "tokio-rustls",
705 "tower-service",
706]
707
708[[package]]
709name = "hyper-tls"
710version = "0.6.0"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
713dependencies = [
714 "bytes",
715 "http-body-util",
716 "hyper",
717 "hyper-util",
718 "native-tls",
719 "tokio",
720 "tokio-native-tls",
721 "tower-service",
722]
723
724[[package]]
725name = "hyper-util"
726version = "0.1.10"
727source = "registry+https://github.com/rust-lang/crates.io-index"
728checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
729dependencies = [
730 "bytes",
731 "futures-channel",
732 "futures-util",
733 "http",
734 "http-body",
735 "hyper",
736 "pin-project-lite",
737 "socket2",
738 "tokio",
739 "tower-service",
740 "tracing",
741]
742
743[[package]]
744name = "icu_collections"
745version = "1.5.0"
746source = "registry+https://github.com/rust-lang/crates.io-index"
747checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
748dependencies = [
749 "displaydoc",
750 "yoke",
751 "zerofrom",
752 "zerovec",
753]
754
755[[package]]
756name = "icu_locid"
757version = "1.5.0"
758source = "registry+https://github.com/rust-lang/crates.io-index"
759checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
760dependencies = [
761 "displaydoc",
762 "litemap",
763 "tinystr",
764 "writeable",
765 "zerovec",
766]
767
768[[package]]
769name = "icu_locid_transform"
770version = "1.5.0"
771source = "registry+https://github.com/rust-lang/crates.io-index"
772checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
773dependencies = [
774 "displaydoc",
775 "icu_locid",
776 "icu_locid_transform_data",
777 "icu_provider",
778 "tinystr",
779 "zerovec",
780]
781
782[[package]]
783name = "icu_locid_transform_data"
784version = "1.5.0"
785source = "registry+https://github.com/rust-lang/crates.io-index"
786checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
787
788[[package]]
789name = "icu_normalizer"
790version = "1.5.0"
791source = "registry+https://github.com/rust-lang/crates.io-index"
792checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
793dependencies = [
794 "displaydoc",
795 "icu_collections",
796 "icu_normalizer_data",
797 "icu_properties",
798 "icu_provider",
799 "smallvec",
800 "utf16_iter",
801 "utf8_iter",
802 "write16",
803 "zerovec",
804]
805
806[[package]]
807name = "icu_normalizer_data"
808version = "1.5.0"
809source = "registry+https://github.com/rust-lang/crates.io-index"
810checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
811
812[[package]]
813name = "icu_properties"
814version = "1.5.1"
815source = "registry+https://github.com/rust-lang/crates.io-index"
816checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
817dependencies = [
818 "displaydoc",
819 "icu_collections",
820 "icu_locid_transform",
821 "icu_properties_data",
822 "icu_provider",
823 "tinystr",
824 "zerovec",
825]
826
827[[package]]
828name = "icu_properties_data"
829version = "1.5.0"
830source = "registry+https://github.com/rust-lang/crates.io-index"
831checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
832
833[[package]]
834name = "icu_provider"
835version = "1.5.0"
836source = "registry+https://github.com/rust-lang/crates.io-index"
837checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
838dependencies = [
839 "displaydoc",
840 "icu_locid",
841 "icu_provider_macros",
842 "stable_deref_trait",
843 "tinystr",
844 "writeable",
845 "yoke",
846 "zerofrom",
847 "zerovec",
848]
849
850[[package]]
851name = "icu_provider_macros"
852version = "1.5.0"
853source = "registry+https://github.com/rust-lang/crates.io-index"
854checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
855dependencies = [
856 "proc-macro2",
857 "quote",
858 "syn",
859]
860
861[[package]]
862name = "idna"
863version = "1.0.3"
864source = "registry+https://github.com/rust-lang/crates.io-index"
865checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
866dependencies = [
867 "idna_adapter",
868 "smallvec",
869 "utf8_iter",
870]
871
872[[package]]
873name = "idna_adapter"
874version = "1.2.0"
875source = "registry+https://github.com/rust-lang/crates.io-index"
876checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
877dependencies = [
878 "icu_normalizer",
879 "icu_properties",
880]
881
882[[package]]
883name = "indexmap"
884version = "2.7.0"
885source = "registry+https://github.com/rust-lang/crates.io-index"
886checksum = "62f822373a4fe84d4bb149bf54e584a7f4abec90e072ed49cda0edea5b95471f"
887dependencies = [
888 "equivalent",
889 "hashbrown",
890]
891
892[[package]]
893name = "ipnet"
894version = "2.10.1"
895source = "registry+https://github.com/rust-lang/crates.io-index"
896checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
897
898[[package]]
899name = "itoa"
900version = "1.0.14"
901source = "registry+https://github.com/rust-lang/crates.io-index"
902checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
903
904[[package]]
905name = "js-sys"
906version = "0.3.76"
907source = "registry+https://github.com/rust-lang/crates.io-index"
908checksum = "6717b6b5b077764fb5966237269cb3c64edddde4b14ce42647430a78ced9e7b7"
909dependencies = [
910 "once_cell",
911 "wasm-bindgen",
912]
913
914[[package]]
915name = "keyvalues-parser"
916version = "0.2.0"
917source = "registry+https://github.com/rust-lang/crates.io-index"
918checksum = "7e4c8354918309196302015ac9cae43362f1a13d0d5c5539a33b4c2fd2cd6d25"
919dependencies = [
920 "pest",
921 "pest_derive",
922 "thiserror 1.0.69",
923]
924
925[[package]]
926name = "keyvalues-serde"
927version = "0.2.1"
928source = "registry+https://github.com/rust-lang/crates.io-index"
929checksum = "0447866c47c00f8bd1949618e8f63017cf93e985b4684dc28d784527e2882390"
930dependencies = [
931 "keyvalues-parser",
932 "serde",
933 "thiserror 1.0.69",
934]
935
936[[package]]
937name = "kv-log-macro"
938version = "1.0.7"
939source = "registry+https://github.com/rust-lang/crates.io-index"
940checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
941dependencies = [
942 "log",
943]
944
945[[package]]
946name = "lazy_static"
947version = "1.5.0"
948source = "registry+https://github.com/rust-lang/crates.io-index"
949checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
950
951[[package]]
952name = "libc"
953version = "0.2.169"
954source = "registry+https://github.com/rust-lang/crates.io-index"
955checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
956
957[[package]]
958name = "linux-raw-sys"
959version = "0.4.14"
960source = "registry+https://github.com/rust-lang/crates.io-index"
961checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
962
963[[package]]
964name = "litemap"
965version = "0.7.4"
966source = "registry+https://github.com/rust-lang/crates.io-index"
967checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
968
969[[package]]
970name = "lock_api"
971version = "0.4.12"
972source = "registry+https://github.com/rust-lang/crates.io-index"
973checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
974dependencies = [
975 "autocfg",
976 "scopeguard",
977]
978
979[[package]]
980name = "log"
981version = "0.4.22"
982source = "registry+https://github.com/rust-lang/crates.io-index"
983checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
984dependencies = [
985 "value-bag",
986]
987
988[[package]]
989name = "md5"
990version = "0.7.0"
991source = "registry+https://github.com/rust-lang/crates.io-index"
992checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
993
994[[package]]
995name = "memchr"
996version = "2.7.4"
997source = "registry+https://github.com/rust-lang/crates.io-index"
998checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
999
1000[[package]]
1001name = "mime"
1002version = "0.3.17"
1003source = "registry+https://github.com/rust-lang/crates.io-index"
1004checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1005
1006[[package]]
1007name = "miniz_oxide"
1008version = "0.8.2"
1009source = "registry+https://github.com/rust-lang/crates.io-index"
1010checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
1011dependencies = [
1012 "adler2",
1013]
1014
1015[[package]]
1016name = "mio"
1017version = "0.8.11"
1018source = "registry+https://github.com/rust-lang/crates.io-index"
1019checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1020dependencies = [
1021 "libc",
1022 "log",
1023 "wasi",
1024 "windows-sys 0.48.0",
1025]
1026
1027[[package]]
1028name = "mio"
1029version = "1.0.3"
1030source = "registry+https://github.com/rust-lang/crates.io-index"
1031checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1032dependencies = [
1033 "libc",
1034 "wasi",
1035 "windows-sys 0.52.0",
1036]
1037
1038[[package]]
1039name = "native-tls"
1040version = "0.2.12"
1041source = "registry+https://github.com/rust-lang/crates.io-index"
1042checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
1043dependencies = [
1044 "libc",
1045 "log",
1046 "openssl",
1047 "openssl-probe",
1048 "openssl-sys",
1049 "schannel",
1050 "security-framework",
1051 "security-framework-sys",
1052 "tempfile",
1053]
1054
1055[[package]]
1056name = "ntapi"
1057version = "0.4.1"
1058source = "registry+https://github.com/rust-lang/crates.io-index"
1059checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
1060dependencies = [
1061 "winapi",
1062]
1063
1064[[package]]
1065name = "object"
1066version = "0.36.7"
1067source = "registry+https://github.com/rust-lang/crates.io-index"
1068checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1069dependencies = [
1070 "memchr",
1071]
1072
1073[[package]]
1074name = "once_cell"
1075version = "1.20.2"
1076source = "registry+https://github.com/rust-lang/crates.io-index"
1077checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1078
1079[[package]]
1080name = "openssl"
1081version = "0.10.68"
1082source = "registry+https://github.com/rust-lang/crates.io-index"
1083checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
1084dependencies = [
1085 "bitflags 2.6.0",
1086 "cfg-if",
1087 "foreign-types",
1088 "libc",
1089 "once_cell",
1090 "openssl-macros",
1091 "openssl-sys",
1092]
1093
1094[[package]]
1095name = "openssl-macros"
1096version = "0.1.1"
1097source = "registry+https://github.com/rust-lang/crates.io-index"
1098checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1099dependencies = [
1100 "proc-macro2",
1101 "quote",
1102 "syn",
1103]
1104
1105[[package]]
1106name = "openssl-probe"
1107version = "0.1.5"
1108source = "registry+https://github.com/rust-lang/crates.io-index"
1109checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1110
1111[[package]]
1112name = "openssl-sys"
1113version = "0.9.104"
1114source = "registry+https://github.com/rust-lang/crates.io-index"
1115checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
1116dependencies = [
1117 "cc",
1118 "libc",
1119 "pkg-config",
1120 "vcpkg",
1121]
1122
1123[[package]]
1124name = "parking"
1125version = "2.2.1"
1126source = "registry+https://github.com/rust-lang/crates.io-index"
1127checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1128
1129[[package]]
1130name = "parking_lot"
1131version = "0.12.3"
1132source = "registry+https://github.com/rust-lang/crates.io-index"
1133checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1134dependencies = [
1135 "lock_api",
1136 "parking_lot_core",
1137]
1138
1139[[package]]
1140name = "parking_lot_core"
1141version = "0.9.10"
1142source = "registry+https://github.com/rust-lang/crates.io-index"
1143checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1144dependencies = [
1145 "cfg-if",
1146 "libc",
1147 "redox_syscall",
1148 "smallvec",
1149 "windows-targets 0.52.6",
1150]
1151
1152[[package]]
1153name = "percent-encoding"
1154version = "2.3.1"
1155source = "registry+https://github.com/rust-lang/crates.io-index"
1156checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1157
1158[[package]]
1159name = "pest"
1160version = "2.7.15"
1161source = "registry+https://github.com/rust-lang/crates.io-index"
1162checksum = "8b7cafe60d6cf8e62e1b9b2ea516a089c008945bb5a275416789e7db0bc199dc"
1163dependencies = [
1164 "memchr",
1165 "thiserror 2.0.9",
1166 "ucd-trie",
1167]
1168
1169[[package]]
1170name = "pest_derive"
1171version = "2.7.15"
1172source = "registry+https://github.com/rust-lang/crates.io-index"
1173checksum = "816518421cfc6887a0d62bf441b6ffb4536fcc926395a69e1a85852d4363f57e"
1174dependencies = [
1175 "pest",
1176 "pest_generator",
1177]
1178
1179[[package]]
1180name = "pest_generator"
1181version = "2.7.15"
1182source = "registry+https://github.com/rust-lang/crates.io-index"
1183checksum = "7d1396fd3a870fc7838768d171b4616d5c91f6cc25e377b673d714567d99377b"
1184dependencies = [
1185 "pest",
1186 "pest_meta",
1187 "proc-macro2",
1188 "quote",
1189 "syn",
1190]
1191
1192[[package]]
1193name = "pest_meta"
1194version = "2.7.15"
1195source = "registry+https://github.com/rust-lang/crates.io-index"
1196checksum = "e1e58089ea25d717bfd31fb534e4f3afcc2cc569c70de3e239778991ea3b7dea"
1197dependencies = [
1198 "once_cell",
1199 "pest",
1200 "sha2",
1201]
1202
1203[[package]]
1204name = "pin-project-lite"
1205version = "0.2.15"
1206source = "registry+https://github.com/rust-lang/crates.io-index"
1207checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
1208
1209[[package]]
1210name = "pin-utils"
1211version = "0.1.0"
1212source = "registry+https://github.com/rust-lang/crates.io-index"
1213checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1214
1215[[package]]
1216name = "piper"
1217version = "0.2.4"
1218source = "registry+https://github.com/rust-lang/crates.io-index"
1219checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
1220dependencies = [
1221 "atomic-waker",
1222 "fastrand",
1223 "futures-io",
1224]
1225
1226[[package]]
1227name = "pkg-config"
1228version = "0.3.31"
1229source = "registry+https://github.com/rust-lang/crates.io-index"
1230checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1231
1232[[package]]
1233name = "polling"
1234version = "3.7.4"
1235source = "registry+https://github.com/rust-lang/crates.io-index"
1236checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
1237dependencies = [
1238 "cfg-if",
1239 "concurrent-queue",
1240 "hermit-abi",
1241 "pin-project-lite",
1242 "rustix",
1243 "tracing",
1244 "windows-sys 0.59.0",
1245]
1246
1247[[package]]
1248name = "proc-macro2"
1249version = "1.0.92"
1250source = "registry+https://github.com/rust-lang/crates.io-index"
1251checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
1252dependencies = [
1253 "unicode-ident",
1254]
1255
1256[[package]]
1257name = "quote"
1258version = "1.0.38"
1259source = "registry+https://github.com/rust-lang/crates.io-index"
1260checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
1261dependencies = [
1262 "proc-macro2",
1263]
1264
1265[[package]]
1266name = "rayon"
1267version = "1.10.0"
1268source = "registry+https://github.com/rust-lang/crates.io-index"
1269checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
1270dependencies = [
1271 "either",
1272 "rayon-core",
1273]
1274
1275[[package]]
1276name = "rayon-core"
1277version = "1.12.1"
1278source = "registry+https://github.com/rust-lang/crates.io-index"
1279checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
1280dependencies = [
1281 "crossbeam-deque",
1282 "crossbeam-utils",
1283]
1284
1285[[package]]
1286name = "redox_syscall"
1287version = "0.5.8"
1288source = "registry+https://github.com/rust-lang/crates.io-index"
1289checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
1290dependencies = [
1291 "bitflags 2.6.0",
1292]
1293
1294[[package]]
1295name = "reqwest"
1296version = "0.12.9"
1297source = "registry+https://github.com/rust-lang/crates.io-index"
1298checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
1299dependencies = [
1300 "base64",
1301 "bytes",
1302 "encoding_rs",
1303 "futures-core",
1304 "futures-util",
1305 "h2",
1306 "http",
1307 "http-body",
1308 "http-body-util",
1309 "hyper",
1310 "hyper-rustls",
1311 "hyper-tls",
1312 "hyper-util",
1313 "ipnet",
1314 "js-sys",
1315 "log",
1316 "mime",
1317 "native-tls",
1318 "once_cell",
1319 "percent-encoding",
1320 "pin-project-lite",
1321 "rustls-pemfile",
1322 "serde",
1323 "serde_json",
1324 "serde_urlencoded",
1325 "sync_wrapper",
1326 "system-configuration",
1327 "tokio",
1328 "tokio-native-tls",
1329 "tower-service",
1330 "url",
1331 "wasm-bindgen",
1332 "wasm-bindgen-futures",
1333 "web-sys",
1334 "windows-registry",
1335]
1336
1337[[package]]
1338name = "ring"
1339version = "0.17.8"
1340source = "registry+https://github.com/rust-lang/crates.io-index"
1341checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
1342dependencies = [
1343 "cc",
1344 "cfg-if",
1345 "getrandom",
1346 "libc",
1347 "spin",
1348 "untrusted",
1349 "windows-sys 0.52.0",
1350]
1351
1352[[package]]
1353name = "rustc-demangle"
1354version = "0.1.24"
1355source = "registry+https://github.com/rust-lang/crates.io-index"
1356checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1357
1358[[package]]
1359name = "rustix"
1360version = "0.38.42"
1361source = "registry+https://github.com/rust-lang/crates.io-index"
1362checksum = "f93dc38ecbab2eb790ff964bb77fa94faf256fd3e73285fd7ba0903b76bedb85"
1363dependencies = [
1364 "bitflags 2.6.0",
1365 "errno",
1366 "libc",
1367 "linux-raw-sys",
1368 "windows-sys 0.59.0",
1369]
1370
1371[[package]]
1372name = "rustls"
1373version = "0.23.20"
1374source = "registry+https://github.com/rust-lang/crates.io-index"
1375checksum = "5065c3f250cbd332cd894be57c40fa52387247659b14a2d6041d121547903b1b"
1376dependencies = [
1377 "once_cell",
1378 "rustls-pki-types",
1379 "rustls-webpki",
1380 "subtle",
1381 "zeroize",
1382]
1383
1384[[package]]
1385name = "rustls-pemfile"
1386version = "2.2.0"
1387source = "registry+https://github.com/rust-lang/crates.io-index"
1388checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1389dependencies = [
1390 "rustls-pki-types",
1391]
1392
1393[[package]]
1394name = "rustls-pki-types"
1395version = "1.10.1"
1396source = "registry+https://github.com/rust-lang/crates.io-index"
1397checksum = "d2bf47e6ff922db3825eb750c4e2ff784c6ff8fb9e13046ef6a1d1c5401b0b37"
1398
1399[[package]]
1400name = "rustls-webpki"
1401version = "0.102.8"
1402source = "registry+https://github.com/rust-lang/crates.io-index"
1403checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
1404dependencies = [
1405 "ring",
1406 "rustls-pki-types",
1407 "untrusted",
1408]
1409
1410[[package]]
1411name = "ryu"
1412version = "1.0.18"
1413source = "registry+https://github.com/rust-lang/crates.io-index"
1414checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1415
1416[[package]]
1417name = "schannel"
1418version = "0.1.27"
1419source = "registry+https://github.com/rust-lang/crates.io-index"
1420checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
1421dependencies = [
1422 "windows-sys 0.59.0",
1423]
1424
1425[[package]]
1426name = "scopeguard"
1427version = "1.2.0"
1428source = "registry+https://github.com/rust-lang/crates.io-index"
1429checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1430
1431[[package]]
1432name = "security-framework"
1433version = "2.11.1"
1434source = "registry+https://github.com/rust-lang/crates.io-index"
1435checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1436dependencies = [
1437 "bitflags 2.6.0",
1438 "core-foundation",
1439 "core-foundation-sys",
1440 "libc",
1441 "security-framework-sys",
1442]
1443
1444[[package]]
1445name = "security-framework-sys"
1446version = "2.13.0"
1447source = "registry+https://github.com/rust-lang/crates.io-index"
1448checksum = "1863fd3768cd83c56a7f60faa4dc0d403f1b6df0a38c3c25f44b7894e45370d5"
1449dependencies = [
1450 "core-foundation-sys",
1451 "libc",
1452]
1453
1454[[package]]
1455name = "serde"
1456version = "1.0.216"
1457source = "registry+https://github.com/rust-lang/crates.io-index"
1458checksum = "0b9781016e935a97e8beecf0c933758c97a5520d32930e460142b4cd80c6338e"
1459dependencies = [
1460 "serde_derive",
1461]
1462
1463[[package]]
1464name = "serde_derive"
1465version = "1.0.216"
1466source = "registry+https://github.com/rust-lang/crates.io-index"
1467checksum = "46f859dbbf73865c6627ed570e78961cd3ac92407a2d117204c49232485da55e"
1468dependencies = [
1469 "proc-macro2",
1470 "quote",
1471 "syn",
1472]
1473
1474[[package]]
1475name = "serde_json"
1476version = "1.0.134"
1477source = "registry+https://github.com/rust-lang/crates.io-index"
1478checksum = "d00f4175c42ee48b15416f6193a959ba3a0d67fc699a0db9ad12df9f83991c7d"
1479dependencies = [
1480 "itoa",
1481 "memchr",
1482 "ryu",
1483 "serde",
1484]
1485
1486[[package]]
1487name = "serde_urlencoded"
1488version = "0.7.1"
1489source = "registry+https://github.com/rust-lang/crates.io-index"
1490checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1491dependencies = [
1492 "form_urlencoded",
1493 "itoa",
1494 "ryu",
1495 "serde",
1496]
1497
1498[[package]]
1499name = "sha2"
1500version = "0.10.8"
1501source = "registry+https://github.com/rust-lang/crates.io-index"
1502checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1503dependencies = [
1504 "cfg-if",
1505 "cpufeatures",
1506 "digest",
1507]
1508
1509[[package]]
1510name = "shlex"
1511version = "1.3.0"
1512source = "registry+https://github.com/rust-lang/crates.io-index"
1513checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1514
1515[[package]]
1516name = "signal-hook"
1517version = "0.3.17"
1518source = "registry+https://github.com/rust-lang/crates.io-index"
1519checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
1520dependencies = [
1521 "libc",
1522 "signal-hook-registry",
1523]
1524
1525[[package]]
1526name = "signal-hook-mio"
1527version = "0.2.4"
1528source = "registry+https://github.com/rust-lang/crates.io-index"
1529checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
1530dependencies = [
1531 "libc",
1532 "mio 0.8.11",
1533 "signal-hook",
1534]
1535
1536[[package]]
1537name = "signal-hook-registry"
1538version = "1.4.2"
1539source = "registry+https://github.com/rust-lang/crates.io-index"
1540checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1541dependencies = [
1542 "libc",
1543]
1544
1545[[package]]
1546name = "slab"
1547version = "0.4.9"
1548source = "registry+https://github.com/rust-lang/crates.io-index"
1549checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1550dependencies = [
1551 "autocfg",
1552]
1553
1554[[package]]
1555name = "smallvec"
1556version = "1.13.2"
1557source = "registry+https://github.com/rust-lang/crates.io-index"
1558checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
1559
1560[[package]]
1561name = "socket2"
1562version = "0.5.8"
1563source = "registry+https://github.com/rust-lang/crates.io-index"
1564checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
1565dependencies = [
1566 "libc",
1567 "windows-sys 0.52.0",
1568]
1569
1570[[package]]
1571name = "spin"
1572version = "0.9.8"
1573source = "registry+https://github.com/rust-lang/crates.io-index"
1574checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1575
1576[[package]]
1577name = "stable_deref_trait"
1578version = "1.2.0"
1579source = "registry+https://github.com/rust-lang/crates.io-index"
1580checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1581
1582[[package]]
1583name = "steamlocate"
1584version = "2.0.0"
1585source = "registry+https://github.com/rust-lang/crates.io-index"
1586checksum = "cb96708f2e7cadc6c5bde3f3e12e3d6565bbd4d8b9e3da057035881c33136d9d"
1587dependencies = [
1588 "crc",
1589 "home",
1590 "keyvalues-parser",
1591 "keyvalues-serde",
1592 "serde",
1593 "winreg",
1594]
1595
1596[[package]]
1597name = "subtle"
1598version = "2.6.1"
1599source = "registry+https://github.com/rust-lang/crates.io-index"
1600checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1601
1602[[package]]
1603name = "sudo"
1604version = "0.6.0"
1605source = "registry+https://github.com/rust-lang/crates.io-index"
1606checksum = "88bd84d4c082e18e37fef52c0088e4407dabcef19d23a607fb4b5ee03b7d5b83"
1607dependencies = [
1608 "libc",
1609 "log",
1610]
1611
1612[[package]]
1613name = "syn"
1614version = "2.0.91"
1615source = "registry+https://github.com/rust-lang/crates.io-index"
1616checksum = "d53cbcb5a243bd33b7858b1d7f4aca2153490815872d86d955d6ea29f743c035"
1617dependencies = [
1618 "proc-macro2",
1619 "quote",
1620 "unicode-ident",
1621]
1622
1623[[package]]
1624name = "sync_wrapper"
1625version = "1.0.2"
1626source = "registry+https://github.com/rust-lang/crates.io-index"
1627checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1628dependencies = [
1629 "futures-core",
1630]
1631
1632[[package]]
1633name = "synstructure"
1634version = "0.13.1"
1635source = "registry+https://github.com/rust-lang/crates.io-index"
1636checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
1637dependencies = [
1638 "proc-macro2",
1639 "quote",
1640 "syn",
1641]
1642
1643[[package]]
1644name = "sysinfo"
1645version = "0.33.0"
1646source = "registry+https://github.com/rust-lang/crates.io-index"
1647checksum = "948512566b1895f93b1592c7574baeb2de842f224f2aab158799ecadb8ebbb46"
1648dependencies = [
1649 "core-foundation-sys",
1650 "libc",
1651 "memchr",
1652 "ntapi",
1653 "rayon",
1654 "windows",
1655]
1656
1657[[package]]
1658name = "system-configuration"
1659version = "0.6.1"
1660source = "registry+https://github.com/rust-lang/crates.io-index"
1661checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
1662dependencies = [
1663 "bitflags 2.6.0",
1664 "core-foundation",
1665 "system-configuration-sys",
1666]
1667
1668[[package]]
1669name = "system-configuration-sys"
1670version = "0.6.0"
1671source = "registry+https://github.com/rust-lang/crates.io-index"
1672checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
1673dependencies = [
1674 "core-foundation-sys",
1675 "libc",
1676]
1677
1678[[package]]
1679name = "tempfile"
1680version = "3.14.0"
1681source = "registry+https://github.com/rust-lang/crates.io-index"
1682checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
1683dependencies = [
1684 "cfg-if",
1685 "fastrand",
1686 "once_cell",
1687 "rustix",
1688 "windows-sys 0.59.0",
1689]
1690
1691[[package]]
1692name = "thiserror"
1693version = "1.0.69"
1694source = "registry+https://github.com/rust-lang/crates.io-index"
1695checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1696dependencies = [
1697 "thiserror-impl 1.0.69",
1698]
1699
1700[[package]]
1701name = "thiserror"
1702version = "2.0.9"
1703source = "registry+https://github.com/rust-lang/crates.io-index"
1704checksum = "f072643fd0190df67a8bab670c20ef5d8737177d6ac6b2e9a236cb096206b2cc"
1705dependencies = [
1706 "thiserror-impl 2.0.9",
1707]
1708
1709[[package]]
1710name = "thiserror-impl"
1711version = "1.0.69"
1712source = "registry+https://github.com/rust-lang/crates.io-index"
1713checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1714dependencies = [
1715 "proc-macro2",
1716 "quote",
1717 "syn",
1718]
1719
1720[[package]]
1721name = "thiserror-impl"
1722version = "2.0.9"
1723source = "registry+https://github.com/rust-lang/crates.io-index"
1724checksum = "7b50fa271071aae2e6ee85f842e2e28ba8cd2c5fb67f11fcb1fd70b276f9e7d4"
1725dependencies = [
1726 "proc-macro2",
1727 "quote",
1728 "syn",
1729]
1730
1731[[package]]
1732name = "tinystr"
1733version = "0.7.6"
1734source = "registry+https://github.com/rust-lang/crates.io-index"
1735checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
1736dependencies = [
1737 "displaydoc",
1738 "zerovec",
1739]
1740
1741[[package]]
1742name = "tokio"
1743version = "1.42.0"
1744source = "registry+https://github.com/rust-lang/crates.io-index"
1745checksum = "5cec9b21b0450273377fc97bd4c33a8acffc8c996c987a7c5b319a0083707551"
1746dependencies = [
1747 "backtrace",
1748 "bytes",
1749 "libc",
1750 "mio 1.0.3",
1751 "pin-project-lite",
1752 "socket2",
1753 "tokio-macros",
1754 "windows-sys 0.52.0",
1755]
1756
1757[[package]]
1758name = "tokio-macros"
1759version = "2.4.0"
1760source = "registry+https://github.com/rust-lang/crates.io-index"
1761checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
1762dependencies = [
1763 "proc-macro2",
1764 "quote",
1765 "syn",
1766]
1767
1768[[package]]
1769name = "tokio-native-tls"
1770version = "0.3.1"
1771source = "registry+https://github.com/rust-lang/crates.io-index"
1772checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1773dependencies = [
1774 "native-tls",
1775 "tokio",
1776]
1777
1778[[package]]
1779name = "tokio-rustls"
1780version = "0.26.1"
1781source = "registry+https://github.com/rust-lang/crates.io-index"
1782checksum = "5f6d0975eaace0cf0fcadee4e4aaa5da15b5c079146f2cffb67c113be122bf37"
1783dependencies = [
1784 "rustls",
1785 "tokio",
1786]
1787
1788[[package]]
1789name = "tokio-util"
1790version = "0.7.13"
1791source = "registry+https://github.com/rust-lang/crates.io-index"
1792checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
1793dependencies = [
1794 "bytes",
1795 "futures-core",
1796 "futures-sink",
1797 "pin-project-lite",
1798 "tokio",
1799]
1800
1801[[package]]
1802name = "tower-service"
1803version = "0.3.3"
1804source = "registry+https://github.com/rust-lang/crates.io-index"
1805checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1806
1807[[package]]
1808name = "tracing"
1809version = "0.1.41"
1810source = "registry+https://github.com/rust-lang/crates.io-index"
1811checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1812dependencies = [
1813 "pin-project-lite",
1814 "tracing-core",
1815]
1816
1817[[package]]
1818name = "tracing-core"
1819version = "0.1.33"
1820source = "registry+https://github.com/rust-lang/crates.io-index"
1821checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
1822dependencies = [
1823 "once_cell",
1824]
1825
1826[[package]]
1827name = "try-lock"
1828version = "0.2.5"
1829source = "registry+https://github.com/rust-lang/crates.io-index"
1830checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1831
1832[[package]]
1833name = "typenum"
1834version = "1.17.0"
1835source = "registry+https://github.com/rust-lang/crates.io-index"
1836checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
1837
1838[[package]]
1839name = "ucd-trie"
1840version = "0.1.7"
1841source = "registry+https://github.com/rust-lang/crates.io-index"
1842checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
1843
1844[[package]]
1845name = "unicode-ident"
1846version = "1.0.14"
1847source = "registry+https://github.com/rust-lang/crates.io-index"
1848checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
1849
1850[[package]]
1851name = "untrusted"
1852version = "0.9.0"
1853source = "registry+https://github.com/rust-lang/crates.io-index"
1854checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1855
1856[[package]]
1857name = "url"
1858version = "2.5.4"
1859source = "registry+https://github.com/rust-lang/crates.io-index"
1860checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
1861dependencies = [
1862 "form_urlencoded",
1863 "idna",
1864 "percent-encoding",
1865]
1866
1867[[package]]
1868name = "utf16_iter"
1869version = "1.0.5"
1870source = "registry+https://github.com/rust-lang/crates.io-index"
1871checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
1872
1873[[package]]
1874name = "utf8_iter"
1875version = "1.0.4"
1876source = "registry+https://github.com/rust-lang/crates.io-index"
1877checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
1878
1879[[package]]
1880name = "value-bag"
1881version = "1.10.0"
1882source = "registry+https://github.com/rust-lang/crates.io-index"
1883checksum = "3ef4c4aa54d5d05a279399bfa921ec387b7aba77caf7a682ae8d86785b8fdad2"
1884
1885[[package]]
1886name = "vcpkg"
1887version = "0.2.15"
1888source = "registry+https://github.com/rust-lang/crates.io-index"
1889checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1890
1891[[package]]
1892name = "version_check"
1893version = "0.9.5"
1894source = "registry+https://github.com/rust-lang/crates.io-index"
1895checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1896
1897[[package]]
1898name = "want"
1899version = "0.3.1"
1900source = "registry+https://github.com/rust-lang/crates.io-index"
1901checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
1902dependencies = [
1903 "try-lock",
1904]
1905
1906[[package]]
1907name = "wasi"
1908version = "0.11.0+wasi-snapshot-preview1"
1909source = "registry+https://github.com/rust-lang/crates.io-index"
1910checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
1911
1912[[package]]
1913name = "wasm-bindgen"
1914version = "0.2.99"
1915source = "registry+https://github.com/rust-lang/crates.io-index"
1916checksum = "a474f6281d1d70c17ae7aa6a613c87fce69a127e2624002df63dcb39d6cf6396"
1917dependencies = [
1918 "cfg-if",
1919 "once_cell",
1920 "wasm-bindgen-macro",
1921]
1922
1923[[package]]
1924name = "wasm-bindgen-backend"
1925version = "0.2.99"
1926source = "registry+https://github.com/rust-lang/crates.io-index"
1927checksum = "5f89bb38646b4f81674e8f5c3fb81b562be1fd936d84320f3264486418519c79"
1928dependencies = [
1929 "bumpalo",
1930 "log",
1931 "proc-macro2",
1932 "quote",
1933 "syn",
1934 "wasm-bindgen-shared",
1935]
1936
1937[[package]]
1938name = "wasm-bindgen-futures"
1939version = "0.4.49"
1940source = "registry+https://github.com/rust-lang/crates.io-index"
1941checksum = "38176d9b44ea84e9184eff0bc34cc167ed044f816accfe5922e54d84cf48eca2"
1942dependencies = [
1943 "cfg-if",
1944 "js-sys",
1945 "once_cell",
1946 "wasm-bindgen",
1947 "web-sys",
1948]
1949
1950[[package]]
1951name = "wasm-bindgen-macro"
1952version = "0.2.99"
1953source = "registry+https://github.com/rust-lang/crates.io-index"
1954checksum = "2cc6181fd9a7492eef6fef1f33961e3695e4579b9872a6f7c83aee556666d4fe"
1955dependencies = [
1956 "quote",
1957 "wasm-bindgen-macro-support",
1958]
1959
1960[[package]]
1961name = "wasm-bindgen-macro-support"
1962version = "0.2.99"
1963source = "registry+https://github.com/rust-lang/crates.io-index"
1964checksum = "30d7a95b763d3c45903ed6c81f156801839e5ee968bb07e534c44df0fcd330c2"
1965dependencies = [
1966 "proc-macro2",
1967 "quote",
1968 "syn",
1969 "wasm-bindgen-backend",
1970 "wasm-bindgen-shared",
1971]
1972
1973[[package]]
1974name = "wasm-bindgen-shared"
1975version = "0.2.99"
1976source = "registry+https://github.com/rust-lang/crates.io-index"
1977checksum = "943aab3fdaaa029a6e0271b35ea10b72b943135afe9bffca82384098ad0e06a6"
1978
1979[[package]]
1980name = "web-sys"
1981version = "0.3.76"
1982source = "registry+https://github.com/rust-lang/crates.io-index"
1983checksum = "04dd7223427d52553d3702c004d3b2fe07c148165faa56313cb00211e31c12bc"
1984dependencies = [
1985 "js-sys",
1986 "wasm-bindgen",
1987]
1988
1989[[package]]
1990name = "webfishing_macos_installer"
1991version = "0.1.0"
1992dependencies = [
1993 "asky",
1994 "async-std",
1995 "godot_pck",
1996 "reqwest",
1997 "steamlocate",
1998 "sudo",
1999 "sysinfo",
2000 "tokio",
2001]
2002
2003[[package]]
2004name = "winapi"
2005version = "0.3.9"
2006source = "registry+https://github.com/rust-lang/crates.io-index"
2007checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2008dependencies = [
2009 "winapi-i686-pc-windows-gnu",
2010 "winapi-x86_64-pc-windows-gnu",
2011]
2012
2013[[package]]
2014name = "winapi-i686-pc-windows-gnu"
2015version = "0.4.0"
2016source = "registry+https://github.com/rust-lang/crates.io-index"
2017checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2018
2019[[package]]
2020name = "winapi-x86_64-pc-windows-gnu"
2021version = "0.4.0"
2022source = "registry+https://github.com/rust-lang/crates.io-index"
2023checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2024
2025[[package]]
2026name = "windows"
2027version = "0.57.0"
2028source = "registry+https://github.com/rust-lang/crates.io-index"
2029checksum = "12342cb4d8e3b046f3d80effd474a7a02447231330ef77d71daa6fbc40681143"
2030dependencies = [
2031 "windows-core",
2032 "windows-targets 0.52.6",
2033]
2034
2035[[package]]
2036name = "windows-core"
2037version = "0.57.0"
2038source = "registry+https://github.com/rust-lang/crates.io-index"
2039checksum = "d2ed2439a290666cd67ecce2b0ffaad89c2a56b976b736e6ece670297897832d"
2040dependencies = [
2041 "windows-implement",
2042 "windows-interface",
2043 "windows-result 0.1.2",
2044 "windows-targets 0.52.6",
2045]
2046
2047[[package]]
2048name = "windows-implement"
2049version = "0.57.0"
2050source = "registry+https://github.com/rust-lang/crates.io-index"
2051checksum = "9107ddc059d5b6fbfbffdfa7a7fe3e22a226def0b2608f72e9d552763d3e1ad7"
2052dependencies = [
2053 "proc-macro2",
2054 "quote",
2055 "syn",
2056]
2057
2058[[package]]
2059name = "windows-interface"
2060version = "0.57.0"
2061source = "registry+https://github.com/rust-lang/crates.io-index"
2062checksum = "29bee4b38ea3cde66011baa44dba677c432a78593e202392d1e9070cf2a7fca7"
2063dependencies = [
2064 "proc-macro2",
2065 "quote",
2066 "syn",
2067]
2068
2069[[package]]
2070name = "windows-registry"
2071version = "0.2.0"
2072source = "registry+https://github.com/rust-lang/crates.io-index"
2073checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
2074dependencies = [
2075 "windows-result 0.2.0",
2076 "windows-strings",
2077 "windows-targets 0.52.6",
2078]
2079
2080[[package]]
2081name = "windows-result"
2082version = "0.1.2"
2083source = "registry+https://github.com/rust-lang/crates.io-index"
2084checksum = "5e383302e8ec8515204254685643de10811af0ed97ea37210dc26fb0032647f8"
2085dependencies = [
2086 "windows-targets 0.52.6",
2087]
2088
2089[[package]]
2090name = "windows-result"
2091version = "0.2.0"
2092source = "registry+https://github.com/rust-lang/crates.io-index"
2093checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
2094dependencies = [
2095 "windows-targets 0.52.6",
2096]
2097
2098[[package]]
2099name = "windows-strings"
2100version = "0.1.0"
2101source = "registry+https://github.com/rust-lang/crates.io-index"
2102checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
2103dependencies = [
2104 "windows-result 0.2.0",
2105 "windows-targets 0.52.6",
2106]
2107
2108[[package]]
2109name = "windows-sys"
2110version = "0.48.0"
2111source = "registry+https://github.com/rust-lang/crates.io-index"
2112checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2113dependencies = [
2114 "windows-targets 0.48.5",
2115]
2116
2117[[package]]
2118name = "windows-sys"
2119version = "0.52.0"
2120source = "registry+https://github.com/rust-lang/crates.io-index"
2121checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2122dependencies = [
2123 "windows-targets 0.52.6",
2124]
2125
2126[[package]]
2127name = "windows-sys"
2128version = "0.59.0"
2129source = "registry+https://github.com/rust-lang/crates.io-index"
2130checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2131dependencies = [
2132 "windows-targets 0.52.6",
2133]
2134
2135[[package]]
2136name = "windows-targets"
2137version = "0.48.5"
2138source = "registry+https://github.com/rust-lang/crates.io-index"
2139checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2140dependencies = [
2141 "windows_aarch64_gnullvm 0.48.5",
2142 "windows_aarch64_msvc 0.48.5",
2143 "windows_i686_gnu 0.48.5",
2144 "windows_i686_msvc 0.48.5",
2145 "windows_x86_64_gnu 0.48.5",
2146 "windows_x86_64_gnullvm 0.48.5",
2147 "windows_x86_64_msvc 0.48.5",
2148]
2149
2150[[package]]
2151name = "windows-targets"
2152version = "0.52.6"
2153source = "registry+https://github.com/rust-lang/crates.io-index"
2154checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2155dependencies = [
2156 "windows_aarch64_gnullvm 0.52.6",
2157 "windows_aarch64_msvc 0.52.6",
2158 "windows_i686_gnu 0.52.6",
2159 "windows_i686_gnullvm",
2160 "windows_i686_msvc 0.52.6",
2161 "windows_x86_64_gnu 0.52.6",
2162 "windows_x86_64_gnullvm 0.52.6",
2163 "windows_x86_64_msvc 0.52.6",
2164]
2165
2166[[package]]
2167name = "windows_aarch64_gnullvm"
2168version = "0.48.5"
2169source = "registry+https://github.com/rust-lang/crates.io-index"
2170checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2171
2172[[package]]
2173name = "windows_aarch64_gnullvm"
2174version = "0.52.6"
2175source = "registry+https://github.com/rust-lang/crates.io-index"
2176checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2177
2178[[package]]
2179name = "windows_aarch64_msvc"
2180version = "0.48.5"
2181source = "registry+https://github.com/rust-lang/crates.io-index"
2182checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2183
2184[[package]]
2185name = "windows_aarch64_msvc"
2186version = "0.52.6"
2187source = "registry+https://github.com/rust-lang/crates.io-index"
2188checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2189
2190[[package]]
2191name = "windows_i686_gnu"
2192version = "0.48.5"
2193source = "registry+https://github.com/rust-lang/crates.io-index"
2194checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2195
2196[[package]]
2197name = "windows_i686_gnu"
2198version = "0.52.6"
2199source = "registry+https://github.com/rust-lang/crates.io-index"
2200checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2201
2202[[package]]
2203name = "windows_i686_gnullvm"
2204version = "0.52.6"
2205source = "registry+https://github.com/rust-lang/crates.io-index"
2206checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2207
2208[[package]]
2209name = "windows_i686_msvc"
2210version = "0.48.5"
2211source = "registry+https://github.com/rust-lang/crates.io-index"
2212checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2213
2214[[package]]
2215name = "windows_i686_msvc"
2216version = "0.52.6"
2217source = "registry+https://github.com/rust-lang/crates.io-index"
2218checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2219
2220[[package]]
2221name = "windows_x86_64_gnu"
2222version = "0.48.5"
2223source = "registry+https://github.com/rust-lang/crates.io-index"
2224checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2225
2226[[package]]
2227name = "windows_x86_64_gnu"
2228version = "0.52.6"
2229source = "registry+https://github.com/rust-lang/crates.io-index"
2230checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2231
2232[[package]]
2233name = "windows_x86_64_gnullvm"
2234version = "0.48.5"
2235source = "registry+https://github.com/rust-lang/crates.io-index"
2236checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2237
2238[[package]]
2239name = "windows_x86_64_gnullvm"
2240version = "0.52.6"
2241source = "registry+https://github.com/rust-lang/crates.io-index"
2242checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2243
2244[[package]]
2245name = "windows_x86_64_msvc"
2246version = "0.48.5"
2247source = "registry+https://github.com/rust-lang/crates.io-index"
2248checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2249
2250[[package]]
2251name = "windows_x86_64_msvc"
2252version = "0.52.6"
2253source = "registry+https://github.com/rust-lang/crates.io-index"
2254checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2255
2256[[package]]
2257name = "winreg"
2258version = "0.52.0"
2259source = "registry+https://github.com/rust-lang/crates.io-index"
2260checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
2261dependencies = [
2262 "cfg-if",
2263 "windows-sys 0.48.0",
2264]
2265
2266[[package]]
2267name = "write16"
2268version = "1.0.0"
2269source = "registry+https://github.com/rust-lang/crates.io-index"
2270checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
2271
2272[[package]]
2273name = "writeable"
2274version = "0.5.5"
2275source = "registry+https://github.com/rust-lang/crates.io-index"
2276checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2277
2278[[package]]
2279name = "yoke"
2280version = "0.7.5"
2281source = "registry+https://github.com/rust-lang/crates.io-index"
2282checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
2283dependencies = [
2284 "serde",
2285 "stable_deref_trait",
2286 "yoke-derive",
2287 "zerofrom",
2288]
2289
2290[[package]]
2291name = "yoke-derive"
2292version = "0.7.5"
2293source = "registry+https://github.com/rust-lang/crates.io-index"
2294checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
2295dependencies = [
2296 "proc-macro2",
2297 "quote",
2298 "syn",
2299 "synstructure",
2300]
2301
2302[[package]]
2303name = "zerofrom"
2304version = "0.1.5"
2305source = "registry+https://github.com/rust-lang/crates.io-index"
2306checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
2307dependencies = [
2308 "zerofrom-derive",
2309]
2310
2311[[package]]
2312name = "zerofrom-derive"
2313version = "0.1.5"
2314source = "registry+https://github.com/rust-lang/crates.io-index"
2315checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
2316dependencies = [
2317 "proc-macro2",
2318 "quote",
2319 "syn",
2320 "synstructure",
2321]
2322
2323[[package]]
2324name = "zeroize"
2325version = "1.8.1"
2326source = "registry+https://github.com/rust-lang/crates.io-index"
2327checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2328
2329[[package]]
2330name = "zerovec"
2331version = "0.10.4"
2332source = "registry+https://github.com/rust-lang/crates.io-index"
2333checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
2334dependencies = [
2335 "yoke",
2336 "zerofrom",
2337 "zerovec-derive",
2338]
2339
2340[[package]]
2341name = "zerovec-derive"
2342version = "0.10.3"
2343source = "registry+https://github.com/rust-lang/crates.io-index"
2344checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
2345dependencies = [
2346 "proc-macro2",
2347 "quote",
2348 "syn",
2349]