Your locally hosted lumina server for IDAPro
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "addr2line"
7version = "0.24.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
10dependencies = [
11 "gimli",
12]
13
14[[package]]
15name = "adler2"
16version = "2.0.0"
17source = "registry+https://github.com/rust-lang/crates.io-index"
18checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
19
20[[package]]
21name = "aho-corasick"
22version = "1.1.3"
23source = "registry+https://github.com/rust-lang/crates.io-index"
24checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
25dependencies = [
26 "memchr",
27]
28
29[[package]]
30name = "anstream"
31version = "0.6.19"
32source = "registry+https://github.com/rust-lang/crates.io-index"
33checksum = "301af1932e46185686725e0fad2f8f2aa7da69dd70bf6ecc44d6b703844a3933"
34dependencies = [
35 "anstyle",
36 "anstyle-parse",
37 "anstyle-query",
38 "anstyle-wincon",
39 "colorchoice",
40 "is_terminal_polyfill",
41 "utf8parse",
42]
43
44[[package]]
45name = "anstyle"
46version = "1.0.11"
47source = "registry+https://github.com/rust-lang/crates.io-index"
48checksum = "862ed96ca487e809f1c8e5a8447f6ee2cf102f846893800b20cebdf541fc6bbd"
49
50[[package]]
51name = "anstyle-parse"
52version = "0.2.7"
53source = "registry+https://github.com/rust-lang/crates.io-index"
54checksum = "4e7644824f0aa2c7b9384579234ef10eb7efb6a0deb83f9630a49594dd9c15c2"
55dependencies = [
56 "utf8parse",
57]
58
59[[package]]
60name = "anstyle-query"
61version = "1.1.3"
62source = "registry+https://github.com/rust-lang/crates.io-index"
63checksum = "6c8bdeb6047d8983be085bab0ba1472e6dc604e7041dbf6fcd5e71523014fae9"
64dependencies = [
65 "windows-sys 0.59.0",
66]
67
68[[package]]
69name = "anstyle-wincon"
70version = "3.0.9"
71source = "registry+https://github.com/rust-lang/crates.io-index"
72checksum = "403f75924867bb1033c59fbf0797484329750cfbe3c4325cd33127941fabc882"
73dependencies = [
74 "anstyle",
75 "once_cell_polyfill",
76 "windows-sys 0.59.0",
77]
78
79[[package]]
80name = "anyhow"
81version = "1.0.98"
82source = "registry+https://github.com/rust-lang/crates.io-index"
83checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
84
85[[package]]
86name = "async-trait"
87version = "0.1.88"
88source = "registry+https://github.com/rust-lang/crates.io-index"
89checksum = "e539d3fca749fcee5236ab05e93a52867dd549cc157c8cb7f99595f3cedffdb5"
90dependencies = [
91 "proc-macro2",
92 "quote",
93 "syn",
94]
95
96[[package]]
97name = "autocfg"
98version = "1.4.0"
99source = "registry+https://github.com/rust-lang/crates.io-index"
100checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
101
102[[package]]
103name = "backtrace"
104version = "0.3.75"
105source = "registry+https://github.com/rust-lang/crates.io-index"
106checksum = "6806a6321ec58106fea15becdad98371e28d92ccbc7c8f1b3b6dd724fe8f1002"
107dependencies = [
108 "addr2line",
109 "cfg-if",
110 "libc",
111 "miniz_oxide",
112 "object",
113 "rustc-demangle",
114 "windows-targets",
115]
116
117[[package]]
118name = "base64"
119version = "0.21.7"
120source = "registry+https://github.com/rust-lang/crates.io-index"
121checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
122
123[[package]]
124name = "base64"
125version = "0.22.1"
126source = "registry+https://github.com/rust-lang/crates.io-index"
127checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
128
129[[package]]
130name = "bb8"
131version = "0.8.6"
132source = "registry+https://github.com/rust-lang/crates.io-index"
133checksum = "d89aabfae550a5c44b43ab941844ffcd2e993cb6900b342debf59e9ea74acdb8"
134dependencies = [
135 "async-trait",
136 "futures-util",
137 "parking_lot",
138 "tokio",
139]
140
141[[package]]
142name = "binascii"
143version = "0.1.4"
144source = "registry+https://github.com/rust-lang/crates.io-index"
145checksum = "383d29d513d8764dcdc42ea295d979eb99c3c9f00607b3692cf68a431f7dca72"
146
147[[package]]
148name = "bitflags"
149version = "2.9.1"
150source = "registry+https://github.com/rust-lang/crates.io-index"
151checksum = "1b8e56985ec62d17e9c1001dc89c88ecd7dc08e47eba5ec7c29c7b5eeecde967"
152
153[[package]]
154name = "block-buffer"
155version = "0.10.4"
156source = "registry+https://github.com/rust-lang/crates.io-index"
157checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
158dependencies = [
159 "generic-array",
160]
161
162[[package]]
163name = "bumpalo"
164version = "3.18.1"
165source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "793db76d6187cd04dff33004d8e6c9cc4e05cd330500379d2394209271b4aeee"
167
168[[package]]
169name = "byteorder"
170version = "1.5.0"
171source = "registry+https://github.com/rust-lang/crates.io-index"
172checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
173
174[[package]]
175name = "bytes"
176version = "1.10.1"
177source = "registry+https://github.com/rust-lang/crates.io-index"
178checksum = "d71b6127be86fdcfddb610f7182ac57211d4b18a3e9c82eb2d17662f2227ad6a"
179
180[[package]]
181name = "cc"
182version = "1.2.26"
183source = "registry+https://github.com/rust-lang/crates.io-index"
184checksum = "956a5e21988b87f372569b66183b78babf23ebc2e744b733e4350a752c4dafac"
185dependencies = [
186 "shlex",
187]
188
189[[package]]
190name = "cfg-if"
191version = "1.0.0"
192source = "registry+https://github.com/rust-lang/crates.io-index"
193checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
194
195[[package]]
196name = "clap"
197version = "4.5.39"
198source = "registry+https://github.com/rust-lang/crates.io-index"
199checksum = "fd60e63e9be68e5fb56422e397cf9baddded06dae1d2e523401542383bc72a9f"
200dependencies = [
201 "clap_builder",
202]
203
204[[package]]
205name = "clap_builder"
206version = "4.5.39"
207source = "registry+https://github.com/rust-lang/crates.io-index"
208checksum = "89cc6392a1f72bbeb820d71f32108f61fdaf18bc526e1d23954168a67759ef51"
209dependencies = [
210 "anstream",
211 "anstyle",
212 "clap_lex",
213 "strsim",
214]
215
216[[package]]
217name = "clap_lex"
218version = "0.7.4"
219source = "registry+https://github.com/rust-lang/crates.io-index"
220checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
221
222[[package]]
223name = "colorchoice"
224version = "1.0.4"
225source = "registry+https://github.com/rust-lang/crates.io-index"
226checksum = "b05b61dc5112cbb17e4b6cd61790d9845d13888356391624cbe7e41efeac1e75"
227
228[[package]]
229name = "common"
230version = "0.2.0"
231dependencies = [
232 "anyhow",
233 "binascii",
234 "diesel",
235 "diesel-async",
236 "futures-util",
237 "log",
238 "native-tls",
239 "postgres-native-tls",
240 "prometheus-client",
241 "serde",
242 "time",
243 "tokio",
244 "tokio-postgres",
245 "toml",
246 "warp",
247]
248
249[[package]]
250name = "core-foundation"
251version = "0.9.4"
252source = "registry+https://github.com/rust-lang/crates.io-index"
253checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
254dependencies = [
255 "core-foundation-sys",
256 "libc",
257]
258
259[[package]]
260name = "core-foundation-sys"
261version = "0.8.7"
262source = "registry+https://github.com/rust-lang/crates.io-index"
263checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
264
265[[package]]
266name = "cpufeatures"
267version = "0.2.17"
268source = "registry+https://github.com/rust-lang/crates.io-index"
269checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
270dependencies = [
271 "libc",
272]
273
274[[package]]
275name = "crypto-common"
276version = "0.1.6"
277source = "registry+https://github.com/rust-lang/crates.io-index"
278checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
279dependencies = [
280 "generic-array",
281 "typenum",
282]
283
284[[package]]
285name = "darling"
286version = "0.20.11"
287source = "registry+https://github.com/rust-lang/crates.io-index"
288checksum = "fc7f46116c46ff9ab3eb1597a45688b6715c6e628b5c133e288e709a29bcb4ee"
289dependencies = [
290 "darling_core",
291 "darling_macro",
292]
293
294[[package]]
295name = "darling_core"
296version = "0.20.11"
297source = "registry+https://github.com/rust-lang/crates.io-index"
298checksum = "0d00b9596d185e565c2207a0b01f8bd1a135483d02d9b7b0a54b11da8d53412e"
299dependencies = [
300 "fnv",
301 "ident_case",
302 "proc-macro2",
303 "quote",
304 "strsim",
305 "syn",
306]
307
308[[package]]
309name = "darling_macro"
310version = "0.20.11"
311source = "registry+https://github.com/rust-lang/crates.io-index"
312checksum = "fc34b93ccb385b40dc71c6fceac4b2ad23662c7eeb248cf10d529b7e055b6ead"
313dependencies = [
314 "darling_core",
315 "quote",
316 "syn",
317]
318
319[[package]]
320name = "data-encoding"
321version = "2.9.0"
322source = "registry+https://github.com/rust-lang/crates.io-index"
323checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
324
325[[package]]
326name = "deranged"
327version = "0.4.0"
328source = "registry+https://github.com/rust-lang/crates.io-index"
329checksum = "9c9e6a11ca8224451684bc0d7d5a7adbf8f2fd6887261a1cfc3c0432f9d4068e"
330dependencies = [
331 "powerfmt",
332]
333
334[[package]]
335name = "diesel"
336version = "2.2.10"
337source = "registry+https://github.com/rust-lang/crates.io-index"
338checksum = "ff3e1edb1f37b4953dd5176916347289ed43d7119cc2e6c7c3f7849ff44ea506"
339dependencies = [
340 "bitflags",
341 "byteorder",
342 "diesel_derives",
343 "itoa",
344 "time",
345]
346
347[[package]]
348name = "diesel-async"
349version = "0.5.2"
350source = "registry+https://github.com/rust-lang/crates.io-index"
351checksum = "51a307ac00f7c23f526a04a77761a0519b9f0eb2838ebf5b905a58580095bdcb"
352dependencies = [
353 "async-trait",
354 "bb8",
355 "diesel",
356 "futures-util",
357 "scoped-futures",
358 "tokio",
359 "tokio-postgres",
360]
361
362[[package]]
363name = "diesel_derives"
364version = "2.2.5"
365source = "registry+https://github.com/rust-lang/crates.io-index"
366checksum = "68d4216021b3ea446fd2047f5c8f8fe6e98af34508a254a01e4d6bc1e844f84d"
367dependencies = [
368 "diesel_table_macro_syntax",
369 "dsl_auto_type",
370 "proc-macro2",
371 "quote",
372 "syn",
373]
374
375[[package]]
376name = "diesel_table_macro_syntax"
377version = "0.2.0"
378source = "registry+https://github.com/rust-lang/crates.io-index"
379checksum = "209c735641a413bc68c4923a9d6ad4bcb3ca306b794edaa7eb0b3228a99ffb25"
380dependencies = [
381 "syn",
382]
383
384[[package]]
385name = "digest"
386version = "0.10.7"
387source = "registry+https://github.com/rust-lang/crates.io-index"
388checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
389dependencies = [
390 "block-buffer",
391 "crypto-common",
392 "subtle",
393]
394
395[[package]]
396name = "displaydoc"
397version = "0.2.5"
398source = "registry+https://github.com/rust-lang/crates.io-index"
399checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
400dependencies = [
401 "proc-macro2",
402 "quote",
403 "syn",
404]
405
406[[package]]
407name = "dsl_auto_type"
408version = "0.1.3"
409source = "registry+https://github.com/rust-lang/crates.io-index"
410checksum = "139ae9aca7527f85f26dd76483eb38533fd84bd571065da1739656ef71c5ff5b"
411dependencies = [
412 "darling",
413 "either",
414 "heck",
415 "proc-macro2",
416 "quote",
417 "syn",
418]
419
420[[package]]
421name = "dtoa"
422version = "1.0.10"
423source = "registry+https://github.com/rust-lang/crates.io-index"
424checksum = "d6add3b8cff394282be81f3fc1a0605db594ed69890078ca6e2cab1c408bcf04"
425
426[[package]]
427name = "either"
428version = "1.15.0"
429source = "registry+https://github.com/rust-lang/crates.io-index"
430checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
431
432[[package]]
433name = "encoding_rs"
434version = "0.8.35"
435source = "registry+https://github.com/rust-lang/crates.io-index"
436checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
437dependencies = [
438 "cfg-if",
439]
440
441[[package]]
442name = "env_logger"
443version = "0.10.2"
444source = "registry+https://github.com/rust-lang/crates.io-index"
445checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
446dependencies = [
447 "humantime",
448 "is-terminal",
449 "log",
450 "regex",
451 "termcolor",
452]
453
454[[package]]
455name = "equivalent"
456version = "1.0.2"
457source = "registry+https://github.com/rust-lang/crates.io-index"
458checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
459
460[[package]]
461name = "errno"
462version = "0.3.12"
463source = "registry+https://github.com/rust-lang/crates.io-index"
464checksum = "cea14ef9355e3beab063703aa9dab15afd25f0667c341310c1e5274bb1d0da18"
465dependencies = [
466 "libc",
467 "windows-sys 0.59.0",
468]
469
470[[package]]
471name = "fallible-iterator"
472version = "0.2.0"
473source = "registry+https://github.com/rust-lang/crates.io-index"
474checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
475
476[[package]]
477name = "fastrand"
478version = "2.3.0"
479source = "registry+https://github.com/rust-lang/crates.io-index"
480checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
481
482[[package]]
483name = "fnv"
484version = "1.0.7"
485source = "registry+https://github.com/rust-lang/crates.io-index"
486checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
487
488[[package]]
489name = "foreign-types"
490version = "0.3.2"
491source = "registry+https://github.com/rust-lang/crates.io-index"
492checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
493dependencies = [
494 "foreign-types-shared",
495]
496
497[[package]]
498name = "foreign-types-shared"
499version = "0.1.1"
500source = "registry+https://github.com/rust-lang/crates.io-index"
501checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
502
503[[package]]
504name = "form_urlencoded"
505version = "1.2.1"
506source = "registry+https://github.com/rust-lang/crates.io-index"
507checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
508dependencies = [
509 "percent-encoding",
510]
511
512[[package]]
513name = "futures-channel"
514version = "0.3.31"
515source = "registry+https://github.com/rust-lang/crates.io-index"
516checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
517dependencies = [
518 "futures-core",
519 "futures-sink",
520]
521
522[[package]]
523name = "futures-core"
524version = "0.3.31"
525source = "registry+https://github.com/rust-lang/crates.io-index"
526checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
527
528[[package]]
529name = "futures-macro"
530version = "0.3.31"
531source = "registry+https://github.com/rust-lang/crates.io-index"
532checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
533dependencies = [
534 "proc-macro2",
535 "quote",
536 "syn",
537]
538
539[[package]]
540name = "futures-sink"
541version = "0.3.31"
542source = "registry+https://github.com/rust-lang/crates.io-index"
543checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
544
545[[package]]
546name = "futures-task"
547version = "0.3.31"
548source = "registry+https://github.com/rust-lang/crates.io-index"
549checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
550
551[[package]]
552name = "futures-util"
553version = "0.3.31"
554source = "registry+https://github.com/rust-lang/crates.io-index"
555checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
556dependencies = [
557 "futures-core",
558 "futures-macro",
559 "futures-sink",
560 "futures-task",
561 "pin-project-lite",
562 "pin-utils",
563 "slab",
564]
565
566[[package]]
567name = "generic-array"
568version = "0.14.7"
569source = "registry+https://github.com/rust-lang/crates.io-index"
570checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
571dependencies = [
572 "typenum",
573 "version_check",
574]
575
576[[package]]
577name = "getrandom"
578version = "0.2.16"
579source = "registry+https://github.com/rust-lang/crates.io-index"
580checksum = "335ff9f135e4384c8150d6f27c6daed433577f86b4750418338c01a1a2528592"
581dependencies = [
582 "cfg-if",
583 "libc",
584 "wasi 0.11.0+wasi-snapshot-preview1",
585]
586
587[[package]]
588name = "getrandom"
589version = "0.3.3"
590source = "registry+https://github.com/rust-lang/crates.io-index"
591checksum = "26145e563e54f2cadc477553f1ec5ee650b00862f0a58bcd12cbdc5f0ea2d2f4"
592dependencies = [
593 "cfg-if",
594 "libc",
595 "r-efi",
596 "wasi 0.14.2+wasi-0.2.4",
597]
598
599[[package]]
600name = "gimli"
601version = "0.31.1"
602source = "registry+https://github.com/rust-lang/crates.io-index"
603checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
604
605[[package]]
606name = "h2"
607version = "0.3.26"
608source = "registry+https://github.com/rust-lang/crates.io-index"
609checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
610dependencies = [
611 "bytes",
612 "fnv",
613 "futures-core",
614 "futures-sink",
615 "futures-util",
616 "http 0.2.12",
617 "indexmap",
618 "slab",
619 "tokio",
620 "tokio-util",
621 "tracing",
622]
623
624[[package]]
625name = "hashbrown"
626version = "0.15.4"
627source = "registry+https://github.com/rust-lang/crates.io-index"
628checksum = "5971ac85611da7067dbfcabef3c70ebb5606018acd9e2a3903a0da507521e0d5"
629
630[[package]]
631name = "headers"
632version = "0.3.9"
633source = "registry+https://github.com/rust-lang/crates.io-index"
634checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
635dependencies = [
636 "base64 0.21.7",
637 "bytes",
638 "headers-core",
639 "http 0.2.12",
640 "httpdate",
641 "mime",
642 "sha1",
643]
644
645[[package]]
646name = "headers-core"
647version = "0.2.0"
648source = "registry+https://github.com/rust-lang/crates.io-index"
649checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
650dependencies = [
651 "http 0.2.12",
652]
653
654[[package]]
655name = "heck"
656version = "0.5.0"
657source = "registry+https://github.com/rust-lang/crates.io-index"
658checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
659
660[[package]]
661name = "hermit-abi"
662version = "0.5.1"
663source = "registry+https://github.com/rust-lang/crates.io-index"
664checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08"
665
666[[package]]
667name = "hmac"
668version = "0.12.1"
669source = "registry+https://github.com/rust-lang/crates.io-index"
670checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
671dependencies = [
672 "digest",
673]
674
675[[package]]
676name = "http"
677version = "0.2.12"
678source = "registry+https://github.com/rust-lang/crates.io-index"
679checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
680dependencies = [
681 "bytes",
682 "fnv",
683 "itoa",
684]
685
686[[package]]
687name = "http"
688version = "1.3.1"
689source = "registry+https://github.com/rust-lang/crates.io-index"
690checksum = "f4a85d31aea989eead29a3aaf9e1115a180df8282431156e533de47660892565"
691dependencies = [
692 "bytes",
693 "fnv",
694 "itoa",
695]
696
697[[package]]
698name = "http-body"
699version = "0.4.6"
700source = "registry+https://github.com/rust-lang/crates.io-index"
701checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
702dependencies = [
703 "bytes",
704 "http 0.2.12",
705 "pin-project-lite",
706]
707
708[[package]]
709name = "httparse"
710version = "1.10.1"
711source = "registry+https://github.com/rust-lang/crates.io-index"
712checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87"
713
714[[package]]
715name = "httpdate"
716version = "1.0.3"
717source = "registry+https://github.com/rust-lang/crates.io-index"
718checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
719
720[[package]]
721name = "humantime"
722version = "2.2.0"
723source = "registry+https://github.com/rust-lang/crates.io-index"
724checksum = "9b112acc8b3adf4b107a8ec20977da0273a8c386765a3ec0229bd500a1443f9f"
725
726[[package]]
727name = "hyper"
728version = "0.14.32"
729source = "registry+https://github.com/rust-lang/crates.io-index"
730checksum = "41dfc780fdec9373c01bae43289ea34c972e40ee3c9f6b3c8801a35f35586ce7"
731dependencies = [
732 "bytes",
733 "futures-channel",
734 "futures-core",
735 "futures-util",
736 "h2",
737 "http 0.2.12",
738 "http-body",
739 "httparse",
740 "httpdate",
741 "itoa",
742 "pin-project-lite",
743 "socket2",
744 "tokio",
745 "tower-service",
746 "tracing",
747 "want",
748]
749
750[[package]]
751name = "icu_collections"
752version = "2.0.0"
753source = "registry+https://github.com/rust-lang/crates.io-index"
754checksum = "200072f5d0e3614556f94a9930d5dc3e0662a652823904c3a75dc3b0af7fee47"
755dependencies = [
756 "displaydoc",
757 "potential_utf",
758 "yoke",
759 "zerofrom",
760 "zerovec",
761]
762
763[[package]]
764name = "icu_locale_core"
765version = "2.0.0"
766source = "registry+https://github.com/rust-lang/crates.io-index"
767checksum = "0cde2700ccaed3872079a65fb1a78f6c0a36c91570f28755dda67bc8f7d9f00a"
768dependencies = [
769 "displaydoc",
770 "litemap",
771 "tinystr",
772 "writeable",
773 "zerovec",
774]
775
776[[package]]
777name = "icu_normalizer"
778version = "2.0.0"
779source = "registry+https://github.com/rust-lang/crates.io-index"
780checksum = "436880e8e18df4d7bbc06d58432329d6458cc84531f7ac5f024e93deadb37979"
781dependencies = [
782 "displaydoc",
783 "icu_collections",
784 "icu_normalizer_data",
785 "icu_properties",
786 "icu_provider",
787 "smallvec",
788 "zerovec",
789]
790
791[[package]]
792name = "icu_normalizer_data"
793version = "2.0.0"
794source = "registry+https://github.com/rust-lang/crates.io-index"
795checksum = "00210d6893afc98edb752b664b8890f0ef174c8adbb8d0be9710fa66fbbf72d3"
796
797[[package]]
798name = "icu_properties"
799version = "2.0.1"
800source = "registry+https://github.com/rust-lang/crates.io-index"
801checksum = "016c619c1eeb94efb86809b015c58f479963de65bdb6253345c1a1276f22e32b"
802dependencies = [
803 "displaydoc",
804 "icu_collections",
805 "icu_locale_core",
806 "icu_properties_data",
807 "icu_provider",
808 "potential_utf",
809 "zerotrie",
810 "zerovec",
811]
812
813[[package]]
814name = "icu_properties_data"
815version = "2.0.1"
816source = "registry+https://github.com/rust-lang/crates.io-index"
817checksum = "298459143998310acd25ffe6810ed544932242d3f07083eee1084d83a71bd632"
818
819[[package]]
820name = "icu_provider"
821version = "2.0.0"
822source = "registry+https://github.com/rust-lang/crates.io-index"
823checksum = "03c80da27b5f4187909049ee2d72f276f0d9f99a42c306bd0131ecfe04d8e5af"
824dependencies = [
825 "displaydoc",
826 "icu_locale_core",
827 "stable_deref_trait",
828 "tinystr",
829 "writeable",
830 "yoke",
831 "zerofrom",
832 "zerotrie",
833 "zerovec",
834]
835
836[[package]]
837name = "ident_case"
838version = "1.0.1"
839source = "registry+https://github.com/rust-lang/crates.io-index"
840checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
841
842[[package]]
843name = "idna"
844version = "1.0.3"
845source = "registry+https://github.com/rust-lang/crates.io-index"
846checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
847dependencies = [
848 "idna_adapter",
849 "smallvec",
850 "utf8_iter",
851]
852
853[[package]]
854name = "idna_adapter"
855version = "1.2.1"
856source = "registry+https://github.com/rust-lang/crates.io-index"
857checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344"
858dependencies = [
859 "icu_normalizer",
860 "icu_properties",
861]
862
863[[package]]
864name = "indexmap"
865version = "2.9.0"
866source = "registry+https://github.com/rust-lang/crates.io-index"
867checksum = "cea70ddb795996207ad57735b50c5982d8844f38ba9ee5f1aedcfb708a2aa11e"
868dependencies = [
869 "equivalent",
870 "hashbrown",
871]
872
873[[package]]
874name = "is-terminal"
875version = "0.4.16"
876source = "registry+https://github.com/rust-lang/crates.io-index"
877checksum = "e04d7f318608d35d4b61ddd75cbdaee86b023ebe2bd5a66ee0915f0bf93095a9"
878dependencies = [
879 "hermit-abi",
880 "libc",
881 "windows-sys 0.59.0",
882]
883
884[[package]]
885name = "is_terminal_polyfill"
886version = "1.70.1"
887source = "registry+https://github.com/rust-lang/crates.io-index"
888checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
889
890[[package]]
891name = "itoa"
892version = "1.0.15"
893source = "registry+https://github.com/rust-lang/crates.io-index"
894checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
895
896[[package]]
897name = "js-sys"
898version = "0.3.77"
899source = "registry+https://github.com/rust-lang/crates.io-index"
900checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
901dependencies = [
902 "once_cell",
903 "wasm-bindgen",
904]
905
906[[package]]
907name = "libc"
908version = "0.2.172"
909source = "registry+https://github.com/rust-lang/crates.io-index"
910checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
911
912[[package]]
913name = "linux-raw-sys"
914version = "0.9.4"
915source = "registry+https://github.com/rust-lang/crates.io-index"
916checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
917
918[[package]]
919name = "litemap"
920version = "0.8.0"
921source = "registry+https://github.com/rust-lang/crates.io-index"
922checksum = "241eaef5fd12c88705a01fc1066c48c4b36e0dd4377dcdc7ec3942cea7a69956"
923
924[[package]]
925name = "lock_api"
926version = "0.4.13"
927source = "registry+https://github.com/rust-lang/crates.io-index"
928checksum = "96936507f153605bddfcda068dd804796c84324ed2510809e5b2a624c81da765"
929dependencies = [
930 "autocfg",
931 "scopeguard",
932]
933
934[[package]]
935name = "log"
936version = "0.4.27"
937source = "registry+https://github.com/rust-lang/crates.io-index"
938checksum = "13dc2df351e3202783a1fe0d44375f7295ffb4049267b0f3018346dc122a1d94"
939
940[[package]]
941name = "lumen"
942version = "0.2.0"
943dependencies = [
944 "clap",
945 "common",
946 "log",
947 "native-tls",
948 "pretty_env_logger",
949 "prometheus-client",
950 "tokio",
951 "tokio-native-tls",
952 "warp",
953]
954
955[[package]]
956name = "md-5"
957version = "0.10.6"
958source = "registry+https://github.com/rust-lang/crates.io-index"
959checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
960dependencies = [
961 "cfg-if",
962 "digest",
963]
964
965[[package]]
966name = "memchr"
967version = "2.7.4"
968source = "registry+https://github.com/rust-lang/crates.io-index"
969checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
970
971[[package]]
972name = "mime"
973version = "0.3.17"
974source = "registry+https://github.com/rust-lang/crates.io-index"
975checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
976
977[[package]]
978name = "mime_guess"
979version = "2.0.5"
980source = "registry+https://github.com/rust-lang/crates.io-index"
981checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
982dependencies = [
983 "mime",
984 "unicase",
985]
986
987[[package]]
988name = "miniz_oxide"
989version = "0.8.8"
990source = "registry+https://github.com/rust-lang/crates.io-index"
991checksum = "3be647b768db090acb35d5ec5db2b0e1f1de11133ca123b9eacf5137868f892a"
992dependencies = [
993 "adler2",
994]
995
996[[package]]
997name = "mio"
998version = "1.0.4"
999source = "registry+https://github.com/rust-lang/crates.io-index"
1000checksum = "78bed444cc8a2160f01cbcf811ef18cac863ad68ae8ca62092e8db51d51c761c"
1001dependencies = [
1002 "libc",
1003 "wasi 0.11.0+wasi-snapshot-preview1",
1004 "windows-sys 0.59.0",
1005]
1006
1007[[package]]
1008name = "multer"
1009version = "2.1.0"
1010source = "registry+https://github.com/rust-lang/crates.io-index"
1011checksum = "01acbdc23469fd8fe07ab135923371d5f5a422fbf9c522158677c8eb15bc51c2"
1012dependencies = [
1013 "bytes",
1014 "encoding_rs",
1015 "futures-util",
1016 "http 0.2.12",
1017 "httparse",
1018 "log",
1019 "memchr",
1020 "mime",
1021 "spin",
1022 "version_check",
1023]
1024
1025[[package]]
1026name = "native-tls"
1027version = "0.2.14"
1028source = "registry+https://github.com/rust-lang/crates.io-index"
1029checksum = "87de3442987e9dbec73158d5c715e7ad9072fda936bb03d19d7fa10e00520f0e"
1030dependencies = [
1031 "libc",
1032 "log",
1033 "openssl",
1034 "openssl-probe",
1035 "openssl-sys",
1036 "schannel",
1037 "security-framework",
1038 "security-framework-sys",
1039 "tempfile",
1040]
1041
1042[[package]]
1043name = "num-conv"
1044version = "0.1.0"
1045source = "registry+https://github.com/rust-lang/crates.io-index"
1046checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1047
1048[[package]]
1049name = "object"
1050version = "0.36.7"
1051source = "registry+https://github.com/rust-lang/crates.io-index"
1052checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1053dependencies = [
1054 "memchr",
1055]
1056
1057[[package]]
1058name = "once_cell"
1059version = "1.21.3"
1060source = "registry+https://github.com/rust-lang/crates.io-index"
1061checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d"
1062
1063[[package]]
1064name = "once_cell_polyfill"
1065version = "1.70.1"
1066source = "registry+https://github.com/rust-lang/crates.io-index"
1067checksum = "a4895175b425cb1f87721b59f0f286c2092bd4af812243672510e1ac53e2e0ad"
1068
1069[[package]]
1070name = "openssl"
1071version = "0.10.73"
1072source = "registry+https://github.com/rust-lang/crates.io-index"
1073checksum = "8505734d46c8ab1e19a1dce3aef597ad87dcb4c37e7188231769bd6bd51cebf8"
1074dependencies = [
1075 "bitflags",
1076 "cfg-if",
1077 "foreign-types",
1078 "libc",
1079 "once_cell",
1080 "openssl-macros",
1081 "openssl-sys",
1082]
1083
1084[[package]]
1085name = "openssl-macros"
1086version = "0.1.1"
1087source = "registry+https://github.com/rust-lang/crates.io-index"
1088checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1089dependencies = [
1090 "proc-macro2",
1091 "quote",
1092 "syn",
1093]
1094
1095[[package]]
1096name = "openssl-probe"
1097version = "0.1.6"
1098source = "registry+https://github.com/rust-lang/crates.io-index"
1099checksum = "d05e27ee213611ffe7d6348b942e8f942b37114c00cc03cec254295a4a17852e"
1100
1101[[package]]
1102name = "openssl-sys"
1103version = "0.9.109"
1104source = "registry+https://github.com/rust-lang/crates.io-index"
1105checksum = "90096e2e47630d78b7d1c20952dc621f957103f8bc2c8359ec81290d75238571"
1106dependencies = [
1107 "cc",
1108 "libc",
1109 "pkg-config",
1110 "vcpkg",
1111]
1112
1113[[package]]
1114name = "parking_lot"
1115version = "0.12.4"
1116source = "registry+https://github.com/rust-lang/crates.io-index"
1117checksum = "70d58bf43669b5795d1576d0641cfb6fbb2057bf629506267a92807158584a13"
1118dependencies = [
1119 "lock_api",
1120 "parking_lot_core",
1121]
1122
1123[[package]]
1124name = "parking_lot_core"
1125version = "0.9.11"
1126source = "registry+https://github.com/rust-lang/crates.io-index"
1127checksum = "bc838d2a56b5b1a6c25f55575dfc605fabb63bb2365f6c2353ef9159aa69e4a5"
1128dependencies = [
1129 "cfg-if",
1130 "libc",
1131 "redox_syscall",
1132 "smallvec",
1133 "windows-targets",
1134]
1135
1136[[package]]
1137name = "percent-encoding"
1138version = "2.3.1"
1139source = "registry+https://github.com/rust-lang/crates.io-index"
1140checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1141
1142[[package]]
1143name = "phf"
1144version = "0.11.3"
1145source = "registry+https://github.com/rust-lang/crates.io-index"
1146checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078"
1147dependencies = [
1148 "phf_shared",
1149]
1150
1151[[package]]
1152name = "phf_shared"
1153version = "0.11.3"
1154source = "registry+https://github.com/rust-lang/crates.io-index"
1155checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5"
1156dependencies = [
1157 "siphasher",
1158]
1159
1160[[package]]
1161name = "pin-project"
1162version = "1.1.10"
1163source = "registry+https://github.com/rust-lang/crates.io-index"
1164checksum = "677f1add503faace112b9f1373e43e9e054bfdd22ff1a63c1bc485eaec6a6a8a"
1165dependencies = [
1166 "pin-project-internal",
1167]
1168
1169[[package]]
1170name = "pin-project-internal"
1171version = "1.1.10"
1172source = "registry+https://github.com/rust-lang/crates.io-index"
1173checksum = "6e918e4ff8c4549eb882f14b3a4bc8c8bc93de829416eacf579f1207a8fbf861"
1174dependencies = [
1175 "proc-macro2",
1176 "quote",
1177 "syn",
1178]
1179
1180[[package]]
1181name = "pin-project-lite"
1182version = "0.2.16"
1183source = "registry+https://github.com/rust-lang/crates.io-index"
1184checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1185
1186[[package]]
1187name = "pin-utils"
1188version = "0.1.0"
1189source = "registry+https://github.com/rust-lang/crates.io-index"
1190checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1191
1192[[package]]
1193name = "pkg-config"
1194version = "0.3.32"
1195source = "registry+https://github.com/rust-lang/crates.io-index"
1196checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c"
1197
1198[[package]]
1199name = "postgres-native-tls"
1200version = "0.5.1"
1201source = "registry+https://github.com/rust-lang/crates.io-index"
1202checksum = "a1f39498473c92f7b6820ae970382c1d83178a3454c618161cb772e8598d9f6f"
1203dependencies = [
1204 "native-tls",
1205 "tokio",
1206 "tokio-native-tls",
1207 "tokio-postgres",
1208]
1209
1210[[package]]
1211name = "postgres-protocol"
1212version = "0.6.8"
1213source = "registry+https://github.com/rust-lang/crates.io-index"
1214checksum = "76ff0abab4a9b844b93ef7b81f1efc0a366062aaef2cd702c76256b5dc075c54"
1215dependencies = [
1216 "base64 0.22.1",
1217 "byteorder",
1218 "bytes",
1219 "fallible-iterator",
1220 "hmac",
1221 "md-5",
1222 "memchr",
1223 "rand 0.9.1",
1224 "sha2",
1225 "stringprep",
1226]
1227
1228[[package]]
1229name = "postgres-types"
1230version = "0.2.9"
1231source = "registry+https://github.com/rust-lang/crates.io-index"
1232checksum = "613283563cd90e1dfc3518d548caee47e0e725455ed619881f5cf21f36de4b48"
1233dependencies = [
1234 "bytes",
1235 "fallible-iterator",
1236 "postgres-protocol",
1237]
1238
1239[[package]]
1240name = "potential_utf"
1241version = "0.1.2"
1242source = "registry+https://github.com/rust-lang/crates.io-index"
1243checksum = "e5a7c30837279ca13e7c867e9e40053bc68740f988cb07f7ca6df43cc734b585"
1244dependencies = [
1245 "zerovec",
1246]
1247
1248[[package]]
1249name = "powerfmt"
1250version = "0.2.0"
1251source = "registry+https://github.com/rust-lang/crates.io-index"
1252checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1253
1254[[package]]
1255name = "ppv-lite86"
1256version = "0.2.21"
1257source = "registry+https://github.com/rust-lang/crates.io-index"
1258checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9"
1259dependencies = [
1260 "zerocopy",
1261]
1262
1263[[package]]
1264name = "pretty_env_logger"
1265version = "0.5.0"
1266source = "registry+https://github.com/rust-lang/crates.io-index"
1267checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c"
1268dependencies = [
1269 "env_logger",
1270 "log",
1271]
1272
1273[[package]]
1274name = "proc-macro2"
1275version = "1.0.95"
1276source = "registry+https://github.com/rust-lang/crates.io-index"
1277checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
1278dependencies = [
1279 "unicode-ident",
1280]
1281
1282[[package]]
1283name = "prometheus-client"
1284version = "0.22.3"
1285source = "registry+https://github.com/rust-lang/crates.io-index"
1286checksum = "504ee9ff529add891127c4827eb481bd69dc0ebc72e9a682e187db4caa60c3ca"
1287dependencies = [
1288 "dtoa",
1289 "itoa",
1290 "parking_lot",
1291 "prometheus-client-derive-encode",
1292]
1293
1294[[package]]
1295name = "prometheus-client-derive-encode"
1296version = "0.4.2"
1297source = "registry+https://github.com/rust-lang/crates.io-index"
1298checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8"
1299dependencies = [
1300 "proc-macro2",
1301 "quote",
1302 "syn",
1303]
1304
1305[[package]]
1306name = "quote"
1307version = "1.0.40"
1308source = "registry+https://github.com/rust-lang/crates.io-index"
1309checksum = "1885c039570dc00dcb4ff087a89e185fd56bae234ddc7f056a945bf36467248d"
1310dependencies = [
1311 "proc-macro2",
1312]
1313
1314[[package]]
1315name = "r-efi"
1316version = "5.2.0"
1317source = "registry+https://github.com/rust-lang/crates.io-index"
1318checksum = "74765f6d916ee2faa39bc8e68e4f3ed8949b48cccdac59983d287a7cb71ce9c5"
1319
1320[[package]]
1321name = "rand"
1322version = "0.8.5"
1323source = "registry+https://github.com/rust-lang/crates.io-index"
1324checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1325dependencies = [
1326 "libc",
1327 "rand_chacha 0.3.1",
1328 "rand_core 0.6.4",
1329]
1330
1331[[package]]
1332name = "rand"
1333version = "0.9.1"
1334source = "registry+https://github.com/rust-lang/crates.io-index"
1335checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
1336dependencies = [
1337 "rand_chacha 0.9.0",
1338 "rand_core 0.9.3",
1339]
1340
1341[[package]]
1342name = "rand_chacha"
1343version = "0.3.1"
1344source = "registry+https://github.com/rust-lang/crates.io-index"
1345checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1346dependencies = [
1347 "ppv-lite86",
1348 "rand_core 0.6.4",
1349]
1350
1351[[package]]
1352name = "rand_chacha"
1353version = "0.9.0"
1354source = "registry+https://github.com/rust-lang/crates.io-index"
1355checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb"
1356dependencies = [
1357 "ppv-lite86",
1358 "rand_core 0.9.3",
1359]
1360
1361[[package]]
1362name = "rand_core"
1363version = "0.6.4"
1364source = "registry+https://github.com/rust-lang/crates.io-index"
1365checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1366dependencies = [
1367 "getrandom 0.2.16",
1368]
1369
1370[[package]]
1371name = "rand_core"
1372version = "0.9.3"
1373source = "registry+https://github.com/rust-lang/crates.io-index"
1374checksum = "99d9a13982dcf210057a8a78572b2217b667c3beacbf3a0d8b454f6f82837d38"
1375dependencies = [
1376 "getrandom 0.3.3",
1377]
1378
1379[[package]]
1380name = "redox_syscall"
1381version = "0.5.12"
1382source = "registry+https://github.com/rust-lang/crates.io-index"
1383checksum = "928fca9cf2aa042393a8325b9ead81d2f0df4cb12e1e24cef072922ccd99c5af"
1384dependencies = [
1385 "bitflags",
1386]
1387
1388[[package]]
1389name = "regex"
1390version = "1.11.1"
1391source = "registry+https://github.com/rust-lang/crates.io-index"
1392checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1393dependencies = [
1394 "aho-corasick",
1395 "memchr",
1396 "regex-automata",
1397 "regex-syntax",
1398]
1399
1400[[package]]
1401name = "regex-automata"
1402version = "0.4.9"
1403source = "registry+https://github.com/rust-lang/crates.io-index"
1404checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1405dependencies = [
1406 "aho-corasick",
1407 "memchr",
1408 "regex-syntax",
1409]
1410
1411[[package]]
1412name = "regex-syntax"
1413version = "0.8.5"
1414source = "registry+https://github.com/rust-lang/crates.io-index"
1415checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1416
1417[[package]]
1418name = "rustc-demangle"
1419version = "0.1.24"
1420source = "registry+https://github.com/rust-lang/crates.io-index"
1421checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1422
1423[[package]]
1424name = "rustix"
1425version = "1.0.7"
1426source = "registry+https://github.com/rust-lang/crates.io-index"
1427checksum = "c71e83d6afe7ff64890ec6b71d6a69bb8a610ab78ce364b3352876bb4c801266"
1428dependencies = [
1429 "bitflags",
1430 "errno",
1431 "libc",
1432 "linux-raw-sys",
1433 "windows-sys 0.59.0",
1434]
1435
1436[[package]]
1437name = "ryu"
1438version = "1.0.20"
1439source = "registry+https://github.com/rust-lang/crates.io-index"
1440checksum = "28d3b2b1366ec20994f1fd18c3c594f05c5dd4bc44d8bb0c1c632c8d6829481f"
1441
1442[[package]]
1443name = "schannel"
1444version = "0.1.27"
1445source = "registry+https://github.com/rust-lang/crates.io-index"
1446checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
1447dependencies = [
1448 "windows-sys 0.59.0",
1449]
1450
1451[[package]]
1452name = "scoped-futures"
1453version = "0.1.4"
1454source = "registry+https://github.com/rust-lang/crates.io-index"
1455checksum = "1b24aae2d0636530f359e9d5ef0c04669d11c5e756699b27a6a6d845d8329091"
1456dependencies = [
1457 "pin-project-lite",
1458]
1459
1460[[package]]
1461name = "scoped-tls"
1462version = "1.0.1"
1463source = "registry+https://github.com/rust-lang/crates.io-index"
1464checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
1465
1466[[package]]
1467name = "scopeguard"
1468version = "1.2.0"
1469source = "registry+https://github.com/rust-lang/crates.io-index"
1470checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1471
1472[[package]]
1473name = "security-framework"
1474version = "2.11.1"
1475source = "registry+https://github.com/rust-lang/crates.io-index"
1476checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
1477dependencies = [
1478 "bitflags",
1479 "core-foundation",
1480 "core-foundation-sys",
1481 "libc",
1482 "security-framework-sys",
1483]
1484
1485[[package]]
1486name = "security-framework-sys"
1487version = "2.14.0"
1488source = "registry+https://github.com/rust-lang/crates.io-index"
1489checksum = "49db231d56a190491cb4aeda9527f1ad45345af50b0851622a7adb8c03b01c32"
1490dependencies = [
1491 "core-foundation-sys",
1492 "libc",
1493]
1494
1495[[package]]
1496name = "serde"
1497version = "1.0.219"
1498source = "registry+https://github.com/rust-lang/crates.io-index"
1499checksum = "5f0e2c6ed6606019b4e29e69dbaba95b11854410e5347d525002456dbbb786b6"
1500dependencies = [
1501 "serde_derive",
1502]
1503
1504[[package]]
1505name = "serde_derive"
1506version = "1.0.219"
1507source = "registry+https://github.com/rust-lang/crates.io-index"
1508checksum = "5b0276cf7f2c73365f7157c8123c21cd9a50fbbd844757af28ca1f5925fc2a00"
1509dependencies = [
1510 "proc-macro2",
1511 "quote",
1512 "syn",
1513]
1514
1515[[package]]
1516name = "serde_json"
1517version = "1.0.140"
1518source = "registry+https://github.com/rust-lang/crates.io-index"
1519checksum = "20068b6e96dc6c9bd23e01df8827e6c7e1f2fddd43c21810382803c136b99373"
1520dependencies = [
1521 "itoa",
1522 "memchr",
1523 "ryu",
1524 "serde",
1525]
1526
1527[[package]]
1528name = "serde_spanned"
1529version = "0.6.9"
1530source = "registry+https://github.com/rust-lang/crates.io-index"
1531checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3"
1532dependencies = [
1533 "serde",
1534]
1535
1536[[package]]
1537name = "serde_urlencoded"
1538version = "0.7.1"
1539source = "registry+https://github.com/rust-lang/crates.io-index"
1540checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1541dependencies = [
1542 "form_urlencoded",
1543 "itoa",
1544 "ryu",
1545 "serde",
1546]
1547
1548[[package]]
1549name = "sha1"
1550version = "0.10.6"
1551source = "registry+https://github.com/rust-lang/crates.io-index"
1552checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1553dependencies = [
1554 "cfg-if",
1555 "cpufeatures",
1556 "digest",
1557]
1558
1559[[package]]
1560name = "sha2"
1561version = "0.10.9"
1562source = "registry+https://github.com/rust-lang/crates.io-index"
1563checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283"
1564dependencies = [
1565 "cfg-if",
1566 "cpufeatures",
1567 "digest",
1568]
1569
1570[[package]]
1571name = "shlex"
1572version = "1.3.0"
1573source = "registry+https://github.com/rust-lang/crates.io-index"
1574checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1575
1576[[package]]
1577name = "signal-hook-registry"
1578version = "1.4.5"
1579source = "registry+https://github.com/rust-lang/crates.io-index"
1580checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
1581dependencies = [
1582 "libc",
1583]
1584
1585[[package]]
1586name = "siphasher"
1587version = "1.0.1"
1588source = "registry+https://github.com/rust-lang/crates.io-index"
1589checksum = "56199f7ddabf13fe5074ce809e7d3f42b42ae711800501b5b16ea82ad029c39d"
1590
1591[[package]]
1592name = "slab"
1593version = "0.4.9"
1594source = "registry+https://github.com/rust-lang/crates.io-index"
1595checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1596dependencies = [
1597 "autocfg",
1598]
1599
1600[[package]]
1601name = "smallvec"
1602version = "1.15.1"
1603source = "registry+https://github.com/rust-lang/crates.io-index"
1604checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
1605
1606[[package]]
1607name = "socket2"
1608version = "0.5.10"
1609source = "registry+https://github.com/rust-lang/crates.io-index"
1610checksum = "e22376abed350d73dd1cd119b57ffccad95b4e585a7cda43e286245ce23c0678"
1611dependencies = [
1612 "libc",
1613 "windows-sys 0.52.0",
1614]
1615
1616[[package]]
1617name = "spin"
1618version = "0.9.8"
1619source = "registry+https://github.com/rust-lang/crates.io-index"
1620checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1621
1622[[package]]
1623name = "stable_deref_trait"
1624version = "1.2.0"
1625source = "registry+https://github.com/rust-lang/crates.io-index"
1626checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
1627
1628[[package]]
1629name = "stringprep"
1630version = "0.1.5"
1631source = "registry+https://github.com/rust-lang/crates.io-index"
1632checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
1633dependencies = [
1634 "unicode-bidi",
1635 "unicode-normalization",
1636 "unicode-properties",
1637]
1638
1639[[package]]
1640name = "strsim"
1641version = "0.11.1"
1642source = "registry+https://github.com/rust-lang/crates.io-index"
1643checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
1644
1645[[package]]
1646name = "subtle"
1647version = "2.6.1"
1648source = "registry+https://github.com/rust-lang/crates.io-index"
1649checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
1650
1651[[package]]
1652name = "syn"
1653version = "2.0.101"
1654source = "registry+https://github.com/rust-lang/crates.io-index"
1655checksum = "8ce2b7fc941b3a24138a0a7cf8e858bfc6a992e7978a068a5c760deb0ed43caf"
1656dependencies = [
1657 "proc-macro2",
1658 "quote",
1659 "unicode-ident",
1660]
1661
1662[[package]]
1663name = "synstructure"
1664version = "0.13.2"
1665source = "registry+https://github.com/rust-lang/crates.io-index"
1666checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2"
1667dependencies = [
1668 "proc-macro2",
1669 "quote",
1670 "syn",
1671]
1672
1673[[package]]
1674name = "tempfile"
1675version = "3.20.0"
1676source = "registry+https://github.com/rust-lang/crates.io-index"
1677checksum = "e8a64e3985349f2441a1a9ef0b853f869006c3855f2cda6862a94d26ebb9d6a1"
1678dependencies = [
1679 "fastrand",
1680 "getrandom 0.3.3",
1681 "once_cell",
1682 "rustix",
1683 "windows-sys 0.59.0",
1684]
1685
1686[[package]]
1687name = "termcolor"
1688version = "1.4.1"
1689source = "registry+https://github.com/rust-lang/crates.io-index"
1690checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
1691dependencies = [
1692 "winapi-util",
1693]
1694
1695[[package]]
1696name = "thiserror"
1697version = "1.0.69"
1698source = "registry+https://github.com/rust-lang/crates.io-index"
1699checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
1700dependencies = [
1701 "thiserror-impl",
1702]
1703
1704[[package]]
1705name = "thiserror-impl"
1706version = "1.0.69"
1707source = "registry+https://github.com/rust-lang/crates.io-index"
1708checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
1709dependencies = [
1710 "proc-macro2",
1711 "quote",
1712 "syn",
1713]
1714
1715[[package]]
1716name = "time"
1717version = "0.3.41"
1718source = "registry+https://github.com/rust-lang/crates.io-index"
1719checksum = "8a7619e19bc266e0f9c5e6686659d394bc57973859340060a69221e57dbc0c40"
1720dependencies = [
1721 "deranged",
1722 "num-conv",
1723 "powerfmt",
1724 "serde",
1725 "time-core",
1726 "time-macros",
1727]
1728
1729[[package]]
1730name = "time-core"
1731version = "0.1.4"
1732source = "registry+https://github.com/rust-lang/crates.io-index"
1733checksum = "c9e9a38711f559d9e3ce1cdb06dd7c5b8ea546bc90052da6d06bb76da74bb07c"
1734
1735[[package]]
1736name = "time-macros"
1737version = "0.2.22"
1738source = "registry+https://github.com/rust-lang/crates.io-index"
1739checksum = "3526739392ec93fd8b359c8e98514cb3e8e021beb4e5f597b00a0221f8ed8a49"
1740dependencies = [
1741 "num-conv",
1742 "time-core",
1743]
1744
1745[[package]]
1746name = "tinystr"
1747version = "0.8.1"
1748source = "registry+https://github.com/rust-lang/crates.io-index"
1749checksum = "5d4f6d1145dcb577acf783d4e601bc1d76a13337bb54e6233add580b07344c8b"
1750dependencies = [
1751 "displaydoc",
1752 "zerovec",
1753]
1754
1755[[package]]
1756name = "tinyvec"
1757version = "1.9.0"
1758source = "registry+https://github.com/rust-lang/crates.io-index"
1759checksum = "09b3661f17e86524eccd4371ab0429194e0d7c008abb45f7a7495b1719463c71"
1760dependencies = [
1761 "tinyvec_macros",
1762]
1763
1764[[package]]
1765name = "tinyvec_macros"
1766version = "0.1.1"
1767source = "registry+https://github.com/rust-lang/crates.io-index"
1768checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
1769
1770[[package]]
1771name = "tokio"
1772version = "1.45.1"
1773source = "registry+https://github.com/rust-lang/crates.io-index"
1774checksum = "75ef51a33ef1da925cea3e4eb122833cb377c61439ca401b770f54902b806779"
1775dependencies = [
1776 "backtrace",
1777 "bytes",
1778 "libc",
1779 "mio",
1780 "parking_lot",
1781 "pin-project-lite",
1782 "signal-hook-registry",
1783 "socket2",
1784 "tokio-macros",
1785 "windows-sys 0.52.0",
1786]
1787
1788[[package]]
1789name = "tokio-macros"
1790version = "2.5.0"
1791source = "registry+https://github.com/rust-lang/crates.io-index"
1792checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
1793dependencies = [
1794 "proc-macro2",
1795 "quote",
1796 "syn",
1797]
1798
1799[[package]]
1800name = "tokio-native-tls"
1801version = "0.3.1"
1802source = "registry+https://github.com/rust-lang/crates.io-index"
1803checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
1804dependencies = [
1805 "native-tls",
1806 "tokio",
1807]
1808
1809[[package]]
1810name = "tokio-postgres"
1811version = "0.7.13"
1812source = "registry+https://github.com/rust-lang/crates.io-index"
1813checksum = "6c95d533c83082bb6490e0189acaa0bbeef9084e60471b696ca6988cd0541fb0"
1814dependencies = [
1815 "async-trait",
1816 "byteorder",
1817 "bytes",
1818 "fallible-iterator",
1819 "futures-channel",
1820 "futures-util",
1821 "log",
1822 "parking_lot",
1823 "percent-encoding",
1824 "phf",
1825 "pin-project-lite",
1826 "postgres-protocol",
1827 "postgres-types",
1828 "rand 0.9.1",
1829 "socket2",
1830 "tokio",
1831 "tokio-util",
1832 "whoami",
1833]
1834
1835[[package]]
1836name = "tokio-tungstenite"
1837version = "0.21.0"
1838source = "registry+https://github.com/rust-lang/crates.io-index"
1839checksum = "c83b561d025642014097b66e6c1bb422783339e0909e4429cde4749d1990bc38"
1840dependencies = [
1841 "futures-util",
1842 "log",
1843 "tokio",
1844 "tungstenite",
1845]
1846
1847[[package]]
1848name = "tokio-util"
1849version = "0.7.15"
1850source = "registry+https://github.com/rust-lang/crates.io-index"
1851checksum = "66a539a9ad6d5d281510d5bd368c973d636c02dbf8a67300bfb6b950696ad7df"
1852dependencies = [
1853 "bytes",
1854 "futures-core",
1855 "futures-sink",
1856 "pin-project-lite",
1857 "tokio",
1858]
1859
1860[[package]]
1861name = "toml"
1862version = "0.8.23"
1863source = "registry+https://github.com/rust-lang/crates.io-index"
1864checksum = "dc1beb996b9d83529a9e75c17a1686767d148d70663143c7854d8b4a09ced362"
1865dependencies = [
1866 "serde",
1867 "serde_spanned",
1868 "toml_datetime",
1869 "toml_edit",
1870]
1871
1872[[package]]
1873name = "toml_datetime"
1874version = "0.6.11"
1875source = "registry+https://github.com/rust-lang/crates.io-index"
1876checksum = "22cddaf88f4fbc13c51aebbf5f8eceb5c7c5a9da2ac40a13519eb5b0a0e8f11c"
1877dependencies = [
1878 "serde",
1879]
1880
1881[[package]]
1882name = "toml_edit"
1883version = "0.22.27"
1884source = "registry+https://github.com/rust-lang/crates.io-index"
1885checksum = "41fe8c660ae4257887cf66394862d21dbca4a6ddd26f04a3560410406a2f819a"
1886dependencies = [
1887 "indexmap",
1888 "serde",
1889 "serde_spanned",
1890 "toml_datetime",
1891 "toml_write",
1892 "winnow",
1893]
1894
1895[[package]]
1896name = "toml_write"
1897version = "0.1.2"
1898source = "registry+https://github.com/rust-lang/crates.io-index"
1899checksum = "5d99f8c9a7727884afe522e9bd5edbfc91a3312b36a77b5fb8926e4c31a41801"
1900
1901[[package]]
1902name = "tower-service"
1903version = "0.3.3"
1904source = "registry+https://github.com/rust-lang/crates.io-index"
1905checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
1906
1907[[package]]
1908name = "tracing"
1909version = "0.1.41"
1910source = "registry+https://github.com/rust-lang/crates.io-index"
1911checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
1912dependencies = [
1913 "log",
1914 "pin-project-lite",
1915 "tracing-core",
1916]
1917
1918[[package]]
1919name = "tracing-core"
1920version = "0.1.34"
1921source = "registry+https://github.com/rust-lang/crates.io-index"
1922checksum = "b9d12581f227e93f094d3af2ae690a574abb8a2b9b7a96e7cfe9647b2b617678"
1923dependencies = [
1924 "once_cell",
1925]
1926
1927[[package]]
1928name = "try-lock"
1929version = "0.2.5"
1930source = "registry+https://github.com/rust-lang/crates.io-index"
1931checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
1932
1933[[package]]
1934name = "tungstenite"
1935version = "0.21.0"
1936source = "registry+https://github.com/rust-lang/crates.io-index"
1937checksum = "9ef1a641ea34f399a848dea702823bbecfb4c486f911735368f1f137cb8257e1"
1938dependencies = [
1939 "byteorder",
1940 "bytes",
1941 "data-encoding",
1942 "http 1.3.1",
1943 "httparse",
1944 "log",
1945 "rand 0.8.5",
1946 "sha1",
1947 "thiserror",
1948 "url",
1949 "utf-8",
1950]
1951
1952[[package]]
1953name = "typenum"
1954version = "1.18.0"
1955source = "registry+https://github.com/rust-lang/crates.io-index"
1956checksum = "1dccffe3ce07af9386bfd29e80c0ab1a8205a2fc34e4bcd40364df902cfa8f3f"
1957
1958[[package]]
1959name = "unicase"
1960version = "2.8.1"
1961source = "registry+https://github.com/rust-lang/crates.io-index"
1962checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
1963
1964[[package]]
1965name = "unicode-bidi"
1966version = "0.3.18"
1967source = "registry+https://github.com/rust-lang/crates.io-index"
1968checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
1969
1970[[package]]
1971name = "unicode-ident"
1972version = "1.0.18"
1973source = "registry+https://github.com/rust-lang/crates.io-index"
1974checksum = "5a5f39404a5da50712a4c1eecf25e90dd62b613502b7e925fd4e4d19b5c96512"
1975
1976[[package]]
1977name = "unicode-normalization"
1978version = "0.1.24"
1979source = "registry+https://github.com/rust-lang/crates.io-index"
1980checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
1981dependencies = [
1982 "tinyvec",
1983]
1984
1985[[package]]
1986name = "unicode-properties"
1987version = "0.1.3"
1988source = "registry+https://github.com/rust-lang/crates.io-index"
1989checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
1990
1991[[package]]
1992name = "url"
1993version = "2.5.4"
1994source = "registry+https://github.com/rust-lang/crates.io-index"
1995checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
1996dependencies = [
1997 "form_urlencoded",
1998 "idna",
1999 "percent-encoding",
2000]
2001
2002[[package]]
2003name = "utf-8"
2004version = "0.7.6"
2005source = "registry+https://github.com/rust-lang/crates.io-index"
2006checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2007
2008[[package]]
2009name = "utf8_iter"
2010version = "1.0.4"
2011source = "registry+https://github.com/rust-lang/crates.io-index"
2012checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2013
2014[[package]]
2015name = "utf8parse"
2016version = "0.2.2"
2017source = "registry+https://github.com/rust-lang/crates.io-index"
2018checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2019
2020[[package]]
2021name = "vcpkg"
2022version = "0.2.15"
2023source = "registry+https://github.com/rust-lang/crates.io-index"
2024checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2025
2026[[package]]
2027name = "version_check"
2028version = "0.9.5"
2029source = "registry+https://github.com/rust-lang/crates.io-index"
2030checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2031
2032[[package]]
2033name = "want"
2034version = "0.3.1"
2035source = "registry+https://github.com/rust-lang/crates.io-index"
2036checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2037dependencies = [
2038 "try-lock",
2039]
2040
2041[[package]]
2042name = "warp"
2043version = "0.3.7"
2044source = "registry+https://github.com/rust-lang/crates.io-index"
2045checksum = "4378d202ff965b011c64817db11d5829506d3404edeadb61f190d111da3f231c"
2046dependencies = [
2047 "bytes",
2048 "futures-channel",
2049 "futures-util",
2050 "headers",
2051 "http 0.2.12",
2052 "hyper",
2053 "log",
2054 "mime",
2055 "mime_guess",
2056 "multer",
2057 "percent-encoding",
2058 "pin-project",
2059 "scoped-tls",
2060 "serde",
2061 "serde_json",
2062 "serde_urlencoded",
2063 "tokio",
2064 "tokio-tungstenite",
2065 "tokio-util",
2066 "tower-service",
2067 "tracing",
2068]
2069
2070[[package]]
2071name = "wasi"
2072version = "0.11.0+wasi-snapshot-preview1"
2073source = "registry+https://github.com/rust-lang/crates.io-index"
2074checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2075
2076[[package]]
2077name = "wasi"
2078version = "0.14.2+wasi-0.2.4"
2079source = "registry+https://github.com/rust-lang/crates.io-index"
2080checksum = "9683f9a5a998d873c0d21fcbe3c083009670149a8fab228644b8bd36b2c48cb3"
2081dependencies = [
2082 "wit-bindgen-rt",
2083]
2084
2085[[package]]
2086name = "wasite"
2087version = "0.1.0"
2088source = "registry+https://github.com/rust-lang/crates.io-index"
2089checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
2090
2091[[package]]
2092name = "wasm-bindgen"
2093version = "0.2.100"
2094source = "registry+https://github.com/rust-lang/crates.io-index"
2095checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2096dependencies = [
2097 "cfg-if",
2098 "once_cell",
2099 "wasm-bindgen-macro",
2100]
2101
2102[[package]]
2103name = "wasm-bindgen-backend"
2104version = "0.2.100"
2105source = "registry+https://github.com/rust-lang/crates.io-index"
2106checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2107dependencies = [
2108 "bumpalo",
2109 "log",
2110 "proc-macro2",
2111 "quote",
2112 "syn",
2113 "wasm-bindgen-shared",
2114]
2115
2116[[package]]
2117name = "wasm-bindgen-macro"
2118version = "0.2.100"
2119source = "registry+https://github.com/rust-lang/crates.io-index"
2120checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2121dependencies = [
2122 "quote",
2123 "wasm-bindgen-macro-support",
2124]
2125
2126[[package]]
2127name = "wasm-bindgen-macro-support"
2128version = "0.2.100"
2129source = "registry+https://github.com/rust-lang/crates.io-index"
2130checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2131dependencies = [
2132 "proc-macro2",
2133 "quote",
2134 "syn",
2135 "wasm-bindgen-backend",
2136 "wasm-bindgen-shared",
2137]
2138
2139[[package]]
2140name = "wasm-bindgen-shared"
2141version = "0.2.100"
2142source = "registry+https://github.com/rust-lang/crates.io-index"
2143checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2144dependencies = [
2145 "unicode-ident",
2146]
2147
2148[[package]]
2149name = "web-sys"
2150version = "0.3.77"
2151source = "registry+https://github.com/rust-lang/crates.io-index"
2152checksum = "33b6dd2ef9186f1f2072e409e99cd22a975331a6b3591b12c764e0e55c60d5d2"
2153dependencies = [
2154 "js-sys",
2155 "wasm-bindgen",
2156]
2157
2158[[package]]
2159name = "whoami"
2160version = "1.6.0"
2161source = "registry+https://github.com/rust-lang/crates.io-index"
2162checksum = "6994d13118ab492c3c80c1f81928718159254c53c472bf9ce36f8dae4add02a7"
2163dependencies = [
2164 "redox_syscall",
2165 "wasite",
2166 "web-sys",
2167]
2168
2169[[package]]
2170name = "winapi-util"
2171version = "0.1.9"
2172source = "registry+https://github.com/rust-lang/crates.io-index"
2173checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2174dependencies = [
2175 "windows-sys 0.59.0",
2176]
2177
2178[[package]]
2179name = "windows-sys"
2180version = "0.52.0"
2181source = "registry+https://github.com/rust-lang/crates.io-index"
2182checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2183dependencies = [
2184 "windows-targets",
2185]
2186
2187[[package]]
2188name = "windows-sys"
2189version = "0.59.0"
2190source = "registry+https://github.com/rust-lang/crates.io-index"
2191checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2192dependencies = [
2193 "windows-targets",
2194]
2195
2196[[package]]
2197name = "windows-targets"
2198version = "0.52.6"
2199source = "registry+https://github.com/rust-lang/crates.io-index"
2200checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2201dependencies = [
2202 "windows_aarch64_gnullvm",
2203 "windows_aarch64_msvc",
2204 "windows_i686_gnu",
2205 "windows_i686_gnullvm",
2206 "windows_i686_msvc",
2207 "windows_x86_64_gnu",
2208 "windows_x86_64_gnullvm",
2209 "windows_x86_64_msvc",
2210]
2211
2212[[package]]
2213name = "windows_aarch64_gnullvm"
2214version = "0.52.6"
2215source = "registry+https://github.com/rust-lang/crates.io-index"
2216checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2217
2218[[package]]
2219name = "windows_aarch64_msvc"
2220version = "0.52.6"
2221source = "registry+https://github.com/rust-lang/crates.io-index"
2222checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2223
2224[[package]]
2225name = "windows_i686_gnu"
2226version = "0.52.6"
2227source = "registry+https://github.com/rust-lang/crates.io-index"
2228checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2229
2230[[package]]
2231name = "windows_i686_gnullvm"
2232version = "0.52.6"
2233source = "registry+https://github.com/rust-lang/crates.io-index"
2234checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2235
2236[[package]]
2237name = "windows_i686_msvc"
2238version = "0.52.6"
2239source = "registry+https://github.com/rust-lang/crates.io-index"
2240checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2241
2242[[package]]
2243name = "windows_x86_64_gnu"
2244version = "0.52.6"
2245source = "registry+https://github.com/rust-lang/crates.io-index"
2246checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2247
2248[[package]]
2249name = "windows_x86_64_gnullvm"
2250version = "0.52.6"
2251source = "registry+https://github.com/rust-lang/crates.io-index"
2252checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2253
2254[[package]]
2255name = "windows_x86_64_msvc"
2256version = "0.52.6"
2257source = "registry+https://github.com/rust-lang/crates.io-index"
2258checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2259
2260[[package]]
2261name = "winnow"
2262version = "0.7.10"
2263source = "registry+https://github.com/rust-lang/crates.io-index"
2264checksum = "c06928c8748d81b05c9be96aad92e1b6ff01833332f281e8cfca3be4b35fc9ec"
2265dependencies = [
2266 "memchr",
2267]
2268
2269[[package]]
2270name = "wit-bindgen-rt"
2271version = "0.39.0"
2272source = "registry+https://github.com/rust-lang/crates.io-index"
2273checksum = "6f42320e61fe2cfd34354ecb597f86f413484a798ba44a8ca1165c58d42da6c1"
2274dependencies = [
2275 "bitflags",
2276]
2277
2278[[package]]
2279name = "writeable"
2280version = "0.6.1"
2281source = "registry+https://github.com/rust-lang/crates.io-index"
2282checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb"
2283
2284[[package]]
2285name = "yoke"
2286version = "0.8.0"
2287source = "registry+https://github.com/rust-lang/crates.io-index"
2288checksum = "5f41bb01b8226ef4bfd589436a297c53d118f65921786300e427be8d487695cc"
2289dependencies = [
2290 "serde",
2291 "stable_deref_trait",
2292 "yoke-derive",
2293 "zerofrom",
2294]
2295
2296[[package]]
2297name = "yoke-derive"
2298version = "0.8.0"
2299source = "registry+https://github.com/rust-lang/crates.io-index"
2300checksum = "38da3c9736e16c5d3c8c597a9aaa5d1fa565d0532ae05e27c24aa62fb32c0ab6"
2301dependencies = [
2302 "proc-macro2",
2303 "quote",
2304 "syn",
2305 "synstructure",
2306]
2307
2308[[package]]
2309name = "zerocopy"
2310version = "0.8.25"
2311source = "registry+https://github.com/rust-lang/crates.io-index"
2312checksum = "a1702d9583232ddb9174e01bb7c15a2ab8fb1bc6f227aa1233858c351a3ba0cb"
2313dependencies = [
2314 "zerocopy-derive",
2315]
2316
2317[[package]]
2318name = "zerocopy-derive"
2319version = "0.8.25"
2320source = "registry+https://github.com/rust-lang/crates.io-index"
2321checksum = "28a6e20d751156648aa063f3800b706ee209a32c0b4d9f24be3d980b01be55ef"
2322dependencies = [
2323 "proc-macro2",
2324 "quote",
2325 "syn",
2326]
2327
2328[[package]]
2329name = "zerofrom"
2330version = "0.1.6"
2331source = "registry+https://github.com/rust-lang/crates.io-index"
2332checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5"
2333dependencies = [
2334 "zerofrom-derive",
2335]
2336
2337[[package]]
2338name = "zerofrom-derive"
2339version = "0.1.6"
2340source = "registry+https://github.com/rust-lang/crates.io-index"
2341checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502"
2342dependencies = [
2343 "proc-macro2",
2344 "quote",
2345 "syn",
2346 "synstructure",
2347]
2348
2349[[package]]
2350name = "zerotrie"
2351version = "0.2.2"
2352source = "registry+https://github.com/rust-lang/crates.io-index"
2353checksum = "36f0bbd478583f79edad978b407914f61b2972f5af6fa089686016be8f9af595"
2354dependencies = [
2355 "displaydoc",
2356 "yoke",
2357 "zerofrom",
2358]
2359
2360[[package]]
2361name = "zerovec"
2362version = "0.11.2"
2363source = "registry+https://github.com/rust-lang/crates.io-index"
2364checksum = "4a05eb080e015ba39cc9e23bbe5e7fb04d5fb040350f99f34e338d5fdd294428"
2365dependencies = [
2366 "yoke",
2367 "zerofrom",
2368 "zerovec-derive",
2369]
2370
2371[[package]]
2372name = "zerovec-derive"
2373version = "0.11.1"
2374source = "registry+https://github.com/rust-lang/crates.io-index"
2375checksum = "5b96237efa0c878c64bd89c436f661be4e46b2f3eff1ebb976f7ef2321d2f58f"
2376dependencies = [
2377 "proc-macro2",
2378 "quote",
2379 "syn",
2380]