A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
1# This file is automatically @generated by Cargo.
2# It is not intended for manual editing.
3version = 4
4
5[[package]]
6name = "actix-codec"
7version = "0.5.2"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
10dependencies = [
11 "bitflags",
12 "bytes",
13 "futures-core",
14 "futures-sink",
15 "memchr",
16 "pin-project-lite",
17 "tokio",
18 "tokio-util",
19 "tracing",
20]
21
22[[package]]
23name = "actix-cors"
24version = "0.6.5"
25source = "registry+https://github.com/rust-lang/crates.io-index"
26checksum = "0346d8c1f762b41b458ed3145eea914966bb9ad20b9be0d6d463b20d45586370"
27dependencies = [
28 "actix-utils",
29 "actix-web",
30 "derive_more",
31 "futures-util",
32 "log",
33 "once_cell",
34 "smallvec",
35]
36
37[[package]]
38name = "actix-files"
39version = "0.6.6"
40source = "registry+https://github.com/rust-lang/crates.io-index"
41checksum = "0773d59061dedb49a8aed04c67291b9d8cf2fe0b60130a381aab53c6dd86e9be"
42dependencies = [
43 "actix-http",
44 "actix-service",
45 "actix-utils",
46 "actix-web",
47 "bitflags",
48 "bytes",
49 "derive_more",
50 "futures-core",
51 "http-range",
52 "log",
53 "mime",
54 "mime_guess",
55 "percent-encoding",
56 "pin-project-lite",
57 "v_htmlescape",
58]
59
60[[package]]
61name = "actix-http"
62version = "3.9.0"
63source = "registry+https://github.com/rust-lang/crates.io-index"
64checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
65dependencies = [
66 "actix-codec",
67 "actix-rt",
68 "actix-service",
69 "actix-utils",
70 "ahash",
71 "base64 0.22.1",
72 "bitflags",
73 "brotli",
74 "bytes",
75 "bytestring",
76 "derive_more",
77 "encoding_rs",
78 "flate2",
79 "futures-core",
80 "h2",
81 "http",
82 "httparse",
83 "httpdate",
84 "itoa",
85 "language-tags",
86 "local-channel",
87 "mime",
88 "percent-encoding",
89 "pin-project-lite",
90 "rand",
91 "sha1",
92 "smallvec",
93 "tokio",
94 "tokio-util",
95 "tracing",
96 "zstd",
97]
98
99[[package]]
100name = "actix-macros"
101version = "0.2.4"
102source = "registry+https://github.com/rust-lang/crates.io-index"
103checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
104dependencies = [
105 "quote",
106 "syn",
107]
108
109[[package]]
110name = "actix-router"
111version = "0.5.3"
112source = "registry+https://github.com/rust-lang/crates.io-index"
113checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
114dependencies = [
115 "bytestring",
116 "cfg-if",
117 "http",
118 "regex",
119 "regex-lite",
120 "serde",
121 "tracing",
122]
123
124[[package]]
125name = "actix-rt"
126version = "2.10.0"
127source = "registry+https://github.com/rust-lang/crates.io-index"
128checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
129dependencies = [
130 "futures-core",
131 "tokio",
132]
133
134[[package]]
135name = "actix-server"
136version = "2.5.0"
137source = "registry+https://github.com/rust-lang/crates.io-index"
138checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
139dependencies = [
140 "actix-rt",
141 "actix-service",
142 "actix-utils",
143 "futures-core",
144 "futures-util",
145 "mio",
146 "socket2",
147 "tokio",
148 "tracing",
149]
150
151[[package]]
152name = "actix-service"
153version = "2.0.2"
154source = "registry+https://github.com/rust-lang/crates.io-index"
155checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
156dependencies = [
157 "futures-core",
158 "paste",
159 "pin-project-lite",
160]
161
162[[package]]
163name = "actix-utils"
164version = "3.0.1"
165source = "registry+https://github.com/rust-lang/crates.io-index"
166checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
167dependencies = [
168 "local-waker",
169 "pin-project-lite",
170]
171
172[[package]]
173name = "actix-web"
174version = "4.9.0"
175source = "registry+https://github.com/rust-lang/crates.io-index"
176checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
177dependencies = [
178 "actix-codec",
179 "actix-http",
180 "actix-macros",
181 "actix-router",
182 "actix-rt",
183 "actix-server",
184 "actix-service",
185 "actix-utils",
186 "actix-web-codegen",
187 "ahash",
188 "bytes",
189 "bytestring",
190 "cfg-if",
191 "cookie",
192 "derive_more",
193 "encoding_rs",
194 "futures-core",
195 "futures-util",
196 "impl-more",
197 "itoa",
198 "language-tags",
199 "log",
200 "mime",
201 "once_cell",
202 "pin-project-lite",
203 "regex",
204 "regex-lite",
205 "serde",
206 "serde_json",
207 "serde_urlencoded",
208 "smallvec",
209 "socket2",
210 "time",
211 "url",
212]
213
214[[package]]
215name = "actix-web-codegen"
216version = "4.3.0"
217source = "registry+https://github.com/rust-lang/crates.io-index"
218checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
219dependencies = [
220 "actix-router",
221 "proc-macro2",
222 "quote",
223 "syn",
224]
225
226[[package]]
227name = "addr2line"
228version = "0.24.2"
229source = "registry+https://github.com/rust-lang/crates.io-index"
230checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
231dependencies = [
232 "gimli",
233]
234
235[[package]]
236name = "adler2"
237version = "2.0.0"
238source = "registry+https://github.com/rust-lang/crates.io-index"
239checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
240
241[[package]]
242name = "ahash"
243version = "0.8.11"
244source = "registry+https://github.com/rust-lang/crates.io-index"
245checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
246dependencies = [
247 "cfg-if",
248 "getrandom",
249 "once_cell",
250 "version_check",
251 "zerocopy",
252]
253
254[[package]]
255name = "aho-corasick"
256version = "1.1.3"
257source = "registry+https://github.com/rust-lang/crates.io-index"
258checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
259dependencies = [
260 "memchr",
261]
262
263[[package]]
264name = "alloc-no-stdlib"
265version = "2.0.4"
266source = "registry+https://github.com/rust-lang/crates.io-index"
267checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
268
269[[package]]
270name = "alloc-stdlib"
271version = "0.2.2"
272source = "registry+https://github.com/rust-lang/crates.io-index"
273checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
274dependencies = [
275 "alloc-no-stdlib",
276]
277
278[[package]]
279name = "allocator-api2"
280version = "0.2.21"
281source = "registry+https://github.com/rust-lang/crates.io-index"
282checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
283
284[[package]]
285name = "android-tzdata"
286version = "0.1.1"
287source = "registry+https://github.com/rust-lang/crates.io-index"
288checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
289
290[[package]]
291name = "android_system_properties"
292version = "0.1.5"
293source = "registry+https://github.com/rust-lang/crates.io-index"
294checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
295dependencies = [
296 "libc",
297]
298
299[[package]]
300name = "anstream"
301version = "0.6.18"
302source = "registry+https://github.com/rust-lang/crates.io-index"
303checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
304dependencies = [
305 "anstyle",
306 "anstyle-parse",
307 "anstyle-query",
308 "anstyle-wincon",
309 "colorchoice",
310 "is_terminal_polyfill",
311 "utf8parse",
312]
313
314[[package]]
315name = "anstyle"
316version = "1.0.10"
317source = "registry+https://github.com/rust-lang/crates.io-index"
318checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
319
320[[package]]
321name = "anstyle-parse"
322version = "0.2.6"
323source = "registry+https://github.com/rust-lang/crates.io-index"
324checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
325dependencies = [
326 "utf8parse",
327]
328
329[[package]]
330name = "anstyle-query"
331version = "1.1.2"
332source = "registry+https://github.com/rust-lang/crates.io-index"
333checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
334dependencies = [
335 "windows-sys 0.59.0",
336]
337
338[[package]]
339name = "anstyle-wincon"
340version = "3.0.7"
341source = "registry+https://github.com/rust-lang/crates.io-index"
342checksum = "ca3534e77181a9cc07539ad51f2141fe32f6c3ffd4df76db8ad92346b003ae4e"
343dependencies = [
344 "anstyle",
345 "once_cell",
346 "windows-sys 0.59.0",
347]
348
349[[package]]
350name = "anyhow"
351version = "1.0.95"
352source = "registry+https://github.com/rust-lang/crates.io-index"
353checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
354
355[[package]]
356name = "argon2"
357version = "0.5.3"
358source = "registry+https://github.com/rust-lang/crates.io-index"
359checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
360dependencies = [
361 "base64ct",
362 "blake2",
363 "cpufeatures",
364 "password-hash",
365]
366
367[[package]]
368name = "atoi"
369version = "2.0.0"
370source = "registry+https://github.com/rust-lang/crates.io-index"
371checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
372dependencies = [
373 "num-traits",
374]
375
376[[package]]
377name = "autocfg"
378version = "1.4.0"
379source = "registry+https://github.com/rust-lang/crates.io-index"
380checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
381
382[[package]]
383name = "backtrace"
384version = "0.3.74"
385source = "registry+https://github.com/rust-lang/crates.io-index"
386checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
387dependencies = [
388 "addr2line",
389 "cfg-if",
390 "libc",
391 "miniz_oxide",
392 "object",
393 "rustc-demangle",
394 "windows-targets 0.52.6",
395]
396
397[[package]]
398name = "base62"
399version = "2.2.1"
400source = "registry+https://github.com/rust-lang/crates.io-index"
401checksum = "10e52a7bcb1d6beebee21fb5053af9e3cbb7a7ed1a4909e534040e676437ab1f"
402dependencies = [
403 "rustversion",
404]
405
406[[package]]
407name = "base64"
408version = "0.21.7"
409source = "registry+https://github.com/rust-lang/crates.io-index"
410checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
411
412[[package]]
413name = "base64"
414version = "0.22.1"
415source = "registry+https://github.com/rust-lang/crates.io-index"
416checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
417
418[[package]]
419name = "base64ct"
420version = "1.6.0"
421source = "registry+https://github.com/rust-lang/crates.io-index"
422checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
423
424[[package]]
425name = "bitflags"
426version = "2.8.0"
427source = "registry+https://github.com/rust-lang/crates.io-index"
428checksum = "8f68f53c83ab957f72c32642f3868eec03eb974d1fb82e453128456482613d36"
429dependencies = [
430 "serde",
431]
432
433[[package]]
434name = "blake2"
435version = "0.10.6"
436source = "registry+https://github.com/rust-lang/crates.io-index"
437checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
438dependencies = [
439 "digest",
440]
441
442[[package]]
443name = "block-buffer"
444version = "0.10.4"
445source = "registry+https://github.com/rust-lang/crates.io-index"
446checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
447dependencies = [
448 "generic-array",
449]
450
451[[package]]
452name = "brotli"
453version = "6.0.0"
454source = "registry+https://github.com/rust-lang/crates.io-index"
455checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
456dependencies = [
457 "alloc-no-stdlib",
458 "alloc-stdlib",
459 "brotli-decompressor",
460]
461
462[[package]]
463name = "brotli-decompressor"
464version = "4.0.2"
465source = "registry+https://github.com/rust-lang/crates.io-index"
466checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
467dependencies = [
468 "alloc-no-stdlib",
469 "alloc-stdlib",
470]
471
472[[package]]
473name = "bumpalo"
474version = "3.16.0"
475source = "registry+https://github.com/rust-lang/crates.io-index"
476checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
477
478[[package]]
479name = "byteorder"
480version = "1.5.0"
481source = "registry+https://github.com/rust-lang/crates.io-index"
482checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
483
484[[package]]
485name = "bytes"
486version = "1.9.0"
487source = "registry+https://github.com/rust-lang/crates.io-index"
488checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
489
490[[package]]
491name = "bytestring"
492version = "1.4.0"
493source = "registry+https://github.com/rust-lang/crates.io-index"
494checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
495dependencies = [
496 "bytes",
497]
498
499[[package]]
500name = "cc"
501version = "1.2.10"
502source = "registry+https://github.com/rust-lang/crates.io-index"
503checksum = "13208fcbb66eaeffe09b99fffbe1af420f00a7b35aa99ad683dfc1aa76145229"
504dependencies = [
505 "jobserver",
506 "libc",
507 "shlex",
508]
509
510[[package]]
511name = "cfg-if"
512version = "1.0.0"
513source = "registry+https://github.com/rust-lang/crates.io-index"
514checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
515
516[[package]]
517name = "chrono"
518version = "0.4.39"
519source = "registry+https://github.com/rust-lang/crates.io-index"
520checksum = "7e36cc9d416881d2e24f9a963be5fb1cd90966419ac844274161d10488b3e825"
521dependencies = [
522 "android-tzdata",
523 "iana-time-zone",
524 "js-sys",
525 "num-traits",
526 "serde",
527 "wasm-bindgen",
528 "windows-targets 0.52.6",
529]
530
531[[package]]
532name = "clap"
533version = "4.5.27"
534source = "registry+https://github.com/rust-lang/crates.io-index"
535checksum = "769b0145982b4b48713e01ec42d61614425f27b7058bda7180a3a41f30104796"
536dependencies = [
537 "clap_builder",
538 "clap_derive",
539]
540
541[[package]]
542name = "clap_builder"
543version = "4.5.27"
544source = "registry+https://github.com/rust-lang/crates.io-index"
545checksum = "1b26884eb4b57140e4d2d93652abfa49498b938b3c9179f9fc487b0acc3edad7"
546dependencies = [
547 "anstream",
548 "anstyle",
549 "clap_lex",
550 "strsim",
551]
552
553[[package]]
554name = "clap_derive"
555version = "4.5.24"
556source = "registry+https://github.com/rust-lang/crates.io-index"
557checksum = "54b755194d6389280185988721fffba69495eed5ee9feeee9a599b53db80318c"
558dependencies = [
559 "heck",
560 "proc-macro2",
561 "quote",
562 "syn",
563]
564
565[[package]]
566name = "clap_lex"
567version = "0.7.4"
568source = "registry+https://github.com/rust-lang/crates.io-index"
569checksum = "f46ad14479a25103f283c0f10005961cf086d8dc42205bb44c46ac563475dca6"
570
571[[package]]
572name = "colorchoice"
573version = "1.0.3"
574source = "registry+https://github.com/rust-lang/crates.io-index"
575checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
576
577[[package]]
578name = "concurrent-queue"
579version = "2.5.0"
580source = "registry+https://github.com/rust-lang/crates.io-index"
581checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
582dependencies = [
583 "crossbeam-utils",
584]
585
586[[package]]
587name = "const-oid"
588version = "0.9.6"
589source = "registry+https://github.com/rust-lang/crates.io-index"
590checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
591
592[[package]]
593name = "convert_case"
594version = "0.4.0"
595source = "registry+https://github.com/rust-lang/crates.io-index"
596checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
597
598[[package]]
599name = "cookie"
600version = "0.16.2"
601source = "registry+https://github.com/rust-lang/crates.io-index"
602checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
603dependencies = [
604 "percent-encoding",
605 "time",
606 "version_check",
607]
608
609[[package]]
610name = "core-foundation-sys"
611version = "0.8.7"
612source = "registry+https://github.com/rust-lang/crates.io-index"
613checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
614
615[[package]]
616name = "cpufeatures"
617version = "0.2.17"
618source = "registry+https://github.com/rust-lang/crates.io-index"
619checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
620dependencies = [
621 "libc",
622]
623
624[[package]]
625name = "crc"
626version = "3.2.1"
627source = "registry+https://github.com/rust-lang/crates.io-index"
628checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
629dependencies = [
630 "crc-catalog",
631]
632
633[[package]]
634name = "crc-catalog"
635version = "2.4.0"
636source = "registry+https://github.com/rust-lang/crates.io-index"
637checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
638
639[[package]]
640name = "crc32fast"
641version = "1.4.2"
642source = "registry+https://github.com/rust-lang/crates.io-index"
643checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
644dependencies = [
645 "cfg-if",
646]
647
648[[package]]
649name = "crossbeam-queue"
650version = "0.3.12"
651source = "registry+https://github.com/rust-lang/crates.io-index"
652checksum = "0f58bbc28f91df819d0aa2a2c00cd19754769c2fad90579b3592b1c9ba7a3115"
653dependencies = [
654 "crossbeam-utils",
655]
656
657[[package]]
658name = "crossbeam-utils"
659version = "0.8.21"
660source = "registry+https://github.com/rust-lang/crates.io-index"
661checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
662
663[[package]]
664name = "crypto-common"
665version = "0.1.6"
666source = "registry+https://github.com/rust-lang/crates.io-index"
667checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
668dependencies = [
669 "generic-array",
670 "typenum",
671]
672
673[[package]]
674name = "der"
675version = "0.7.9"
676source = "registry+https://github.com/rust-lang/crates.io-index"
677checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
678dependencies = [
679 "const-oid",
680 "pem-rfc7468",
681 "zeroize",
682]
683
684[[package]]
685name = "deranged"
686version = "0.3.11"
687source = "registry+https://github.com/rust-lang/crates.io-index"
688checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
689dependencies = [
690 "powerfmt",
691]
692
693[[package]]
694name = "derive_more"
695version = "0.99.18"
696source = "registry+https://github.com/rust-lang/crates.io-index"
697checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
698dependencies = [
699 "convert_case",
700 "proc-macro2",
701 "quote",
702 "rustc_version",
703 "syn",
704]
705
706[[package]]
707name = "digest"
708version = "0.10.7"
709source = "registry+https://github.com/rust-lang/crates.io-index"
710checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
711dependencies = [
712 "block-buffer",
713 "const-oid",
714 "crypto-common",
715 "subtle",
716]
717
718[[package]]
719name = "displaydoc"
720version = "0.2.5"
721source = "registry+https://github.com/rust-lang/crates.io-index"
722checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
723dependencies = [
724 "proc-macro2",
725 "quote",
726 "syn",
727]
728
729[[package]]
730name = "dotenv"
731version = "0.15.0"
732source = "registry+https://github.com/rust-lang/crates.io-index"
733checksum = "77c90badedccf4105eca100756a0b1289e191f6fcbdadd3cee1d2f614f97da8f"
734
735[[package]]
736name = "dotenvy"
737version = "0.15.7"
738source = "registry+https://github.com/rust-lang/crates.io-index"
739checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
740
741[[package]]
742name = "either"
743version = "1.13.0"
744source = "registry+https://github.com/rust-lang/crates.io-index"
745checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
746dependencies = [
747 "serde",
748]
749
750[[package]]
751name = "encoding_rs"
752version = "0.8.35"
753source = "registry+https://github.com/rust-lang/crates.io-index"
754checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
755dependencies = [
756 "cfg-if",
757]
758
759[[package]]
760name = "equivalent"
761version = "1.0.1"
762source = "registry+https://github.com/rust-lang/crates.io-index"
763checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
764
765[[package]]
766name = "errno"
767version = "0.3.10"
768source = "registry+https://github.com/rust-lang/crates.io-index"
769checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
770dependencies = [
771 "libc",
772 "windows-sys 0.59.0",
773]
774
775[[package]]
776name = "etcetera"
777version = "0.8.0"
778source = "registry+https://github.com/rust-lang/crates.io-index"
779checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
780dependencies = [
781 "cfg-if",
782 "home",
783 "windows-sys 0.48.0",
784]
785
786[[package]]
787name = "event-listener"
788version = "5.4.0"
789source = "registry+https://github.com/rust-lang/crates.io-index"
790checksum = "3492acde4c3fc54c845eaab3eed8bd00c7a7d881f78bfc801e43a93dec1331ae"
791dependencies = [
792 "concurrent-queue",
793 "parking",
794 "pin-project-lite",
795]
796
797[[package]]
798name = "fastrand"
799version = "2.3.0"
800source = "registry+https://github.com/rust-lang/crates.io-index"
801checksum = "37909eebbb50d72f9059c3b6d82c0463f2ff062c9e95845c43a6c9c0355411be"
802
803[[package]]
804name = "flate2"
805version = "1.0.35"
806source = "registry+https://github.com/rust-lang/crates.io-index"
807checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
808dependencies = [
809 "crc32fast",
810 "miniz_oxide",
811]
812
813[[package]]
814name = "flume"
815version = "0.11.1"
816source = "registry+https://github.com/rust-lang/crates.io-index"
817checksum = "da0e4dd2a88388a1f4ccc7c9ce104604dab68d9f408dc34cd45823d5a9069095"
818dependencies = [
819 "futures-core",
820 "futures-sink",
821 "spin",
822]
823
824[[package]]
825name = "fnv"
826version = "1.0.7"
827source = "registry+https://github.com/rust-lang/crates.io-index"
828checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
829
830[[package]]
831name = "foldhash"
832version = "0.1.4"
833source = "registry+https://github.com/rust-lang/crates.io-index"
834checksum = "a0d2fde1f7b3d48b8395d5f2de76c18a528bd6a9cdde438df747bfcba3e05d6f"
835
836[[package]]
837name = "form_urlencoded"
838version = "1.2.1"
839source = "registry+https://github.com/rust-lang/crates.io-index"
840checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
841dependencies = [
842 "percent-encoding",
843]
844
845[[package]]
846name = "futures"
847version = "0.3.31"
848source = "registry+https://github.com/rust-lang/crates.io-index"
849checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
850dependencies = [
851 "futures-channel",
852 "futures-core",
853 "futures-executor",
854 "futures-io",
855 "futures-sink",
856 "futures-task",
857 "futures-util",
858]
859
860[[package]]
861name = "futures-channel"
862version = "0.3.31"
863source = "registry+https://github.com/rust-lang/crates.io-index"
864checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
865dependencies = [
866 "futures-core",
867 "futures-sink",
868]
869
870[[package]]
871name = "futures-core"
872version = "0.3.31"
873source = "registry+https://github.com/rust-lang/crates.io-index"
874checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
875
876[[package]]
877name = "futures-executor"
878version = "0.3.31"
879source = "registry+https://github.com/rust-lang/crates.io-index"
880checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
881dependencies = [
882 "futures-core",
883 "futures-task",
884 "futures-util",
885]
886
887[[package]]
888name = "futures-intrusive"
889version = "0.5.0"
890source = "registry+https://github.com/rust-lang/crates.io-index"
891checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
892dependencies = [
893 "futures-core",
894 "lock_api",
895 "parking_lot",
896]
897
898[[package]]
899name = "futures-io"
900version = "0.3.31"
901source = "registry+https://github.com/rust-lang/crates.io-index"
902checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
903
904[[package]]
905name = "futures-macro"
906version = "0.3.31"
907source = "registry+https://github.com/rust-lang/crates.io-index"
908checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
909dependencies = [
910 "proc-macro2",
911 "quote",
912 "syn",
913]
914
915[[package]]
916name = "futures-sink"
917version = "0.3.31"
918source = "registry+https://github.com/rust-lang/crates.io-index"
919checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
920
921[[package]]
922name = "futures-task"
923version = "0.3.31"
924source = "registry+https://github.com/rust-lang/crates.io-index"
925checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
926
927[[package]]
928name = "futures-util"
929version = "0.3.31"
930source = "registry+https://github.com/rust-lang/crates.io-index"
931checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
932dependencies = [
933 "futures-channel",
934 "futures-core",
935 "futures-io",
936 "futures-macro",
937 "futures-sink",
938 "futures-task",
939 "memchr",
940 "pin-project-lite",
941 "pin-utils",
942 "slab",
943]
944
945[[package]]
946name = "generic-array"
947version = "0.14.7"
948source = "registry+https://github.com/rust-lang/crates.io-index"
949checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
950dependencies = [
951 "typenum",
952 "version_check",
953]
954
955[[package]]
956name = "getrandom"
957version = "0.2.15"
958source = "registry+https://github.com/rust-lang/crates.io-index"
959checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
960dependencies = [
961 "cfg-if",
962 "js-sys",
963 "libc",
964 "wasi",
965 "wasm-bindgen",
966]
967
968[[package]]
969name = "gimli"
970version = "0.31.1"
971source = "registry+https://github.com/rust-lang/crates.io-index"
972checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
973
974[[package]]
975name = "h2"
976version = "0.3.26"
977source = "registry+https://github.com/rust-lang/crates.io-index"
978checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
979dependencies = [
980 "bytes",
981 "fnv",
982 "futures-core",
983 "futures-sink",
984 "futures-util",
985 "http",
986 "indexmap",
987 "slab",
988 "tokio",
989 "tokio-util",
990 "tracing",
991]
992
993[[package]]
994name = "hashbrown"
995version = "0.15.2"
996source = "registry+https://github.com/rust-lang/crates.io-index"
997checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
998dependencies = [
999 "allocator-api2",
1000 "equivalent",
1001 "foldhash",
1002]
1003
1004[[package]]
1005name = "hashlink"
1006version = "0.10.0"
1007source = "registry+https://github.com/rust-lang/crates.io-index"
1008checksum = "7382cf6263419f2d8df38c55d7da83da5c18aef87fc7a7fc1fb1e344edfe14c1"
1009dependencies = [
1010 "hashbrown",
1011]
1012
1013[[package]]
1014name = "heck"
1015version = "0.5.0"
1016source = "registry+https://github.com/rust-lang/crates.io-index"
1017checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
1018
1019[[package]]
1020name = "hex"
1021version = "0.4.3"
1022source = "registry+https://github.com/rust-lang/crates.io-index"
1023checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
1024
1025[[package]]
1026name = "hkdf"
1027version = "0.12.4"
1028source = "registry+https://github.com/rust-lang/crates.io-index"
1029checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
1030dependencies = [
1031 "hmac",
1032]
1033
1034[[package]]
1035name = "hmac"
1036version = "0.12.1"
1037source = "registry+https://github.com/rust-lang/crates.io-index"
1038checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
1039dependencies = [
1040 "digest",
1041]
1042
1043[[package]]
1044name = "home"
1045version = "0.5.11"
1046source = "registry+https://github.com/rust-lang/crates.io-index"
1047checksum = "589533453244b0995c858700322199b2becb13b627df2851f64a2775d024abcf"
1048dependencies = [
1049 "windows-sys 0.59.0",
1050]
1051
1052[[package]]
1053name = "http"
1054version = "0.2.12"
1055source = "registry+https://github.com/rust-lang/crates.io-index"
1056checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
1057dependencies = [
1058 "bytes",
1059 "fnv",
1060 "itoa",
1061]
1062
1063[[package]]
1064name = "http-range"
1065version = "0.1.5"
1066source = "registry+https://github.com/rust-lang/crates.io-index"
1067checksum = "21dec9db110f5f872ed9699c3ecf50cf16f423502706ba5c72462e28d3157573"
1068
1069[[package]]
1070name = "httparse"
1071version = "1.9.5"
1072source = "registry+https://github.com/rust-lang/crates.io-index"
1073checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
1074
1075[[package]]
1076name = "httpdate"
1077version = "1.0.3"
1078source = "registry+https://github.com/rust-lang/crates.io-index"
1079checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
1080
1081[[package]]
1082name = "iana-time-zone"
1083version = "0.1.61"
1084source = "registry+https://github.com/rust-lang/crates.io-index"
1085checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
1086dependencies = [
1087 "android_system_properties",
1088 "core-foundation-sys",
1089 "iana-time-zone-haiku",
1090 "js-sys",
1091 "wasm-bindgen",
1092 "windows-core",
1093]
1094
1095[[package]]
1096name = "iana-time-zone-haiku"
1097version = "0.1.2"
1098source = "registry+https://github.com/rust-lang/crates.io-index"
1099checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
1100dependencies = [
1101 "cc",
1102]
1103
1104[[package]]
1105name = "icu_collections"
1106version = "1.5.0"
1107source = "registry+https://github.com/rust-lang/crates.io-index"
1108checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
1109dependencies = [
1110 "displaydoc",
1111 "yoke",
1112 "zerofrom",
1113 "zerovec",
1114]
1115
1116[[package]]
1117name = "icu_locid"
1118version = "1.5.0"
1119source = "registry+https://github.com/rust-lang/crates.io-index"
1120checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
1121dependencies = [
1122 "displaydoc",
1123 "litemap",
1124 "tinystr",
1125 "writeable",
1126 "zerovec",
1127]
1128
1129[[package]]
1130name = "icu_locid_transform"
1131version = "1.5.0"
1132source = "registry+https://github.com/rust-lang/crates.io-index"
1133checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
1134dependencies = [
1135 "displaydoc",
1136 "icu_locid",
1137 "icu_locid_transform_data",
1138 "icu_provider",
1139 "tinystr",
1140 "zerovec",
1141]
1142
1143[[package]]
1144name = "icu_locid_transform_data"
1145version = "1.5.0"
1146source = "registry+https://github.com/rust-lang/crates.io-index"
1147checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
1148
1149[[package]]
1150name = "icu_normalizer"
1151version = "1.5.0"
1152source = "registry+https://github.com/rust-lang/crates.io-index"
1153checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
1154dependencies = [
1155 "displaydoc",
1156 "icu_collections",
1157 "icu_normalizer_data",
1158 "icu_properties",
1159 "icu_provider",
1160 "smallvec",
1161 "utf16_iter",
1162 "utf8_iter",
1163 "write16",
1164 "zerovec",
1165]
1166
1167[[package]]
1168name = "icu_normalizer_data"
1169version = "1.5.0"
1170source = "registry+https://github.com/rust-lang/crates.io-index"
1171checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
1172
1173[[package]]
1174name = "icu_properties"
1175version = "1.5.1"
1176source = "registry+https://github.com/rust-lang/crates.io-index"
1177checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
1178dependencies = [
1179 "displaydoc",
1180 "icu_collections",
1181 "icu_locid_transform",
1182 "icu_properties_data",
1183 "icu_provider",
1184 "tinystr",
1185 "zerovec",
1186]
1187
1188[[package]]
1189name = "icu_properties_data"
1190version = "1.5.0"
1191source = "registry+https://github.com/rust-lang/crates.io-index"
1192checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
1193
1194[[package]]
1195name = "icu_provider"
1196version = "1.5.0"
1197source = "registry+https://github.com/rust-lang/crates.io-index"
1198checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
1199dependencies = [
1200 "displaydoc",
1201 "icu_locid",
1202 "icu_provider_macros",
1203 "stable_deref_trait",
1204 "tinystr",
1205 "writeable",
1206 "yoke",
1207 "zerofrom",
1208 "zerovec",
1209]
1210
1211[[package]]
1212name = "icu_provider_macros"
1213version = "1.5.0"
1214source = "registry+https://github.com/rust-lang/crates.io-index"
1215checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
1216dependencies = [
1217 "proc-macro2",
1218 "quote",
1219 "syn",
1220]
1221
1222[[package]]
1223name = "idna"
1224version = "1.0.3"
1225source = "registry+https://github.com/rust-lang/crates.io-index"
1226checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
1227dependencies = [
1228 "idna_adapter",
1229 "smallvec",
1230 "utf8_iter",
1231]
1232
1233[[package]]
1234name = "idna_adapter"
1235version = "1.2.0"
1236source = "registry+https://github.com/rust-lang/crates.io-index"
1237checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
1238dependencies = [
1239 "icu_normalizer",
1240 "icu_properties",
1241]
1242
1243[[package]]
1244name = "impl-more"
1245version = "0.1.9"
1246source = "registry+https://github.com/rust-lang/crates.io-index"
1247checksum = "e8a5a9a0ff0086c7a148acb942baaabeadf9504d10400b5a05645853729b9cd2"
1248
1249[[package]]
1250name = "indexmap"
1251version = "2.7.1"
1252source = "registry+https://github.com/rust-lang/crates.io-index"
1253checksum = "8c9c992b02b5b4c94ea26e32fe5bccb7aa7d9f390ab5c1221ff895bc7ea8b652"
1254dependencies = [
1255 "equivalent",
1256 "hashbrown",
1257]
1258
1259[[package]]
1260name = "is_terminal_polyfill"
1261version = "1.70.1"
1262source = "registry+https://github.com/rust-lang/crates.io-index"
1263checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
1264
1265[[package]]
1266name = "itoa"
1267version = "1.0.14"
1268source = "registry+https://github.com/rust-lang/crates.io-index"
1269checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
1270
1271[[package]]
1272name = "jobserver"
1273version = "0.1.32"
1274source = "registry+https://github.com/rust-lang/crates.io-index"
1275checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
1276dependencies = [
1277 "libc",
1278]
1279
1280[[package]]
1281name = "js-sys"
1282version = "0.3.77"
1283source = "registry+https://github.com/rust-lang/crates.io-index"
1284checksum = "1cfaf33c695fc6e08064efbc1f72ec937429614f25eef83af942d0e227c3a28f"
1285dependencies = [
1286 "once_cell",
1287 "wasm-bindgen",
1288]
1289
1290[[package]]
1291name = "jsonwebtoken"
1292version = "9.3.0"
1293source = "registry+https://github.com/rust-lang/crates.io-index"
1294checksum = "b9ae10193d25051e74945f1ea2d0b42e03cc3b890f7e4cc5faa44997d808193f"
1295dependencies = [
1296 "base64 0.21.7",
1297 "js-sys",
1298 "pem",
1299 "ring",
1300 "serde",
1301 "serde_json",
1302 "simple_asn1",
1303]
1304
1305[[package]]
1306name = "language-tags"
1307version = "0.3.2"
1308source = "registry+https://github.com/rust-lang/crates.io-index"
1309checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
1310
1311[[package]]
1312name = "lazy_static"
1313version = "1.5.0"
1314source = "registry+https://github.com/rust-lang/crates.io-index"
1315checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
1316dependencies = [
1317 "spin",
1318]
1319
1320[[package]]
1321name = "libc"
1322version = "0.2.169"
1323source = "registry+https://github.com/rust-lang/crates.io-index"
1324checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
1325
1326[[package]]
1327name = "libm"
1328version = "0.2.11"
1329source = "registry+https://github.com/rust-lang/crates.io-index"
1330checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
1331
1332[[package]]
1333name = "libsqlite3-sys"
1334version = "0.30.1"
1335source = "registry+https://github.com/rust-lang/crates.io-index"
1336checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
1337dependencies = [
1338 "cc",
1339 "pkg-config",
1340 "vcpkg",
1341]
1342
1343[[package]]
1344name = "linux-raw-sys"
1345version = "0.4.15"
1346source = "registry+https://github.com/rust-lang/crates.io-index"
1347checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
1348
1349[[package]]
1350name = "litemap"
1351version = "0.7.4"
1352source = "registry+https://github.com/rust-lang/crates.io-index"
1353checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
1354
1355[[package]]
1356name = "local-channel"
1357version = "0.1.5"
1358source = "registry+https://github.com/rust-lang/crates.io-index"
1359checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
1360dependencies = [
1361 "futures-core",
1362 "futures-sink",
1363 "local-waker",
1364]
1365
1366[[package]]
1367name = "local-waker"
1368version = "0.1.4"
1369source = "registry+https://github.com/rust-lang/crates.io-index"
1370checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
1371
1372[[package]]
1373name = "lock_api"
1374version = "0.4.12"
1375source = "registry+https://github.com/rust-lang/crates.io-index"
1376checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
1377dependencies = [
1378 "autocfg",
1379 "scopeguard",
1380]
1381
1382[[package]]
1383name = "log"
1384version = "0.4.25"
1385source = "registry+https://github.com/rust-lang/crates.io-index"
1386checksum = "04cbf5b083de1c7e0222a7a51dbfdba1cbe1c6ab0b15e29fff3f6c077fd9cd9f"
1387
1388[[package]]
1389name = "md-5"
1390version = "0.10.6"
1391source = "registry+https://github.com/rust-lang/crates.io-index"
1392checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
1393dependencies = [
1394 "cfg-if",
1395 "digest",
1396]
1397
1398[[package]]
1399name = "memchr"
1400version = "2.7.4"
1401source = "registry+https://github.com/rust-lang/crates.io-index"
1402checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
1403
1404[[package]]
1405name = "mime"
1406version = "0.3.17"
1407source = "registry+https://github.com/rust-lang/crates.io-index"
1408checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1409
1410[[package]]
1411name = "mime_guess"
1412version = "2.0.5"
1413source = "registry+https://github.com/rust-lang/crates.io-index"
1414checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
1415dependencies = [
1416 "mime",
1417 "unicase",
1418]
1419
1420[[package]]
1421name = "miniz_oxide"
1422version = "0.8.3"
1423source = "registry+https://github.com/rust-lang/crates.io-index"
1424checksum = "b8402cab7aefae129c6977bb0ff1b8fd9a04eb5b51efc50a70bea51cda0c7924"
1425dependencies = [
1426 "adler2",
1427]
1428
1429[[package]]
1430name = "mio"
1431version = "1.0.3"
1432source = "registry+https://github.com/rust-lang/crates.io-index"
1433checksum = "2886843bf800fba2e3377cff24abf6379b4c4d5c6681eaf9ea5b0d15090450bd"
1434dependencies = [
1435 "libc",
1436 "log",
1437 "wasi",
1438 "windows-sys 0.52.0",
1439]
1440
1441[[package]]
1442name = "nu-ansi-term"
1443version = "0.46.0"
1444source = "registry+https://github.com/rust-lang/crates.io-index"
1445checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1446dependencies = [
1447 "overload",
1448 "winapi",
1449]
1450
1451[[package]]
1452name = "num-bigint"
1453version = "0.4.6"
1454source = "registry+https://github.com/rust-lang/crates.io-index"
1455checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1456dependencies = [
1457 "num-integer",
1458 "num-traits",
1459]
1460
1461[[package]]
1462name = "num-bigint-dig"
1463version = "0.8.4"
1464source = "registry+https://github.com/rust-lang/crates.io-index"
1465checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
1466dependencies = [
1467 "byteorder",
1468 "lazy_static",
1469 "libm",
1470 "num-integer",
1471 "num-iter",
1472 "num-traits",
1473 "rand",
1474 "smallvec",
1475 "zeroize",
1476]
1477
1478[[package]]
1479name = "num-conv"
1480version = "0.1.0"
1481source = "registry+https://github.com/rust-lang/crates.io-index"
1482checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1483
1484[[package]]
1485name = "num-integer"
1486version = "0.1.46"
1487source = "registry+https://github.com/rust-lang/crates.io-index"
1488checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1489dependencies = [
1490 "num-traits",
1491]
1492
1493[[package]]
1494name = "num-iter"
1495version = "0.1.45"
1496source = "registry+https://github.com/rust-lang/crates.io-index"
1497checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1498dependencies = [
1499 "autocfg",
1500 "num-integer",
1501 "num-traits",
1502]
1503
1504[[package]]
1505name = "num-traits"
1506version = "0.2.19"
1507source = "registry+https://github.com/rust-lang/crates.io-index"
1508checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1509dependencies = [
1510 "autocfg",
1511 "libm",
1512]
1513
1514[[package]]
1515name = "object"
1516version = "0.36.7"
1517source = "registry+https://github.com/rust-lang/crates.io-index"
1518checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1519dependencies = [
1520 "memchr",
1521]
1522
1523[[package]]
1524name = "once_cell"
1525version = "1.20.2"
1526source = "registry+https://github.com/rust-lang/crates.io-index"
1527checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1528
1529[[package]]
1530name = "overload"
1531version = "0.1.1"
1532source = "registry+https://github.com/rust-lang/crates.io-index"
1533checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1534
1535[[package]]
1536name = "parking"
1537version = "2.2.1"
1538source = "registry+https://github.com/rust-lang/crates.io-index"
1539checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1540
1541[[package]]
1542name = "parking_lot"
1543version = "0.12.3"
1544source = "registry+https://github.com/rust-lang/crates.io-index"
1545checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1546dependencies = [
1547 "lock_api",
1548 "parking_lot_core",
1549]
1550
1551[[package]]
1552name = "parking_lot_core"
1553version = "0.9.10"
1554source = "registry+https://github.com/rust-lang/crates.io-index"
1555checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1556dependencies = [
1557 "cfg-if",
1558 "libc",
1559 "redox_syscall",
1560 "smallvec",
1561 "windows-targets 0.52.6",
1562]
1563
1564[[package]]
1565name = "password-hash"
1566version = "0.5.0"
1567source = "registry+https://github.com/rust-lang/crates.io-index"
1568checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
1569dependencies = [
1570 "base64ct",
1571 "rand_core",
1572 "subtle",
1573]
1574
1575[[package]]
1576name = "paste"
1577version = "1.0.15"
1578source = "registry+https://github.com/rust-lang/crates.io-index"
1579checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1580
1581[[package]]
1582name = "pem"
1583version = "3.0.4"
1584source = "registry+https://github.com/rust-lang/crates.io-index"
1585checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
1586dependencies = [
1587 "base64 0.22.1",
1588 "serde",
1589]
1590
1591[[package]]
1592name = "pem-rfc7468"
1593version = "0.7.0"
1594source = "registry+https://github.com/rust-lang/crates.io-index"
1595checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1596dependencies = [
1597 "base64ct",
1598]
1599
1600[[package]]
1601name = "percent-encoding"
1602version = "2.3.1"
1603source = "registry+https://github.com/rust-lang/crates.io-index"
1604checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1605
1606[[package]]
1607name = "pin-project-lite"
1608version = "0.2.16"
1609source = "registry+https://github.com/rust-lang/crates.io-index"
1610checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1611
1612[[package]]
1613name = "pin-utils"
1614version = "0.1.0"
1615source = "registry+https://github.com/rust-lang/crates.io-index"
1616checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1617
1618[[package]]
1619name = "pkcs1"
1620version = "0.7.5"
1621source = "registry+https://github.com/rust-lang/crates.io-index"
1622checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1623dependencies = [
1624 "der",
1625 "pkcs8",
1626 "spki",
1627]
1628
1629[[package]]
1630name = "pkcs8"
1631version = "0.10.2"
1632source = "registry+https://github.com/rust-lang/crates.io-index"
1633checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1634dependencies = [
1635 "der",
1636 "spki",
1637]
1638
1639[[package]]
1640name = "pkg-config"
1641version = "0.3.31"
1642source = "registry+https://github.com/rust-lang/crates.io-index"
1643checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1644
1645[[package]]
1646name = "powerfmt"
1647version = "0.2.0"
1648source = "registry+https://github.com/rust-lang/crates.io-index"
1649checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1650
1651[[package]]
1652name = "ppv-lite86"
1653version = "0.2.20"
1654source = "registry+https://github.com/rust-lang/crates.io-index"
1655checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1656dependencies = [
1657 "zerocopy",
1658]
1659
1660[[package]]
1661name = "proc-macro2"
1662version = "1.0.93"
1663source = "registry+https://github.com/rust-lang/crates.io-index"
1664checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
1665dependencies = [
1666 "unicode-ident",
1667]
1668
1669[[package]]
1670name = "quote"
1671version = "1.0.38"
1672source = "registry+https://github.com/rust-lang/crates.io-index"
1673checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
1674dependencies = [
1675 "proc-macro2",
1676]
1677
1678[[package]]
1679name = "rand"
1680version = "0.8.5"
1681source = "registry+https://github.com/rust-lang/crates.io-index"
1682checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1683dependencies = [
1684 "libc",
1685 "rand_chacha",
1686 "rand_core",
1687]
1688
1689[[package]]
1690name = "rand_chacha"
1691version = "0.3.1"
1692source = "registry+https://github.com/rust-lang/crates.io-index"
1693checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1694dependencies = [
1695 "ppv-lite86",
1696 "rand_core",
1697]
1698
1699[[package]]
1700name = "rand_core"
1701version = "0.6.4"
1702source = "registry+https://github.com/rust-lang/crates.io-index"
1703checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1704dependencies = [
1705 "getrandom",
1706]
1707
1708[[package]]
1709name = "redox_syscall"
1710version = "0.5.8"
1711source = "registry+https://github.com/rust-lang/crates.io-index"
1712checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
1713dependencies = [
1714 "bitflags",
1715]
1716
1717[[package]]
1718name = "regex"
1719version = "1.11.1"
1720source = "registry+https://github.com/rust-lang/crates.io-index"
1721checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1722dependencies = [
1723 "aho-corasick",
1724 "memchr",
1725 "regex-automata",
1726 "regex-syntax",
1727]
1728
1729[[package]]
1730name = "regex-automata"
1731version = "0.4.9"
1732source = "registry+https://github.com/rust-lang/crates.io-index"
1733checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1734dependencies = [
1735 "aho-corasick",
1736 "memchr",
1737 "regex-syntax",
1738]
1739
1740[[package]]
1741name = "regex-lite"
1742version = "0.1.6"
1743source = "registry+https://github.com/rust-lang/crates.io-index"
1744checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
1745
1746[[package]]
1747name = "regex-syntax"
1748version = "0.8.5"
1749source = "registry+https://github.com/rust-lang/crates.io-index"
1750checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1751
1752[[package]]
1753name = "ring"
1754version = "0.17.13"
1755source = "registry+https://github.com/rust-lang/crates.io-index"
1756checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee"
1757dependencies = [
1758 "cc",
1759 "cfg-if",
1760 "getrandom",
1761 "libc",
1762 "untrusted",
1763 "windows-sys 0.52.0",
1764]
1765
1766[[package]]
1767name = "rsa"
1768version = "0.9.7"
1769source = "registry+https://github.com/rust-lang/crates.io-index"
1770checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
1771dependencies = [
1772 "const-oid",
1773 "digest",
1774 "num-bigint-dig",
1775 "num-integer",
1776 "num-traits",
1777 "pkcs1",
1778 "pkcs8",
1779 "rand_core",
1780 "signature",
1781 "spki",
1782 "subtle",
1783 "zeroize",
1784]
1785
1786[[package]]
1787name = "rust-embed"
1788version = "6.8.1"
1789source = "registry+https://github.com/rust-lang/crates.io-index"
1790checksum = "a36224c3276f8c4ebc8c20f158eca7ca4359c8db89991c4925132aaaf6702661"
1791dependencies = [
1792 "rust-embed-impl",
1793 "rust-embed-utils",
1794 "walkdir",
1795]
1796
1797[[package]]
1798name = "rust-embed-impl"
1799version = "6.8.1"
1800source = "registry+https://github.com/rust-lang/crates.io-index"
1801checksum = "49b94b81e5b2c284684141a2fb9e2a31be90638caf040bf9afbc5a0416afe1ac"
1802dependencies = [
1803 "proc-macro2",
1804 "quote",
1805 "rust-embed-utils",
1806 "syn",
1807 "walkdir",
1808]
1809
1810[[package]]
1811name = "rust-embed-utils"
1812version = "7.8.1"
1813source = "registry+https://github.com/rust-lang/crates.io-index"
1814checksum = "9d38ff6bf570dc3bb7100fce9f7b60c33fa71d80e88da3f2580df4ff2bdded74"
1815dependencies = [
1816 "sha2",
1817 "walkdir",
1818]
1819
1820[[package]]
1821name = "rustc-demangle"
1822version = "0.1.24"
1823source = "registry+https://github.com/rust-lang/crates.io-index"
1824checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1825
1826[[package]]
1827name = "rustc_version"
1828version = "0.4.1"
1829source = "registry+https://github.com/rust-lang/crates.io-index"
1830checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1831dependencies = [
1832 "semver",
1833]
1834
1835[[package]]
1836name = "rustix"
1837version = "0.38.44"
1838source = "registry+https://github.com/rust-lang/crates.io-index"
1839checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1840dependencies = [
1841 "bitflags",
1842 "errno",
1843 "libc",
1844 "linux-raw-sys",
1845 "windows-sys 0.59.0",
1846]
1847
1848[[package]]
1849name = "rustversion"
1850version = "1.0.19"
1851source = "registry+https://github.com/rust-lang/crates.io-index"
1852checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
1853
1854[[package]]
1855name = "ryu"
1856version = "1.0.18"
1857source = "registry+https://github.com/rust-lang/crates.io-index"
1858checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1859
1860[[package]]
1861name = "same-file"
1862version = "1.0.6"
1863source = "registry+https://github.com/rust-lang/crates.io-index"
1864checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1865dependencies = [
1866 "winapi-util",
1867]
1868
1869[[package]]
1870name = "scopeguard"
1871version = "1.2.0"
1872source = "registry+https://github.com/rust-lang/crates.io-index"
1873checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1874
1875[[package]]
1876name = "semver"
1877version = "1.0.25"
1878source = "registry+https://github.com/rust-lang/crates.io-index"
1879checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
1880
1881[[package]]
1882name = "serde"
1883version = "1.0.217"
1884source = "registry+https://github.com/rust-lang/crates.io-index"
1885checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
1886dependencies = [
1887 "serde_derive",
1888]
1889
1890[[package]]
1891name = "serde_derive"
1892version = "1.0.217"
1893source = "registry+https://github.com/rust-lang/crates.io-index"
1894checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
1895dependencies = [
1896 "proc-macro2",
1897 "quote",
1898 "syn",
1899]
1900
1901[[package]]
1902name = "serde_json"
1903version = "1.0.137"
1904source = "registry+https://github.com/rust-lang/crates.io-index"
1905checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
1906dependencies = [
1907 "itoa",
1908 "memchr",
1909 "ryu",
1910 "serde",
1911]
1912
1913[[package]]
1914name = "serde_urlencoded"
1915version = "0.7.1"
1916source = "registry+https://github.com/rust-lang/crates.io-index"
1917checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1918dependencies = [
1919 "form_urlencoded",
1920 "itoa",
1921 "ryu",
1922 "serde",
1923]
1924
1925[[package]]
1926name = "sha1"
1927version = "0.10.6"
1928source = "registry+https://github.com/rust-lang/crates.io-index"
1929checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1930dependencies = [
1931 "cfg-if",
1932 "cpufeatures",
1933 "digest",
1934]
1935
1936[[package]]
1937name = "sha2"
1938version = "0.10.8"
1939source = "registry+https://github.com/rust-lang/crates.io-index"
1940checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1941dependencies = [
1942 "cfg-if",
1943 "cpufeatures",
1944 "digest",
1945]
1946
1947[[package]]
1948name = "sharded-slab"
1949version = "0.1.7"
1950source = "registry+https://github.com/rust-lang/crates.io-index"
1951checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1952dependencies = [
1953 "lazy_static",
1954]
1955
1956[[package]]
1957name = "shlex"
1958version = "1.3.0"
1959source = "registry+https://github.com/rust-lang/crates.io-index"
1960checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1961
1962[[package]]
1963name = "signal-hook-registry"
1964version = "1.4.2"
1965source = "registry+https://github.com/rust-lang/crates.io-index"
1966checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1967dependencies = [
1968 "libc",
1969]
1970
1971[[package]]
1972name = "signature"
1973version = "2.2.0"
1974source = "registry+https://github.com/rust-lang/crates.io-index"
1975checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1976dependencies = [
1977 "digest",
1978 "rand_core",
1979]
1980
1981[[package]]
1982name = "simple_asn1"
1983version = "0.6.3"
1984source = "registry+https://github.com/rust-lang/crates.io-index"
1985checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
1986dependencies = [
1987 "num-bigint",
1988 "num-traits",
1989 "thiserror 2.0.11",
1990 "time",
1991]
1992
1993[[package]]
1994name = "simplelink"
1995version = "0.1.0"
1996dependencies = [
1997 "actix-cors",
1998 "actix-files",
1999 "actix-web",
2000 "anyhow",
2001 "argon2",
2002 "base62",
2003 "chrono",
2004 "clap",
2005 "dotenv",
2006 "futures",
2007 "jsonwebtoken",
2008 "lazy_static",
2009 "mime_guess",
2010 "rand",
2011 "regex",
2012 "rust-embed",
2013 "serde",
2014 "serde_json",
2015 "sqlx",
2016 "thiserror 1.0.69",
2017 "tokio",
2018 "tracing",
2019 "tracing-subscriber",
2020 "uuid",
2021]
2022
2023[[package]]
2024name = "slab"
2025version = "0.4.9"
2026source = "registry+https://github.com/rust-lang/crates.io-index"
2027checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2028dependencies = [
2029 "autocfg",
2030]
2031
2032[[package]]
2033name = "smallvec"
2034version = "1.13.2"
2035source = "registry+https://github.com/rust-lang/crates.io-index"
2036checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2037dependencies = [
2038 "serde",
2039]
2040
2041[[package]]
2042name = "socket2"
2043version = "0.5.8"
2044source = "registry+https://github.com/rust-lang/crates.io-index"
2045checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2046dependencies = [
2047 "libc",
2048 "windows-sys 0.52.0",
2049]
2050
2051[[package]]
2052name = "spin"
2053version = "0.9.8"
2054source = "registry+https://github.com/rust-lang/crates.io-index"
2055checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2056dependencies = [
2057 "lock_api",
2058]
2059
2060[[package]]
2061name = "spki"
2062version = "0.7.3"
2063source = "registry+https://github.com/rust-lang/crates.io-index"
2064checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2065dependencies = [
2066 "base64ct",
2067 "der",
2068]
2069
2070[[package]]
2071name = "sqlx"
2072version = "0.8.3"
2073source = "registry+https://github.com/rust-lang/crates.io-index"
2074checksum = "4410e73b3c0d8442c5f99b425d7a435b5ee0ae4167b3196771dd3f7a01be745f"
2075dependencies = [
2076 "sqlx-core",
2077 "sqlx-macros",
2078 "sqlx-mysql",
2079 "sqlx-postgres",
2080 "sqlx-sqlite",
2081]
2082
2083[[package]]
2084name = "sqlx-core"
2085version = "0.8.3"
2086source = "registry+https://github.com/rust-lang/crates.io-index"
2087checksum = "6a007b6936676aa9ab40207cde35daab0a04b823be8ae004368c0793b96a61e0"
2088dependencies = [
2089 "bytes",
2090 "chrono",
2091 "crc",
2092 "crossbeam-queue",
2093 "either",
2094 "event-listener",
2095 "futures-core",
2096 "futures-intrusive",
2097 "futures-io",
2098 "futures-util",
2099 "hashbrown",
2100 "hashlink",
2101 "indexmap",
2102 "log",
2103 "memchr",
2104 "once_cell",
2105 "percent-encoding",
2106 "serde",
2107 "serde_json",
2108 "sha2",
2109 "smallvec",
2110 "thiserror 2.0.11",
2111 "tokio",
2112 "tokio-stream",
2113 "tracing",
2114 "url",
2115]
2116
2117[[package]]
2118name = "sqlx-macros"
2119version = "0.8.3"
2120source = "registry+https://github.com/rust-lang/crates.io-index"
2121checksum = "3112e2ad78643fef903618d78cf0aec1cb3134b019730edb039b69eaf531f310"
2122dependencies = [
2123 "proc-macro2",
2124 "quote",
2125 "sqlx-core",
2126 "sqlx-macros-core",
2127 "syn",
2128]
2129
2130[[package]]
2131name = "sqlx-macros-core"
2132version = "0.8.3"
2133source = "registry+https://github.com/rust-lang/crates.io-index"
2134checksum = "4e9f90acc5ab146a99bf5061a7eb4976b573f560bc898ef3bf8435448dd5e7ad"
2135dependencies = [
2136 "dotenvy",
2137 "either",
2138 "heck",
2139 "hex",
2140 "once_cell",
2141 "proc-macro2",
2142 "quote",
2143 "serde",
2144 "serde_json",
2145 "sha2",
2146 "sqlx-core",
2147 "sqlx-mysql",
2148 "sqlx-postgres",
2149 "sqlx-sqlite",
2150 "syn",
2151 "tempfile",
2152 "tokio",
2153 "url",
2154]
2155
2156[[package]]
2157name = "sqlx-mysql"
2158version = "0.8.3"
2159source = "registry+https://github.com/rust-lang/crates.io-index"
2160checksum = "4560278f0e00ce64938540546f59f590d60beee33fffbd3b9cd47851e5fff233"
2161dependencies = [
2162 "atoi",
2163 "base64 0.22.1",
2164 "bitflags",
2165 "byteorder",
2166 "bytes",
2167 "chrono",
2168 "crc",
2169 "digest",
2170 "dotenvy",
2171 "either",
2172 "futures-channel",
2173 "futures-core",
2174 "futures-io",
2175 "futures-util",
2176 "generic-array",
2177 "hex",
2178 "hkdf",
2179 "hmac",
2180 "itoa",
2181 "log",
2182 "md-5",
2183 "memchr",
2184 "once_cell",
2185 "percent-encoding",
2186 "rand",
2187 "rsa",
2188 "serde",
2189 "sha1",
2190 "sha2",
2191 "smallvec",
2192 "sqlx-core",
2193 "stringprep",
2194 "thiserror 2.0.11",
2195 "tracing",
2196 "whoami",
2197]
2198
2199[[package]]
2200name = "sqlx-postgres"
2201version = "0.8.3"
2202source = "registry+https://github.com/rust-lang/crates.io-index"
2203checksum = "c5b98a57f363ed6764d5b3a12bfedf62f07aa16e1856a7ddc2a0bb190a959613"
2204dependencies = [
2205 "atoi",
2206 "base64 0.22.1",
2207 "bitflags",
2208 "byteorder",
2209 "chrono",
2210 "crc",
2211 "dotenvy",
2212 "etcetera",
2213 "futures-channel",
2214 "futures-core",
2215 "futures-util",
2216 "hex",
2217 "hkdf",
2218 "hmac",
2219 "home",
2220 "itoa",
2221 "log",
2222 "md-5",
2223 "memchr",
2224 "once_cell",
2225 "rand",
2226 "serde",
2227 "serde_json",
2228 "sha2",
2229 "smallvec",
2230 "sqlx-core",
2231 "stringprep",
2232 "thiserror 2.0.11",
2233 "tracing",
2234 "whoami",
2235]
2236
2237[[package]]
2238name = "sqlx-sqlite"
2239version = "0.8.3"
2240source = "registry+https://github.com/rust-lang/crates.io-index"
2241checksum = "f85ca71d3a5b24e64e1d08dd8fe36c6c95c339a896cc33068148906784620540"
2242dependencies = [
2243 "atoi",
2244 "chrono",
2245 "flume",
2246 "futures-channel",
2247 "futures-core",
2248 "futures-executor",
2249 "futures-intrusive",
2250 "futures-util",
2251 "libsqlite3-sys",
2252 "log",
2253 "percent-encoding",
2254 "serde",
2255 "serde_urlencoded",
2256 "sqlx-core",
2257 "tracing",
2258 "url",
2259]
2260
2261[[package]]
2262name = "stable_deref_trait"
2263version = "1.2.0"
2264source = "registry+https://github.com/rust-lang/crates.io-index"
2265checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2266
2267[[package]]
2268name = "stringprep"
2269version = "0.1.5"
2270source = "registry+https://github.com/rust-lang/crates.io-index"
2271checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2272dependencies = [
2273 "unicode-bidi",
2274 "unicode-normalization",
2275 "unicode-properties",
2276]
2277
2278[[package]]
2279name = "strsim"
2280version = "0.11.1"
2281source = "registry+https://github.com/rust-lang/crates.io-index"
2282checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2283
2284[[package]]
2285name = "subtle"
2286version = "2.6.1"
2287source = "registry+https://github.com/rust-lang/crates.io-index"
2288checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2289
2290[[package]]
2291name = "syn"
2292version = "2.0.96"
2293source = "registry+https://github.com/rust-lang/crates.io-index"
2294checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
2295dependencies = [
2296 "proc-macro2",
2297 "quote",
2298 "unicode-ident",
2299]
2300
2301[[package]]
2302name = "synstructure"
2303version = "0.13.1"
2304source = "registry+https://github.com/rust-lang/crates.io-index"
2305checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2306dependencies = [
2307 "proc-macro2",
2308 "quote",
2309 "syn",
2310]
2311
2312[[package]]
2313name = "tempfile"
2314version = "3.15.0"
2315source = "registry+https://github.com/rust-lang/crates.io-index"
2316checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
2317dependencies = [
2318 "cfg-if",
2319 "fastrand",
2320 "getrandom",
2321 "once_cell",
2322 "rustix",
2323 "windows-sys 0.59.0",
2324]
2325
2326[[package]]
2327name = "thiserror"
2328version = "1.0.69"
2329source = "registry+https://github.com/rust-lang/crates.io-index"
2330checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2331dependencies = [
2332 "thiserror-impl 1.0.69",
2333]
2334
2335[[package]]
2336name = "thiserror"
2337version = "2.0.11"
2338source = "registry+https://github.com/rust-lang/crates.io-index"
2339checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
2340dependencies = [
2341 "thiserror-impl 2.0.11",
2342]
2343
2344[[package]]
2345name = "thiserror-impl"
2346version = "1.0.69"
2347source = "registry+https://github.com/rust-lang/crates.io-index"
2348checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2349dependencies = [
2350 "proc-macro2",
2351 "quote",
2352 "syn",
2353]
2354
2355[[package]]
2356name = "thiserror-impl"
2357version = "2.0.11"
2358source = "registry+https://github.com/rust-lang/crates.io-index"
2359checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
2360dependencies = [
2361 "proc-macro2",
2362 "quote",
2363 "syn",
2364]
2365
2366[[package]]
2367name = "thread_local"
2368version = "1.1.8"
2369source = "registry+https://github.com/rust-lang/crates.io-index"
2370checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2371dependencies = [
2372 "cfg-if",
2373 "once_cell",
2374]
2375
2376[[package]]
2377name = "time"
2378version = "0.3.37"
2379source = "registry+https://github.com/rust-lang/crates.io-index"
2380checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
2381dependencies = [
2382 "deranged",
2383 "itoa",
2384 "num-conv",
2385 "powerfmt",
2386 "serde",
2387 "time-core",
2388 "time-macros",
2389]
2390
2391[[package]]
2392name = "time-core"
2393version = "0.1.2"
2394source = "registry+https://github.com/rust-lang/crates.io-index"
2395checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2396
2397[[package]]
2398name = "time-macros"
2399version = "0.2.19"
2400source = "registry+https://github.com/rust-lang/crates.io-index"
2401checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
2402dependencies = [
2403 "num-conv",
2404 "time-core",
2405]
2406
2407[[package]]
2408name = "tinystr"
2409version = "0.7.6"
2410source = "registry+https://github.com/rust-lang/crates.io-index"
2411checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2412dependencies = [
2413 "displaydoc",
2414 "zerovec",
2415]
2416
2417[[package]]
2418name = "tinyvec"
2419version = "1.8.1"
2420source = "registry+https://github.com/rust-lang/crates.io-index"
2421checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
2422dependencies = [
2423 "tinyvec_macros",
2424]
2425
2426[[package]]
2427name = "tinyvec_macros"
2428version = "0.1.1"
2429source = "registry+https://github.com/rust-lang/crates.io-index"
2430checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2431
2432[[package]]
2433name = "tokio"
2434version = "1.43.0"
2435source = "registry+https://github.com/rust-lang/crates.io-index"
2436checksum = "3d61fa4ffa3de412bfea335c6ecff681de2b609ba3c77ef3e00e521813a9ed9e"
2437dependencies = [
2438 "backtrace",
2439 "bytes",
2440 "libc",
2441 "mio",
2442 "parking_lot",
2443 "pin-project-lite",
2444 "signal-hook-registry",
2445 "socket2",
2446 "tokio-macros",
2447 "windows-sys 0.52.0",
2448]
2449
2450[[package]]
2451name = "tokio-macros"
2452version = "2.5.0"
2453source = "registry+https://github.com/rust-lang/crates.io-index"
2454checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2455dependencies = [
2456 "proc-macro2",
2457 "quote",
2458 "syn",
2459]
2460
2461[[package]]
2462name = "tokio-stream"
2463version = "0.1.17"
2464source = "registry+https://github.com/rust-lang/crates.io-index"
2465checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2466dependencies = [
2467 "futures-core",
2468 "pin-project-lite",
2469 "tokio",
2470]
2471
2472[[package]]
2473name = "tokio-util"
2474version = "0.7.13"
2475source = "registry+https://github.com/rust-lang/crates.io-index"
2476checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
2477dependencies = [
2478 "bytes",
2479 "futures-core",
2480 "futures-sink",
2481 "pin-project-lite",
2482 "tokio",
2483]
2484
2485[[package]]
2486name = "tracing"
2487version = "0.1.41"
2488source = "registry+https://github.com/rust-lang/crates.io-index"
2489checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2490dependencies = [
2491 "log",
2492 "pin-project-lite",
2493 "tracing-attributes",
2494 "tracing-core",
2495]
2496
2497[[package]]
2498name = "tracing-attributes"
2499version = "0.1.28"
2500source = "registry+https://github.com/rust-lang/crates.io-index"
2501checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2502dependencies = [
2503 "proc-macro2",
2504 "quote",
2505 "syn",
2506]
2507
2508[[package]]
2509name = "tracing-core"
2510version = "0.1.33"
2511source = "registry+https://github.com/rust-lang/crates.io-index"
2512checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2513dependencies = [
2514 "once_cell",
2515 "valuable",
2516]
2517
2518[[package]]
2519name = "tracing-log"
2520version = "0.2.0"
2521source = "registry+https://github.com/rust-lang/crates.io-index"
2522checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2523dependencies = [
2524 "log",
2525 "once_cell",
2526 "tracing-core",
2527]
2528
2529[[package]]
2530name = "tracing-subscriber"
2531version = "0.3.19"
2532source = "registry+https://github.com/rust-lang/crates.io-index"
2533checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2534dependencies = [
2535 "nu-ansi-term",
2536 "sharded-slab",
2537 "smallvec",
2538 "thread_local",
2539 "tracing-core",
2540 "tracing-log",
2541]
2542
2543[[package]]
2544name = "typenum"
2545version = "1.17.0"
2546source = "registry+https://github.com/rust-lang/crates.io-index"
2547checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2548
2549[[package]]
2550name = "unicase"
2551version = "2.8.1"
2552source = "registry+https://github.com/rust-lang/crates.io-index"
2553checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2554
2555[[package]]
2556name = "unicode-bidi"
2557version = "0.3.18"
2558source = "registry+https://github.com/rust-lang/crates.io-index"
2559checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2560
2561[[package]]
2562name = "unicode-ident"
2563version = "1.0.15"
2564source = "registry+https://github.com/rust-lang/crates.io-index"
2565checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
2566
2567[[package]]
2568name = "unicode-normalization"
2569version = "0.1.24"
2570source = "registry+https://github.com/rust-lang/crates.io-index"
2571checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2572dependencies = [
2573 "tinyvec",
2574]
2575
2576[[package]]
2577name = "unicode-properties"
2578version = "0.1.3"
2579source = "registry+https://github.com/rust-lang/crates.io-index"
2580checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
2581
2582[[package]]
2583name = "untrusted"
2584version = "0.9.0"
2585source = "registry+https://github.com/rust-lang/crates.io-index"
2586checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2587
2588[[package]]
2589name = "url"
2590version = "2.5.4"
2591source = "registry+https://github.com/rust-lang/crates.io-index"
2592checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2593dependencies = [
2594 "form_urlencoded",
2595 "idna",
2596 "percent-encoding",
2597]
2598
2599[[package]]
2600name = "utf16_iter"
2601version = "1.0.5"
2602source = "registry+https://github.com/rust-lang/crates.io-index"
2603checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
2604
2605[[package]]
2606name = "utf8_iter"
2607version = "1.0.4"
2608source = "registry+https://github.com/rust-lang/crates.io-index"
2609checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2610
2611[[package]]
2612name = "utf8parse"
2613version = "0.2.2"
2614source = "registry+https://github.com/rust-lang/crates.io-index"
2615checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2616
2617[[package]]
2618name = "uuid"
2619version = "1.12.1"
2620source = "registry+https://github.com/rust-lang/crates.io-index"
2621checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
2622dependencies = [
2623 "getrandom",
2624]
2625
2626[[package]]
2627name = "v_htmlescape"
2628version = "0.15.8"
2629source = "registry+https://github.com/rust-lang/crates.io-index"
2630checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c"
2631
2632[[package]]
2633name = "valuable"
2634version = "0.1.1"
2635source = "registry+https://github.com/rust-lang/crates.io-index"
2636checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2637
2638[[package]]
2639name = "vcpkg"
2640version = "0.2.15"
2641source = "registry+https://github.com/rust-lang/crates.io-index"
2642checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2643
2644[[package]]
2645name = "version_check"
2646version = "0.9.5"
2647source = "registry+https://github.com/rust-lang/crates.io-index"
2648checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2649
2650[[package]]
2651name = "walkdir"
2652version = "2.5.0"
2653source = "registry+https://github.com/rust-lang/crates.io-index"
2654checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2655dependencies = [
2656 "same-file",
2657 "winapi-util",
2658]
2659
2660[[package]]
2661name = "wasi"
2662version = "0.11.0+wasi-snapshot-preview1"
2663source = "registry+https://github.com/rust-lang/crates.io-index"
2664checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2665
2666[[package]]
2667name = "wasite"
2668version = "0.1.0"
2669source = "registry+https://github.com/rust-lang/crates.io-index"
2670checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
2671
2672[[package]]
2673name = "wasm-bindgen"
2674version = "0.2.100"
2675source = "registry+https://github.com/rust-lang/crates.io-index"
2676checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2677dependencies = [
2678 "cfg-if",
2679 "once_cell",
2680 "rustversion",
2681 "wasm-bindgen-macro",
2682]
2683
2684[[package]]
2685name = "wasm-bindgen-backend"
2686version = "0.2.100"
2687source = "registry+https://github.com/rust-lang/crates.io-index"
2688checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2689dependencies = [
2690 "bumpalo",
2691 "log",
2692 "proc-macro2",
2693 "quote",
2694 "syn",
2695 "wasm-bindgen-shared",
2696]
2697
2698[[package]]
2699name = "wasm-bindgen-macro"
2700version = "0.2.100"
2701source = "registry+https://github.com/rust-lang/crates.io-index"
2702checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2703dependencies = [
2704 "quote",
2705 "wasm-bindgen-macro-support",
2706]
2707
2708[[package]]
2709name = "wasm-bindgen-macro-support"
2710version = "0.2.100"
2711source = "registry+https://github.com/rust-lang/crates.io-index"
2712checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2713dependencies = [
2714 "proc-macro2",
2715 "quote",
2716 "syn",
2717 "wasm-bindgen-backend",
2718 "wasm-bindgen-shared",
2719]
2720
2721[[package]]
2722name = "wasm-bindgen-shared"
2723version = "0.2.100"
2724source = "registry+https://github.com/rust-lang/crates.io-index"
2725checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2726dependencies = [
2727 "unicode-ident",
2728]
2729
2730[[package]]
2731name = "whoami"
2732version = "1.5.2"
2733source = "registry+https://github.com/rust-lang/crates.io-index"
2734checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d"
2735dependencies = [
2736 "redox_syscall",
2737 "wasite",
2738]
2739
2740[[package]]
2741name = "winapi"
2742version = "0.3.9"
2743source = "registry+https://github.com/rust-lang/crates.io-index"
2744checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2745dependencies = [
2746 "winapi-i686-pc-windows-gnu",
2747 "winapi-x86_64-pc-windows-gnu",
2748]
2749
2750[[package]]
2751name = "winapi-i686-pc-windows-gnu"
2752version = "0.4.0"
2753source = "registry+https://github.com/rust-lang/crates.io-index"
2754checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2755
2756[[package]]
2757name = "winapi-util"
2758version = "0.1.9"
2759source = "registry+https://github.com/rust-lang/crates.io-index"
2760checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2761dependencies = [
2762 "windows-sys 0.59.0",
2763]
2764
2765[[package]]
2766name = "winapi-x86_64-pc-windows-gnu"
2767version = "0.4.0"
2768source = "registry+https://github.com/rust-lang/crates.io-index"
2769checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2770
2771[[package]]
2772name = "windows-core"
2773version = "0.52.0"
2774source = "registry+https://github.com/rust-lang/crates.io-index"
2775checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2776dependencies = [
2777 "windows-targets 0.52.6",
2778]
2779
2780[[package]]
2781name = "windows-sys"
2782version = "0.48.0"
2783source = "registry+https://github.com/rust-lang/crates.io-index"
2784checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2785dependencies = [
2786 "windows-targets 0.48.5",
2787]
2788
2789[[package]]
2790name = "windows-sys"
2791version = "0.52.0"
2792source = "registry+https://github.com/rust-lang/crates.io-index"
2793checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2794dependencies = [
2795 "windows-targets 0.52.6",
2796]
2797
2798[[package]]
2799name = "windows-sys"
2800version = "0.59.0"
2801source = "registry+https://github.com/rust-lang/crates.io-index"
2802checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2803dependencies = [
2804 "windows-targets 0.52.6",
2805]
2806
2807[[package]]
2808name = "windows-targets"
2809version = "0.48.5"
2810source = "registry+https://github.com/rust-lang/crates.io-index"
2811checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2812dependencies = [
2813 "windows_aarch64_gnullvm 0.48.5",
2814 "windows_aarch64_msvc 0.48.5",
2815 "windows_i686_gnu 0.48.5",
2816 "windows_i686_msvc 0.48.5",
2817 "windows_x86_64_gnu 0.48.5",
2818 "windows_x86_64_gnullvm 0.48.5",
2819 "windows_x86_64_msvc 0.48.5",
2820]
2821
2822[[package]]
2823name = "windows-targets"
2824version = "0.52.6"
2825source = "registry+https://github.com/rust-lang/crates.io-index"
2826checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2827dependencies = [
2828 "windows_aarch64_gnullvm 0.52.6",
2829 "windows_aarch64_msvc 0.52.6",
2830 "windows_i686_gnu 0.52.6",
2831 "windows_i686_gnullvm",
2832 "windows_i686_msvc 0.52.6",
2833 "windows_x86_64_gnu 0.52.6",
2834 "windows_x86_64_gnullvm 0.52.6",
2835 "windows_x86_64_msvc 0.52.6",
2836]
2837
2838[[package]]
2839name = "windows_aarch64_gnullvm"
2840version = "0.48.5"
2841source = "registry+https://github.com/rust-lang/crates.io-index"
2842checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2843
2844[[package]]
2845name = "windows_aarch64_gnullvm"
2846version = "0.52.6"
2847source = "registry+https://github.com/rust-lang/crates.io-index"
2848checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2849
2850[[package]]
2851name = "windows_aarch64_msvc"
2852version = "0.48.5"
2853source = "registry+https://github.com/rust-lang/crates.io-index"
2854checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2855
2856[[package]]
2857name = "windows_aarch64_msvc"
2858version = "0.52.6"
2859source = "registry+https://github.com/rust-lang/crates.io-index"
2860checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2861
2862[[package]]
2863name = "windows_i686_gnu"
2864version = "0.48.5"
2865source = "registry+https://github.com/rust-lang/crates.io-index"
2866checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2867
2868[[package]]
2869name = "windows_i686_gnu"
2870version = "0.52.6"
2871source = "registry+https://github.com/rust-lang/crates.io-index"
2872checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2873
2874[[package]]
2875name = "windows_i686_gnullvm"
2876version = "0.52.6"
2877source = "registry+https://github.com/rust-lang/crates.io-index"
2878checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2879
2880[[package]]
2881name = "windows_i686_msvc"
2882version = "0.48.5"
2883source = "registry+https://github.com/rust-lang/crates.io-index"
2884checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2885
2886[[package]]
2887name = "windows_i686_msvc"
2888version = "0.52.6"
2889source = "registry+https://github.com/rust-lang/crates.io-index"
2890checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2891
2892[[package]]
2893name = "windows_x86_64_gnu"
2894version = "0.48.5"
2895source = "registry+https://github.com/rust-lang/crates.io-index"
2896checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2897
2898[[package]]
2899name = "windows_x86_64_gnu"
2900version = "0.52.6"
2901source = "registry+https://github.com/rust-lang/crates.io-index"
2902checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2903
2904[[package]]
2905name = "windows_x86_64_gnullvm"
2906version = "0.48.5"
2907source = "registry+https://github.com/rust-lang/crates.io-index"
2908checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2909
2910[[package]]
2911name = "windows_x86_64_gnullvm"
2912version = "0.52.6"
2913source = "registry+https://github.com/rust-lang/crates.io-index"
2914checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2915
2916[[package]]
2917name = "windows_x86_64_msvc"
2918version = "0.48.5"
2919source = "registry+https://github.com/rust-lang/crates.io-index"
2920checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2921
2922[[package]]
2923name = "windows_x86_64_msvc"
2924version = "0.52.6"
2925source = "registry+https://github.com/rust-lang/crates.io-index"
2926checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2927
2928[[package]]
2929name = "write16"
2930version = "1.0.0"
2931source = "registry+https://github.com/rust-lang/crates.io-index"
2932checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
2933
2934[[package]]
2935name = "writeable"
2936version = "0.5.5"
2937source = "registry+https://github.com/rust-lang/crates.io-index"
2938checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2939
2940[[package]]
2941name = "yoke"
2942version = "0.7.5"
2943source = "registry+https://github.com/rust-lang/crates.io-index"
2944checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
2945dependencies = [
2946 "serde",
2947 "stable_deref_trait",
2948 "yoke-derive",
2949 "zerofrom",
2950]
2951
2952[[package]]
2953name = "yoke-derive"
2954version = "0.7.5"
2955source = "registry+https://github.com/rust-lang/crates.io-index"
2956checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
2957dependencies = [
2958 "proc-macro2",
2959 "quote",
2960 "syn",
2961 "synstructure",
2962]
2963
2964[[package]]
2965name = "zerocopy"
2966version = "0.7.35"
2967source = "registry+https://github.com/rust-lang/crates.io-index"
2968checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2969dependencies = [
2970 "byteorder",
2971 "zerocopy-derive",
2972]
2973
2974[[package]]
2975name = "zerocopy-derive"
2976version = "0.7.35"
2977source = "registry+https://github.com/rust-lang/crates.io-index"
2978checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2979dependencies = [
2980 "proc-macro2",
2981 "quote",
2982 "syn",
2983]
2984
2985[[package]]
2986name = "zerofrom"
2987version = "0.1.5"
2988source = "registry+https://github.com/rust-lang/crates.io-index"
2989checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
2990dependencies = [
2991 "zerofrom-derive",
2992]
2993
2994[[package]]
2995name = "zerofrom-derive"
2996version = "0.1.5"
2997source = "registry+https://github.com/rust-lang/crates.io-index"
2998checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
2999dependencies = [
3000 "proc-macro2",
3001 "quote",
3002 "syn",
3003 "synstructure",
3004]
3005
3006[[package]]
3007name = "zeroize"
3008version = "1.8.1"
3009source = "registry+https://github.com/rust-lang/crates.io-index"
3010checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
3011
3012[[package]]
3013name = "zerovec"
3014version = "0.10.4"
3015source = "registry+https://github.com/rust-lang/crates.io-index"
3016checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
3017dependencies = [
3018 "yoke",
3019 "zerofrom",
3020 "zerovec-derive",
3021]
3022
3023[[package]]
3024name = "zerovec-derive"
3025version = "0.10.3"
3026source = "registry+https://github.com/rust-lang/crates.io-index"
3027checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
3028dependencies = [
3029 "proc-macro2",
3030 "quote",
3031 "syn",
3032]
3033
3034[[package]]
3035name = "zstd"
3036version = "0.13.2"
3037source = "registry+https://github.com/rust-lang/crates.io-index"
3038checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
3039dependencies = [
3040 "zstd-safe",
3041]
3042
3043[[package]]
3044name = "zstd-safe"
3045version = "7.2.1"
3046source = "registry+https://github.com/rust-lang/crates.io-index"
3047checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
3048dependencies = [
3049 "zstd-sys",
3050]
3051
3052[[package]]
3053name = "zstd-sys"
3054version = "2.0.13+zstd.1.5.6"
3055source = "registry+https://github.com/rust-lang/crates.io-index"
3056checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
3057dependencies = [
3058 "cc",
3059 "pkg-config",
3060]