summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-03-07 12:30:37 +0800
committerYour Name <you@example.com>2026-03-07 12:30:37 +0800
commita0e83cd1ee46d79636b8ad737210e5d3bebcc4f1 (patch)
tree25d379ad9c1c89441fcdd10879b0039cbec9315d /Cargo.lock
fileserver: HTTPS file server with drag-and-drop upload
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock1408
1 files changed, 1408 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
new file mode 100644
index 0000000..1cfee8b
--- /dev/null
+++ b/Cargo.lock
@@ -0,0 +1,1408 @@
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "anstream"
7version = "0.6.21"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "43d5b281e737544384e969a5ccad3f1cdd24b48086a0fc1b2a5262a26b8f4f4a"
10dependencies = [
11 "anstyle",
12 "anstyle-parse",
13 "anstyle-query",
14 "anstyle-wincon",
15 "colorchoice",
16 "is_terminal_polyfill",
17 "utf8parse",
18]
19
20[[package]]
21name = "anstyle"
22version = "1.0.13"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78"
25
26[[package]]
27name = "anstyle-parse"
28version = "0.2.7"
29source = "registry+https://github.com/rust-lang/crates.io-index"
30checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
31dependencies = [
32 "utf8parse",
33]
34
35[[package]]
36name = "anstyle-query"
37version = "1.1.5"
38source = "registry+https://github.com/rust-lang/crates.io-index"
39checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc"
40dependencies = [
41 "windows-sys 0.61.2",
42]
43
44[[package]]
45name = "anstyle-wincon"
46version = "3.0.11"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d"
49dependencies = [
50 "anstyle",
51 "once_cell_polyfill",
52 "windows-sys 0.61.2",
53]
54
55[[package]]
56name = "asn1-rs"
57version = "0.7.1"
58source = "registry+https://github.com/rust-lang/crates.io-index"
59checksum = "56624a96882bb8c26d61312ae18cb45868e5a9992ea73c58e45c3101e56a1e60"
60dependencies = [
61 "asn1-rs-derive",
62 "asn1-rs-impl",
63 "displaydoc",
64 "nom",
65 "num-traits",
66 "rusticata-macros",
67 "thiserror",
68 "time",
69]
70
71[[package]]
72name = "asn1-rs-derive"
73version = "0.6.0"
74source = "registry+https://github.com/rust-lang/crates.io-index"
75checksum = "3109e49b1e4909e9db6515a30c633684d68cdeaa252f215214cb4fa1a5bfee2c"
76dependencies = [
77 "proc-macro2",
78 "quote",
79 "syn",
80 "synstructure",
81]
82
83[[package]]
84name = "asn1-rs-impl"
85version = "0.2.0"
86source = "registry+https://github.com/rust-lang/crates.io-index"
87checksum = "7b18050c2cd6fe86c3a76584ef5e0baf286d038cda203eb6223df2cc413565f7"
88dependencies = [
89 "proc-macro2",
90 "quote",
91 "syn",
92]
93
94[[package]]
95name = "atomic-waker"
96version = "1.1.2"
97source = "registry+https://github.com/rust-lang/crates.io-index"
98checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
99
100[[package]]
101name = "autocfg"
102version = "1.5.0"
103source = "registry+https://github.com/rust-lang/crates.io-index"
104checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
105
106[[package]]
107name = "aws-lc-rs"
108version = "1.16.1"
109source = "registry+https://github.com/rust-lang/crates.io-index"
110checksum = "94bffc006df10ac2a68c83692d734a465f8ee6c5b384d8545a636f81d858f4bf"
111dependencies = [
112 "aws-lc-sys",
113 "zeroize",
114]
115
116[[package]]
117name = "aws-lc-sys"
118version = "0.38.0"
119source = "registry+https://github.com/rust-lang/crates.io-index"
120checksum = "4321e568ed89bb5a7d291a7f37997c2c0df89809d7b6d12062c81ddb54aa782e"
121dependencies = [
122 "cc",
123 "cmake",
124 "dunce",
125 "fs_extra",
126]
127
128[[package]]
129name = "axum"
130version = "0.8.8"
131source = "registry+https://github.com/rust-lang/crates.io-index"
132checksum = "8b52af3cb4058c895d37317bb27508dccc8e5f2d39454016b297bf4a400597b8"
133dependencies = [
134 "axum-core",
135 "bytes",
136 "form_urlencoded",
137 "futures-util",
138 "http",
139 "http-body",
140 "http-body-util",
141 "hyper",
142 "hyper-util",
143 "itoa",
144 "matchit",
145 "memchr",
146 "mime",
147 "multer",
148 "percent-encoding",
149 "pin-project-lite",
150 "serde_core",
151 "serde_json",
152 "serde_path_to_error",
153 "serde_urlencoded",
154 "sync_wrapper",
155 "tokio",
156 "tower",
157 "tower-layer",
158 "tower-service",
159 "tracing",
160]
161
162[[package]]
163name = "axum-core"
164version = "0.5.6"
165source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "08c78f31d7b1291f7ee735c1c6780ccde7785daae9a9206026862dab7d8792d1"
167dependencies = [
168 "bytes",
169 "futures-core",
170 "http",
171 "http-body",
172 "http-body-util",
173 "mime",
174 "pin-project-lite",
175 "sync_wrapper",
176 "tower-layer",
177 "tower-service",
178 "tracing",
179]
180
181[[package]]
182name = "base64"
183version = "0.22.1"
184source = "registry+https://github.com/rust-lang/crates.io-index"
185checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
186
187[[package]]
188name = "bitflags"
189version = "2.11.0"
190source = "registry+https://github.com/rust-lang/crates.io-index"
191checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af"
192
193[[package]]
194name = "bytes"
195version = "1.11.1"
196source = "registry+https://github.com/rust-lang/crates.io-index"
197checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33"
198
199[[package]]
200name = "cc"
201version = "1.2.56"
202source = "registry+https://github.com/rust-lang/crates.io-index"
203checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2"
204dependencies = [
205 "find-msvc-tools",
206 "jobserver",
207 "libc",
208 "shlex",
209]
210
211[[package]]
212name = "cfg-if"
213version = "1.0.4"
214source = "registry+https://github.com/rust-lang/crates.io-index"
215checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
216
217[[package]]
218name = "clap"
219version = "4.5.60"
220source = "registry+https://github.com/rust-lang/crates.io-index"
221checksum = "2797f34da339ce31042b27d23607e051786132987f595b02ba4f6a6dffb7030a"
222dependencies = [
223 "clap_builder",
224 "clap_derive",
225]
226
227[[package]]
228name = "clap_builder"
229version = "4.5.60"
230source = "registry+https://github.com/rust-lang/crates.io-index"
231checksum = "24a241312cea5059b13574bb9b3861cabf758b879c15190b37b6d6fd63ab6876"
232dependencies = [
233 "anstream",
234 "anstyle",
235 "clap_lex",
236 "strsim",
237]
238
239[[package]]
240name = "clap_derive"
241version = "4.5.55"
242source = "registry+https://github.com/rust-lang/crates.io-index"
243checksum = "a92793da1a46a5f2a02a6f4c46c6496b28c43638adea8306fcb0caa1634f24e5"
244dependencies = [
245 "heck",
246 "proc-macro2",
247 "quote",
248 "syn",
249]
250
251[[package]]
252name = "clap_lex"
253version = "1.0.0"
254source = "registry+https://github.com/rust-lang/crates.io-index"
255checksum = "3a822ea5bc7590f9d40f1ba12c0dc3c2760f3482c6984db1573ad11031420831"
256
257[[package]]
258name = "cmake"
259version = "0.1.57"
260source = "registry+https://github.com/rust-lang/crates.io-index"
261checksum = "75443c44cd6b379beb8c5b45d85d0773baf31cce901fe7bb252f4eff3008ef7d"
262dependencies = [
263 "cc",
264]
265
266[[package]]
267name = "colorchoice"
268version = "1.0.4"
269source = "registry+https://github.com/rust-lang/crates.io-index"
270checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
271
272[[package]]
273name = "data-encoding"
274version = "2.10.0"
275source = "registry+https://github.com/rust-lang/crates.io-index"
276checksum = "d7a1e2f27636f116493b8b860f5546edb47c8d8f8ea73e1d2a20be88e28d1fea"
277
278[[package]]
279name = "der-parser"
280version = "10.0.0"
281source = "registry+https://github.com/rust-lang/crates.io-index"
282checksum = "07da5016415d5a3c4dd39b11ed26f915f52fc4e0dc197d87908bc916e51bc1a6"
283dependencies = [
284 "asn1-rs",
285 "displaydoc",
286 "nom",
287 "num-bigint",
288 "num-traits",
289 "rusticata-macros",
290]
291
292[[package]]
293name = "deranged"
294version = "0.5.8"
295source = "registry+https://github.com/rust-lang/crates.io-index"
296checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c"
297dependencies = [
298 "powerfmt",
299]
300
301[[package]]
302name = "displaydoc"
303version = "0.2.5"
304source = "registry+https://github.com/rust-lang/crates.io-index"
305checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
306dependencies = [
307 "proc-macro2",
308 "quote",
309 "syn",
310]
311
312[[package]]
313name = "dunce"
314version = "1.0.5"
315source = "registry+https://github.com/rust-lang/crates.io-index"
316checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
317
318[[package]]
319name = "encoding_rs"
320version = "0.8.35"
321source = "registry+https://github.com/rust-lang/crates.io-index"
322checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
323dependencies = [
324 "cfg-if",
325]
326
327[[package]]
328name = "equivalent"
329version = "1.0.2"
330source = "registry+https://github.com/rust-lang/crates.io-index"
331checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
332
333[[package]]
334name = "errno"
335version = "0.3.14"
336source = "registry+https://github.com/rust-lang/crates.io-index"
337checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
338dependencies = [
339 "libc",
340 "windows-sys 0.61.2",
341]
342
343[[package]]
344name = "fileserver"
345version = "0.0.0"
346dependencies = [
347 "axum",
348 "base64",
349 "clap",
350 "hyper-util",
351 "libc",
352 "mime_guess",
353 "percent-encoding",
354 "rcgen",
355 "rustls",
356 "rustls-pemfile",
357 "tokio",
358 "tokio-rustls",
359]
360
361[[package]]
362name = "find-msvc-tools"
363version = "0.1.9"
364source = "registry+https://github.com/rust-lang/crates.io-index"
365checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
366
367[[package]]
368name = "fnv"
369version = "1.0.7"
370source = "registry+https://github.com/rust-lang/crates.io-index"
371checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
372
373[[package]]
374name = "form_urlencoded"
375version = "1.2.2"
376source = "registry+https://github.com/rust-lang/crates.io-index"
377checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf"
378dependencies = [
379 "percent-encoding",
380]
381
382[[package]]
383name = "fs_extra"
384version = "1.3.0"
385source = "registry+https://github.com/rust-lang/crates.io-index"
386checksum = "42703706b716c37f96a77aea830392ad231f44c9e9a67872fa5548707e11b11c"
387
388[[package]]
389name = "futures-channel"
390version = "0.3.32"
391source = "registry+https://github.com/rust-lang/crates.io-index"
392checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d"
393dependencies = [
394 "futures-core",
395]
396
397[[package]]
398name = "futures-core"
399version = "0.3.32"
400source = "registry+https://github.com/rust-lang/crates.io-index"
401checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
402
403[[package]]
404name = "futures-sink"
405version = "0.3.32"
406source = "registry+https://github.com/rust-lang/crates.io-index"
407checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893"
408
409[[package]]
410name = "futures-task"
411version = "0.3.32"
412source = "registry+https://github.com/rust-lang/crates.io-index"
413checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
414
415[[package]]
416name = "futures-util"
417version = "0.3.32"
418source = "registry+https://github.com/rust-lang/crates.io-index"
419checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
420dependencies = [
421 "futures-core",
422 "futures-task",
423 "pin-project-lite",
424 "slab",
425]
426
427[[package]]
428name = "getrandom"
429version = "0.2.17"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0"
432dependencies = [
433 "cfg-if",
434 "libc",
435 "wasi",
436]
437
438[[package]]
439name = "getrandom"
440version = "0.3.4"
441source = "registry+https://github.com/rust-lang/crates.io-index"
442checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd"
443dependencies = [
444 "cfg-if",
445 "libc",
446 "r-efi",
447 "wasip2",
448]
449
450[[package]]
451name = "h2"
452version = "0.4.13"
453source = "registry+https://github.com/rust-lang/crates.io-index"
454checksum = "2f44da3a8150a6703ed5d34e164b875fd14c2cdab9af1252a9a1020bde2bdc54"
455dependencies = [
456 "atomic-waker",
457 "bytes",
458 "fnv",
459 "futures-core",
460 "futures-sink",
461 "http",
462 "indexmap",
463 "slab",
464 "tokio",
465 "tokio-util",
466 "tracing",
467]
468
469[[package]]
470name = "hashbrown"
471version = "0.16.1"
472source = "registry+https://github.com/rust-lang/crates.io-index"
473checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
474
475[[package]]
476name = "heck"
477version = "0.5.0"
478source = "registry+https://github.com/rust-lang/crates.io-index"
479checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
480
481[[package]]
482name = "http"
483version = "1.4.0"
484source = "registry+https://github.com/rust-lang/crates.io-index"
485checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a"
486dependencies = [
487 "bytes",
488 "itoa",
489]
490
491[[package]]
492name = "http-body"
493version = "1.0.1"
494source = "registry+https://github.com/rust-lang/crates.io-index"
495checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
496dependencies = [
497 "bytes",
498 "http",
499]
500
501[[package]]
502name = "http-body-util"
503version = "0.1.3"
504source = "registry+https://github.com/rust-lang/crates.io-index"
505checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
506dependencies = [
507 "bytes",
508 "futures-core",
509 "http",
510 "http-body",
511 "pin-project-lite",
512]
513
514[[package]]
515name = "httparse"
516version = "1.10.1"
517source = "registry+https://github.com/rust-lang/crates.io-index"
518checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
519
520[[package]]
521name = "httpdate"
522version = "1.0.3"
523source = "registry+https://github.com/rust-lang/crates.io-index"
524checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
525
526[[package]]
527name = "hyper"
528version = "1.8.1"
529source = "registry+https://github.com/rust-lang/crates.io-index"
530checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11"
531dependencies = [
532 "atomic-waker",
533 "bytes",
534 "futures-channel",
535 "futures-core",
536 "h2",
537 "http",
538 "http-body",
539 "httparse",
540 "httpdate",
541 "itoa",
542 "pin-project-lite",
543 "pin-utils",
544 "smallvec",
545 "tokio",
546]
547
548[[package]]
549name = "hyper-util"
550version = "0.1.20"
551source = "registry+https://github.com/rust-lang/crates.io-index"
552checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0"
553dependencies = [
554 "bytes",
555 "http",
556 "http-body",
557 "hyper",
558 "pin-project-lite",
559 "tokio",
560 "tower-service",
561]
562
563[[package]]
564name = "indexmap"
565version = "2.13.0"
566source = "registry+https://github.com/rust-lang/crates.io-index"
567checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017"
568dependencies = [
569 "equivalent",
570 "hashbrown",
571]
572
573[[package]]
574name = "is_terminal_polyfill"
575version = "1.70.2"
576source = "registry+https://github.com/rust-lang/crates.io-index"
577checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695"
578
579[[package]]
580name = "itoa"
581version = "1.0.17"
582source = "registry+https://github.com/rust-lang/crates.io-index"
583checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2"
584
585[[package]]
586name = "jobserver"
587version = "0.1.34"
588source = "registry+https://github.com/rust-lang/crates.io-index"
589checksum = "9afb3de4395d6b3e67a780b6de64b51c978ecf11cb9a462c66be7d4ca9039d33"
590dependencies = [
591 "getrandom 0.3.4",
592 "libc",
593]
594
595[[package]]
596name = "lazy_static"
597version = "1.5.0"
598source = "registry+https://github.com/rust-lang/crates.io-index"
599checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
600
601[[package]]
602name = "libc"
603version = "0.2.182"
604source = "registry+https://github.com/rust-lang/crates.io-index"
605checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112"
606
607[[package]]
608name = "lock_api"
609version = "0.4.14"
610source = "registry+https://github.com/rust-lang/crates.io-index"
611checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965"
612dependencies = [
613 "scopeguard",
614]
615
616[[package]]
617name = "log"
618version = "0.4.29"
619source = "registry+https://github.com/rust-lang/crates.io-index"
620checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
621
622[[package]]
623name = "matchit"
624version = "0.8.4"
625source = "registry+https://github.com/rust-lang/crates.io-index"
626checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
627
628[[package]]
629name = "memchr"
630version = "2.8.0"
631source = "registry+https://github.com/rust-lang/crates.io-index"
632checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
633
634[[package]]
635name = "mime"
636version = "0.3.17"
637source = "registry+https://github.com/rust-lang/crates.io-index"
638checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
639
640[[package]]
641name = "mime_guess"
642version = "2.0.5"
643source = "registry+https://github.com/rust-lang/crates.io-index"
644checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
645dependencies = [
646 "mime",
647 "unicase",
648]
649
650[[package]]
651name = "minimal-lexical"
652version = "0.2.1"
653source = "registry+https://github.com/rust-lang/crates.io-index"
654checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
655
656[[package]]
657name = "mio"
658version = "1.1.1"
659source = "registry+https://github.com/rust-lang/crates.io-index"
660checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc"
661dependencies = [
662 "libc",
663 "wasi",
664 "windows-sys 0.61.2",
665]
666
667[[package]]
668name = "multer"
669version = "3.1.0"
670source = "registry+https://github.com/rust-lang/crates.io-index"
671checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b"
672dependencies = [
673 "bytes",
674 "encoding_rs",
675 "futures-util",
676 "http",
677 "httparse",
678 "memchr",
679 "mime",
680 "spin",
681 "version_check",
682]
683
684[[package]]
685name = "nom"
686version = "7.1.3"
687source = "registry+https://github.com/rust-lang/crates.io-index"
688checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
689dependencies = [
690 "memchr",
691 "minimal-lexical",
692]
693
694[[package]]
695name = "num-bigint"
696version = "0.4.6"
697source = "registry+https://github.com/rust-lang/crates.io-index"
698checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
699dependencies = [
700 "num-integer",
701 "num-traits",
702]
703
704[[package]]
705name = "num-conv"
706version = "0.2.0"
707source = "registry+https://github.com/rust-lang/crates.io-index"
708checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050"
709
710[[package]]
711name = "num-integer"
712version = "0.1.46"
713source = "registry+https://github.com/rust-lang/crates.io-index"
714checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
715dependencies = [
716 "num-traits",
717]
718
719[[package]]
720name = "num-traits"
721version = "0.2.19"
722source = "registry+https://github.com/rust-lang/crates.io-index"
723checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
724dependencies = [
725 "autocfg",
726]
727
728[[package]]
729name = "oid-registry"
730version = "0.8.1"
731source = "registry+https://github.com/rust-lang/crates.io-index"
732checksum = "12f40cff3dde1b6087cc5d5f5d4d65712f34016a03ed60e9c08dcc392736b5b7"
733dependencies = [
734 "asn1-rs",
735]
736
737[[package]]
738name = "once_cell"
739version = "1.21.3"
740source = "registry+https://github.com/rust-lang/crates.io-index"
741checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
742
743[[package]]
744name = "once_cell_polyfill"
745version = "1.70.2"
746source = "registry+https://github.com/rust-lang/crates.io-index"
747checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe"
748
749[[package]]
750name = "parking_lot"
751version = "0.12.5"
752source = "registry+https://github.com/rust-lang/crates.io-index"
753checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a"
754dependencies = [
755 "lock_api",
756 "parking_lot_core",
757]
758
759[[package]]
760name = "parking_lot_core"
761version = "0.9.12"
762source = "registry+https://github.com/rust-lang/crates.io-index"
763checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1"
764dependencies = [
765 "cfg-if",
766 "libc",
767 "redox_syscall",
768 "smallvec",
769 "windows-link",
770]
771
772[[package]]
773name = "pem"
774version = "3.0.6"
775source = "registry+https://github.com/rust-lang/crates.io-index"
776checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
777dependencies = [
778 "base64",
779 "serde_core",
780]
781
782[[package]]
783name = "percent-encoding"
784version = "2.3.2"
785source = "registry+https://github.com/rust-lang/crates.io-index"
786checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220"
787
788[[package]]
789name = "pin-project-lite"
790version = "0.2.17"
791source = "registry+https://github.com/rust-lang/crates.io-index"
792checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
793
794[[package]]
795name = "pin-utils"
796version = "0.1.0"
797source = "registry+https://github.com/rust-lang/crates.io-index"
798checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
799
800[[package]]
801name = "powerfmt"
802version = "0.2.0"
803source = "registry+https://github.com/rust-lang/crates.io-index"
804checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
805
806[[package]]
807name = "proc-macro2"
808version = "1.0.106"
809source = "registry+https://github.com/rust-lang/crates.io-index"
810checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
811dependencies = [
812 "unicode-ident",
813]
814
815[[package]]
816name = "quote"
817version = "1.0.45"
818source = "registry+https://github.com/rust-lang/crates.io-index"
819checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
820dependencies = [
821 "proc-macro2",
822]
823
824[[package]]
825name = "r-efi"
826version = "5.3.0"
827source = "registry+https://github.com/rust-lang/crates.io-index"
828checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
829
830[[package]]
831name = "rcgen"
832version = "0.14.7"
833source = "registry+https://github.com/rust-lang/crates.io-index"
834checksum = "10b99e0098aa4082912d4c649628623db6aba77335e4f4569ff5083a6448b32e"
835dependencies = [
836 "pem",
837 "ring",
838 "rustls-pki-types",
839 "time",
840 "x509-parser",
841 "yasna",
842]
843
844[[package]]
845name = "redox_syscall"
846version = "0.5.18"
847source = "registry+https://github.com/rust-lang/crates.io-index"
848checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d"
849dependencies = [
850 "bitflags",
851]
852
853[[package]]
854name = "ring"
855version = "0.17.14"
856source = "registry+https://github.com/rust-lang/crates.io-index"
857checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
858dependencies = [
859 "cc",
860 "cfg-if",
861 "getrandom 0.2.17",
862 "libc",
863 "untrusted",
864 "windows-sys 0.52.0",
865]
866
867[[package]]
868name = "rusticata-macros"
869version = "4.1.0"
870source = "registry+https://github.com/rust-lang/crates.io-index"
871checksum = "faf0c4a6ece9950b9abdb62b1cfcf2a68b3b67a10ba445b3bb85be2a293d0632"
872dependencies = [
873 "nom",
874]
875
876[[package]]
877name = "rustls"
878version = "0.23.37"
879source = "registry+https://github.com/rust-lang/crates.io-index"
880checksum = "758025cb5fccfd3bc2fd74708fd4682be41d99e5dff73c377c0646c6012c73a4"
881dependencies = [
882 "aws-lc-rs",
883 "log",
884 "once_cell",
885 "rustls-pki-types",
886 "rustls-webpki",
887 "subtle",
888 "zeroize",
889]
890
891[[package]]
892name = "rustls-pemfile"
893version = "2.2.0"
894source = "registry+https://github.com/rust-lang/crates.io-index"
895checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
896dependencies = [
897 "rustls-pki-types",
898]
899
900[[package]]
901name = "rustls-pki-types"
902version = "1.14.0"
903source = "registry+https://github.com/rust-lang/crates.io-index"
904checksum = "be040f8b0a225e40375822a563fa9524378b9d63112f53e19ffff34df5d33fdd"
905dependencies = [
906 "zeroize",
907]
908
909[[package]]
910name = "rustls-webpki"
911version = "0.103.9"
912source = "registry+https://github.com/rust-lang/crates.io-index"
913checksum = "d7df23109aa6c1567d1c575b9952556388da57401e4ace1d15f79eedad0d8f53"
914dependencies = [
915 "aws-lc-rs",
916 "ring",
917 "rustls-pki-types",
918 "untrusted",
919]
920
921[[package]]
922name = "ryu"
923version = "1.0.23"
924source = "registry+https://github.com/rust-lang/crates.io-index"
925checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f"
926
927[[package]]
928name = "scopeguard"
929version = "1.2.0"
930source = "registry+https://github.com/rust-lang/crates.io-index"
931checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
932
933[[package]]
934name = "serde"
935version = "1.0.228"
936source = "registry+https://github.com/rust-lang/crates.io-index"
937checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
938dependencies = [
939 "serde_core",
940]
941
942[[package]]
943name = "serde_core"
944version = "1.0.228"
945source = "registry+https://github.com/rust-lang/crates.io-index"
946checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
947dependencies = [
948 "serde_derive",
949]
950
951[[package]]
952name = "serde_derive"
953version = "1.0.228"
954source = "registry+https://github.com/rust-lang/crates.io-index"
955checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
956dependencies = [
957 "proc-macro2",
958 "quote",
959 "syn",
960]
961
962[[package]]
963name = "serde_json"
964version = "1.0.149"
965source = "registry+https://github.com/rust-lang/crates.io-index"
966checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
967dependencies = [
968 "itoa",
969 "memchr",
970 "serde",
971 "serde_core",
972 "zmij",
973]
974
975[[package]]
976name = "serde_path_to_error"
977version = "0.1.20"
978source = "registry+https://github.com/rust-lang/crates.io-index"
979checksum = "10a9ff822e371bb5403e391ecd83e182e0e77ba7f6fe0160b795797109d1b457"
980dependencies = [
981 "itoa",
982 "serde",
983 "serde_core",
984]
985
986[[package]]
987name = "serde_urlencoded"
988version = "0.7.1"
989source = "registry+https://github.com/rust-lang/crates.io-index"
990checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
991dependencies = [
992 "form_urlencoded",
993 "itoa",
994 "ryu",
995 "serde",
996]
997
998[[package]]
999name = "shlex"
1000version = "1.3.0"
1001source = "registry+https://github.com/rust-lang/crates.io-index"
1002checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1003
1004[[package]]
1005name = "signal-hook-registry"
1006version = "1.4.8"
1007source = "registry+https://github.com/rust-lang/crates.io-index"
1008checksum = "c4db69cba1110affc0e9f7bcd48bbf87b3f4fc7c61fc9155afd4c469eb3d6c1b"
1009dependencies = [
1010 "errno",
1011 "libc",
1012]
1013
1014[[package]]
1015name = "slab"
1016version = "0.4.12"
1017source = "registry+https://github.com/rust-lang/crates.io-index"
1018checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
1019
1020[[package]]
1021name = "smallvec"
1022version = "1.15.1"
1023source = "registry+https://github.com/rust-lang/crates.io-index"
1024checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1025
1026[[package]]
1027name = "socket2"
1028version = "0.6.3"
1029source = "registry+https://github.com/rust-lang/crates.io-index"
1030checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e"
1031dependencies = [
1032 "libc",
1033 "windows-sys 0.61.2",
1034]
1035
1036[[package]]
1037name = "spin"
1038version = "0.9.8"
1039source = "registry+https://github.com/rust-lang/crates.io-index"
1040checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1041
1042[[package]]
1043name = "strsim"
1044version = "0.11.1"
1045source = "registry+https://github.com/rust-lang/crates.io-index"
1046checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1047
1048[[package]]
1049name = "subtle"
1050version = "2.6.1"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1053
1054[[package]]
1055name = "syn"
1056version = "2.0.117"
1057source = "registry+https://github.com/rust-lang/crates.io-index"
1058checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
1059dependencies = [
1060 "proc-macro2",
1061 "quote",
1062 "unicode-ident",
1063]
1064
1065[[package]]
1066name = "sync_wrapper"
1067version = "1.0.2"
1068source = "registry+https://github.com/rust-lang/crates.io-index"
1069checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
1070
1071[[package]]
1072name = "synstructure"
1073version = "0.13.2"
1074source = "registry+https://github.com/rust-lang/crates.io-index"
1075checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1076dependencies = [
1077 "proc-macro2",
1078 "quote",
1079 "syn",
1080]
1081
1082[[package]]
1083name = "thiserror"
1084version = "2.0.18"
1085source = "registry+https://github.com/rust-lang/crates.io-index"
1086checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
1087dependencies = [
1088 "thiserror-impl",
1089]
1090
1091[[package]]
1092name = "thiserror-impl"
1093version = "2.0.18"
1094source = "registry+https://github.com/rust-lang/crates.io-index"
1095checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
1096dependencies = [
1097 "proc-macro2",
1098 "quote",
1099 "syn",
1100]
1101
1102[[package]]
1103name = "time"
1104version = "0.3.47"
1105source = "registry+https://github.com/rust-lang/crates.io-index"
1106checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c"
1107dependencies = [
1108 "deranged",
1109 "itoa",
1110 "num-conv",
1111 "powerfmt",
1112 "serde_core",
1113 "time-core",
1114 "time-macros",
1115]
1116
1117[[package]]
1118name = "time-core"
1119version = "0.1.8"
1120source = "registry+https://github.com/rust-lang/crates.io-index"
1121checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca"
1122
1123[[package]]
1124name = "time-macros"
1125version = "0.2.27"
1126source = "registry+https://github.com/rust-lang/crates.io-index"
1127checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215"
1128dependencies = [
1129 "num-conv",
1130 "time-core",
1131]
1132
1133[[package]]
1134name = "tokio"
1135version = "1.50.0"
1136source = "registry+https://github.com/rust-lang/crates.io-index"
1137checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d"
1138dependencies = [
1139 "bytes",
1140 "libc",
1141 "mio",
1142 "parking_lot",
1143 "pin-project-lite",
1144 "signal-hook-registry",
1145 "socket2",
1146 "tokio-macros",
1147 "windows-sys 0.61.2",
1148]
1149
1150[[package]]
1151name = "tokio-macros"
1152version = "2.6.1"
1153source = "registry+https://github.com/rust-lang/crates.io-index"
1154checksum = "5c55a2eff8b69ce66c84f85e1da1c233edc36ceb85a2058d11b0d6a3c7e7569c"
1155dependencies = [
1156 "proc-macro2",
1157 "quote",
1158 "syn",
1159]
1160
1161[[package]]
1162name = "tokio-rustls"
1163version = "0.26.4"
1164source = "registry+https://github.com/rust-lang/crates.io-index"
1165checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61"
1166dependencies = [
1167 "rustls",
1168 "tokio",
1169]
1170
1171[[package]]
1172name = "tokio-util"
1173version = "0.7.18"
1174source = "registry+https://github.com/rust-lang/crates.io-index"
1175checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098"
1176dependencies = [
1177 "bytes",
1178 "futures-core",
1179 "futures-sink",
1180 "pin-project-lite",
1181 "tokio",
1182]
1183
1184[[package]]
1185name = "tower"
1186version = "0.5.3"
1187source = "registry+https://github.com/rust-lang/crates.io-index"
1188checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4"
1189dependencies = [
1190 "futures-core",
1191 "futures-util",
1192 "pin-project-lite",
1193 "sync_wrapper",
1194 "tokio",
1195 "tower-layer",
1196 "tower-service",
1197 "tracing",
1198]
1199
1200[[package]]
1201name = "tower-layer"
1202version = "0.3.3"
1203source = "registry+https://github.com/rust-lang/crates.io-index"
1204checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
1205
1206[[package]]
1207name = "tower-service"
1208version = "0.3.3"
1209source = "registry+https://github.com/rust-lang/crates.io-index"
1210checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1211
1212[[package]]
1213name = "tracing"
1214version = "0.1.44"
1215source = "registry+https://github.com/rust-lang/crates.io-index"
1216checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100"
1217dependencies = [
1218 "log",
1219 "pin-project-lite",
1220 "tracing-core",
1221]
1222
1223[[package]]
1224name = "tracing-core"
1225version = "0.1.36"
1226source = "registry+https://github.com/rust-lang/crates.io-index"
1227checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a"
1228dependencies = [
1229 "once_cell",
1230]
1231
1232[[package]]
1233name = "unicase"
1234version = "2.9.0"
1235source = "registry+https://github.com/rust-lang/crates.io-index"
1236checksum = "dbc4bc3a9f746d862c45cb89d705aa10f187bb96c76001afab07a0d35ce60142"
1237
1238[[package]]
1239name = "unicode-ident"
1240version = "1.0.24"
1241source = "registry+https://github.com/rust-lang/crates.io-index"
1242checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1243
1244[[package]]
1245name = "untrusted"
1246version = "0.9.0"
1247source = "registry+https://github.com/rust-lang/crates.io-index"
1248checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
1249
1250[[package]]
1251name = "utf8parse"
1252version = "0.2.2"
1253source = "registry+https://github.com/rust-lang/crates.io-index"
1254checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
1255
1256[[package]]
1257name = "version_check"
1258version = "0.9.5"
1259source = "registry+https://github.com/rust-lang/crates.io-index"
1260checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
1261
1262[[package]]
1263name = "wasi"
1264version = "0.11.1+wasi-snapshot-preview1"
1265source = "registry+https://github.com/rust-lang/crates.io-index"
1266checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
1267
1268[[package]]
1269name = "wasip2"
1270version = "1.0.2+wasi-0.2.9"
1271source = "registry+https://github.com/rust-lang/crates.io-index"
1272checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5"
1273dependencies = [
1274 "wit-bindgen",
1275]
1276
1277[[package]]
1278name = "windows-link"
1279version = "0.2.1"
1280source = "registry+https://github.com/rust-lang/crates.io-index"
1281checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
1282
1283[[package]]
1284name = "windows-sys"
1285version = "0.52.0"
1286source = "registry+https://github.com/rust-lang/crates.io-index"
1287checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
1288dependencies = [
1289 "windows-targets",
1290]
1291
1292[[package]]
1293name = "windows-sys"
1294version = "0.61.2"
1295source = "registry+https://github.com/rust-lang/crates.io-index"
1296checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
1297dependencies = [
1298 "windows-link",
1299]
1300
1301[[package]]
1302name = "windows-targets"
1303version = "0.52.6"
1304source = "registry+https://github.com/rust-lang/crates.io-index"
1305checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
1306dependencies = [
1307 "windows_aarch64_gnullvm",
1308 "windows_aarch64_msvc",
1309 "windows_i686_gnu",
1310 "windows_i686_gnullvm",
1311 "windows_i686_msvc",
1312 "windows_x86_64_gnu",
1313 "windows_x86_64_gnullvm",
1314 "windows_x86_64_msvc",
1315]
1316
1317[[package]]
1318name = "windows_aarch64_gnullvm"
1319version = "0.52.6"
1320source = "registry+https://github.com/rust-lang/crates.io-index"
1321checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
1322
1323[[package]]
1324name = "windows_aarch64_msvc"
1325version = "0.52.6"
1326source = "registry+https://github.com/rust-lang/crates.io-index"
1327checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
1328
1329[[package]]
1330name = "windows_i686_gnu"
1331version = "0.52.6"
1332source = "registry+https://github.com/rust-lang/crates.io-index"
1333checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
1334
1335[[package]]
1336name = "windows_i686_gnullvm"
1337version = "0.52.6"
1338source = "registry+https://github.com/rust-lang/crates.io-index"
1339checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
1340
1341[[package]]
1342name = "windows_i686_msvc"
1343version = "0.52.6"
1344source = "registry+https://github.com/rust-lang/crates.io-index"
1345checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
1346
1347[[package]]
1348name = "windows_x86_64_gnu"
1349version = "0.52.6"
1350source = "registry+https://github.com/rust-lang/crates.io-index"
1351checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
1352
1353[[package]]
1354name = "windows_x86_64_gnullvm"
1355version = "0.52.6"
1356source = "registry+https://github.com/rust-lang/crates.io-index"
1357checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
1358
1359[[package]]
1360name = "windows_x86_64_msvc"
1361version = "0.52.6"
1362source = "registry+https://github.com/rust-lang/crates.io-index"
1363checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
1364
1365[[package]]
1366name = "wit-bindgen"
1367version = "0.51.0"
1368source = "registry+https://github.com/rust-lang/crates.io-index"
1369checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
1370
1371[[package]]
1372name = "x509-parser"
1373version = "0.18.1"
1374source = "registry+https://github.com/rust-lang/crates.io-index"
1375checksum = "d43b0f71ce057da06bc0851b23ee24f3f86190b07203dd8f567d0b706a185202"
1376dependencies = [
1377 "asn1-rs",
1378 "data-encoding",
1379 "der-parser",
1380 "lazy_static",
1381 "nom",
1382 "oid-registry",
1383 "ring",
1384 "rusticata-macros",
1385 "thiserror",
1386 "time",
1387]
1388
1389[[package]]
1390name = "yasna"
1391version = "0.5.2"
1392source = "registry+https://github.com/rust-lang/crates.io-index"
1393checksum = "e17bb3549cc1321ae1296b9cdc2698e2b6cb1992adfa19a8c72e5b7a738f44cd"
1394dependencies = [
1395 "time",
1396]
1397
1398[[package]]
1399name = "zeroize"
1400version = "1.8.2"
1401source = "registry+https://github.com/rust-lang/crates.io-index"
1402checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
1403
1404[[package]]
1405name = "zmij"
1406version = "1.0.21"
1407source = "registry+https://github.com/rust-lang/crates.io-index"
1408checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"