forked from
baileytownsend.dev/pds-gatekeeper
Microservice to bring 2FA to self hosted PDSes
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "addr2line"
7version = "0.24.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10dependencies = [
11 "gimli",
12]
13
14[[package]]
15name = "adler2"
16version = "2.0.1"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
19
20[[package]]
21name = "ahash"
22version = "0.8.12"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "5a15f179cd60c4584b8a8c596927aadc462e27f2ca70c04e0071964a73ba7a75"
25dependencies = [
26 "cfg-if",
27 "once_cell",
28 "version_check",
29 "zerocopy",
30]
31
32[[package]]
33name = "aho-corasick"
34version = "1.1.3"
35source = "registry+https://github.com/rust-lang/crates.io-index"
36checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
37dependencies = [
38 "memchr",
39]
40
41[[package]]
42name = "allocator-api2"
43version = "0.2.21"
44source = "registry+https://github.com/rust-lang/crates.io-index"
45checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
46
47[[package]]
48name = "android-tzdata"
49version = "0.1.1"
50source = "registry+https://github.com/rust-lang/crates.io-index"
51checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
52
53[[package]]
54name = "android_system_properties"
55version = "0.1.5"
56source = "registry+https://github.com/rust-lang/crates.io-index"
57checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
58dependencies = [
59 "libc",
60]
61
62[[package]]
63name = "anyhow"
64version = "1.0.99"
65source = "registry+https://github.com/rust-lang/crates.io-index"
66checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100"
67
68[[package]]
69name = "async-compression"
70version = "0.4.27"
71source = "registry+https://github.com/rust-lang/crates.io-index"
72checksum = "ddb939d66e4ae03cee6091612804ba446b12878410cfa17f785f4dd67d4014e8"
73dependencies = [
74 "futures-core",
75 "memchr",
76 "pin-project-lite",
77 "tokio",
78 "zstd",
79 "zstd-safe",
80]
81
82[[package]]
83name = "async-trait"
84version = "0.1.89"
85source = "registry+https://github.com/rust-lang/crates.io-index"
86checksum = "9035ad2d096bed7955a320ee7e2230574d28fd3c3a0f186cbea1ff3c7eed5dbb"
87dependencies = [
88 "proc-macro2",
89 "quote",
90 "syn",
91]
92
93[[package]]
94name = "atoi"
95version = "2.0.0"
96source = "registry+https://github.com/rust-lang/crates.io-index"
97checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
98dependencies = [
99 "num-traits",
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.0"
111source = "registry+https://github.com/rust-lang/crates.io-index"
112checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
113
114[[package]]
115name = "axum"
116version = "0.8.4"
117source = "registry+https://github.com/rust-lang/crates.io-index"
118checksum = "021e862c184ae977658b36c4500f7feac3221ca5da43e3f25bd04ab6c79a29b5"
119dependencies = [
120 "axum-core",
121 "axum-macros",
122 "bytes",
123 "form_urlencoded",
124 "futures-util",
125 "http",
126 "http-body",
127 "http-body-util",
128 "hyper",
129 "hyper-util",
130 "itoa",
131 "matchit",
132 "memchr",
133 "mime",
134 "percent-encoding",
135 "pin-project-lite",
136 "rustversion",
137 "serde",
138 "serde_json",
139 "serde_path_to_error",
140 "serde_urlencoded",
141 "sync_wrapper",
142 "tokio",
143 "tower",
144 "tower-layer",
145 "tower-service",
146 "tracing",
147]
148
149[[package]]
150name = "axum-core"
151version = "0.5.2"
152source = "registry+https://github.com/rust-lang/crates.io-index"
153checksum = "68464cd0412f486726fb3373129ef5d2993f90c34bc2bc1c1e9943b2f4fc7ca6"
154dependencies = [
155 "bytes",
156 "futures-core",
157 "http",
158 "http-body",
159 "http-body-util",
160 "mime",
161 "pin-project-lite",
162 "rustversion",
163 "sync_wrapper",
164 "tower-layer",
165 "tower-service",
166 "tracing",
167]
168
169[[package]]
170name = "axum-macros"
171version = "0.5.0"
172source = "registry+https://github.com/rust-lang/crates.io-index"
173checksum = "604fde5e028fea851ce1d8570bbdc034bec850d157f7569d10f347d06808c05c"
174dependencies = [
175 "proc-macro2",
176 "quote",
177 "syn",
178]
179
180[[package]]
181name = "axum-template"
182version = "3.0.0"
183source = "registry+https://github.com/rust-lang/crates.io-index"
184checksum = "3df50f7d669bfc3a8c348f08f536fe37e7acfbeded3cfdffd2ad3d76725fc40c"
185dependencies = [
186 "axum",
187 "handlebars",
188 "serde",
189 "thiserror 2.0.14",
190]
191
192[[package]]
193name = "backtrace"
194version = "0.3.75"
195source = "registry+https://github.com/rust-lang/crates.io-index"
196checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
197dependencies = [
198 "addr2line",
199 "cfg-if",
200 "libc",
201 "miniz_oxide",
202 "object",
203 "rustc-demangle",
204 "windows-targets 0.52.6",
205]
206
207[[package]]
208name = "base64"
209version = "0.22.1"
210source = "registry+https://github.com/rust-lang/crates.io-index"
211checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
212
213[[package]]
214name = "base64ct"
215version = "1.8.0"
216source = "registry+https://github.com/rust-lang/crates.io-index"
217checksum = "55248b47b0caf0546f7988906588779981c43bb1bc9d0c44087278f80cdb44ba"
218
219[[package]]
220name = "bitflags"
221version = "2.9.1"
222source = "registry+https://github.com/rust-lang/crates.io-index"
223checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
224dependencies = [
225 "serde",
226]
227
228[[package]]
229name = "block-buffer"
230version = "0.10.4"
231source = "registry+https://github.com/rust-lang/crates.io-index"
232checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
233dependencies = [
234 "generic-array",
235]
236
237[[package]]
238name = "bstr"
239version = "1.12.0"
240source = "registry+https://github.com/rust-lang/crates.io-index"
241checksum = "234113d19d0d7d613b40e86fb654acf958910802bcceab913a4f9e7cda03b1a4"
242dependencies = [
243 "memchr",
244 "serde",
245]
246
247[[package]]
248name = "bumpalo"
249version = "3.19.0"
250source = "registry+https://github.com/rust-lang/crates.io-index"
251checksum = "46c5e41b57b8bba42a04676d81cb89e9ee8e859a1a66f80a5a72e1cb76b34d43"
252
253[[package]]
254name = "byteorder"
255version = "1.5.0"
256source = "registry+https://github.com/rust-lang/crates.io-index"
257checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
258
259[[package]]
260name = "bytes"
261version = "1.10.1"
262source = "registry+https://github.com/rust-lang/crates.io-index"
263checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
264
265[[package]]
266name = "cc"
267version = "1.2.32"
268source = "registry+https://github.com/rust-lang/crates.io-index"
269checksum = "2352e5597e9c544d5e6d9c95190d5d27738ade584fa8db0a16e130e5c2b5296e"
270dependencies = [
271 "jobserver",
272 "libc",
273 "shlex",
274]
275
276[[package]]
277name = "cfg-if"
278version = "1.0.1"
279source = "registry+https://github.com/rust-lang/crates.io-index"
280checksum = "9555578bc9e57714c812a1f84e4fc5b4d21fcb063490c624de019f7464c91268"
281
282[[package]]
283name = "chrono"
284version = "0.4.41"
285source = "registry+https://github.com/rust-lang/crates.io-index"
286checksum = "c469d952047f47f91b68d1cba3f10d63c11d73e4636f24f08daf0278abf01c4d"
287dependencies = [
288 "android-tzdata",
289 "iana-time-zone",
290 "num-traits",
291 "windows-link",
292]
293
294[[package]]
295name = "chumsky"
296version = "0.9.3"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "8eebd66744a15ded14960ab4ccdbfb51ad3b81f51f3f04a80adac98c985396c9"
299dependencies = [
300 "hashbrown 0.14.5",
301 "stacker",
302]
303
304[[package]]
305name = "ciborium"
306version = "0.2.2"
307source = "registry+https://github.com/rust-lang/crates.io-index"
308checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
309dependencies = [
310 "ciborium-io",
311 "ciborium-ll",
312 "serde",
313]
314
315[[package]]
316name = "ciborium-io"
317version = "0.2.2"
318source = "registry+https://github.com/rust-lang/crates.io-index"
319checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
320
321[[package]]
322name = "ciborium-ll"
323version = "0.2.2"
324source = "registry+https://github.com/rust-lang/crates.io-index"
325checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
326dependencies = [
327 "ciborium-io",
328 "half",
329]
330
331[[package]]
332name = "cipher"
333version = "0.4.4"
334source = "registry+https://github.com/rust-lang/crates.io-index"
335checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
336dependencies = [
337 "crypto-common",
338 "inout",
339]
340
341[[package]]
342name = "concurrent-queue"
343version = "2.5.0"
344source = "registry+https://github.com/rust-lang/crates.io-index"
345checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
346dependencies = [
347 "crossbeam-utils",
348]
349
350[[package]]
351name = "const-oid"
352version = "0.9.6"
353source = "registry+https://github.com/rust-lang/crates.io-index"
354checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
355
356[[package]]
357name = "core-foundation"
358version = "0.9.4"
359source = "registry+https://github.com/rust-lang/crates.io-index"
360checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
361dependencies = [
362 "core-foundation-sys",
363 "libc",
364]
365
366[[package]]
367name = "core-foundation-sys"
368version = "0.8.7"
369source = "registry+https://github.com/rust-lang/crates.io-index"
370checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
371
372[[package]]
373name = "cpufeatures"
374version = "0.2.17"
375source = "registry+https://github.com/rust-lang/crates.io-index"
376checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
377dependencies = [
378 "libc",
379]
380
381[[package]]
382name = "crc"
383version = "3.3.0"
384source = "registry+https://github.com/rust-lang/crates.io-index"
385checksum = "9710d3b3739c2e349eb44fe848ad0b7c8cb1e42bd87ee49371df2f7acaf3e675"
386dependencies = [
387 "crc-catalog",
388]
389
390[[package]]
391name = "crc-catalog"
392version = "2.4.0"
393source = "registry+https://github.com/rust-lang/crates.io-index"
394checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
395
396[[package]]
397name = "crossbeam-queue"
398version = "0.3.12"
399source = "registry+https://github.com/rust-lang/crates.io-index"
400checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
401dependencies = [
402 "crossbeam-utils",
403]
404
405[[package]]
406name = "crossbeam-utils"
407version = "0.8.21"
408source = "registry+https://github.com/rust-lang/crates.io-index"
409checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
410
411[[package]]
412name = "crunchy"
413version = "0.2.4"
414source = "registry+https://github.com/rust-lang/crates.io-index"
415checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
416
417[[package]]
418name = "crypto-common"
419version = "0.1.6"
420source = "registry+https://github.com/rust-lang/crates.io-index"
421checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
422dependencies = [
423 "generic-array",
424 "typenum",
425]
426
427[[package]]
428name = "darling"
429version = "0.20.11"
430source = "registry+https://github.com/rust-lang/crates.io-index"
431checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
432dependencies = [
433 "darling_core",
434 "darling_macro",
435]
436
437[[package]]
438name = "darling_core"
439version = "0.20.11"
440source = "registry+https://github.com/rust-lang/crates.io-index"
441checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
442dependencies = [
443 "fnv",
444 "ident_case",
445 "proc-macro2",
446 "quote",
447 "strsim",
448 "syn",
449]
450
451[[package]]
452name = "darling_macro"
453version = "0.20.11"
454source = "registry+https://github.com/rust-lang/crates.io-index"
455checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
456dependencies = [
457 "darling_core",
458 "quote",
459 "syn",
460]
461
462[[package]]
463name = "dashmap"
464version = "6.1.0"
465source = "registry+https://github.com/rust-lang/crates.io-index"
466checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
467dependencies = [
468 "cfg-if",
469 "crossbeam-utils",
470 "hashbrown 0.14.5",
471 "lock_api",
472 "once_cell",
473 "parking_lot_core",
474]
475
476[[package]]
477name = "der"
478version = "0.7.10"
479source = "registry+https://github.com/rust-lang/crates.io-index"
480checksum = "e7c1832837b905bbfb5101e07cc24c8deddf52f93225eee6ead5f4d63d53ddcb"
481dependencies = [
482 "const-oid",
483 "pem-rfc7468",
484 "zeroize",
485]
486
487[[package]]
488name = "derive_builder"
489version = "0.20.2"
490source = "registry+https://github.com/rust-lang/crates.io-index"
491checksum = "507dfb09ea8b7fa618fcf76e953f4f5e192547945816d5358edffe39f6f94947"
492dependencies = [
493 "derive_builder_macro",
494]
495
496[[package]]
497name = "derive_builder_core"
498version = "0.20.2"
499source = "registry+https://github.com/rust-lang/crates.io-index"
500checksum = "2d5bcf7b024d6835cfb3d473887cd966994907effbe9227e8c8219824d06c4e8"
501dependencies = [
502 "darling",
503 "proc-macro2",
504 "quote",
505 "syn",
506]
507
508[[package]]
509name = "derive_builder_macro"
510version = "0.20.2"
511source = "registry+https://github.com/rust-lang/crates.io-index"
512checksum = "ab63b0e2bf4d5928aff72e83a7dace85d7bba5fe12dcc3c5a572d78caffd3f3c"
513dependencies = [
514 "derive_builder_core",
515 "syn",
516]
517
518[[package]]
519name = "digest"
520version = "0.10.7"
521source = "registry+https://github.com/rust-lang/crates.io-index"
522checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
523dependencies = [
524 "block-buffer",
525 "const-oid",
526 "crypto-common",
527 "subtle",
528]
529
530[[package]]
531name = "displaydoc"
532version = "0.2.5"
533source = "registry+https://github.com/rust-lang/crates.io-index"
534checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
535dependencies = [
536 "proc-macro2",
537 "quote",
538 "syn",
539]
540
541[[package]]
542name = "dotenvy"
543version = "0.15.7"
544source = "registry+https://github.com/rust-lang/crates.io-index"
545checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
546
547[[package]]
548name = "either"
549version = "1.15.0"
550source = "registry+https://github.com/rust-lang/crates.io-index"
551checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
552dependencies = [
553 "serde",
554]
555
556[[package]]
557name = "email-encoding"
558version = "0.4.1"
559source = "registry+https://github.com/rust-lang/crates.io-index"
560checksum = "9298e6504d9b9e780ed3f7dfd43a61be8cd0e09eb07f7706a945b0072b6670b6"
561dependencies = [
562 "base64",
563 "memchr",
564]
565
566[[package]]
567name = "email_address"
568version = "0.2.9"
569source = "registry+https://github.com/rust-lang/crates.io-index"
570checksum = "e079f19b08ca6239f47f8ba8509c11cf3ea30095831f7fed61441475edd8c449"
571
572[[package]]
573name = "equivalent"
574version = "1.0.2"
575source = "registry+https://github.com/rust-lang/crates.io-index"
576checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
577
578[[package]]
579name = "errno"
580version = "0.3.13"
581source = "registry+https://github.com/rust-lang/crates.io-index"
582checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
583dependencies = [
584 "libc",
585 "windows-sys 0.59.0",
586]
587
588[[package]]
589name = "etcetera"
590version = "0.8.0"
591source = "registry+https://github.com/rust-lang/crates.io-index"
592checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
593dependencies = [
594 "cfg-if",
595 "home",
596 "windows-sys 0.48.0",
597]
598
599[[package]]
600name = "event-listener"
601version = "5.4.1"
602source = "registry+https://github.com/rust-lang/crates.io-index"
603checksum = "e13b66accf52311f30a0db42147dadea9850cb48cd070028831ae5f5d4b856ab"
604dependencies = [
605 "concurrent-queue",
606 "parking",
607 "pin-project-lite",
608]
609
610[[package]]
611name = "fastrand"
612version = "2.3.0"
613source = "registry+https://github.com/rust-lang/crates.io-index"
614checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
615
616[[package]]
617name = "flume"
618version = "0.11.1"
619source = "registry+https://github.com/rust-lang/crates.io-index"
620checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
621dependencies = [
622 "futures-core",
623 "futures-sink",
624 "spin",
625]
626
627[[package]]
628name = "fnv"
629version = "1.0.7"
630source = "registry+https://github.com/rust-lang/crates.io-index"
631checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
632
633[[package]]
634name = "foldhash"
635version = "0.1.5"
636source = "registry+https://github.com/rust-lang/crates.io-index"
637checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
638
639[[package]]
640name = "foreign-types"
641version = "0.3.2"
642source = "registry+https://github.com/rust-lang/crates.io-index"
643checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
644dependencies = [
645 "foreign-types-shared",
646]
647
648[[package]]
649name = "foreign-types-shared"
650version = "0.1.1"
651source = "registry+https://github.com/rust-lang/crates.io-index"
652checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
653
654[[package]]
655name = "form_urlencoded"
656version = "1.2.1"
657source = "registry+https://github.com/rust-lang/crates.io-index"
658checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
659dependencies = [
660 "percent-encoding",
661]
662
663[[package]]
664name = "forwarded-header-value"
665version = "0.1.1"
666source = "registry+https://github.com/rust-lang/crates.io-index"
667checksum = "8835f84f38484cc86f110a805655697908257fb9a7af005234060891557198e9"
668dependencies = [
669 "nonempty",
670 "thiserror 1.0.69",
671]
672
673[[package]]
674name = "futures-channel"
675version = "0.3.31"
676source = "registry+https://github.com/rust-lang/crates.io-index"
677checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
678dependencies = [
679 "futures-core",
680 "futures-sink",
681]
682
683[[package]]
684name = "futures-core"
685version = "0.3.31"
686source = "registry+https://github.com/rust-lang/crates.io-index"
687checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
688
689[[package]]
690name = "futures-executor"
691version = "0.3.31"
692source = "registry+https://github.com/rust-lang/crates.io-index"
693checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
694dependencies = [
695 "futures-core",
696 "futures-task",
697 "futures-util",
698]
699
700[[package]]
701name = "futures-intrusive"
702version = "0.5.0"
703source = "registry+https://github.com/rust-lang/crates.io-index"
704checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
705dependencies = [
706 "futures-core",
707 "lock_api",
708 "parking_lot",
709]
710
711[[package]]
712name = "futures-io"
713version = "0.3.31"
714source = "registry+https://github.com/rust-lang/crates.io-index"
715checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
716
717[[package]]
718name = "futures-sink"
719version = "0.3.31"
720source = "registry+https://github.com/rust-lang/crates.io-index"
721checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
722
723[[package]]
724name = "futures-task"
725version = "0.3.31"
726source = "registry+https://github.com/rust-lang/crates.io-index"
727checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
728
729[[package]]
730name = "futures-timer"
731version = "3.0.3"
732source = "registry+https://github.com/rust-lang/crates.io-index"
733checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
734
735[[package]]
736name = "futures-util"
737version = "0.3.31"
738source = "registry+https://github.com/rust-lang/crates.io-index"
739checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
740dependencies = [
741 "futures-core",
742 "futures-io",
743 "futures-sink",
744 "futures-task",
745 "memchr",
746 "pin-project-lite",
747 "pin-utils",
748 "slab",
749]
750
751[[package]]
752name = "generic-array"
753version = "0.14.7"
754source = "registry+https://github.com/rust-lang/crates.io-index"
755checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
756dependencies = [
757 "typenum",
758 "version_check",
759]
760
761[[package]]
762name = "getrandom"
763version = "0.2.16"
764source = "registry+https://github.com/rust-lang/crates.io-index"
765checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
766dependencies = [
767 "cfg-if",
768 "libc",
769 "wasi 0.11.1+wasi-snapshot-preview1",
770]
771
772[[package]]
773name = "getrandom"
774version = "0.3.3"
775source = "registry+https://github.com/rust-lang/crates.io-index"
776checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
777dependencies = [
778 "cfg-if",
779 "js-sys",
780 "libc",
781 "r-efi",
782 "wasi 0.14.2+wasi-0.2.4",
783 "wasm-bindgen",
784]
785
786[[package]]
787name = "gimli"
788version = "0.31.1"
789source = "registry+https://github.com/rust-lang/crates.io-index"
790checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
791
792[[package]]
793name = "globset"
794version = "0.4.16"
795source = "registry+https://github.com/rust-lang/crates.io-index"
796checksum = "54a1028dfc5f5df5da8a56a73e6c153c9a9708ec57232470703592a3f18e49f5"
797dependencies = [
798 "aho-corasick",
799 "bstr",
800 "log",
801 "regex-automata 0.4.9",
802 "regex-syntax 0.8.5",
803]
804
805[[package]]
806name = "governor"
807version = "0.10.1"
808source = "registry+https://github.com/rust-lang/crates.io-index"
809checksum = "444405bbb1a762387aa22dd569429533b54a1d8759d35d3b64cb39b0293eaa19"
810dependencies = [
811 "cfg-if",
812 "dashmap",
813 "futures-sink",
814 "futures-timer",
815 "futures-util",
816 "getrandom 0.3.3",
817 "hashbrown 0.15.5",
818 "nonzero_ext",
819 "parking_lot",
820 "portable-atomic",
821 "quanta",
822 "rand 0.9.2",
823 "smallvec",
824 "spinning_top",
825 "web-time",
826]
827
828[[package]]
829name = "h2"
830version = "0.4.12"
831source = "registry+https://github.com/rust-lang/crates.io-index"
832checksum = "f3c0b69cfcb4e1b9f1bf2f53f95f766e4661169728ec61cd3fe5a0166f2d1386"
833dependencies = [
834 "atomic-waker",
835 "bytes",
836 "fnv",
837 "futures-core",
838 "futures-sink",
839 "http",
840 "indexmap",
841 "slab",
842 "tokio",
843 "tokio-util",
844 "tracing",
845]
846
847[[package]]
848name = "half"
849version = "2.6.0"
850source = "registry+https://github.com/rust-lang/crates.io-index"
851checksum = "459196ed295495a68f7d7fe1d84f6c4b7ff0e21fe3017b2f283c6fac3ad803c9"
852dependencies = [
853 "cfg-if",
854 "crunchy",
855]
856
857[[package]]
858name = "handlebars"
859version = "6.3.2"
860source = "registry+https://github.com/rust-lang/crates.io-index"
861checksum = "759e2d5aea3287cb1190c8ec394f42866cb5bf74fcbf213f354e3c856ea26098"
862dependencies = [
863 "derive_builder",
864 "log",
865 "num-order",
866 "pest",
867 "pest_derive",
868 "rust-embed",
869 "serde",
870 "serde_json",
871 "thiserror 2.0.14",
872]
873
874[[package]]
875name = "hashbrown"
876version = "0.14.5"
877source = "registry+https://github.com/rust-lang/crates.io-index"
878checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
879dependencies = [
880 "ahash",
881 "allocator-api2",
882]
883
884[[package]]
885name = "hashbrown"
886version = "0.15.5"
887source = "registry+https://github.com/rust-lang/crates.io-index"
888checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
889dependencies = [
890 "allocator-api2",
891 "equivalent",
892 "foldhash",
893]
894
895[[package]]
896name = "hashlink"
897version = "0.10.0"
898source = "registry+https://github.com/rust-lang/crates.io-index"
899checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
900dependencies = [
901 "hashbrown 0.15.5",
902]
903
904[[package]]
905name = "heck"
906version = "0.5.0"
907source = "registry+https://github.com/rust-lang/crates.io-index"
908checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
909
910[[package]]
911name = "hex"
912version = "0.4.3"
913source = "registry+https://github.com/rust-lang/crates.io-index"
914checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
915
916[[package]]
917name = "hkdf"
918version = "0.12.4"
919source = "registry+https://github.com/rust-lang/crates.io-index"
920checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
921dependencies = [
922 "hmac",
923]
924
925[[package]]
926name = "hmac"
927version = "0.12.1"
928source = "registry+https://github.com/rust-lang/crates.io-index"
929checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
930dependencies = [
931 "digest",
932]
933
934[[package]]
935name = "home"
936version = "0.5.11"
937source = "registry+https://github.com/rust-lang/crates.io-index"
938checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
939dependencies = [
940 "windows-sys 0.59.0",
941]
942
943[[package]]
944name = "hostname"
945version = "0.4.1"
946source = "registry+https://github.com/rust-lang/crates.io-index"
947checksum = "a56f203cd1c76362b69e3863fd987520ac36cf70a8c92627449b2f64a8cf7d65"
948dependencies = [
949 "cfg-if",
950 "libc",
951 "windows-link",
952]
953
954[[package]]
955name = "http"
956version = "1.3.1"
957source = "registry+https://github.com/rust-lang/crates.io-index"
958checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
959dependencies = [
960 "bytes",
961 "fnv",
962 "itoa",
963]
964
965[[package]]
966name = "http-body"
967version = "1.0.1"
968source = "registry+https://github.com/rust-lang/crates.io-index"
969checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
970dependencies = [
971 "bytes",
972 "http",
973]
974
975[[package]]
976name = "http-body-util"
977version = "0.1.3"
978source = "registry+https://github.com/rust-lang/crates.io-index"
979checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a"
980dependencies = [
981 "bytes",
982 "futures-core",
983 "http",
984 "http-body",
985 "pin-project-lite",
986]
987
988[[package]]
989name = "httparse"
990version = "1.10.1"
991source = "registry+https://github.com/rust-lang/crates.io-index"
992checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
993
994[[package]]
995name = "httpdate"
996version = "1.0.3"
997source = "registry+https://github.com/rust-lang/crates.io-index"
998checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
999
1000[[package]]
1001name = "hyper"
1002version = "1.6.0"
1003source = "registry+https://github.com/rust-lang/crates.io-index"
1004checksum = "cc2b571658e38e0c01b1fdca3bbbe93c00d3d71693ff2770043f8c29bc7d6f80"
1005dependencies = [
1006 "bytes",
1007 "futures-channel",
1008 "futures-util",
1009 "h2",
1010 "http",
1011 "http-body",
1012 "httparse",
1013 "httpdate",
1014 "itoa",
1015 "pin-project-lite",
1016 "smallvec",
1017 "tokio",
1018 "want",
1019]
1020
1021[[package]]
1022name = "hyper-timeout"
1023version = "0.5.2"
1024source = "registry+https://github.com/rust-lang/crates.io-index"
1025checksum = "2b90d566bffbce6a75bd8b09a05aa8c2cb1fabb6cb348f8840c9e4c90a0d83b0"
1026dependencies = [
1027 "hyper",
1028 "hyper-util",
1029 "pin-project-lite",
1030 "tokio",
1031 "tower-service",
1032]
1033
1034[[package]]
1035name = "hyper-util"
1036version = "0.1.16"
1037source = "registry+https://github.com/rust-lang/crates.io-index"
1038checksum = "8d9b05277c7e8da2c93a568989bb6207bef0112e8d17df7a6eda4a3cf143bc5e"
1039dependencies = [
1040 "bytes",
1041 "futures-channel",
1042 "futures-core",
1043 "futures-util",
1044 "http",
1045 "http-body",
1046 "hyper",
1047 "libc",
1048 "pin-project-lite",
1049 "socket2",
1050 "tokio",
1051 "tower-service",
1052 "tracing",
1053]
1054
1055[[package]]
1056name = "iana-time-zone"
1057version = "0.1.63"
1058source = "registry+https://github.com/rust-lang/crates.io-index"
1059checksum = "b0c919e5debc312ad217002b8048a17b7d83f80703865bbfcfebb0458b0b27d8"
1060dependencies = [
1061 "android_system_properties",
1062 "core-foundation-sys",
1063 "iana-time-zone-haiku",
1064 "js-sys",
1065 "log",
1066 "wasm-bindgen",
1067 "windows-core",
1068]
1069
1070[[package]]
1071name = "iana-time-zone-haiku"
1072version = "0.1.2"
1073source = "registry+https://github.com/rust-lang/crates.io-index"
1074checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1075dependencies = [
1076 "cc",
1077]
1078
1079[[package]]
1080name = "icu_collections"
1081version = "2.0.0"
1082source = "registry+https://github.com/rust-lang/crates.io-index"
1083checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
1084dependencies = [
1085 "displaydoc",
1086 "potential_utf",
1087 "yoke",
1088 "zerofrom",
1089 "zerovec",
1090]
1091
1092[[package]]
1093name = "icu_locale_core"
1094version = "2.0.0"
1095source = "registry+https://github.com/rust-lang/crates.io-index"
1096checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
1097dependencies = [
1098 "displaydoc",
1099 "litemap",
1100 "tinystr",
1101 "writeable",
1102 "zerovec",
1103]
1104
1105[[package]]
1106name = "icu_normalizer"
1107version = "2.0.0"
1108source = "registry+https://github.com/rust-lang/crates.io-index"
1109checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
1110dependencies = [
1111 "displaydoc",
1112 "icu_collections",
1113 "icu_normalizer_data",
1114 "icu_properties",
1115 "icu_provider",
1116 "smallvec",
1117 "zerovec",
1118]
1119
1120[[package]]
1121name = "icu_normalizer_data"
1122version = "2.0.0"
1123source = "registry+https://github.com/rust-lang/crates.io-index"
1124checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
1125
1126[[package]]
1127name = "icu_properties"
1128version = "2.0.1"
1129source = "registry+https://github.com/rust-lang/crates.io-index"
1130checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
1131dependencies = [
1132 "displaydoc",
1133 "icu_collections",
1134 "icu_locale_core",
1135 "icu_properties_data",
1136 "icu_provider",
1137 "potential_utf",
1138 "zerotrie",
1139 "zerovec",
1140]
1141
1142[[package]]
1143name = "icu_properties_data"
1144version = "2.0.1"
1145source = "registry+https://github.com/rust-lang/crates.io-index"
1146checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
1147
1148[[package]]
1149name = "icu_provider"
1150version = "2.0.0"
1151source = "registry+https://github.com/rust-lang/crates.io-index"
1152checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
1153dependencies = [
1154 "displaydoc",
1155 "icu_locale_core",
1156 "stable_deref_trait",
1157 "tinystr",
1158 "writeable",
1159 "yoke",
1160 "zerofrom",
1161 "zerotrie",
1162 "zerovec",
1163]
1164
1165[[package]]
1166name = "ident_case"
1167version = "1.0.1"
1168source = "registry+https://github.com/rust-lang/crates.io-index"
1169checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
1170
1171[[package]]
1172name = "idna"
1173version = "1.0.3"
1174source = "registry+https://github.com/rust-lang/crates.io-index"
1175checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1176dependencies = [
1177 "idna_adapter",
1178 "smallvec",
1179 "utf8_iter",
1180]
1181
1182[[package]]
1183name = "idna_adapter"
1184version = "1.2.1"
1185source = "registry+https://github.com/rust-lang/crates.io-index"
1186checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
1187dependencies = [
1188 "icu_normalizer",
1189 "icu_properties",
1190]
1191
1192[[package]]
1193name = "indexmap"
1194version = "2.10.0"
1195source = "registry+https://github.com/rust-lang/crates.io-index"
1196checksum = "fe4cd85333e22411419a0bcae1297d25e58c9443848b11dc6a86fefe8c78a661"
1197dependencies = [
1198 "equivalent",
1199 "hashbrown 0.15.5",
1200]
1201
1202[[package]]
1203name = "inout"
1204version = "0.1.4"
1205source = "registry+https://github.com/rust-lang/crates.io-index"
1206checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
1207dependencies = [
1208 "generic-array",
1209]
1210
1211[[package]]
1212name = "io-uring"
1213version = "0.7.9"
1214source = "registry+https://github.com/rust-lang/crates.io-index"
1215checksum = "d93587f37623a1a17d94ef2bc9ada592f5465fe7732084ab7beefabe5c77c0c4"
1216dependencies = [
1217 "bitflags",
1218 "cfg-if",
1219 "libc",
1220]
1221
1222[[package]]
1223name = "itoa"
1224version = "1.0.15"
1225source = "registry+https://github.com/rust-lang/crates.io-index"
1226checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1227
1228[[package]]
1229name = "jobserver"
1230version = "0.1.33"
1231source = "registry+https://github.com/rust-lang/crates.io-index"
1232checksum = "38f262f097c174adebe41eb73d66ae9c06b2844fb0da69969647bbddd9b0538a"
1233dependencies = [
1234 "getrandom 0.3.3",
1235 "libc",
1236]
1237
1238[[package]]
1239name = "js-sys"
1240version = "0.3.77"
1241source = "registry+https://github.com/rust-lang/crates.io-index"
1242checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1243dependencies = [
1244 "once_cell",
1245 "wasm-bindgen",
1246]
1247
1248[[package]]
1249name = "jwt-compact"
1250version = "0.8.0"
1251source = "registry+https://github.com/rust-lang/crates.io-index"
1252checksum = "25cb2458ca54de48ef237ac0d68d4e80e512ae81d6aeb9775f4c835da0d193d3"
1253dependencies = [
1254 "anyhow",
1255 "base64ct",
1256 "chrono",
1257 "ciborium",
1258 "hmac",
1259 "lazy_static",
1260 "rand_core 0.6.4",
1261 "secp256k1",
1262 "serde",
1263 "serde_json",
1264 "sha2",
1265 "smallvec",
1266 "subtle",
1267 "zeroize",
1268]
1269
1270[[package]]
1271name = "lazy_static"
1272version = "1.5.0"
1273source = "registry+https://github.com/rust-lang/crates.io-index"
1274checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1275dependencies = [
1276 "spin",
1277]
1278
1279[[package]]
1280name = "lettre"
1281version = "0.11.18"
1282source = "registry+https://github.com/rust-lang/crates.io-index"
1283checksum = "5cb54db6ff7a89efac87dba5baeac57bb9ccd726b49a9b6f21fb92b3966aaf56"
1284dependencies = [
1285 "async-trait",
1286 "base64",
1287 "chumsky",
1288 "email-encoding",
1289 "email_address",
1290 "fastrand",
1291 "futures-io",
1292 "futures-util",
1293 "hostname",
1294 "httpdate",
1295 "idna",
1296 "mime",
1297 "native-tls",
1298 "nom",
1299 "percent-encoding",
1300 "quoted_printable",
1301 "socket2",
1302 "tokio",
1303 "tokio-native-tls",
1304 "url",
1305]
1306
1307[[package]]
1308name = "libc"
1309version = "0.2.175"
1310source = "registry+https://github.com/rust-lang/crates.io-index"
1311checksum = "6a82ae493e598baaea5209805c49bbf2ea7de956d50d7da0da1164f9c6d28543"
1312
1313[[package]]
1314name = "libm"
1315version = "0.2.15"
1316source = "registry+https://github.com/rust-lang/crates.io-index"
1317checksum = "f9fbbcab51052fe104eb5e5d351cf728d30a5be1fe14d9be8a3b097481fb97de"
1318
1319[[package]]
1320name = "libredox"
1321version = "0.1.9"
1322source = "registry+https://github.com/rust-lang/crates.io-index"
1323checksum = "391290121bad3d37fbddad76d8f5d1c1c314cfc646d143d7e07a3086ddff0ce3"
1324dependencies = [
1325 "bitflags",
1326 "libc",
1327 "redox_syscall",
1328]
1329
1330[[package]]
1331name = "libsqlite3-sys"
1332version = "0.30.1"
1333source = "registry+https://github.com/rust-lang/crates.io-index"
1334checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1335dependencies = [
1336 "cc",
1337 "pkg-config",
1338 "vcpkg",
1339]
1340
1341[[package]]
1342name = "linux-raw-sys"
1343version = "0.9.4"
1344source = "registry+https://github.com/rust-lang/crates.io-index"
1345checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
1346
1347[[package]]
1348name = "litemap"
1349version = "0.8.0"
1350source = "registry+https://github.com/rust-lang/crates.io-index"
1351checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
1352
1353[[package]]
1354name = "lock_api"
1355version = "0.4.13"
1356source = "registry+https://github.com/rust-lang/crates.io-index"
1357checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
1358dependencies = [
1359 "autocfg",
1360 "scopeguard",
1361]
1362
1363[[package]]
1364name = "log"
1365version = "0.4.27"
1366source = "registry+https://github.com/rust-lang/crates.io-index"
1367checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
1368
1369[[package]]
1370name = "matchers"
1371version = "0.1.0"
1372source = "registry+https://github.com/rust-lang/crates.io-index"
1373checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
1374dependencies = [
1375 "regex-automata 0.1.10",
1376]
1377
1378[[package]]
1379name = "matchit"
1380version = "0.8.4"
1381source = "registry+https://github.com/rust-lang/crates.io-index"
1382checksum = "47e1ffaa40ddd1f3ed91f717a33c8c0ee23fff369e3aa8772b9605cc1d22f4c3"
1383
1384[[package]]
1385name = "md-5"
1386version = "0.10.6"
1387source = "registry+https://github.com/rust-lang/crates.io-index"
1388checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1389dependencies = [
1390 "cfg-if",
1391 "digest",
1392]
1393
1394[[package]]
1395name = "memchr"
1396version = "2.7.5"
1397source = "registry+https://github.com/rust-lang/crates.io-index"
1398checksum = "32a282da65faaf38286cf3be983213fcf1d2e2a58700e808f83f4ea9a4804bc0"
1399
1400[[package]]
1401name = "mime"
1402version = "0.3.17"
1403source = "registry+https://github.com/rust-lang/crates.io-index"
1404checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1405
1406[[package]]
1407name = "miniz_oxide"
1408version = "0.8.9"
1409source = "registry+https://github.com/rust-lang/crates.io-index"
1410checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1411dependencies = [
1412 "adler2",
1413]
1414
1415[[package]]
1416name = "mio"
1417version = "1.0.4"
1418source = "registry+https://github.com/rust-lang/crates.io-index"
1419checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1420dependencies = [
1421 "libc",
1422 "wasi 0.11.1+wasi-snapshot-preview1",
1423 "windows-sys 0.59.0",
1424]
1425
1426[[package]]
1427name = "native-tls"
1428version = "0.2.14"
1429source = "registry+https://github.com/rust-lang/crates.io-index"
1430checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1431dependencies = [
1432 "libc",
1433 "log",
1434 "openssl",
1435 "openssl-probe",
1436 "openssl-sys",
1437 "schannel",
1438 "security-framework",
1439 "security-framework-sys",
1440 "tempfile",
1441]
1442
1443[[package]]
1444name = "nom"
1445version = "8.0.0"
1446source = "registry+https://github.com/rust-lang/crates.io-index"
1447checksum = "df9761775871bdef83bee530e60050f7e54b1105350d6884eb0fb4f46c2f9405"
1448dependencies = [
1449 "memchr",
1450]
1451
1452[[package]]
1453name = "nonempty"
1454version = "0.7.0"
1455source = "registry+https://github.com/rust-lang/crates.io-index"
1456checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7"
1457
1458[[package]]
1459name = "nonzero_ext"
1460version = "0.3.0"
1461source = "registry+https://github.com/rust-lang/crates.io-index"
1462checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
1463
1464[[package]]
1465name = "nu-ansi-term"
1466version = "0.46.0"
1467source = "registry+https://github.com/rust-lang/crates.io-index"
1468checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1469dependencies = [
1470 "overload",
1471 "winapi",
1472]
1473
1474[[package]]
1475name = "num-bigint-dig"
1476version = "0.8.4"
1477source = "registry+https://github.com/rust-lang/crates.io-index"
1478checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
1479dependencies = [
1480 "byteorder",
1481 "lazy_static",
1482 "libm",
1483 "num-integer",
1484 "num-iter",
1485 "num-traits",
1486 "rand 0.8.5",
1487 "smallvec",
1488 "zeroize",
1489]
1490
1491[[package]]
1492name = "num-integer"
1493version = "0.1.46"
1494source = "registry+https://github.com/rust-lang/crates.io-index"
1495checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1496dependencies = [
1497 "num-traits",
1498]
1499
1500[[package]]
1501name = "num-iter"
1502version = "0.1.45"
1503source = "registry+https://github.com/rust-lang/crates.io-index"
1504checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1505dependencies = [
1506 "autocfg",
1507 "num-integer",
1508 "num-traits",
1509]
1510
1511[[package]]
1512name = "num-modular"
1513version = "0.6.1"
1514source = "registry+https://github.com/rust-lang/crates.io-index"
1515checksum = "17bb261bf36fa7d83f4c294f834e91256769097b3cb505d44831e0a179ac647f"
1516
1517[[package]]
1518name = "num-order"
1519version = "1.2.0"
1520source = "registry+https://github.com/rust-lang/crates.io-index"
1521checksum = "537b596b97c40fcf8056d153049eb22f481c17ebce72a513ec9286e4986d1bb6"
1522dependencies = [
1523 "num-modular",
1524]
1525
1526[[package]]
1527name = "num-traits"
1528version = "0.2.19"
1529source = "registry+https://github.com/rust-lang/crates.io-index"
1530checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1531dependencies = [
1532 "autocfg",
1533 "libm",
1534]
1535
1536[[package]]
1537name = "object"
1538version = "0.36.7"
1539source = "registry+https://github.com/rust-lang/crates.io-index"
1540checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1541dependencies = [
1542 "memchr",
1543]
1544
1545[[package]]
1546name = "once_cell"
1547version = "1.21.3"
1548source = "registry+https://github.com/rust-lang/crates.io-index"
1549checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1550
1551[[package]]
1552name = "openssl"
1553version = "0.10.73"
1554source = "registry+https://github.com/rust-lang/crates.io-index"
1555checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
1556dependencies = [
1557 "bitflags",
1558 "cfg-if",
1559 "foreign-types",
1560 "libc",
1561 "once_cell",
1562 "openssl-macros",
1563 "openssl-sys",
1564]
1565
1566[[package]]
1567name = "openssl-macros"
1568version = "0.1.1"
1569source = "registry+https://github.com/rust-lang/crates.io-index"
1570checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1571dependencies = [
1572 "proc-macro2",
1573 "quote",
1574 "syn",
1575]
1576
1577[[package]]
1578name = "openssl-probe"
1579version = "0.1.6"
1580source = "registry+https://github.com/rust-lang/crates.io-index"
1581checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1582
1583[[package]]
1584name = "openssl-sys"
1585version = "0.9.109"
1586source = "registry+https://github.com/rust-lang/crates.io-index"
1587checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
1588dependencies = [
1589 "cc",
1590 "libc",
1591 "pkg-config",
1592 "vcpkg",
1593]
1594
1595[[package]]
1596name = "overload"
1597version = "0.1.1"
1598source = "registry+https://github.com/rust-lang/crates.io-index"
1599checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1600
1601[[package]]
1602name = "parking"
1603version = "2.2.1"
1604source = "registry+https://github.com/rust-lang/crates.io-index"
1605checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1606
1607[[package]]
1608name = "parking_lot"
1609version = "0.12.4"
1610source = "registry+https://github.com/rust-lang/crates.io-index"
1611checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1612dependencies = [
1613 "lock_api",
1614 "parking_lot_core",
1615]
1616
1617[[package]]
1618name = "parking_lot_core"
1619version = "0.9.11"
1620source = "registry+https://github.com/rust-lang/crates.io-index"
1621checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1622dependencies = [
1623 "cfg-if",
1624 "libc",
1625 "redox_syscall",
1626 "smallvec",
1627 "windows-targets 0.52.6",
1628]
1629
1630[[package]]
1631name = "password-hash"
1632version = "0.5.0"
1633source = "registry+https://github.com/rust-lang/crates.io-index"
1634checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
1635dependencies = [
1636 "base64ct",
1637 "rand_core 0.6.4",
1638 "subtle",
1639]
1640
1641[[package]]
1642name = "pbkdf2"
1643version = "0.12.2"
1644source = "registry+https://github.com/rust-lang/crates.io-index"
1645checksum = "f8ed6a7761f76e3b9f92dfb0a60a6a6477c61024b775147ff0973a02653abaf2"
1646dependencies = [
1647 "digest",
1648 "hmac",
1649]
1650
1651[[package]]
1652name = "pds_gatekeeper"
1653version = "0.1.0"
1654dependencies = [
1655 "axum",
1656 "axum-template",
1657 "dotenvy",
1658 "handlebars",
1659 "hex",
1660 "hyper-util",
1661 "jwt-compact",
1662 "lettre",
1663 "rust-embed",
1664 "scrypt",
1665 "serde",
1666 "serde_json",
1667 "sqlx",
1668 "tokio",
1669 "tower-http",
1670 "tower_governor",
1671 "tracing",
1672 "tracing-subscriber",
1673]
1674
1675[[package]]
1676name = "pem-rfc7468"
1677version = "0.7.0"
1678source = "registry+https://github.com/rust-lang/crates.io-index"
1679checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1680dependencies = [
1681 "base64ct",
1682]
1683
1684[[package]]
1685name = "percent-encoding"
1686version = "2.3.1"
1687source = "registry+https://github.com/rust-lang/crates.io-index"
1688checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1689
1690[[package]]
1691name = "pest"
1692version = "2.8.1"
1693source = "registry+https://github.com/rust-lang/crates.io-index"
1694checksum = "1db05f56d34358a8b1066f67cbb203ee3e7ed2ba674a6263a1d5ec6db2204323"
1695dependencies = [
1696 "memchr",
1697 "thiserror 2.0.14",
1698 "ucd-trie",
1699]
1700
1701[[package]]
1702name = "pest_derive"
1703version = "2.8.1"
1704source = "registry+https://github.com/rust-lang/crates.io-index"
1705checksum = "bb056d9e8ea77922845ec74a1c4e8fb17e7c218cc4fc11a15c5d25e189aa40bc"
1706dependencies = [
1707 "pest",
1708 "pest_generator",
1709]
1710
1711[[package]]
1712name = "pest_generator"
1713version = "2.8.1"
1714source = "registry+https://github.com/rust-lang/crates.io-index"
1715checksum = "87e404e638f781eb3202dc82db6760c8ae8a1eeef7fb3fa8264b2ef280504966"
1716dependencies = [
1717 "pest",
1718 "pest_meta",
1719 "proc-macro2",
1720 "quote",
1721 "syn",
1722]
1723
1724[[package]]
1725name = "pest_meta"
1726version = "2.8.1"
1727source = "registry+https://github.com/rust-lang/crates.io-index"
1728checksum = "edd1101f170f5903fde0914f899bb503d9ff5271d7ba76bbb70bea63690cc0d5"
1729dependencies = [
1730 "pest",
1731 "sha2",
1732]
1733
1734[[package]]
1735name = "pin-project"
1736version = "1.1.10"
1737source = "registry+https://github.com/rust-lang/crates.io-index"
1738checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1739dependencies = [
1740 "pin-project-internal",
1741]
1742
1743[[package]]
1744name = "pin-project-internal"
1745version = "1.1.10"
1746source = "registry+https://github.com/rust-lang/crates.io-index"
1747checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1748dependencies = [
1749 "proc-macro2",
1750 "quote",
1751 "syn",
1752]
1753
1754[[package]]
1755name = "pin-project-lite"
1756version = "0.2.16"
1757source = "registry+https://github.com/rust-lang/crates.io-index"
1758checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1759
1760[[package]]
1761name = "pin-utils"
1762version = "0.1.0"
1763source = "registry+https://github.com/rust-lang/crates.io-index"
1764checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1765
1766[[package]]
1767name = "pkcs1"
1768version = "0.7.5"
1769source = "registry+https://github.com/rust-lang/crates.io-index"
1770checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1771dependencies = [
1772 "der",
1773 "pkcs8",
1774 "spki",
1775]
1776
1777[[package]]
1778name = "pkcs8"
1779version = "0.10.2"
1780source = "registry+https://github.com/rust-lang/crates.io-index"
1781checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1782dependencies = [
1783 "der",
1784 "spki",
1785]
1786
1787[[package]]
1788name = "pkg-config"
1789version = "0.3.32"
1790source = "registry+https://github.com/rust-lang/crates.io-index"
1791checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1792
1793[[package]]
1794name = "portable-atomic"
1795version = "1.11.1"
1796source = "registry+https://github.com/rust-lang/crates.io-index"
1797checksum = "f84267b20a16ea918e43c6a88433c2d54fa145c92a811b5b047ccbe153674483"
1798
1799[[package]]
1800name = "potential_utf"
1801version = "0.1.2"
1802source = "registry+https://github.com/rust-lang/crates.io-index"
1803checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1804dependencies = [
1805 "zerovec",
1806]
1807
1808[[package]]
1809name = "ppv-lite86"
1810version = "0.2.21"
1811source = "registry+https://github.com/rust-lang/crates.io-index"
1812checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1813dependencies = [
1814 "zerocopy",
1815]
1816
1817[[package]]
1818name = "proc-macro2"
1819version = "1.0.97"
1820source = "registry+https://github.com/rust-lang/crates.io-index"
1821checksum = "d61789d7719defeb74ea5fe81f2fdfdbd28a803847077cecce2ff14e1472f6f1"
1822dependencies = [
1823 "unicode-ident",
1824]
1825
1826[[package]]
1827name = "psm"
1828version = "0.1.26"
1829source = "registry+https://github.com/rust-lang/crates.io-index"
1830checksum = "6e944464ec8536cd1beb0bbfd96987eb5e3b72f2ecdafdc5c769a37f1fa2ae1f"
1831dependencies = [
1832 "cc",
1833]
1834
1835[[package]]
1836name = "quanta"
1837version = "0.12.6"
1838source = "registry+https://github.com/rust-lang/crates.io-index"
1839checksum = "f3ab5a9d756f0d97bdc89019bd2e4ea098cf9cde50ee7564dde6b81ccc8f06c7"
1840dependencies = [
1841 "crossbeam-utils",
1842 "libc",
1843 "once_cell",
1844 "raw-cpuid",
1845 "wasi 0.11.1+wasi-snapshot-preview1",
1846 "web-sys",
1847 "winapi",
1848]
1849
1850[[package]]
1851name = "quote"
1852version = "1.0.40"
1853source = "registry+https://github.com/rust-lang/crates.io-index"
1854checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1855dependencies = [
1856 "proc-macro2",
1857]
1858
1859[[package]]
1860name = "quoted_printable"
1861version = "0.5.1"
1862source = "registry+https://github.com/rust-lang/crates.io-index"
1863checksum = "640c9bd8497b02465aeef5375144c26062e0dcd5939dfcbb0f5db76cb8c17c73"
1864
1865[[package]]
1866name = "r-efi"
1867version = "5.3.0"
1868source = "registry+https://github.com/rust-lang/crates.io-index"
1869checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f"
1870
1871[[package]]
1872name = "rand"
1873version = "0.8.5"
1874source = "registry+https://github.com/rust-lang/crates.io-index"
1875checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1876dependencies = [
1877 "libc",
1878 "rand_chacha 0.3.1",
1879 "rand_core 0.6.4",
1880]
1881
1882[[package]]
1883name = "rand"
1884version = "0.9.2"
1885source = "registry+https://github.com/rust-lang/crates.io-index"
1886checksum = "6db2770f06117d490610c7488547d543617b21bfa07796d7a12f6f1bd53850d1"
1887dependencies = [
1888 "rand_chacha 0.9.0",
1889 "rand_core 0.9.3",
1890]
1891
1892[[package]]
1893name = "rand_chacha"
1894version = "0.3.1"
1895source = "registry+https://github.com/rust-lang/crates.io-index"
1896checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1897dependencies = [
1898 "ppv-lite86",
1899 "rand_core 0.6.4",
1900]
1901
1902[[package]]
1903name = "rand_chacha"
1904version = "0.9.0"
1905source = "registry+https://github.com/rust-lang/crates.io-index"
1906checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1907dependencies = [
1908 "ppv-lite86",
1909 "rand_core 0.9.3",
1910]
1911
1912[[package]]
1913name = "rand_core"
1914version = "0.6.4"
1915source = "registry+https://github.com/rust-lang/crates.io-index"
1916checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1917dependencies = [
1918 "getrandom 0.2.16",
1919]
1920
1921[[package]]
1922name = "rand_core"
1923version = "0.9.3"
1924source = "registry+https://github.com/rust-lang/crates.io-index"
1925checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1926dependencies = [
1927 "getrandom 0.3.3",
1928]
1929
1930[[package]]
1931name = "raw-cpuid"
1932version = "11.5.0"
1933source = "registry+https://github.com/rust-lang/crates.io-index"
1934checksum = "c6df7ab838ed27997ba19a4664507e6f82b41fe6e20be42929332156e5e85146"
1935dependencies = [
1936 "bitflags",
1937]
1938
1939[[package]]
1940name = "redox_syscall"
1941version = "0.5.17"
1942source = "registry+https://github.com/rust-lang/crates.io-index"
1943checksum = "5407465600fb0548f1442edf71dd20683c6ed326200ace4b1ef0763521bb3b77"
1944dependencies = [
1945 "bitflags",
1946]
1947
1948[[package]]
1949name = "regex"
1950version = "1.11.1"
1951source = "registry+https://github.com/rust-lang/crates.io-index"
1952checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1953dependencies = [
1954 "aho-corasick",
1955 "memchr",
1956 "regex-automata 0.4.9",
1957 "regex-syntax 0.8.5",
1958]
1959
1960[[package]]
1961name = "regex-automata"
1962version = "0.1.10"
1963source = "registry+https://github.com/rust-lang/crates.io-index"
1964checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
1965dependencies = [
1966 "regex-syntax 0.6.29",
1967]
1968
1969[[package]]
1970name = "regex-automata"
1971version = "0.4.9"
1972source = "registry+https://github.com/rust-lang/crates.io-index"
1973checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1974dependencies = [
1975 "aho-corasick",
1976 "memchr",
1977 "regex-syntax 0.8.5",
1978]
1979
1980[[package]]
1981name = "regex-syntax"
1982version = "0.6.29"
1983source = "registry+https://github.com/rust-lang/crates.io-index"
1984checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
1985
1986[[package]]
1987name = "regex-syntax"
1988version = "0.8.5"
1989source = "registry+https://github.com/rust-lang/crates.io-index"
1990checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1991
1992[[package]]
1993name = "ring"
1994version = "0.17.14"
1995source = "registry+https://github.com/rust-lang/crates.io-index"
1996checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7"
1997dependencies = [
1998 "cc",
1999 "cfg-if",
2000 "getrandom 0.2.16",
2001 "libc",
2002 "untrusted",
2003 "windows-sys 0.52.0",
2004]
2005
2006[[package]]
2007name = "rsa"
2008version = "0.9.8"
2009source = "registry+https://github.com/rust-lang/crates.io-index"
2010checksum = "78928ac1ed176a5ca1d17e578a1825f3d81ca54cf41053a592584b020cfd691b"
2011dependencies = [
2012 "const-oid",
2013 "digest",
2014 "num-bigint-dig",
2015 "num-integer",
2016 "num-traits",
2017 "pkcs1",
2018 "pkcs8",
2019 "rand_core 0.6.4",
2020 "signature",
2021 "spki",
2022 "subtle",
2023 "zeroize",
2024]
2025
2026[[package]]
2027name = "rust-embed"
2028version = "8.7.2"
2029source = "registry+https://github.com/rust-lang/crates.io-index"
2030checksum = "025908b8682a26ba8d12f6f2d66b987584a4a87bc024abc5bbc12553a8cd178a"
2031dependencies = [
2032 "rust-embed-impl",
2033 "rust-embed-utils",
2034 "walkdir",
2035]
2036
2037[[package]]
2038name = "rust-embed-impl"
2039version = "8.7.2"
2040source = "registry+https://github.com/rust-lang/crates.io-index"
2041checksum = "6065f1a4392b71819ec1ea1df1120673418bf386f50de1d6f54204d836d4349c"
2042dependencies = [
2043 "proc-macro2",
2044 "quote",
2045 "rust-embed-utils",
2046 "syn",
2047 "walkdir",
2048]
2049
2050[[package]]
2051name = "rust-embed-utils"
2052version = "8.7.2"
2053source = "registry+https://github.com/rust-lang/crates.io-index"
2054checksum = "f6cc0c81648b20b70c491ff8cce00c1c3b223bb8ed2b5d41f0e54c6c4c0a3594"
2055dependencies = [
2056 "globset",
2057 "sha2",
2058 "walkdir",
2059]
2060
2061[[package]]
2062name = "rustc-demangle"
2063version = "0.1.26"
2064source = "registry+https://github.com/rust-lang/crates.io-index"
2065checksum = "56f7d92ca342cea22a06f2121d944b4fd82af56988c270852495420f961d4ace"
2066
2067[[package]]
2068name = "rustix"
2069version = "1.0.8"
2070source = "registry+https://github.com/rust-lang/crates.io-index"
2071checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
2072dependencies = [
2073 "bitflags",
2074 "errno",
2075 "libc",
2076 "linux-raw-sys",
2077 "windows-sys 0.59.0",
2078]
2079
2080[[package]]
2081name = "rustls"
2082version = "0.23.31"
2083source = "registry+https://github.com/rust-lang/crates.io-index"
2084checksum = "c0ebcbd2f03de0fc1122ad9bb24b127a5a6cd51d72604a3f3c50ac459762b6cc"
2085dependencies = [
2086 "once_cell",
2087 "ring",
2088 "rustls-pki-types",
2089 "rustls-webpki",
2090 "subtle",
2091 "zeroize",
2092]
2093
2094[[package]]
2095name = "rustls-pki-types"
2096version = "1.12.0"
2097source = "registry+https://github.com/rust-lang/crates.io-index"
2098checksum = "229a4a4c221013e7e1f1a043678c5cc39fe5171437c88fb47151a21e6f5b5c79"
2099dependencies = [
2100 "zeroize",
2101]
2102
2103[[package]]
2104name = "rustls-webpki"
2105version = "0.103.4"
2106source = "registry+https://github.com/rust-lang/crates.io-index"
2107checksum = "0a17884ae0c1b773f1ccd2bd4a8c72f16da897310a98b0e84bf349ad5ead92fc"
2108dependencies = [
2109 "ring",
2110 "rustls-pki-types",
2111 "untrusted",
2112]
2113
2114[[package]]
2115name = "rustversion"
2116version = "1.0.22"
2117source = "registry+https://github.com/rust-lang/crates.io-index"
2118checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
2119
2120[[package]]
2121name = "ryu"
2122version = "1.0.20"
2123source = "registry+https://github.com/rust-lang/crates.io-index"
2124checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
2125
2126[[package]]
2127name = "salsa20"
2128version = "0.10.2"
2129source = "registry+https://github.com/rust-lang/crates.io-index"
2130checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
2131dependencies = [
2132 "cipher",
2133]
2134
2135[[package]]
2136name = "same-file"
2137version = "1.0.6"
2138source = "registry+https://github.com/rust-lang/crates.io-index"
2139checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2140dependencies = [
2141 "winapi-util",
2142]
2143
2144[[package]]
2145name = "schannel"
2146version = "0.1.27"
2147source = "registry+https://github.com/rust-lang/crates.io-index"
2148checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2149dependencies = [
2150 "windows-sys 0.59.0",
2151]
2152
2153[[package]]
2154name = "scopeguard"
2155version = "1.2.0"
2156source = "registry+https://github.com/rust-lang/crates.io-index"
2157checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2158
2159[[package]]
2160name = "scrypt"
2161version = "0.11.0"
2162source = "registry+https://github.com/rust-lang/crates.io-index"
2163checksum = "0516a385866c09368f0b5bcd1caff3366aace790fcd46e2bb032697bb172fd1f"
2164dependencies = [
2165 "password-hash",
2166 "pbkdf2",
2167 "salsa20",
2168 "sha2",
2169]
2170
2171[[package]]
2172name = "secp256k1"
2173version = "0.28.2"
2174source = "registry+https://github.com/rust-lang/crates.io-index"
2175checksum = "d24b59d129cdadea20aea4fb2352fa053712e5d713eee47d700cd4b2bc002f10"
2176dependencies = [
2177 "secp256k1-sys",
2178]
2179
2180[[package]]
2181name = "secp256k1-sys"
2182version = "0.9.2"
2183source = "registry+https://github.com/rust-lang/crates.io-index"
2184checksum = "e5d1746aae42c19d583c3c1a8c646bfad910498e2051c551a7f2e3c0c9fbb7eb"
2185dependencies = [
2186 "cc",
2187]
2188
2189[[package]]
2190name = "security-framework"
2191version = "2.11.1"
2192source = "registry+https://github.com/rust-lang/crates.io-index"
2193checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2194dependencies = [
2195 "bitflags",
2196 "core-foundation",
2197 "core-foundation-sys",
2198 "libc",
2199 "security-framework-sys",
2200]
2201
2202[[package]]
2203name = "security-framework-sys"
2204version = "2.14.0"
2205source = "registry+https://github.com/rust-lang/crates.io-index"
2206checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
2207dependencies = [
2208 "core-foundation-sys",
2209 "libc",
2210]
2211
2212[[package]]
2213name = "serde"
2214version = "1.0.219"
2215source = "registry+https://github.com/rust-lang/crates.io-index"
2216checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
2217dependencies = [
2218 "serde_derive",
2219]
2220
2221[[package]]
2222name = "serde_derive"
2223version = "1.0.219"
2224source = "registry+https://github.com/rust-lang/crates.io-index"
2225checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
2226dependencies = [
2227 "proc-macro2",
2228 "quote",
2229 "syn",
2230]
2231
2232[[package]]
2233name = "serde_json"
2234version = "1.0.142"
2235source = "registry+https://github.com/rust-lang/crates.io-index"
2236checksum = "030fedb782600dcbd6f02d479bf0d817ac3bb40d644745b769d6a96bc3afc5a7"
2237dependencies = [
2238 "itoa",
2239 "memchr",
2240 "ryu",
2241 "serde",
2242]
2243
2244[[package]]
2245name = "serde_path_to_error"
2246version = "0.1.17"
2247source = "registry+https://github.com/rust-lang/crates.io-index"
2248checksum = "59fab13f937fa393d08645bf3a84bdfe86e296747b506ada67bb15f10f218b2a"
2249dependencies = [
2250 "itoa",
2251 "serde",
2252]
2253
2254[[package]]
2255name = "serde_urlencoded"
2256version = "0.7.1"
2257source = "registry+https://github.com/rust-lang/crates.io-index"
2258checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
2259dependencies = [
2260 "form_urlencoded",
2261 "itoa",
2262 "ryu",
2263 "serde",
2264]
2265
2266[[package]]
2267name = "sha1"
2268version = "0.10.6"
2269source = "registry+https://github.com/rust-lang/crates.io-index"
2270checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
2271dependencies = [
2272 "cfg-if",
2273 "cpufeatures",
2274 "digest",
2275]
2276
2277[[package]]
2278name = "sha2"
2279version = "0.10.9"
2280source = "registry+https://github.com/rust-lang/crates.io-index"
2281checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
2282dependencies = [
2283 "cfg-if",
2284 "cpufeatures",
2285 "digest",
2286]
2287
2288[[package]]
2289name = "sharded-slab"
2290version = "0.1.7"
2291source = "registry+https://github.com/rust-lang/crates.io-index"
2292checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
2293dependencies = [
2294 "lazy_static",
2295]
2296
2297[[package]]
2298name = "shlex"
2299version = "1.3.0"
2300source = "registry+https://github.com/rust-lang/crates.io-index"
2301checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
2302
2303[[package]]
2304name = "signal-hook-registry"
2305version = "1.4.6"
2306source = "registry+https://github.com/rust-lang/crates.io-index"
2307checksum = "b2a4719bff48cee6b39d12c020eeb490953ad2443b7055bd0b21fca26bd8c28b"
2308dependencies = [
2309 "libc",
2310]
2311
2312[[package]]
2313name = "signature"
2314version = "2.2.0"
2315source = "registry+https://github.com/rust-lang/crates.io-index"
2316checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2317dependencies = [
2318 "digest",
2319 "rand_core 0.6.4",
2320]
2321
2322[[package]]
2323name = "slab"
2324version = "0.4.11"
2325source = "registry+https://github.com/rust-lang/crates.io-index"
2326checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
2327
2328[[package]]
2329name = "smallvec"
2330version = "1.15.1"
2331source = "registry+https://github.com/rust-lang/crates.io-index"
2332checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
2333dependencies = [
2334 "serde",
2335]
2336
2337[[package]]
2338name = "socket2"
2339version = "0.6.0"
2340source = "registry+https://github.com/rust-lang/crates.io-index"
2341checksum = "233504af464074f9d066d7b5416c5f9b894a5862a6506e306f7b816cdd6f1807"
2342dependencies = [
2343 "libc",
2344 "windows-sys 0.59.0",
2345]
2346
2347[[package]]
2348name = "spin"
2349version = "0.9.8"
2350source = "registry+https://github.com/rust-lang/crates.io-index"
2351checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2352dependencies = [
2353 "lock_api",
2354]
2355
2356[[package]]
2357name = "spinning_top"
2358version = "0.3.0"
2359source = "registry+https://github.com/rust-lang/crates.io-index"
2360checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
2361dependencies = [
2362 "lock_api",
2363]
2364
2365[[package]]
2366name = "spki"
2367version = "0.7.3"
2368source = "registry+https://github.com/rust-lang/crates.io-index"
2369checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2370dependencies = [
2371 "base64ct",
2372 "der",
2373]
2374
2375[[package]]
2376name = "sqlx"
2377version = "0.8.6"
2378source = "registry+https://github.com/rust-lang/crates.io-index"
2379checksum = "1fefb893899429669dcdd979aff487bd78f4064e5e7907e4269081e0ef7d97dc"
2380dependencies = [
2381 "sqlx-core",
2382 "sqlx-macros",
2383 "sqlx-mysql",
2384 "sqlx-postgres",
2385 "sqlx-sqlite",
2386]
2387
2388[[package]]
2389name = "sqlx-core"
2390version = "0.8.6"
2391source = "registry+https://github.com/rust-lang/crates.io-index"
2392checksum = "ee6798b1838b6a0f69c007c133b8df5866302197e404e8b6ee8ed3e3a5e68dc6"
2393dependencies = [
2394 "base64",
2395 "bytes",
2396 "crc",
2397 "crossbeam-queue",
2398 "either",
2399 "event-listener",
2400 "futures-core",
2401 "futures-intrusive",
2402 "futures-io",
2403 "futures-util",
2404 "hashbrown 0.15.5",
2405 "hashlink",
2406 "indexmap",
2407 "log",
2408 "memchr",
2409 "once_cell",
2410 "percent-encoding",
2411 "rustls",
2412 "serde",
2413 "serde_json",
2414 "sha2",
2415 "smallvec",
2416 "thiserror 2.0.14",
2417 "tokio",
2418 "tokio-stream",
2419 "tracing",
2420 "url",
2421 "webpki-roots 0.26.11",
2422]
2423
2424[[package]]
2425name = "sqlx-macros"
2426version = "0.8.6"
2427source = "registry+https://github.com/rust-lang/crates.io-index"
2428checksum = "a2d452988ccaacfbf5e0bdbc348fb91d7c8af5bee192173ac3636b5fb6e6715d"
2429dependencies = [
2430 "proc-macro2",
2431 "quote",
2432 "sqlx-core",
2433 "sqlx-macros-core",
2434 "syn",
2435]
2436
2437[[package]]
2438name = "sqlx-macros-core"
2439version = "0.8.6"
2440source = "registry+https://github.com/rust-lang/crates.io-index"
2441checksum = "19a9c1841124ac5a61741f96e1d9e2ec77424bf323962dd894bdb93f37d5219b"
2442dependencies = [
2443 "dotenvy",
2444 "either",
2445 "heck",
2446 "hex",
2447 "once_cell",
2448 "proc-macro2",
2449 "quote",
2450 "serde",
2451 "serde_json",
2452 "sha2",
2453 "sqlx-core",
2454 "sqlx-mysql",
2455 "sqlx-postgres",
2456 "sqlx-sqlite",
2457 "syn",
2458 "tokio",
2459 "url",
2460]
2461
2462[[package]]
2463name = "sqlx-mysql"
2464version = "0.8.6"
2465source = "registry+https://github.com/rust-lang/crates.io-index"
2466checksum = "aa003f0038df784eb8fecbbac13affe3da23b45194bd57dba231c8f48199c526"
2467dependencies = [
2468 "atoi",
2469 "base64",
2470 "bitflags",
2471 "byteorder",
2472 "bytes",
2473 "crc",
2474 "digest",
2475 "dotenvy",
2476 "either",
2477 "futures-channel",
2478 "futures-core",
2479 "futures-io",
2480 "futures-util",
2481 "generic-array",
2482 "hex",
2483 "hkdf",
2484 "hmac",
2485 "itoa",
2486 "log",
2487 "md-5",
2488 "memchr",
2489 "once_cell",
2490 "percent-encoding",
2491 "rand 0.8.5",
2492 "rsa",
2493 "serde",
2494 "sha1",
2495 "sha2",
2496 "smallvec",
2497 "sqlx-core",
2498 "stringprep",
2499 "thiserror 2.0.14",
2500 "tracing",
2501 "whoami",
2502]
2503
2504[[package]]
2505name = "sqlx-postgres"
2506version = "0.8.6"
2507source = "registry+https://github.com/rust-lang/crates.io-index"
2508checksum = "db58fcd5a53cf07c184b154801ff91347e4c30d17a3562a635ff028ad5deda46"
2509dependencies = [
2510 "atoi",
2511 "base64",
2512 "bitflags",
2513 "byteorder",
2514 "crc",
2515 "dotenvy",
2516 "etcetera",
2517 "futures-channel",
2518 "futures-core",
2519 "futures-util",
2520 "hex",
2521 "hkdf",
2522 "hmac",
2523 "home",
2524 "itoa",
2525 "log",
2526 "md-5",
2527 "memchr",
2528 "once_cell",
2529 "rand 0.8.5",
2530 "serde",
2531 "serde_json",
2532 "sha2",
2533 "smallvec",
2534 "sqlx-core",
2535 "stringprep",
2536 "thiserror 2.0.14",
2537 "tracing",
2538 "whoami",
2539]
2540
2541[[package]]
2542name = "sqlx-sqlite"
2543version = "0.8.6"
2544source = "registry+https://github.com/rust-lang/crates.io-index"
2545checksum = "c2d12fe70b2c1b4401038055f90f151b78208de1f9f89a7dbfd41587a10c3eea"
2546dependencies = [
2547 "atoi",
2548 "flume",
2549 "futures-channel",
2550 "futures-core",
2551 "futures-executor",
2552 "futures-intrusive",
2553 "futures-util",
2554 "libsqlite3-sys",
2555 "log",
2556 "percent-encoding",
2557 "serde",
2558 "serde_urlencoded",
2559 "sqlx-core",
2560 "thiserror 2.0.14",
2561 "tracing",
2562 "url",
2563]
2564
2565[[package]]
2566name = "stable_deref_trait"
2567version = "1.2.0"
2568source = "registry+https://github.com/rust-lang/crates.io-index"
2569checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2570
2571[[package]]
2572name = "stacker"
2573version = "0.1.21"
2574source = "registry+https://github.com/rust-lang/crates.io-index"
2575checksum = "cddb07e32ddb770749da91081d8d0ac3a16f1a569a18b20348cd371f5dead06b"
2576dependencies = [
2577 "cc",
2578 "cfg-if",
2579 "libc",
2580 "psm",
2581 "windows-sys 0.59.0",
2582]
2583
2584[[package]]
2585name = "stringprep"
2586version = "0.1.5"
2587source = "registry+https://github.com/rust-lang/crates.io-index"
2588checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2589dependencies = [
2590 "unicode-bidi",
2591 "unicode-normalization",
2592 "unicode-properties",
2593]
2594
2595[[package]]
2596name = "strsim"
2597version = "0.11.1"
2598source = "registry+https://github.com/rust-lang/crates.io-index"
2599checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2600
2601[[package]]
2602name = "subtle"
2603version = "2.6.1"
2604source = "registry+https://github.com/rust-lang/crates.io-index"
2605checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2606
2607[[package]]
2608name = "syn"
2609version = "2.0.105"
2610source = "registry+https://github.com/rust-lang/crates.io-index"
2611checksum = "7bc3fcb250e53458e712715cf74285c1f889686520d79294a9ef3bd7aa1fc619"
2612dependencies = [
2613 "proc-macro2",
2614 "quote",
2615 "unicode-ident",
2616]
2617
2618[[package]]
2619name = "sync_wrapper"
2620version = "1.0.2"
2621source = "registry+https://github.com/rust-lang/crates.io-index"
2622checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
2623
2624[[package]]
2625name = "synstructure"
2626version = "0.13.2"
2627source = "registry+https://github.com/rust-lang/crates.io-index"
2628checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
2629dependencies = [
2630 "proc-macro2",
2631 "quote",
2632 "syn",
2633]
2634
2635[[package]]
2636name = "tempfile"
2637version = "3.21.0"
2638source = "registry+https://github.com/rust-lang/crates.io-index"
2639checksum = "15b61f8f20e3a6f7e0649d825294eaf317edce30f82cf6026e7e4cb9222a7d1e"
2640dependencies = [
2641 "fastrand",
2642 "getrandom 0.3.3",
2643 "once_cell",
2644 "rustix",
2645 "windows-sys 0.59.0",
2646]
2647
2648[[package]]
2649name = "thiserror"
2650version = "1.0.69"
2651source = "registry+https://github.com/rust-lang/crates.io-index"
2652checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2653dependencies = [
2654 "thiserror-impl 1.0.69",
2655]
2656
2657[[package]]
2658name = "thiserror"
2659version = "2.0.14"
2660source = "registry+https://github.com/rust-lang/crates.io-index"
2661checksum = "0b0949c3a6c842cbde3f1686d6eea5a010516deb7085f79db747562d4102f41e"
2662dependencies = [
2663 "thiserror-impl 2.0.14",
2664]
2665
2666[[package]]
2667name = "thiserror-impl"
2668version = "1.0.69"
2669source = "registry+https://github.com/rust-lang/crates.io-index"
2670checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2671dependencies = [
2672 "proc-macro2",
2673 "quote",
2674 "syn",
2675]
2676
2677[[package]]
2678name = "thiserror-impl"
2679version = "2.0.14"
2680source = "registry+https://github.com/rust-lang/crates.io-index"
2681checksum = "cc5b44b4ab9c2fdd0e0512e6bece8388e214c0749f5862b114cc5b7a25daf227"
2682dependencies = [
2683 "proc-macro2",
2684 "quote",
2685 "syn",
2686]
2687
2688[[package]]
2689name = "thread_local"
2690version = "1.1.9"
2691source = "registry+https://github.com/rust-lang/crates.io-index"
2692checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185"
2693dependencies = [
2694 "cfg-if",
2695]
2696
2697[[package]]
2698name = "tinystr"
2699version = "0.8.1"
2700source = "registry+https://github.com/rust-lang/crates.io-index"
2701checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
2702dependencies = [
2703 "displaydoc",
2704 "zerovec",
2705]
2706
2707[[package]]
2708name = "tinyvec"
2709version = "1.9.0"
2710source = "registry+https://github.com/rust-lang/crates.io-index"
2711checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
2712dependencies = [
2713 "tinyvec_macros",
2714]
2715
2716[[package]]
2717name = "tinyvec_macros"
2718version = "0.1.1"
2719source = "registry+https://github.com/rust-lang/crates.io-index"
2720checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2721
2722[[package]]
2723name = "tokio"
2724version = "1.47.1"
2725source = "registry+https://github.com/rust-lang/crates.io-index"
2726checksum = "89e49afdadebb872d3145a5638b59eb0691ea23e46ca484037cfab3b76b95038"
2727dependencies = [
2728 "backtrace",
2729 "bytes",
2730 "io-uring",
2731 "libc",
2732 "mio",
2733 "pin-project-lite",
2734 "signal-hook-registry",
2735 "slab",
2736 "socket2",
2737 "tokio-macros",
2738 "windows-sys 0.59.0",
2739]
2740
2741[[package]]
2742name = "tokio-macros"
2743version = "2.5.0"
2744source = "registry+https://github.com/rust-lang/crates.io-index"
2745checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2746dependencies = [
2747 "proc-macro2",
2748 "quote",
2749 "syn",
2750]
2751
2752[[package]]
2753name = "tokio-native-tls"
2754version = "0.3.1"
2755source = "registry+https://github.com/rust-lang/crates.io-index"
2756checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2757dependencies = [
2758 "native-tls",
2759 "tokio",
2760]
2761
2762[[package]]
2763name = "tokio-stream"
2764version = "0.1.17"
2765source = "registry+https://github.com/rust-lang/crates.io-index"
2766checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2767dependencies = [
2768 "futures-core",
2769 "pin-project-lite",
2770 "tokio",
2771]
2772
2773[[package]]
2774name = "tokio-util"
2775version = "0.7.15"
2776source = "registry+https://github.com/rust-lang/crates.io-index"
2777checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
2778dependencies = [
2779 "bytes",
2780 "futures-core",
2781 "futures-sink",
2782 "pin-project-lite",
2783 "tokio",
2784]
2785
2786[[package]]
2787name = "tonic"
2788version = "0.14.1"
2789source = "registry+https://github.com/rust-lang/crates.io-index"
2790checksum = "67ac5a8627ada0968acec063a4746bf79588aa03ccb66db2f75d7dce26722a40"
2791dependencies = [
2792 "async-trait",
2793 "axum",
2794 "base64",
2795 "bytes",
2796 "h2",
2797 "http",
2798 "http-body",
2799 "http-body-util",
2800 "hyper",
2801 "hyper-timeout",
2802 "hyper-util",
2803 "percent-encoding",
2804 "pin-project",
2805 "socket2",
2806 "sync_wrapper",
2807 "tokio",
2808 "tokio-stream",
2809 "tower",
2810 "tower-layer",
2811 "tower-service",
2812 "tracing",
2813]
2814
2815[[package]]
2816name = "tower"
2817version = "0.5.2"
2818source = "registry+https://github.com/rust-lang/crates.io-index"
2819checksum = "d039ad9159c98b70ecfd540b2573b97f7f52c3e8d9f8ad57a24b916a536975f9"
2820dependencies = [
2821 "futures-core",
2822 "futures-util",
2823 "indexmap",
2824 "pin-project-lite",
2825 "slab",
2826 "sync_wrapper",
2827 "tokio",
2828 "tokio-util",
2829 "tower-layer",
2830 "tower-service",
2831 "tracing",
2832]
2833
2834[[package]]
2835name = "tower-http"
2836version = "0.6.6"
2837source = "registry+https://github.com/rust-lang/crates.io-index"
2838checksum = "adc82fd73de2a9722ac5da747f12383d2bfdb93591ee6c58486e0097890f05f2"
2839dependencies = [
2840 "async-compression",
2841 "bitflags",
2842 "bytes",
2843 "futures-core",
2844 "http",
2845 "http-body",
2846 "pin-project-lite",
2847 "tokio",
2848 "tokio-util",
2849 "tower-layer",
2850 "tower-service",
2851]
2852
2853[[package]]
2854name = "tower-layer"
2855version = "0.3.3"
2856source = "registry+https://github.com/rust-lang/crates.io-index"
2857checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e"
2858
2859[[package]]
2860name = "tower-service"
2861version = "0.3.3"
2862source = "registry+https://github.com/rust-lang/crates.io-index"
2863checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2864
2865[[package]]
2866name = "tower_governor"
2867version = "0.8.0"
2868source = "registry+https://github.com/rust-lang/crates.io-index"
2869checksum = "44de9b94d849d3c46e06a883d72d408c2de6403367b39df2b1c9d9e7b6736fe6"
2870dependencies = [
2871 "axum",
2872 "forwarded-header-value",
2873 "governor",
2874 "http",
2875 "pin-project",
2876 "thiserror 2.0.14",
2877 "tonic",
2878 "tower",
2879 "tracing",
2880]
2881
2882[[package]]
2883name = "tracing"
2884version = "0.1.41"
2885source = "registry+https://github.com/rust-lang/crates.io-index"
2886checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2887dependencies = [
2888 "log",
2889 "pin-project-lite",
2890 "tracing-attributes",
2891 "tracing-core",
2892]
2893
2894[[package]]
2895name = "tracing-attributes"
2896version = "0.1.30"
2897source = "registry+https://github.com/rust-lang/crates.io-index"
2898checksum = "81383ab64e72a7a8b8e13130c49e3dab29def6d0c7d76a03087b3cf71c5c6903"
2899dependencies = [
2900 "proc-macro2",
2901 "quote",
2902 "syn",
2903]
2904
2905[[package]]
2906name = "tracing-core"
2907version = "0.1.34"
2908source = "registry+https://github.com/rust-lang/crates.io-index"
2909checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
2910dependencies = [
2911 "once_cell",
2912 "valuable",
2913]
2914
2915[[package]]
2916name = "tracing-log"
2917version = "0.2.0"
2918source = "registry+https://github.com/rust-lang/crates.io-index"
2919checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2920dependencies = [
2921 "log",
2922 "once_cell",
2923 "tracing-core",
2924]
2925
2926[[package]]
2927name = "tracing-subscriber"
2928version = "0.3.19"
2929source = "registry+https://github.com/rust-lang/crates.io-index"
2930checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2931dependencies = [
2932 "matchers",
2933 "nu-ansi-term",
2934 "once_cell",
2935 "regex",
2936 "sharded-slab",
2937 "smallvec",
2938 "thread_local",
2939 "tracing",
2940 "tracing-core",
2941 "tracing-log",
2942]
2943
2944[[package]]
2945name = "try-lock"
2946version = "0.2.5"
2947source = "registry+https://github.com/rust-lang/crates.io-index"
2948checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
2949
2950[[package]]
2951name = "typenum"
2952version = "1.18.0"
2953source = "registry+https://github.com/rust-lang/crates.io-index"
2954checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
2955
2956[[package]]
2957name = "ucd-trie"
2958version = "0.1.7"
2959source = "registry+https://github.com/rust-lang/crates.io-index"
2960checksum = "2896d95c02a80c6d6a5d6e953d479f5ddf2dfdb6a244441010e373ac0fb88971"
2961
2962[[package]]
2963name = "unicode-bidi"
2964version = "0.3.18"
2965source = "registry+https://github.com/rust-lang/crates.io-index"
2966checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2967
2968[[package]]
2969name = "unicode-ident"
2970version = "1.0.18"
2971source = "registry+https://github.com/rust-lang/crates.io-index"
2972checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
2973
2974[[package]]
2975name = "unicode-normalization"
2976version = "0.1.24"
2977source = "registry+https://github.com/rust-lang/crates.io-index"
2978checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2979dependencies = [
2980 "tinyvec",
2981]
2982
2983[[package]]
2984name = "unicode-properties"
2985version = "0.1.3"
2986source = "registry+https://github.com/rust-lang/crates.io-index"
2987checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
2988
2989[[package]]
2990name = "untrusted"
2991version = "0.9.0"
2992source = "registry+https://github.com/rust-lang/crates.io-index"
2993checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2994
2995[[package]]
2996name = "url"
2997version = "2.5.4"
2998source = "registry+https://github.com/rust-lang/crates.io-index"
2999checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
3000dependencies = [
3001 "form_urlencoded",
3002 "idna",
3003 "percent-encoding",
3004]
3005
3006[[package]]
3007name = "utf8_iter"
3008version = "1.0.4"
3009source = "registry+https://github.com/rust-lang/crates.io-index"
3010checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
3011
3012[[package]]
3013name = "valuable"
3014version = "0.1.1"
3015source = "registry+https://github.com/rust-lang/crates.io-index"
3016checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
3017
3018[[package]]
3019name = "vcpkg"
3020version = "0.2.15"
3021source = "registry+https://github.com/rust-lang/crates.io-index"
3022checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
3023
3024[[package]]
3025name = "version_check"
3026version = "0.9.5"
3027source = "registry+https://github.com/rust-lang/crates.io-index"
3028checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
3029
3030[[package]]
3031name = "walkdir"
3032version = "2.5.0"
3033source = "registry+https://github.com/rust-lang/crates.io-index"
3034checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
3035dependencies = [
3036 "same-file",
3037 "winapi-util",
3038]
3039
3040[[package]]
3041name = "want"
3042version = "0.3.1"
3043source = "registry+https://github.com/rust-lang/crates.io-index"
3044checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
3045dependencies = [
3046 "try-lock",
3047]
3048
3049[[package]]
3050name = "wasi"
3051version = "0.11.1+wasi-snapshot-preview1"
3052source = "registry+https://github.com/rust-lang/crates.io-index"
3053checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b"
3054
3055[[package]]
3056name = "wasi"
3057version = "0.14.2+wasi-0.2.4"
3058source = "registry+https://github.com/rust-lang/crates.io-index"
3059checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
3060dependencies = [
3061 "wit-bindgen-rt",
3062]
3063
3064[[package]]
3065name = "wasite"
3066version = "0.1.0"
3067source = "registry+https://github.com/rust-lang/crates.io-index"
3068checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
3069
3070[[package]]
3071name = "wasm-bindgen"
3072version = "0.2.100"
3073source = "registry+https://github.com/rust-lang/crates.io-index"
3074checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
3075dependencies = [
3076 "cfg-if",
3077 "once_cell",
3078 "rustversion",
3079 "wasm-bindgen-macro",
3080]
3081
3082[[package]]
3083name = "wasm-bindgen-backend"
3084version = "0.2.100"
3085source = "registry+https://github.com/rust-lang/crates.io-index"
3086checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
3087dependencies = [
3088 "bumpalo",
3089 "log",
3090 "proc-macro2",
3091 "quote",
3092 "syn",
3093 "wasm-bindgen-shared",
3094]
3095
3096[[package]]
3097name = "wasm-bindgen-macro"
3098version = "0.2.100"
3099source = "registry+https://github.com/rust-lang/crates.io-index"
3100checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
3101dependencies = [
3102 "quote",
3103 "wasm-bindgen-macro-support",
3104]
3105
3106[[package]]
3107name = "wasm-bindgen-macro-support"
3108version = "0.2.100"
3109source = "registry+https://github.com/rust-lang/crates.io-index"
3110checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
3111dependencies = [
3112 "proc-macro2",
3113 "quote",
3114 "syn",
3115 "wasm-bindgen-backend",
3116 "wasm-bindgen-shared",
3117]
3118
3119[[package]]
3120name = "wasm-bindgen-shared"
3121version = "0.2.100"
3122source = "registry+https://github.com/rust-lang/crates.io-index"
3123checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
3124dependencies = [
3125 "unicode-ident",
3126]
3127
3128[[package]]
3129name = "web-sys"
3130version = "0.3.77"
3131source = "registry+https://github.com/rust-lang/crates.io-index"
3132checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
3133dependencies = [
3134 "js-sys",
3135 "wasm-bindgen",
3136]
3137
3138[[package]]
3139name = "web-time"
3140version = "1.1.0"
3141source = "registry+https://github.com/rust-lang/crates.io-index"
3142checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
3143dependencies = [
3144 "js-sys",
3145 "wasm-bindgen",
3146]
3147
3148[[package]]
3149name = "webpki-roots"
3150version = "0.26.11"
3151source = "registry+https://github.com/rust-lang/crates.io-index"
3152checksum = "521bc38abb08001b01866da9f51eb7c5d647a19260e00054a8c7fd5f9e57f7a9"
3153dependencies = [
3154 "webpki-roots 1.0.2",
3155]
3156
3157[[package]]
3158name = "webpki-roots"
3159version = "1.0.2"
3160source = "registry+https://github.com/rust-lang/crates.io-index"
3161checksum = "7e8983c3ab33d6fb807cfcdad2491c4ea8cbc8ed839181c7dfd9c67c83e261b2"
3162dependencies = [
3163 "rustls-pki-types",
3164]
3165
3166[[package]]
3167name = "whoami"
3168version = "1.6.1"
3169source = "registry+https://github.com/rust-lang/crates.io-index"
3170checksum = "5d4a4db5077702ca3015d3d02d74974948aba2ad9e12ab7df718ee64ccd7e97d"
3171dependencies = [
3172 "libredox",
3173 "wasite",
3174]
3175
3176[[package]]
3177name = "winapi"
3178version = "0.3.9"
3179source = "registry+https://github.com/rust-lang/crates.io-index"
3180checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
3181dependencies = [
3182 "winapi-i686-pc-windows-gnu",
3183 "winapi-x86_64-pc-windows-gnu",
3184]
3185
3186[[package]]
3187name = "winapi-i686-pc-windows-gnu"
3188version = "0.4.0"
3189source = "registry+https://github.com/rust-lang/crates.io-index"
3190checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
3191
3192[[package]]
3193name = "winapi-util"
3194version = "0.1.9"
3195source = "registry+https://github.com/rust-lang/crates.io-index"
3196checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
3197dependencies = [
3198 "windows-sys 0.59.0",
3199]
3200
3201[[package]]
3202name = "winapi-x86_64-pc-windows-gnu"
3203version = "0.4.0"
3204source = "registry+https://github.com/rust-lang/crates.io-index"
3205checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
3206
3207[[package]]
3208name = "windows-core"
3209version = "0.61.2"
3210source = "registry+https://github.com/rust-lang/crates.io-index"
3211checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3"
3212dependencies = [
3213 "windows-implement",
3214 "windows-interface",
3215 "windows-link",
3216 "windows-result",
3217 "windows-strings",
3218]
3219
3220[[package]]
3221name = "windows-implement"
3222version = "0.60.0"
3223source = "registry+https://github.com/rust-lang/crates.io-index"
3224checksum = "a47fddd13af08290e67f4acabf4b459f647552718f683a7b415d290ac744a836"
3225dependencies = [
3226 "proc-macro2",
3227 "quote",
3228 "syn",
3229]
3230
3231[[package]]
3232name = "windows-interface"
3233version = "0.59.1"
3234source = "registry+https://github.com/rust-lang/crates.io-index"
3235checksum = "bd9211b69f8dcdfa817bfd14bf1c97c9188afa36f4750130fcdf3f400eca9fa8"
3236dependencies = [
3237 "proc-macro2",
3238 "quote",
3239 "syn",
3240]
3241
3242[[package]]
3243name = "windows-link"
3244version = "0.1.3"
3245source = "registry+https://github.com/rust-lang/crates.io-index"
3246checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a"
3247
3248[[package]]
3249name = "windows-result"
3250version = "0.3.4"
3251source = "registry+https://github.com/rust-lang/crates.io-index"
3252checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6"
3253dependencies = [
3254 "windows-link",
3255]
3256
3257[[package]]
3258name = "windows-strings"
3259version = "0.4.2"
3260source = "registry+https://github.com/rust-lang/crates.io-index"
3261checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57"
3262dependencies = [
3263 "windows-link",
3264]
3265
3266[[package]]
3267name = "windows-sys"
3268version = "0.48.0"
3269source = "registry+https://github.com/rust-lang/crates.io-index"
3270checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
3271dependencies = [
3272 "windows-targets 0.48.5",
3273]
3274
3275[[package]]
3276name = "windows-sys"
3277version = "0.52.0"
3278source = "registry+https://github.com/rust-lang/crates.io-index"
3279checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
3280dependencies = [
3281 "windows-targets 0.52.6",
3282]
3283
3284[[package]]
3285name = "windows-sys"
3286version = "0.59.0"
3287source = "registry+https://github.com/rust-lang/crates.io-index"
3288checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
3289dependencies = [
3290 "windows-targets 0.52.6",
3291]
3292
3293[[package]]
3294name = "windows-targets"
3295version = "0.48.5"
3296source = "registry+https://github.com/rust-lang/crates.io-index"
3297checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
3298dependencies = [
3299 "windows_aarch64_gnullvm 0.48.5",
3300 "windows_aarch64_msvc 0.48.5",
3301 "windows_i686_gnu 0.48.5",
3302 "windows_i686_msvc 0.48.5",
3303 "windows_x86_64_gnu 0.48.5",
3304 "windows_x86_64_gnullvm 0.48.5",
3305 "windows_x86_64_msvc 0.48.5",
3306]
3307
3308[[package]]
3309name = "windows-targets"
3310version = "0.52.6"
3311source = "registry+https://github.com/rust-lang/crates.io-index"
3312checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
3313dependencies = [
3314 "windows_aarch64_gnullvm 0.52.6",
3315 "windows_aarch64_msvc 0.52.6",
3316 "windows_i686_gnu 0.52.6",
3317 "windows_i686_gnullvm",
3318 "windows_i686_msvc 0.52.6",
3319 "windows_x86_64_gnu 0.52.6",
3320 "windows_x86_64_gnullvm 0.52.6",
3321 "windows_x86_64_msvc 0.52.6",
3322]
3323
3324[[package]]
3325name = "windows_aarch64_gnullvm"
3326version = "0.48.5"
3327source = "registry+https://github.com/rust-lang/crates.io-index"
3328checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
3329
3330[[package]]
3331name = "windows_aarch64_gnullvm"
3332version = "0.52.6"
3333source = "registry+https://github.com/rust-lang/crates.io-index"
3334checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
3335
3336[[package]]
3337name = "windows_aarch64_msvc"
3338version = "0.48.5"
3339source = "registry+https://github.com/rust-lang/crates.io-index"
3340checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
3341
3342[[package]]
3343name = "windows_aarch64_msvc"
3344version = "0.52.6"
3345source = "registry+https://github.com/rust-lang/crates.io-index"
3346checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
3347
3348[[package]]
3349name = "windows_i686_gnu"
3350version = "0.48.5"
3351source = "registry+https://github.com/rust-lang/crates.io-index"
3352checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
3353
3354[[package]]
3355name = "windows_i686_gnu"
3356version = "0.52.6"
3357source = "registry+https://github.com/rust-lang/crates.io-index"
3358checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
3359
3360[[package]]
3361name = "windows_i686_gnullvm"
3362version = "0.52.6"
3363source = "registry+https://github.com/rust-lang/crates.io-index"
3364checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
3365
3366[[package]]
3367name = "windows_i686_msvc"
3368version = "0.48.5"
3369source = "registry+https://github.com/rust-lang/crates.io-index"
3370checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
3371
3372[[package]]
3373name = "windows_i686_msvc"
3374version = "0.52.6"
3375source = "registry+https://github.com/rust-lang/crates.io-index"
3376checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
3377
3378[[package]]
3379name = "windows_x86_64_gnu"
3380version = "0.48.5"
3381source = "registry+https://github.com/rust-lang/crates.io-index"
3382checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
3383
3384[[package]]
3385name = "windows_x86_64_gnu"
3386version = "0.52.6"
3387source = "registry+https://github.com/rust-lang/crates.io-index"
3388checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
3389
3390[[package]]
3391name = "windows_x86_64_gnullvm"
3392version = "0.48.5"
3393source = "registry+https://github.com/rust-lang/crates.io-index"
3394checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
3395
3396[[package]]
3397name = "windows_x86_64_gnullvm"
3398version = "0.52.6"
3399source = "registry+https://github.com/rust-lang/crates.io-index"
3400checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
3401
3402[[package]]
3403name = "windows_x86_64_msvc"
3404version = "0.48.5"
3405source = "registry+https://github.com/rust-lang/crates.io-index"
3406checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
3407
3408[[package]]
3409name = "windows_x86_64_msvc"
3410version = "0.52.6"
3411source = "registry+https://github.com/rust-lang/crates.io-index"
3412checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
3413
3414[[package]]
3415name = "wit-bindgen-rt"
3416version = "0.39.0"
3417source = "registry+https://github.com/rust-lang/crates.io-index"
3418checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
3419dependencies = [
3420 "bitflags",
3421]
3422
3423[[package]]
3424name = "writeable"
3425version = "0.6.1"
3426source = "registry+https://github.com/rust-lang/crates.io-index"
3427checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
3428
3429[[package]]
3430name = "yoke"
3431version = "0.8.0"
3432source = "registry+https://github.com/rust-lang/crates.io-index"
3433checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
3434dependencies = [
3435 "serde",
3436 "stable_deref_trait",
3437 "yoke-derive",
3438 "zerofrom",
3439]
3440
3441[[package]]
3442name = "yoke-derive"
3443version = "0.8.0"
3444source = "registry+https://github.com/rust-lang/crates.io-index"
3445checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
3446dependencies = [
3447 "proc-macro2",
3448 "quote",
3449 "syn",
3450 "synstructure",
3451]
3452
3453[[package]]
3454name = "zerocopy"
3455version = "0.8.26"
3456source = "registry+https://github.com/rust-lang/crates.io-index"
3457checksum = "1039dd0d3c310cf05de012d8a39ff557cb0d23087fd44cad61df08fc31907a2f"
3458dependencies = [
3459 "zerocopy-derive",
3460]
3461
3462[[package]]
3463name = "zerocopy-derive"
3464version = "0.8.26"
3465source = "registry+https://github.com/rust-lang/crates.io-index"
3466checksum = "9ecf5b4cc5364572d7f4c329661bcc82724222973f2cab6f050a4e5c22f75181"
3467dependencies = [
3468 "proc-macro2",
3469 "quote",
3470 "syn",
3471]
3472
3473[[package]]
3474name = "zerofrom"
3475version = "0.1.6"
3476source = "registry+https://github.com/rust-lang/crates.io-index"
3477checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
3478dependencies = [
3479 "zerofrom-derive",
3480]
3481
3482[[package]]
3483name = "zerofrom-derive"
3484version = "0.1.6"
3485source = "registry+https://github.com/rust-lang/crates.io-index"
3486checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
3487dependencies = [
3488 "proc-macro2",
3489 "quote",
3490 "syn",
3491 "synstructure",
3492]
3493
3494[[package]]
3495name = "zeroize"
3496version = "1.8.1"
3497source = "registry+https://github.com/rust-lang/crates.io-index"
3498checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
3499dependencies = [
3500 "zeroize_derive",
3501]
3502
3503[[package]]
3504name = "zeroize_derive"
3505version = "1.4.2"
3506source = "registry+https://github.com/rust-lang/crates.io-index"
3507checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
3508dependencies = [
3509 "proc-macro2",
3510 "quote",
3511 "syn",
3512]
3513
3514[[package]]
3515name = "zerotrie"
3516version = "0.2.2"
3517source = "registry+https://github.com/rust-lang/crates.io-index"
3518checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
3519dependencies = [
3520 "displaydoc",
3521 "yoke",
3522 "zerofrom",
3523]
3524
3525[[package]]
3526name = "zerovec"
3527version = "0.11.4"
3528source = "registry+https://github.com/rust-lang/crates.io-index"
3529checksum = "e7aa2bd55086f1ab526693ecbe444205da57e25f4489879da80635a46d90e73b"
3530dependencies = [
3531 "yoke",
3532 "zerofrom",
3533 "zerovec-derive",
3534]
3535
3536[[package]]
3537name = "zerovec-derive"
3538version = "0.11.1"
3539source = "registry+https://github.com/rust-lang/crates.io-index"
3540checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
3541dependencies = [
3542 "proc-macro2",
3543 "quote",
3544 "syn",
3545]
3546
3547[[package]]
3548name = "zstd"
3549version = "0.13.3"
3550source = "registry+https://github.com/rust-lang/crates.io-index"
3551checksum = "e91ee311a569c327171651566e07972200e76fcfe2242a4fa446149a3881c08a"
3552dependencies = [
3553 "zstd-safe",
3554]
3555
3556[[package]]
3557name = "zstd-safe"
3558version = "7.2.4"
3559source = "registry+https://github.com/rust-lang/crates.io-index"
3560checksum = "8f49c4d5f0abb602a93fb8736af2a4f4dd9512e36f7f570d66e65ff867ed3b9d"
3561dependencies = [
3562 "zstd-sys",
3563]
3564
3565[[package]]
3566name = "zstd-sys"
3567version = "2.0.15+zstd.1.5.7"
3568source = "registry+https://github.com/rust-lang/crates.io-index"
3569checksum = "eb81183ddd97d0c74cedf1d50d85c8d08c1b8b68ee863bdee9e706eedba1a237"
3570dependencies = [
3571 "cc",
3572 "pkg-config",
3573]