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

ambee/giterated

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

Fix authenticated endpoints

Amber - ⁨2⁩ years ago

parent: tbd commit: ⁨1400b06

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