Proof of concept mechanical port of ircnet/ircd to Rust as part of a bit about C being insecure for network services
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "ahash"
7version = "0.8.12"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
10dependencies = [
11 "cfg-if",
12 "once_cell",
13 "version_check",
14 "zerocopy",
15]
16
17[[package]]
18name = "aho-corasick"
19version = "1.1.4"
20source = "registry+https://github.com/rust-lang/crates.io-index"
21checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
22dependencies = [
23 "memchr",
24]
25
26[[package]]
27name = "anstream"
28version = "1.0.0"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d"
31dependencies = [
32 "anstyle",
33 "anstyle-parse",
34 "anstyle-query",
35 "anstyle-wincon",
36 "colorchoice",
37 "is_terminal_polyfill",
38 "utf8parse",
39]
40
41[[package]]
42name = "anstyle"
43version = "1.0.14"
44source = "registry+https://github.com/rust-lang/crates.io-index"
45checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
46
47[[package]]
48name = "anstyle-parse"
49version = "1.0.0"
50source = "registry+https://github.com/rust-lang/crates.io-index"
51checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e"
52dependencies = [
53 "utf8parse",
54]
55
56[[package]]
57name = "anstyle-query"
58version = "1.1.5"
59source = "registry+https://github.com/rust-lang/crates.io-index"
60checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
61dependencies = [
62 "windows-sys 0.61.2",
63]
64
65[[package]]
66name = "anstyle-wincon"
67version = "3.0.11"
68source = "registry+https://github.com/rust-lang/crates.io-index"
69checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
70dependencies = [
71 "anstyle",
72 "once_cell_polyfill",
73 "windows-sys 0.61.2",
74]
75
76[[package]]
77name = "anyhow"
78version = "1.0.102"
79source = "registry+https://github.com/rust-lang/crates.io-index"
80checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
81
82[[package]]
83name = "arc-swap"
84version = "1.9.1"
85source = "registry+https://github.com/rust-lang/crates.io-index"
86checksum = "6a3a1fd6f75306b68087b831f025c712524bcb19aad54e557b1129cfa0a2b207"
87dependencies = [
88 "rustversion",
89]
90
91[[package]]
92name = "async-trait"
93version = "0.1.89"
94source = "registry+https://github.com/rust-lang/crates.io-index"
95checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
96dependencies = [
97 "proc-macro2",
98 "quote",
99 "syn",
100]
101
102[[package]]
103name = "atomic-waker"
104version = "1.1.2"
105source = "registry+https://github.com/rust-lang/crates.io-index"
106checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
107
108[[package]]
109name = "autocfg"
110version = "1.5.1"
111source = "registry+https://github.com/rust-lang/crates.io-index"
112checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53"
113
114[[package]]
115name = "axum"
116version = "0.8.9"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "31b698c5f9a010f6573133b09e0de5408834d0c82f8d7475a89fc1867a71cd90"
119dependencies = [
120 "axum-core",
121 "base64",
122 "bytes",
123 "futures-util",
124 "http",
125 "http-body",
126 "http-body-util",
127 "hyper",
128 "hyper-util",
129 "itoa",
130 "matchit",
131 "memchr",
132 "mime",
133 "percent-encoding",
134 "pin-project-lite",
135 "serde_core",
136 "sha1",
137 "sync_wrapper",
138 "tokio",
139 "tokio-tungstenite",
140 "tower",
141 "tower-layer",
142 "tower-service",
143]
144
145[[package]]
146name = "axum-core"
147version = "0.5.6"
148source = "registry+https://github.com/rust-lang/crates.io-index"
149checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
150dependencies = [
151 "bytes",
152 "futures-core",
153 "http",
154 "http-body",
155 "http-body-util",
156 "mime",
157 "pin-project-lite",
158 "sync_wrapper",
159 "tower-layer",
160 "tower-service",
161]
162
163[[package]]
164name = "base64"
165version = "0.22.1"
166source = "registry+https://github.com/rust-lang/crates.io-index"
167checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
168
169[[package]]
170name = "bit-set"
171version = "0.8.0"
172source = "registry+https://github.com/rust-lang/crates.io-index"
173checksum = "08807e080ed7f9d5433fa9b275196cfc35414f66a0c79d864dc51a0d825231a3"
174dependencies = [
175 "bit-vec",
176]
177
178[[package]]
179name = "bit-vec"
180version = "0.8.0"
181source = "registry+https://github.com/rust-lang/crates.io-index"
182checksum = "5e764a1d40d510daf35e07be9eb06e75770908c27d411ee6c92109c9840eaaf7"
183
184[[package]]
185name = "bitflags"
186version = "1.3.2"
187source = "registry+https://github.com/rust-lang/crates.io-index"
188checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
189
190[[package]]
191name = "bitflags"
192version = "2.11.1"
193source = "registry+https://github.com/rust-lang/crates.io-index"
194checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
195
196[[package]]
197name = "block-buffer"
198version = "0.9.0"
199source = "registry+https://github.com/rust-lang/crates.io-index"
200checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
201dependencies = [
202 "generic-array",
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 = "blowfish"
216version = "0.7.0"
217source = "registry+https://github.com/rust-lang/crates.io-index"
218checksum = "32fa6a061124e37baba002e496d203e23ba3d7b73750be82dbfbc92913048a5b"
219dependencies = [
220 "byteorder",
221 "cipher",
222 "opaque-debug",
223]
224
225[[package]]
226name = "bumpalo"
227version = "3.20.3"
228source = "registry+https://github.com/rust-lang/crates.io-index"
229checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649"
230
231[[package]]
232name = "byteorder"
233version = "1.5.0"
234source = "registry+https://github.com/rust-lang/crates.io-index"
235checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
236
237[[package]]
238name = "bytes"
239version = "1.11.1"
240source = "registry+https://github.com/rust-lang/crates.io-index"
241checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
242
243[[package]]
244name = "cc"
245version = "1.2.63"
246source = "registry+https://github.com/rust-lang/crates.io-index"
247checksum = "556e016178bb5662a08681bbe0f00f8e17631781a4dfc8c45e466e4b185ec27f"
248dependencies = [
249 "find-msvc-tools",
250 "shlex",
251]
252
253[[package]]
254name = "cfg-if"
255version = "1.0.4"
256source = "registry+https://github.com/rust-lang/crates.io-index"
257checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
258
259[[package]]
260name = "chacha20"
261version = "0.10.0"
262source = "registry+https://github.com/rust-lang/crates.io-index"
263checksum = "6f8d983286843e49675a4b7a2d174efe136dc93a18d69130dd18198a6c167601"
264dependencies = [
265 "cfg-if",
266 "cpufeatures 0.3.0",
267 "rand_core 0.10.1",
268]
269
270[[package]]
271name = "cipher"
272version = "0.2.5"
273source = "registry+https://github.com/rust-lang/crates.io-index"
274checksum = "12f8e7987cbd042a63249497f41aed09f8e65add917ea6566effbc56578d6801"
275dependencies = [
276 "generic-array",
277]
278
279[[package]]
280name = "clap"
281version = "4.6.1"
282source = "registry+https://github.com/rust-lang/crates.io-index"
283checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
284dependencies = [
285 "clap_builder",
286 "clap_derive",
287]
288
289[[package]]
290name = "clap_builder"
291version = "4.6.0"
292source = "registry+https://github.com/rust-lang/crates.io-index"
293checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
294dependencies = [
295 "anstream",
296 "anstyle",
297 "clap_lex",
298 "strsim",
299]
300
301[[package]]
302name = "clap_derive"
303version = "4.6.1"
304source = "registry+https://github.com/rust-lang/crates.io-index"
305checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9"
306dependencies = [
307 "heck",
308 "proc-macro2",
309 "quote",
310 "syn",
311]
312
313[[package]]
314name = "clap_lex"
315version = "1.1.0"
316source = "registry+https://github.com/rust-lang/crates.io-index"
317checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
318
319[[package]]
320name = "colorchoice"
321version = "1.0.5"
322source = "registry+https://github.com/rust-lang/crates.io-index"
323checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570"
324
325[[package]]
326name = "combine"
327version = "4.6.7"
328source = "registry+https://github.com/rust-lang/crates.io-index"
329checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd"
330dependencies = [
331 "bytes",
332 "memchr",
333]
334
335[[package]]
336name = "console"
337version = "0.16.3"
338source = "registry+https://github.com/rust-lang/crates.io-index"
339checksum = "d64e8af5551369d19cf50138de61f1c42074ab970f74e99be916646777f8fc87"
340dependencies = [
341 "encode_unicode",
342 "libc",
343 "windows-sys 0.61.2",
344]
345
346[[package]]
347name = "core-foundation"
348version = "0.9.4"
349source = "registry+https://github.com/rust-lang/crates.io-index"
350checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
351dependencies = [
352 "core-foundation-sys",
353 "libc",
354]
355
356[[package]]
357name = "core-foundation-sys"
358version = "0.8.7"
359source = "registry+https://github.com/rust-lang/crates.io-index"
360checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
361
362[[package]]
363name = "cpufeatures"
364version = "0.2.17"
365source = "registry+https://github.com/rust-lang/crates.io-index"
366checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
367dependencies = [
368 "libc",
369]
370
371[[package]]
372name = "cpufeatures"
373version = "0.3.0"
374source = "registry+https://github.com/rust-lang/crates.io-index"
375checksum = "8b2a41393f66f16b0823bb79094d54ac5fbd34ab292ddafb9a0456ac9f87d201"
376dependencies = [
377 "libc",
378]
379
380[[package]]
381name = "critical-section"
382version = "1.2.0"
383source = "registry+https://github.com/rust-lang/crates.io-index"
384checksum = "790eea4361631c5e7d22598ecd5723ff611904e3344ce8720784c93e3d83d40b"
385
386[[package]]
387name = "crossbeam-channel"
388version = "0.5.15"
389source = "registry+https://github.com/rust-lang/crates.io-index"
390checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2"
391dependencies = [
392 "crossbeam-utils",
393]
394
395[[package]]
396name = "crossbeam-epoch"
397version = "0.9.18"
398source = "registry+https://github.com/rust-lang/crates.io-index"
399checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
400dependencies = [
401 "crossbeam-utils",
402]
403
404[[package]]
405name = "crossbeam-utils"
406version = "0.8.21"
407source = "registry+https://github.com/rust-lang/crates.io-index"
408checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
409
410[[package]]
411name = "crypto-common"
412version = "0.1.6"
413source = "registry+https://github.com/rust-lang/crates.io-index"
414checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
415dependencies = [
416 "generic-array",
417 "typenum",
418]
419
420[[package]]
421name = "crypto-mac"
422version = "0.10.0"
423source = "registry+https://github.com/rust-lang/crates.io-index"
424checksum = "4857fd85a0c34b3c3297875b747c1e02e06b6a0ea32dd892d8192b9ce0813ea6"
425dependencies = [
426 "generic-array",
427 "subtle",
428]
429
430[[package]]
431name = "data-encoding"
432version = "2.11.0"
433source = "registry+https://github.com/rust-lang/crates.io-index"
434checksum = "a4ae5f15dda3c708c0ade84bfee31ccab44a3da4f88015ed22f63732abe300c8"
435
436[[package]]
437name = "deranged"
438version = "0.5.8"
439source = "registry+https://github.com/rust-lang/crates.io-index"
440checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
441dependencies = [
442 "powerfmt",
443]
444
445[[package]]
446name = "digest"
447version = "0.9.0"
448source = "registry+https://github.com/rust-lang/crates.io-index"
449checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
450dependencies = [
451 "generic-array",
452]
453
454[[package]]
455name = "digest"
456version = "0.10.7"
457source = "registry+https://github.com/rust-lang/crates.io-index"
458checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
459dependencies = [
460 "block-buffer 0.10.4",
461 "crypto-common",
462]
463
464[[package]]
465name = "displaydoc"
466version = "0.2.6"
467source = "registry+https://github.com/rust-lang/crates.io-index"
468checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f"
469dependencies = [
470 "proc-macro2",
471 "quote",
472 "syn",
473]
474
475[[package]]
476name = "either"
477version = "1.16.0"
478source = "registry+https://github.com/rust-lang/crates.io-index"
479checksum = "91622ff5e7162018101f2fea40d6ebf4a78bbe5a49736a2020649edf9693679e"
480
481[[package]]
482name = "encode_unicode"
483version = "1.0.0"
484source = "registry+https://github.com/rust-lang/crates.io-index"
485checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0"
486
487[[package]]
488name = "equivalent"
489version = "1.0.2"
490source = "registry+https://github.com/rust-lang/crates.io-index"
491checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
492
493[[package]]
494name = "errno"
495version = "0.3.14"
496source = "registry+https://github.com/rust-lang/crates.io-index"
497checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
498dependencies = [
499 "libc",
500 "windows-sys 0.61.2",
501]
502
503[[package]]
504name = "fallible-iterator"
505version = "0.3.0"
506source = "registry+https://github.com/rust-lang/crates.io-index"
507checksum = "2acce4a10f12dc2fb14a218589d4f1f62ef011b2d0cc4b3cb1bba8e94da14649"
508
509[[package]]
510name = "fallible-streaming-iterator"
511version = "0.1.9"
512source = "registry+https://github.com/rust-lang/crates.io-index"
513checksum = "7360491ce676a36bf9bb3c56c1aa791658183a54d2744120f27285738d90465a"
514
515[[package]]
516name = "fastrand"
517version = "2.4.1"
518source = "registry+https://github.com/rust-lang/crates.io-index"
519checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
520
521[[package]]
522name = "filetime"
523version = "0.2.29"
524source = "registry+https://github.com/rust-lang/crates.io-index"
525checksum = "5c287a33c7f0a620c38e641e7f60827713987b3c0f26e8ddc9462cc69cf75759"
526dependencies = [
527 "cfg-if",
528 "libc",
529]
530
531[[package]]
532name = "find-msvc-tools"
533version = "0.1.9"
534source = "registry+https://github.com/rust-lang/crates.io-index"
535checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
536
537[[package]]
538name = "fnv"
539version = "1.0.7"
540source = "registry+https://github.com/rust-lang/crates.io-index"
541checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
542
543[[package]]
544name = "foldhash"
545version = "0.1.5"
546source = "registry+https://github.com/rust-lang/crates.io-index"
547checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
548
549[[package]]
550name = "form_urlencoded"
551version = "1.2.2"
552source = "registry+https://github.com/rust-lang/crates.io-index"
553checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
554dependencies = [
555 "percent-encoding",
556]
557
558[[package]]
559name = "fsevent-sys"
560version = "4.1.0"
561source = "registry+https://github.com/rust-lang/crates.io-index"
562checksum = "76ee7a02da4d231650c7cea31349b889be2f45ddb3ef3032d2ec8185f6313fd2"
563dependencies = [
564 "libc",
565]
566
567[[package]]
568name = "futures-channel"
569version = "0.3.32"
570source = "registry+https://github.com/rust-lang/crates.io-index"
571checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
572dependencies = [
573 "futures-core",
574]
575
576[[package]]
577name = "futures-core"
578version = "0.3.32"
579source = "registry+https://github.com/rust-lang/crates.io-index"
580checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
581
582[[package]]
583name = "futures-io"
584version = "0.3.32"
585source = "registry+https://github.com/rust-lang/crates.io-index"
586checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718"
587
588[[package]]
589name = "futures-macro"
590version = "0.3.32"
591source = "registry+https://github.com/rust-lang/crates.io-index"
592checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b"
593dependencies = [
594 "proc-macro2",
595 "quote",
596 "syn",
597]
598
599[[package]]
600name = "futures-sink"
601version = "0.3.32"
602source = "registry+https://github.com/rust-lang/crates.io-index"
603checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
604
605[[package]]
606name = "futures-task"
607version = "0.3.32"
608source = "registry+https://github.com/rust-lang/crates.io-index"
609checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
610
611[[package]]
612name = "futures-util"
613version = "0.3.32"
614source = "registry+https://github.com/rust-lang/crates.io-index"
615checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
616dependencies = [
617 "futures-core",
618 "futures-macro",
619 "futures-sink",
620 "futures-task",
621 "pin-project-lite",
622 "slab",
623]
624
625[[package]]
626name = "generic-array"
627version = "0.14.9"
628source = "registry+https://github.com/rust-lang/crates.io-index"
629checksum = "4bb6743198531e02858aeaea5398fcc883e71851fcbcb5a2f773e2fb6cb1edf2"
630dependencies = [
631 "typenum",
632 "version_check",
633]
634
635[[package]]
636name = "getrandom"
637version = "0.2.17"
638source = "registry+https://github.com/rust-lang/crates.io-index"
639checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
640dependencies = [
641 "cfg-if",
642 "libc",
643 "wasi",
644]
645
646[[package]]
647name = "getrandom"
648version = "0.3.4"
649source = "registry+https://github.com/rust-lang/crates.io-index"
650checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
651dependencies = [
652 "cfg-if",
653 "libc",
654 "r-efi 5.3.0",
655 "wasip2",
656]
657
658[[package]]
659name = "getrandom"
660version = "0.4.2"
661source = "registry+https://github.com/rust-lang/crates.io-index"
662checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
663dependencies = [
664 "cfg-if",
665 "libc",
666 "r-efi 6.0.0",
667 "rand_core 0.10.1",
668 "wasip2",
669 "wasip3",
670]
671
672[[package]]
673name = "h2"
674version = "0.4.14"
675source = "registry+https://github.com/rust-lang/crates.io-index"
676checksum = "171fefbc92fe4a4de27e0698d6a5b392d6a0e333506bc49133760b3bcf948733"
677dependencies = [
678 "atomic-waker",
679 "bytes",
680 "fnv",
681 "futures-core",
682 "futures-sink",
683 "http",
684 "indexmap",
685 "slab",
686 "tokio",
687 "tokio-util",
688 "tracing",
689]
690
691[[package]]
692name = "hashbrown"
693version = "0.14.5"
694source = "registry+https://github.com/rust-lang/crates.io-index"
695checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
696dependencies = [
697 "ahash",
698]
699
700[[package]]
701name = "hashbrown"
702version = "0.15.5"
703source = "registry+https://github.com/rust-lang/crates.io-index"
704checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
705dependencies = [
706 "foldhash",
707]
708
709[[package]]
710name = "hashbrown"
711version = "0.17.1"
712source = "registry+https://github.com/rust-lang/crates.io-index"
713checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a"
714
715[[package]]
716name = "hashlink"
717version = "0.9.1"
718source = "registry+https://github.com/rust-lang/crates.io-index"
719checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
720dependencies = [
721 "hashbrown 0.14.5",
722]
723
724[[package]]
725name = "heck"
726version = "0.5.0"
727source = "registry+https://github.com/rust-lang/crates.io-index"
728checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
729
730[[package]]
731name = "hickory-net"
732version = "0.26.1"
733source = "registry+https://github.com/rust-lang/crates.io-index"
734checksum = "e2295ed2f9c31e471e1428a8f88a3f0e1f4b27c15049592138d1eebe9c35b183"
735dependencies = [
736 "async-trait",
737 "cfg-if",
738 "data-encoding",
739 "futures-channel",
740 "futures-io",
741 "futures-util",
742 "hickory-proto",
743 "idna",
744 "ipnet",
745 "jni",
746 "rand 0.10.1",
747 "thiserror 2.0.18",
748 "tinyvec",
749 "tokio",
750 "tracing",
751 "url",
752]
753
754[[package]]
755name = "hickory-proto"
756version = "0.26.1"
757source = "registry+https://github.com/rust-lang/crates.io-index"
758checksum = "0bab31817bfb44672a252e97fe81cd0c18d1b2cf892108922f6818820df8c643"
759dependencies = [
760 "data-encoding",
761 "idna",
762 "ipnet",
763 "jni",
764 "once_cell",
765 "prefix-trie",
766 "rand 0.10.1",
767 "ring",
768 "thiserror 2.0.18",
769 "tinyvec",
770 "tracing",
771 "url",
772]
773
774[[package]]
775name = "hickory-resolver"
776version = "0.26.1"
777source = "registry+https://github.com/rust-lang/crates.io-index"
778checksum = "f0d58d28879ceecde6607729660c2667a081ccdc082e082675042793960f178c"
779dependencies = [
780 "cfg-if",
781 "futures-util",
782 "hickory-net",
783 "hickory-proto",
784 "ipconfig",
785 "ipnet",
786 "jni",
787 "moka",
788 "ndk-context",
789 "once_cell",
790 "parking_lot",
791 "rand 0.10.1",
792 "resolv-conf",
793 "smallvec",
794 "system-configuration",
795 "thiserror 2.0.18",
796 "tokio",
797 "tracing",
798]
799
800[[package]]
801name = "hmac"
802version = "0.10.1"
803source = "registry+https://github.com/rust-lang/crates.io-index"
804checksum = "c1441c6b1e930e2817404b5046f1f989899143a12bf92de603b69f4e0aee1e15"
805dependencies = [
806 "crypto-mac",
807 "digest 0.9.0",
808]
809
810[[package]]
811name = "http"
812version = "1.4.2"
813source = "registry+https://github.com/rust-lang/crates.io-index"
814checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425"
815dependencies = [
816 "bytes",
817 "itoa",
818]
819
820[[package]]
821name = "http-body"
822version = "1.0.1"
823source = "registry+https://github.com/rust-lang/crates.io-index"
824checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
825dependencies = [
826 "bytes",
827 "http",
828]
829
830[[package]]
831name = "http-body-util"
832version = "0.1.3"
833source = "registry+https://github.com/rust-lang/crates.io-index"
834checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
835dependencies = [
836 "bytes",
837 "futures-core",
838 "http",
839 "http-body",
840 "pin-project-lite",
841]
842
843[[package]]
844name = "httparse"
845version = "1.10.1"
846source = "registry+https://github.com/rust-lang/crates.io-index"
847checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
848
849[[package]]
850name = "httpdate"
851version = "1.0.3"
852source = "registry+https://github.com/rust-lang/crates.io-index"
853checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
854
855[[package]]
856name = "hyper"
857version = "1.10.1"
858source = "registry+https://github.com/rust-lang/crates.io-index"
859checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498"
860dependencies = [
861 "atomic-waker",
862 "bytes",
863 "futures-channel",
864 "futures-core",
865 "h2",
866 "http",
867 "http-body",
868 "httparse",
869 "httpdate",
870 "itoa",
871 "pin-project-lite",
872 "smallvec",
873 "tokio",
874]
875
876[[package]]
877name = "hyper-util"
878version = "0.1.20"
879source = "registry+https://github.com/rust-lang/crates.io-index"
880checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
881dependencies = [
882 "bytes",
883 "http",
884 "http-body",
885 "hyper",
886 "pin-project-lite",
887 "tokio",
888 "tower-service",
889]
890
891[[package]]
892name = "icu_collections"
893version = "2.2.0"
894source = "registry+https://github.com/rust-lang/crates.io-index"
895checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c"
896dependencies = [
897 "displaydoc",
898 "potential_utf",
899 "utf8_iter",
900 "yoke",
901 "zerofrom",
902 "zerovec",
903]
904
905[[package]]
906name = "icu_locale_core"
907version = "2.2.0"
908source = "registry+https://github.com/rust-lang/crates.io-index"
909checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29"
910dependencies = [
911 "displaydoc",
912 "litemap",
913 "tinystr",
914 "writeable",
915 "zerovec",
916]
917
918[[package]]
919name = "icu_normalizer"
920version = "2.2.0"
921source = "registry+https://github.com/rust-lang/crates.io-index"
922checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4"
923dependencies = [
924 "icu_collections",
925 "icu_normalizer_data",
926 "icu_properties",
927 "icu_provider",
928 "smallvec",
929 "zerovec",
930]
931
932[[package]]
933name = "icu_normalizer_data"
934version = "2.2.0"
935source = "registry+https://github.com/rust-lang/crates.io-index"
936checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38"
937
938[[package]]
939name = "icu_properties"
940version = "2.2.0"
941source = "registry+https://github.com/rust-lang/crates.io-index"
942checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de"
943dependencies = [
944 "icu_collections",
945 "icu_locale_core",
946 "icu_properties_data",
947 "icu_provider",
948 "zerotrie",
949 "zerovec",
950]
951
952[[package]]
953name = "icu_properties_data"
954version = "2.2.0"
955source = "registry+https://github.com/rust-lang/crates.io-index"
956checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14"
957
958[[package]]
959name = "icu_provider"
960version = "2.2.0"
961source = "registry+https://github.com/rust-lang/crates.io-index"
962checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421"
963dependencies = [
964 "displaydoc",
965 "icu_locale_core",
966 "writeable",
967 "yoke",
968 "zerofrom",
969 "zerotrie",
970 "zerovec",
971]
972
973[[package]]
974name = "id-arena"
975version = "2.3.0"
976source = "registry+https://github.com/rust-lang/crates.io-index"
977checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
978
979[[package]]
980name = "idna"
981version = "1.1.0"
982source = "registry+https://github.com/rust-lang/crates.io-index"
983checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de"
984dependencies = [
985 "idna_adapter",
986 "smallvec",
987 "utf8_iter",
988]
989
990[[package]]
991name = "idna_adapter"
992version = "1.2.2"
993source = "registry+https://github.com/rust-lang/crates.io-index"
994checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714"
995dependencies = [
996 "icu_normalizer",
997 "icu_properties",
998]
999
1000[[package]]
1001name = "indexmap"
1002version = "2.14.0"
1003source = "registry+https://github.com/rust-lang/crates.io-index"
1004checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
1005dependencies = [
1006 "equivalent",
1007 "hashbrown 0.17.1",
1008 "serde",
1009 "serde_core",
1010]
1011
1012[[package]]
1013name = "inotify"
1014version = "0.9.6"
1015source = "registry+https://github.com/rust-lang/crates.io-index"
1016checksum = "f8069d3ec154eb856955c1c0fbffefbf5f3c40a104ec912d4797314c1801abff"
1017dependencies = [
1018 "bitflags 1.3.2",
1019 "inotify-sys",
1020 "libc",
1021]
1022
1023[[package]]
1024name = "inotify-sys"
1025version = "0.1.5"
1026source = "registry+https://github.com/rust-lang/crates.io-index"
1027checksum = "e05c02b5e89bff3b946cedeca278abc628fe811e604f027c45a8aa3cf793d0eb"
1028dependencies = [
1029 "libc",
1030]
1031
1032[[package]]
1033name = "insta"
1034version = "1.47.2"
1035source = "registry+https://github.com/rust-lang/crates.io-index"
1036checksum = "7b4a6248eb93a4401ed2f37dfe8ea592d3cf05b7cf4f8efa867b6895af7e094e"
1037dependencies = [
1038 "console",
1039 "once_cell",
1040 "similar",
1041 "tempfile",
1042]
1043
1044[[package]]
1045name = "ipconfig"
1046version = "0.3.4"
1047source = "registry+https://github.com/rust-lang/crates.io-index"
1048checksum = "4d40460c0ce33d6ce4b0630ad68ff63d6661961c48b6dba35e5a4d81cfb48222"
1049dependencies = [
1050 "socket2",
1051 "widestring",
1052 "windows-registry",
1053 "windows-result",
1054 "windows-sys 0.61.2",
1055]
1056
1057[[package]]
1058name = "ipnet"
1059version = "2.12.0"
1060source = "registry+https://github.com/rust-lang/crates.io-index"
1061checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2"
1062dependencies = [
1063 "serde",
1064]
1065
1066[[package]]
1067name = "is_terminal_polyfill"
1068version = "1.70.2"
1069source = "registry+https://github.com/rust-lang/crates.io-index"
1070checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
1071
1072[[package]]
1073name = "itoa"
1074version = "1.0.18"
1075source = "registry+https://github.com/rust-lang/crates.io-index"
1076checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
1077
1078[[package]]
1079name = "jni"
1080version = "0.22.4"
1081source = "registry+https://github.com/rust-lang/crates.io-index"
1082checksum = "5efd9a482cf3a427f00d6b35f14332adc7902ce91efb778580e180ff90fa3498"
1083dependencies = [
1084 "cfg-if",
1085 "combine",
1086 "jni-macros",
1087 "jni-sys",
1088 "log",
1089 "simd_cesu8",
1090 "thiserror 2.0.18",
1091 "walkdir",
1092 "windows-link",
1093]
1094
1095[[package]]
1096name = "jni-macros"
1097version = "0.22.4"
1098source = "registry+https://github.com/rust-lang/crates.io-index"
1099checksum = "a00109accc170f0bdb141fed3e393c565b6f5e072365c3bd58f5b062591560a3"
1100dependencies = [
1101 "proc-macro2",
1102 "quote",
1103 "rustc_version",
1104 "simd_cesu8",
1105 "syn",
1106]
1107
1108[[package]]
1109name = "jni-sys"
1110version = "0.4.1"
1111source = "registry+https://github.com/rust-lang/crates.io-index"
1112checksum = "c6377a88cb3910bee9b0fa88d4f42e1d2da8e79915598f65fb0c7ee14c878af2"
1113dependencies = [
1114 "jni-sys-macros",
1115]
1116
1117[[package]]
1118name = "jni-sys-macros"
1119version = "0.4.1"
1120source = "registry+https://github.com/rust-lang/crates.io-index"
1121checksum = "38c0b942f458fe50cdac086d2f946512305e5631e720728f2a61aabcd47a6264"
1122dependencies = [
1123 "quote",
1124 "syn",
1125]
1126
1127[[package]]
1128name = "js-sys"
1129version = "0.3.100"
1130source = "registry+https://github.com/rust-lang/crates.io-index"
1131checksum = "f2025f20d7a4fa7785846e7b63d10a76d3f1cee98ee5cb79ea59703f95e42162"
1132dependencies = [
1133 "cfg-if",
1134 "futures-util",
1135 "wasm-bindgen",
1136]
1137
1138[[package]]
1139name = "kdl"
1140version = "4.7.1"
1141source = "registry+https://github.com/rust-lang/crates.io-index"
1142checksum = "e03e2e96c5926fe761088d66c8c2aee3a4352a2573f4eaca50043ad130af9117"
1143dependencies = [
1144 "miette 5.10.0",
1145 "nom",
1146 "thiserror 1.0.69",
1147]
1148
1149[[package]]
1150name = "kdl"
1151version = "6.7.1"
1152source = "registry+https://github.com/rust-lang/crates.io-index"
1153checksum = "082ddf81b2acd76fe04412655d17befedfff1837db772f8e74c38050d25ed670"
1154dependencies = [
1155 "kdl 4.7.1",
1156 "miette 7.6.0",
1157 "num-traits",
1158 "serde",
1159 "winnow",
1160]
1161
1162[[package]]
1163name = "kqueue"
1164version = "1.2.0"
1165source = "registry+https://github.com/rust-lang/crates.io-index"
1166checksum = "273c0752728918e0ac4976f2b275b6fefb9ecd400585dec929419f3844cd87b5"
1167dependencies = [
1168 "kqueue-sys",
1169 "libc",
1170]
1171
1172[[package]]
1173name = "kqueue-sys"
1174version = "1.1.2"
1175source = "registry+https://github.com/rust-lang/crates.io-index"
1176checksum = "07293a4e297ac234359b510362495713f75ea345d5307140414f20c69ffeb087"
1177dependencies = [
1178 "bitflags 2.11.1",
1179 "libc",
1180]
1181
1182[[package]]
1183name = "lazy_static"
1184version = "1.5.0"
1185source = "registry+https://github.com/rust-lang/crates.io-index"
1186checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1187
1188[[package]]
1189name = "leb128fmt"
1190version = "0.1.0"
1191source = "registry+https://github.com/rust-lang/crates.io-index"
1192checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
1193
1194[[package]]
1195name = "leveva"
1196version = "0.4.0"
1197dependencies = [
1198 "arc-swap",
1199 "axum",
1200 "clap",
1201 "futures-util",
1202 "hyper",
1203 "hyper-util",
1204 "insta",
1205 "kdl 6.7.1",
1206 "leveva-casemap",
1207 "leveva-cidr",
1208 "leveva-cloak",
1209 "leveva-iauth",
1210 "leveva-matching",
1211 "leveva-message",
1212 "leveva-patricia",
1213 "leveva-string",
1214 "libc",
1215 "nom",
1216 "notify",
1217 "prometheus",
1218 "proptest",
1219 "pwhash",
1220 "rcgen",
1221 "rusqlite",
1222 "rust-embed",
1223 "rustls",
1224 "rustls-pemfile",
1225 "serde",
1226 "serde_json",
1227 "sha2 0.10.9",
1228 "subtle",
1229 "thiserror 2.0.18",
1230 "tokio",
1231 "tokio-rustls",
1232 "tokio-tungstenite",
1233 "tower",
1234 "tracing",
1235 "tracing-subscriber",
1236 "unicode-segmentation",
1237]
1238
1239[[package]]
1240name = "leveva-casemap"
1241version = "0.0.0"
1242dependencies = [
1243 "proptest",
1244]
1245
1246[[package]]
1247name = "leveva-cidr"
1248version = "0.0.0"
1249dependencies = [
1250 "proptest",
1251]
1252
1253[[package]]
1254name = "leveva-cloak"
1255version = "0.0.0"
1256dependencies = [
1257 "proptest",
1258]
1259
1260[[package]]
1261name = "leveva-iauth"
1262version = "0.0.0"
1263dependencies = [
1264 "async-trait",
1265 "hickory-resolver",
1266 "proptest",
1267 "tokio",
1268]
1269
1270[[package]]
1271name = "leveva-matching"
1272version = "0.0.0"
1273dependencies = [
1274 "leveva-casemap",
1275 "leveva-cidr",
1276 "nom",
1277 "proptest",
1278]
1279
1280[[package]]
1281name = "leveva-message"
1282version = "0.0.0"
1283dependencies = [
1284 "proptest",
1285 "serde",
1286 "serde_json",
1287 "unicode-segmentation",
1288]
1289
1290[[package]]
1291name = "leveva-patricia"
1292version = "0.0.0"
1293
1294[[package]]
1295name = "leveva-string"
1296version = "0.0.0"
1297dependencies = [
1298 "leveva-casemap",
1299 "proptest",
1300]
1301
1302[[package]]
1303name = "libc"
1304version = "0.2.186"
1305source = "registry+https://github.com/rust-lang/crates.io-index"
1306checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
1307
1308[[package]]
1309name = "libsqlite3-sys"
1310version = "0.30.1"
1311source = "registry+https://github.com/rust-lang/crates.io-index"
1312checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1313dependencies = [
1314 "cc",
1315 "pkg-config",
1316 "vcpkg",
1317]
1318
1319[[package]]
1320name = "linux-raw-sys"
1321version = "0.12.1"
1322source = "registry+https://github.com/rust-lang/crates.io-index"
1323checksum = "32a66949e030da00e8c7d4434b251670a91556f4144941d37452769c25d58a53"
1324
1325[[package]]
1326name = "litemap"
1327version = "0.8.2"
1328source = "registry+https://github.com/rust-lang/crates.io-index"
1329checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0"
1330
1331[[package]]
1332name = "lock_api"
1333version = "0.4.14"
1334source = "registry+https://github.com/rust-lang/crates.io-index"
1335checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
1336dependencies = [
1337 "scopeguard",
1338]
1339
1340[[package]]
1341name = "log"
1342version = "0.4.30"
1343source = "registry+https://github.com/rust-lang/crates.io-index"
1344checksum = "616ec5685824bcc94416c6d4a7a446eea774a31efd7062c8480ba6fd06d7a6e5"
1345
1346[[package]]
1347name = "matchers"
1348version = "0.2.0"
1349source = "registry+https://github.com/rust-lang/crates.io-index"
1350checksum = "d1525a2a28c7f4fa0fc98bb91ae755d1e2d1505079e05539e35bc876b5d65ae9"
1351dependencies = [
1352 "regex-automata",
1353]
1354
1355[[package]]
1356name = "matchit"
1357version = "0.8.4"
1358source = "registry+https://github.com/rust-lang/crates.io-index"
1359checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1360
1361[[package]]
1362name = "md-5"
1363version = "0.9.1"
1364source = "registry+https://github.com/rust-lang/crates.io-index"
1365checksum = "7b5a279bb9607f9f53c22d496eade00d138d1bdcccd07d74650387cf94942a15"
1366dependencies = [
1367 "block-buffer 0.9.0",
1368 "digest 0.9.0",
1369 "opaque-debug",
1370]
1371
1372[[package]]
1373name = "memchr"
1374version = "2.8.1"
1375source = "registry+https://github.com/rust-lang/crates.io-index"
1376checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8"
1377
1378[[package]]
1379name = "miette"
1380version = "5.10.0"
1381source = "registry+https://github.com/rust-lang/crates.io-index"
1382checksum = "59bb584eaeeab6bd0226ccf3509a69d7936d148cf3d036ad350abe35e8c6856e"
1383dependencies = [
1384 "miette-derive",
1385 "once_cell",
1386 "thiserror 1.0.69",
1387 "unicode-width",
1388]
1389
1390[[package]]
1391name = "miette"
1392version = "7.6.0"
1393source = "registry+https://github.com/rust-lang/crates.io-index"
1394checksum = "5f98efec8807c63c752b5bd61f862c165c115b0a35685bdcfd9238c7aeb592b7"
1395dependencies = [
1396 "cfg-if",
1397 "unicode-width",
1398]
1399
1400[[package]]
1401name = "miette-derive"
1402version = "5.10.0"
1403source = "registry+https://github.com/rust-lang/crates.io-index"
1404checksum = "49e7bc1560b95a3c4a25d03de42fe76ca718ab92d1a22a55b9b4cf67b3ae635c"
1405dependencies = [
1406 "proc-macro2",
1407 "quote",
1408 "syn",
1409]
1410
1411[[package]]
1412name = "mime"
1413version = "0.3.17"
1414source = "registry+https://github.com/rust-lang/crates.io-index"
1415checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1416
1417[[package]]
1418name = "minimal-lexical"
1419version = "0.2.1"
1420source = "registry+https://github.com/rust-lang/crates.io-index"
1421checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1422
1423[[package]]
1424name = "mio"
1425version = "0.8.11"
1426source = "registry+https://github.com/rust-lang/crates.io-index"
1427checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
1428dependencies = [
1429 "libc",
1430 "log",
1431 "wasi",
1432 "windows-sys 0.48.0",
1433]
1434
1435[[package]]
1436name = "mio"
1437version = "1.2.1"
1438source = "registry+https://github.com/rust-lang/crates.io-index"
1439checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda"
1440dependencies = [
1441 "libc",
1442 "wasi",
1443 "windows-sys 0.61.2",
1444]
1445
1446[[package]]
1447name = "moka"
1448version = "0.12.15"
1449source = "registry+https://github.com/rust-lang/crates.io-index"
1450checksum = "957228ad12042ee839f93c8f257b62b4c0ab5eaae1d4fa60de53b27c9d7c5046"
1451dependencies = [
1452 "crossbeam-channel",
1453 "crossbeam-epoch",
1454 "crossbeam-utils",
1455 "equivalent",
1456 "parking_lot",
1457 "portable-atomic",
1458 "smallvec",
1459 "tagptr",
1460 "uuid",
1461]
1462
1463[[package]]
1464name = "ndk-context"
1465version = "0.1.1"
1466source = "registry+https://github.com/rust-lang/crates.io-index"
1467checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b"
1468
1469[[package]]
1470name = "nom"
1471version = "7.1.3"
1472source = "registry+https://github.com/rust-lang/crates.io-index"
1473checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1474dependencies = [
1475 "memchr",
1476 "minimal-lexical",
1477]
1478
1479[[package]]
1480name = "notify"
1481version = "6.1.1"
1482source = "registry+https://github.com/rust-lang/crates.io-index"
1483checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
1484dependencies = [
1485 "bitflags 2.11.1",
1486 "crossbeam-channel",
1487 "filetime",
1488 "fsevent-sys",
1489 "inotify",
1490 "kqueue",
1491 "libc",
1492 "log",
1493 "mio 0.8.11",
1494 "walkdir",
1495 "windows-sys 0.48.0",
1496]
1497
1498[[package]]
1499name = "nu-ansi-term"
1500version = "0.50.3"
1501source = "registry+https://github.com/rust-lang/crates.io-index"
1502checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
1503dependencies = [
1504 "windows-sys 0.61.2",
1505]
1506
1507[[package]]
1508name = "num-conv"
1509version = "0.2.2"
1510source = "registry+https://github.com/rust-lang/crates.io-index"
1511checksum = "521739c6d2bac4aa25192232afe6841231376b2b26d4d9fae5ecf8ca5772e441"
1512
1513[[package]]
1514name = "num-traits"
1515version = "0.2.19"
1516source = "registry+https://github.com/rust-lang/crates.io-index"
1517checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1518dependencies = [
1519 "autocfg",
1520]
1521
1522[[package]]
1523name = "once_cell"
1524version = "1.21.4"
1525source = "registry+https://github.com/rust-lang/crates.io-index"
1526checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
1527dependencies = [
1528 "critical-section",
1529 "portable-atomic",
1530]
1531
1532[[package]]
1533name = "once_cell_polyfill"
1534version = "1.70.2"
1535source = "registry+https://github.com/rust-lang/crates.io-index"
1536checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
1537
1538[[package]]
1539name = "opaque-debug"
1540version = "0.3.1"
1541source = "registry+https://github.com/rust-lang/crates.io-index"
1542checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
1543
1544[[package]]
1545name = "parking_lot"
1546version = "0.12.5"
1547source = "registry+https://github.com/rust-lang/crates.io-index"
1548checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
1549dependencies = [
1550 "lock_api",
1551 "parking_lot_core",
1552]
1553
1554[[package]]
1555name = "parking_lot_core"
1556version = "0.9.12"
1557source = "registry+https://github.com/rust-lang/crates.io-index"
1558checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
1559dependencies = [
1560 "cfg-if",
1561 "libc",
1562 "redox_syscall",
1563 "smallvec",
1564 "windows-link",
1565]
1566
1567[[package]]
1568name = "pem"
1569version = "3.0.6"
1570source = "registry+https://github.com/rust-lang/crates.io-index"
1571checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
1572dependencies = [
1573 "base64",
1574 "serde_core",
1575]
1576
1577[[package]]
1578name = "percent-encoding"
1579version = "2.3.2"
1580source = "registry+https://github.com/rust-lang/crates.io-index"
1581checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
1582
1583[[package]]
1584name = "pin-project-lite"
1585version = "0.2.17"
1586source = "registry+https://github.com/rust-lang/crates.io-index"
1587checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
1588
1589[[package]]
1590name = "pkg-config"
1591version = "0.3.33"
1592source = "registry+https://github.com/rust-lang/crates.io-index"
1593checksum = "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
1594
1595[[package]]
1596name = "portable-atomic"
1597version = "1.13.1"
1598source = "registry+https://github.com/rust-lang/crates.io-index"
1599checksum = "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
1600
1601[[package]]
1602name = "potential_utf"
1603version = "0.1.5"
1604source = "registry+https://github.com/rust-lang/crates.io-index"
1605checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564"
1606dependencies = [
1607 "zerovec",
1608]
1609
1610[[package]]
1611name = "powerfmt"
1612version = "0.2.0"
1613source = "registry+https://github.com/rust-lang/crates.io-index"
1614checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1615
1616[[package]]
1617name = "ppv-lite86"
1618version = "0.2.21"
1619source = "registry+https://github.com/rust-lang/crates.io-index"
1620checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1621dependencies = [
1622 "zerocopy",
1623]
1624
1625[[package]]
1626name = "prefix-trie"
1627version = "0.8.4"
1628source = "registry+https://github.com/rust-lang/crates.io-index"
1629checksum = "4cf6e3177f0684016a5c209b00882e15f8bdd3f3bb48f0491df10cd102d0c6e7"
1630dependencies = [
1631 "either",
1632 "ipnet",
1633 "num-traits",
1634]
1635
1636[[package]]
1637name = "prettyplease"
1638version = "0.2.37"
1639source = "registry+https://github.com/rust-lang/crates.io-index"
1640checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
1641dependencies = [
1642 "proc-macro2",
1643 "syn",
1644]
1645
1646[[package]]
1647name = "proc-macro2"
1648version = "1.0.106"
1649source = "registry+https://github.com/rust-lang/crates.io-index"
1650checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
1651dependencies = [
1652 "unicode-ident",
1653]
1654
1655[[package]]
1656name = "prometheus"
1657version = "0.13.4"
1658source = "registry+https://github.com/rust-lang/crates.io-index"
1659checksum = "3d33c28a30771f7f96db69893f78b857f7450d7e0237e9c8fc6427a81bae7ed1"
1660dependencies = [
1661 "cfg-if",
1662 "fnv",
1663 "lazy_static",
1664 "memchr",
1665 "parking_lot",
1666 "protobuf",
1667 "thiserror 1.0.69",
1668]
1669
1670[[package]]
1671name = "proptest"
1672version = "1.11.0"
1673source = "registry+https://github.com/rust-lang/crates.io-index"
1674checksum = "4b45fcc2344c680f5025fe57779faef368840d0bd1f42f216291f0dc4ace4744"
1675dependencies = [
1676 "bit-set",
1677 "bit-vec",
1678 "bitflags 2.11.1",
1679 "num-traits",
1680 "rand 0.9.4",
1681 "rand_chacha 0.9.0",
1682 "rand_xorshift",
1683 "regex-syntax",
1684 "rusty-fork",
1685 "tempfile",
1686 "unarray",
1687]
1688
1689[[package]]
1690name = "protobuf"
1691version = "2.28.0"
1692source = "registry+https://github.com/rust-lang/crates.io-index"
1693checksum = "106dd99e98437432fed6519dedecfade6a06a73bb7b2a1e019fdd2bee5778d94"
1694
1695[[package]]
1696name = "pwhash"
1697version = "1.0.0"
1698source = "registry+https://github.com/rust-lang/crates.io-index"
1699checksum = "419a3ad8fa9f9d445e69d9b185a24878ae6e6f55c96e4512f4a0e28cd3bc5c56"
1700dependencies = [
1701 "blowfish",
1702 "byteorder",
1703 "hmac",
1704 "md-5",
1705 "rand 0.8.6",
1706 "sha-1",
1707 "sha2 0.9.9",
1708]
1709
1710[[package]]
1711name = "quick-error"
1712version = "1.2.3"
1713source = "registry+https://github.com/rust-lang/crates.io-index"
1714checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
1715
1716[[package]]
1717name = "quote"
1718version = "1.0.45"
1719source = "registry+https://github.com/rust-lang/crates.io-index"
1720checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
1721dependencies = [
1722 "proc-macro2",
1723]
1724
1725[[package]]
1726name = "r-efi"
1727version = "5.3.0"
1728source = "registry+https://github.com/rust-lang/crates.io-index"
1729checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1730
1731[[package]]
1732name = "r-efi"
1733version = "6.0.0"
1734source = "registry+https://github.com/rust-lang/crates.io-index"
1735checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
1736
1737[[package]]
1738name = "rand"
1739version = "0.8.6"
1740source = "registry+https://github.com/rust-lang/crates.io-index"
1741checksum = "5ca0ecfa931c29007047d1bc58e623ab12e5590e8c7cc53200d5202b69266d8a"
1742dependencies = [
1743 "libc",
1744 "rand_chacha 0.3.1",
1745 "rand_core 0.6.4",
1746]
1747
1748[[package]]
1749name = "rand"
1750version = "0.9.4"
1751source = "registry+https://github.com/rust-lang/crates.io-index"
1752checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea"
1753dependencies = [
1754 "rand_chacha 0.9.0",
1755 "rand_core 0.9.5",
1756]
1757
1758[[package]]
1759name = "rand"
1760version = "0.10.1"
1761source = "registry+https://github.com/rust-lang/crates.io-index"
1762checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
1763dependencies = [
1764 "chacha20",
1765 "getrandom 0.4.2",
1766 "rand_core 0.10.1",
1767]
1768
1769[[package]]
1770name = "rand_chacha"
1771version = "0.3.1"
1772source = "registry+https://github.com/rust-lang/crates.io-index"
1773checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1774dependencies = [
1775 "ppv-lite86",
1776 "rand_core 0.6.4",
1777]
1778
1779[[package]]
1780name = "rand_chacha"
1781version = "0.9.0"
1782source = "registry+https://github.com/rust-lang/crates.io-index"
1783checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1784dependencies = [
1785 "ppv-lite86",
1786 "rand_core 0.9.5",
1787]
1788
1789[[package]]
1790name = "rand_core"
1791version = "0.6.4"
1792source = "registry+https://github.com/rust-lang/crates.io-index"
1793checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1794dependencies = [
1795 "getrandom 0.2.17",
1796]
1797
1798[[package]]
1799name = "rand_core"
1800version = "0.9.5"
1801source = "registry+https://github.com/rust-lang/crates.io-index"
1802checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c"
1803dependencies = [
1804 "getrandom 0.3.4",
1805]
1806
1807[[package]]
1808name = "rand_core"
1809version = "0.10.1"
1810source = "registry+https://github.com/rust-lang/crates.io-index"
1811checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
1812
1813[[package]]
1814name = "rand_xorshift"
1815version = "0.4.0"
1816source = "registry+https://github.com/rust-lang/crates.io-index"
1817checksum = "513962919efc330f829edb2535844d1b912b0fbe2ca165d613e4e8788bb05a5a"
1818dependencies = [
1819 "rand_core 0.9.5",
1820]
1821
1822[[package]]
1823name = "rcgen"
1824version = "0.13.2"
1825source = "registry+https://github.com/rust-lang/crates.io-index"
1826checksum = "75e669e5202259b5314d1ea5397316ad400819437857b90861765f24c4cf80a2"
1827dependencies = [
1828 "pem",
1829 "ring",
1830 "rustls-pki-types",
1831 "time",
1832 "yasna",
1833]
1834
1835[[package]]
1836name = "redox_syscall"
1837version = "0.5.18"
1838source = "registry+https://github.com/rust-lang/crates.io-index"
1839checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
1840dependencies = [
1841 "bitflags 2.11.1",
1842]
1843
1844[[package]]
1845name = "regex-automata"
1846version = "0.4.14"
1847source = "registry+https://github.com/rust-lang/crates.io-index"
1848checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
1849dependencies = [
1850 "aho-corasick",
1851 "memchr",
1852 "regex-syntax",
1853]
1854
1855[[package]]
1856name = "regex-syntax"
1857version = "0.8.10"
1858source = "registry+https://github.com/rust-lang/crates.io-index"
1859checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
1860
1861[[package]]
1862name = "resolv-conf"
1863version = "0.7.6"
1864source = "registry+https://github.com/rust-lang/crates.io-index"
1865checksum = "1e061d1b48cb8d38042de4ae0a7a6401009d6143dc80d2e2d6f31f0bdd6470c7"
1866
1867[[package]]
1868name = "ring"
1869version = "0.17.14"
1870source = "registry+https://github.com/rust-lang/crates.io-index"
1871checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1872dependencies = [
1873 "cc",
1874 "cfg-if",
1875 "getrandom 0.2.17",
1876 "libc",
1877 "untrusted",
1878 "windows-sys 0.52.0",
1879]
1880
1881[[package]]
1882name = "rusqlite"
1883version = "0.32.1"
1884source = "registry+https://github.com/rust-lang/crates.io-index"
1885checksum = "7753b721174eb8ff87a9a0e799e2d7bc3749323e773db92e0984debb00019d6e"
1886dependencies = [
1887 "bitflags 2.11.1",
1888 "fallible-iterator",
1889 "fallible-streaming-iterator",
1890 "hashlink",
1891 "libsqlite3-sys",
1892 "smallvec",
1893]
1894
1895[[package]]
1896name = "rust-embed"
1897version = "8.11.0"
1898source = "registry+https://github.com/rust-lang/crates.io-index"
1899checksum = "04113cb9355a377d83f06ef1f0a45b8ab8cd7d8b1288160717d66df5c7988d27"
1900dependencies = [
1901 "rust-embed-impl",
1902 "rust-embed-utils",
1903 "walkdir",
1904]
1905
1906[[package]]
1907name = "rust-embed-impl"
1908version = "8.11.0"
1909source = "registry+https://github.com/rust-lang/crates.io-index"
1910checksum = "da0902e4c7c8e997159ab384e6d0fc91c221375f6894346ae107f47dd0f3ccaa"
1911dependencies = [
1912 "proc-macro2",
1913 "quote",
1914 "rust-embed-utils",
1915 "syn",
1916 "walkdir",
1917]
1918
1919[[package]]
1920name = "rust-embed-utils"
1921version = "8.11.0"
1922source = "registry+https://github.com/rust-lang/crates.io-index"
1923checksum = "5bcdef0be6fe7f6fa333b1073c949729274b05f123a0ad7efcb8efd878e5c3b1"
1924dependencies = [
1925 "sha2 0.10.9",
1926 "walkdir",
1927]
1928
1929[[package]]
1930name = "rustc_version"
1931version = "0.4.1"
1932source = "registry+https://github.com/rust-lang/crates.io-index"
1933checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1934dependencies = [
1935 "semver",
1936]
1937
1938[[package]]
1939name = "rustix"
1940version = "1.1.4"
1941source = "registry+https://github.com/rust-lang/crates.io-index"
1942checksum = "b6fe4565b9518b83ef4f91bb47ce29620ca828bd32cb7e408f0062e9930ba190"
1943dependencies = [
1944 "bitflags 2.11.1",
1945 "errno",
1946 "libc",
1947 "linux-raw-sys",
1948 "windows-sys 0.61.2",
1949]
1950
1951[[package]]
1952name = "rustls"
1953version = "0.23.40"
1954source = "registry+https://github.com/rust-lang/crates.io-index"
1955checksum = "ef86cd5876211988985292b91c96a8f2d298df24e75989a43a3c73f2d4d8168b"
1956dependencies = [
1957 "log",
1958 "once_cell",
1959 "ring",
1960 "rustls-pki-types",
1961 "rustls-webpki",
1962 "subtle",
1963 "zeroize",
1964]
1965
1966[[package]]
1967name = "rustls-pemfile"
1968version = "2.2.0"
1969source = "registry+https://github.com/rust-lang/crates.io-index"
1970checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
1971dependencies = [
1972 "rustls-pki-types",
1973]
1974
1975[[package]]
1976name = "rustls-pki-types"
1977version = "1.14.1"
1978source = "registry+https://github.com/rust-lang/crates.io-index"
1979checksum = "30a7197ae7eb376e574fe940d068c30fe0462554a3ddbe4eca7838e049c937a9"
1980dependencies = [
1981 "zeroize",
1982]
1983
1984[[package]]
1985name = "rustls-webpki"
1986version = "0.103.13"
1987source = "registry+https://github.com/rust-lang/crates.io-index"
1988checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e"
1989dependencies = [
1990 "ring",
1991 "rustls-pki-types",
1992 "untrusted",
1993]
1994
1995[[package]]
1996name = "rustversion"
1997version = "1.0.22"
1998source = "registry+https://github.com/rust-lang/crates.io-index"
1999checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2000
2001[[package]]
2002name = "rusty-fork"
2003version = "0.3.1"
2004source = "registry+https://github.com/rust-lang/crates.io-index"
2005checksum = "cc6bf79ff24e648f6da1f8d1f011e9cac26491b619e6b9280f2b47f1774e6ee2"
2006dependencies = [
2007 "fnv",
2008 "quick-error",
2009 "tempfile",
2010 "wait-timeout",
2011]
2012
2013[[package]]
2014name = "same-file"
2015version = "1.0.6"
2016source = "registry+https://github.com/rust-lang/crates.io-index"
2017checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2018dependencies = [
2019 "winapi-util",
2020]
2021
2022[[package]]
2023name = "scopeguard"
2024version = "1.2.0"
2025source = "registry+https://github.com/rust-lang/crates.io-index"
2026checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2027
2028[[package]]
2029name = "semver"
2030version = "1.0.28"
2031source = "registry+https://github.com/rust-lang/crates.io-index"
2032checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
2033
2034[[package]]
2035name = "serde"
2036version = "1.0.228"
2037source = "registry+https://github.com/rust-lang/crates.io-index"
2038checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
2039dependencies = [
2040 "serde_core",
2041 "serde_derive",
2042]
2043
2044[[package]]
2045name = "serde_core"
2046version = "1.0.228"
2047source = "registry+https://github.com/rust-lang/crates.io-index"
2048checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
2049dependencies = [
2050 "serde_derive",
2051]
2052
2053[[package]]
2054name = "serde_derive"
2055version = "1.0.228"
2056source = "registry+https://github.com/rust-lang/crates.io-index"
2057checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
2058dependencies = [
2059 "proc-macro2",
2060 "quote",
2061 "syn",
2062]
2063
2064[[package]]
2065name = "serde_json"
2066version = "1.0.150"
2067source = "registry+https://github.com/rust-lang/crates.io-index"
2068checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9"
2069dependencies = [
2070 "itoa",
2071 "memchr",
2072 "serde",
2073 "serde_core",
2074 "zmij",
2075]
2076
2077[[package]]
2078name = "sha-1"
2079version = "0.9.8"
2080source = "registry+https://github.com/rust-lang/crates.io-index"
2081checksum = "99cd6713db3cf16b6c84e06321e049a9b9f699826e16096d23bbcc44d15d51a6"
2082dependencies = [
2083 "block-buffer 0.9.0",
2084 "cfg-if",
2085 "cpufeatures 0.2.17",
2086 "digest 0.9.0",
2087 "opaque-debug",
2088]
2089
2090[[package]]
2091name = "sha1"
2092version = "0.10.6"
2093source = "registry+https://github.com/rust-lang/crates.io-index"
2094checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2095dependencies = [
2096 "cfg-if",
2097 "cpufeatures 0.2.17",
2098 "digest 0.10.7",
2099]
2100
2101[[package]]
2102name = "sha2"
2103version = "0.9.9"
2104source = "registry+https://github.com/rust-lang/crates.io-index"
2105checksum = "4d58a1e1bf39749807d89cf2d98ac2dfa0ff1cb3faa38fbb64dd88ac8013d800"
2106dependencies = [
2107 "block-buffer 0.9.0",
2108 "cfg-if",
2109 "cpufeatures 0.2.17",
2110 "digest 0.9.0",
2111 "opaque-debug",
2112]
2113
2114[[package]]
2115name = "sha2"
2116version = "0.10.9"
2117source = "registry+https://github.com/rust-lang/crates.io-index"
2118checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2119dependencies = [
2120 "cfg-if",
2121 "cpufeatures 0.2.17",
2122 "digest 0.10.7",
2123]
2124
2125[[package]]
2126name = "sharded-slab"
2127version = "0.1.7"
2128source = "registry+https://github.com/rust-lang/crates.io-index"
2129checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2130dependencies = [
2131 "lazy_static",
2132]
2133
2134[[package]]
2135name = "shlex"
2136version = "2.0.1"
2137source = "registry+https://github.com/rust-lang/crates.io-index"
2138checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba"
2139
2140[[package]]
2141name = "signal-hook-registry"
2142version = "1.4.8"
2143source = "registry+https://github.com/rust-lang/crates.io-index"
2144checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
2145dependencies = [
2146 "errno",
2147 "libc",
2148]
2149
2150[[package]]
2151name = "simd_cesu8"
2152version = "1.1.1"
2153source = "registry+https://github.com/rust-lang/crates.io-index"
2154checksum = "94f90157bb87cddf702797c5dadfa0be7d266cdf49e22da2fcaa32eff75b2c33"
2155dependencies = [
2156 "rustc_version",
2157 "simdutf8",
2158]
2159
2160[[package]]
2161name = "simdutf8"
2162version = "0.1.5"
2163source = "registry+https://github.com/rust-lang/crates.io-index"
2164checksum = "e3a9fe34e3e7a50316060351f37187a3f546bce95496156754b601a5fa71b76e"
2165
2166[[package]]
2167name = "similar"
2168version = "2.7.0"
2169source = "registry+https://github.com/rust-lang/crates.io-index"
2170checksum = "bbbb5d9659141646ae647b42fe094daf6c6192d1620870b449d9557f748b2daa"
2171
2172[[package]]
2173name = "slab"
2174version = "0.4.12"
2175source = "registry+https://github.com/rust-lang/crates.io-index"
2176checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
2177
2178[[package]]
2179name = "smallvec"
2180version = "1.15.1"
2181source = "registry+https://github.com/rust-lang/crates.io-index"
2182checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2183
2184[[package]]
2185name = "socket2"
2186version = "0.6.4"
2187source = "registry+https://github.com/rust-lang/crates.io-index"
2188checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51"
2189dependencies = [
2190 "libc",
2191 "windows-sys 0.61.2",
2192]
2193
2194[[package]]
2195name = "stable_deref_trait"
2196version = "1.2.1"
2197source = "registry+https://github.com/rust-lang/crates.io-index"
2198checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
2199
2200[[package]]
2201name = "strsim"
2202version = "0.11.1"
2203source = "registry+https://github.com/rust-lang/crates.io-index"
2204checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2205
2206[[package]]
2207name = "subtle"
2208version = "2.6.1"
2209source = "registry+https://github.com/rust-lang/crates.io-index"
2210checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2211
2212[[package]]
2213name = "syn"
2214version = "2.0.117"
2215source = "registry+https://github.com/rust-lang/crates.io-index"
2216checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
2217dependencies = [
2218 "proc-macro2",
2219 "quote",
2220 "unicode-ident",
2221]
2222
2223[[package]]
2224name = "sync_wrapper"
2225version = "1.0.2"
2226source = "registry+https://github.com/rust-lang/crates.io-index"
2227checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2228
2229[[package]]
2230name = "synstructure"
2231version = "0.13.2"
2232source = "registry+https://github.com/rust-lang/crates.io-index"
2233checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2234dependencies = [
2235 "proc-macro2",
2236 "quote",
2237 "syn",
2238]
2239
2240[[package]]
2241name = "system-configuration"
2242version = "0.7.0"
2243source = "registry+https://github.com/rust-lang/crates.io-index"
2244checksum = "a13f3d0daba03132c0aa9767f98351b3488edc2c100cda2d2ec2b04f3d8d3c8b"
2245dependencies = [
2246 "bitflags 2.11.1",
2247 "core-foundation",
2248 "system-configuration-sys",
2249]
2250
2251[[package]]
2252name = "system-configuration-sys"
2253version = "0.6.0"
2254source = "registry+https://github.com/rust-lang/crates.io-index"
2255checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2256dependencies = [
2257 "core-foundation-sys",
2258 "libc",
2259]
2260
2261[[package]]
2262name = "tagptr"
2263version = "0.2.0"
2264source = "registry+https://github.com/rust-lang/crates.io-index"
2265checksum = "7b2093cf4c8eb1e67749a6762251bc9cd836b6fc171623bd0a9d324d37af2417"
2266
2267[[package]]
2268name = "tempfile"
2269version = "3.27.0"
2270source = "registry+https://github.com/rust-lang/crates.io-index"
2271checksum = "32497e9a4c7b38532efcdebeef879707aa9f794296a4f0244f6f69e9bc8574bd"
2272dependencies = [
2273 "fastrand",
2274 "getrandom 0.4.2",
2275 "once_cell",
2276 "rustix",
2277 "windows-sys 0.61.2",
2278]
2279
2280[[package]]
2281name = "thiserror"
2282version = "1.0.69"
2283source = "registry+https://github.com/rust-lang/crates.io-index"
2284checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2285dependencies = [
2286 "thiserror-impl 1.0.69",
2287]
2288
2289[[package]]
2290name = "thiserror"
2291version = "2.0.18"
2292source = "registry+https://github.com/rust-lang/crates.io-index"
2293checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
2294dependencies = [
2295 "thiserror-impl 2.0.18",
2296]
2297
2298[[package]]
2299name = "thiserror-impl"
2300version = "1.0.69"
2301source = "registry+https://github.com/rust-lang/crates.io-index"
2302checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2303dependencies = [
2304 "proc-macro2",
2305 "quote",
2306 "syn",
2307]
2308
2309[[package]]
2310name = "thiserror-impl"
2311version = "2.0.18"
2312source = "registry+https://github.com/rust-lang/crates.io-index"
2313checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
2314dependencies = [
2315 "proc-macro2",
2316 "quote",
2317 "syn",
2318]
2319
2320[[package]]
2321name = "thread_local"
2322version = "1.1.9"
2323source = "registry+https://github.com/rust-lang/crates.io-index"
2324checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2325dependencies = [
2326 "cfg-if",
2327]
2328
2329[[package]]
2330name = "time"
2331version = "0.3.47"
2332source = "registry+https://github.com/rust-lang/crates.io-index"
2333checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
2334dependencies = [
2335 "deranged",
2336 "num-conv",
2337 "powerfmt",
2338 "serde_core",
2339 "time-core",
2340]
2341
2342[[package]]
2343name = "time-core"
2344version = "0.1.8"
2345source = "registry+https://github.com/rust-lang/crates.io-index"
2346checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
2347
2348[[package]]
2349name = "tinystr"
2350version = "0.8.3"
2351source = "registry+https://github.com/rust-lang/crates.io-index"
2352checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d"
2353dependencies = [
2354 "displaydoc",
2355 "zerovec",
2356]
2357
2358[[package]]
2359name = "tinyvec"
2360version = "1.11.0"
2361source = "registry+https://github.com/rust-lang/crates.io-index"
2362checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3"
2363dependencies = [
2364 "tinyvec_macros",
2365]
2366
2367[[package]]
2368name = "tinyvec_macros"
2369version = "0.1.1"
2370source = "registry+https://github.com/rust-lang/crates.io-index"
2371checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2372
2373[[package]]
2374name = "tokio"
2375version = "1.52.3"
2376source = "registry+https://github.com/rust-lang/crates.io-index"
2377checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe"
2378dependencies = [
2379 "bytes",
2380 "libc",
2381 "mio 1.2.1",
2382 "pin-project-lite",
2383 "signal-hook-registry",
2384 "socket2",
2385 "tokio-macros",
2386 "windows-sys 0.61.2",
2387]
2388
2389[[package]]
2390name = "tokio-macros"
2391version = "2.7.0"
2392source = "registry+https://github.com/rust-lang/crates.io-index"
2393checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496"
2394dependencies = [
2395 "proc-macro2",
2396 "quote",
2397 "syn",
2398]
2399
2400[[package]]
2401name = "tokio-rustls"
2402version = "0.26.4"
2403source = "registry+https://github.com/rust-lang/crates.io-index"
2404checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
2405dependencies = [
2406 "rustls",
2407 "tokio",
2408]
2409
2410[[package]]
2411name = "tokio-tungstenite"
2412version = "0.29.0"
2413source = "registry+https://github.com/rust-lang/crates.io-index"
2414checksum = "8f72a05e828585856dacd553fba484c242c46e391fb0e58917c942ee9202915c"
2415dependencies = [
2416 "futures-util",
2417 "log",
2418 "tokio",
2419 "tungstenite",
2420]
2421
2422[[package]]
2423name = "tokio-util"
2424version = "0.7.18"
2425source = "registry+https://github.com/rust-lang/crates.io-index"
2426checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
2427dependencies = [
2428 "bytes",
2429 "futures-core",
2430 "futures-sink",
2431 "pin-project-lite",
2432 "tokio",
2433]
2434
2435[[package]]
2436name = "tower"
2437version = "0.5.3"
2438source = "registry+https://github.com/rust-lang/crates.io-index"
2439checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
2440dependencies = [
2441 "futures-core",
2442 "futures-util",
2443 "pin-project-lite",
2444 "sync_wrapper",
2445 "tokio",
2446 "tower-layer",
2447 "tower-service",
2448]
2449
2450[[package]]
2451name = "tower-layer"
2452version = "0.3.3"
2453source = "registry+https://github.com/rust-lang/crates.io-index"
2454checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2455
2456[[package]]
2457name = "tower-service"
2458version = "0.3.3"
2459source = "registry+https://github.com/rust-lang/crates.io-index"
2460checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2461
2462[[package]]
2463name = "tracing"
2464version = "0.1.44"
2465source = "registry+https://github.com/rust-lang/crates.io-index"
2466checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
2467dependencies = [
2468 "pin-project-lite",
2469 "tracing-attributes",
2470 "tracing-core",
2471]
2472
2473[[package]]
2474name = "tracing-attributes"
2475version = "0.1.31"
2476source = "registry+https://github.com/rust-lang/crates.io-index"
2477checksum = "7490cfa5ec963746568740651ac6781f701c9c5ea257c58e057f3ba8cf69e8da"
2478dependencies = [
2479 "proc-macro2",
2480 "quote",
2481 "syn",
2482]
2483
2484[[package]]
2485name = "tracing-core"
2486version = "0.1.36"
2487source = "registry+https://github.com/rust-lang/crates.io-index"
2488checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
2489dependencies = [
2490 "once_cell",
2491 "valuable",
2492]
2493
2494[[package]]
2495name = "tracing-log"
2496version = "0.2.0"
2497source = "registry+https://github.com/rust-lang/crates.io-index"
2498checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2499dependencies = [
2500 "log",
2501 "once_cell",
2502 "tracing-core",
2503]
2504
2505[[package]]
2506name = "tracing-subscriber"
2507version = "0.3.23"
2508source = "registry+https://github.com/rust-lang/crates.io-index"
2509checksum = "cb7f578e5945fb242538965c2d0b04418d38ec25c79d160cd279bf0731c8d319"
2510dependencies = [
2511 "matchers",
2512 "nu-ansi-term",
2513 "once_cell",
2514 "regex-automata",
2515 "sharded-slab",
2516 "smallvec",
2517 "thread_local",
2518 "tracing",
2519 "tracing-core",
2520 "tracing-log",
2521]
2522
2523[[package]]
2524name = "tungstenite"
2525version = "0.29.0"
2526source = "registry+https://github.com/rust-lang/crates.io-index"
2527checksum = "6c01152af293afb9c7c2a57e4b559c5620b421f6d133261c60dd2d0cdb38e6b8"
2528dependencies = [
2529 "bytes",
2530 "data-encoding",
2531 "http",
2532 "httparse",
2533 "log",
2534 "rand 0.9.4",
2535 "sha1",
2536 "thiserror 2.0.18",
2537]
2538
2539[[package]]
2540name = "typenum"
2541version = "1.20.1"
2542source = "registry+https://github.com/rust-lang/crates.io-index"
2543checksum = "b6f5e870be6c3b371b77fe0ee0bafb859fa4964b4404c27de1d380043c4dda20"
2544
2545[[package]]
2546name = "unarray"
2547version = "0.1.4"
2548source = "registry+https://github.com/rust-lang/crates.io-index"
2549checksum = "eaea85b334db583fe3274d12b4cd1880032beab409c0d774be044d4480ab9a94"
2550
2551[[package]]
2552name = "unicode-ident"
2553version = "1.0.24"
2554source = "registry+https://github.com/rust-lang/crates.io-index"
2555checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
2556
2557[[package]]
2558name = "unicode-segmentation"
2559version = "1.13.3"
2560source = "registry+https://github.com/rust-lang/crates.io-index"
2561checksum = "c6f5d3c3b1bf09027a88a6bc961fc00497d651009560b5463668dc81b0fa87a8"
2562
2563[[package]]
2564name = "unicode-width"
2565version = "0.1.14"
2566source = "registry+https://github.com/rust-lang/crates.io-index"
2567checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2568
2569[[package]]
2570name = "unicode-xid"
2571version = "0.2.6"
2572source = "registry+https://github.com/rust-lang/crates.io-index"
2573checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2574
2575[[package]]
2576name = "untrusted"
2577version = "0.9.0"
2578source = "registry+https://github.com/rust-lang/crates.io-index"
2579checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2580
2581[[package]]
2582name = "url"
2583version = "2.5.8"
2584source = "registry+https://github.com/rust-lang/crates.io-index"
2585checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed"
2586dependencies = [
2587 "form_urlencoded",
2588 "idna",
2589 "percent-encoding",
2590 "serde",
2591]
2592
2593[[package]]
2594name = "utf8_iter"
2595version = "1.0.4"
2596source = "registry+https://github.com/rust-lang/crates.io-index"
2597checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2598
2599[[package]]
2600name = "utf8parse"
2601version = "0.2.2"
2602source = "registry+https://github.com/rust-lang/crates.io-index"
2603checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2604
2605[[package]]
2606name = "uuid"
2607version = "1.23.3"
2608source = "registry+https://github.com/rust-lang/crates.io-index"
2609checksum = "144d6b123cef80b301b8f72a9e2ca4370ddec21950d0a103dd22c437006d2db7"
2610dependencies = [
2611 "getrandom 0.4.2",
2612 "js-sys",
2613 "wasm-bindgen",
2614]
2615
2616[[package]]
2617name = "valuable"
2618version = "0.1.1"
2619source = "registry+https://github.com/rust-lang/crates.io-index"
2620checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2621
2622[[package]]
2623name = "vcpkg"
2624version = "0.2.15"
2625source = "registry+https://github.com/rust-lang/crates.io-index"
2626checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2627
2628[[package]]
2629name = "version_check"
2630version = "0.9.5"
2631source = "registry+https://github.com/rust-lang/crates.io-index"
2632checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2633
2634[[package]]
2635name = "wait-timeout"
2636version = "0.2.1"
2637source = "registry+https://github.com/rust-lang/crates.io-index"
2638checksum = "09ac3b126d3914f9849036f826e054cbabdc8519970b8998ddaf3b5bd3c65f11"
2639dependencies = [
2640 "libc",
2641]
2642
2643[[package]]
2644name = "walkdir"
2645version = "2.5.0"
2646source = "registry+https://github.com/rust-lang/crates.io-index"
2647checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2648dependencies = [
2649 "same-file",
2650 "winapi-util",
2651]
2652
2653[[package]]
2654name = "wasi"
2655version = "0.11.1+wasi-snapshot-preview1"
2656source = "registry+https://github.com/rust-lang/crates.io-index"
2657checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
2658
2659[[package]]
2660name = "wasip2"
2661version = "1.0.3+wasi-0.2.9"
2662source = "registry+https://github.com/rust-lang/crates.io-index"
2663checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
2664dependencies = [
2665 "wit-bindgen 0.57.1",
2666]
2667
2668[[package]]
2669name = "wasip3"
2670version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
2671source = "registry+https://github.com/rust-lang/crates.io-index"
2672checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
2673dependencies = [
2674 "wit-bindgen 0.51.0",
2675]
2676
2677[[package]]
2678name = "wasm-bindgen"
2679version = "0.2.123"
2680source = "registry+https://github.com/rust-lang/crates.io-index"
2681checksum = "a254a4b10c19a76f09a27640e7ffbf9bc30bf67e16a3bf28aaefa4920fe81563"
2682dependencies = [
2683 "cfg-if",
2684 "once_cell",
2685 "rustversion",
2686 "wasm-bindgen-macro",
2687 "wasm-bindgen-shared",
2688]
2689
2690[[package]]
2691name = "wasm-bindgen-macro"
2692version = "0.2.123"
2693source = "registry+https://github.com/rust-lang/crates.io-index"
2694checksum = "24a40fc75b0ec6f3746ceb10d36f53a93dcd68a93b11b6445983945d79eba0dc"
2695dependencies = [
2696 "quote",
2697 "wasm-bindgen-macro-support",
2698]
2699
2700[[package]]
2701name = "wasm-bindgen-macro-support"
2702version = "0.2.123"
2703source = "registry+https://github.com/rust-lang/crates.io-index"
2704checksum = "908f34bd9b9ce3d4caf07b72dfab63d61504d156856c6bd3cd87fa350cf3985b"
2705dependencies = [
2706 "bumpalo",
2707 "proc-macro2",
2708 "quote",
2709 "syn",
2710 "wasm-bindgen-shared",
2711]
2712
2713[[package]]
2714name = "wasm-bindgen-shared"
2715version = "0.2.123"
2716source = "registry+https://github.com/rust-lang/crates.io-index"
2717checksum = "7acbf7616c27b194bbb550bf77ed0c2c3e5b7fd1260a93082b95fb7f47959b92"
2718dependencies = [
2719 "unicode-ident",
2720]
2721
2722[[package]]
2723name = "wasm-encoder"
2724version = "0.244.0"
2725source = "registry+https://github.com/rust-lang/crates.io-index"
2726checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
2727dependencies = [
2728 "leb128fmt",
2729 "wasmparser",
2730]
2731
2732[[package]]
2733name = "wasm-metadata"
2734version = "0.244.0"
2735source = "registry+https://github.com/rust-lang/crates.io-index"
2736checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
2737dependencies = [
2738 "anyhow",
2739 "indexmap",
2740 "wasm-encoder",
2741 "wasmparser",
2742]
2743
2744[[package]]
2745name = "wasmparser"
2746version = "0.244.0"
2747source = "registry+https://github.com/rust-lang/crates.io-index"
2748checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
2749dependencies = [
2750 "bitflags 2.11.1",
2751 "hashbrown 0.15.5",
2752 "indexmap",
2753 "semver",
2754]
2755
2756[[package]]
2757name = "widestring"
2758version = "1.2.1"
2759source = "registry+https://github.com/rust-lang/crates.io-index"
2760checksum = "72069c3113ab32ab29e5584db3c6ec55d416895e60715417b5b883a357c3e471"
2761
2762[[package]]
2763name = "winapi-util"
2764version = "0.1.11"
2765source = "registry+https://github.com/rust-lang/crates.io-index"
2766checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
2767dependencies = [
2768 "windows-sys 0.61.2",
2769]
2770
2771[[package]]
2772name = "windows-link"
2773version = "0.2.1"
2774source = "registry+https://github.com/rust-lang/crates.io-index"
2775checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
2776
2777[[package]]
2778name = "windows-registry"
2779version = "0.6.1"
2780source = "registry+https://github.com/rust-lang/crates.io-index"
2781checksum = "02752bf7fbdcce7f2a27a742f798510f3e5ad88dbe84871e5168e2120c3d5720"
2782dependencies = [
2783 "windows-link",
2784 "windows-result",
2785 "windows-strings",
2786]
2787
2788[[package]]
2789name = "windows-result"
2790version = "0.4.1"
2791source = "registry+https://github.com/rust-lang/crates.io-index"
2792checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5"
2793dependencies = [
2794 "windows-link",
2795]
2796
2797[[package]]
2798name = "windows-strings"
2799version = "0.5.1"
2800source = "registry+https://github.com/rust-lang/crates.io-index"
2801checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091"
2802dependencies = [
2803 "windows-link",
2804]
2805
2806[[package]]
2807name = "windows-sys"
2808version = "0.48.0"
2809source = "registry+https://github.com/rust-lang/crates.io-index"
2810checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2811dependencies = [
2812 "windows-targets 0.48.5",
2813]
2814
2815[[package]]
2816name = "windows-sys"
2817version = "0.52.0"
2818source = "registry+https://github.com/rust-lang/crates.io-index"
2819checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2820dependencies = [
2821 "windows-targets 0.52.6",
2822]
2823
2824[[package]]
2825name = "windows-sys"
2826version = "0.61.2"
2827source = "registry+https://github.com/rust-lang/crates.io-index"
2828checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
2829dependencies = [
2830 "windows-link",
2831]
2832
2833[[package]]
2834name = "windows-targets"
2835version = "0.48.5"
2836source = "registry+https://github.com/rust-lang/crates.io-index"
2837checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2838dependencies = [
2839 "windows_aarch64_gnullvm 0.48.5",
2840 "windows_aarch64_msvc 0.48.5",
2841 "windows_i686_gnu 0.48.5",
2842 "windows_i686_msvc 0.48.5",
2843 "windows_x86_64_gnu 0.48.5",
2844 "windows_x86_64_gnullvm 0.48.5",
2845 "windows_x86_64_msvc 0.48.5",
2846]
2847
2848[[package]]
2849name = "windows-targets"
2850version = "0.52.6"
2851source = "registry+https://github.com/rust-lang/crates.io-index"
2852checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2853dependencies = [
2854 "windows_aarch64_gnullvm 0.52.6",
2855 "windows_aarch64_msvc 0.52.6",
2856 "windows_i686_gnu 0.52.6",
2857 "windows_i686_gnullvm",
2858 "windows_i686_msvc 0.52.6",
2859 "windows_x86_64_gnu 0.52.6",
2860 "windows_x86_64_gnullvm 0.52.6",
2861 "windows_x86_64_msvc 0.52.6",
2862]
2863
2864[[package]]
2865name = "windows_aarch64_gnullvm"
2866version = "0.48.5"
2867source = "registry+https://github.com/rust-lang/crates.io-index"
2868checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2869
2870[[package]]
2871name = "windows_aarch64_gnullvm"
2872version = "0.52.6"
2873source = "registry+https://github.com/rust-lang/crates.io-index"
2874checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2875
2876[[package]]
2877name = "windows_aarch64_msvc"
2878version = "0.48.5"
2879source = "registry+https://github.com/rust-lang/crates.io-index"
2880checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2881
2882[[package]]
2883name = "windows_aarch64_msvc"
2884version = "0.52.6"
2885source = "registry+https://github.com/rust-lang/crates.io-index"
2886checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2887
2888[[package]]
2889name = "windows_i686_gnu"
2890version = "0.48.5"
2891source = "registry+https://github.com/rust-lang/crates.io-index"
2892checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2893
2894[[package]]
2895name = "windows_i686_gnu"
2896version = "0.52.6"
2897source = "registry+https://github.com/rust-lang/crates.io-index"
2898checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2899
2900[[package]]
2901name = "windows_i686_gnullvm"
2902version = "0.52.6"
2903source = "registry+https://github.com/rust-lang/crates.io-index"
2904checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2905
2906[[package]]
2907name = "windows_i686_msvc"
2908version = "0.48.5"
2909source = "registry+https://github.com/rust-lang/crates.io-index"
2910checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2911
2912[[package]]
2913name = "windows_i686_msvc"
2914version = "0.52.6"
2915source = "registry+https://github.com/rust-lang/crates.io-index"
2916checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2917
2918[[package]]
2919name = "windows_x86_64_gnu"
2920version = "0.48.5"
2921source = "registry+https://github.com/rust-lang/crates.io-index"
2922checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2923
2924[[package]]
2925name = "windows_x86_64_gnu"
2926version = "0.52.6"
2927source = "registry+https://github.com/rust-lang/crates.io-index"
2928checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2929
2930[[package]]
2931name = "windows_x86_64_gnullvm"
2932version = "0.48.5"
2933source = "registry+https://github.com/rust-lang/crates.io-index"
2934checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2935
2936[[package]]
2937name = "windows_x86_64_gnullvm"
2938version = "0.52.6"
2939source = "registry+https://github.com/rust-lang/crates.io-index"
2940checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2941
2942[[package]]
2943name = "windows_x86_64_msvc"
2944version = "0.48.5"
2945source = "registry+https://github.com/rust-lang/crates.io-index"
2946checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2947
2948[[package]]
2949name = "windows_x86_64_msvc"
2950version = "0.52.6"
2951source = "registry+https://github.com/rust-lang/crates.io-index"
2952checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2953
2954[[package]]
2955name = "winnow"
2956version = "0.7.15"
2957source = "registry+https://github.com/rust-lang/crates.io-index"
2958checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945"
2959dependencies = [
2960 "memchr",
2961]
2962
2963[[package]]
2964name = "wit-bindgen"
2965version = "0.51.0"
2966source = "registry+https://github.com/rust-lang/crates.io-index"
2967checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
2968dependencies = [
2969 "wit-bindgen-rust-macro",
2970]
2971
2972[[package]]
2973name = "wit-bindgen"
2974version = "0.57.1"
2975source = "registry+https://github.com/rust-lang/crates.io-index"
2976checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
2977
2978[[package]]
2979name = "wit-bindgen-core"
2980version = "0.51.0"
2981source = "registry+https://github.com/rust-lang/crates.io-index"
2982checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
2983dependencies = [
2984 "anyhow",
2985 "heck",
2986 "wit-parser",
2987]
2988
2989[[package]]
2990name = "wit-bindgen-rust"
2991version = "0.51.0"
2992source = "registry+https://github.com/rust-lang/crates.io-index"
2993checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
2994dependencies = [
2995 "anyhow",
2996 "heck",
2997 "indexmap",
2998 "prettyplease",
2999 "syn",
3000 "wasm-metadata",
3001 "wit-bindgen-core",
3002 "wit-component",
3003]
3004
3005[[package]]
3006name = "wit-bindgen-rust-macro"
3007version = "0.51.0"
3008source = "registry+https://github.com/rust-lang/crates.io-index"
3009checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
3010dependencies = [
3011 "anyhow",
3012 "prettyplease",
3013 "proc-macro2",
3014 "quote",
3015 "syn",
3016 "wit-bindgen-core",
3017 "wit-bindgen-rust",
3018]
3019
3020[[package]]
3021name = "wit-component"
3022version = "0.244.0"
3023source = "registry+https://github.com/rust-lang/crates.io-index"
3024checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
3025dependencies = [
3026 "anyhow",
3027 "bitflags 2.11.1",
3028 "indexmap",
3029 "log",
3030 "serde",
3031 "serde_derive",
3032 "serde_json",
3033 "wasm-encoder",
3034 "wasm-metadata",
3035 "wasmparser",
3036 "wit-parser",
3037]
3038
3039[[package]]
3040name = "wit-parser"
3041version = "0.244.0"
3042source = "registry+https://github.com/rust-lang/crates.io-index"
3043checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
3044dependencies = [
3045 "anyhow",
3046 "id-arena",
3047 "indexmap",
3048 "log",
3049 "semver",
3050 "serde",
3051 "serde_derive",
3052 "serde_json",
3053 "unicode-xid",
3054 "wasmparser",
3055]
3056
3057[[package]]
3058name = "writeable"
3059version = "0.6.3"
3060source = "registry+https://github.com/rust-lang/crates.io-index"
3061checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4"
3062
3063[[package]]
3064name = "yasna"
3065version = "0.5.2"
3066source = "registry+https://github.com/rust-lang/crates.io-index"
3067checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
3068dependencies = [
3069 "time",
3070]
3071
3072[[package]]
3073name = "yoke"
3074version = "0.8.3"
3075source = "registry+https://github.com/rust-lang/crates.io-index"
3076checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5"
3077dependencies = [
3078 "stable_deref_trait",
3079 "yoke-derive",
3080 "zerofrom",
3081]
3082
3083[[package]]
3084name = "yoke-derive"
3085version = "0.8.2"
3086source = "registry+https://github.com/rust-lang/crates.io-index"
3087checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e"
3088dependencies = [
3089 "proc-macro2",
3090 "quote",
3091 "syn",
3092 "synstructure",
3093]
3094
3095[[package]]
3096name = "zerocopy"
3097version = "0.8.50"
3098source = "registry+https://github.com/rust-lang/crates.io-index"
3099checksum = "3b065d4f0e55f82fae73202e189638116a87c55ab6b8e6c2721e13dd9d854ad1"
3100dependencies = [
3101 "zerocopy-derive",
3102]
3103
3104[[package]]
3105name = "zerocopy-derive"
3106version = "0.8.50"
3107source = "registry+https://github.com/rust-lang/crates.io-index"
3108checksum = "0b631b19d36a892ab55420c92dbc83ccd79274f25be714855d3074aa71cab639"
3109dependencies = [
3110 "proc-macro2",
3111 "quote",
3112 "syn",
3113]
3114
3115[[package]]
3116name = "zerofrom"
3117version = "0.1.8"
3118source = "registry+https://github.com/rust-lang/crates.io-index"
3119checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272"
3120dependencies = [
3121 "zerofrom-derive",
3122]
3123
3124[[package]]
3125name = "zerofrom-derive"
3126version = "0.1.7"
3127source = "registry+https://github.com/rust-lang/crates.io-index"
3128checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1"
3129dependencies = [
3130 "proc-macro2",
3131 "quote",
3132 "syn",
3133 "synstructure",
3134]
3135
3136[[package]]
3137name = "zeroize"
3138version = "1.8.2"
3139source = "registry+https://github.com/rust-lang/crates.io-index"
3140checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
3141
3142[[package]]
3143name = "zerotrie"
3144version = "0.2.4"
3145source = "registry+https://github.com/rust-lang/crates.io-index"
3146checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf"
3147dependencies = [
3148 "displaydoc",
3149 "yoke",
3150 "zerofrom",
3151]
3152
3153[[package]]
3154name = "zerovec"
3155version = "0.11.6"
3156source = "registry+https://github.com/rust-lang/crates.io-index"
3157checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239"
3158dependencies = [
3159 "yoke",
3160 "zerofrom",
3161 "zerovec-derive",
3162]
3163
3164[[package]]
3165name = "zerovec-derive"
3166version = "0.11.3"
3167source = "registry+https://github.com/rust-lang/crates.io-index"
3168checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555"
3169dependencies = [
3170 "proc-macro2",
3171 "quote",
3172 "syn",
3173]
3174
3175[[package]]
3176name = "zmij"
3177version = "1.0.21"
3178source = "registry+https://github.com/rust-lang/crates.io-index"
3179checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"