diff options
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 950 |
1 files changed, 937 insertions, 13 deletions
@@ -29,6 +29,18 @@ dependencies = [ | |||
29 | ] | 29 | ] |
30 | 30 | ||
31 | [[package]] | 31 | [[package]] |
32 | name = "ahash" | ||
33 | version = "0.8.3" | ||
34 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
35 | checksum = "2c99f64d1e06488f620f932677e24bc6e2897582980441ae90a671415bd7ec2f" | ||
36 | dependencies = [ | ||
37 | "cfg-if", | ||
38 | "getrandom", | ||
39 | "once_cell", | ||
40 | "version_check", | ||
41 | ] | ||
42 | |||
43 | [[package]] | ||
32 | name = "aho-corasick" | 44 | name = "aho-corasick" |
33 | version = "1.1.1" | 45 | version = "1.1.1" |
34 | source = "registry+https://github.com/rust-lang/crates.io-index" | 46 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -38,6 +50,12 @@ dependencies = [ | |||
38 | ] | 50 | ] |
39 | 51 | ||
40 | [[package]] | 52 | [[package]] |
53 | name = "allocator-api2" | ||
54 | version = "0.2.16" | ||
55 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
56 | checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" | ||
57 | |||
58 | [[package]] | ||
41 | name = "async-trait" | 59 | name = "async-trait" |
42 | version = "0.1.73" | 60 | version = "0.1.73" |
43 | source = "registry+https://github.com/rust-lang/crates.io-index" | 61 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -45,10 +63,25 @@ checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" | |||
45 | dependencies = [ | 63 | dependencies = [ |
46 | "proc-macro2", | 64 | "proc-macro2", |
47 | "quote", | 65 | "quote", |
48 | "syn", | 66 | "syn 2.0.38", |
49 | ] | 67 | ] |
50 | 68 | ||
51 | [[package]] | 69 | [[package]] |
70 | name = "atoi" | ||
71 | version = "2.0.0" | ||
72 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
73 | checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528" | ||
74 | dependencies = [ | ||
75 | "num-traits", | ||
76 | ] | ||
77 | |||
78 | [[package]] | ||
79 | name = "autocfg" | ||
80 | version = "1.1.0" | ||
81 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
82 | checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" | ||
83 | |||
84 | [[package]] | ||
52 | name = "axum" | 85 | name = "axum" |
53 | version = "0.6.20" | 86 | version = "0.6.20" |
54 | source = "registry+https://github.com/rust-lang/crates.io-index" | 87 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -56,7 +89,7 @@ checksum = "3b829e4e32b91e643de6eafe82b1d90675f5874230191a4ffbc1b336dec4d6bf" | |||
56 | dependencies = [ | 89 | dependencies = [ |
57 | "async-trait", | 90 | "async-trait", |
58 | "axum-core", | 91 | "axum-core", |
59 | "bitflags", | 92 | "bitflags 1.3.2", |
60 | "bytes", | 93 | "bytes", |
61 | "futures-util", | 94 | "futures-util", |
62 | "headers", | 95 | "headers", |
@@ -79,7 +112,6 @@ dependencies = [ | |||
79 | "tower", | 112 | "tower", |
80 | "tower-layer", | 113 | "tower-layer", |
81 | "tower-service", | 114 | "tower-service", |
82 | "tracing", | ||
83 | ] | 115 | ] |
84 | 116 | ||
85 | [[package]] | 117 | [[package]] |
@@ -97,7 +129,6 @@ dependencies = [ | |||
97 | "rustversion", | 129 | "rustversion", |
98 | "tower-layer", | 130 | "tower-layer", |
99 | "tower-service", | 131 | "tower-service", |
100 | "tracing", | ||
101 | ] | 132 | ] |
102 | 133 | ||
103 | [[package]] | 134 | [[package]] |
@@ -128,12 +159,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
128 | checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" | 159 | checksum = "9ba43ea6f343b788c8764558649e08df62f86c6ef251fdaeb1ffd010a9ae50a2" |
129 | 160 | ||
130 | [[package]] | 161 | [[package]] |
162 | name = "base64ct" | ||
163 | version = "1.6.0" | ||
164 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
165 | checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b" | ||
166 | |||
167 | [[package]] | ||
131 | name = "bitflags" | 168 | name = "bitflags" |
132 | version = "1.3.2" | 169 | version = "1.3.2" |
133 | source = "registry+https://github.com/rust-lang/crates.io-index" | 170 | source = "registry+https://github.com/rust-lang/crates.io-index" |
134 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | 171 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
135 | 172 | ||
136 | [[package]] | 173 | [[package]] |
174 | name = "bitflags" | ||
175 | version = "2.4.0" | ||
176 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
177 | checksum = "b4682ae6287fcf752ecaabbfcc7b6f9b72aa33933dc23a554d853aea8eea8635" | ||
178 | dependencies = [ | ||
179 | "serde", | ||
180 | ] | ||
181 | |||
182 | [[package]] | ||
137 | name = "block-buffer" | 183 | name = "block-buffer" |
138 | version = "0.10.4" | 184 | version = "0.10.4" |
139 | source = "registry+https://github.com/rust-lang/crates.io-index" | 185 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -143,6 +189,12 @@ dependencies = [ | |||
143 | ] | 189 | ] |
144 | 190 | ||
145 | [[package]] | 191 | [[package]] |
192 | name = "byteorder" | ||
193 | version = "1.5.0" | ||
194 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
195 | checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" | ||
196 | |||
197 | [[package]] | ||
146 | name = "bytes" | 198 | name = "bytes" |
147 | version = "1.5.0" | 199 | version = "1.5.0" |
148 | source = "registry+https://github.com/rust-lang/crates.io-index" | 200 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -183,6 +235,12 @@ dependencies = [ | |||
183 | ] | 235 | ] |
184 | 236 | ||
185 | [[package]] | 237 | [[package]] |
238 | name = "const-oid" | ||
239 | version = "0.9.5" | ||
240 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
241 | checksum = "28c122c3980598d243d63d9a704629a2d748d101f278052ff068be5a4423ab6f" | ||
242 | |||
243 | [[package]] | ||
186 | name = "cpufeatures" | 244 | name = "cpufeatures" |
187 | version = "0.2.9" | 245 | version = "0.2.9" |
188 | source = "registry+https://github.com/rust-lang/crates.io-index" | 246 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -192,6 +250,40 @@ dependencies = [ | |||
192 | ] | 250 | ] |
193 | 251 | ||
194 | [[package]] | 252 | [[package]] |
253 | name = "crc" | ||
254 | version = "3.0.1" | ||
255 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
256 | checksum = "86ec7a15cbe22e59248fc7eadb1907dab5ba09372595da4d73dd805ed4417dfe" | ||
257 | dependencies = [ | ||
258 | "crc-catalog", | ||
259 | ] | ||
260 | |||
261 | [[package]] | ||
262 | name = "crc-catalog" | ||
263 | version = "2.2.0" | ||
264 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
265 | checksum = "9cace84e55f07e7301bae1c519df89cdad8cc3cd868413d3fdbdeca9ff3db484" | ||
266 | |||
267 | [[package]] | ||
268 | name = "crossbeam-queue" | ||
269 | version = "0.3.8" | ||
270 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
271 | checksum = "d1cfb3ea8a53f37c40dea2c7bedcbd88bdfae54f5e2175d6ecaff1c988353add" | ||
272 | dependencies = [ | ||
273 | "cfg-if", | ||
274 | "crossbeam-utils", | ||
275 | ] | ||
276 | |||
277 | [[package]] | ||
278 | name = "crossbeam-utils" | ||
279 | version = "0.8.16" | ||
280 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
281 | checksum = "5a22b2d63d4d1dc0b7f1b6b2747dd0088008a9be28b6ddf0b1e7d335e3037294" | ||
282 | dependencies = [ | ||
283 | "cfg-if", | ||
284 | ] | ||
285 | |||
286 | [[package]] | ||
195 | name = "crypto-common" | 287 | name = "crypto-common" |
196 | version = "0.1.6" | 288 | version = "0.1.6" |
197 | source = "registry+https://github.com/rust-lang/crates.io-index" | 289 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -202,6 +294,17 @@ dependencies = [ | |||
202 | ] | 294 | ] |
203 | 295 | ||
204 | [[package]] | 296 | [[package]] |
297 | name = "der" | ||
298 | version = "0.7.8" | ||
299 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
300 | checksum = "fffa369a668c8af7dbf8b5e56c9f744fbd399949ed171606040001947de40b1c" | ||
301 | dependencies = [ | ||
302 | "const-oid", | ||
303 | "pem-rfc7468", | ||
304 | "zeroize", | ||
305 | ] | ||
306 | |||
307 | [[package]] | ||
205 | name = "deranged" | 308 | name = "deranged" |
206 | version = "0.3.8" | 309 | version = "0.3.8" |
207 | source = "registry+https://github.com/rust-lang/crates.io-index" | 310 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -214,7 +317,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
214 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" | 317 | checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" |
215 | dependencies = [ | 318 | dependencies = [ |
216 | "block-buffer", | 319 | "block-buffer", |
320 | "const-oid", | ||
217 | "crypto-common", | 321 | "crypto-common", |
322 | "subtle", | ||
218 | ] | 323 | ] |
219 | 324 | ||
220 | [[package]] | 325 | [[package]] |
@@ -224,6 +329,77 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
224 | checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" | 329 | checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" |
225 | 330 | ||
226 | [[package]] | 331 | [[package]] |
332 | name = "dotenvy" | ||
333 | version = "0.15.7" | ||
334 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
335 | checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" | ||
336 | |||
337 | [[package]] | ||
338 | name = "either" | ||
339 | version = "1.9.0" | ||
340 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
341 | checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" | ||
342 | dependencies = [ | ||
343 | "serde", | ||
344 | ] | ||
345 | |||
346 | [[package]] | ||
347 | name = "equivalent" | ||
348 | version = "1.0.1" | ||
349 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
350 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" | ||
351 | |||
352 | [[package]] | ||
353 | name = "errno" | ||
354 | version = "0.3.5" | ||
355 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
356 | checksum = "ac3e13f66a2f95e32a39eaa81f6b95d42878ca0e1db0c7543723dfe12557e860" | ||
357 | dependencies = [ | ||
358 | "libc", | ||
359 | "windows-sys", | ||
360 | ] | ||
361 | |||
362 | [[package]] | ||
363 | name = "etcetera" | ||
364 | version = "0.8.0" | ||
365 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
366 | checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943" | ||
367 | dependencies = [ | ||
368 | "cfg-if", | ||
369 | "home", | ||
370 | "windows-sys", | ||
371 | ] | ||
372 | |||
373 | [[package]] | ||
374 | name = "event-listener" | ||
375 | version = "2.5.3" | ||
376 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
377 | checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" | ||
378 | |||
379 | [[package]] | ||
380 | name = "fastrand" | ||
381 | version = "2.0.1" | ||
382 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
383 | checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5" | ||
384 | |||
385 | [[package]] | ||
386 | name = "finl_unicode" | ||
387 | version = "1.2.0" | ||
388 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
389 | checksum = "8fcfdc7a0362c9f4444381a9e697c79d435fe65b52a37466fc2c1184cee9edc6" | ||
390 | |||
391 | [[package]] | ||
392 | name = "flume" | ||
393 | version = "0.11.0" | ||
394 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
395 | checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181" | ||
396 | dependencies = [ | ||
397 | "futures-core", | ||
398 | "futures-sink", | ||
399 | "spin 0.9.8", | ||
400 | ] | ||
401 | |||
402 | [[package]] | ||
227 | name = "fnv" | 403 | name = "fnv" |
228 | version = "1.0.7" | 404 | version = "1.0.7" |
229 | source = "registry+https://github.com/rust-lang/crates.io-index" | 405 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -245,6 +421,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
245 | checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" | 421 | checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2" |
246 | dependencies = [ | 422 | dependencies = [ |
247 | "futures-core", | 423 | "futures-core", |
424 | "futures-sink", | ||
248 | ] | 425 | ] |
249 | 426 | ||
250 | [[package]] | 427 | [[package]] |
@@ -254,6 +431,40 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
254 | checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" | 431 | checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c" |
255 | 432 | ||
256 | [[package]] | 433 | [[package]] |
434 | name = "futures-executor" | ||
435 | version = "0.3.28" | ||
436 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
437 | checksum = "ccecee823288125bd88b4d7f565c9e58e41858e47ab72e8ea2d64e93624386e0" | ||
438 | dependencies = [ | ||
439 | "futures-core", | ||
440 | "futures-task", | ||
441 | "futures-util", | ||
442 | ] | ||
443 | |||
444 | [[package]] | ||
445 | name = "futures-intrusive" | ||
446 | version = "0.5.0" | ||
447 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
448 | checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f" | ||
449 | dependencies = [ | ||
450 | "futures-core", | ||
451 | "lock_api", | ||
452 | "parking_lot", | ||
453 | ] | ||
454 | |||
455 | [[package]] | ||
456 | name = "futures-io" | ||
457 | version = "0.3.28" | ||
458 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
459 | checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964" | ||
460 | |||
461 | [[package]] | ||
462 | name = "futures-sink" | ||
463 | version = "0.3.28" | ||
464 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
465 | checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e" | ||
466 | |||
467 | [[package]] | ||
257 | name = "futures-task" | 468 | name = "futures-task" |
258 | version = "0.3.28" | 469 | version = "0.3.28" |
259 | source = "registry+https://github.com/rust-lang/crates.io-index" | 470 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -266,9 +477,13 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
266 | checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" | 477 | checksum = "26b01e40b772d54cf6c6d721c1d1abd0647a0106a12ecaa1c186273392a69533" |
267 | dependencies = [ | 478 | dependencies = [ |
268 | "futures-core", | 479 | "futures-core", |
480 | "futures-io", | ||
481 | "futures-sink", | ||
269 | "futures-task", | 482 | "futures-task", |
483 | "memchr", | ||
270 | "pin-project-lite", | 484 | "pin-project-lite", |
271 | "pin-utils", | 485 | "pin-utils", |
486 | "slab", | ||
272 | ] | 487 | ] |
273 | 488 | ||
274 | [[package]] | 489 | [[package]] |
@@ -304,7 +519,26 @@ version = "0.12.3" | |||
304 | source = "registry+https://github.com/rust-lang/crates.io-index" | 519 | source = "registry+https://github.com/rust-lang/crates.io-index" |
305 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" | 520 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" |
306 | dependencies = [ | 521 | dependencies = [ |
307 | "ahash", | 522 | "ahash 0.7.6", |
523 | ] | ||
524 | |||
525 | [[package]] | ||
526 | name = "hashbrown" | ||
527 | version = "0.14.1" | ||
528 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
529 | checksum = "7dfda62a12f55daeae5015f81b0baea145391cb4520f86c248fc615d72640d12" | ||
530 | dependencies = [ | ||
531 | "ahash 0.8.3", | ||
532 | "allocator-api2", | ||
533 | ] | ||
534 | |||
535 | [[package]] | ||
536 | name = "hashlink" | ||
537 | version = "0.8.4" | ||
538 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
539 | checksum = "e8094feaf31ff591f651a2664fb9cfd92bba7a60ce3197265e9482ebe753c8f7" | ||
540 | dependencies = [ | ||
541 | "hashbrown 0.14.1", | ||
308 | ] | 542 | ] |
309 | 543 | ||
310 | [[package]] | 544 | [[package]] |
@@ -332,12 +566,54 @@ dependencies = [ | |||
332 | ] | 566 | ] |
333 | 567 | ||
334 | [[package]] | 568 | [[package]] |
569 | name = "heck" | ||
570 | version = "0.4.1" | ||
571 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
572 | checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" | ||
573 | dependencies = [ | ||
574 | "unicode-segmentation", | ||
575 | ] | ||
576 | |||
577 | [[package]] | ||
335 | name = "hermit-abi" | 578 | name = "hermit-abi" |
336 | version = "0.3.3" | 579 | version = "0.3.3" |
337 | source = "registry+https://github.com/rust-lang/crates.io-index" | 580 | source = "registry+https://github.com/rust-lang/crates.io-index" |
338 | checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" | 581 | checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7" |
339 | 582 | ||
340 | [[package]] | 583 | [[package]] |
584 | name = "hex" | ||
585 | version = "0.4.3" | ||
586 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
587 | checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" | ||
588 | |||
589 | [[package]] | ||
590 | name = "hkdf" | ||
591 | version = "0.12.3" | ||
592 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
593 | checksum = "791a029f6b9fc27657f6f188ec6e5e43f6911f6f878e0dc5501396e09809d437" | ||
594 | dependencies = [ | ||
595 | "hmac", | ||
596 | ] | ||
597 | |||
598 | [[package]] | ||
599 | name = "hmac" | ||
600 | version = "0.12.1" | ||
601 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
602 | checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e" | ||
603 | dependencies = [ | ||
604 | "digest", | ||
605 | ] | ||
606 | |||
607 | [[package]] | ||
608 | name = "home" | ||
609 | version = "0.5.5" | ||
610 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
611 | checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb" | ||
612 | dependencies = [ | ||
613 | "windows-sys", | ||
614 | ] | ||
615 | |||
616 | [[package]] | ||
341 | name = "http" | 617 | name = "http" |
342 | version = "0.2.9" | 618 | version = "0.2.9" |
343 | source = "registry+https://github.com/rust-lang/crates.io-index" | 619 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -395,6 +671,35 @@ dependencies = [ | |||
395 | ] | 671 | ] |
396 | 672 | ||
397 | [[package]] | 673 | [[package]] |
674 | name = "idna" | ||
675 | version = "0.4.0" | ||
676 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
677 | checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c" | ||
678 | dependencies = [ | ||
679 | "unicode-bidi", | ||
680 | "unicode-normalization", | ||
681 | ] | ||
682 | |||
683 | [[package]] | ||
684 | name = "indexmap" | ||
685 | version = "2.0.2" | ||
686 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
687 | checksum = "8adf3ddd720272c6ea8bf59463c04e0f93d0bbf7c5439b691bca2987e0270897" | ||
688 | dependencies = [ | ||
689 | "equivalent", | ||
690 | "hashbrown 0.14.1", | ||
691 | ] | ||
692 | |||
693 | [[package]] | ||
694 | name = "itertools" | ||
695 | version = "0.11.0" | ||
696 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
697 | checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" | ||
698 | dependencies = [ | ||
699 | "either", | ||
700 | ] | ||
701 | |||
702 | [[package]] | ||
398 | name = "itoa" | 703 | name = "itoa" |
399 | version = "1.0.9" | 704 | version = "1.0.9" |
400 | source = "registry+https://github.com/rust-lang/crates.io-index" | 705 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -416,6 +721,9 @@ name = "lazy_static" | |||
416 | version = "1.4.0" | 721 | version = "1.4.0" |
417 | source = "registry+https://github.com/rust-lang/crates.io-index" | 722 | source = "registry+https://github.com/rust-lang/crates.io-index" |
418 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | 723 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" |
724 | dependencies = [ | ||
725 | "spin 0.5.2", | ||
726 | ] | ||
419 | 727 | ||
420 | [[package]] | 728 | [[package]] |
421 | name = "libc" | 729 | name = "libc" |
@@ -424,12 +732,45 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
424 | checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" | 732 | checksum = "a08173bc88b7955d1b3145aa561539096c421ac8debde8cbc3612ec635fee29b" |
425 | 733 | ||
426 | [[package]] | 734 | [[package]] |
735 | name = "libm" | ||
736 | version = "0.2.8" | ||
737 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
738 | checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" | ||
739 | |||
740 | [[package]] | ||
741 | name = "libsqlite3-sys" | ||
742 | version = "0.26.0" | ||
743 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
744 | checksum = "afc22eff61b133b115c6e8c74e818c628d6d5e7a502afea6f64dee076dd94326" | ||
745 | dependencies = [ | ||
746 | "cc", | ||
747 | "pkg-config", | ||
748 | "vcpkg", | ||
749 | ] | ||
750 | |||
751 | [[package]] | ||
427 | name = "linked-hash-map" | 752 | name = "linked-hash-map" |
428 | version = "0.5.6" | 753 | version = "0.5.6" |
429 | source = "registry+https://github.com/rust-lang/crates.io-index" | 754 | source = "registry+https://github.com/rust-lang/crates.io-index" |
430 | checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" | 755 | checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f" |
431 | 756 | ||
432 | [[package]] | 757 | [[package]] |
758 | name = "linux-raw-sys" | ||
759 | version = "0.4.10" | ||
760 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
761 | checksum = "da2479e8c062e40bf0066ffa0bc823de0a9368974af99c9f6df941d2c231e03f" | ||
762 | |||
763 | [[package]] | ||
764 | name = "lock_api" | ||
765 | version = "0.4.10" | ||
766 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
767 | checksum = "c1cc9717a20b1bb222f333e6a92fd32f7d8a18ddc5a3191a11af45dcbf4dcd16" | ||
768 | dependencies = [ | ||
769 | "autocfg", | ||
770 | "scopeguard", | ||
771 | ] | ||
772 | |||
773 | [[package]] | ||
433 | name = "log" | 774 | name = "log" |
434 | version = "0.4.20" | 775 | version = "0.4.20" |
435 | source = "registry+https://github.com/rust-lang/crates.io-index" | 776 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -451,6 +792,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
451 | checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" | 792 | checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94" |
452 | 793 | ||
453 | [[package]] | 794 | [[package]] |
795 | name = "md-5" | ||
796 | version = "0.10.6" | ||
797 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
798 | checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf" | ||
799 | dependencies = [ | ||
800 | "cfg-if", | ||
801 | "digest", | ||
802 | ] | ||
803 | |||
804 | [[package]] | ||
454 | name = "memchr" | 805 | name = "memchr" |
455 | version = "2.6.4" | 806 | version = "2.6.4" |
456 | source = "registry+https://github.com/rust-lang/crates.io-index" | 807 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -509,6 +860,54 @@ dependencies = [ | |||
509 | ] | 860 | ] |
510 | 861 | ||
511 | [[package]] | 862 | [[package]] |
863 | name = "num-bigint-dig" | ||
864 | version = "0.8.4" | ||
865 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
866 | checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151" | ||
867 | dependencies = [ | ||
868 | "byteorder", | ||
869 | "lazy_static", | ||
870 | "libm", | ||
871 | "num-integer", | ||
872 | "num-iter", | ||
873 | "num-traits", | ||
874 | "rand", | ||
875 | "smallvec", | ||
876 | "zeroize", | ||
877 | ] | ||
878 | |||
879 | [[package]] | ||
880 | name = "num-integer" | ||
881 | version = "0.1.45" | ||
882 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
883 | checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" | ||
884 | dependencies = [ | ||
885 | "autocfg", | ||
886 | "num-traits", | ||
887 | ] | ||
888 | |||
889 | [[package]] | ||
890 | name = "num-iter" | ||
891 | version = "0.1.43" | ||
892 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
893 | checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252" | ||
894 | dependencies = [ | ||
895 | "autocfg", | ||
896 | "num-integer", | ||
897 | "num-traits", | ||
898 | ] | ||
899 | |||
900 | [[package]] | ||
901 | name = "num-traits" | ||
902 | version = "0.2.17" | ||
903 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
904 | checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" | ||
905 | dependencies = [ | ||
906 | "autocfg", | ||
907 | "libm", | ||
908 | ] | ||
909 | |||
910 | [[package]] | ||
512 | name = "num_cpus" | 911 | name = "num_cpus" |
513 | version = "1.16.0" | 912 | version = "1.16.0" |
514 | source = "registry+https://github.com/rust-lang/crates.io-index" | 913 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -549,7 +948,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
549 | checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" | 948 | checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" |
550 | dependencies = [ | 949 | dependencies = [ |
551 | "dlv-list", | 950 | "dlv-list", |
552 | "hashbrown", | 951 | "hashbrown 0.12.3", |
553 | ] | 952 | ] |
554 | 953 | ||
555 | [[package]] | 954 | [[package]] |
@@ -559,12 +958,50 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
559 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" | 958 | checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" |
560 | 959 | ||
561 | [[package]] | 960 | [[package]] |
961 | name = "parking_lot" | ||
962 | version = "0.12.1" | ||
963 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
964 | checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f" | ||
965 | dependencies = [ | ||
966 | "lock_api", | ||
967 | "parking_lot_core", | ||
968 | ] | ||
969 | |||
970 | [[package]] | ||
971 | name = "parking_lot_core" | ||
972 | version = "0.9.8" | ||
973 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
974 | checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447" | ||
975 | dependencies = [ | ||
976 | "cfg-if", | ||
977 | "libc", | ||
978 | "redox_syscall", | ||
979 | "smallvec", | ||
980 | "windows-targets", | ||
981 | ] | ||
982 | |||
983 | [[package]] | ||
984 | name = "paste" | ||
985 | version = "1.0.14" | ||
986 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
987 | checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" | ||
988 | |||
989 | [[package]] | ||
562 | name = "pathdiff" | 990 | name = "pathdiff" |
563 | version = "0.2.1" | 991 | version = "0.2.1" |
564 | source = "registry+https://github.com/rust-lang/crates.io-index" | 992 | source = "registry+https://github.com/rust-lang/crates.io-index" |
565 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" | 993 | checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd" |
566 | 994 | ||
567 | [[package]] | 995 | [[package]] |
996 | name = "pem-rfc7468" | ||
997 | version = "0.7.0" | ||
998 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
999 | checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412" | ||
1000 | dependencies = [ | ||
1001 | "base64ct", | ||
1002 | ] | ||
1003 | |||
1004 | [[package]] | ||
568 | name = "percent-encoding" | 1005 | name = "percent-encoding" |
569 | version = "2.3.0" | 1006 | version = "2.3.0" |
570 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1007 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -601,7 +1038,7 @@ dependencies = [ | |||
601 | "pest_meta", | 1038 | "pest_meta", |
602 | "proc-macro2", | 1039 | "proc-macro2", |
603 | "quote", | 1040 | "quote", |
604 | "syn", | 1041 | "syn 2.0.38", |
605 | ] | 1042 | ] |
606 | 1043 | ||
607 | [[package]] | 1044 | [[package]] |
@@ -632,7 +1069,7 @@ checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" | |||
632 | dependencies = [ | 1069 | dependencies = [ |
633 | "proc-macro2", | 1070 | "proc-macro2", |
634 | "quote", | 1071 | "quote", |
635 | "syn", | 1072 | "syn 2.0.38", |
636 | ] | 1073 | ] |
637 | 1074 | ||
638 | [[package]] | 1075 | [[package]] |
@@ -648,6 +1085,39 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
648 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" | 1085 | checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" |
649 | 1086 | ||
650 | [[package]] | 1087 | [[package]] |
1088 | name = "pkcs1" | ||
1089 | version = "0.7.5" | ||
1090 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1091 | checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f" | ||
1092 | dependencies = [ | ||
1093 | "der", | ||
1094 | "pkcs8", | ||
1095 | "spki", | ||
1096 | ] | ||
1097 | |||
1098 | [[package]] | ||
1099 | name = "pkcs8" | ||
1100 | version = "0.10.2" | ||
1101 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1102 | checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7" | ||
1103 | dependencies = [ | ||
1104 | "der", | ||
1105 | "spki", | ||
1106 | ] | ||
1107 | |||
1108 | [[package]] | ||
1109 | name = "pkg-config" | ||
1110 | version = "0.3.27" | ||
1111 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1112 | checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964" | ||
1113 | |||
1114 | [[package]] | ||
1115 | name = "ppv-lite86" | ||
1116 | version = "0.2.17" | ||
1117 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1118 | checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" | ||
1119 | |||
1120 | [[package]] | ||
651 | name = "proc-macro2" | 1121 | name = "proc-macro2" |
652 | version = "1.0.68" | 1122 | version = "1.0.68" |
653 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1123 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -666,6 +1136,45 @@ dependencies = [ | |||
666 | ] | 1136 | ] |
667 | 1137 | ||
668 | [[package]] | 1138 | [[package]] |
1139 | name = "rand" | ||
1140 | version = "0.8.5" | ||
1141 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1142 | checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" | ||
1143 | dependencies = [ | ||
1144 | "libc", | ||
1145 | "rand_chacha", | ||
1146 | "rand_core", | ||
1147 | ] | ||
1148 | |||
1149 | [[package]] | ||
1150 | name = "rand_chacha" | ||
1151 | version = "0.3.1" | ||
1152 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1153 | checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" | ||
1154 | dependencies = [ | ||
1155 | "ppv-lite86", | ||
1156 | "rand_core", | ||
1157 | ] | ||
1158 | |||
1159 | [[package]] | ||
1160 | name = "rand_core" | ||
1161 | version = "0.6.4" | ||
1162 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1163 | checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" | ||
1164 | dependencies = [ | ||
1165 | "getrandom", | ||
1166 | ] | ||
1167 | |||
1168 | [[package]] | ||
1169 | name = "redox_syscall" | ||
1170 | version = "0.3.5" | ||
1171 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1172 | checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29" | ||
1173 | dependencies = [ | ||
1174 | "bitflags 1.3.2", | ||
1175 | ] | ||
1176 | |||
1177 | [[package]] | ||
669 | name = "regex" | 1178 | name = "regex" |
670 | version = "1.9.6" | 1179 | version = "1.9.6" |
671 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1180 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -716,11 +1225,33 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
716 | checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a" | 1225 | checksum = "88073939a61e5b7680558e6be56b419e208420c2adb92be54921fa6b72283f1a" |
717 | dependencies = [ | 1226 | dependencies = [ |
718 | "base64 0.13.1", | 1227 | "base64 0.13.1", |
719 | "bitflags", | 1228 | "bitflags 1.3.2", |
720 | "serde", | 1229 | "serde", |
721 | ] | 1230 | ] |
722 | 1231 | ||
723 | [[package]] | 1232 | [[package]] |
1233 | name = "rsa" | ||
1234 | version = "0.9.2" | ||
1235 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1236 | checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8" | ||
1237 | dependencies = [ | ||
1238 | "byteorder", | ||
1239 | "const-oid", | ||
1240 | "digest", | ||
1241 | "num-bigint-dig", | ||
1242 | "num-integer", | ||
1243 | "num-iter", | ||
1244 | "num-traits", | ||
1245 | "pkcs1", | ||
1246 | "pkcs8", | ||
1247 | "rand_core", | ||
1248 | "signature", | ||
1249 | "spki", | ||
1250 | "subtle", | ||
1251 | "zeroize", | ||
1252 | ] | ||
1253 | |||
1254 | [[package]] | ||
724 | name = "rust-ini" | 1255 | name = "rust-ini" |
725 | version = "0.18.0" | 1256 | version = "0.18.0" |
726 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1257 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -737,6 +1268,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
737 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" | 1268 | checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76" |
738 | 1269 | ||
739 | [[package]] | 1270 | [[package]] |
1271 | name = "rustix" | ||
1272 | version = "0.38.18" | ||
1273 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1274 | checksum = "5a74ee2d7c2581cd139b42447d7d9389b889bdaad3a73f1ebb16f2a3237bb19c" | ||
1275 | dependencies = [ | ||
1276 | "bitflags 2.4.0", | ||
1277 | "errno", | ||
1278 | "libc", | ||
1279 | "linux-raw-sys", | ||
1280 | "windows-sys", | ||
1281 | ] | ||
1282 | |||
1283 | [[package]] | ||
740 | name = "rustversion" | 1284 | name = "rustversion" |
741 | version = "1.0.14" | 1285 | version = "1.0.14" |
742 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1286 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -749,6 +1293,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
749 | checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" | 1293 | checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" |
750 | 1294 | ||
751 | [[package]] | 1295 | [[package]] |
1296 | name = "scopeguard" | ||
1297 | version = "1.2.0" | ||
1298 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1299 | checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" | ||
1300 | |||
1301 | [[package]] | ||
752 | name = "serde" | 1302 | name = "serde" |
753 | version = "1.0.188" | 1303 | version = "1.0.188" |
754 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1304 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -765,7 +1315,7 @@ checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2" | |||
765 | dependencies = [ | 1315 | dependencies = [ |
766 | "proc-macro2", | 1316 | "proc-macro2", |
767 | "quote", | 1317 | "quote", |
768 | "syn", | 1318 | "syn 2.0.38", |
769 | ] | 1319 | ] |
770 | 1320 | ||
771 | [[package]] | 1321 | [[package]] |
@@ -833,6 +1383,25 @@ dependencies = [ | |||
833 | ] | 1383 | ] |
834 | 1384 | ||
835 | [[package]] | 1385 | [[package]] |
1386 | name = "signature" | ||
1387 | version = "2.1.0" | ||
1388 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1389 | checksum = "5e1788eed21689f9cf370582dfc467ef36ed9c707f073528ddafa8d83e3b8500" | ||
1390 | dependencies = [ | ||
1391 | "digest", | ||
1392 | "rand_core", | ||
1393 | ] | ||
1394 | |||
1395 | [[package]] | ||
1396 | name = "slab" | ||
1397 | version = "0.4.9" | ||
1398 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1399 | checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67" | ||
1400 | dependencies = [ | ||
1401 | "autocfg", | ||
1402 | ] | ||
1403 | |||
1404 | [[package]] | ||
836 | name = "smallvec" | 1405 | name = "smallvec" |
837 | version = "1.11.1" | 1406 | version = "1.11.1" |
838 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1407 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -859,6 +1428,264 @@ dependencies = [ | |||
859 | ] | 1428 | ] |
860 | 1429 | ||
861 | [[package]] | 1430 | [[package]] |
1431 | name = "spin" | ||
1432 | version = "0.5.2" | ||
1433 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1434 | checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" | ||
1435 | |||
1436 | [[package]] | ||
1437 | name = "spin" | ||
1438 | version = "0.9.8" | ||
1439 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1440 | checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67" | ||
1441 | dependencies = [ | ||
1442 | "lock_api", | ||
1443 | ] | ||
1444 | |||
1445 | [[package]] | ||
1446 | name = "spki" | ||
1447 | version = "0.7.2" | ||
1448 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1449 | checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a" | ||
1450 | dependencies = [ | ||
1451 | "base64ct", | ||
1452 | "der", | ||
1453 | ] | ||
1454 | |||
1455 | [[package]] | ||
1456 | name = "sqlformat" | ||
1457 | version = "0.2.2" | ||
1458 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1459 | checksum = "6b7b278788e7be4d0d29c0f39497a0eef3fba6bbc8e70d8bf7fde46edeaa9e85" | ||
1460 | dependencies = [ | ||
1461 | "itertools", | ||
1462 | "nom", | ||
1463 | "unicode_categories", | ||
1464 | ] | ||
1465 | |||
1466 | [[package]] | ||
1467 | name = "sqlx" | ||
1468 | version = "0.7.2" | ||
1469 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1470 | checksum = "0e50c216e3624ec8e7ecd14c6a6a6370aad6ee5d8cfc3ab30b5162eeeef2ed33" | ||
1471 | dependencies = [ | ||
1472 | "sqlx-core", | ||
1473 | "sqlx-macros", | ||
1474 | "sqlx-mysql", | ||
1475 | "sqlx-postgres", | ||
1476 | "sqlx-sqlite", | ||
1477 | ] | ||
1478 | |||
1479 | [[package]] | ||
1480 | name = "sqlx-core" | ||
1481 | version = "0.7.2" | ||
1482 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1483 | checksum = "8d6753e460c998bbd4cd8c6f0ed9a64346fcca0723d6e75e52fdc351c5d2169d" | ||
1484 | dependencies = [ | ||
1485 | "ahash 0.8.3", | ||
1486 | "atoi", | ||
1487 | "byteorder", | ||
1488 | "bytes", | ||
1489 | "crc", | ||
1490 | "crossbeam-queue", | ||
1491 | "dotenvy", | ||
1492 | "either", | ||
1493 | "event-listener", | ||
1494 | "futures-channel", | ||
1495 | "futures-core", | ||
1496 | "futures-intrusive", | ||
1497 | "futures-io", | ||
1498 | "futures-util", | ||
1499 | "hashlink", | ||
1500 | "hex", | ||
1501 | "indexmap", | ||
1502 | "log", | ||
1503 | "memchr", | ||
1504 | "once_cell", | ||
1505 | "paste", | ||
1506 | "percent-encoding", | ||
1507 | "serde", | ||
1508 | "serde_json", | ||
1509 | "sha2", | ||
1510 | "smallvec", | ||
1511 | "sqlformat", | ||
1512 | "thiserror", | ||
1513 | "tokio", | ||
1514 | "tokio-stream", | ||
1515 | "tracing", | ||
1516 | "url", | ||
1517 | ] | ||
1518 | |||
1519 | [[package]] | ||
1520 | name = "sqlx-macros" | ||
1521 | version = "0.7.2" | ||
1522 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1523 | checksum = "9a793bb3ba331ec8359c1853bd39eed32cdd7baaf22c35ccf5c92a7e8d1189ec" | ||
1524 | dependencies = [ | ||
1525 | "proc-macro2", | ||
1526 | "quote", | ||
1527 | "sqlx-core", | ||
1528 | "sqlx-macros-core", | ||
1529 | "syn 1.0.109", | ||
1530 | ] | ||
1531 | |||
1532 | [[package]] | ||
1533 | name = "sqlx-macros-core" | ||
1534 | version = "0.7.2" | ||
1535 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1536 | checksum = "0a4ee1e104e00dedb6aa5ffdd1343107b0a4702e862a84320ee7cc74782d96fc" | ||
1537 | dependencies = [ | ||
1538 | "dotenvy", | ||
1539 | "either", | ||
1540 | "heck", | ||
1541 | "hex", | ||
1542 | "once_cell", | ||
1543 | "proc-macro2", | ||
1544 | "quote", | ||
1545 | "serde", | ||
1546 | "serde_json", | ||
1547 | "sha2", | ||
1548 | "sqlx-core", | ||
1549 | "sqlx-mysql", | ||
1550 | "sqlx-sqlite", | ||
1551 | "syn 1.0.109", | ||
1552 | "tempfile", | ||
1553 | "tokio", | ||
1554 | "url", | ||
1555 | ] | ||
1556 | |||
1557 | [[package]] | ||
1558 | name = "sqlx-mysql" | ||
1559 | version = "0.7.2" | ||
1560 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1561 | checksum = "864b869fdf56263f4c95c45483191ea0af340f9f3e3e7b4d57a61c7c87a970db" | ||
1562 | dependencies = [ | ||
1563 | "atoi", | ||
1564 | "base64 0.21.4", | ||
1565 | "bitflags 2.4.0", | ||
1566 | "byteorder", | ||
1567 | "bytes", | ||
1568 | "crc", | ||
1569 | "digest", | ||
1570 | "dotenvy", | ||
1571 | "either", | ||
1572 | "futures-channel", | ||
1573 | "futures-core", | ||
1574 | "futures-io", | ||
1575 | "futures-util", | ||
1576 | "generic-array", | ||
1577 | "hex", | ||
1578 | "hkdf", | ||
1579 | "hmac", | ||
1580 | "itoa", | ||
1581 | "log", | ||
1582 | "md-5", | ||
1583 | "memchr", | ||
1584 | "once_cell", | ||
1585 | "percent-encoding", | ||
1586 | "rand", | ||
1587 | "rsa", | ||
1588 | "serde", | ||
1589 | "sha1", | ||
1590 | "sha2", | ||
1591 | "smallvec", | ||
1592 | "sqlx-core", | ||
1593 | "stringprep", | ||
1594 | "thiserror", | ||
1595 | "tracing", | ||
1596 | "whoami", | ||
1597 | ] | ||
1598 | |||
1599 | [[package]] | ||
1600 | name = "sqlx-postgres" | ||
1601 | version = "0.7.2" | ||
1602 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1603 | checksum = "eb7ae0e6a97fb3ba33b23ac2671a5ce6e3cabe003f451abd5a56e7951d975624" | ||
1604 | dependencies = [ | ||
1605 | "atoi", | ||
1606 | "base64 0.21.4", | ||
1607 | "bitflags 2.4.0", | ||
1608 | "byteorder", | ||
1609 | "crc", | ||
1610 | "dotenvy", | ||
1611 | "etcetera", | ||
1612 | "futures-channel", | ||
1613 | "futures-core", | ||
1614 | "futures-io", | ||
1615 | "futures-util", | ||
1616 | "hex", | ||
1617 | "hkdf", | ||
1618 | "hmac", | ||
1619 | "home", | ||
1620 | "itoa", | ||
1621 | "log", | ||
1622 | "md-5", | ||
1623 | "memchr", | ||
1624 | "once_cell", | ||
1625 | "rand", | ||
1626 | "serde", | ||
1627 | "serde_json", | ||
1628 | "sha1", | ||
1629 | "sha2", | ||
1630 | "smallvec", | ||
1631 | "sqlx-core", | ||
1632 | "stringprep", | ||
1633 | "thiserror", | ||
1634 | "tracing", | ||
1635 | "whoami", | ||
1636 | ] | ||
1637 | |||
1638 | [[package]] | ||
1639 | name = "sqlx-sqlite" | ||
1640 | version = "0.7.2" | ||
1641 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1642 | checksum = "d59dc83cf45d89c555a577694534fcd1b55c545a816c816ce51f20bbe56a4f3f" | ||
1643 | dependencies = [ | ||
1644 | "atoi", | ||
1645 | "flume", | ||
1646 | "futures-channel", | ||
1647 | "futures-core", | ||
1648 | "futures-executor", | ||
1649 | "futures-intrusive", | ||
1650 | "futures-util", | ||
1651 | "libsqlite3-sys", | ||
1652 | "log", | ||
1653 | "percent-encoding", | ||
1654 | "serde", | ||
1655 | "sqlx-core", | ||
1656 | "tracing", | ||
1657 | "url", | ||
1658 | ] | ||
1659 | |||
1660 | [[package]] | ||
1661 | name = "stringprep" | ||
1662 | version = "0.1.4" | ||
1663 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1664 | checksum = "bb41d74e231a107a1b4ee36bd1214b11285b77768d2e3824aedafa988fd36ee6" | ||
1665 | dependencies = [ | ||
1666 | "finl_unicode", | ||
1667 | "unicode-bidi", | ||
1668 | "unicode-normalization", | ||
1669 | ] | ||
1670 | |||
1671 | [[package]] | ||
1672 | name = "subtle" | ||
1673 | version = "2.5.0" | ||
1674 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1675 | checksum = "81cdd64d312baedb58e21336b31bc043b77e01cc99033ce76ef539f78e965ebc" | ||
1676 | |||
1677 | [[package]] | ||
1678 | name = "syn" | ||
1679 | version = "1.0.109" | ||
1680 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1681 | checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" | ||
1682 | dependencies = [ | ||
1683 | "proc-macro2", | ||
1684 | "quote", | ||
1685 | "unicode-ident", | ||
1686 | ] | ||
1687 | |||
1688 | [[package]] | ||
862 | name = "syn" | 1689 | name = "syn" |
863 | version = "2.0.38" | 1690 | version = "2.0.38" |
864 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1691 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -876,6 +1703,19 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
876 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" | 1703 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" |
877 | 1704 | ||
878 | [[package]] | 1705 | [[package]] |
1706 | name = "tempfile" | ||
1707 | version = "3.8.0" | ||
1708 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1709 | checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef" | ||
1710 | dependencies = [ | ||
1711 | "cfg-if", | ||
1712 | "fastrand", | ||
1713 | "redox_syscall", | ||
1714 | "rustix", | ||
1715 | "windows-sys", | ||
1716 | ] | ||
1717 | |||
1718 | [[package]] | ||
879 | name = "thiserror" | 1719 | name = "thiserror" |
880 | version = "1.0.49" | 1720 | version = "1.0.49" |
881 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1721 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -892,7 +1732,7 @@ checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc" | |||
892 | dependencies = [ | 1732 | dependencies = [ |
893 | "proc-macro2", | 1733 | "proc-macro2", |
894 | "quote", | 1734 | "quote", |
895 | "syn", | 1735 | "syn 2.0.38", |
896 | ] | 1736 | ] |
897 | 1737 | ||
898 | [[package]] | 1738 | [[package]] |
@@ -936,12 +1776,28 @@ dependencies = [ | |||
936 | ] | 1776 | ] |
937 | 1777 | ||
938 | [[package]] | 1778 | [[package]] |
1779 | name = "tinyvec" | ||
1780 | version = "1.6.0" | ||
1781 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1782 | checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50" | ||
1783 | dependencies = [ | ||
1784 | "tinyvec_macros", | ||
1785 | ] | ||
1786 | |||
1787 | [[package]] | ||
1788 | name = "tinyvec_macros" | ||
1789 | version = "0.1.1" | ||
1790 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1791 | checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" | ||
1792 | |||
1793 | [[package]] | ||
939 | name = "tokio" | 1794 | name = "tokio" |
940 | version = "1.32.0" | 1795 | version = "1.32.0" |
941 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1796 | source = "registry+https://github.com/rust-lang/crates.io-index" |
942 | checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" | 1797 | checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9" |
943 | dependencies = [ | 1798 | dependencies = [ |
944 | "backtrace", | 1799 | "backtrace", |
1800 | "bytes", | ||
945 | "libc", | 1801 | "libc", |
946 | "mio", | 1802 | "mio", |
947 | "num_cpus", | 1803 | "num_cpus", |
@@ -959,7 +1815,18 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" | |||
959 | dependencies = [ | 1815 | dependencies = [ |
960 | "proc-macro2", | 1816 | "proc-macro2", |
961 | "quote", | 1817 | "quote", |
962 | "syn", | 1818 | "syn 2.0.38", |
1819 | ] | ||
1820 | |||
1821 | [[package]] | ||
1822 | name = "tokio-stream" | ||
1823 | version = "0.1.14" | ||
1824 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1825 | checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" | ||
1826 | dependencies = [ | ||
1827 | "futures-core", | ||
1828 | "pin-project-lite", | ||
1829 | "tokio", | ||
963 | ] | 1830 | ] |
964 | 1831 | ||
965 | [[package]] | 1832 | [[package]] |
@@ -1020,7 +1887,7 @@ checksum = "5f4f31f56159e98206da9efd823404b79b6ef3143b4a7ab76e67b1751b25a4ab" | |||
1020 | dependencies = [ | 1887 | dependencies = [ |
1021 | "proc-macro2", | 1888 | "proc-macro2", |
1022 | "quote", | 1889 | "quote", |
1023 | "syn", | 1890 | "syn 2.0.38", |
1024 | ] | 1891 | ] |
1025 | 1892 | ||
1026 | [[package]] | 1893 | [[package]] |
@@ -1082,18 +1949,62 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1082 | checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" | 1949 | checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9" |
1083 | 1950 | ||
1084 | [[package]] | 1951 | [[package]] |
1952 | name = "unicode-bidi" | ||
1953 | version = "0.3.13" | ||
1954 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1955 | checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460" | ||
1956 | |||
1957 | [[package]] | ||
1085 | name = "unicode-ident" | 1958 | name = "unicode-ident" |
1086 | version = "1.0.12" | 1959 | version = "1.0.12" |
1087 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1960 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1088 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" | 1961 | checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" |
1089 | 1962 | ||
1090 | [[package]] | 1963 | [[package]] |
1964 | name = "unicode-normalization" | ||
1965 | version = "0.1.22" | ||
1966 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1967 | checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921" | ||
1968 | dependencies = [ | ||
1969 | "tinyvec", | ||
1970 | ] | ||
1971 | |||
1972 | [[package]] | ||
1973 | name = "unicode-segmentation" | ||
1974 | version = "1.10.1" | ||
1975 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1976 | checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36" | ||
1977 | |||
1978 | [[package]] | ||
1979 | name = "unicode_categories" | ||
1980 | version = "0.1.1" | ||
1981 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1982 | checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e" | ||
1983 | |||
1984 | [[package]] | ||
1985 | name = "url" | ||
1986 | version = "2.4.1" | ||
1987 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1988 | checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5" | ||
1989 | dependencies = [ | ||
1990 | "form_urlencoded", | ||
1991 | "idna", | ||
1992 | "percent-encoding", | ||
1993 | ] | ||
1994 | |||
1995 | [[package]] | ||
1091 | name = "valuable" | 1996 | name = "valuable" |
1092 | version = "0.1.0" | 1997 | version = "0.1.0" |
1093 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1998 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1094 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" | 1999 | checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" |
1095 | 2000 | ||
1096 | [[package]] | 2001 | [[package]] |
2002 | name = "vcpkg" | ||
2003 | version = "0.2.15" | ||
2004 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2005 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" | ||
2006 | |||
2007 | [[package]] | ||
1097 | name = "version_check" | 2008 | name = "version_check" |
1098 | version = "0.9.4" | 2009 | version = "0.9.4" |
1099 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2010 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1123,6 +2034,7 @@ dependencies = [ | |||
1123 | "once_cell", | 2034 | "once_cell", |
1124 | "serde", | 2035 | "serde", |
1125 | "serde_json", | 2036 | "serde_json", |
2037 | "sqlx", | ||
1126 | "time", | 2038 | "time", |
1127 | "tokio", | 2039 | "tokio", |
1128 | "tracing", | 2040 | "tracing", |
@@ -1130,6 +2042,12 @@ dependencies = [ | |||
1130 | ] | 2042 | ] |
1131 | 2043 | ||
1132 | [[package]] | 2044 | [[package]] |
2045 | name = "whoami" | ||
2046 | version = "1.4.1" | ||
2047 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2048 | checksum = "22fc3756b8a9133049b26c7f61ab35416c130e8c09b660f5b3958b446f52cc50" | ||
2049 | |||
2050 | [[package]] | ||
1133 | name = "winapi" | 2051 | name = "winapi" |
1134 | version = "0.3.9" | 2052 | version = "0.3.9" |
1135 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2053 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1225,3 +2143,9 @@ checksum = "56c1936c4cc7a1c9ab21a1ebb602eb942ba868cbd44a99cb7cdc5892335e1c85" | |||
1225 | dependencies = [ | 2143 | dependencies = [ |
1226 | "linked-hash-map", | 2144 | "linked-hash-map", |
1227 | ] | 2145 | ] |
2146 | |||
2147 | [[package]] | ||
2148 | name = "zeroize" | ||
2149 | version = "1.6.0" | ||
2150 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2151 | checksum = "2a0956f1ba7c7909bfb66c2e9e4124ab6f6482560f6628b5aaeba39207c9aad9" | ||