Fix unused `Result` in tests
[rapid-gossip-sync-server] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 version = 3
4
5 [[package]]
6 name = "async-trait"
7 version = "0.1.58"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "1e805d94e6b5001b651426cf4cd446b1ab5f319d27bab5c644f61de0a804360c"
10 dependencies = [
11  "proc-macro2",
12  "quote",
13  "syn",
14 ]
15
16 [[package]]
17 name = "autocfg"
18 version = "1.1.0"
19 source = "registry+https://github.com/rust-lang/crates.io-index"
20 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
21
22 [[package]]
23 name = "base64"
24 version = "0.13.0"
25 source = "registry+https://github.com/rust-lang/crates.io-index"
26 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
27
28 [[package]]
29 name = "bech32"
30 version = "0.9.1"
31 source = "registry+https://github.com/rust-lang/crates.io-index"
32 checksum = "d86b93f97252c47b41663388e6d155714a9d0c398b99f1005cbc5f978b29f445"
33
34 [[package]]
35 name = "bitcoin"
36 version = "0.29.2"
37 source = "registry+https://github.com/rust-lang/crates.io-index"
38 checksum = "0694ea59225b0c5f3cb405ff3f670e4828358ed26aec49dc352f730f0cb1a8a3"
39 dependencies = [
40  "bech32",
41  "bitcoin_hashes",
42  "secp256k1",
43 ]
44
45 [[package]]
46 name = "bitcoin_hashes"
47 version = "0.11.0"
48 source = "registry+https://github.com/rust-lang/crates.io-index"
49 checksum = "90064b8dee6815a6470d60bad07bbbaee885c0e12d04177138fa3291a01b7bc4"
50
51 [[package]]
52 name = "bitflags"
53 version = "1.3.2"
54 source = "registry+https://github.com/rust-lang/crates.io-index"
55 checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
56
57 [[package]]
58 name = "block-buffer"
59 version = "0.10.4"
60 source = "registry+https://github.com/rust-lang/crates.io-index"
61 checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
62 dependencies = [
63  "generic-array",
64 ]
65
66 [[package]]
67 name = "byteorder"
68 version = "1.4.3"
69 source = "registry+https://github.com/rust-lang/crates.io-index"
70 checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
71
72 [[package]]
73 name = "bytes"
74 version = "1.4.0"
75 source = "registry+https://github.com/rust-lang/crates.io-index"
76 checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
77
78 [[package]]
79 name = "cc"
80 version = "1.0.79"
81 source = "registry+https://github.com/rust-lang/crates.io-index"
82 checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
83
84 [[package]]
85 name = "cfg-if"
86 version = "1.0.0"
87 source = "registry+https://github.com/rust-lang/crates.io-index"
88 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
89
90 [[package]]
91 name = "chunked_transfer"
92 version = "1.4.1"
93 source = "registry+https://github.com/rust-lang/crates.io-index"
94 checksum = "cca491388666e04d7248af3f60f0c40cfb0991c72205595d7c396e3510207d1a"
95
96 [[package]]
97 name = "cpufeatures"
98 version = "0.2.6"
99 source = "registry+https://github.com/rust-lang/crates.io-index"
100 checksum = "280a9f2d8b3a38871a3c8a46fb80db65e5e5ed97da80c4d08bf27fb63e35e181"
101 dependencies = [
102  "libc",
103 ]
104
105 [[package]]
106 name = "crypto-common"
107 version = "0.1.6"
108 source = "registry+https://github.com/rust-lang/crates.io-index"
109 checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
110 dependencies = [
111  "generic-array",
112  "typenum",
113 ]
114
115 [[package]]
116 name = "digest"
117 version = "0.10.6"
118 source = "registry+https://github.com/rust-lang/crates.io-index"
119 checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
120 dependencies = [
121  "block-buffer",
122  "crypto-common",
123  "subtle",
124 ]
125
126 [[package]]
127 name = "fallible-iterator"
128 version = "0.2.0"
129 source = "registry+https://github.com/rust-lang/crates.io-index"
130 checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
131
132 [[package]]
133 name = "futures"
134 version = "0.3.25"
135 source = "registry+https://github.com/rust-lang/crates.io-index"
136 checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
137 dependencies = [
138  "futures-channel",
139  "futures-core",
140  "futures-executor",
141  "futures-io",
142  "futures-sink",
143  "futures-task",
144  "futures-util",
145 ]
146
147 [[package]]
148 name = "futures-channel"
149 version = "0.3.28"
150 source = "registry+https://github.com/rust-lang/crates.io-index"
151 checksum = "955518d47e09b25bbebc7a18df10b81f0c766eaf4c4f1cccef2fca5f2a4fb5f2"
152 dependencies = [
153  "futures-core",
154  "futures-sink",
155 ]
156
157 [[package]]
158 name = "futures-core"
159 version = "0.3.28"
160 source = "registry+https://github.com/rust-lang/crates.io-index"
161 checksum = "4bca583b7e26f571124fe5b7561d49cb2868d79116cfa0eefce955557c6fee8c"
162
163 [[package]]
164 name = "futures-executor"
165 version = "0.3.25"
166 source = "registry+https://github.com/rust-lang/crates.io-index"
167 checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
168 dependencies = [
169  "futures-core",
170  "futures-task",
171  "futures-util",
172 ]
173
174 [[package]]
175 name = "futures-io"
176 version = "0.3.28"
177 source = "registry+https://github.com/rust-lang/crates.io-index"
178 checksum = "4fff74096e71ed47f8e023204cfd0aa1289cd54ae5430a9523be060cdb849964"
179
180 [[package]]
181 name = "futures-macro"
182 version = "0.3.25"
183 source = "registry+https://github.com/rust-lang/crates.io-index"
184 checksum = "bdfb8ce053d86b91919aad980c220b1fb8401a9394410e1c289ed7e66b61835d"
185 dependencies = [
186  "proc-macro2",
187  "quote",
188  "syn",
189 ]
190
191 [[package]]
192 name = "futures-sink"
193 version = "0.3.28"
194 source = "registry+https://github.com/rust-lang/crates.io-index"
195 checksum = "f43be4fe21a13b9781a69afa4985b0f6ee0e1afab2c6f454a8cf30e2b2237b6e"
196
197 [[package]]
198 name = "futures-task"
199 version = "0.3.28"
200 source = "registry+https://github.com/rust-lang/crates.io-index"
201 checksum = "76d3d132be6c0e6aa1534069c705a74a5997a356c0dc2f86a47765e5617c5b65"
202
203 [[package]]
204 name = "futures-util"
205 version = "0.3.25"
206 source = "registry+https://github.com/rust-lang/crates.io-index"
207 checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
208 dependencies = [
209  "futures-channel",
210  "futures-core",
211  "futures-io",
212  "futures-macro",
213  "futures-sink",
214  "futures-task",
215  "memchr",
216  "pin-project-lite",
217  "pin-utils",
218  "slab",
219 ]
220
221 [[package]]
222 name = "generic-array"
223 version = "0.14.7"
224 source = "registry+https://github.com/rust-lang/crates.io-index"
225 checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
226 dependencies = [
227  "typenum",
228  "version_check",
229 ]
230
231 [[package]]
232 name = "getrandom"
233 version = "0.2.9"
234 source = "registry+https://github.com/rust-lang/crates.io-index"
235 checksum = "c85e1d9ab2eadba7e5040d4e09cbd6d072b76a557ad64e797c2cb9d4da21d7e4"
236 dependencies = [
237  "cfg-if",
238  "libc",
239  "wasi",
240 ]
241
242 [[package]]
243 name = "hermit-abi"
244 version = "0.2.6"
245 source = "registry+https://github.com/rust-lang/crates.io-index"
246 checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
247 dependencies = [
248  "libc",
249 ]
250
251 [[package]]
252 name = "hmac"
253 version = "0.12.1"
254 source = "registry+https://github.com/rust-lang/crates.io-index"
255 checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
256 dependencies = [
257  "digest",
258 ]
259
260 [[package]]
261 name = "instant"
262 version = "0.1.12"
263 source = "registry+https://github.com/rust-lang/crates.io-index"
264 checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
265 dependencies = [
266  "cfg-if",
267 ]
268
269 [[package]]
270 name = "itoa"
271 version = "1.0.6"
272 source = "registry+https://github.com/rust-lang/crates.io-index"
273 checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6"
274
275 [[package]]
276 name = "libc"
277 version = "0.2.141"
278 source = "registry+https://github.com/rust-lang/crates.io-index"
279 checksum = "3304a64d199bb964be99741b7a14d26972741915b3649639149b2479bb46f4b5"
280
281 [[package]]
282 name = "lightning"
283 version = "0.0.114"
284 source = "registry+https://github.com/rust-lang/crates.io-index"
285 checksum = "800ec68a160529ba3ca12c5db629867c4a8de2df272792c1246602966a5b789b"
286 dependencies = [
287  "bitcoin",
288 ]
289
290 [[package]]
291 name = "lightning-block-sync"
292 version = "0.0.114"
293 source = "registry+https://github.com/rust-lang/crates.io-index"
294 checksum = "71a6fcb6ffc245cf0aee4a4654145a2a7e670be2d879c14b8ed456cdc4235255"
295 dependencies = [
296  "bitcoin",
297  "chunked_transfer",
298  "futures-util",
299  "lightning",
300  "serde",
301  "serde_json",
302 ]
303
304 [[package]]
305 name = "lightning-net-tokio"
306 version = "0.0.114"
307 source = "registry+https://github.com/rust-lang/crates.io-index"
308 checksum = "19197703db1195ed908ccd84cd76baaa5916e0d22750a2e1b7188f66516812bd"
309 dependencies = [
310  "bitcoin",
311  "lightning",
312  "tokio",
313 ]
314
315 [[package]]
316 name = "lock_api"
317 version = "0.4.9"
318 source = "registry+https://github.com/rust-lang/crates.io-index"
319 checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
320 dependencies = [
321  "autocfg",
322  "scopeguard",
323 ]
324
325 [[package]]
326 name = "log"
327 version = "0.4.17"
328 source = "registry+https://github.com/rust-lang/crates.io-index"
329 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
330 dependencies = [
331  "cfg-if",
332 ]
333
334 [[package]]
335 name = "md-5"
336 version = "0.10.5"
337 source = "registry+https://github.com/rust-lang/crates.io-index"
338 checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
339 dependencies = [
340  "digest",
341 ]
342
343 [[package]]
344 name = "memchr"
345 version = "2.5.0"
346 source = "registry+https://github.com/rust-lang/crates.io-index"
347 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
348
349 [[package]]
350 name = "mio"
351 version = "0.7.14"
352 source = "registry+https://github.com/rust-lang/crates.io-index"
353 checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
354 dependencies = [
355  "libc",
356  "log",
357  "miow",
358  "ntapi",
359  "winapi",
360 ]
361
362 [[package]]
363 name = "miow"
364 version = "0.3.7"
365 source = "registry+https://github.com/rust-lang/crates.io-index"
366 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
367 dependencies = [
368  "winapi",
369 ]
370
371 [[package]]
372 name = "ntapi"
373 version = "0.3.7"
374 source = "registry+https://github.com/rust-lang/crates.io-index"
375 checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
376 dependencies = [
377  "winapi",
378 ]
379
380 [[package]]
381 name = "num_cpus"
382 version = "1.15.0"
383 source = "registry+https://github.com/rust-lang/crates.io-index"
384 checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
385 dependencies = [
386  "hermit-abi",
387  "libc",
388 ]
389
390 [[package]]
391 name = "once_cell"
392 version = "1.14.0"
393 source = "registry+https://github.com/rust-lang/crates.io-index"
394 checksum = "2f7254b99e31cad77da24b08ebf628882739a608578bb1bcdfc1f9c21260d7c0"
395
396 [[package]]
397 name = "parking_lot"
398 version = "0.11.2"
399 source = "registry+https://github.com/rust-lang/crates.io-index"
400 checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
401 dependencies = [
402  "instant",
403  "lock_api",
404  "parking_lot_core",
405 ]
406
407 [[package]]
408 name = "parking_lot_core"
409 version = "0.8.6"
410 source = "registry+https://github.com/rust-lang/crates.io-index"
411 checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
412 dependencies = [
413  "cfg-if",
414  "instant",
415  "libc",
416  "redox_syscall",
417  "smallvec",
418  "winapi",
419 ]
420
421 [[package]]
422 name = "percent-encoding"
423 version = "2.2.0"
424 source = "registry+https://github.com/rust-lang/crates.io-index"
425 checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
426
427 [[package]]
428 name = "phf"
429 version = "0.10.1"
430 source = "registry+https://github.com/rust-lang/crates.io-index"
431 checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
432 dependencies = [
433  "phf_shared",
434 ]
435
436 [[package]]
437 name = "phf_shared"
438 version = "0.10.0"
439 source = "registry+https://github.com/rust-lang/crates.io-index"
440 checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
441 dependencies = [
442  "siphasher",
443 ]
444
445 [[package]]
446 name = "pin-project-lite"
447 version = "0.2.9"
448 source = "registry+https://github.com/rust-lang/crates.io-index"
449 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
450
451 [[package]]
452 name = "pin-utils"
453 version = "0.1.0"
454 source = "registry+https://github.com/rust-lang/crates.io-index"
455 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
456
457 [[package]]
458 name = "postgres-protocol"
459 version = "0.6.4"
460 source = "registry+https://github.com/rust-lang/crates.io-index"
461 checksum = "878c6cbf956e03af9aa8204b407b9cbf47c072164800aa918c516cd4b056c50c"
462 dependencies = [
463  "base64",
464  "byteorder",
465  "bytes",
466  "fallible-iterator",
467  "hmac",
468  "md-5",
469  "memchr",
470  "rand",
471  "sha2",
472  "stringprep",
473 ]
474
475 [[package]]
476 name = "postgres-types"
477 version = "0.2.3"
478 source = "registry+https://github.com/rust-lang/crates.io-index"
479 checksum = "ebd6e8b7189a73169290e89bd24c771071f1012d8fe6f738f5226531f0b03d89"
480 dependencies = [
481  "bytes",
482  "fallible-iterator",
483  "postgres-protocol",
484 ]
485
486 [[package]]
487 name = "ppv-lite86"
488 version = "0.2.17"
489 source = "registry+https://github.com/rust-lang/crates.io-index"
490 checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
491
492 [[package]]
493 name = "proc-macro2"
494 version = "1.0.56"
495 source = "registry+https://github.com/rust-lang/crates.io-index"
496 checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
497 dependencies = [
498  "unicode-ident",
499 ]
500
501 [[package]]
502 name = "quote"
503 version = "1.0.26"
504 source = "registry+https://github.com/rust-lang/crates.io-index"
505 checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
506 dependencies = [
507  "proc-macro2",
508 ]
509
510 [[package]]
511 name = "rand"
512 version = "0.8.5"
513 source = "registry+https://github.com/rust-lang/crates.io-index"
514 checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
515 dependencies = [
516  "libc",
517  "rand_chacha",
518  "rand_core",
519 ]
520
521 [[package]]
522 name = "rand_chacha"
523 version = "0.3.1"
524 source = "registry+https://github.com/rust-lang/crates.io-index"
525 checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
526 dependencies = [
527  "ppv-lite86",
528  "rand_core",
529 ]
530
531 [[package]]
532 name = "rand_core"
533 version = "0.6.4"
534 source = "registry+https://github.com/rust-lang/crates.io-index"
535 checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
536 dependencies = [
537  "getrandom",
538 ]
539
540 [[package]]
541 name = "rapid-gossip-sync-server"
542 version = "0.1.0"
543 dependencies = [
544  "bitcoin",
545  "futures",
546  "lightning",
547  "lightning-block-sync",
548  "lightning-net-tokio",
549  "tokio",
550  "tokio-postgres",
551 ]
552
553 [[package]]
554 name = "redox_syscall"
555 version = "0.2.16"
556 source = "registry+https://github.com/rust-lang/crates.io-index"
557 checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
558 dependencies = [
559  "bitflags",
560 ]
561
562 [[package]]
563 name = "ryu"
564 version = "1.0.13"
565 source = "registry+https://github.com/rust-lang/crates.io-index"
566 checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041"
567
568 [[package]]
569 name = "scopeguard"
570 version = "1.1.0"
571 source = "registry+https://github.com/rust-lang/crates.io-index"
572 checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
573
574 [[package]]
575 name = "secp256k1"
576 version = "0.24.3"
577 source = "registry+https://github.com/rust-lang/crates.io-index"
578 checksum = "6b1629c9c557ef9b293568b338dddfc8208c98a18c59d722a9d53f859d9c9b62"
579 dependencies = [
580  "bitcoin_hashes",
581  "secp256k1-sys",
582 ]
583
584 [[package]]
585 name = "secp256k1-sys"
586 version = "0.6.1"
587 source = "registry+https://github.com/rust-lang/crates.io-index"
588 checksum = "83080e2c2fc1006e625be82e5d1eb6a43b7fd9578b617fcc55814daf286bba4b"
589 dependencies = [
590  "cc",
591 ]
592
593 [[package]]
594 name = "serde"
595 version = "1.0.147"
596 source = "registry+https://github.com/rust-lang/crates.io-index"
597 checksum = "d193d69bae983fc11a79df82342761dfbf28a99fc8d203dca4c3c1b590948965"
598 dependencies = [
599  "serde_derive",
600 ]
601
602 [[package]]
603 name = "serde_derive"
604 version = "1.0.147"
605 source = "registry+https://github.com/rust-lang/crates.io-index"
606 checksum = "4f1d362ca8fc9c3e3a7484440752472d68a6caa98f1ab81d99b5dfe517cec852"
607 dependencies = [
608  "proc-macro2",
609  "quote",
610  "syn",
611 ]
612
613 [[package]]
614 name = "serde_json"
615 version = "1.0.95"
616 source = "registry+https://github.com/rust-lang/crates.io-index"
617 checksum = "d721eca97ac802aa7777b701877c8004d950fc142651367300d21c1cc0194744"
618 dependencies = [
619  "itoa",
620  "ryu",
621  "serde",
622 ]
623
624 [[package]]
625 name = "sha2"
626 version = "0.10.6"
627 source = "registry+https://github.com/rust-lang/crates.io-index"
628 checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
629 dependencies = [
630  "cfg-if",
631  "cpufeatures",
632  "digest",
633 ]
634
635 [[package]]
636 name = "signal-hook-registry"
637 version = "1.4.1"
638 source = "registry+https://github.com/rust-lang/crates.io-index"
639 checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
640 dependencies = [
641  "libc",
642 ]
643
644 [[package]]
645 name = "siphasher"
646 version = "0.3.10"
647 source = "registry+https://github.com/rust-lang/crates.io-index"
648 checksum = "7bd3e3206899af3f8b12af284fafc038cc1dc2b41d1b89dd17297221c5d225de"
649
650 [[package]]
651 name = "slab"
652 version = "0.4.8"
653 source = "registry+https://github.com/rust-lang/crates.io-index"
654 checksum = "6528351c9bc8ab22353f9d776db39a20288e8d6c37ef8cfe3317cf875eecfc2d"
655 dependencies = [
656  "autocfg",
657 ]
658
659 [[package]]
660 name = "smallvec"
661 version = "1.10.0"
662 source = "registry+https://github.com/rust-lang/crates.io-index"
663 checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
664
665 [[package]]
666 name = "socket2"
667 version = "0.4.9"
668 source = "registry+https://github.com/rust-lang/crates.io-index"
669 checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
670 dependencies = [
671  "libc",
672  "winapi",
673 ]
674
675 [[package]]
676 name = "stringprep"
677 version = "0.1.2"
678 source = "registry+https://github.com/rust-lang/crates.io-index"
679 checksum = "8ee348cb74b87454fff4b551cbf727025810a004f88aeacae7f85b87f4e9a1c1"
680 dependencies = [
681  "unicode-bidi",
682  "unicode-normalization",
683 ]
684
685 [[package]]
686 name = "subtle"
687 version = "2.4.1"
688 source = "registry+https://github.com/rust-lang/crates.io-index"
689 checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
690
691 [[package]]
692 name = "syn"
693 version = "1.0.109"
694 source = "registry+https://github.com/rust-lang/crates.io-index"
695 checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
696 dependencies = [
697  "proc-macro2",
698  "quote",
699  "unicode-ident",
700 ]
701
702 [[package]]
703 name = "tinyvec"
704 version = "1.6.0"
705 source = "registry+https://github.com/rust-lang/crates.io-index"
706 checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
707 dependencies = [
708  "tinyvec_macros",
709 ]
710
711 [[package]]
712 name = "tinyvec_macros"
713 version = "0.1.1"
714 source = "registry+https://github.com/rust-lang/crates.io-index"
715 checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
716
717 [[package]]
718 name = "tokio"
719 version = "1.14.1"
720 source = "registry+https://github.com/rust-lang/crates.io-index"
721 checksum = "b9d0183f6f6001549ab68f8c7585093bb732beefbcf6d23a10b9b95c73a1dd49"
722 dependencies = [
723  "autocfg",
724  "bytes",
725  "libc",
726  "memchr",
727  "mio",
728  "num_cpus",
729  "once_cell",
730  "parking_lot",
731  "pin-project-lite",
732  "signal-hook-registry",
733  "tokio-macros",
734  "winapi",
735 ]
736
737 [[package]]
738 name = "tokio-macros"
739 version = "1.8.2"
740 source = "registry+https://github.com/rust-lang/crates.io-index"
741 checksum = "d266c00fde287f55d3f1c3e96c500c362a2b8c695076ec180f27918820bc6df8"
742 dependencies = [
743  "proc-macro2",
744  "quote",
745  "syn",
746 ]
747
748 [[package]]
749 name = "tokio-postgres"
750 version = "0.7.5"
751 source = "registry+https://github.com/rust-lang/crates.io-index"
752 checksum = "4b6c8b33df661b548dcd8f9bf87debb8c56c05657ed291122e1188698c2ece95"
753 dependencies = [
754  "async-trait",
755  "byteorder",
756  "bytes",
757  "fallible-iterator",
758  "futures",
759  "log",
760  "parking_lot",
761  "percent-encoding",
762  "phf",
763  "pin-project-lite",
764  "postgres-protocol",
765  "postgres-types",
766  "socket2",
767  "tokio",
768  "tokio-util",
769 ]
770
771 [[package]]
772 name = "tokio-util"
773 version = "0.6.10"
774 source = "registry+https://github.com/rust-lang/crates.io-index"
775 checksum = "36943ee01a6d67977dd3f84a5a1d2efeb4ada3a1ae771cadfaa535d9d9fc6507"
776 dependencies = [
777  "bytes",
778  "futures-core",
779  "futures-sink",
780  "log",
781  "pin-project-lite",
782  "tokio",
783 ]
784
785 [[package]]
786 name = "typenum"
787 version = "1.16.0"
788 source = "registry+https://github.com/rust-lang/crates.io-index"
789 checksum = "497961ef93d974e23eb6f433eb5fe1b7930b659f06d12dec6fc44a8f554c0bba"
790
791 [[package]]
792 name = "unicode-bidi"
793 version = "0.3.13"
794 source = "registry+https://github.com/rust-lang/crates.io-index"
795 checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"
796
797 [[package]]
798 name = "unicode-ident"
799 version = "1.0.8"
800 source = "registry+https://github.com/rust-lang/crates.io-index"
801 checksum = "e5464a87b239f13a63a501f2701565754bae92d243d4bb7eb12f6d57d2269bf4"
802
803 [[package]]
804 name = "unicode-normalization"
805 version = "0.1.22"
806 source = "registry+https://github.com/rust-lang/crates.io-index"
807 checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
808 dependencies = [
809  "tinyvec",
810 ]
811
812 [[package]]
813 name = "version_check"
814 version = "0.9.4"
815 source = "registry+https://github.com/rust-lang/crates.io-index"
816 checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
817
818 [[package]]
819 name = "wasi"
820 version = "0.11.0+wasi-snapshot-preview1"
821 source = "registry+https://github.com/rust-lang/crates.io-index"
822 checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
823
824 [[package]]
825 name = "winapi"
826 version = "0.3.9"
827 source = "registry+https://github.com/rust-lang/crates.io-index"
828 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
829 dependencies = [
830  "winapi-i686-pc-windows-gnu",
831  "winapi-x86_64-pc-windows-gnu",
832 ]
833
834 [[package]]
835 name = "winapi-i686-pc-windows-gnu"
836 version = "0.4.0"
837 source = "registry+https://github.com/rust-lang/crates.io-index"
838 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
839
840 [[package]]
841 name = "winapi-x86_64-pc-windows-gnu"
842 version = "0.4.0"
843 source = "registry+https://github.com/rust-lang/crates.io-index"
844 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"