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.50.1"
1444source = "registry+https://github.com/rust-lang/crates.io-index"
1445checksum = "d4a28e057d01f97e61255210fcff094d74ed0466038633e95017f5beb68e4399"
1446dependencies = [
1447 "windows-sys 0.52.0",
1448]
1449
1450[[package]]
1451name = "num-bigint"
1452version = "0.4.6"
1453source = "registry+https://github.com/rust-lang/crates.io-index"
1454checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
1455dependencies = [
1456 "num-integer",
1457 "num-traits",
1458]
1459
1460[[package]]
1461name = "num-bigint-dig"
1462version = "0.8.4"
1463source = "registry+https://github.com/rust-lang/crates.io-index"
1464checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
1465dependencies = [
1466 "byteorder",
1467 "lazy_static",
1468 "libm",
1469 "num-integer",
1470 "num-iter",
1471 "num-traits",
1472 "rand",
1473 "smallvec",
1474 "zeroize",
1475]
1476
1477[[package]]
1478name = "num-conv"
1479version = "0.1.0"
1480source = "registry+https://github.com/rust-lang/crates.io-index"
1481checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
1482
1483[[package]]
1484name = "num-integer"
1485version = "0.1.46"
1486source = "registry+https://github.com/rust-lang/crates.io-index"
1487checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
1488dependencies = [
1489 "num-traits",
1490]
1491
1492[[package]]
1493name = "num-iter"
1494version = "0.1.45"
1495source = "registry+https://github.com/rust-lang/crates.io-index"
1496checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
1497dependencies = [
1498 "autocfg",
1499 "num-integer",
1500 "num-traits",
1501]
1502
1503[[package]]
1504name = "num-traits"
1505version = "0.2.19"
1506source = "registry+https://github.com/rust-lang/crates.io-index"
1507checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
1508dependencies = [
1509 "autocfg",
1510 "libm",
1511]
1512
1513[[package]]
1514name = "object"
1515version = "0.36.7"
1516source = "registry+https://github.com/rust-lang/crates.io-index"
1517checksum = "62948e14d923ea95ea2c7c86c71013138b66525b86bdc08d2dcc262bdb497b87"
1518dependencies = [
1519 "memchr",
1520]
1521
1522[[package]]
1523name = "once_cell"
1524version = "1.20.2"
1525source = "registry+https://github.com/rust-lang/crates.io-index"
1526checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
1527
1528[[package]]
1529name = "parking"
1530version = "2.2.1"
1531source = "registry+https://github.com/rust-lang/crates.io-index"
1532checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
1533
1534[[package]]
1535name = "parking_lot"
1536version = "0.12.3"
1537source = "registry+https://github.com/rust-lang/crates.io-index"
1538checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
1539dependencies = [
1540 "lock_api",
1541 "parking_lot_core",
1542]
1543
1544[[package]]
1545name = "parking_lot_core"
1546version = "0.9.10"
1547source = "registry+https://github.com/rust-lang/crates.io-index"
1548checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
1549dependencies = [
1550 "cfg-if",
1551 "libc",
1552 "redox_syscall",
1553 "smallvec",
1554 "windows-targets 0.52.6",
1555]
1556
1557[[package]]
1558name = "password-hash"
1559version = "0.5.0"
1560source = "registry+https://github.com/rust-lang/crates.io-index"
1561checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
1562dependencies = [
1563 "base64ct",
1564 "rand_core",
1565 "subtle",
1566]
1567
1568[[package]]
1569name = "paste"
1570version = "1.0.15"
1571source = "registry+https://github.com/rust-lang/crates.io-index"
1572checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
1573
1574[[package]]
1575name = "pem"
1576version = "3.0.4"
1577source = "registry+https://github.com/rust-lang/crates.io-index"
1578checksum = "8e459365e590736a54c3fa561947c84837534b8e9af6fc5bf781307e82658fae"
1579dependencies = [
1580 "base64 0.22.1",
1581 "serde",
1582]
1583
1584[[package]]
1585name = "pem-rfc7468"
1586version = "0.7.0"
1587source = "registry+https://github.com/rust-lang/crates.io-index"
1588checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1589dependencies = [
1590 "base64ct",
1591]
1592
1593[[package]]
1594name = "percent-encoding"
1595version = "2.3.1"
1596source = "registry+https://github.com/rust-lang/crates.io-index"
1597checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1598
1599[[package]]
1600name = "pin-project-lite"
1601version = "0.2.16"
1602source = "registry+https://github.com/rust-lang/crates.io-index"
1603checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b"
1604
1605[[package]]
1606name = "pin-utils"
1607version = "0.1.0"
1608source = "registry+https://github.com/rust-lang/crates.io-index"
1609checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1610
1611[[package]]
1612name = "pkcs1"
1613version = "0.7.5"
1614source = "registry+https://github.com/rust-lang/crates.io-index"
1615checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1616dependencies = [
1617 "der",
1618 "pkcs8",
1619 "spki",
1620]
1621
1622[[package]]
1623name = "pkcs8"
1624version = "0.10.2"
1625source = "registry+https://github.com/rust-lang/crates.io-index"
1626checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1627dependencies = [
1628 "der",
1629 "spki",
1630]
1631
1632[[package]]
1633name = "pkg-config"
1634version = "0.3.31"
1635source = "registry+https://github.com/rust-lang/crates.io-index"
1636checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
1637
1638[[package]]
1639name = "powerfmt"
1640version = "0.2.0"
1641source = "registry+https://github.com/rust-lang/crates.io-index"
1642checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
1643
1644[[package]]
1645name = "ppv-lite86"
1646version = "0.2.20"
1647source = "registry+https://github.com/rust-lang/crates.io-index"
1648checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
1649dependencies = [
1650 "zerocopy",
1651]
1652
1653[[package]]
1654name = "proc-macro2"
1655version = "1.0.93"
1656source = "registry+https://github.com/rust-lang/crates.io-index"
1657checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
1658dependencies = [
1659 "unicode-ident",
1660]
1661
1662[[package]]
1663name = "quote"
1664version = "1.0.38"
1665source = "registry+https://github.com/rust-lang/crates.io-index"
1666checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
1667dependencies = [
1668 "proc-macro2",
1669]
1670
1671[[package]]
1672name = "rand"
1673version = "0.8.5"
1674source = "registry+https://github.com/rust-lang/crates.io-index"
1675checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1676dependencies = [
1677 "libc",
1678 "rand_chacha",
1679 "rand_core",
1680]
1681
1682[[package]]
1683name = "rand_chacha"
1684version = "0.3.1"
1685source = "registry+https://github.com/rust-lang/crates.io-index"
1686checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1687dependencies = [
1688 "ppv-lite86",
1689 "rand_core",
1690]
1691
1692[[package]]
1693name = "rand_core"
1694version = "0.6.4"
1695source = "registry+https://github.com/rust-lang/crates.io-index"
1696checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1697dependencies = [
1698 "getrandom",
1699]
1700
1701[[package]]
1702name = "redox_syscall"
1703version = "0.5.8"
1704source = "registry+https://github.com/rust-lang/crates.io-index"
1705checksum = "03a862b389f93e68874fbf580b9de08dd02facb9a788ebadaf4a3fd33cf58834"
1706dependencies = [
1707 "bitflags",
1708]
1709
1710[[package]]
1711name = "regex"
1712version = "1.11.1"
1713source = "registry+https://github.com/rust-lang/crates.io-index"
1714checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
1715dependencies = [
1716 "aho-corasick",
1717 "memchr",
1718 "regex-automata",
1719 "regex-syntax",
1720]
1721
1722[[package]]
1723name = "regex-automata"
1724version = "0.4.9"
1725source = "registry+https://github.com/rust-lang/crates.io-index"
1726checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
1727dependencies = [
1728 "aho-corasick",
1729 "memchr",
1730 "regex-syntax",
1731]
1732
1733[[package]]
1734name = "regex-lite"
1735version = "0.1.6"
1736source = "registry+https://github.com/rust-lang/crates.io-index"
1737checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
1738
1739[[package]]
1740name = "regex-syntax"
1741version = "0.8.5"
1742source = "registry+https://github.com/rust-lang/crates.io-index"
1743checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
1744
1745[[package]]
1746name = "ring"
1747version = "0.17.13"
1748source = "registry+https://github.com/rust-lang/crates.io-index"
1749checksum = "70ac5d832aa16abd7d1def883a8545280c20a60f523a370aa3a9617c2b8550ee"
1750dependencies = [
1751 "cc",
1752 "cfg-if",
1753 "getrandom",
1754 "libc",
1755 "untrusted",
1756 "windows-sys 0.52.0",
1757]
1758
1759[[package]]
1760name = "rsa"
1761version = "0.9.7"
1762source = "registry+https://github.com/rust-lang/crates.io-index"
1763checksum = "47c75d7c5c6b673e58bf54d8544a9f432e3a925b0e80f7cd3602ab5c50c55519"
1764dependencies = [
1765 "const-oid",
1766 "digest",
1767 "num-bigint-dig",
1768 "num-integer",
1769 "num-traits",
1770 "pkcs1",
1771 "pkcs8",
1772 "rand_core",
1773 "signature",
1774 "spki",
1775 "subtle",
1776 "zeroize",
1777]
1778
1779[[package]]
1780name = "rust-embed"
1781version = "6.8.1"
1782source = "registry+https://github.com/rust-lang/crates.io-index"
1783checksum = "a36224c3276f8c4ebc8c20f158eca7ca4359c8db89991c4925132aaaf6702661"
1784dependencies = [
1785 "rust-embed-impl",
1786 "rust-embed-utils",
1787 "walkdir",
1788]
1789
1790[[package]]
1791name = "rust-embed-impl"
1792version = "6.8.1"
1793source = "registry+https://github.com/rust-lang/crates.io-index"
1794checksum = "49b94b81e5b2c284684141a2fb9e2a31be90638caf040bf9afbc5a0416afe1ac"
1795dependencies = [
1796 "proc-macro2",
1797 "quote",
1798 "rust-embed-utils",
1799 "syn",
1800 "walkdir",
1801]
1802
1803[[package]]
1804name = "rust-embed-utils"
1805version = "7.8.1"
1806source = "registry+https://github.com/rust-lang/crates.io-index"
1807checksum = "9d38ff6bf570dc3bb7100fce9f7b60c33fa71d80e88da3f2580df4ff2bdded74"
1808dependencies = [
1809 "sha2",
1810 "walkdir",
1811]
1812
1813[[package]]
1814name = "rustc-demangle"
1815version = "0.1.24"
1816source = "registry+https://github.com/rust-lang/crates.io-index"
1817checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
1818
1819[[package]]
1820name = "rustc_version"
1821version = "0.4.1"
1822source = "registry+https://github.com/rust-lang/crates.io-index"
1823checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
1824dependencies = [
1825 "semver",
1826]
1827
1828[[package]]
1829name = "rustix"
1830version = "0.38.44"
1831source = "registry+https://github.com/rust-lang/crates.io-index"
1832checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
1833dependencies = [
1834 "bitflags",
1835 "errno",
1836 "libc",
1837 "linux-raw-sys",
1838 "windows-sys 0.59.0",
1839]
1840
1841[[package]]
1842name = "rustversion"
1843version = "1.0.19"
1844source = "registry+https://github.com/rust-lang/crates.io-index"
1845checksum = "f7c45b9784283f1b2e7fb61b42047c2fd678ef0960d4f6f1eba131594cc369d4"
1846
1847[[package]]
1848name = "ryu"
1849version = "1.0.18"
1850source = "registry+https://github.com/rust-lang/crates.io-index"
1851checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
1852
1853[[package]]
1854name = "same-file"
1855version = "1.0.6"
1856source = "registry+https://github.com/rust-lang/crates.io-index"
1857checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
1858dependencies = [
1859 "winapi-util",
1860]
1861
1862[[package]]
1863name = "scopeguard"
1864version = "1.2.0"
1865source = "registry+https://github.com/rust-lang/crates.io-index"
1866checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1867
1868[[package]]
1869name = "semver"
1870version = "1.0.25"
1871source = "registry+https://github.com/rust-lang/crates.io-index"
1872checksum = "f79dfe2d285b0488816f30e700a7438c5a73d816b5b7d3ac72fbc48b0d185e03"
1873
1874[[package]]
1875name = "serde"
1876version = "1.0.217"
1877source = "registry+https://github.com/rust-lang/crates.io-index"
1878checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
1879dependencies = [
1880 "serde_derive",
1881]
1882
1883[[package]]
1884name = "serde_derive"
1885version = "1.0.217"
1886source = "registry+https://github.com/rust-lang/crates.io-index"
1887checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
1888dependencies = [
1889 "proc-macro2",
1890 "quote",
1891 "syn",
1892]
1893
1894[[package]]
1895name = "serde_json"
1896version = "1.0.137"
1897source = "registry+https://github.com/rust-lang/crates.io-index"
1898checksum = "930cfb6e6abf99298aaad7d29abbef7a9999a9a8806a40088f55f0dcec03146b"
1899dependencies = [
1900 "itoa",
1901 "memchr",
1902 "ryu",
1903 "serde",
1904]
1905
1906[[package]]
1907name = "serde_urlencoded"
1908version = "0.7.1"
1909source = "registry+https://github.com/rust-lang/crates.io-index"
1910checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1911dependencies = [
1912 "form_urlencoded",
1913 "itoa",
1914 "ryu",
1915 "serde",
1916]
1917
1918[[package]]
1919name = "sha1"
1920version = "0.10.6"
1921source = "registry+https://github.com/rust-lang/crates.io-index"
1922checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
1923dependencies = [
1924 "cfg-if",
1925 "cpufeatures",
1926 "digest",
1927]
1928
1929[[package]]
1930name = "sha2"
1931version = "0.10.8"
1932source = "registry+https://github.com/rust-lang/crates.io-index"
1933checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
1934dependencies = [
1935 "cfg-if",
1936 "cpufeatures",
1937 "digest",
1938]
1939
1940[[package]]
1941name = "sharded-slab"
1942version = "0.1.7"
1943source = "registry+https://github.com/rust-lang/crates.io-index"
1944checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
1945dependencies = [
1946 "lazy_static",
1947]
1948
1949[[package]]
1950name = "shlex"
1951version = "1.3.0"
1952source = "registry+https://github.com/rust-lang/crates.io-index"
1953checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
1954
1955[[package]]
1956name = "signal-hook-registry"
1957version = "1.4.2"
1958source = "registry+https://github.com/rust-lang/crates.io-index"
1959checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
1960dependencies = [
1961 "libc",
1962]
1963
1964[[package]]
1965name = "signature"
1966version = "2.2.0"
1967source = "registry+https://github.com/rust-lang/crates.io-index"
1968checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
1969dependencies = [
1970 "digest",
1971 "rand_core",
1972]
1973
1974[[package]]
1975name = "simple_asn1"
1976version = "0.6.3"
1977source = "registry+https://github.com/rust-lang/crates.io-index"
1978checksum = "297f631f50729c8c99b84667867963997ec0b50f32b2a7dbcab828ef0541e8bb"
1979dependencies = [
1980 "num-bigint",
1981 "num-traits",
1982 "thiserror 2.0.11",
1983 "time",
1984]
1985
1986[[package]]
1987name = "simplelink"
1988version = "0.1.0"
1989dependencies = [
1990 "actix-cors",
1991 "actix-files",
1992 "actix-web",
1993 "anyhow",
1994 "argon2",
1995 "base62",
1996 "chrono",
1997 "clap",
1998 "dotenv",
1999 "futures",
2000 "jsonwebtoken",
2001 "lazy_static",
2002 "mime_guess",
2003 "rand",
2004 "regex",
2005 "rust-embed",
2006 "serde",
2007 "serde_json",
2008 "sqlx",
2009 "thiserror 1.0.69",
2010 "tokio",
2011 "tracing",
2012 "tracing-subscriber",
2013 "uuid",
2014]
2015
2016[[package]]
2017name = "slab"
2018version = "0.4.9"
2019source = "registry+https://github.com/rust-lang/crates.io-index"
2020checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2021dependencies = [
2022 "autocfg",
2023]
2024
2025[[package]]
2026name = "smallvec"
2027version = "1.13.2"
2028source = "registry+https://github.com/rust-lang/crates.io-index"
2029checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2030dependencies = [
2031 "serde",
2032]
2033
2034[[package]]
2035name = "socket2"
2036version = "0.5.8"
2037source = "registry+https://github.com/rust-lang/crates.io-index"
2038checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2039dependencies = [
2040 "libc",
2041 "windows-sys 0.52.0",
2042]
2043
2044[[package]]
2045name = "spin"
2046version = "0.9.8"
2047source = "registry+https://github.com/rust-lang/crates.io-index"
2048checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2049dependencies = [
2050 "lock_api",
2051]
2052
2053[[package]]
2054name = "spki"
2055version = "0.7.3"
2056source = "registry+https://github.com/rust-lang/crates.io-index"
2057checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
2058dependencies = [
2059 "base64ct",
2060 "der",
2061]
2062
2063[[package]]
2064name = "sqlx"
2065version = "0.8.3"
2066source = "registry+https://github.com/rust-lang/crates.io-index"
2067checksum = "4410e73b3c0d8442c5f99b425d7a435b5ee0ae4167b3196771dd3f7a01be745f"
2068dependencies = [
2069 "sqlx-core",
2070 "sqlx-macros",
2071 "sqlx-mysql",
2072 "sqlx-postgres",
2073 "sqlx-sqlite",
2074]
2075
2076[[package]]
2077name = "sqlx-core"
2078version = "0.8.3"
2079source = "registry+https://github.com/rust-lang/crates.io-index"
2080checksum = "6a007b6936676aa9ab40207cde35daab0a04b823be8ae004368c0793b96a61e0"
2081dependencies = [
2082 "bytes",
2083 "chrono",
2084 "crc",
2085 "crossbeam-queue",
2086 "either",
2087 "event-listener",
2088 "futures-core",
2089 "futures-intrusive",
2090 "futures-io",
2091 "futures-util",
2092 "hashbrown",
2093 "hashlink",
2094 "indexmap",
2095 "log",
2096 "memchr",
2097 "once_cell",
2098 "percent-encoding",
2099 "serde",
2100 "serde_json",
2101 "sha2",
2102 "smallvec",
2103 "thiserror 2.0.11",
2104 "tokio",
2105 "tokio-stream",
2106 "tracing",
2107 "url",
2108]
2109
2110[[package]]
2111name = "sqlx-macros"
2112version = "0.8.3"
2113source = "registry+https://github.com/rust-lang/crates.io-index"
2114checksum = "3112e2ad78643fef903618d78cf0aec1cb3134b019730edb039b69eaf531f310"
2115dependencies = [
2116 "proc-macro2",
2117 "quote",
2118 "sqlx-core",
2119 "sqlx-macros-core",
2120 "syn",
2121]
2122
2123[[package]]
2124name = "sqlx-macros-core"
2125version = "0.8.3"
2126source = "registry+https://github.com/rust-lang/crates.io-index"
2127checksum = "4e9f90acc5ab146a99bf5061a7eb4976b573f560bc898ef3bf8435448dd5e7ad"
2128dependencies = [
2129 "dotenvy",
2130 "either",
2131 "heck",
2132 "hex",
2133 "once_cell",
2134 "proc-macro2",
2135 "quote",
2136 "serde",
2137 "serde_json",
2138 "sha2",
2139 "sqlx-core",
2140 "sqlx-mysql",
2141 "sqlx-postgres",
2142 "sqlx-sqlite",
2143 "syn",
2144 "tempfile",
2145 "tokio",
2146 "url",
2147]
2148
2149[[package]]
2150name = "sqlx-mysql"
2151version = "0.8.3"
2152source = "registry+https://github.com/rust-lang/crates.io-index"
2153checksum = "4560278f0e00ce64938540546f59f590d60beee33fffbd3b9cd47851e5fff233"
2154dependencies = [
2155 "atoi",
2156 "base64 0.22.1",
2157 "bitflags",
2158 "byteorder",
2159 "bytes",
2160 "chrono",
2161 "crc",
2162 "digest",
2163 "dotenvy",
2164 "either",
2165 "futures-channel",
2166 "futures-core",
2167 "futures-io",
2168 "futures-util",
2169 "generic-array",
2170 "hex",
2171 "hkdf",
2172 "hmac",
2173 "itoa",
2174 "log",
2175 "md-5",
2176 "memchr",
2177 "once_cell",
2178 "percent-encoding",
2179 "rand",
2180 "rsa",
2181 "serde",
2182 "sha1",
2183 "sha2",
2184 "smallvec",
2185 "sqlx-core",
2186 "stringprep",
2187 "thiserror 2.0.11",
2188 "tracing",
2189 "whoami",
2190]
2191
2192[[package]]
2193name = "sqlx-postgres"
2194version = "0.8.3"
2195source = "registry+https://github.com/rust-lang/crates.io-index"
2196checksum = "c5b98a57f363ed6764d5b3a12bfedf62f07aa16e1856a7ddc2a0bb190a959613"
2197dependencies = [
2198 "atoi",
2199 "base64 0.22.1",
2200 "bitflags",
2201 "byteorder",
2202 "chrono",
2203 "crc",
2204 "dotenvy",
2205 "etcetera",
2206 "futures-channel",
2207 "futures-core",
2208 "futures-util",
2209 "hex",
2210 "hkdf",
2211 "hmac",
2212 "home",
2213 "itoa",
2214 "log",
2215 "md-5",
2216 "memchr",
2217 "once_cell",
2218 "rand",
2219 "serde",
2220 "serde_json",
2221 "sha2",
2222 "smallvec",
2223 "sqlx-core",
2224 "stringprep",
2225 "thiserror 2.0.11",
2226 "tracing",
2227 "whoami",
2228]
2229
2230[[package]]
2231name = "sqlx-sqlite"
2232version = "0.8.3"
2233source = "registry+https://github.com/rust-lang/crates.io-index"
2234checksum = "f85ca71d3a5b24e64e1d08dd8fe36c6c95c339a896cc33068148906784620540"
2235dependencies = [
2236 "atoi",
2237 "chrono",
2238 "flume",
2239 "futures-channel",
2240 "futures-core",
2241 "futures-executor",
2242 "futures-intrusive",
2243 "futures-util",
2244 "libsqlite3-sys",
2245 "log",
2246 "percent-encoding",
2247 "serde",
2248 "serde_urlencoded",
2249 "sqlx-core",
2250 "tracing",
2251 "url",
2252]
2253
2254[[package]]
2255name = "stable_deref_trait"
2256version = "1.2.0"
2257source = "registry+https://github.com/rust-lang/crates.io-index"
2258checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2259
2260[[package]]
2261name = "stringprep"
2262version = "0.1.5"
2263source = "registry+https://github.com/rust-lang/crates.io-index"
2264checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
2265dependencies = [
2266 "unicode-bidi",
2267 "unicode-normalization",
2268 "unicode-properties",
2269]
2270
2271[[package]]
2272name = "strsim"
2273version = "0.11.1"
2274source = "registry+https://github.com/rust-lang/crates.io-index"
2275checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2276
2277[[package]]
2278name = "subtle"
2279version = "2.6.1"
2280source = "registry+https://github.com/rust-lang/crates.io-index"
2281checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2282
2283[[package]]
2284name = "syn"
2285version = "2.0.96"
2286source = "registry+https://github.com/rust-lang/crates.io-index"
2287checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
2288dependencies = [
2289 "proc-macro2",
2290 "quote",
2291 "unicode-ident",
2292]
2293
2294[[package]]
2295name = "synstructure"
2296version = "0.13.1"
2297source = "registry+https://github.com/rust-lang/crates.io-index"
2298checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
2299dependencies = [
2300 "proc-macro2",
2301 "quote",
2302 "syn",
2303]
2304
2305[[package]]
2306name = "tempfile"
2307version = "3.15.0"
2308source = "registry+https://github.com/rust-lang/crates.io-index"
2309checksum = "9a8a559c81686f576e8cd0290cd2a24a2a9ad80c98b3478856500fcbd7acd704"
2310dependencies = [
2311 "cfg-if",
2312 "fastrand",
2313 "getrandom",
2314 "once_cell",
2315 "rustix",
2316 "windows-sys 0.59.0",
2317]
2318
2319[[package]]
2320name = "thiserror"
2321version = "1.0.69"
2322source = "registry+https://github.com/rust-lang/crates.io-index"
2323checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2324dependencies = [
2325 "thiserror-impl 1.0.69",
2326]
2327
2328[[package]]
2329name = "thiserror"
2330version = "2.0.11"
2331source = "registry+https://github.com/rust-lang/crates.io-index"
2332checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
2333dependencies = [
2334 "thiserror-impl 2.0.11",
2335]
2336
2337[[package]]
2338name = "thiserror-impl"
2339version = "1.0.69"
2340source = "registry+https://github.com/rust-lang/crates.io-index"
2341checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
2342dependencies = [
2343 "proc-macro2",
2344 "quote",
2345 "syn",
2346]
2347
2348[[package]]
2349name = "thiserror-impl"
2350version = "2.0.11"
2351source = "registry+https://github.com/rust-lang/crates.io-index"
2352checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
2353dependencies = [
2354 "proc-macro2",
2355 "quote",
2356 "syn",
2357]
2358
2359[[package]]
2360name = "thread_local"
2361version = "1.1.8"
2362source = "registry+https://github.com/rust-lang/crates.io-index"
2363checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
2364dependencies = [
2365 "cfg-if",
2366 "once_cell",
2367]
2368
2369[[package]]
2370name = "time"
2371version = "0.3.37"
2372source = "registry+https://github.com/rust-lang/crates.io-index"
2373checksum = "35e7868883861bd0e56d9ac6efcaaca0d6d5d82a2a7ec8209ff492c07cf37b21"
2374dependencies = [
2375 "deranged",
2376 "itoa",
2377 "num-conv",
2378 "powerfmt",
2379 "serde",
2380 "time-core",
2381 "time-macros",
2382]
2383
2384[[package]]
2385name = "time-core"
2386version = "0.1.2"
2387source = "registry+https://github.com/rust-lang/crates.io-index"
2388checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
2389
2390[[package]]
2391name = "time-macros"
2392version = "0.2.19"
2393source = "registry+https://github.com/rust-lang/crates.io-index"
2394checksum = "2834e6017e3e5e4b9834939793b282bc03b37a3336245fa820e35e233e2a85de"
2395dependencies = [
2396 "num-conv",
2397 "time-core",
2398]
2399
2400[[package]]
2401name = "tinystr"
2402version = "0.7.6"
2403source = "registry+https://github.com/rust-lang/crates.io-index"
2404checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
2405dependencies = [
2406 "displaydoc",
2407 "zerovec",
2408]
2409
2410[[package]]
2411name = "tinyvec"
2412version = "1.8.1"
2413source = "registry+https://github.com/rust-lang/crates.io-index"
2414checksum = "022db8904dfa342efe721985167e9fcd16c29b226db4397ed752a761cfce81e8"
2415dependencies = [
2416 "tinyvec_macros",
2417]
2418
2419[[package]]
2420name = "tinyvec_macros"
2421version = "0.1.1"
2422source = "registry+https://github.com/rust-lang/crates.io-index"
2423checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2424
2425[[package]]
2426name = "tokio"
2427version = "1.43.1"
2428source = "registry+https://github.com/rust-lang/crates.io-index"
2429checksum = "492a604e2fd7f814268a378409e6c92b5525d747d10db9a229723f55a417958c"
2430dependencies = [
2431 "backtrace",
2432 "bytes",
2433 "libc",
2434 "mio",
2435 "parking_lot",
2436 "pin-project-lite",
2437 "signal-hook-registry",
2438 "socket2",
2439 "tokio-macros",
2440 "windows-sys 0.52.0",
2441]
2442
2443[[package]]
2444name = "tokio-macros"
2445version = "2.5.0"
2446source = "registry+https://github.com/rust-lang/crates.io-index"
2447checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
2448dependencies = [
2449 "proc-macro2",
2450 "quote",
2451 "syn",
2452]
2453
2454[[package]]
2455name = "tokio-stream"
2456version = "0.1.17"
2457source = "registry+https://github.com/rust-lang/crates.io-index"
2458checksum = "eca58d7bba4a75707817a2c44174253f9236b2d5fbd055602e9d5c07c139a047"
2459dependencies = [
2460 "futures-core",
2461 "pin-project-lite",
2462 "tokio",
2463]
2464
2465[[package]]
2466name = "tokio-util"
2467version = "0.7.13"
2468source = "registry+https://github.com/rust-lang/crates.io-index"
2469checksum = "d7fcaa8d55a2bdd6b83ace262b016eca0d79ee02818c5c1bcdf0305114081078"
2470dependencies = [
2471 "bytes",
2472 "futures-core",
2473 "futures-sink",
2474 "pin-project-lite",
2475 "tokio",
2476]
2477
2478[[package]]
2479name = "tracing"
2480version = "0.1.41"
2481source = "registry+https://github.com/rust-lang/crates.io-index"
2482checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2483dependencies = [
2484 "log",
2485 "pin-project-lite",
2486 "tracing-attributes",
2487 "tracing-core",
2488]
2489
2490[[package]]
2491name = "tracing-attributes"
2492version = "0.1.28"
2493source = "registry+https://github.com/rust-lang/crates.io-index"
2494checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2495dependencies = [
2496 "proc-macro2",
2497 "quote",
2498 "syn",
2499]
2500
2501[[package]]
2502name = "tracing-core"
2503version = "0.1.33"
2504source = "registry+https://github.com/rust-lang/crates.io-index"
2505checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2506dependencies = [
2507 "once_cell",
2508 "valuable",
2509]
2510
2511[[package]]
2512name = "tracing-log"
2513version = "0.2.0"
2514source = "registry+https://github.com/rust-lang/crates.io-index"
2515checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
2516dependencies = [
2517 "log",
2518 "once_cell",
2519 "tracing-core",
2520]
2521
2522[[package]]
2523name = "tracing-subscriber"
2524version = "0.3.20"
2525source = "registry+https://github.com/rust-lang/crates.io-index"
2526checksum = "2054a14f5307d601f88daf0553e1cbf472acc4f2c51afab632431cdcd72124d5"
2527dependencies = [
2528 "nu-ansi-term",
2529 "sharded-slab",
2530 "smallvec",
2531 "thread_local",
2532 "tracing-core",
2533 "tracing-log",
2534]
2535
2536[[package]]
2537name = "typenum"
2538version = "1.17.0"
2539source = "registry+https://github.com/rust-lang/crates.io-index"
2540checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2541
2542[[package]]
2543name = "unicase"
2544version = "2.8.1"
2545source = "registry+https://github.com/rust-lang/crates.io-index"
2546checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
2547
2548[[package]]
2549name = "unicode-bidi"
2550version = "0.3.18"
2551source = "registry+https://github.com/rust-lang/crates.io-index"
2552checksum = "5c1cb5db39152898a79168971543b1cb5020dff7fe43c8dc468b0885f5e29df5"
2553
2554[[package]]
2555name = "unicode-ident"
2556version = "1.0.15"
2557source = "registry+https://github.com/rust-lang/crates.io-index"
2558checksum = "11cd88e12b17c6494200a9c1b683a04fcac9573ed74cd1b62aeb2727c5592243"
2559
2560[[package]]
2561name = "unicode-normalization"
2562version = "0.1.24"
2563source = "registry+https://github.com/rust-lang/crates.io-index"
2564checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2565dependencies = [
2566 "tinyvec",
2567]
2568
2569[[package]]
2570name = "unicode-properties"
2571version = "0.1.3"
2572source = "registry+https://github.com/rust-lang/crates.io-index"
2573checksum = "e70f2a8b45122e719eb623c01822704c4e0907e7e426a05927e1a1cfff5b75d0"
2574
2575[[package]]
2576name = "untrusted"
2577version = "0.9.0"
2578source = "registry+https://github.com/rust-lang/crates.io-index"
2579checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2580
2581[[package]]
2582name = "url"
2583version = "2.5.4"
2584source = "registry+https://github.com/rust-lang/crates.io-index"
2585checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2586dependencies = [
2587 "form_urlencoded",
2588 "idna",
2589 "percent-encoding",
2590]
2591
2592[[package]]
2593name = "utf16_iter"
2594version = "1.0.5"
2595source = "registry+https://github.com/rust-lang/crates.io-index"
2596checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
2597
2598[[package]]
2599name = "utf8_iter"
2600version = "1.0.4"
2601source = "registry+https://github.com/rust-lang/crates.io-index"
2602checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2603
2604[[package]]
2605name = "utf8parse"
2606version = "0.2.2"
2607source = "registry+https://github.com/rust-lang/crates.io-index"
2608checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2609
2610[[package]]
2611name = "uuid"
2612version = "1.12.1"
2613source = "registry+https://github.com/rust-lang/crates.io-index"
2614checksum = "b3758f5e68192bb96cc8f9b7e2c2cfdabb435499a28499a42f8f984092adad4b"
2615dependencies = [
2616 "getrandom",
2617]
2618
2619[[package]]
2620name = "v_htmlescape"
2621version = "0.15.8"
2622source = "registry+https://github.com/rust-lang/crates.io-index"
2623checksum = "4e8257fbc510f0a46eb602c10215901938b5c2a7d5e70fc11483b1d3c9b5b18c"
2624
2625[[package]]
2626name = "valuable"
2627version = "0.1.1"
2628source = "registry+https://github.com/rust-lang/crates.io-index"
2629checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65"
2630
2631[[package]]
2632name = "vcpkg"
2633version = "0.2.15"
2634source = "registry+https://github.com/rust-lang/crates.io-index"
2635checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2636
2637[[package]]
2638name = "version_check"
2639version = "0.9.5"
2640source = "registry+https://github.com/rust-lang/crates.io-index"
2641checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2642
2643[[package]]
2644name = "walkdir"
2645version = "2.5.0"
2646source = "registry+https://github.com/rust-lang/crates.io-index"
2647checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
2648dependencies = [
2649 "same-file",
2650 "winapi-util",
2651]
2652
2653[[package]]
2654name = "wasi"
2655version = "0.11.0+wasi-snapshot-preview1"
2656source = "registry+https://github.com/rust-lang/crates.io-index"
2657checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2658
2659[[package]]
2660name = "wasite"
2661version = "0.1.0"
2662source = "registry+https://github.com/rust-lang/crates.io-index"
2663checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
2664
2665[[package]]
2666name = "wasm-bindgen"
2667version = "0.2.100"
2668source = "registry+https://github.com/rust-lang/crates.io-index"
2669checksum = "1edc8929d7499fc4e8f0be2262a241556cfc54a0bea223790e71446f2aab1ef5"
2670dependencies = [
2671 "cfg-if",
2672 "once_cell",
2673 "rustversion",
2674 "wasm-bindgen-macro",
2675]
2676
2677[[package]]
2678name = "wasm-bindgen-backend"
2679version = "0.2.100"
2680source = "registry+https://github.com/rust-lang/crates.io-index"
2681checksum = "2f0a0651a5c2bc21487bde11ee802ccaf4c51935d0d3d42a6101f98161700bc6"
2682dependencies = [
2683 "bumpalo",
2684 "log",
2685 "proc-macro2",
2686 "quote",
2687 "syn",
2688 "wasm-bindgen-shared",
2689]
2690
2691[[package]]
2692name = "wasm-bindgen-macro"
2693version = "0.2.100"
2694source = "registry+https://github.com/rust-lang/crates.io-index"
2695checksum = "7fe63fc6d09ed3792bd0897b314f53de8e16568c2b3f7982f468c0bf9bd0b407"
2696dependencies = [
2697 "quote",
2698 "wasm-bindgen-macro-support",
2699]
2700
2701[[package]]
2702name = "wasm-bindgen-macro-support"
2703version = "0.2.100"
2704source = "registry+https://github.com/rust-lang/crates.io-index"
2705checksum = "8ae87ea40c9f689fc23f209965b6fb8a99ad69aeeb0231408be24920604395de"
2706dependencies = [
2707 "proc-macro2",
2708 "quote",
2709 "syn",
2710 "wasm-bindgen-backend",
2711 "wasm-bindgen-shared",
2712]
2713
2714[[package]]
2715name = "wasm-bindgen-shared"
2716version = "0.2.100"
2717source = "registry+https://github.com/rust-lang/crates.io-index"
2718checksum = "1a05d73b933a847d6cccdda8f838a22ff101ad9bf93e33684f39c1f5f0eece3d"
2719dependencies = [
2720 "unicode-ident",
2721]
2722
2723[[package]]
2724name = "whoami"
2725version = "1.5.2"
2726source = "registry+https://github.com/rust-lang/crates.io-index"
2727checksum = "372d5b87f58ec45c384ba03563b03544dc5fadc3983e434b286913f5b4a9bb6d"
2728dependencies = [
2729 "redox_syscall",
2730 "wasite",
2731]
2732
2733[[package]]
2734name = "winapi-util"
2735version = "0.1.9"
2736source = "registry+https://github.com/rust-lang/crates.io-index"
2737checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2738dependencies = [
2739 "windows-sys 0.59.0",
2740]
2741
2742[[package]]
2743name = "windows-core"
2744version = "0.52.0"
2745source = "registry+https://github.com/rust-lang/crates.io-index"
2746checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
2747dependencies = [
2748 "windows-targets 0.52.6",
2749]
2750
2751[[package]]
2752name = "windows-sys"
2753version = "0.48.0"
2754source = "registry+https://github.com/rust-lang/crates.io-index"
2755checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2756dependencies = [
2757 "windows-targets 0.48.5",
2758]
2759
2760[[package]]
2761name = "windows-sys"
2762version = "0.52.0"
2763source = "registry+https://github.com/rust-lang/crates.io-index"
2764checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
2765dependencies = [
2766 "windows-targets 0.52.6",
2767]
2768
2769[[package]]
2770name = "windows-sys"
2771version = "0.59.0"
2772source = "registry+https://github.com/rust-lang/crates.io-index"
2773checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
2774dependencies = [
2775 "windows-targets 0.52.6",
2776]
2777
2778[[package]]
2779name = "windows-targets"
2780version = "0.48.5"
2781source = "registry+https://github.com/rust-lang/crates.io-index"
2782checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2783dependencies = [
2784 "windows_aarch64_gnullvm 0.48.5",
2785 "windows_aarch64_msvc 0.48.5",
2786 "windows_i686_gnu 0.48.5",
2787 "windows_i686_msvc 0.48.5",
2788 "windows_x86_64_gnu 0.48.5",
2789 "windows_x86_64_gnullvm 0.48.5",
2790 "windows_x86_64_msvc 0.48.5",
2791]
2792
2793[[package]]
2794name = "windows-targets"
2795version = "0.52.6"
2796source = "registry+https://github.com/rust-lang/crates.io-index"
2797checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2798dependencies = [
2799 "windows_aarch64_gnullvm 0.52.6",
2800 "windows_aarch64_msvc 0.52.6",
2801 "windows_i686_gnu 0.52.6",
2802 "windows_i686_gnullvm",
2803 "windows_i686_msvc 0.52.6",
2804 "windows_x86_64_gnu 0.52.6",
2805 "windows_x86_64_gnullvm 0.52.6",
2806 "windows_x86_64_msvc 0.52.6",
2807]
2808
2809[[package]]
2810name = "windows_aarch64_gnullvm"
2811version = "0.48.5"
2812source = "registry+https://github.com/rust-lang/crates.io-index"
2813checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2814
2815[[package]]
2816name = "windows_aarch64_gnullvm"
2817version = "0.52.6"
2818source = "registry+https://github.com/rust-lang/crates.io-index"
2819checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2820
2821[[package]]
2822name = "windows_aarch64_msvc"
2823version = "0.48.5"
2824source = "registry+https://github.com/rust-lang/crates.io-index"
2825checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2826
2827[[package]]
2828name = "windows_aarch64_msvc"
2829version = "0.52.6"
2830source = "registry+https://github.com/rust-lang/crates.io-index"
2831checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2832
2833[[package]]
2834name = "windows_i686_gnu"
2835version = "0.48.5"
2836source = "registry+https://github.com/rust-lang/crates.io-index"
2837checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2838
2839[[package]]
2840name = "windows_i686_gnu"
2841version = "0.52.6"
2842source = "registry+https://github.com/rust-lang/crates.io-index"
2843checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2844
2845[[package]]
2846name = "windows_i686_gnullvm"
2847version = "0.52.6"
2848source = "registry+https://github.com/rust-lang/crates.io-index"
2849checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2850
2851[[package]]
2852name = "windows_i686_msvc"
2853version = "0.48.5"
2854source = "registry+https://github.com/rust-lang/crates.io-index"
2855checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2856
2857[[package]]
2858name = "windows_i686_msvc"
2859version = "0.52.6"
2860source = "registry+https://github.com/rust-lang/crates.io-index"
2861checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2862
2863[[package]]
2864name = "windows_x86_64_gnu"
2865version = "0.48.5"
2866source = "registry+https://github.com/rust-lang/crates.io-index"
2867checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2868
2869[[package]]
2870name = "windows_x86_64_gnu"
2871version = "0.52.6"
2872source = "registry+https://github.com/rust-lang/crates.io-index"
2873checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2874
2875[[package]]
2876name = "windows_x86_64_gnullvm"
2877version = "0.48.5"
2878source = "registry+https://github.com/rust-lang/crates.io-index"
2879checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2880
2881[[package]]
2882name = "windows_x86_64_gnullvm"
2883version = "0.52.6"
2884source = "registry+https://github.com/rust-lang/crates.io-index"
2885checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2886
2887[[package]]
2888name = "windows_x86_64_msvc"
2889version = "0.48.5"
2890source = "registry+https://github.com/rust-lang/crates.io-index"
2891checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2892
2893[[package]]
2894name = "windows_x86_64_msvc"
2895version = "0.52.6"
2896source = "registry+https://github.com/rust-lang/crates.io-index"
2897checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2898
2899[[package]]
2900name = "write16"
2901version = "1.0.0"
2902source = "registry+https://github.com/rust-lang/crates.io-index"
2903checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
2904
2905[[package]]
2906name = "writeable"
2907version = "0.5.5"
2908source = "registry+https://github.com/rust-lang/crates.io-index"
2909checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2910
2911[[package]]
2912name = "yoke"
2913version = "0.7.5"
2914source = "registry+https://github.com/rust-lang/crates.io-index"
2915checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
2916dependencies = [
2917 "serde",
2918 "stable_deref_trait",
2919 "yoke-derive",
2920 "zerofrom",
2921]
2922
2923[[package]]
2924name = "yoke-derive"
2925version = "0.7.5"
2926source = "registry+https://github.com/rust-lang/crates.io-index"
2927checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
2928dependencies = [
2929 "proc-macro2",
2930 "quote",
2931 "syn",
2932 "synstructure",
2933]
2934
2935[[package]]
2936name = "zerocopy"
2937version = "0.7.35"
2938source = "registry+https://github.com/rust-lang/crates.io-index"
2939checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2940dependencies = [
2941 "byteorder",
2942 "zerocopy-derive",
2943]
2944
2945[[package]]
2946name = "zerocopy-derive"
2947version = "0.7.35"
2948source = "registry+https://github.com/rust-lang/crates.io-index"
2949checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2950dependencies = [
2951 "proc-macro2",
2952 "quote",
2953 "syn",
2954]
2955
2956[[package]]
2957name = "zerofrom"
2958version = "0.1.5"
2959source = "registry+https://github.com/rust-lang/crates.io-index"
2960checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
2961dependencies = [
2962 "zerofrom-derive",
2963]
2964
2965[[package]]
2966name = "zerofrom-derive"
2967version = "0.1.5"
2968source = "registry+https://github.com/rust-lang/crates.io-index"
2969checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
2970dependencies = [
2971 "proc-macro2",
2972 "quote",
2973 "syn",
2974 "synstructure",
2975]
2976
2977[[package]]
2978name = "zeroize"
2979version = "1.8.1"
2980source = "registry+https://github.com/rust-lang/crates.io-index"
2981checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2982
2983[[package]]
2984name = "zerovec"
2985version = "0.10.4"
2986source = "registry+https://github.com/rust-lang/crates.io-index"
2987checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
2988dependencies = [
2989 "yoke",
2990 "zerofrom",
2991 "zerovec-derive",
2992]
2993
2994[[package]]
2995name = "zerovec-derive"
2996version = "0.10.3"
2997source = "registry+https://github.com/rust-lang/crates.io-index"
2998checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
2999dependencies = [
3000 "proc-macro2",
3001 "quote",
3002 "syn",
3003]
3004
3005[[package]]
3006name = "zstd"
3007version = "0.13.2"
3008source = "registry+https://github.com/rust-lang/crates.io-index"
3009checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
3010dependencies = [
3011 "zstd-safe",
3012]
3013
3014[[package]]
3015name = "zstd-safe"
3016version = "7.2.1"
3017source = "registry+https://github.com/rust-lang/crates.io-index"
3018checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
3019dependencies = [
3020 "zstd-sys",
3021]
3022
3023[[package]]
3024name = "zstd-sys"
3025version = "2.0.13+zstd.1.5.6"
3026source = "registry+https://github.com/rust-lang/crates.io-index"
3027checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
3028dependencies = [
3029 "cc",
3030 "pkg-config",
3031]