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