JavaScript is disabled, refresh for a better experience. ambee/giterated

ambee/giterated

Git repository hosting, collaboration, and discovery for the Fediverse.

Add message forwarding

Amber - ⁨2⁩ years ago

parent: tbd commit: ⁨e4fa992

⁨Cargo.lock⁩ - ⁨67735⁩ bytes
Raw
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "addr2line"
7 version = "0.21.0"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
10 dependencies = [
11 "gimli",
12 ]
13
14 [[package]]
15 name = "adler"
16 version = "1.0.2"
17 source = "registry+https://github.com/rust-lang/crates.io-index"
18 checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
19
20 [[package]]
21 name = "aead"
22 version = "0.5.2"
23 source = "registry+https://github.com/rust-lang/crates.io-index"
24 checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
25 dependencies = [
26 "crypto-common",
27 "generic-array",
28 ]
29
30 [[package]]
31 name = "aes"
32 version = "0.8.3"
33 source = "registry+https://github.com/rust-lang/crates.io-index"
34 checksum = "ac1f845298e95f983ff1944b728ae08b8cebab80d684f0a832ed0fc74dfa27e2"
35 dependencies = [
36 "cfg-if",
37 "cipher",
38 "cpufeatures",
39 ]
40
41 [[package]]
42 name = "aes-gcm"
43 version = "0.10.2"
44 source = "registry+https://github.com/rust-lang/crates.io-index"
45 checksum = "209b47e8954a928e1d72e86eca7000ebb6655fe1436d33eefc2201cad027e237"
46 dependencies = [
47 "aead",
48 "aes",
49 "cipher",
50 "ctr",
51 "ghash",
52 "subtle",
53 ]
54
55 [[package]]
56 name = "ahash"
57 version = "0.8.3"
58 source = "registry+https://github.com/rust-lang/crates.io-index"
59 checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f"
60 dependencies = [
61 "cfg-if",
62 "getrandom",
63 "once_cell",
64 "version_check",
65 ]
66
67 [[package]]
68 name = "allocator-api2"
69 version = "0.2.16"
70 source = "registry+https://github.com/rust-lang/crates.io-index"
71 checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
72
73 [[package]]
74 name = "android-tzdata"
75 version = "0.1.1"
76 source = "registry+https://github.com/rust-lang/crates.io-index"
77 checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
78
79 [[package]]
80 name = "android_system_properties"
81 version = "0.1.5"
82 source = "registry+https://github.com/rust-lang/crates.io-index"
83 checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
84 dependencies = [
85 "libc",
86 ]
87
88 [[package]]
89 name = "anyhow"
90 version = "1.0.75"
91 source = "registry+https://github.com/rust-lang/crates.io-index"
92 checksum = "a4668cab20f66d8d020e1fbc0ebe47217433c1b6c8f2040faf858554e394ace6"
93
94 [[package]]
95 name = "argon2"
96 version = "0.5.1"
97 source = "registry+https://github.com/rust-lang/crates.io-index"
98 checksum = "b2e554a8638bdc1e4eae9984845306cc95f8a9208ba8d49c3859fd958b46774d"
99 dependencies = [
100 "base64ct",
101 "blake2",
102 "cpufeatures",
103 "password-hash",
104 ]
105
106 [[package]]
107 name = "async-trait"
108 version = "0.1.73"
109 source = "registry+https://github.com/rust-lang/crates.io-index"
110 checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0"
111 dependencies = [
112 "proc-macro2",
113 "quote",
114 "syn 2.0.29",
115 ]
116
117 [[package]]
118 name = "atoi"
119 version = "2.0.0"
120 source = "registry+https://github.com/rust-lang/crates.io-index"
121 checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
122 dependencies = [
123 "num-traits",
124 ]
125
126 [[package]]
127 name = "autocfg"
128 version = "1.1.0"
129 source = "registry+https://github.com/rust-lang/crates.io-index"
130 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
131
132 [[package]]
133 name = "backtrace"
134 version = "0.3.69"
135 source = "registry+https://github.com/rust-lang/crates.io-index"
136 checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
137 dependencies = [
138 "addr2line",
139 "cc",
140 "cfg-if",
141 "libc",
142 "miniz_oxide",
143 "object",
144 "rustc-demangle",
145 ]
146
147 [[package]]
148 name = "base64"
149 version = "0.13.1"
150 source = "registry+https://github.com/rust-lang/crates.io-index"
151 checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
152
153 [[package]]
154 name = "base64"
155 version = "0.21.3"
156 source = "registry+https://github.com/rust-lang/crates.io-index"
157 checksum = "414dcefbc63d77c526a76b3afcf6fbb9b5e2791c19c3aa2297733208750c6e53"
158
159 [[package]]
160 name = "base64ct"
161 version = "1.6.0"
162 source = "registry+https://github.com/rust-lang/crates.io-index"
163 checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
164
165 [[package]]
166 name = "bitflags"
167 version = "1.3.2"
168 source = "registry+https://github.com/rust-lang/crates.io-index"
169 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
170
171 [[package]]
172 name = "bitflags"
173 version = "2.4.0"
174 source = "registry+https://github.com/rust-lang/crates.io-index"
175 checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635"
176 dependencies = [
177 "serde",
178 ]
179
180 [[package]]
181 name = "blake2"
182 version = "0.10.6"
183 source = "registry+https://github.com/rust-lang/crates.io-index"
184 checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
185 dependencies = [
186 "digest",
187 ]
188
189 [[package]]
190 name = "block-buffer"
191 version = "0.10.4"
192 source = "registry+https://github.com/rust-lang/crates.io-index"
193 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
194 dependencies = [
195 "generic-array",
196 ]
197
198 [[package]]
199 name = "bumpalo"
200 version = "3.13.0"
201 source = "registry+https://github.com/rust-lang/crates.io-index"
202 checksum = "a3e2c3daef883ecc1b5d58c15adae93470a91d425f3532ba1695849656af3fc1"
203
204 [[package]]
205 name = "byteorder"
206 version = "1.4.3"
207 source = "registry+https://github.com/rust-lang/crates.io-index"
208 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
209
210 [[package]]
211 name = "bytes"
212 version = "1.4.0"
213 source = "registry+https://github.com/rust-lang/crates.io-index"
214 checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
215
216 [[package]]
217 name = "cc"
218 version = "1.0.83"
219 source = "registry+https://github.com/rust-lang/crates.io-index"
220 checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
221 dependencies = [
222 "jobserver",
223 "libc",
224 ]
225
226 [[package]]
227 name = "cfg-if"
228 version = "1.0.0"
229 source = "registry+https://github.com/rust-lang/crates.io-index"
230 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
231
232 [[package]]
233 name = "chrono"
234 version = "0.4.26"
235 source = "registry+https://github.com/rust-lang/crates.io-index"
236 checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
237 dependencies = [
238 "android-tzdata",
239 "iana-time-zone",
240 "js-sys",
241 "num-traits",
242 "serde",
243 "time 0.1.45",
244 "wasm-bindgen",
245 "winapi",
246 ]
247
248 [[package]]
249 name = "cipher"
250 version = "0.4.4"
251 source = "registry+https://github.com/rust-lang/crates.io-index"
252 checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
253 dependencies = [
254 "crypto-common",
255 "inout",
256 ]
257
258 [[package]]
259 name = "const-oid"
260 version = "0.9.5"
261 source = "registry+https://github.com/rust-lang/crates.io-index"
262 checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f"
263
264 [[package]]
265 name = "core-foundation"
266 version = "0.9.3"
267 source = "registry+https://github.com/rust-lang/crates.io-index"
268 checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
269 dependencies = [
270 "core-foundation-sys",
271 "libc",
272 ]
273
274 [[package]]
275 name = "core-foundation-sys"
276 version = "0.8.4"
277 source = "registry+https://github.com/rust-lang/crates.io-index"
278 checksum = "e496a50fda8aacccc86d7529e2c1e0892dbd0f898a6b5645b5561b89c3210efa"
279
280 [[package]]
281 name = "cpufeatures"
282 version = "0.2.9"
283 source = "registry+https://github.com/rust-lang/crates.io-index"
284 checksum = "a17b76ff3a4162b0b27f354a0c87015ddad39d35f9c0c36607a3bdd175dde1f1"
285 dependencies = [
286 "libc",
287 ]
288
289 [[package]]
290 name = "crc"
291 version = "3.0.1"
292 source = "registry+https://github.com/rust-lang/crates.io-index"
293 checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe"
294 dependencies = [
295 "crc-catalog",
296 ]
297
298 [[package]]
299 name = "crc-catalog"
300 version = "2.2.0"
301 source = "registry+https://github.com/rust-lang/crates.io-index"
302 checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484"
303
304 [[package]]
305 name = "crossbeam-queue"
306 version = "0.3.8"
307 source = "registry+https://github.com/rust-lang/crates.io-index"
308 checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add"
309 dependencies = [
310 "cfg-if",
311 "crossbeam-utils",
312 ]
313
314 [[package]]
315 name = "crossbeam-utils"
316 version = "0.8.16"
317 source = "registry+https://github.com/rust-lang/crates.io-index"
318 checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294"
319 dependencies = [
320 "cfg-if",
321 ]
322
323 [[package]]
324 name = "crypto-common"
325 version = "0.1.6"
326 source = "registry+https://github.com/rust-lang/crates.io-index"
327 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
328 dependencies = [
329 "generic-array",
330 "rand_core",
331 "typenum",
332 ]
333
334 [[package]]
335 name = "ctr"
336 version = "0.9.2"
337 source = "registry+https://github.com/rust-lang/crates.io-index"
338 checksum = "0369ee1ad671834580515889b80f2ea915f23b8be8d0daa4bbaf2ac5c7590835"
339 dependencies = [
340 "cipher",
341 ]
342
343 [[package]]
344 name = "data-encoding"
345 version = "2.4.0"
346 source = "registry+https://github.com/rust-lang/crates.io-index"
347 checksum = "c2e66c9d817f1720209181c316d28635c050fa304f9c79e47a520882661b7308"
348
349 [[package]]
350 name = "deadpool"
351 version = "0.9.5"
352 source = "registry+https://github.com/rust-lang/crates.io-index"
353 checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
354 dependencies = [
355 "async-trait",
356 "deadpool-runtime",
357 "num_cpus",
358 "retain_mut",
359 "tokio",
360 ]
361
362 [[package]]
363 name = "deadpool-runtime"
364 version = "0.1.2"
365 source = "registry+https://github.com/rust-lang/crates.io-index"
366 checksum = "eaa37046cc0f6c3cc6090fbdbf73ef0b8ef4cfcc37f6befc0020f63e8cf121e1"
367
368 [[package]]
369 name = "der"
370 version = "0.7.8"
371 source = "registry+https://github.com/rust-lang/crates.io-index"
372 checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c"
373 dependencies = [
374 "const-oid",
375 "pem-rfc7468",
376 "zeroize",
377 ]
378
379 [[package]]
380 name = "deranged"
381 version = "0.3.8"
382 source = "registry+https://github.com/rust-lang/crates.io-index"
383 checksum = "f2696e8a945f658fd14dc3b87242e6b80cd0f36ff04ea560fa39082368847946"
384
385 [[package]]
386 name = "digest"
387 version = "0.10.7"
388 source = "registry+https://github.com/rust-lang/crates.io-index"
389 checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
390 dependencies = [
391 "block-buffer",
392 "const-oid",
393 "crypto-common",
394 "subtle",
395 ]
396
397 [[package]]
398 name = "dotenvy"
399 version = "0.15.7"
400 source = "registry+https://github.com/rust-lang/crates.io-index"
401 checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
402
403 [[package]]
404 name = "either"
405 version = "1.9.0"
406 source = "registry+https://github.com/rust-lang/crates.io-index"
407 checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
408 dependencies = [
409 "serde",
410 ]
411
412 [[package]]
413 name = "encoding_rs"
414 version = "0.8.33"
415 source = "registry+https://github.com/rust-lang/crates.io-index"
416 checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
417 dependencies = [
418 "cfg-if",
419 ]
420
421 [[package]]
422 name = "equivalent"
423 version = "1.0.1"
424 source = "registry+https://github.com/rust-lang/crates.io-index"
425 checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
426
427 [[package]]
428 name = "errno"
429 version = "0.3.2"
430 source = "registry+https://github.com/rust-lang/crates.io-index"
431 checksum = "6b30f669a7961ef1631673d2766cc92f52d64f7ef354d4fe0ddfd30ed52f0f4f"
432 dependencies = [
433 "errno-dragonfly",
434 "libc",
435 "windows-sys",
436 ]
437
438 [[package]]
439 name = "errno-dragonfly"
440 version = "0.1.2"
441 source = "registry+https://github.com/rust-lang/crates.io-index"
442 checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
443 dependencies = [
444 "cc",
445 "libc",
446 ]
447
448 [[package]]
449 name = "etcetera"
450 version = "0.8.0"
451 source = "registry+https://github.com/rust-lang/crates.io-index"
452 checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
453 dependencies = [
454 "cfg-if",
455 "home",
456 "windows-sys",
457 ]
458
459 [[package]]
460 name = "event-listener"
461 version = "2.5.3"
462 source = "registry+https://github.com/rust-lang/crates.io-index"
463 checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
464
465 [[package]]
466 name = "fastrand"
467 version = "2.0.0"
468 source = "registry+https://github.com/rust-lang/crates.io-index"
469 checksum = "6999dc1837253364c2ebb0704ba97994bd874e8f195d665c50b7548f6ea92764"
470
471 [[package]]
472 name = "flume"
473 version = "0.10.14"
474 source = "registry+https://github.com/rust-lang/crates.io-index"
475 checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
476 dependencies = [
477 "futures-core",
478 "futures-sink",
479 "pin-project",
480 "spin 0.9.8",
481 ]
482
483 [[package]]
484 name = "fnv"
485 version = "1.0.7"
486 source = "registry+https://github.com/rust-lang/crates.io-index"
487 checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
488
489 [[package]]
490 name = "foreign-types"
491 version = "0.3.2"
492 source = "registry+https://github.com/rust-lang/crates.io-index"
493 checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
494 dependencies = [
495 "foreign-types-shared",
496 ]
497
498 [[package]]
499 name = "foreign-types-shared"
500 version = "0.1.1"
501 source = "registry+https://github.com/rust-lang/crates.io-index"
502 checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
503
504 [[package]]
505 name = "form_urlencoded"
506 version = "1.2.0"
507 source = "registry+https://github.com/rust-lang/crates.io-index"
508 checksum = "a62bc1cf6f830c2ec14a513a9fb124d0a213a629668a4186f329db21fe045652"
509 dependencies = [
510 "percent-encoding",
511 ]
512
513 [[package]]
514 name = "futures-channel"
515 version = "0.3.28"
516 source = "registry+https://github.com/rust-lang/crates.io-index"
517 checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
518 dependencies = [
519 "futures-core",
520 "futures-sink",
521 ]
522
523 [[package]]
524 name = "futures-core"
525 version = "0.3.28"
526 source = "registry+https://github.com/rust-lang/crates.io-index"
527 checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
528
529 [[package]]
530 name = "futures-executor"
531 version = "0.3.28"
532 source = "registry+https://github.com/rust-lang/crates.io-index"
533 checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0"
534 dependencies = [
535 "futures-core",
536 "futures-task",
537 "futures-util",
538 ]
539
540 [[package]]
541 name = "futures-intrusive"
542 version = "0.5.0"
543 source = "registry+https://github.com/rust-lang/crates.io-index"
544 checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
545 dependencies = [
546 "futures-core",
547 "lock_api",
548 "parking_lot",
549 ]
550
551 [[package]]
552 name = "futures-io"
553 version = "0.3.28"
554 source = "registry+https://github.com/rust-lang/crates.io-index"
555 checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
556
557 [[package]]
558 name = "futures-macro"
559 version = "0.3.28"
560 source = "registry+https://github.com/rust-lang/crates.io-index"
561 checksum = "89ca545a94061b6365f2c7355b4b32bd20df3ff95f02da9329b34ccc3bd6ee72"
562 dependencies = [
563 "proc-macro2",
564 "quote",
565 "syn 2.0.29",
566 ]
567
568 [[package]]
569 name = "futures-sink"
570 version = "0.3.28"
571 source = "registry+https://github.com/rust-lang/crates.io-index"
572 checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
573
574 [[package]]
575 name = "futures-task"
576 version = "0.3.28"
577 source = "registry+https://github.com/rust-lang/crates.io-index"
578 checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
579
580 [[package]]
581 name = "futures-util"
582 version = "0.3.28"
583 source = "registry+https://github.com/rust-lang/crates.io-index"
584 checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533"
585 dependencies = [
586 "futures-core",
587 "futures-io",
588 "futures-macro",
589 "futures-sink",
590 "futures-task",
591 "memchr",
592 "pin-project-lite",
593 "pin-utils",
594 "slab",
595 ]
596
597 [[package]]
598 name = "generic-array"
599 version = "0.14.7"
600 source = "registry+https://github.com/rust-lang/crates.io-index"
601 checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
602 dependencies = [
603 "typenum",
604 "version_check",
605 ]
606
607 [[package]]
608 name = "getrandom"
609 version = "0.2.10"
610 source = "registry+https://github.com/rust-lang/crates.io-index"
611 checksum = "be4136b2a15dd319360be1c07d9933517ccf0be8f16bf62a3bee4f0d618df427"
612 dependencies = [
613 "cfg-if",
614 "libc",
615 "wasi 0.11.0+wasi-snapshot-preview1",
616 ]
617
618 [[package]]
619 name = "ghash"
620 version = "0.5.0"
621 source = "registry+https://github.com/rust-lang/crates.io-index"
622 checksum = "d930750de5717d2dd0b8c0d42c076c0e884c81a73e6cab859bbd2339c71e3e40"
623 dependencies = [
624 "opaque-debug",
625 "polyval",
626 ]
627
628 [[package]]
629 name = "gimli"
630 version = "0.28.0"
631 source = "registry+https://github.com/rust-lang/crates.io-index"
632 checksum = "6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0"
633
634 [[package]]
635 name = "git2"
636 version = "0.17.2"
637 source = "registry+https://github.com/rust-lang/crates.io-index"
638 checksum = "7b989d6a7ca95a362cf2cfc5ad688b3a467be1f87e480b8dad07fee8c79b0044"
639 dependencies = [
640 "bitflags 1.3.2",
641 "libc",
642 "libgit2-sys",
643 "log",
644 "openssl-probe",
645 "openssl-sys",
646 "url",
647 ]
648
649 [[package]]
650 name = "giterated-api"
651 version = "0.1.0"
652 dependencies = [
653 "anyhow",
654 "async-trait",
655 "chrono",
656 "deadpool",
657 "futures-util",
658 "giterated-models",
659 "jsonwebtoken",
660 "rand",
661 "reqwest",
662 "semver",
663 "serde",
664 "serde_json",
665 "thiserror",
666 "tokio",
667 "tokio-tungstenite",
668 "tracing",
669 "tracing-subscriber",
670 ]
671
672 [[package]]
673 name = "giterated-daemon"
674 version = "0.0.6"
675 dependencies = [
676 "aes-gcm",
677 "anyhow",
678 "argon2",
679 "async-trait",
680 "base64 0.21.3",
681 "chrono",
682 "deadpool",
683 "futures-util",
684 "git2",
685 "giterated-api",
686 "giterated-models",
687 "jsonwebtoken",
688 "log",
689 "rand",
690 "reqwest",
691 "rsa",
692 "semver",
693 "serde",
694 "serde_json",
695 "sqlx",
696 "thiserror",
697 "tokio",
698 "tokio-tungstenite",
699 "toml",
700 "tower",
701 "tracing",
702 "tracing-subscriber",
703 ]
704
705 [[package]]
706 name = "giterated-models"
707 version = "0.1.0"
708 dependencies = [
709 "aes-gcm",
710 "anyhow",
711 "argon2",
712 "async-trait",
713 "base64 0.21.3",
714 "chrono",
715 "futures-util",
716 "git2",
717 "jsonwebtoken",
718 "log",
719 "rand",
720 "reqwest",
721 "rsa",
722 "semver",
723 "serde",
724 "serde_json",
725 "sqlx",
726 "thiserror",
727 "tokio",
728 "tokio-tungstenite",
729 "toml",
730 "tower",
731 "tracing",
732 "tracing-subscriber",
733 ]
734
735 [[package]]
736 name = "h2"
737 version = "0.3.21"
738 source = "registry+https://github.com/rust-lang/crates.io-index"
739 checksum = "91fc23aa11be92976ef4729127f1a74adf36d8436f7816b185d18df956790833"
740 dependencies = [
741 "bytes",
742 "fnv",
743 "futures-core",
744 "futures-sink",
745 "futures-util",
746 "http",
747 "indexmap 1.9.3",
748 "slab",
749 "tokio",
750 "tokio-util",
751 "tracing",
752 ]
753
754 [[package]]
755 name = "hashbrown"
756 version = "0.12.3"
757 source = "registry+https://github.com/rust-lang/crates.io-index"
758 checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
759
760 [[package]]
761 name = "hashbrown"
762 version = "0.14.0"
763 source = "registry+https://github.com/rust-lang/crates.io-index"
764 checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a"
765 dependencies = [
766 "ahash",
767 "allocator-api2",
768 ]
769
770 [[package]]
771 name = "hashlink"
772 version = "0.8.4"
773 source = "registry+https://github.com/rust-lang/crates.io-index"
774 checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7"
775 dependencies = [
776 "hashbrown 0.14.0",
777 ]
778
779 [[package]]
780 name = "heck"
781 version = "0.4.1"
782 source = "registry+https://github.com/rust-lang/crates.io-index"
783 checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
784 dependencies = [
785 "unicode-segmentation",
786 ]
787
788 [[package]]
789 name = "hermit-abi"
790 version = "0.3.2"
791 source = "registry+https://github.com/rust-lang/crates.io-index"
792 checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
793
794 [[package]]
795 name = "hex"
796 version = "0.4.3"
797 source = "registry+https://github.com/rust-lang/crates.io-index"
798 checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
799
800 [[package]]
801 name = "hkdf"
802 version = "0.12.3"
803 source = "registry+https://github.com/rust-lang/crates.io-index"
804 checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437"
805 dependencies = [
806 "hmac",
807 ]
808
809 [[package]]
810 name = "hmac"
811 version = "0.12.1"
812 source = "registry+https://github.com/rust-lang/crates.io-index"
813 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
814 dependencies = [
815 "digest",
816 ]
817
818 [[package]]
819 name = "home"
820 version = "0.5.5"
821 source = "registry+https://github.com/rust-lang/crates.io-index"
822 checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
823 dependencies = [
824 "windows-sys",
825 ]
826
827 [[package]]
828 name = "http"
829 version = "0.2.9"
830 source = "registry+https://github.com/rust-lang/crates.io-index"
831 checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
832 dependencies = [
833 "bytes",
834 "fnv",
835 "itoa",
836 ]
837
838 [[package]]
839 name = "http-body"
840 version = "0.4.5"
841 source = "registry+https://github.com/rust-lang/crates.io-index"
842 checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
843 dependencies = [
844 "bytes",
845 "http",
846 "pin-project-lite",
847 ]
848
849 [[package]]
850 name = "httparse"
851 version = "1.8.0"
852 source = "registry+https://github.com/rust-lang/crates.io-index"
853 checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
854
855 [[package]]
856 name = "httpdate"
857 version = "1.0.3"
858 source = "registry+https://github.com/rust-lang/crates.io-index"
859 checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
860
861 [[package]]
862 name = "hyper"
863 version = "0.14.27"
864 source = "registry+https://github.com/rust-lang/crates.io-index"
865 checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468"
866 dependencies = [
867 "bytes",
868 "futures-channel",
869 "futures-core",
870 "futures-util",
871 "h2",
872 "http",
873 "http-body",
874 "httparse",
875 "httpdate",
876 "itoa",
877 "pin-project-lite",
878 "socket2 0.4.9",
879 "tokio",
880 "tower-service",
881 "tracing",
882 "want",
883 ]
884
885 [[package]]
886 name = "hyper-tls"
887 version = "0.5.0"
888 source = "registry+https://github.com/rust-lang/crates.io-index"
889 checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
890 dependencies = [
891 "bytes",
892 "hyper",
893 "native-tls",
894 "tokio",
895 "tokio-native-tls",
896 ]
897
898 [[package]]
899 name = "iana-time-zone"
900 version = "0.1.57"
901 source = "registry+https://github.com/rust-lang/crates.io-index"
902 checksum = "2fad5b825842d2b38bd206f3e81d6957625fd7f0a361e345c30e01a0ae2dd613"
903 dependencies = [
904 "android_system_properties",
905 "core-foundation-sys",
906 "iana-time-zone-haiku",
907 "js-sys",
908 "wasm-bindgen",
909 "windows",
910 ]
911
912 [[package]]
913 name = "iana-time-zone-haiku"
914 version = "0.1.2"
915 source = "registry+https://github.com/rust-lang/crates.io-index"
916 checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
917 dependencies = [
918 "cc",
919 ]
920
921 [[package]]
922 name = "idna"
923 version = "0.4.0"
924 source = "registry+https://github.com/rust-lang/crates.io-index"
925 checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
926 dependencies = [
927 "unicode-bidi",
928 "unicode-normalization",
929 ]
930
931 [[package]]
932 name = "indexmap"
933 version = "1.9.3"
934 source = "registry+https://github.com/rust-lang/crates.io-index"
935 checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
936 dependencies = [
937 "autocfg",
938 "hashbrown 0.12.3",
939 ]
940
941 [[package]]
942 name = "indexmap"
943 version = "2.0.0"
944 source = "registry+https://github.com/rust-lang/crates.io-index"
945 checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d"
946 dependencies = [
947 "equivalent",
948 "hashbrown 0.14.0",
949 ]
950
951 [[package]]
952 name = "inout"
953 version = "0.1.3"
954 source = "registry+https://github.com/rust-lang/crates.io-index"
955 checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
956 dependencies = [
957 "generic-array",
958 ]
959
960 [[package]]
961 name = "ipnet"
962 version = "2.8.0"
963 source = "registry+https://github.com/rust-lang/crates.io-index"
964 checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6"
965
966 [[package]]
967 name = "itertools"
968 version = "0.10.5"
969 source = "registry+https://github.com/rust-lang/crates.io-index"
970 checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
971 dependencies = [
972 "either",
973 ]
974
975 [[package]]
976 name = "itoa"
977 version = "1.0.9"
978 source = "registry+https://github.com/rust-lang/crates.io-index"
979 checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38"
980
981 [[package]]
982 name = "jobserver"
983 version = "0.1.26"
984 source = "registry+https://github.com/rust-lang/crates.io-index"
985 checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
986 dependencies = [
987 "libc",
988 ]
989
990 [[package]]
991 name = "js-sys"
992 version = "0.3.64"
993 source = "registry+https://github.com/rust-lang/crates.io-index"
994 checksum = "c5f195fe497f702db0f318b07fdd68edb16955aed830df8363d837542f8f935a"
995 dependencies = [
996 "wasm-bindgen",
997 ]
998
999 [[package]]
1000 name = "jsonwebtoken"
1001 version = "8.3.0"
1002 source = "registry+https://github.com/rust-lang/crates.io-index"
1003 checksum = "6971da4d9c3aa03c3d8f3ff0f4155b534aad021292003895a469716b2a230378"
1004 dependencies = [
1005 "base64 0.21.3",
1006 "pem",
1007 "ring",
1008 "serde",
1009 "serde_json",
1010 "simple_asn1",
1011 ]
1012
1013 [[package]]
1014 name = "lazy_static"
1015 version = "1.4.0"
1016 source = "registry+https://github.com/rust-lang/crates.io-index"
1017 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
1018 dependencies = [
1019 "spin 0.5.2",
1020 ]
1021
1022 [[package]]
1023 name = "libc"
1024 version = "0.2.147"
1025 source = "registry+https://github.com/rust-lang/crates.io-index"
1026 checksum = "b4668fb0ea861c1df094127ac5f1da3409a82116a4ba74fca2e58ef927159bb3"
1027
1028 [[package]]
1029 name = "libgit2-sys"
1030 version = "0.15.2+1.6.4"
1031 source = "registry+https://github.com/rust-lang/crates.io-index"
1032 checksum = "a80df2e11fb4a61f4ba2ab42dbe7f74468da143f1a75c74e11dee7c813f694fa"
1033 dependencies = [
1034 "cc",
1035 "libc",
1036 "libssh2-sys",
1037 "libz-sys",
1038 "openssl-sys",
1039 "pkg-config",
1040 ]
1041
1042 [[package]]
1043 name = "libm"
1044 version = "0.2.7"
1045 source = "registry+https://github.com/rust-lang/crates.io-index"
1046 checksum = "f7012b1bbb0719e1097c47611d3898568c546d597c2e74d66f6087edd5233ff4"
1047
1048 [[package]]
1049 name = "libsqlite3-sys"
1050 version = "0.26.0"
1051 source = "registry+https://github.com/rust-lang/crates.io-index"
1052 checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326"
1053 dependencies = [
1054 "cc",
1055 "pkg-config",
1056 "vcpkg",
1057 ]
1058
1059 [[package]]
1060 name = "libssh2-sys"
1061 version = "0.3.0"
1062 source = "registry+https://github.com/rust-lang/crates.io-index"
1063 checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee"
1064 dependencies = [
1065 "cc",
1066 "libc",
1067 "libz-sys",
1068 "openssl-sys",
1069 "pkg-config",
1070 "vcpkg",
1071 ]
1072
1073 [[package]]
1074 name = "libz-sys"
1075 version = "1.1.12"
1076 source = "registry+https://github.com/rust-lang/crates.io-index"
1077 checksum = "d97137b25e321a73eef1418d1d5d2eda4d77e12813f8e6dead84bc52c5870a7b"
1078 dependencies = [
1079 "cc",
1080 "libc",
1081 "pkg-config",
1082 "vcpkg",
1083 ]
1084
1085 [[package]]
1086 name = "linux-raw-sys"
1087 version = "0.4.5"
1088 source = "registry+https://github.com/rust-lang/crates.io-index"
1089 checksum = "57bcfdad1b858c2db7c38303a6d2ad4dfaf5eb53dfeb0910128b2c26d6158503"
1090
1091 [[package]]
1092 name = "lock_api"
1093 version = "0.4.10"
1094 source = "registry+https://github.com/rust-lang/crates.io-index"
1095 checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16"
1096 dependencies = [
1097 "autocfg",
1098 "scopeguard",
1099 ]
1100
1101 [[package]]
1102 name = "log"
1103 version = "0.4.20"
1104 source = "registry+https://github.com/rust-lang/crates.io-index"
1105 checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
1106
1107 [[package]]
1108 name = "md-5"
1109 version = "0.10.5"
1110 source = "registry+https://github.com/rust-lang/crates.io-index"
1111 checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
1112 dependencies = [
1113 "digest",
1114 ]
1115
1116 [[package]]
1117 name = "memchr"
1118 version = "2.6.0"
1119 source = "registry+https://github.com/rust-lang/crates.io-index"
1120 checksum = "76fc44e2588d5b436dbc3c6cf62aef290f90dab6235744a93dfe1cc18f451e2c"
1121
1122 [[package]]
1123 name = "mime"
1124 version = "0.3.17"
1125 source = "registry+https://github.com/rust-lang/crates.io-index"
1126 checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1127
1128 [[package]]
1129 name = "minimal-lexical"
1130 version = "0.2.1"
1131 source = "registry+https://github.com/rust-lang/crates.io-index"
1132 checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
1133
1134 [[package]]
1135 name = "miniz_oxide"
1136 version = "0.7.1"
1137 source = "registry+https://github.com/rust-lang/crates.io-index"
1138 checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
1139 dependencies = [
1140 "adler",
1141 ]
1142
1143 [[package]]
1144 name = "mio"
1145 version = "0.8.8"
1146 source = "registry+https://github.com/rust-lang/crates.io-index"
1147 checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
1148 dependencies = [
1149 "libc",
1150 "wasi 0.11.0+wasi-snapshot-preview1",
1151 "windows-sys",
1152 ]
1153
1154 [[package]]
1155 name = "native-tls"
1156 version = "0.2.11"
1157 source = "registry+https://github.com/rust-lang/crates.io-index"
1158 checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
1159 dependencies = [
1160 "lazy_static",
1161 "libc",
1162 "log",
1163 "openssl",
1164 "openssl-probe",
1165 "openssl-sys",
1166 "schannel",
1167 "security-framework",
1168 "security-framework-sys",
1169 "tempfile",
1170 ]
1171
1172 [[package]]
1173 name = "nom"
1174 version = "7.1.3"
1175 source = "registry+https://github.com/rust-lang/crates.io-index"
1176 checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
1177 dependencies = [
1178 "memchr",
1179 "minimal-lexical",
1180 ]
1181
1182 [[package]]
1183 name = "nu-ansi-term"
1184 version = "0.46.0"
1185 source = "registry+https://github.com/rust-lang/crates.io-index"
1186 checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
1187 dependencies = [
1188 "overload",
1189 "winapi",
1190 ]
1191
1192 [[package]]
1193 name = "num-bigint"
1194 version = "0.4.4"
1195 source = "registry+https://github.com/rust-lang/crates.io-index"
1196 checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
1197 dependencies = [
1198 "autocfg",
1199 "num-integer",
1200 "num-traits",
1201 ]
1202
1203 [[package]]
1204 name = "num-bigint-dig"
1205 version = "0.8.4"
1206 source = "registry+https://github.com/rust-lang/crates.io-index"
1207 checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
1208 dependencies = [
1209 "byteorder",
1210 "lazy_static",
1211 "libm",
1212 "num-integer",
1213 "num-iter",
1214 "num-traits",
1215 "rand",
1216 "smallvec",
1217 "zeroize",
1218 ]
1219
1220 [[package]]
1221 name = "num-integer"
1222 version = "0.1.45"
1223 source = "registry+https://github.com/rust-lang/crates.io-index"
1224 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
1225 dependencies = [
1226 "autocfg",
1227 "num-traits",
1228 ]
1229
1230 [[package]]
1231 name = "num-iter"
1232 version = "0.1.43"
1233 source = "registry+https://github.com/rust-lang/crates.io-index"
1234 checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
1235 dependencies = [
1236 "autocfg",
1237 "num-integer",
1238 "num-traits",
1239 ]
1240
1241 [[package]]
1242 name = "num-traits"
1243 version = "0.2.16"
1244 source = "registry+https://github.com/rust-lang/crates.io-index"
1245 checksum = "f30b0abd723be7e2ffca1272140fac1a2f084c77ec3e123c192b66af1ee9e6c2"
1246 dependencies = [
1247 "autocfg",
1248 "libm",
1249 ]
1250
1251 [[package]]
1252 name = "num_cpus"
1253 version = "1.16.0"
1254 source = "registry+https://github.com/rust-lang/crates.io-index"
1255 checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
1256 dependencies = [
1257 "hermit-abi",
1258 "libc",
1259 ]
1260
1261 [[package]]
1262 name = "object"
1263 version = "0.32.0"
1264 source = "registry+https://github.com/rust-lang/crates.io-index"
1265 checksum = "77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe"
1266 dependencies = [
1267 "memchr",
1268 ]
1269
1270 [[package]]
1271 name = "once_cell"
1272 version = "1.18.0"
1273 source = "registry+https://github.com/rust-lang/crates.io-index"
1274 checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
1275
1276 [[package]]
1277 name = "opaque-debug"
1278 version = "0.3.0"
1279 source = "registry+https://github.com/rust-lang/crates.io-index"
1280 checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
1281
1282 [[package]]
1283 name = "openssl"
1284 version = "0.10.57"
1285 source = "registry+https://github.com/rust-lang/crates.io-index"
1286 checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c"
1287 dependencies = [
1288 "bitflags 2.4.0",
1289 "cfg-if",
1290 "foreign-types",
1291 "libc",
1292 "once_cell",
1293 "openssl-macros",
1294 "openssl-sys",
1295 ]
1296
1297 [[package]]
1298 name = "openssl-macros"
1299 version = "0.1.1"
1300 source = "registry+https://github.com/rust-lang/crates.io-index"
1301 checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
1302 dependencies = [
1303 "proc-macro2",
1304 "quote",
1305 "syn 2.0.29",
1306 ]
1307
1308 [[package]]
1309 name = "openssl-probe"
1310 version = "0.1.5"
1311 source = "registry+https://github.com/rust-lang/crates.io-index"
1312 checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
1313
1314 [[package]]
1315 name = "openssl-sys"
1316 version = "0.9.92"
1317 source = "registry+https://github.com/rust-lang/crates.io-index"
1318 checksum = "db7e971c2c2bba161b2d2fdf37080177eff520b3bc044787c7f1f5f9e78d869b"
1319 dependencies = [
1320 "cc",
1321 "libc",
1322 "pkg-config",
1323 "vcpkg",
1324 ]
1325
1326 [[package]]
1327 name = "overload"
1328 version = "0.1.1"
1329 source = "registry+https://github.com/rust-lang/crates.io-index"
1330 checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
1331
1332 [[package]]
1333 name = "parking_lot"
1334 version = "0.12.1"
1335 source = "registry+https://github.com/rust-lang/crates.io-index"
1336 checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
1337 dependencies = [
1338 "lock_api",
1339 "parking_lot_core",
1340 ]
1341
1342 [[package]]
1343 name = "parking_lot_core"
1344 version = "0.9.8"
1345 source = "registry+https://github.com/rust-lang/crates.io-index"
1346 checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
1347 dependencies = [
1348 "cfg-if",
1349 "libc",
1350 "redox_syscall",
1351 "smallvec",
1352 "windows-targets",
1353 ]
1354
1355 [[package]]
1356 name = "password-hash"
1357 version = "0.5.0"
1358 source = "registry+https://github.com/rust-lang/crates.io-index"
1359 checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
1360 dependencies = [
1361 "base64ct",
1362 "rand_core",
1363 "subtle",
1364 ]
1365
1366 [[package]]
1367 name = "paste"
1368 version = "1.0.14"
1369 source = "registry+https://github.com/rust-lang/crates.io-index"
1370 checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c"
1371
1372 [[package]]
1373 name = "pem"
1374 version = "1.1.1"
1375 source = "registry+https://github.com/rust-lang/crates.io-index"
1376 checksum = "a8835c273a76a90455d7344889b0964598e3316e2a79ede8e36f16bdcf2228b8"
1377 dependencies = [
1378 "base64 0.13.1",
1379 ]
1380
1381 [[package]]
1382 name = "pem-rfc7468"
1383 version = "0.7.0"
1384 source = "registry+https://github.com/rust-lang/crates.io-index"
1385 checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
1386 dependencies = [
1387 "base64ct",
1388 ]
1389
1390 [[package]]
1391 name = "percent-encoding"
1392 version = "2.3.0"
1393 source = "registry+https://github.com/rust-lang/crates.io-index"
1394 checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
1395
1396 [[package]]
1397 name = "pin-project"
1398 version = "1.1.3"
1399 source = "registry+https://github.com/rust-lang/crates.io-index"
1400 checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
1401 dependencies = [
1402 "pin-project-internal",
1403 ]
1404
1405 [[package]]
1406 name = "pin-project-internal"
1407 version = "1.1.3"
1408 source = "registry+https://github.com/rust-lang/crates.io-index"
1409 checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
1410 dependencies = [
1411 "proc-macro2",
1412 "quote",
1413 "syn 2.0.29",
1414 ]
1415
1416 [[package]]
1417 name = "pin-project-lite"
1418 version = "0.2.13"
1419 source = "registry+https://github.com/rust-lang/crates.io-index"
1420 checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
1421
1422 [[package]]
1423 name = "pin-utils"
1424 version = "0.1.0"
1425 source = "registry+https://github.com/rust-lang/crates.io-index"
1426 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
1427
1428 [[package]]
1429 name = "pkcs1"
1430 version = "0.7.5"
1431 source = "registry+https://github.com/rust-lang/crates.io-index"
1432 checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
1433 dependencies = [
1434 "der",
1435 "pkcs8",
1436 "spki",
1437 ]
1438
1439 [[package]]
1440 name = "pkcs8"
1441 version = "0.10.2"
1442 source = "registry+https://github.com/rust-lang/crates.io-index"
1443 checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
1444 dependencies = [
1445 "der",
1446 "spki",
1447 ]
1448
1449 [[package]]
1450 name = "pkg-config"
1451 version = "0.3.27"
1452 source = "registry+https://github.com/rust-lang/crates.io-index"
1453 checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
1454
1455 [[package]]
1456 name = "polyval"
1457 version = "0.6.1"
1458 source = "registry+https://github.com/rust-lang/crates.io-index"
1459 checksum = "d52cff9d1d4dee5fe6d03729099f4a310a41179e0a10dbf542039873f2e826fb"
1460 dependencies = [
1461 "cfg-if",
1462 "cpufeatures",
1463 "opaque-debug",
1464 "universal-hash",
1465 ]
1466
1467 [[package]]
1468 name = "ppv-lite86"
1469 version = "0.2.17"
1470 source = "registry+https://github.com/rust-lang/crates.io-index"
1471 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
1472
1473 [[package]]
1474 name = "proc-macro2"
1475 version = "1.0.66"
1476 source = "registry+https://github.com/rust-lang/crates.io-index"
1477 checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9"
1478 dependencies = [
1479 "unicode-ident",
1480 ]
1481
1482 [[package]]
1483 name = "quote"
1484 version = "1.0.33"
1485 source = "registry+https://github.com/rust-lang/crates.io-index"
1486 checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
1487 dependencies = [
1488 "proc-macro2",
1489 ]
1490
1491 [[package]]
1492 name = "rand"
1493 version = "0.8.5"
1494 source = "registry+https://github.com/rust-lang/crates.io-index"
1495 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
1496 dependencies = [
1497 "libc",
1498 "rand_chacha",
1499 "rand_core",
1500 ]
1501
1502 [[package]]
1503 name = "rand_chacha"
1504 version = "0.3.1"
1505 source = "registry+https://github.com/rust-lang/crates.io-index"
1506 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
1507 dependencies = [
1508 "ppv-lite86",
1509 "rand_core",
1510 ]
1511
1512 [[package]]
1513 name = "rand_core"
1514 version = "0.6.4"
1515 source = "registry+https://github.com/rust-lang/crates.io-index"
1516 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
1517 dependencies = [
1518 "getrandom",
1519 ]
1520
1521 [[package]]
1522 name = "redox_syscall"
1523 version = "0.3.5"
1524 source = "registry+https://github.com/rust-lang/crates.io-index"
1525 checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
1526 dependencies = [
1527 "bitflags 1.3.2",
1528 ]
1529
1530 [[package]]
1531 name = "reqwest"
1532 version = "0.11.20"
1533 source = "registry+https://github.com/rust-lang/crates.io-index"
1534 checksum = "3e9ad3fe7488d7e34558a2033d45a0c90b72d97b4f80705666fea71472e2e6a1"
1535 dependencies = [
1536 "base64 0.21.3",
1537 "bytes",
1538 "encoding_rs",
1539 "futures-core",
1540 "futures-util",
1541 "h2",
1542 "http",
1543 "http-body",
1544 "hyper",
1545 "hyper-tls",
1546 "ipnet",
1547 "js-sys",
1548 "log",
1549 "mime",
1550 "native-tls",
1551 "once_cell",
1552 "percent-encoding",
1553 "pin-project-lite",
1554 "serde",
1555 "serde_json",
1556 "serde_urlencoded",
1557 "tokio",
1558 "tokio-native-tls",
1559 "tower-service",
1560 "url",
1561 "wasm-bindgen",
1562 "wasm-bindgen-futures",
1563 "web-sys",
1564 "winreg",
1565 ]
1566
1567 [[package]]
1568 name = "retain_mut"
1569 version = "0.1.9"
1570 source = "registry+https://github.com/rust-lang/crates.io-index"
1571 checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
1572
1573 [[package]]
1574 name = "ring"
1575 version = "0.16.20"
1576 source = "registry+https://github.com/rust-lang/crates.io-index"
1577 checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
1578 dependencies = [
1579 "cc",
1580 "libc",
1581 "once_cell",
1582 "spin 0.5.2",
1583 "untrusted",
1584 "web-sys",
1585 "winapi",
1586 ]
1587
1588 [[package]]
1589 name = "rsa"
1590 version = "0.9.2"
1591 source = "registry+https://github.com/rust-lang/crates.io-index"
1592 checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8"
1593 dependencies = [
1594 "byteorder",
1595 "const-oid",
1596 "digest",
1597 "num-bigint-dig",
1598 "num-integer",
1599 "num-iter",
1600 "num-traits",
1601 "pkcs1",
1602 "pkcs8",
1603 "rand_core",
1604 "sha2",
1605 "signature",
1606 "spki",
1607 "subtle",
1608 "zeroize",
1609 ]
1610
1611 [[package]]
1612 name = "rustc-demangle"
1613 version = "0.1.23"
1614 source = "registry+https://github.com/rust-lang/crates.io-index"
1615 checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
1616
1617 [[package]]
1618 name = "rustix"
1619 version = "0.38.10"
1620 source = "registry+https://github.com/rust-lang/crates.io-index"
1621 checksum = "ed6248e1caa625eb708e266e06159f135e8c26f2bb7ceb72dc4b2766d0340964"
1622 dependencies = [
1623 "bitflags 2.4.0",
1624 "errno",
1625 "libc",
1626 "linux-raw-sys",
1627 "windows-sys",
1628 ]
1629
1630 [[package]]
1631 name = "rustls"
1632 version = "0.21.7"
1633 source = "registry+https://github.com/rust-lang/crates.io-index"
1634 checksum = "cd8d6c9f025a446bc4d18ad9632e69aec8f287aa84499ee335599fabd20c3fd8"
1635 dependencies = [
1636 "log",
1637 "ring",
1638 "rustls-webpki",
1639 "sct",
1640 ]
1641
1642 [[package]]
1643 name = "rustls-native-certs"
1644 version = "0.6.3"
1645 source = "registry+https://github.com/rust-lang/crates.io-index"
1646 checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
1647 dependencies = [
1648 "openssl-probe",
1649 "rustls-pemfile",
1650 "schannel",
1651 "security-framework",
1652 ]
1653
1654 [[package]]
1655 name = "rustls-pemfile"
1656 version = "1.0.3"
1657 source = "registry+https://github.com/rust-lang/crates.io-index"
1658 checksum = "2d3987094b1d07b653b7dfdc3f70ce9a1da9c51ac18c1b06b662e4f9a0e9f4b2"
1659 dependencies = [
1660 "base64 0.21.3",
1661 ]
1662
1663 [[package]]
1664 name = "rustls-webpki"
1665 version = "0.101.4"
1666 source = "registry+https://github.com/rust-lang/crates.io-index"
1667 checksum = "7d93931baf2d282fff8d3a532bbfd7653f734643161b87e3e01e59a04439bf0d"
1668 dependencies = [
1669 "ring",
1670 "untrusted",
1671 ]
1672
1673 [[package]]
1674 name = "ryu"
1675 version = "1.0.15"
1676 source = "registry+https://github.com/rust-lang/crates.io-index"
1677 checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
1678
1679 [[package]]
1680 name = "schannel"
1681 version = "0.1.22"
1682 source = "registry+https://github.com/rust-lang/crates.io-index"
1683 checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
1684 dependencies = [
1685 "windows-sys",
1686 ]
1687
1688 [[package]]
1689 name = "scopeguard"
1690 version = "1.2.0"
1691 source = "registry+https://github.com/rust-lang/crates.io-index"
1692 checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
1693
1694 [[package]]
1695 name = "sct"
1696 version = "0.7.0"
1697 source = "registry+https://github.com/rust-lang/crates.io-index"
1698 checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
1699 dependencies = [
1700 "ring",
1701 "untrusted",
1702 ]
1703
1704 [[package]]
1705 name = "security-framework"
1706 version = "2.9.2"
1707 source = "registry+https://github.com/rust-lang/crates.io-index"
1708 checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
1709 dependencies = [
1710 "bitflags 1.3.2",
1711 "core-foundation",
1712 "core-foundation-sys",
1713 "libc",
1714 "security-framework-sys",
1715 ]
1716
1717 [[package]]
1718 name = "security-framework-sys"
1719 version = "2.9.1"
1720 source = "registry+https://github.com/rust-lang/crates.io-index"
1721 checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
1722 dependencies = [
1723 "core-foundation-sys",
1724 "libc",
1725 ]
1726
1727 [[package]]
1728 name = "semver"
1729 version = "1.0.18"
1730 source = "registry+https://github.com/rust-lang/crates.io-index"
1731 checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918"
1732 dependencies = [
1733 "serde",
1734 ]
1735
1736 [[package]]
1737 name = "serde"
1738 version = "1.0.188"
1739 source = "registry+https://github.com/rust-lang/crates.io-index"
1740 checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
1741 dependencies = [
1742 "serde_derive",
1743 ]
1744
1745 [[package]]
1746 name = "serde_derive"
1747 version = "1.0.188"
1748 source = "registry+https://github.com/rust-lang/crates.io-index"
1749 checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
1750 dependencies = [
1751 "proc-macro2",
1752 "quote",
1753 "syn 2.0.29",
1754 ]
1755
1756 [[package]]
1757 name = "serde_json"
1758 version = "1.0.105"
1759 source = "registry+https://github.com/rust-lang/crates.io-index"
1760 checksum = "693151e1ac27563d6dbcec9dee9fbd5da8539b20fa14ad3752b2e6d363ace360"
1761 dependencies = [
1762 "itoa",
1763 "ryu",
1764 "serde",
1765 ]
1766
1767 [[package]]
1768 name = "serde_spanned"
1769 version = "0.6.3"
1770 source = "registry+https://github.com/rust-lang/crates.io-index"
1771 checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
1772 dependencies = [
1773 "serde",
1774 ]
1775
1776 [[package]]
1777 name = "serde_urlencoded"
1778 version = "0.7.1"
1779 source = "registry+https://github.com/rust-lang/crates.io-index"
1780 checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
1781 dependencies = [
1782 "form_urlencoded",
1783 "itoa",
1784 "ryu",
1785 "serde",
1786 ]
1787
1788 [[package]]
1789 name = "sha1"
1790 version = "0.10.5"
1791 source = "registry+https://github.com/rust-lang/crates.io-index"
1792 checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
1793 dependencies = [
1794 "cfg-if",
1795 "cpufeatures",
1796 "digest",
1797 ]
1798
1799 [[package]]
1800 name = "sha2"
1801 version = "0.10.7"
1802 source = "registry+https://github.com/rust-lang/crates.io-index"
1803 checksum = "479fb9d862239e610720565ca91403019f2f00410f1864c5aa7479b950a76ed8"
1804 dependencies = [
1805 "cfg-if",
1806 "cpufeatures",
1807 "digest",
1808 ]
1809
1810 [[package]]
1811 name = "sharded-slab"
1812 version = "0.1.4"
1813 source = "registry+https://github.com/rust-lang/crates.io-index"
1814 checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
1815 dependencies = [
1816 "lazy_static",
1817 ]
1818
1819 [[package]]
1820 name = "signal-hook-registry"
1821 version = "1.4.1"
1822 source = "registry+https://github.com/rust-lang/crates.io-index"
1823 checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
1824 dependencies = [
1825 "libc",
1826 ]
1827
1828 [[package]]
1829 name = "signature"
1830 version = "2.1.0"
1831 source = "registry+https://github.com/rust-lang/crates.io-index"
1832 checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500"
1833 dependencies = [
1834 "digest",
1835 "rand_core",
1836 ]
1837
1838 [[package]]
1839 name = "simple_asn1"
1840 version = "0.6.2"
1841 source = "registry+https://github.com/rust-lang/crates.io-index"
1842 checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
1843 dependencies = [
1844 "num-bigint",
1845 "num-traits",
1846 "thiserror",
1847 "time 0.3.28",
1848 ]
1849
1850 [[package]]
1851 name = "slab"
1852 version = "0.4.9"
1853 source = "registry+https://github.com/rust-lang/crates.io-index"
1854 checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
1855 dependencies = [
1856 "autocfg",
1857 ]
1858
1859 [[package]]
1860 name = "smallvec"
1861 version = "1.11.0"
1862 source = "registry+https://github.com/rust-lang/crates.io-index"
1863 checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9"
1864
1865 [[package]]
1866 name = "socket2"
1867 version = "0.4.9"
1868 source = "registry+https://github.com/rust-lang/crates.io-index"
1869 checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
1870 dependencies = [
1871 "libc",
1872 "winapi",
1873 ]
1874
1875 [[package]]
1876 name = "socket2"
1877 version = "0.5.3"
1878 source = "registry+https://github.com/rust-lang/crates.io-index"
1879 checksum = "2538b18701741680e0322a2302176d3253a35388e2e62f172f64f4f16605f877"
1880 dependencies = [
1881 "libc",
1882 "windows-sys",
1883 ]
1884
1885 [[package]]
1886 name = "spin"
1887 version = "0.5.2"
1888 source = "registry+https://github.com/rust-lang/crates.io-index"
1889 checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
1890
1891 [[package]]
1892 name = "spin"
1893 version = "0.9.8"
1894 source = "registry+https://github.com/rust-lang/crates.io-index"
1895 checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
1896 dependencies = [
1897 "lock_api",
1898 ]
1899
1900 [[package]]
1901 name = "spki"
1902 version = "0.7.2"
1903 source = "registry+https://github.com/rust-lang/crates.io-index"
1904 checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
1905 dependencies = [
1906 "base64ct",
1907 "der",
1908 ]
1909
1910 [[package]]
1911 name = "sqlformat"
1912 version = "0.2.1"
1913 source = "registry+https://github.com/rust-lang/crates.io-index"
1914 checksum = "0c12bc9199d1db8234678b7051747c07f517cdcf019262d1847b94ec8b1aee3e"
1915 dependencies = [
1916 "itertools",
1917 "nom",
1918 "unicode_categories",
1919 ]
1920
1921 [[package]]
1922 name = "sqlx"
1923 version = "0.7.1"
1924 source = "registry+https://github.com/rust-lang/crates.io-index"
1925 checksum = "8e58421b6bc416714d5115a2ca953718f6c621a51b68e4f4922aea5a4391a721"
1926 dependencies = [
1927 "sqlx-core",
1928 "sqlx-macros",
1929 "sqlx-mysql",
1930 "sqlx-postgres",
1931 "sqlx-sqlite",
1932 ]
1933
1934 [[package]]
1935 name = "sqlx-core"
1936 version = "0.7.1"
1937 source = "registry+https://github.com/rust-lang/crates.io-index"
1938 checksum = "dd4cef4251aabbae751a3710927945901ee1d97ee96d757f6880ebb9a79bfd53"
1939 dependencies = [
1940 "ahash",
1941 "atoi",
1942 "byteorder",
1943 "bytes",
1944 "chrono",
1945 "crc",
1946 "crossbeam-queue",
1947 "dotenvy",
1948 "either",
1949 "event-listener",
1950 "futures-channel",
1951 "futures-core",
1952 "futures-intrusive",
1953 "futures-io",
1954 "futures-util",
1955 "hashlink",
1956 "hex",
1957 "indexmap 2.0.0",
1958 "log",
1959 "memchr",
1960 "native-tls",
1961 "once_cell",
1962 "paste",
1963 "percent-encoding",
1964 "serde",
1965 "serde_json",
1966 "sha2",
1967 "smallvec",
1968 "sqlformat",
1969 "thiserror",
1970 "tokio",
1971 "tokio-stream",
1972 "tracing",
1973 "url",
1974 ]
1975
1976 [[package]]
1977 name = "sqlx-macros"
1978 version = "0.7.1"
1979 source = "registry+https://github.com/rust-lang/crates.io-index"
1980 checksum = "208e3165167afd7f3881b16c1ef3f2af69fa75980897aac8874a0696516d12c2"
1981 dependencies = [
1982 "proc-macro2",
1983 "quote",
1984 "sqlx-core",
1985 "sqlx-macros-core",
1986 "syn 1.0.109",
1987 ]
1988
1989 [[package]]
1990 name = "sqlx-macros-core"
1991 version = "0.7.1"
1992 source = "registry+https://github.com/rust-lang/crates.io-index"
1993 checksum = "8a4a8336d278c62231d87f24e8a7a74898156e34c1c18942857be2acb29c7dfc"
1994 dependencies = [
1995 "dotenvy",
1996 "either",
1997 "heck",
1998 "hex",
1999 "once_cell",
2000 "proc-macro2",
2001 "quote",
2002 "serde",
2003 "serde_json",
2004 "sha2",
2005 "sqlx-core",
2006 "sqlx-mysql",
2007 "sqlx-postgres",
2008 "sqlx-sqlite",
2009 "syn 1.0.109",
2010 "tempfile",
2011 "tokio",
2012 "url",
2013 ]
2014
2015 [[package]]
2016 name = "sqlx-mysql"
2017 version = "0.7.1"
2018 source = "registry+https://github.com/rust-lang/crates.io-index"
2019 checksum = "8ca69bf415b93b60b80dc8fda3cb4ef52b2336614d8da2de5456cc942a110482"
2020 dependencies = [
2021 "atoi",
2022 "base64 0.21.3",
2023 "bitflags 2.4.0",
2024 "byteorder",
2025 "bytes",
2026 "chrono",
2027 "crc",
2028 "digest",
2029 "dotenvy",
2030 "either",
2031 "futures-channel",
2032 "futures-core",
2033 "futures-io",
2034 "futures-util",
2035 "generic-array",
2036 "hex",
2037 "hkdf",
2038 "hmac",
2039 "itoa",
2040 "log",
2041 "md-5",
2042 "memchr",
2043 "once_cell",
2044 "percent-encoding",
2045 "rand",
2046 "rsa",
2047 "serde",
2048 "sha1",
2049 "sha2",
2050 "smallvec",
2051 "sqlx-core",
2052 "stringprep",
2053 "thiserror",
2054 "tracing",
2055 "whoami",
2056 ]
2057
2058 [[package]]
2059 name = "sqlx-postgres"
2060 version = "0.7.1"
2061 source = "registry+https://github.com/rust-lang/crates.io-index"
2062 checksum = "a0db2df1b8731c3651e204629dd55e52adbae0462fa1bdcbed56a2302c18181e"
2063 dependencies = [
2064 "atoi",
2065 "base64 0.21.3",
2066 "bitflags 2.4.0",
2067 "byteorder",
2068 "chrono",
2069 "crc",
2070 "dotenvy",
2071 "etcetera",
2072 "futures-channel",
2073 "futures-core",
2074 "futures-io",
2075 "futures-util",
2076 "hex",
2077 "hkdf",
2078 "hmac",
2079 "home",
2080 "itoa",
2081 "log",
2082 "md-5",
2083 "memchr",
2084 "once_cell",
2085 "rand",
2086 "serde",
2087 "serde_json",
2088 "sha1",
2089 "sha2",
2090 "smallvec",
2091 "sqlx-core",
2092 "stringprep",
2093 "thiserror",
2094 "tracing",
2095 "whoami",
2096 ]
2097
2098 [[package]]
2099 name = "sqlx-sqlite"
2100 version = "0.7.1"
2101 source = "registry+https://github.com/rust-lang/crates.io-index"
2102 checksum = "be4c21bf34c7cae5b283efb3ac1bcc7670df7561124dc2f8bdc0b59be40f79a2"
2103 dependencies = [
2104 "atoi",
2105 "chrono",
2106 "flume",
2107 "futures-channel",
2108 "futures-core",
2109 "futures-executor",
2110 "futures-intrusive",
2111 "futures-util",
2112 "libsqlite3-sys",
2113 "log",
2114 "percent-encoding",
2115 "serde",
2116 "sqlx-core",
2117 "tracing",
2118 "url",
2119 ]
2120
2121 [[package]]
2122 name = "stringprep"
2123 version = "0.1.3"
2124 source = "registry+https://github.com/rust-lang/crates.io-index"
2125 checksum = "db3737bde7edce97102e0e2b15365bf7a20bfdb5f60f4f9e8d7004258a51a8da"
2126 dependencies = [
2127 "unicode-bidi",
2128 "unicode-normalization",
2129 ]
2130
2131 [[package]]
2132 name = "subtle"
2133 version = "2.5.0"
2134 source = "registry+https://github.com/rust-lang/crates.io-index"
2135 checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc"
2136
2137 [[package]]
2138 name = "syn"
2139 version = "1.0.109"
2140 source = "registry+https://github.com/rust-lang/crates.io-index"
2141 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
2142 dependencies = [
2143 "proc-macro2",
2144 "quote",
2145 "unicode-ident",
2146 ]
2147
2148 [[package]]
2149 name = "syn"
2150 version = "2.0.29"
2151 source = "registry+https://github.com/rust-lang/crates.io-index"
2152 checksum = "c324c494eba9d92503e6f1ef2e6df781e78f6a7705a0202d9801b198807d518a"
2153 dependencies = [
2154 "proc-macro2",
2155 "quote",
2156 "unicode-ident",
2157 ]
2158
2159 [[package]]
2160 name = "tempfile"
2161 version = "3.8.0"
2162 source = "registry+https://github.com/rust-lang/crates.io-index"
2163 checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
2164 dependencies = [
2165 "cfg-if",
2166 "fastrand",
2167 "redox_syscall",
2168 "rustix",
2169 "windows-sys",
2170 ]
2171
2172 [[package]]
2173 name = "thiserror"
2174 version = "1.0.47"
2175 source = "registry+https://github.com/rust-lang/crates.io-index"
2176 checksum = "97a802ec30afc17eee47b2855fc72e0c4cd62be9b4efe6591edde0ec5bd68d8f"
2177 dependencies = [
2178 "thiserror-impl",
2179 ]
2180
2181 [[package]]
2182 name = "thiserror-impl"
2183 version = "1.0.47"
2184 source = "registry+https://github.com/rust-lang/crates.io-index"
2185 checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b"
2186 dependencies = [
2187 "proc-macro2",
2188 "quote",
2189 "syn 2.0.29",
2190 ]
2191
2192 [[package]]
2193 name = "thread_local"
2194 version = "1.1.7"
2195 source = "registry+https://github.com/rust-lang/crates.io-index"
2196 checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
2197 dependencies = [
2198 "cfg-if",
2199 "once_cell",
2200 ]
2201
2202 [[package]]
2203 name = "time"
2204 version = "0.1.45"
2205 source = "registry+https://github.com/rust-lang/crates.io-index"
2206 checksum = "1b797afad3f312d1c66a56d11d0316f916356d11bd158fbc6ca6389ff6bf805a"
2207 dependencies = [
2208 "libc",
2209 "wasi 0.10.0+wasi-snapshot-preview1",
2210 "winapi",
2211 ]
2212
2213 [[package]]
2214 name = "time"
2215 version = "0.3.28"
2216 source = "registry+https://github.com/rust-lang/crates.io-index"
2217 checksum = "17f6bb557fd245c28e6411aa56b6403c689ad95061f50e4be16c274e70a17e48"
2218 dependencies = [
2219 "deranged",
2220 "itoa",
2221 "serde",
2222 "time-core",
2223 "time-macros",
2224 ]
2225
2226 [[package]]
2227 name = "time-core"
2228 version = "0.1.1"
2229 source = "registry+https://github.com/rust-lang/crates.io-index"
2230 checksum = "7300fbefb4dadc1af235a9cef3737cea692a9d97e1b9cbcd4ebdae6f8868e6fb"
2231
2232 [[package]]
2233 name = "time-macros"
2234 version = "0.2.14"
2235 source = "registry+https://github.com/rust-lang/crates.io-index"
2236 checksum = "1a942f44339478ef67935ab2bbaec2fb0322496cf3cbe84b261e06ac3814c572"
2237 dependencies = [
2238 "time-core",
2239 ]
2240
2241 [[package]]
2242 name = "tinyvec"
2243 version = "1.6.0"
2244 source = "registry+https://github.com/rust-lang/crates.io-index"
2245 checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2246 dependencies = [
2247 "tinyvec_macros",
2248 ]
2249
2250 [[package]]
2251 name = "tinyvec_macros"
2252 version = "0.1.1"
2253 source = "registry+https://github.com/rust-lang/crates.io-index"
2254 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2255
2256 [[package]]
2257 name = "tokio"
2258 version = "1.32.0"
2259 source = "registry+https://github.com/rust-lang/crates.io-index"
2260 checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
2261 dependencies = [
2262 "backtrace",
2263 "bytes",
2264 "libc",
2265 "mio",
2266 "num_cpus",
2267 "parking_lot",
2268 "pin-project-lite",
2269 "signal-hook-registry",
2270 "socket2 0.5.3",
2271 "tokio-macros",
2272 "windows-sys",
2273 ]
2274
2275 [[package]]
2276 name = "tokio-macros"
2277 version = "2.1.0"
2278 source = "registry+https://github.com/rust-lang/crates.io-index"
2279 checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
2280 dependencies = [
2281 "proc-macro2",
2282 "quote",
2283 "syn 2.0.29",
2284 ]
2285
2286 [[package]]
2287 name = "tokio-native-tls"
2288 version = "0.3.1"
2289 source = "registry+https://github.com/rust-lang/crates.io-index"
2290 checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
2291 dependencies = [
2292 "native-tls",
2293 "tokio",
2294 ]
2295
2296 [[package]]
2297 name = "tokio-rustls"
2298 version = "0.24.1"
2299 source = "registry+https://github.com/rust-lang/crates.io-index"
2300 checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2301 dependencies = [
2302 "rustls",
2303 "tokio",
2304 ]
2305
2306 [[package]]
2307 name = "tokio-stream"
2308 version = "0.1.14"
2309 source = "registry+https://github.com/rust-lang/crates.io-index"
2310 checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
2311 dependencies = [
2312 "futures-core",
2313 "pin-project-lite",
2314 "tokio",
2315 ]
2316
2317 [[package]]
2318 name = "tokio-tungstenite"
2319 version = "0.20.0"
2320 source = "registry+https://github.com/rust-lang/crates.io-index"
2321 checksum = "2b2dbec703c26b00d74844519606ef15d09a7d6857860f84ad223dec002ddea2"
2322 dependencies = [
2323 "futures-util",
2324 "log",
2325 "rustls",
2326 "rustls-native-certs",
2327 "tokio",
2328 "tokio-rustls",
2329 "tungstenite",
2330 ]
2331
2332 [[package]]
2333 name = "tokio-util"
2334 version = "0.7.8"
2335 source = "registry+https://github.com/rust-lang/crates.io-index"
2336 checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d"
2337 dependencies = [
2338 "bytes",
2339 "futures-core",
2340 "futures-sink",
2341 "pin-project-lite",
2342 "tokio",
2343 "tracing",
2344 ]
2345
2346 [[package]]
2347 name = "toml"
2348 version = "0.7.6"
2349 source = "registry+https://github.com/rust-lang/crates.io-index"
2350 checksum = "c17e963a819c331dcacd7ab957d80bc2b9a9c1e71c804826d2f283dd65306542"
2351 dependencies = [
2352 "serde",
2353 "serde_spanned",
2354 "toml_datetime",
2355 "toml_edit",
2356 ]
2357
2358 [[package]]
2359 name = "toml_datetime"
2360 version = "0.6.3"
2361 source = "registry+https://github.com/rust-lang/crates.io-index"
2362 checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
2363 dependencies = [
2364 "serde",
2365 ]
2366
2367 [[package]]
2368 name = "toml_edit"
2369 version = "0.19.14"
2370 source = "registry+https://github.com/rust-lang/crates.io-index"
2371 checksum = "f8123f27e969974a3dfba720fdb560be359f57b44302d280ba72e76a74480e8a"
2372 dependencies = [
2373 "indexmap 2.0.0",
2374 "serde",
2375 "serde_spanned",
2376 "toml_datetime",
2377 "winnow",
2378 ]
2379
2380 [[package]]
2381 name = "tower"
2382 version = "0.4.13"
2383 source = "registry+https://github.com/rust-lang/crates.io-index"
2384 checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
2385 dependencies = [
2386 "tower-layer",
2387 "tower-service",
2388 "tracing",
2389 ]
2390
2391 [[package]]
2392 name = "tower-layer"
2393 version = "0.3.2"
2394 source = "registry+https://github.com/rust-lang/crates.io-index"
2395 checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2396
2397 [[package]]
2398 name = "tower-service"
2399 version = "0.3.2"
2400 source = "registry+https://github.com/rust-lang/crates.io-index"
2401 checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
2402
2403 [[package]]
2404 name = "tracing"
2405 version = "0.1.37"
2406 source = "registry+https://github.com/rust-lang/crates.io-index"
2407 checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
2408 dependencies = [
2409 "cfg-if",
2410 "log",
2411 "pin-project-lite",
2412 "tracing-attributes",
2413 "tracing-core",
2414 ]
2415
2416 [[package]]
2417 name = "tracing-attributes"
2418 version = "0.1.26"
2419 source = "registry+https://github.com/rust-lang/crates.io-index"
2420 checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab"
2421 dependencies = [
2422 "proc-macro2",
2423 "quote",
2424 "syn 2.0.29",
2425 ]
2426
2427 [[package]]
2428 name = "tracing-core"
2429 version = "0.1.31"
2430 source = "registry+https://github.com/rust-lang/crates.io-index"
2431 checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
2432 dependencies = [
2433 "once_cell",
2434 "valuable",
2435 ]
2436
2437 [[package]]
2438 name = "tracing-log"
2439 version = "0.1.3"
2440 source = "registry+https://github.com/rust-lang/crates.io-index"
2441 checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922"
2442 dependencies = [
2443 "lazy_static",
2444 "log",
2445 "tracing-core",
2446 ]
2447
2448 [[package]]
2449 name = "tracing-subscriber"
2450 version = "0.3.17"
2451 source = "registry+https://github.com/rust-lang/crates.io-index"
2452 checksum = "30a651bc37f915e81f087d86e62a18eec5f79550c7faff886f7090b4ea757c77"
2453 dependencies = [
2454 "nu-ansi-term",
2455 "sharded-slab",
2456 "smallvec",
2457 "thread_local",
2458 "tracing-core",
2459 "tracing-log",
2460 ]
2461
2462 [[package]]
2463 name = "try-lock"
2464 version = "0.2.4"
2465 source = "registry+https://github.com/rust-lang/crates.io-index"
2466 checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"
2467
2468 [[package]]
2469 name = "tungstenite"
2470 version = "0.20.0"
2471 source = "registry+https://github.com/rust-lang/crates.io-index"
2472 checksum = "e862a1c4128df0112ab625f55cd5c934bcb4312ba80b39ae4b4835a3fd58e649"
2473 dependencies = [
2474 "byteorder",
2475 "bytes",
2476 "data-encoding",
2477 "http",
2478 "httparse",
2479 "log",
2480 "rand",
2481 "rustls",
2482 "sha1",
2483 "thiserror",
2484 "url",
2485 "utf-8",
2486 ]
2487
2488 [[package]]
2489 name = "typenum"
2490 version = "1.16.0"
2491 source = "registry+https://github.com/rust-lang/crates.io-index"
2492 checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
2493
2494 [[package]]
2495 name = "unicode-bidi"
2496 version = "0.3.13"
2497 source = "registry+https://github.com/rust-lang/crates.io-index"
2498 checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
2499
2500 [[package]]
2501 name = "unicode-ident"
2502 version = "1.0.11"
2503 source = "registry+https://github.com/rust-lang/crates.io-index"
2504 checksum = "301abaae475aa91687eb82514b328ab47a211a533026cb25fc3e519b86adfc3c"
2505
2506 [[package]]
2507 name = "unicode-normalization"
2508 version = "0.1.22"
2509 source = "registry+https://github.com/rust-lang/crates.io-index"
2510 checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
2511 dependencies = [
2512 "tinyvec",
2513 ]
2514
2515 [[package]]
2516 name = "unicode-segmentation"
2517 version = "1.10.1"
2518 source = "registry+https://github.com/rust-lang/crates.io-index"
2519 checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
2520
2521 [[package]]
2522 name = "unicode_categories"
2523 version = "0.1.1"
2524 source = "registry+https://github.com/rust-lang/crates.io-index"
2525 checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2526
2527 [[package]]
2528 name = "universal-hash"
2529 version = "0.5.1"
2530 source = "registry+https://github.com/rust-lang/crates.io-index"
2531 checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
2532 dependencies = [
2533 "crypto-common",
2534 "subtle",
2535 ]
2536
2537 [[package]]
2538 name = "untrusted"
2539 version = "0.7.1"
2540 source = "registry+https://github.com/rust-lang/crates.io-index"
2541 checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
2542
2543 [[package]]
2544 name = "url"
2545 version = "2.4.1"
2546 source = "registry+https://github.com/rust-lang/crates.io-index"
2547 checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
2548 dependencies = [
2549 "form_urlencoded",
2550 "idna",
2551 "percent-encoding",
2552 ]
2553
2554 [[package]]
2555 name = "utf-8"
2556 version = "0.7.6"
2557 source = "registry+https://github.com/rust-lang/crates.io-index"
2558 checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
2559
2560 [[package]]
2561 name = "valuable"
2562 version = "0.1.0"
2563 source = "registry+https://github.com/rust-lang/crates.io-index"
2564 checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2565
2566 [[package]]
2567 name = "vcpkg"
2568 version = "0.2.15"
2569 source = "registry+https://github.com/rust-lang/crates.io-index"
2570 checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2571
2572 [[package]]
2573 name = "version_check"
2574 version = "0.9.4"
2575 source = "registry+https://github.com/rust-lang/crates.io-index"
2576 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2577
2578 [[package]]
2579 name = "want"
2580 version = "0.3.1"
2581 source = "registry+https://github.com/rust-lang/crates.io-index"
2582 checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
2583 dependencies = [
2584 "try-lock",
2585 ]
2586
2587 [[package]]
2588 name = "wasi"
2589 version = "0.10.0+wasi-snapshot-preview1"
2590 source = "registry+https://github.com/rust-lang/crates.io-index"
2591 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2592
2593 [[package]]
2594 name = "wasi"
2595 version = "0.11.0+wasi-snapshot-preview1"
2596 source = "registry+https://github.com/rust-lang/crates.io-index"
2597 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2598
2599 [[package]]
2600 name = "wasm-bindgen"
2601 version = "0.2.87"
2602 source = "registry+https://github.com/rust-lang/crates.io-index"
2603 checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
2604 dependencies = [
2605 "cfg-if",
2606 "wasm-bindgen-macro",
2607 ]
2608
2609 [[package]]
2610 name = "wasm-bindgen-backend"
2611 version = "0.2.87"
2612 source = "registry+https://github.com/rust-lang/crates.io-index"
2613 checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
2614 dependencies = [
2615 "bumpalo",
2616 "log",
2617 "once_cell",
2618 "proc-macro2",
2619 "quote",
2620 "syn 2.0.29",
2621 "wasm-bindgen-shared",
2622 ]
2623
2624 [[package]]
2625 name = "wasm-bindgen-futures"
2626 version = "0.4.37"
2627 source = "registry+https://github.com/rust-lang/crates.io-index"
2628 checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
2629 dependencies = [
2630 "cfg-if",
2631 "js-sys",
2632 "wasm-bindgen",
2633 "web-sys",
2634 ]
2635
2636 [[package]]
2637 name = "wasm-bindgen-macro"
2638 version = "0.2.87"
2639 source = "registry+https://github.com/rust-lang/crates.io-index"
2640 checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"
2641 dependencies = [
2642 "quote",
2643 "wasm-bindgen-macro-support",
2644 ]
2645
2646 [[package]]
2647 name = "wasm-bindgen-macro-support"
2648 version = "0.2.87"
2649 source = "registry+https://github.com/rust-lang/crates.io-index"
2650 checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b"
2651 dependencies = [
2652 "proc-macro2",
2653 "quote",
2654 "syn 2.0.29",
2655 "wasm-bindgen-backend",
2656 "wasm-bindgen-shared",
2657 ]
2658
2659 [[package]]
2660 name = "wasm-bindgen-shared"
2661 version = "0.2.87"
2662 source = "registry+https://github.com/rust-lang/crates.io-index"
2663 checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1"
2664
2665 [[package]]
2666 name = "web-sys"
2667 version = "0.3.64"
2668 source = "registry+https://github.com/rust-lang/crates.io-index"
2669 checksum = "9b85cbef8c220a6abc02aefd892dfc0fc23afb1c6a426316ec33253a3877249b"
2670 dependencies = [
2671 "js-sys",
2672 "wasm-bindgen",
2673 ]
2674
2675 [[package]]
2676 name = "whoami"
2677 version = "1.4.1"
2678 source = "registry+https://github.com/rust-lang/crates.io-index"
2679 checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50"
2680
2681 [[package]]
2682 name = "winapi"
2683 version = "0.3.9"
2684 source = "registry+https://github.com/rust-lang/crates.io-index"
2685 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2686 dependencies = [
2687 "winapi-i686-pc-windows-gnu",
2688 "winapi-x86_64-pc-windows-gnu",
2689 ]
2690
2691 [[package]]
2692 name = "winapi-i686-pc-windows-gnu"
2693 version = "0.4.0"
2694 source = "registry+https://github.com/rust-lang/crates.io-index"
2695 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2696
2697 [[package]]
2698 name = "winapi-x86_64-pc-windows-gnu"
2699 version = "0.4.0"
2700 source = "registry+https://github.com/rust-lang/crates.io-index"
2701 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2702
2703 [[package]]
2704 name = "windows"
2705 version = "0.48.0"
2706 source = "registry+https://github.com/rust-lang/crates.io-index"
2707 checksum = "e686886bc078bc1b0b600cac0147aadb815089b6e4da64016cbd754b6342700f"
2708 dependencies = [
2709 "windows-targets",
2710 ]
2711
2712 [[package]]
2713 name = "windows-sys"
2714 version = "0.48.0"
2715 source = "registry+https://github.com/rust-lang/crates.io-index"
2716 checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
2717 dependencies = [
2718 "windows-targets",
2719 ]
2720
2721 [[package]]
2722 name = "windows-targets"
2723 version = "0.48.5"
2724 source = "registry+https://github.com/rust-lang/crates.io-index"
2725 checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
2726 dependencies = [
2727 "windows_aarch64_gnullvm",
2728 "windows_aarch64_msvc",
2729 "windows_i686_gnu",
2730 "windows_i686_msvc",
2731 "windows_x86_64_gnu",
2732 "windows_x86_64_gnullvm",
2733 "windows_x86_64_msvc",
2734 ]
2735
2736 [[package]]
2737 name = "windows_aarch64_gnullvm"
2738 version = "0.48.5"
2739 source = "registry+https://github.com/rust-lang/crates.io-index"
2740 checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2741
2742 [[package]]
2743 name = "windows_aarch64_msvc"
2744 version = "0.48.5"
2745 source = "registry+https://github.com/rust-lang/crates.io-index"
2746 checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2747
2748 [[package]]
2749 name = "windows_i686_gnu"
2750 version = "0.48.5"
2751 source = "registry+https://github.com/rust-lang/crates.io-index"
2752 checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2753
2754 [[package]]
2755 name = "windows_i686_msvc"
2756 version = "0.48.5"
2757 source = "registry+https://github.com/rust-lang/crates.io-index"
2758 checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2759
2760 [[package]]
2761 name = "windows_x86_64_gnu"
2762 version = "0.48.5"
2763 source = "registry+https://github.com/rust-lang/crates.io-index"
2764 checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2765
2766 [[package]]
2767 name = "windows_x86_64_gnullvm"
2768 version = "0.48.5"
2769 source = "registry+https://github.com/rust-lang/crates.io-index"
2770 checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2771
2772 [[package]]
2773 name = "windows_x86_64_msvc"
2774 version = "0.48.5"
2775 source = "registry+https://github.com/rust-lang/crates.io-index"
2776 checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2777
2778 [[package]]
2779 name = "winnow"
2780 version = "0.5.15"
2781 source = "registry+https://github.com/rust-lang/crates.io-index"
2782 checksum = "7c2e3184b9c4e92ad5167ca73039d0c42476302ab603e2fec4487511f38ccefc"
2783 dependencies = [
2784 "memchr",
2785 ]
2786
2787 [[package]]
2788 name = "winreg"
2789 version = "0.50.0"
2790 source = "registry+https://github.com/rust-lang/crates.io-index"
2791 checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
2792 dependencies = [
2793 "cfg-if",
2794 "windows-sys",
2795 ]
2796
2797 [[package]]
2798 name = "zeroize"
2799 version = "1.6.0"
2800 source = "registry+https://github.com/rust-lang/crates.io-index"
2801 checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9"