upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-05-26 16:11:05 +0530
committerYour Name <you@example.com>2026-05-26 16:11:05 +0530
commit8816a192c95cf539b65975469a2d61aed46f0414 (patch)
tree7590318244a56fabbfa6919ef6d0fab5be529134 /Cargo.lock
feat: initial implementation of grasp-mirror daemon
GRASP mirror daemon that discovers repos from watched npubs and mirrors git data + Nostr events across all known GRASP servers for redundancy. Features: - Configurable npub watch list via .env (MIRROR_NPUBS) - TOML config for GRASP server list, index relays, storage paths - NIP-11 verification of GRASP servers on startup - Discovery of repos via kind:30617 announcements on index relays - Git mirroring (bare clone + push --mirror) to missing GRASP servers - Nostr event forwarding to all GRASP server embedded relays - SQLite state tracking for sync status and event dedup - Optional signing key for updating announcements with new clone URLs - CLI subcommands: daemon, status, verify, mirror-once Architecture: config.rs - TOML + .env config loading db.rs - SQLite state tracking health.rs - NIP-11 GRASP server verification discovery.rs - Relay subscription, kind:30617 parsing git_mirror.rs - Bare clone + push to GRASP servers nostr_mirror.rs - Event forwarding to all GRASP relays signing.rs - Optional announcement updates main.rs - CLI entry point, daemon loop
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock3549
1 files changed, 3549 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..6fb8ee4
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,3549 @@
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "aead"
7version = "0.5.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
10dependencies = [
11 "crypto-common",
12 "generic-array",
13]
14
15[[package]]
16name = "aho-corasick"
17version = "1.1.4"
18source = "registry+https://github.com/rust-lang/crates.io-index"
19checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
20dependencies = [
21 "memchr",
22]
23
24[[package]]
25name = "allocator-api2"
26version = "0.2.21"
27source = "registry+https://github.com/rust-lang/crates.io-index"
28checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
29
30[[package]]
31name = "anstream"
32version = "1.0.0"
33source = "registry+https://github.com/rust-lang/crates.io-index"
34checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
35dependencies = [
36 "anstyle",
37 "anstyle-parse",
38 "anstyle-query",
39 "anstyle-wincon",
40 "colorchoice",
41 "is_terminal_polyfill",
42 "utf8parse",
43]
44
45[[package]]
46name = "anstyle"
47version = "1.0.14"
48source = "registry+https://github.com/rust-lang/crates.io-index"
49checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
50
51[[package]]
52name = "anstyle-parse"
53version = "1.0.0"
54source = "registry+https://github.com/rust-lang/crates.io-index"
55checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
56dependencies = [
57 "utf8parse",
58]
59
60[[package]]
61name = "anstyle-query"
62version = "1.1.5"
63source = "registry+https://github.com/rust-lang/crates.io-index"
64checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
65dependencies = [
66 "windows-sys 0.61.2",
67]
68
69[[package]]
70name = "anstyle-wincon"
71version = "3.0.11"
72source = "registry+https://github.com/rust-lang/crates.io-index"
73checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
74dependencies = [
75 "anstyle",
76 "once_cell_polyfill",
77 "windows-sys 0.61.2",
78]
79
80[[package]]
81name = "anyhow"
82version = "1.0.102"
83source = "registry+https://github.com/rust-lang/crates.io-index"
84checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
85
86[[package]]
87name = "arrayvec"
88version = "0.7.6"
89source = "registry+https://github.com/rust-lang/crates.io-index"
90checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
91
92[[package]]
93name = "async-utility"
94version = "0.3.1"
95source = "registry+https://github.com/rust-lang/crates.io-index"
96checksum = "a34a3b57207a7a1007832416c3e4862378c8451b4e8e093e436f48c2d3d2c151"
97dependencies = [
98 "futures-util",
99 "gloo-timers",
100 "tokio",
101 "wasm-bindgen-futures",
102]
103
104[[package]]
105name = "async-wsocket"
106version = "0.13.2"
107source = "registry+https://github.com/rust-lang/crates.io-index"
108checksum = "1c92385c7c8b3eb2de1b78aeca225212e4c9a69a78b802832759b108681a5069"
109dependencies = [
110 "async-utility",
111 "futures",
112 "futures-util",
113 "js-sys",
114 "tokio",
115 "tokio-rustls",
116 "tokio-socks",
117 "tokio-tungstenite",
118 "url",
119 "wasm-bindgen",
120 "web-sys",
121]
122
123[[package]]
124name = "atoi"
125version = "2.0.0"
126source = "registry+https://github.com/rust-lang/crates.io-index"
127checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
128dependencies = [
129 "num-traits",
130]
131
132[[package]]
133name = "atomic-destructor"
134version = "0.3.0"
135source = "registry+https://github.com/rust-lang/crates.io-index"
136checksum = "ef49f5882e4b6afaac09ad239a4f8c70a24b8f2b0897edb1f706008efd109cf4"
137
138[[package]]
139name = "atomic-waker"
140version = "1.1.2"
141source = "registry+https://github.com/rust-lang/crates.io-index"
142checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
143
144[[package]]
145name = "autocfg"
146version = "1.5.1"
147source = "registry+https://github.com/rust-lang/crates.io-index"
148checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
149
150[[package]]
151name = "base64"
152version = "0.22.1"
153source = "registry+https://github.com/rust-lang/crates.io-index"
154checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
155
156[[package]]
157name = "base64ct"
158version = "1.8.3"
159source = "registry+https://github.com/rust-lang/crates.io-index"
160checksum = "2af50177e190e07a26ab74f8b1efbfe2ef87da2116221318cb1c2e82baf7de06"
161
162[[package]]
163name = "bech32"
164version = "0.11.1"
165source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "32637268377fc7b10a8c6d51de3e7fba1ce5dd371a96e342b34e6078db558e7f"
167
168[[package]]
169name = "bip39"
170version = "2.2.2"
171source = "registry+https://github.com/rust-lang/crates.io-index"
172checksum = "90dbd31c98227229239363921e60fcf5e558e43ec69094d46fc4996f08d1d5bc"
173dependencies = [
174 "bitcoin_hashes",
175 "serde",
176 "unicode-normalization",
177]
178
179[[package]]
180name = "bitcoin-io"
181version = "0.1.4"
182source = "registry+https://github.com/rust-lang/crates.io-index"
183checksum = "2dee39a0ee5b4095224a0cfc6bf4cc1baf0f9624b96b367e53b66d974e51d953"
184
185[[package]]
186name = "bitcoin_hashes"
187version = "0.14.1"
188source = "registry+https://github.com/rust-lang/crates.io-index"
189checksum = "26ec84b80c482df901772e931a9a681e26a1b9ee2302edeff23cb30328745c8b"
190dependencies = [
191 "bitcoin-io",
192 "hex-conservative",
193 "serde",
194]
195
196[[package]]
197name = "bitflags"
198version = "2.11.1"
199source = "registry+https://github.com/rust-lang/crates.io-index"
200checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
201dependencies = [
202 "serde_core",
203]
204
205[[package]]
206name = "block-buffer"
207version = "0.10.4"
208source = "registry+https://github.com/rust-lang/crates.io-index"
209checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
210dependencies = [
211 "generic-array",
212]
213
214[[package]]
215name = "block-padding"
216version = "0.3.3"
217source = "registry+https://github.com/rust-lang/crates.io-index"
218checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
219dependencies = [
220 "generic-array",
221]
222
223[[package]]
224name = "bumpalo"
225version = "3.20.3"
226source = "registry+https://github.com/rust-lang/crates.io-index"
227checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
228
229[[package]]
230name = "byteorder"
231version = "1.5.0"
232source = "registry+https://github.com/rust-lang/crates.io-index"
233checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
234
235[[package]]
236name = "bytes"
237version = "1.11.1"
238source = "registry+https://github.com/rust-lang/crates.io-index"
239checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
240
241[[package]]
242name = "cbc"
243version = "0.1.2"
244source = "registry+https://github.com/rust-lang/crates.io-index"
245checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
246dependencies = [
247 "cipher",
248]
249
250[[package]]
251name = "cc"
252version = "1.2.62"
253source = "registry+https://github.com/rust-lang/crates.io-index"
254checksum = "a1dce859f0832a7d088c4f1119888ab94ef4b5d6795d1ce05afb7fe159d79f98"
255dependencies = [
256 "find-msvc-tools",
257 "jobserver",
258 "libc",
259 "shlex",
260]
261
262[[package]]
263name = "cfg-if"
264version = "1.0.4"
265source = "registry+https://github.com/rust-lang/crates.io-index"
266checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
267
268[[package]]
269name = "chacha20"
270version = "0.9.1"
271source = "registry+https://github.com/rust-lang/crates.io-index"
272checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
273dependencies = [
274 "cfg-if",
275 "cipher",
276 "cpufeatures",
277]
278
279[[package]]
280name = "chacha20poly1305"
281version = "0.10.1"
282source = "registry+https://github.com/rust-lang/crates.io-index"
283checksum = "10cd79432192d1c0f4e1a0fef9527696cc039165d729fb41b3f4f4f354c2dc35"
284dependencies = [
285 "aead",
286 "chacha20",
287 "cipher",
288 "poly1305",
289 "zeroize",
290]
291
292[[package]]
293name = "cipher"
294version = "0.4.4"
295source = "registry+https://github.com/rust-lang/crates.io-index"
296checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
297dependencies = [
298 "crypto-common",
299 "inout",
300 "zeroize",
301]
302
303[[package]]
304name = "clap"
305version = "4.6.1"
306source = "registry+https://github.com/rust-lang/crates.io-index"
307checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
308dependencies = [
309 "clap_builder",
310 "clap_derive",
311]
312
313[[package]]
314name = "clap_builder"
315version = "4.6.0"
316source = "registry+https://github.com/rust-lang/crates.io-index"
317checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
318dependencies = [
319 "anstream",
320 "anstyle",
321 "clap_lex",
322 "strsim",
323]
324
325[[package]]
326name = "clap_derive"
327version = "4.6.1"
328source = "registry+https://github.com/rust-lang/crates.io-index"
329checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
330dependencies = [
331 "heck",
332 "proc-macro2",
333 "quote",
334 "syn",
335]
336
337[[package]]
338name = "clap_lex"
339version = "1.1.0"
340source = "registry+https://github.com/rust-lang/crates.io-index"
341checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
342
343[[package]]
344name = "colorchoice"
345version = "1.0.5"
346source = "registry+https://github.com/rust-lang/crates.io-index"
347checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
348
349[[package]]
350name = "concurrent-queue"
351version = "2.5.0"
352source = "registry+https://github.com/rust-lang/crates.io-index"
353checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
354dependencies = [
355 "crossbeam-utils",
356]
357
358[[package]]
359name = "const-oid"
360version = "0.9.6"
361source = "registry+https://github.com/rust-lang/crates.io-index"
362checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
363
364[[package]]
365name = "core-foundation"
366version = "0.9.4"
367source = "registry+https://github.com/rust-lang/crates.io-index"
368checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
369dependencies = [
370 "core-foundation-sys",
371 "libc",
372]
373
374[[package]]
375name = "core-foundation"
376version = "0.10.1"
377source = "registry+https://github.com/rust-lang/crates.io-index"
378checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6"
379dependencies = [
380 "core-foundation-sys",
381 "libc",
382]
383
384[[package]]
385name = "core-foundation-sys"
386version = "0.8.7"
387source = "registry+https://github.com/rust-lang/crates.io-index"
388checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
389
390[[package]]
391name = "cpufeatures"
392version = "0.2.17"
393source = "registry+https://github.com/rust-lang/crates.io-index"
394checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
395dependencies = [
396 "libc",
397]
398
399[[package]]
400name = "crc"
401version = "3.4.0"
402source = "registry+https://github.com/rust-lang/crates.io-index"
403checksum = "5eb8a2a1cd12ab0d987a5d5e825195d372001a4094a0376319d5a0ad71c1ba0d"
404dependencies = [
405 "crc-catalog",
406]
407
408[[package]]
409name = "crc-catalog"
410version = "2.5.0"
411source = "registry+https://github.com/rust-lang/crates.io-index"
412checksum = "217698eaf96b4a3f0bc4f3662aaa55bdf913cd54d7204591faa790070c6d0853"
413
414[[package]]
415name = "crossbeam-queue"
416version = "0.3.12"
417source = "registry+https://github.com/rust-lang/crates.io-index"
418checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
419dependencies = [
420 "crossbeam-utils",
421]
422
423[[package]]
424name = "crossbeam-utils"
425version = "0.8.21"
426source = "registry+https://github.com/rust-lang/crates.io-index"
427checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
428
429[[package]]
430name = "crypto-common"
431version = "0.1.7"
432source = "registry+https://github.com/rust-lang/crates.io-index"
433checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
434dependencies = [
435 "generic-array",
436 "rand_core 0.6.4",
437 "typenum",
438]
439
440[[package]]
441name = "data-encoding"
442version = "2.11.0"
443source = "registry+https://github.com/rust-lang/crates.io-index"
444checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
445
446[[package]]
447name = "der"
448version = "0.7.10"
449source = "registry+https://github.com/rust-lang/crates.io-index"
450checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
451dependencies = [
452 "const-oid",
453 "pem-rfc7468",
454 "zeroize",
455]
456
457[[package]]
458name = "digest"
459version = "0.10.7"
460source = "registry+https://github.com/rust-lang/crates.io-index"
461checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
462dependencies = [
463 "block-buffer",
464 "const-oid",
465 "crypto-common",
466 "subtle",
467]
468
469[[package]]
470name = "dirs"
471version = "6.0.0"
472source = "registry+https://github.com/rust-lang/crates.io-index"
473checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e"
474dependencies = [
475 "dirs-sys",
476]
477
478[[package]]
479name = "dirs-sys"
480version = "0.5.0"
481source = "registry+https://github.com/rust-lang/crates.io-index"
482checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab"
483dependencies = [
484 "libc",
485 "option-ext",
486 "redox_users",
487 "windows-sys 0.61.2",
488]
489
490[[package]]
491name = "displaydoc"
492version = "0.2.5"
493source = "registry+https://github.com/rust-lang/crates.io-index"
494checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
495dependencies = [
496 "proc-macro2",
497 "quote",
498 "syn",
499]
500
501[[package]]
502name = "dotenvy"
503version = "0.15.7"
504source = "registry+https://github.com/rust-lang/crates.io-index"
505checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
506
507[[package]]
508name = "either"
509version = "1.16.0"
510source = "registry+https://github.com/rust-lang/crates.io-index"
511checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
512dependencies = [
513 "serde",
514]
515
516[[package]]
517name = "encoding_rs"
518version = "0.8.35"
519source = "registry+https://github.com/rust-lang/crates.io-index"
520checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
521dependencies = [
522 "cfg-if",
523]
524
525[[package]]
526name = "equivalent"
527version = "1.0.2"
528source = "registry+https://github.com/rust-lang/crates.io-index"
529checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
530
531[[package]]
532name = "errno"
533version = "0.3.14"
534source = "registry+https://github.com/rust-lang/crates.io-index"
535checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
536dependencies = [
537 "libc",
538 "windows-sys 0.61.2",
539]
540
541[[package]]
542name = "etcetera"
543version = "0.8.0"
544source = "registry+https://github.com/rust-lang/crates.io-index"
545checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
546dependencies = [
547 "cfg-if",
548 "home",
549 "windows-sys 0.48.0",
550]
551
552[[package]]
553name = "event-listener"
554version = "5.4.1"
555source = "registry+https://github.com/rust-lang/crates.io-index"
556checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
557dependencies = [
558 "concurrent-queue",
559 "parking",
560 "pin-project-lite",
561]
562
563[[package]]
564name = "fastrand"
565version = "2.4.1"
566source = "registry+https://github.com/rust-lang/crates.io-index"
567checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
568
569[[package]]
570name = "find-msvc-tools"
571version = "0.1.9"
572source = "registry+https://github.com/rust-lang/crates.io-index"
573checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
574
575[[package]]
576name = "flume"
577version = "0.11.1"
578source = "registry+https://github.com/rust-lang/crates.io-index"
579checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
580dependencies = [
581 "futures-core",
582 "futures-sink",
583 "spin",
584]
585
586[[package]]
587name = "fnv"
588version = "1.0.7"
589source = "registry+https://github.com/rust-lang/crates.io-index"
590checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
591
592[[package]]
593name = "foldhash"
594version = "0.1.5"
595source = "registry+https://github.com/rust-lang/crates.io-index"
596checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
597
598[[package]]
599name = "foreign-types"
600version = "0.3.2"
601source = "registry+https://github.com/rust-lang/crates.io-index"
602checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
603dependencies = [
604 "foreign-types-shared",
605]
606
607[[package]]
608name = "foreign-types-shared"
609version = "0.1.1"
610source = "registry+https://github.com/rust-lang/crates.io-index"
611checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
612
613[[package]]
614name = "form_urlencoded"
615version = "1.2.2"
616source = "registry+https://github.com/rust-lang/crates.io-index"
617checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
618dependencies = [
619 "percent-encoding",
620]
621
622[[package]]
623name = "futures"
624version = "0.3.32"
625source = "registry+https://github.com/rust-lang/crates.io-index"
626checksum = "8b147ee9d1f6d097cef9ce628cd2ee62288d963e16fb287bd9286455b241382d"
627dependencies = [
628 "futures-channel",
629 "futures-core",
630 "futures-io",
631 "futures-sink",
632 "futures-task",
633 "futures-util",
634]
635
636[[package]]
637name = "futures-channel"
638version = "0.3.32"
639source = "registry+https://github.com/rust-lang/crates.io-index"
640checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
641dependencies = [
642 "futures-core",
643 "futures-sink",
644]
645
646[[package]]
647name = "futures-core"
648version = "0.3.32"
649source = "registry+https://github.com/rust-lang/crates.io-index"
650checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
651
652[[package]]
653name = "futures-executor"
654version = "0.3.32"
655source = "registry+https://github.com/rust-lang/crates.io-index"
656checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d"
657dependencies = [
658 "futures-core",
659 "futures-task",
660 "futures-util",
661]
662
663[[package]]
664name = "futures-intrusive"
665version = "0.5.0"
666source = "registry+https://github.com/rust-lang/crates.io-index"
667checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
668dependencies = [
669 "futures-core",
670 "lock_api",
671 "parking_lot",
672]
673
674[[package]]
675name = "futures-io"
676version = "0.3.32"
677source = "registry+https://github.com/rust-lang/crates.io-index"
678checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
679
680[[package]]
681name = "futures-sink"
682version = "0.3.32"
683source = "registry+https://github.com/rust-lang/crates.io-index"
684checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
685
686[[package]]
687name = "futures-task"
688version = "0.3.32"
689source = "registry+https://github.com/rust-lang/crates.io-index"
690checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
691
692[[package]]
693name = "futures-util"
694version = "0.3.32"
695source = "registry+https://github.com/rust-lang/crates.io-index"
696checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
697dependencies = [
698 "futures-channel",
699 "futures-core",
700 "futures-io",
701 "futures-sink",
702 "futures-task",
703 "memchr",
704 "pin-project-lite",
705 "slab",
706]
707
708[[package]]
709name = "generic-array"
710version = "0.14.7"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
713dependencies = [
714 "typenum",
715 "version_check",
716]
717
718[[package]]
719name = "getrandom"
720version = "0.2.17"
721source = "registry+https://github.com/rust-lang/crates.io-index"
722checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
723dependencies = [
724 "cfg-if",
725 "js-sys",
726 "libc",
727 "wasi",
728 "wasm-bindgen",
729]
730
731[[package]]
732name = "getrandom"
733version = "0.3.4"
734source = "registry+https://github.com/rust-lang/crates.io-index"
735checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
736dependencies = [
737 "cfg-if",
738 "libc",
739 "r-efi 5.3.0",
740 "wasip2",
741]
742
743[[package]]
744name = "getrandom"
745version = "0.4.2"
746source = "registry+https://github.com/rust-lang/crates.io-index"
747checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
748dependencies = [
749 "cfg-if",
750 "libc",
751 "r-efi 6.0.0",
752 "wasip2",
753 "wasip3",
754]
755
756[[package]]
757name = "git2"
758version = "0.20.4"
759source = "registry+https://github.com/rust-lang/crates.io-index"
760checksum = "7b88256088d75a56f8ecfa070513a775dd9107f6530ef14919dac831af9cfe2b"
761dependencies = [
762 "bitflags",
763 "libc",
764 "libgit2-sys",
765 "log",
766 "openssl-probe 0.1.6",
767 "openssl-sys",
768 "url",
769]
770
771[[package]]
772name = "gloo-timers"
773version = "0.3.0"
774source = "registry+https://github.com/rust-lang/crates.io-index"
775checksum = "bbb143cf96099802033e0d4f4963b19fd2e0b728bcf076cd9cf7f6634f092994"
776dependencies = [
777 "futures-channel",
778 "futures-core",
779 "js-sys",
780 "wasm-bindgen",
781]
782
783[[package]]
784name = "grasp-mirror"
785version = "0.1.0"
786dependencies = [
787 "anyhow",
788 "clap",
789 "dirs",
790 "dotenvy",
791 "git2",
792 "hex",
793 "nostr",
794 "nostr-sdk",
795 "reqwest",
796 "serde",
797 "serde_json",
798 "sqlx",
799 "tokio",
800 "toml",
801 "tracing",
802 "tracing-subscriber",
803]
804
805[[package]]
806name = "h2"
807version = "0.4.14"
808source = "registry+https://github.com/rust-lang/crates.io-index"
809checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
810dependencies = [
811 "atomic-waker",
812 "bytes",
813 "fnv",
814 "futures-core",
815 "futures-sink",
816 "http",
817 "indexmap",
818 "slab",
819 "tokio",
820 "tokio-util",
821 "tracing",
822]
823
824[[package]]
825name = "hashbrown"
826version = "0.15.5"
827source = "registry+https://github.com/rust-lang/crates.io-index"
828checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
829dependencies = [
830 "allocator-api2",
831 "equivalent",
832 "foldhash",
833]
834
835[[package]]
836name = "hashbrown"
837version = "0.17.1"
838source = "registry+https://github.com/rust-lang/crates.io-index"
839checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
840
841[[package]]
842name = "hashlink"
843version = "0.10.0"
844source = "registry+https://github.com/rust-lang/crates.io-index"
845checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
846dependencies = [
847 "hashbrown 0.15.5",
848]
849
850[[package]]
851name = "heck"
852version = "0.5.0"
853source = "registry+https://github.com/rust-lang/crates.io-index"
854checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
855
856[[package]]
857name = "hex"
858version = "0.4.3"
859source = "registry+https://github.com/rust-lang/crates.io-index"
860checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
861
862[[package]]
863name = "hex-conservative"
864version = "0.2.2"
865source = "registry+https://github.com/rust-lang/crates.io-index"
866checksum = "fda06d18ac606267c40c04e41b9947729bf8b9efe74bd4e82b61a5f26a510b9f"
867dependencies = [
868 "arrayvec",
869]
870
871[[package]]
872name = "hkdf"
873version = "0.12.4"
874source = "registry+https://github.com/rust-lang/crates.io-index"
875checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
876dependencies = [
877 "hmac",
878]
879
880[[package]]
881name = "hmac"
882version = "0.12.1"
883source = "registry+https://github.com/rust-lang/crates.io-index"
884checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
885dependencies = [
886 "digest",
887]
888
889[[package]]
890name = "home"
891version = "0.5.12"
892source = "registry+https://github.com/rust-lang/crates.io-index"
893checksum = "cc627f471c528ff0c4a49e1d5e60450c8f6461dd6d10ba9dcd3a61d3dff7728d"
894dependencies = [
895 "windows-sys 0.61.2",
896]
897
898[[package]]
899name = "http"
900version = "1.4.1"
901source = "registry+https://github.com/rust-lang/crates.io-index"
902checksum = "8be7462df143984c4598a256ef469b251d7d7f9e271135073e78fc535414f3d0"
903dependencies = [
904 "bytes",
905 "itoa",
906]
907
908[[package]]
909name = "http-body"
910version = "1.0.1"
911source = "registry+https://github.com/rust-lang/crates.io-index"
912checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
913dependencies = [
914 "bytes",
915 "http",
916]
917
918[[package]]
919name = "http-body-util"
920version = "0.1.3"
921source = "registry+https://github.com/rust-lang/crates.io-index"
922checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
923dependencies = [
924 "bytes",
925 "futures-core",
926 "http",
927 "http-body",
928 "pin-project-lite",
929]
930
931[[package]]
932name = "httparse"
933version = "1.10.1"
934source = "registry+https://github.com/rust-lang/crates.io-index"
935checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
936
937[[package]]
938name = "hyper"
939version = "1.9.0"
940source = "registry+https://github.com/rust-lang/crates.io-index"
941checksum = "6299f016b246a94207e63da54dbe807655bf9e00044f73ded42c3ac5305fbcca"
942dependencies = [
943 "atomic-waker",
944 "bytes",
945 "futures-channel",
946 "futures-core",
947 "h2",
948 "http",
949 "http-body",
950 "httparse",
951 "itoa",
952 "pin-project-lite",
953 "smallvec",
954 "tokio",
955 "want",
956]
957
958[[package]]
959name = "hyper-rustls"
960version = "0.27.9"
961source = "registry+https://github.com/rust-lang/crates.io-index"
962checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f"
963dependencies = [
964 "http",
965 "hyper",
966 "hyper-util",
967 "rustls",
968 "tokio",
969 "tokio-rustls",
970 "tower-service",
971]
972
973[[package]]
974name = "hyper-tls"
975version = "0.6.0"
976source = "registry+https://github.com/rust-lang/crates.io-index"
977checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
978dependencies = [
979 "bytes",
980 "http-body-util",
981 "hyper",
982 "hyper-util",
983 "native-tls",
984 "tokio",
985 "tokio-native-tls",
986 "tower-service",
987]
988
989[[package]]
990name = "hyper-util"
991version = "0.1.20"
992source = "registry+https://github.com/rust-lang/crates.io-index"
993checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
994dependencies = [
995 "base64",
996 "bytes",
997 "futures-channel",
998 "futures-util",
999 "http",
1000 "http-body",
1001 "hyper",
1002 "ipnet",
1003 "libc",
1004 "percent-encoding",
1005 "pin-project-lite",
1006 "socket2",
1007 "system-configuration",
1008 "tokio",
1009 "tower-service",
1010 "tracing",
1011 "windows-registry",
1012]
1013
1014[[package]]
1015name = "icu_collections"
1016version = "2.2.0"
1017source = "registry+https://github.com/rust-lang/crates.io-index"
1018checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
1019dependencies = [
1020 "displaydoc",
1021 "potential_utf",
1022 "utf8_iter",
1023 "yoke",
1024 "zerofrom",
1025 "zerovec",
1026]
1027
1028[[package]]
1029name = "icu_locale_core"
1030version = "2.2.0"
1031source = "registry+https://github.com/rust-lang/crates.io-index"
1032checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
1033dependencies = [
1034 "displaydoc",
1035 "litemap",
1036 "tinystr",
1037 "writeable",
1038 "zerovec",
1039]
1040
1041[[package]]
1042name = "icu_normalizer"
1043version = "2.2.0"
1044source = "registry+https://github.com/rust-lang/crates.io-index"
1045checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
1046dependencies = [
1047 "icu_collections",
1048 "icu_normalizer_data",
1049 "icu_properties",
1050 "icu_provider",
1051 "smallvec",
1052 "zerovec",
1053]
1054
1055[[package]]
1056name = "icu_normalizer_data"
1057version = "2.2.0"
1058source = "registry+https://github.com/rust-lang/crates.io-index"
1059checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
1060
1061[[package]]
1062name = "icu_properties"
1063version = "2.2.0"
1064source = "registry+https://github.com/rust-lang/crates.io-index"
1065checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
1066dependencies = [
1067 "icu_collections",
1068 "icu_locale_core",
1069 "icu_properties_data",
1070 "icu_provider",
1071 "zerotrie",
1072 "zerovec",
1073]
1074
1075[[package]]
1076name = "icu_properties_data"
1077version = "2.2.0"
1078source = "registry+https://github.com/rust-lang/crates.io-index"
1079checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
1080
1081[[package]]
1082name = "icu_provider"
1083version = "2.2.0"
1084source = "registry+https://github.com/rust-lang/crates.io-index"
1085checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
1086dependencies = [
1087 "displaydoc",
1088 "icu_locale_core",
1089 "writeable",
1090 "yoke",
1091 "zerofrom",
1092 "zerotrie",
1093 "zerovec",
1094]
1095
1096[[package]]
1097name = "id-arena"
1098version = "2.3.0"
1099source = "registry+https://github.com/rust-lang/crates.io-index"
1100checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
1101
1102[[package]]
1103name = "idna"
1104version = "1.1.0"
1105source = "registry+https://github.com/rust-lang/crates.io-index"
1106checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
1107dependencies = [
1108 "idna_adapter",
1109 "smallvec",
1110 "utf8_iter",
1111]
1112
1113[[package]]
1114name = "idna_adapter"
1115version = "1.2.2"
1116source = "registry+https://github.com/rust-lang/crates.io-index"
1117checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
1118dependencies = [
1119 "icu_normalizer",
1120 "icu_properties",
1121]
1122
1123[[package]]
1124name = "indexmap"
1125version = "2.14.0"
1126source = "registry+https://github.com/rust-lang/crates.io-index"
1127checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1128dependencies = [
1129 "equivalent",
1130 "hashbrown 0.17.1",
1131 "serde",
1132 "serde_core",
1133]
1134
1135[[package]]
1136name = "inout"
1137version = "0.1.4"
1138source = "registry+https://github.com/rust-lang/crates.io-index"
1139checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1140dependencies = [
1141 "block-padding",
1142 "generic-array",
1143]
1144
1145[[package]]
1146name = "instant"
1147version = "0.1.13"
1148source = "registry+https://github.com/rust-lang/crates.io-index"
1149checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
1150dependencies = [
1151 "cfg-if",
1152 "js-sys",
1153 "wasm-bindgen",
1154 "web-sys",
1155]
1156
1157[[package]]
1158name = "ipnet"
1159version = "2.12.0"
1160source = "registry+https://github.com/rust-lang/crates.io-index"
1161checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1162
1163[[package]]
1164name = "is_terminal_polyfill"
1165version = "1.70.2"
1166source = "registry+https://github.com/rust-lang/crates.io-index"
1167checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1168
1169[[package]]
1170name = "itoa"
1171version = "1.0.18"
1172source = "registry+https://github.com/rust-lang/crates.io-index"
1173checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1174
1175[[package]]
1176name = "jobserver"
1177version = "0.1.34"
1178source = "registry+https://github.com/rust-lang/crates.io-index"
1179checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
1180dependencies = [
1181 "getrandom 0.3.4",
1182 "libc",
1183]
1184
1185[[package]]
1186name = "js-sys"
1187version = "0.3.99"
1188source = "registry+https://github.com/rust-lang/crates.io-index"
1189checksum = "142bc4740e452c1e57ade0cbc129f139c9093e354346f0872ef985f4f5cf5f11"
1190dependencies = [
1191 "cfg-if",
1192 "futures-util",
1193 "once_cell",
1194 "wasm-bindgen",
1195]
1196
1197[[package]]
1198name = "lazy_static"
1199version = "1.5.0"
1200source = "registry+https://github.com/rust-lang/crates.io-index"
1201checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1202dependencies = [
1203 "spin",
1204]
1205
1206[[package]]
1207name = "leb128fmt"
1208version = "0.1.0"
1209source = "registry+https://github.com/rust-lang/crates.io-index"
1210checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1211
1212[[package]]
1213name = "libc"
1214version = "0.2.186"
1215source = "registry+https://github.com/rust-lang/crates.io-index"
1216checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1217
1218[[package]]
1219name = "libgit2-sys"
1220version = "0.18.4+1.9.3"
1221source = "registry+https://github.com/rust-lang/crates.io-index"
1222checksum = "9b26f66f35e1871b22efcf7191564123d2a446ca0538cde63c23adfefa9b15b7"
1223dependencies = [
1224 "cc",
1225 "libc",
1226 "libssh2-sys",
1227 "libz-sys",
1228 "openssl-sys",
1229 "pkg-config",
1230]
1231
1232[[package]]
1233name = "libm"
1234version = "0.2.16"
1235source = "registry+https://github.com/rust-lang/crates.io-index"
1236checksum = "b6d2cec3eae94f9f509c767b45932f1ada8350c4bdb85af2fcab4a3c14807981"
1237
1238[[package]]
1239name = "libredox"
1240version = "0.1.16"
1241source = "registry+https://github.com/rust-lang/crates.io-index"
1242checksum = "e02f3bb43d335493c96bf3fd3a321600bf6bd07ed34bc64118e9293bdffea46c"
1243dependencies = [
1244 "bitflags",
1245 "libc",
1246 "plain",
1247 "redox_syscall 0.7.5",
1248]
1249
1250[[package]]
1251name = "libsqlite3-sys"
1252version = "0.30.1"
1253source = "registry+https://github.com/rust-lang/crates.io-index"
1254checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1255dependencies = [
1256 "cc",
1257 "pkg-config",
1258 "vcpkg",
1259]
1260
1261[[package]]
1262name = "libssh2-sys"
1263version = "0.3.1"
1264source = "registry+https://github.com/rust-lang/crates.io-index"
1265checksum = "220e4f05ad4a218192533b300327f5150e809b54c4ec83b5a1d91833601811b9"
1266dependencies = [
1267 "cc",
1268 "libc",
1269 "libz-sys",
1270 "openssl-sys",
1271 "pkg-config",
1272 "vcpkg",
1273]
1274
1275[[package]]
1276name = "libz-sys"
1277version = "1.1.28"
1278source = "registry+https://github.com/rust-lang/crates.io-index"
1279checksum = "fc3a226e576f50782b3305c5ccf458698f92798987f551c6a02efe8276721e22"
1280dependencies = [
1281 "cc",
1282 "libc",
1283 "pkg-config",
1284 "vcpkg",
1285]
1286
1287[[package]]
1288name = "linux-raw-sys"
1289version = "0.12.1"
1290source = "registry+https://github.com/rust-lang/crates.io-index"
1291checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1292
1293[[package]]
1294name = "litemap"
1295version = "0.8.2"
1296source = "registry+https://github.com/rust-lang/crates.io-index"
1297checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1298
1299[[package]]
1300name = "lock_api"
1301version = "0.4.14"
1302source = "registry+https://github.com/rust-lang/crates.io-index"
1303checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1304dependencies = [
1305 "scopeguard",
1306]
1307
1308[[package]]
1309name = "log"
1310version = "0.4.30"
1311source = "registry+https://github.com/rust-lang/crates.io-index"
1312checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
1313
1314[[package]]
1315name = "matchers"
1316version = "0.2.0"
1317source = "registry+https://github.com/rust-lang/crates.io-index"
1318checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1319dependencies = [
1320 "regex-automata",
1321]
1322
1323[[package]]
1324name = "md-5"
1325version = "0.10.6"
1326source = "registry+https://github.com/rust-lang/crates.io-index"
1327checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1328dependencies = [
1329 "cfg-if",
1330 "digest",
1331]
1332
1333[[package]]
1334name = "memchr"
1335version = "2.8.0"
1336source = "registry+https://github.com/rust-lang/crates.io-index"
1337checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
1338
1339[[package]]
1340name = "mime"
1341version = "0.3.17"
1342source = "registry+https://github.com/rust-lang/crates.io-index"
1343checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1344
1345[[package]]
1346name = "mio"
1347version = "1.2.0"
1348source = "registry+https://github.com/rust-lang/crates.io-index"
1349checksum = "50b7e5b27aa02a74bac8c3f23f448f8d87ff11f92d3aac1a6ed369ee08cc56c1"
1350dependencies = [
1351 "libc",
1352 "wasi",
1353 "windows-sys 0.61.2",
1354]
1355
1356[[package]]
1357name = "native-tls"
1358version = "0.2.18"
1359source = "registry+https://github.com/rust-lang/crates.io-index"
1360checksum = "465500e14ea162429d264d44189adc38b199b62b1c21eea9f69e4b73cb03bbf2"
1361dependencies = [
1362 "libc",
1363 "log",
1364 "openssl",
1365 "openssl-probe 0.2.1",
1366 "openssl-sys",
1367 "schannel",
1368 "security-framework",
1369 "security-framework-sys",
1370 "tempfile",
1371]
1372
1373[[package]]
1374name = "negentropy"
1375version = "0.3.1"
1376source = "registry+https://github.com/rust-lang/crates.io-index"
1377checksum = "e664971378a3987224f7a0e10059782035e89899ae403718ee07de85bec42afe"
1378
1379[[package]]
1380name = "negentropy"
1381version = "0.5.0"
1382source = "registry+https://github.com/rust-lang/crates.io-index"
1383checksum = "f0efe882e02d206d8d279c20eb40e03baf7cb5136a1476dc084a324fbc3ec42d"
1384
1385[[package]]
1386name = "nostr"
1387version = "0.39.0"
1388source = "registry+https://github.com/rust-lang/crates.io-index"
1389checksum = "d90b55eff1f0747d9e423972179672e1aacac3d3ccee4c1281147eaa90d6491e"
1390dependencies = [
1391 "base64",
1392 "bech32",
1393 "bip39",
1394 "bitcoin_hashes",
1395 "cbc",
1396 "chacha20",
1397 "chacha20poly1305",
1398 "getrandom 0.2.17",
1399 "instant",
1400 "scrypt",
1401 "secp256k1",
1402 "serde",
1403 "serde_json",
1404 "unicode-normalization",
1405 "url",
1406]
1407
1408[[package]]
1409name = "nostr-database"
1410version = "0.39.0"
1411source = "registry+https://github.com/rust-lang/crates.io-index"
1412checksum = "ce07b47c77b8e5a856727885fe0ae47b9aa53d8d853a2190dd479b5a0d6e4f52"
1413dependencies = [
1414 "nostr",
1415 "tokio",
1416]
1417
1418[[package]]
1419name = "nostr-relay-pool"
1420version = "0.39.0"
1421source = "registry+https://github.com/rust-lang/crates.io-index"
1422checksum = "211ac5bbdda1a8eec0c21814a838da832038767a5d354fe2fcc1ca438cae56fd"
1423dependencies = [
1424 "async-utility",
1425 "async-wsocket",
1426 "atomic-destructor",
1427 "negentropy 0.3.1",
1428 "negentropy 0.5.0",
1429 "nostr",
1430 "nostr-database",
1431 "tokio",
1432 "tracing",
1433]
1434
1435[[package]]
1436name = "nostr-sdk"
1437version = "0.39.0"
1438source = "registry+https://github.com/rust-lang/crates.io-index"
1439checksum = "5baca581deb810a88bb51c54d1d7980f4506a64a3e9a19270829b406e47adf31"
1440dependencies = [
1441 "async-utility",
1442 "nostr",
1443 "nostr-database",
1444 "nostr-relay-pool",
1445 "tokio",
1446 "tracing",
1447]
1448
1449[[package]]
1450name = "nu-ansi-term"
1451version = "0.50.3"
1452source = "registry+https://github.com/rust-lang/crates.io-index"
1453checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1454dependencies = [
1455 "windows-sys 0.61.2",
1456]
1457
1458[[package]]
1459name = "num-bigint-dig"
1460version = "0.8.6"
1461source = "registry+https://github.com/rust-lang/crates.io-index"
1462checksum = "e661dda6640fad38e827a6d4a310ff4763082116fe217f279885c97f511bb0b7"
1463dependencies = [
1464 "lazy_static",
1465 "libm",
1466 "num-integer",
1467 "num-iter",
1468 "num-traits",
1469 "rand 0.8.6",
1470 "smallvec",
1471 "zeroize",
1472]
1473
1474[[package]]
1475name = "num-integer"
1476version = "0.1.46"
1477source = "registry+https://github.com/rust-lang/crates.io-index"
1478checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1479dependencies = [
1480 "num-traits",
1481]
1482
1483[[package]]
1484name = "num-iter"
1485version = "0.1.45"
1486source = "registry+https://github.com/rust-lang/crates.io-index"
1487checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1488dependencies = [
1489 "autocfg",
1490 "num-integer",
1491 "num-traits",
1492]
1493
1494[[package]]
1495name = "num-traits"
1496version = "0.2.19"
1497source = "registry+https://github.com/rust-lang/crates.io-index"
1498checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1499dependencies = [
1500 "autocfg",
1501 "libm",
1502]
1503
1504[[package]]
1505name = "once_cell"
1506version = "1.21.4"
1507source = "registry+https://github.com/rust-lang/crates.io-index"
1508checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1509
1510[[package]]
1511name = "once_cell_polyfill"
1512version = "1.70.2"
1513source = "registry+https://github.com/rust-lang/crates.io-index"
1514checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1515
1516[[package]]
1517name = "opaque-debug"
1518version = "0.3.1"
1519source = "registry+https://github.com/rust-lang/crates.io-index"
1520checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1521
1522[[package]]
1523name = "openssl"
1524version = "0.10.80"
1525source = "registry+https://github.com/rust-lang/crates.io-index"
1526checksum = "a45fa2aa886c42762255da344f0a0d313e254066c46aad76f300c3d3da62d967"
1527dependencies = [
1528 "bitflags",
1529 "cfg-if",
1530 "foreign-types",
1531 "libc",
1532 "openssl-macros",
1533 "openssl-sys",
1534]
1535
1536[[package]]
1537name = "openssl-macros"
1538version = "0.1.1"
1539source = "registry+https://github.com/rust-lang/crates.io-index"
1540checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1541dependencies = [
1542 "proc-macro2",
1543 "quote",
1544 "syn",
1545]
1546
1547[[package]]
1548name = "openssl-probe"
1549version = "0.1.6"
1550source = "registry+https://github.com/rust-lang/crates.io-index"
1551checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1552
1553[[package]]
1554name = "openssl-probe"
1555version = "0.2.1"
1556source = "registry+https://github.com/rust-lang/crates.io-index"
1557checksum = "7c87def4c32ab89d880effc9e097653c8da5d6ef28e6b539d313baaacfbafcbe"
1558
1559[[package]]
1560name = "openssl-sys"
1561version = "0.9.116"
1562source = "registry+https://github.com/rust-lang/crates.io-index"
1563checksum = "f28a22dc7140cda5f096e5e7724a6962ca81a7f8bfd2979f9b18c11af56318c4"
1564dependencies = [
1565 "cc",
1566 "libc",
1567 "pkg-config",
1568 "vcpkg",
1569]
1570
1571[[package]]
1572name = "option-ext"
1573version = "0.2.0"
1574source = "registry+https://github.com/rust-lang/crates.io-index"
1575checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
1576
1577[[package]]
1578name = "parking"
1579version = "2.2.1"
1580source = "registry+https://github.com/rust-lang/crates.io-index"
1581checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1582
1583[[package]]
1584name = "parking_lot"
1585version = "0.12.5"
1586source = "registry+https://github.com/rust-lang/crates.io-index"
1587checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1588dependencies = [
1589 "lock_api",
1590 "parking_lot_core",
1591]
1592
1593[[package]]
1594name = "parking_lot_core"
1595version = "0.9.12"
1596source = "registry+https://github.com/rust-lang/crates.io-index"
1597checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1598dependencies = [
1599 "cfg-if",
1600 "libc",
1601 "redox_syscall 0.5.18",
1602 "smallvec",
1603 "windows-link",
1604]
1605
1606[[package]]
1607name = "password-hash"
1608version = "0.5.0"
1609source = "registry+https://github.com/rust-lang/crates.io-index"
1610checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
1611dependencies = [
1612 "base64ct",
1613 "rand_core 0.6.4",
1614 "subtle",
1615]
1616
1617[[package]]
1618name = "pbkdf2"
1619version = "0.12.2"
1620source = "registry+https://github.com/rust-lang/crates.io-index"
1621checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
1622dependencies = [
1623 "digest",
1624 "hmac",
1625]
1626
1627[[package]]
1628name = "pem-rfc7468"
1629version = "0.7.0"
1630source = "registry+https://github.com/rust-lang/crates.io-index"
1631checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1632dependencies = [
1633 "base64ct",
1634]
1635
1636[[package]]
1637name = "percent-encoding"
1638version = "2.3.2"
1639source = "registry+https://github.com/rust-lang/crates.io-index"
1640checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1641
1642[[package]]
1643name = "pin-project-lite"
1644version = "0.2.17"
1645source = "registry+https://github.com/rust-lang/crates.io-index"
1646checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1647
1648[[package]]
1649name = "pkcs1"
1650version = "0.7.5"
1651source = "registry+https://github.com/rust-lang/crates.io-index"
1652checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1653dependencies = [
1654 "der",
1655 "pkcs8",
1656 "spki",
1657]
1658
1659[[package]]
1660name = "pkcs8"
1661version = "0.10.2"
1662source = "registry+https://github.com/rust-lang/crates.io-index"
1663checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1664dependencies = [
1665 "der",
1666 "spki",
1667]
1668
1669[[package]]
1670name = "pkg-config"
1671version = "0.3.33"
1672source = "registry+https://github.com/rust-lang/crates.io-index"
1673checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1674
1675[[package]]
1676name = "plain"
1677version = "0.2.3"
1678source = "registry+https://github.com/rust-lang/crates.io-index"
1679checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
1680
1681[[package]]
1682name = "poly1305"
1683version = "0.8.0"
1684source = "registry+https://github.com/rust-lang/crates.io-index"
1685checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
1686dependencies = [
1687 "cpufeatures",
1688 "opaque-debug",
1689 "universal-hash",
1690]
1691
1692[[package]]
1693name = "potential_utf"
1694version = "0.1.5"
1695source = "registry+https://github.com/rust-lang/crates.io-index"
1696checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1697dependencies = [
1698 "zerovec",
1699]
1700
1701[[package]]
1702name = "ppv-lite86"
1703version = "0.2.21"
1704source = "registry+https://github.com/rust-lang/crates.io-index"
1705checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1706dependencies = [
1707 "zerocopy",
1708]
1709
1710[[package]]
1711name = "prettyplease"
1712version = "0.2.37"
1713source = "registry+https://github.com/rust-lang/crates.io-index"
1714checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1715dependencies = [
1716 "proc-macro2",
1717 "syn",
1718]
1719
1720[[package]]
1721name = "proc-macro2"
1722version = "1.0.106"
1723source = "registry+https://github.com/rust-lang/crates.io-index"
1724checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1725dependencies = [
1726 "unicode-ident",
1727]
1728
1729[[package]]
1730name = "quote"
1731version = "1.0.45"
1732source = "registry+https://github.com/rust-lang/crates.io-index"
1733checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1734dependencies = [
1735 "proc-macro2",
1736]
1737
1738[[package]]
1739name = "r-efi"
1740version = "5.3.0"
1741source = "registry+https://github.com/rust-lang/crates.io-index"
1742checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1743
1744[[package]]
1745name = "r-efi"
1746version = "6.0.0"
1747source = "registry+https://github.com/rust-lang/crates.io-index"
1748checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1749
1750[[package]]
1751name = "rand"
1752version = "0.8.6"
1753source = "registry+https://github.com/rust-lang/crates.io-index"
1754checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1755dependencies = [
1756 "libc",
1757 "rand_chacha 0.3.1",
1758 "rand_core 0.6.4",
1759]
1760
1761[[package]]
1762name = "rand"
1763version = "0.9.4"
1764source = "registry+https://github.com/rust-lang/crates.io-index"
1765checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1766dependencies = [
1767 "rand_chacha 0.9.0",
1768 "rand_core 0.9.5",
1769]
1770
1771[[package]]
1772name = "rand_chacha"
1773version = "0.3.1"
1774source = "registry+https://github.com/rust-lang/crates.io-index"
1775checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1776dependencies = [
1777 "ppv-lite86",
1778 "rand_core 0.6.4",
1779]
1780
1781[[package]]
1782name = "rand_chacha"
1783version = "0.9.0"
1784source = "registry+https://github.com/rust-lang/crates.io-index"
1785checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1786dependencies = [
1787 "ppv-lite86",
1788 "rand_core 0.9.5",
1789]
1790
1791[[package]]
1792name = "rand_core"
1793version = "0.6.4"
1794source = "registry+https://github.com/rust-lang/crates.io-index"
1795checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1796dependencies = [
1797 "getrandom 0.2.17",
1798]
1799
1800[[package]]
1801name = "rand_core"
1802version = "0.9.5"
1803source = "registry+https://github.com/rust-lang/crates.io-index"
1804checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1805dependencies = [
1806 "getrandom 0.3.4",
1807]
1808
1809[[package]]
1810name = "redox_syscall"
1811version = "0.5.18"
1812source = "registry+https://github.com/rust-lang/crates.io-index"
1813checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1814dependencies = [
1815 "bitflags",
1816]
1817
1818[[package]]
1819name = "redox_syscall"
1820version = "0.7.5"
1821source = "registry+https://github.com/rust-lang/crates.io-index"
1822checksum = "4666a1a60d8412eab19d94f6d13dcc9cea0a5ef4fdf6a5db306537413c661b1b"
1823dependencies = [
1824 "bitflags",
1825]
1826
1827[[package]]
1828name = "redox_users"
1829version = "0.5.2"
1830source = "registry+https://github.com/rust-lang/crates.io-index"
1831checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac"
1832dependencies = [
1833 "getrandom 0.2.17",
1834 "libredox",
1835 "thiserror 2.0.18",
1836]
1837
1838[[package]]
1839name = "regex-automata"
1840version = "0.4.14"
1841source = "registry+https://github.com/rust-lang/crates.io-index"
1842checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1843dependencies = [
1844 "aho-corasick",
1845 "memchr",
1846 "regex-syntax",
1847]
1848
1849[[package]]
1850name = "regex-syntax"
1851version = "0.8.10"
1852source = "registry+https://github.com/rust-lang/crates.io-index"
1853checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1854
1855[[package]]
1856name = "reqwest"
1857version = "0.12.28"
1858source = "registry+https://github.com/rust-lang/crates.io-index"
1859checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147"
1860dependencies = [
1861 "base64",
1862 "bytes",
1863 "encoding_rs",
1864 "futures-core",
1865 "h2",
1866 "http",
1867 "http-body",
1868 "http-body-util",
1869 "hyper",
1870 "hyper-rustls",
1871 "hyper-tls",
1872 "hyper-util",
1873 "js-sys",
1874 "log",
1875 "mime",
1876 "native-tls",
1877 "percent-encoding",
1878 "pin-project-lite",
1879 "rustls-pki-types",
1880 "serde",
1881 "serde_json",
1882 "serde_urlencoded",
1883 "sync_wrapper",
1884 "tokio",
1885 "tokio-native-tls",
1886 "tower",
1887 "tower-http",
1888 "tower-service",
1889 "url",
1890 "wasm-bindgen",
1891 "wasm-bindgen-futures",
1892 "web-sys",
1893]
1894
1895[[package]]
1896name = "ring"
1897version = "0.17.14"
1898source = "registry+https://github.com/rust-lang/crates.io-index"
1899checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1900dependencies = [
1901 "cc",
1902 "cfg-if",
1903 "getrandom 0.2.17",
1904 "libc",
1905 "untrusted",
1906 "windows-sys 0.52.0",
1907]
1908
1909[[package]]
1910name = "rsa"
1911version = "0.9.10"
1912source = "registry+https://github.com/rust-lang/crates.io-index"
1913checksum = "b8573f03f5883dcaebdfcf4725caa1ecb9c15b2ef50c43a07b816e06799bb12d"
1914dependencies = [
1915 "const-oid",
1916 "digest",
1917 "num-bigint-dig",
1918 "num-integer",
1919 "num-traits",
1920 "pkcs1",
1921 "pkcs8",
1922 "rand_core 0.6.4",
1923 "signature",
1924 "spki",
1925 "subtle",
1926 "zeroize",
1927]
1928
1929[[package]]
1930name = "rustix"
1931version = "1.1.4"
1932source = "registry+https://github.com/rust-lang/crates.io-index"
1933checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1934dependencies = [
1935 "bitflags",
1936 "errno",
1937 "libc",
1938 "linux-raw-sys",
1939 "windows-sys 0.61.2",
1940]
1941
1942[[package]]
1943name = "rustls"
1944version = "0.23.40"
1945source = "registry+https://github.com/rust-lang/crates.io-index"
1946checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1947dependencies = [
1948 "once_cell",
1949 "ring",
1950 "rustls-pki-types",
1951 "rustls-webpki",
1952 "subtle",
1953 "zeroize",
1954]
1955
1956[[package]]
1957name = "rustls-pki-types"
1958version = "1.14.1"
1959source = "registry+https://github.com/rust-lang/crates.io-index"
1960checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1961dependencies = [
1962 "zeroize",
1963]
1964
1965[[package]]
1966name = "rustls-webpki"
1967version = "0.103.13"
1968source = "registry+https://github.com/rust-lang/crates.io-index"
1969checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1970dependencies = [
1971 "ring",
1972 "rustls-pki-types",
1973 "untrusted",
1974]
1975
1976[[package]]
1977name = "rustversion"
1978version = "1.0.22"
1979source = "registry+https://github.com/rust-lang/crates.io-index"
1980checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
1981
1982[[package]]
1983name = "ryu"
1984version = "1.0.23"
1985source = "registry+https://github.com/rust-lang/crates.io-index"
1986checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
1987
1988[[package]]
1989name = "salsa20"
1990version = "0.10.2"
1991source = "registry+https://github.com/rust-lang/crates.io-index"
1992checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
1993dependencies = [
1994 "cipher",
1995]
1996
1997[[package]]
1998name = "schannel"
1999version = "0.1.29"
2000source = "registry+https://github.com/rust-lang/crates.io-index"
2001checksum = "91c1b7e4904c873ef0710c1f407dde2e6287de2bebc1bbbf7d430bb7cbffd939"
2002dependencies = [
2003 "windows-sys 0.61.2",
2004]
2005
2006[[package]]
2007name = "scopeguard"
2008version = "1.2.0"
2009source = "registry+https://github.com/rust-lang/crates.io-index"
2010checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2011
2012[[package]]
2013name = "scrypt"
2014version = "0.11.0"
2015source = "registry+https://github.com/rust-lang/crates.io-index"
2016checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
2017dependencies = [
2018 "password-hash",
2019 "pbkdf2",
2020 "salsa20",
2021 "sha2",
2022]
2023
2024[[package]]
2025name = "secp256k1"
2026version = "0.29.1"
2027source = "registry+https://github.com/rust-lang/crates.io-index"
2028checksum = "9465315bc9d4566e1724f0fffcbcc446268cb522e60f9a27bcded6b19c108113"
2029dependencies = [
2030 "rand 0.8.6",
2031 "secp256k1-sys",
2032 "serde",
2033]
2034
2035[[package]]
2036name = "secp256k1-sys"
2037version = "0.10.1"
2038source = "registry+https://github.com/rust-lang/crates.io-index"
2039checksum = "d4387882333d3aa8cb20530a17c69a3752e97837832f34f6dccc760e715001d9"
2040dependencies = [
2041 "cc",
2042]
2043
2044[[package]]
2045name = "security-framework"
2046version = "3.7.0"
2047source = "registry+https://github.com/rust-lang/crates.io-index"
2048checksum = "b7f4bc775c73d9a02cde8bf7b2ec4c9d12743edf609006c7facc23998404cd1d"
2049dependencies = [
2050 "bitflags",
2051 "core-foundation 0.10.1",
2052 "core-foundation-sys",
2053 "libc",
2054 "security-framework-sys",
2055]
2056
2057[[package]]
2058name = "security-framework-sys"
2059version = "2.17.0"
2060source = "registry+https://github.com/rust-lang/crates.io-index"
2061checksum = "6ce2691df843ecc5d231c0b14ece2acc3efb62c0a398c7e1d875f3983ce020e3"
2062dependencies = [
2063 "core-foundation-sys",
2064 "libc",
2065]
2066
2067[[package]]
2068name = "semver"
2069version = "1.0.28"
2070source = "registry+https://github.com/rust-lang/crates.io-index"
2071checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2072
2073[[package]]
2074name = "serde"
2075version = "1.0.228"
2076source = "registry+https://github.com/rust-lang/crates.io-index"
2077checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2078dependencies = [
2079 "serde_core",
2080 "serde_derive",
2081]
2082
2083[[package]]
2084name = "serde_core"
2085version = "1.0.228"
2086source = "registry+https://github.com/rust-lang/crates.io-index"
2087checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2088dependencies = [
2089 "serde_derive",
2090]
2091
2092[[package]]
2093name = "serde_derive"
2094version = "1.0.228"
2095source = "registry+https://github.com/rust-lang/crates.io-index"
2096checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2097dependencies = [
2098 "proc-macro2",
2099 "quote",
2100 "syn",
2101]
2102
2103[[package]]
2104name = "serde_json"
2105version = "1.0.150"
2106source = "registry+https://github.com/rust-lang/crates.io-index"
2107checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2108dependencies = [
2109 "itoa",
2110 "memchr",
2111 "serde",
2112 "serde_core",
2113 "zmij",
2114]
2115
2116[[package]]
2117name = "serde_spanned"
2118version = "0.6.9"
2119source = "registry+https://github.com/rust-lang/crates.io-index"
2120checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
2121dependencies = [
2122 "serde",
2123]
2124
2125[[package]]
2126name = "serde_urlencoded"
2127version = "0.7.1"
2128source = "registry+https://github.com/rust-lang/crates.io-index"
2129checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2130dependencies = [
2131 "form_urlencoded",
2132 "itoa",
2133 "ryu",
2134 "serde",
2135]
2136
2137[[package]]
2138name = "sha1"
2139version = "0.10.6"
2140source = "registry+https://github.com/rust-lang/crates.io-index"
2141checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2142dependencies = [
2143 "cfg-if",
2144 "cpufeatures",
2145 "digest",
2146]
2147
2148[[package]]
2149name = "sha2"
2150version = "0.10.9"
2151source = "registry+https://github.com/rust-lang/crates.io-index"
2152checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2153dependencies = [
2154 "cfg-if",
2155 "cpufeatures",
2156 "digest",
2157]
2158
2159[[package]]
2160name = "sharded-slab"
2161version = "0.1.7"
2162source = "registry+https://github.com/rust-lang/crates.io-index"
2163checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2164dependencies = [
2165 "lazy_static",
2166]
2167
2168[[package]]
2169name = "shlex"
2170version = "1.3.0"
2171source = "registry+https://github.com/rust-lang/crates.io-index"
2172checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2173
2174[[package]]
2175name = "signal-hook-registry"
2176version = "1.4.8"
2177source = "registry+https://github.com/rust-lang/crates.io-index"
2178checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2179dependencies = [
2180 "errno",
2181 "libc",
2182]
2183
2184[[package]]
2185name = "signature"
2186version = "2.2.0"
2187source = "registry+https://github.com/rust-lang/crates.io-index"
2188checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2189dependencies = [
2190 "digest",
2191 "rand_core 0.6.4",
2192]
2193
2194[[package]]
2195name = "slab"
2196version = "0.4.12"
2197source = "registry+https://github.com/rust-lang/crates.io-index"
2198checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2199
2200[[package]]
2201name = "smallvec"
2202version = "1.15.1"
2203source = "registry+https://github.com/rust-lang/crates.io-index"
2204checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2205dependencies = [
2206 "serde",
2207]
2208
2209[[package]]
2210name = "socket2"
2211version = "0.6.3"
2212source = "registry+https://github.com/rust-lang/crates.io-index"
2213checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
2214dependencies = [
2215 "libc",
2216 "windows-sys 0.61.2",
2217]
2218
2219[[package]]
2220name = "spin"
2221version = "0.9.8"
2222source = "registry+https://github.com/rust-lang/crates.io-index"
2223checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2224dependencies = [
2225 "lock_api",
2226]
2227
2228[[package]]
2229name = "spki"
2230version = "0.7.3"
2231source = "registry+https://github.com/rust-lang/crates.io-index"
2232checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2233dependencies = [
2234 "base64ct",
2235 "der",
2236]
2237
2238[[package]]
2239name = "sqlx"
2240version = "0.8.6"
2241source = "registry+https://github.com/rust-lang/crates.io-index"
2242checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
2243dependencies = [
2244 "sqlx-core",
2245 "sqlx-macros",
2246 "sqlx-mysql",
2247 "sqlx-postgres",
2248 "sqlx-sqlite",
2249]
2250
2251[[package]]
2252name = "sqlx-core"
2253version = "0.8.6"
2254source = "registry+https://github.com/rust-lang/crates.io-index"
2255checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
2256dependencies = [
2257 "base64",
2258 "bytes",
2259 "crc",
2260 "crossbeam-queue",
2261 "either",
2262 "event-listener",
2263 "futures-core",
2264 "futures-intrusive",
2265 "futures-io",
2266 "futures-util",
2267 "hashbrown 0.15.5",
2268 "hashlink",
2269 "indexmap",
2270 "log",
2271 "memchr",
2272 "once_cell",
2273 "percent-encoding",
2274 "serde",
2275 "serde_json",
2276 "sha2",
2277 "smallvec",
2278 "thiserror 2.0.18",
2279 "tokio",
2280 "tokio-stream",
2281 "tracing",
2282 "url",
2283]
2284
2285[[package]]
2286name = "sqlx-macros"
2287version = "0.8.6"
2288source = "registry+https://github.com/rust-lang/crates.io-index"
2289checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
2290dependencies = [
2291 "proc-macro2",
2292 "quote",
2293 "sqlx-core",
2294 "sqlx-macros-core",
2295 "syn",
2296]
2297
2298[[package]]
2299name = "sqlx-macros-core"
2300version = "0.8.6"
2301source = "registry+https://github.com/rust-lang/crates.io-index"
2302checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
2303dependencies = [
2304 "dotenvy",
2305 "either",
2306 "heck",
2307 "hex",
2308 "once_cell",
2309 "proc-macro2",
2310 "quote",
2311 "serde",
2312 "serde_json",
2313 "sha2",
2314 "sqlx-core",
2315 "sqlx-mysql",
2316 "sqlx-postgres",
2317 "sqlx-sqlite",
2318 "syn",
2319 "tokio",
2320 "url",
2321]
2322
2323[[package]]
2324name = "sqlx-mysql"
2325version = "0.8.6"
2326source = "registry+https://github.com/rust-lang/crates.io-index"
2327checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
2328dependencies = [
2329 "atoi",
2330 "base64",
2331 "bitflags",
2332 "byteorder",
2333 "bytes",
2334 "crc",
2335 "digest",
2336 "dotenvy",
2337 "either",
2338 "futures-channel",
2339 "futures-core",
2340 "futures-io",
2341 "futures-util",
2342 "generic-array",
2343 "hex",
2344 "hkdf",
2345 "hmac",
2346 "itoa",
2347 "log",
2348 "md-5",
2349 "memchr",
2350 "once_cell",
2351 "percent-encoding",
2352 "rand 0.8.6",
2353 "rsa",
2354 "serde",
2355 "sha1",
2356 "sha2",
2357 "smallvec",
2358 "sqlx-core",
2359 "stringprep",
2360 "thiserror 2.0.18",
2361 "tracing",
2362 "whoami",
2363]
2364
2365[[package]]
2366name = "sqlx-postgres"
2367version = "0.8.6"
2368source = "registry+https://github.com/rust-lang/crates.io-index"
2369checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
2370dependencies = [
2371 "atoi",
2372 "base64",
2373 "bitflags",
2374 "byteorder",
2375 "crc",
2376 "dotenvy",
2377 "etcetera",
2378 "futures-channel",
2379 "futures-core",
2380 "futures-util",
2381 "hex",
2382 "hkdf",
2383 "hmac",
2384 "home",
2385 "itoa",
2386 "log",
2387 "md-5",
2388 "memchr",
2389 "once_cell",
2390 "rand 0.8.6",
2391 "serde",
2392 "serde_json",
2393 "sha2",
2394 "smallvec",
2395 "sqlx-core",
2396 "stringprep",
2397 "thiserror 2.0.18",
2398 "tracing",
2399 "whoami",
2400]
2401
2402[[package]]
2403name = "sqlx-sqlite"
2404version = "0.8.6"
2405source = "registry+https://github.com/rust-lang/crates.io-index"
2406checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
2407dependencies = [
2408 "atoi",
2409 "flume",
2410 "futures-channel",
2411 "futures-core",
2412 "futures-executor",
2413 "futures-intrusive",
2414 "futures-util",
2415 "libsqlite3-sys",
2416 "log",
2417 "percent-encoding",
2418 "serde",
2419 "serde_urlencoded",
2420 "sqlx-core",
2421 "thiserror 2.0.18",
2422 "tracing",
2423 "url",
2424]
2425
2426[[package]]
2427name = "stable_deref_trait"
2428version = "1.2.1"
2429source = "registry+https://github.com/rust-lang/crates.io-index"
2430checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2431
2432[[package]]
2433name = "stringprep"
2434version = "0.1.5"
2435source = "registry+https://github.com/rust-lang/crates.io-index"
2436checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2437dependencies = [
2438 "unicode-bidi",
2439 "unicode-normalization",
2440 "unicode-properties",
2441]
2442
2443[[package]]
2444name = "strsim"
2445version = "0.11.1"
2446source = "registry+https://github.com/rust-lang/crates.io-index"
2447checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2448
2449[[package]]
2450name = "subtle"
2451version = "2.6.1"
2452source = "registry+https://github.com/rust-lang/crates.io-index"
2453checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2454
2455[[package]]
2456name = "syn"
2457version = "2.0.117"
2458source = "registry+https://github.com/rust-lang/crates.io-index"
2459checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2460dependencies = [
2461 "proc-macro2",
2462 "quote",
2463 "unicode-ident",
2464]
2465
2466[[package]]
2467name = "sync_wrapper"
2468version = "1.0.2"
2469source = "registry+https://github.com/rust-lang/crates.io-index"
2470checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2471dependencies = [
2472 "futures-core",
2473]
2474
2475[[package]]
2476name = "synstructure"
2477version = "0.13.2"
2478source = "registry+https://github.com/rust-lang/crates.io-index"
2479checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2480dependencies = [
2481 "proc-macro2",
2482 "quote",
2483 "syn",
2484]
2485
2486[[package]]
2487name = "system-configuration"
2488version = "0.7.0"
2489source = "registry+https://github.com/rust-lang/crates.io-index"
2490checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2491dependencies = [
2492 "bitflags",
2493 "core-foundation 0.9.4",
2494 "system-configuration-sys",
2495]
2496
2497[[package]]
2498name = "system-configuration-sys"
2499version = "0.6.0"
2500source = "registry+https://github.com/rust-lang/crates.io-index"
2501checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2502dependencies = [
2503 "core-foundation-sys",
2504 "libc",
2505]
2506
2507[[package]]
2508name = "tempfile"
2509version = "3.27.0"
2510source = "registry+https://github.com/rust-lang/crates.io-index"
2511checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2512dependencies = [
2513 "fastrand",
2514 "getrandom 0.4.2",
2515 "once_cell",
2516 "rustix",
2517 "windows-sys 0.61.2",
2518]
2519
2520[[package]]
2521name = "thiserror"
2522version = "1.0.69"
2523source = "registry+https://github.com/rust-lang/crates.io-index"
2524checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2525dependencies = [
2526 "thiserror-impl 1.0.69",
2527]
2528
2529[[package]]
2530name = "thiserror"
2531version = "2.0.18"
2532source = "registry+https://github.com/rust-lang/crates.io-index"
2533checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2534dependencies = [
2535 "thiserror-impl 2.0.18",
2536]
2537
2538[[package]]
2539name = "thiserror-impl"
2540version = "1.0.69"
2541source = "registry+https://github.com/rust-lang/crates.io-index"
2542checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2543dependencies = [
2544 "proc-macro2",
2545 "quote",
2546 "syn",
2547]
2548
2549[[package]]
2550name = "thiserror-impl"
2551version = "2.0.18"
2552source = "registry+https://github.com/rust-lang/crates.io-index"
2553checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2554dependencies = [
2555 "proc-macro2",
2556 "quote",
2557 "syn",
2558]
2559
2560[[package]]
2561name = "thread_local"
2562version = "1.1.9"
2563source = "registry+https://github.com/rust-lang/crates.io-index"
2564checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2565dependencies = [
2566 "cfg-if",
2567]
2568
2569[[package]]
2570name = "tinystr"
2571version = "0.8.3"
2572source = "registry+https://github.com/rust-lang/crates.io-index"
2573checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2574dependencies = [
2575 "displaydoc",
2576 "zerovec",
2577]
2578
2579[[package]]
2580name = "tinyvec"
2581version = "1.11.0"
2582source = "registry+https://github.com/rust-lang/crates.io-index"
2583checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2584dependencies = [
2585 "tinyvec_macros",
2586]
2587
2588[[package]]
2589name = "tinyvec_macros"
2590version = "0.1.1"
2591source = "registry+https://github.com/rust-lang/crates.io-index"
2592checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2593
2594[[package]]
2595name = "tokio"
2596version = "1.52.3"
2597source = "registry+https://github.com/rust-lang/crates.io-index"
2598checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2599dependencies = [
2600 "bytes",
2601 "libc",
2602 "mio",
2603 "parking_lot",
2604 "pin-project-lite",
2605 "signal-hook-registry",
2606 "socket2",
2607 "tokio-macros",
2608 "windows-sys 0.61.2",
2609]
2610
2611[[package]]
2612name = "tokio-macros"
2613version = "2.7.0"
2614source = "registry+https://github.com/rust-lang/crates.io-index"
2615checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2616dependencies = [
2617 "proc-macro2",
2618 "quote",
2619 "syn",
2620]
2621
2622[[package]]
2623name = "tokio-native-tls"
2624version = "0.3.1"
2625source = "registry+https://github.com/rust-lang/crates.io-index"
2626checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2627dependencies = [
2628 "native-tls",
2629 "tokio",
2630]
2631
2632[[package]]
2633name = "tokio-rustls"
2634version = "0.26.4"
2635source = "registry+https://github.com/rust-lang/crates.io-index"
2636checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2637dependencies = [
2638 "rustls",
2639 "tokio",
2640]
2641
2642[[package]]
2643name = "tokio-socks"
2644version = "0.5.2"
2645source = "registry+https://github.com/rust-lang/crates.io-index"
2646checksum = "0d4770b8024672c1101b3f6733eab95b18007dbe0847a8afe341fcf79e06043f"
2647dependencies = [
2648 "either",
2649 "futures-util",
2650 "thiserror 1.0.69",
2651 "tokio",
2652]
2653
2654[[package]]
2655name = "tokio-stream"
2656version = "0.1.18"
2657source = "registry+https://github.com/rust-lang/crates.io-index"
2658checksum = "32da49809aab5c3bc678af03902d4ccddea2a87d028d86392a4b1560c6906c70"
2659dependencies = [
2660 "futures-core",
2661 "pin-project-lite",
2662 "tokio",
2663]
2664
2665[[package]]
2666name = "tokio-tungstenite"
2667version = "0.26.2"
2668source = "registry+https://github.com/rust-lang/crates.io-index"
2669checksum = "7a9daff607c6d2bf6c16fd681ccb7eecc83e4e2cdc1ca067ffaadfca5de7f084"
2670dependencies = [
2671 "futures-util",
2672 "log",
2673 "rustls",
2674 "rustls-pki-types",
2675 "tokio",
2676 "tokio-rustls",
2677 "tungstenite",
2678 "webpki-roots 0.26.11",
2679]
2680
2681[[package]]
2682name = "tokio-util"
2683version = "0.7.18"
2684source = "registry+https://github.com/rust-lang/crates.io-index"
2685checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2686dependencies = [
2687 "bytes",
2688 "futures-core",
2689 "futures-sink",
2690 "pin-project-lite",
2691 "tokio",
2692]
2693
2694[[package]]
2695name = "toml"
2696version = "0.8.23"
2697source = "registry+https://github.com/rust-lang/crates.io-index"
2698checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
2699dependencies = [
2700 "serde",
2701 "serde_spanned",
2702 "toml_datetime",
2703 "toml_edit",
2704]
2705
2706[[package]]
2707name = "toml_datetime"
2708version = "0.6.11"
2709source = "registry+https://github.com/rust-lang/crates.io-index"
2710checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
2711dependencies = [
2712 "serde",
2713]
2714
2715[[package]]
2716name = "toml_edit"
2717version = "0.22.27"
2718source = "registry+https://github.com/rust-lang/crates.io-index"
2719checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
2720dependencies = [
2721 "indexmap",
2722 "serde",
2723 "serde_spanned",
2724 "toml_datetime",
2725 "toml_write",
2726 "winnow",
2727]
2728
2729[[package]]
2730name = "toml_write"
2731version = "0.1.2"
2732source = "registry+https://github.com/rust-lang/crates.io-index"
2733checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
2734
2735[[package]]
2736name = "tower"
2737version = "0.5.3"
2738source = "registry+https://github.com/rust-lang/crates.io-index"
2739checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2740dependencies = [
2741 "futures-core",
2742 "futures-util",
2743 "pin-project-lite",
2744 "sync_wrapper",
2745 "tokio",
2746 "tower-layer",
2747 "tower-service",
2748]
2749
2750[[package]]
2751name = "tower-http"
2752version = "0.6.11"
2753source = "registry+https://github.com/rust-lang/crates.io-index"
2754checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840"
2755dependencies = [
2756 "bitflags",
2757 "bytes",
2758 "futures-util",
2759 "http",
2760 "http-body",
2761 "pin-project-lite",
2762 "tower",
2763 "tower-layer",
2764 "tower-service",
2765 "url",
2766]
2767
2768[[package]]
2769name = "tower-layer"
2770version = "0.3.3"
2771source = "registry+https://github.com/rust-lang/crates.io-index"
2772checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2773
2774[[package]]
2775name = "tower-service"
2776version = "0.3.3"
2777source = "registry+https://github.com/rust-lang/crates.io-index"
2778checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2779
2780[[package]]
2781name = "tracing"
2782version = "0.1.44"
2783source = "registry+https://github.com/rust-lang/crates.io-index"
2784checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2785dependencies = [
2786 "log",
2787 "pin-project-lite",
2788 "tracing-attributes",
2789 "tracing-core",
2790]
2791
2792[[package]]
2793name = "tracing-attributes"
2794version = "0.1.31"
2795source = "registry+https://github.com/rust-lang/crates.io-index"
2796checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2797dependencies = [
2798 "proc-macro2",
2799 "quote",
2800 "syn",
2801]
2802
2803[[package]]
2804name = "tracing-core"
2805version = "0.1.36"
2806source = "registry+https://github.com/rust-lang/crates.io-index"
2807checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2808dependencies = [
2809 "once_cell",
2810 "valuable",
2811]
2812
2813[[package]]
2814name = "tracing-log"
2815version = "0.2.0"
2816source = "registry+https://github.com/rust-lang/crates.io-index"
2817checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2818dependencies = [
2819 "log",
2820 "once_cell",
2821 "tracing-core",
2822]
2823
2824[[package]]
2825name = "tracing-serde"
2826version = "0.2.0"
2827source = "registry+https://github.com/rust-lang/crates.io-index"
2828checksum = "704b1aeb7be0d0a84fc9828cae51dab5970fee5088f83d1dd7ee6f6246fc6ff1"
2829dependencies = [
2830 "serde",
2831 "tracing-core",
2832]
2833
2834[[package]]
2835name = "tracing-subscriber"
2836version = "0.3.23"
2837source = "registry+https://github.com/rust-lang/crates.io-index"
2838checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2839dependencies = [
2840 "matchers",
2841 "nu-ansi-term",
2842 "once_cell",
2843 "regex-automata",
2844 "serde",
2845 "serde_json",
2846 "sharded-slab",
2847 "smallvec",
2848 "thread_local",
2849 "tracing",
2850 "tracing-core",
2851 "tracing-log",
2852 "tracing-serde",
2853]
2854
2855[[package]]
2856name = "try-lock"
2857version = "0.2.5"
2858source = "registry+https://github.com/rust-lang/crates.io-index"
2859checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2860
2861[[package]]
2862name = "tungstenite"
2863version = "0.26.2"
2864source = "registry+https://github.com/rust-lang/crates.io-index"
2865checksum = "4793cb5e56680ecbb1d843515b23b6de9a75eb04b66643e256a396d43be33c13"
2866dependencies = [
2867 "bytes",
2868 "data-encoding",
2869 "http",
2870 "httparse",
2871 "log",
2872 "rand 0.9.4",
2873 "rustls",
2874 "rustls-pki-types",
2875 "sha1",
2876 "thiserror 2.0.18",
2877 "utf-8",
2878]
2879
2880[[package]]
2881name = "typenum"
2882version = "1.20.0"
2883source = "registry+https://github.com/rust-lang/crates.io-index"
2884checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
2885
2886[[package]]
2887name = "unicode-bidi"
2888version = "0.3.18"
2889source = "registry+https://github.com/rust-lang/crates.io-index"
2890checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2891
2892[[package]]
2893name = "unicode-ident"
2894version = "1.0.24"
2895source = "registry+https://github.com/rust-lang/crates.io-index"
2896checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2897
2898[[package]]
2899name = "unicode-normalization"
2900version = "0.1.25"
2901source = "registry+https://github.com/rust-lang/crates.io-index"
2902checksum = "5fd4f6878c9cb28d874b009da9e8d183b5abc80117c40bbd187a1fde336be6e8"
2903dependencies = [
2904 "tinyvec",
2905]
2906
2907[[package]]
2908name = "unicode-properties"
2909version = "0.1.4"
2910source = "registry+https://github.com/rust-lang/crates.io-index"
2911checksum = "7df058c713841ad818f1dc5d3fd88063241cc61f49f5fbea4b951e8cf5a8d71d"
2912
2913[[package]]
2914name = "unicode-xid"
2915version = "0.2.6"
2916source = "registry+https://github.com/rust-lang/crates.io-index"
2917checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2918
2919[[package]]
2920name = "universal-hash"
2921version = "0.5.1"
2922source = "registry+https://github.com/rust-lang/crates.io-index"
2923checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2924dependencies = [
2925 "crypto-common",
2926 "subtle",
2927]
2928
2929[[package]]
2930name = "untrusted"
2931version = "0.9.0"
2932source = "registry+https://github.com/rust-lang/crates.io-index"
2933checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2934
2935[[package]]
2936name = "url"
2937version = "2.5.8"
2938source = "registry+https://github.com/rust-lang/crates.io-index"
2939checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2940dependencies = [
2941 "form_urlencoded",
2942 "idna",
2943 "percent-encoding",
2944 "serde",
2945 "serde_derive",
2946]
2947
2948[[package]]
2949name = "utf-8"
2950version = "0.7.6"
2951source = "registry+https://github.com/rust-lang/crates.io-index"
2952checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2953
2954[[package]]
2955name = "utf8_iter"
2956version = "1.0.4"
2957source = "registry+https://github.com/rust-lang/crates.io-index"
2958checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2959
2960[[package]]
2961name = "utf8parse"
2962version = "0.2.2"
2963source = "registry+https://github.com/rust-lang/crates.io-index"
2964checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2965
2966[[package]]
2967name = "valuable"
2968version = "0.1.1"
2969source = "registry+https://github.com/rust-lang/crates.io-index"
2970checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2971
2972[[package]]
2973name = "vcpkg"
2974version = "0.2.15"
2975source = "registry+https://github.com/rust-lang/crates.io-index"
2976checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2977
2978[[package]]
2979name = "version_check"
2980version = "0.9.5"
2981source = "registry+https://github.com/rust-lang/crates.io-index"
2982checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2983
2984[[package]]
2985name = "want"
2986version = "0.3.1"
2987source = "registry+https://github.com/rust-lang/crates.io-index"
2988checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2989dependencies = [
2990 "try-lock",
2991]
2992
2993[[package]]
2994name = "wasi"
2995version = "0.11.1+wasi-snapshot-preview1"
2996source = "registry+https://github.com/rust-lang/crates.io-index"
2997checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2998
2999[[package]]
3000name = "wasip2"
3001version = "1.0.3+wasi-0.2.9"
3002source = "registry+https://github.com/rust-lang/crates.io-index"
3003checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
3004dependencies = [
3005 "wit-bindgen 0.57.1",
3006]
3007
3008[[package]]
3009name = "wasip3"
3010version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
3011source = "registry+https://github.com/rust-lang/crates.io-index"
3012checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
3013dependencies = [
3014 "wit-bindgen 0.51.0",
3015]
3016
3017[[package]]
3018name = "wasite"
3019version = "0.1.0"
3020source = "registry+https://github.com/rust-lang/crates.io-index"
3021checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3022
3023[[package]]
3024name = "wasm-bindgen"
3025version = "0.2.122"
3026source = "registry+https://github.com/rust-lang/crates.io-index"
3027checksum = "3ed04576f974d2b2fba0f38c51dbc5518011e38c36bf1143164be765528fd409"
3028dependencies = [
3029 "cfg-if",
3030 "once_cell",
3031 "rustversion",
3032 "wasm-bindgen-macro",
3033 "wasm-bindgen-shared",
3034]
3035
3036[[package]]
3037name = "wasm-bindgen-futures"
3038version = "0.4.72"
3039source = "registry+https://github.com/rust-lang/crates.io-index"
3040checksum = "9473dbd2991ae90b6291c3c32c30c6187ac49aa32f9905d1cce280ec1e110b0f"
3041dependencies = [
3042 "js-sys",
3043 "wasm-bindgen",
3044]
3045
3046[[package]]
3047name = "wasm-bindgen-macro"
3048version = "0.2.122"
3049source = "registry+https://github.com/rust-lang/crates.io-index"
3050checksum = "916151b09da36bd82f6615cbf3a419e2f0ba23a03c6160e8e92eb6bd4aa1dec6"
3051dependencies = [
3052 "quote",
3053 "wasm-bindgen-macro-support",
3054]
3055
3056[[package]]
3057name = "wasm-bindgen-macro-support"
3058version = "0.2.122"
3059source = "registry+https://github.com/rust-lang/crates.io-index"
3060checksum = "299047362ccbfce148b67ab7e73349f77748e00c8296f9542adfad2ad82c5c5e"
3061dependencies = [
3062 "bumpalo",
3063 "proc-macro2",
3064 "quote",
3065 "syn",
3066 "wasm-bindgen-shared",
3067]
3068
3069[[package]]
3070name = "wasm-bindgen-shared"
3071version = "0.2.122"
3072source = "registry+https://github.com/rust-lang/crates.io-index"
3073checksum = "9a929b2c61f11ba3e9bc35b50c1f25cb38e0e892c0c231ae2b8cf78d5dad4437"
3074dependencies = [
3075 "unicode-ident",
3076]
3077
3078[[package]]
3079name = "wasm-encoder"
3080version = "0.244.0"
3081source = "registry+https://github.com/rust-lang/crates.io-index"
3082checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
3083dependencies = [
3084 "leb128fmt",
3085 "wasmparser",
3086]
3087
3088[[package]]
3089name = "wasm-metadata"
3090version = "0.244.0"
3091source = "registry+https://github.com/rust-lang/crates.io-index"
3092checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
3093dependencies = [
3094 "anyhow",
3095 "indexmap",
3096 "wasm-encoder",
3097 "wasmparser",
3098]
3099
3100[[package]]
3101name = "wasmparser"
3102version = "0.244.0"
3103source = "registry+https://github.com/rust-lang/crates.io-index"
3104checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
3105dependencies = [
3106 "bitflags",
3107 "hashbrown 0.15.5",
3108 "indexmap",
3109 "semver",
3110]
3111
3112[[package]]
3113name = "web-sys"
3114version = "0.3.99"
3115source = "registry+https://github.com/rust-lang/crates.io-index"
3116checksum = "6d621441cfc37b84979402712047321980c178f299193a3589d05b99e8763436"
3117dependencies = [
3118 "js-sys",
3119 "wasm-bindgen",
3120]
3121
3122[[package]]
3123name = "webpki-roots"
3124version = "0.26.11"
3125source = "registry+https://github.com/rust-lang/crates.io-index"
3126checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3127dependencies = [
3128 "webpki-roots 1.0.7",
3129]
3130
3131[[package]]
3132name = "webpki-roots"
3133version = "1.0.7"
3134source = "registry+https://github.com/rust-lang/crates.io-index"
3135checksum = "52f5ee44c96cf55f1b349600768e3ece3a8f26010c05265ab73f945bb1a2eb9d"
3136dependencies = [
3137 "rustls-pki-types",
3138]
3139
3140[[package]]
3141name = "whoami"
3142version = "1.6.1"
3143source = "registry+https://github.com/rust-lang/crates.io-index"
3144checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
3145dependencies = [
3146 "libredox",
3147 "wasite",
3148]
3149
3150[[package]]
3151name = "windows-link"
3152version = "0.2.1"
3153source = "registry+https://github.com/rust-lang/crates.io-index"
3154checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
3155
3156[[package]]
3157name = "windows-registry"
3158version = "0.6.1"
3159source = "registry+https://github.com/rust-lang/crates.io-index"
3160checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
3161dependencies = [
3162 "windows-link",
3163 "windows-result",
3164 "windows-strings",
3165]
3166
3167[[package]]
3168name = "windows-result"
3169version = "0.4.1"
3170source = "registry+https://github.com/rust-lang/crates.io-index"
3171checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
3172dependencies = [
3173 "windows-link",
3174]
3175
3176[[package]]
3177name = "windows-strings"
3178version = "0.5.1"
3179source = "registry+https://github.com/rust-lang/crates.io-index"
3180checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
3181dependencies = [
3182 "windows-link",
3183]
3184
3185[[package]]
3186name = "windows-sys"
3187version = "0.48.0"
3188source = "registry+https://github.com/rust-lang/crates.io-index"
3189checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3190dependencies = [
3191 "windows-targets 0.48.5",
3192]
3193
3194[[package]]
3195name = "windows-sys"
3196version = "0.52.0"
3197source = "registry+https://github.com/rust-lang/crates.io-index"
3198checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3199dependencies = [
3200 "windows-targets 0.52.6",
3201]
3202
3203[[package]]
3204name = "windows-sys"
3205version = "0.61.2"
3206source = "registry+https://github.com/rust-lang/crates.io-index"
3207checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
3208dependencies = [
3209 "windows-link",
3210]
3211
3212[[package]]
3213name = "windows-targets"
3214version = "0.48.5"
3215source = "registry+https://github.com/rust-lang/crates.io-index"
3216checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3217dependencies = [
3218 "windows_aarch64_gnullvm 0.48.5",
3219 "windows_aarch64_msvc 0.48.5",
3220 "windows_i686_gnu 0.48.5",
3221 "windows_i686_msvc 0.48.5",
3222 "windows_x86_64_gnu 0.48.5",
3223 "windows_x86_64_gnullvm 0.48.5",
3224 "windows_x86_64_msvc 0.48.5",
3225]
3226
3227[[package]]
3228name = "windows-targets"
3229version = "0.52.6"
3230source = "registry+https://github.com/rust-lang/crates.io-index"
3231checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3232dependencies = [
3233 "windows_aarch64_gnullvm 0.52.6",
3234 "windows_aarch64_msvc 0.52.6",
3235 "windows_i686_gnu 0.52.6",
3236 "windows_i686_gnullvm",
3237 "windows_i686_msvc 0.52.6",
3238 "windows_x86_64_gnu 0.52.6",
3239 "windows_x86_64_gnullvm 0.52.6",
3240 "windows_x86_64_msvc 0.52.6",
3241]
3242
3243[[package]]
3244name = "windows_aarch64_gnullvm"
3245version = "0.48.5"
3246source = "registry+https://github.com/rust-lang/crates.io-index"
3247checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3248
3249[[package]]
3250name = "windows_aarch64_gnullvm"
3251version = "0.52.6"
3252source = "registry+https://github.com/rust-lang/crates.io-index"
3253checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3254
3255[[package]]
3256name = "windows_aarch64_msvc"
3257version = "0.48.5"
3258source = "registry+https://github.com/rust-lang/crates.io-index"
3259checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3260
3261[[package]]
3262name = "windows_aarch64_msvc"
3263version = "0.52.6"
3264source = "registry+https://github.com/rust-lang/crates.io-index"
3265checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3266
3267[[package]]
3268name = "windows_i686_gnu"
3269version = "0.48.5"
3270source = "registry+https://github.com/rust-lang/crates.io-index"
3271checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3272
3273[[package]]
3274name = "windows_i686_gnu"
3275version = "0.52.6"
3276source = "registry+https://github.com/rust-lang/crates.io-index"
3277checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3278
3279[[package]]
3280name = "windows_i686_gnullvm"
3281version = "0.52.6"
3282source = "registry+https://github.com/rust-lang/crates.io-index"
3283checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3284
3285[[package]]
3286name = "windows_i686_msvc"
3287version = "0.48.5"
3288source = "registry+https://github.com/rust-lang/crates.io-index"
3289checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3290
3291[[package]]
3292name = "windows_i686_msvc"
3293version = "0.52.6"
3294source = "registry+https://github.com/rust-lang/crates.io-index"
3295checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3296
3297[[package]]
3298name = "windows_x86_64_gnu"
3299version = "0.48.5"
3300source = "registry+https://github.com/rust-lang/crates.io-index"
3301checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3302
3303[[package]]
3304name = "windows_x86_64_gnu"
3305version = "0.52.6"
3306source = "registry+https://github.com/rust-lang/crates.io-index"
3307checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3308
3309[[package]]
3310name = "windows_x86_64_gnullvm"
3311version = "0.48.5"
3312source = "registry+https://github.com/rust-lang/crates.io-index"
3313checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3314
3315[[package]]
3316name = "windows_x86_64_gnullvm"
3317version = "0.52.6"
3318source = "registry+https://github.com/rust-lang/crates.io-index"
3319checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3320
3321[[package]]
3322name = "windows_x86_64_msvc"
3323version = "0.48.5"
3324source = "registry+https://github.com/rust-lang/crates.io-index"
3325checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3326
3327[[package]]
3328name = "windows_x86_64_msvc"
3329version = "0.52.6"
3330source = "registry+https://github.com/rust-lang/crates.io-index"
3331checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3332
3333[[package]]
3334name = "winnow"
3335version = "0.7.15"
3336source = "registry+https://github.com/rust-lang/crates.io-index"
3337checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
3338dependencies = [
3339 "memchr",
3340]
3341
3342[[package]]
3343name = "wit-bindgen"
3344version = "0.51.0"
3345source = "registry+https://github.com/rust-lang/crates.io-index"
3346checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
3347dependencies = [
3348 "wit-bindgen-rust-macro",
3349]
3350
3351[[package]]
3352name = "wit-bindgen"
3353version = "0.57.1"
3354source = "registry+https://github.com/rust-lang/crates.io-index"
3355checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
3356
3357[[package]]
3358name = "wit-bindgen-core"
3359version = "0.51.0"
3360source = "registry+https://github.com/rust-lang/crates.io-index"
3361checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
3362dependencies = [
3363 "anyhow",
3364 "heck",
3365 "wit-parser",
3366]
3367
3368[[package]]
3369name = "wit-bindgen-rust"
3370version = "0.51.0"
3371source = "registry+https://github.com/rust-lang/crates.io-index"
3372checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
3373dependencies = [
3374 "anyhow",
3375 "heck",
3376 "indexmap",
3377 "prettyplease",
3378 "syn",
3379 "wasm-metadata",
3380 "wit-bindgen-core",
3381 "wit-component",
3382]
3383
3384[[package]]
3385name = "wit-bindgen-rust-macro"
3386version = "0.51.0"
3387source = "registry+https://github.com/rust-lang/crates.io-index"
3388checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3389dependencies = [
3390 "anyhow",
3391 "prettyplease",
3392 "proc-macro2",
3393 "quote",
3394 "syn",
3395 "wit-bindgen-core",
3396 "wit-bindgen-rust",
3397]
3398
3399[[package]]
3400name = "wit-component"
3401version = "0.244.0"
3402source = "registry+https://github.com/rust-lang/crates.io-index"
3403checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3404dependencies = [
3405 "anyhow",
3406 "bitflags",
3407 "indexmap",
3408 "log",
3409 "serde",
3410 "serde_derive",
3411 "serde_json",
3412 "wasm-encoder",
3413 "wasm-metadata",
3414 "wasmparser",
3415 "wit-parser",
3416]
3417
3418[[package]]
3419name = "wit-parser"
3420version = "0.244.0"
3421source = "registry+https://github.com/rust-lang/crates.io-index"
3422checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3423dependencies = [
3424 "anyhow",
3425 "id-arena",
3426 "indexmap",
3427 "log",
3428 "semver",
3429 "serde",
3430 "serde_derive",
3431 "serde_json",
3432 "unicode-xid",
3433 "wasmparser",
3434]
3435
3436[[package]]
3437name = "writeable"
3438version = "0.6.3"
3439source = "registry+https://github.com/rust-lang/crates.io-index"
3440checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3441
3442[[package]]
3443name = "yoke"
3444version = "0.8.2"
3445source = "registry+https://github.com/rust-lang/crates.io-index"
3446checksum = "abe8c5fda708d9ca3df187cae8bfb9ceda00dd96231bed36e445a1a48e66f9ca"
3447dependencies = [
3448 "stable_deref_trait",
3449 "yoke-derive",
3450 "zerofrom",
3451]
3452
3453[[package]]
3454name = "yoke-derive"
3455version = "0.8.2"
3456source = "registry+https://github.com/rust-lang/crates.io-index"
3457checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3458dependencies = [
3459 "proc-macro2",
3460 "quote",
3461 "syn",
3462 "synstructure",
3463]
3464
3465[[package]]
3466name = "zerocopy"
3467version = "0.8.48"
3468source = "registry+https://github.com/rust-lang/crates.io-index"
3469checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
3470dependencies = [
3471 "zerocopy-derive",
3472]
3473
3474[[package]]
3475name = "zerocopy-derive"
3476version = "0.8.48"
3477source = "registry+https://github.com/rust-lang/crates.io-index"
3478checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
3479dependencies = [
3480 "proc-macro2",
3481 "quote",
3482 "syn",
3483]
3484
3485[[package]]
3486name = "zerofrom"
3487version = "0.1.8"
3488source = "registry+https://github.com/rust-lang/crates.io-index"
3489checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3490dependencies = [
3491 "zerofrom-derive",
3492]
3493
3494[[package]]
3495name = "zerofrom-derive"
3496version = "0.1.7"
3497source = "registry+https://github.com/rust-lang/crates.io-index"
3498checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3499dependencies = [
3500 "proc-macro2",
3501 "quote",
3502 "syn",
3503 "synstructure",
3504]
3505
3506[[package]]
3507name = "zeroize"
3508version = "1.8.2"
3509source = "registry+https://github.com/rust-lang/crates.io-index"
3510checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3511
3512[[package]]
3513name = "zerotrie"
3514version = "0.2.4"
3515source = "registry+https://github.com/rust-lang/crates.io-index"
3516checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3517dependencies = [
3518 "displaydoc",
3519 "yoke",
3520 "zerofrom",
3521]
3522
3523[[package]]
3524name = "zerovec"
3525version = "0.11.6"
3526source = "registry+https://github.com/rust-lang/crates.io-index"
3527checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3528dependencies = [
3529 "yoke",
3530 "zerofrom",
3531 "zerovec-derive",
3532]
3533
3534[[package]]
3535name = "zerovec-derive"
3536version = "0.11.3"
3537source = "registry+https://github.com/rust-lang/crates.io-index"
3538checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3539dependencies = [
3540 "proc-macro2",
3541 "quote",
3542 "syn",
3543]
3544
3545[[package]]
3546name = "zmij"
3547version = "1.0.21"
3548source = "registry+https://github.com/rust-lang/crates.io-index"
3549checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"