Update Cargo.lock with tokio 1.14.1, matching our MSRV
[ldk-sample] / 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 = "autocfg"
7 version = "1.1.0"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
10
11 [[package]]
12 name = "base64"
13 version = "0.13.0"
14 source = "registry+https://github.com/rust-lang/crates.io-index"
15 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
16
17 [[package]]
18 name = "bech32"
19 version = "0.8.1"
20 source = "registry+https://github.com/rust-lang/crates.io-index"
21 checksum = "cf9ff0bbfd639f15c74af777d81383cf53efb7c93613f6cab67c6c11e05bbf8b"
22
23 [[package]]
24 name = "bitcoin"
25 version = "0.28.1"
26 source = "registry+https://github.com/rust-lang/crates.io-index"
27 checksum = "05bba324e6baf655b882df672453dbbc527bc938cadd27750ae510aaccc3a66a"
28 dependencies = [
29  "bech32",
30  "bitcoin_hashes",
31  "secp256k1",
32 ]
33
34 [[package]]
35 name = "bitcoin-bech32"
36 version = "0.12.1"
37 source = "registry+https://github.com/rust-lang/crates.io-index"
38 checksum = "754eb4c7f35c031f33c95cc257b4c4192a5c9d3de637d3ee78ab052a3f35da57"
39 dependencies = [
40  "bech32",
41 ]
42
43 [[package]]
44 name = "bitcoin_hashes"
45 version = "0.10.0"
46 source = "registry+https://github.com/rust-lang/crates.io-index"
47 checksum = "006cc91e1a1d99819bc5b8214be3555c1f0611b169f527a1fdc54ed1f2b745b0"
48
49 [[package]]
50 name = "bytes"
51 version = "1.1.0"
52 source = "registry+https://github.com/rust-lang/crates.io-index"
53 checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
54
55 [[package]]
56 name = "cc"
57 version = "1.0.73"
58 source = "registry+https://github.com/rust-lang/crates.io-index"
59 checksum = "2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11"
60
61 [[package]]
62 name = "cfg-if"
63 version = "1.0.0"
64 source = "registry+https://github.com/rust-lang/crates.io-index"
65 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
66
67 [[package]]
68 name = "chrono"
69 version = "0.4.19"
70 source = "registry+https://github.com/rust-lang/crates.io-index"
71 checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
72 dependencies = [
73  "libc",
74  "num-integer",
75  "num-traits",
76  "time",
77  "winapi",
78 ]
79
80 [[package]]
81 name = "chunked_transfer"
82 version = "1.4.0"
83 source = "registry+https://github.com/rust-lang/crates.io-index"
84 checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
85
86 [[package]]
87 name = "fuchsia-cprng"
88 version = "0.1.1"
89 source = "registry+https://github.com/rust-lang/crates.io-index"
90 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
91
92 [[package]]
93 name = "futures"
94 version = "0.3.21"
95 source = "registry+https://github.com/rust-lang/crates.io-index"
96 checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
97 dependencies = [
98  "futures-channel",
99  "futures-core",
100  "futures-executor",
101  "futures-io",
102  "futures-sink",
103  "futures-task",
104  "futures-util",
105 ]
106
107 [[package]]
108 name = "futures-channel"
109 version = "0.3.21"
110 source = "registry+https://github.com/rust-lang/crates.io-index"
111 checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
112 dependencies = [
113  "futures-core",
114  "futures-sink",
115 ]
116
117 [[package]]
118 name = "futures-core"
119 version = "0.3.21"
120 source = "registry+https://github.com/rust-lang/crates.io-index"
121 checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
122
123 [[package]]
124 name = "futures-executor"
125 version = "0.3.21"
126 source = "registry+https://github.com/rust-lang/crates.io-index"
127 checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
128 dependencies = [
129  "futures-core",
130  "futures-task",
131  "futures-util",
132 ]
133
134 [[package]]
135 name = "futures-io"
136 version = "0.3.21"
137 source = "registry+https://github.com/rust-lang/crates.io-index"
138 checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
139
140 [[package]]
141 name = "futures-macro"
142 version = "0.3.21"
143 source = "registry+https://github.com/rust-lang/crates.io-index"
144 checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
145 dependencies = [
146  "proc-macro2",
147  "quote",
148  "syn",
149 ]
150
151 [[package]]
152 name = "futures-sink"
153 version = "0.3.21"
154 source = "registry+https://github.com/rust-lang/crates.io-index"
155 checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
156
157 [[package]]
158 name = "futures-task"
159 version = "0.3.21"
160 source = "registry+https://github.com/rust-lang/crates.io-index"
161 checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
162
163 [[package]]
164 name = "futures-util"
165 version = "0.3.21"
166 source = "registry+https://github.com/rust-lang/crates.io-index"
167 checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
168 dependencies = [
169  "futures-channel",
170  "futures-core",
171  "futures-io",
172  "futures-macro",
173  "futures-sink",
174  "futures-task",
175  "memchr",
176  "pin-project-lite",
177  "pin-utils",
178  "slab",
179 ]
180
181 [[package]]
182 name = "hermit-abi"
183 version = "0.1.19"
184 source = "registry+https://github.com/rust-lang/crates.io-index"
185 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
186 dependencies = [
187  "libc",
188 ]
189
190 [[package]]
191 name = "hex"
192 version = "0.3.2"
193 source = "registry+https://github.com/rust-lang/crates.io-index"
194 checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
195
196 [[package]]
197 name = "itoa"
198 version = "1.0.2"
199 source = "registry+https://github.com/rust-lang/crates.io-index"
200 checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
201
202 [[package]]
203 name = "ldk-tutorial-node"
204 version = "0.1.0"
205 dependencies = [
206  "base64",
207  "bech32",
208  "bitcoin",
209  "bitcoin-bech32",
210  "chrono",
211  "futures",
212  "hex",
213  "lightning",
214  "lightning-background-processor",
215  "lightning-block-sync",
216  "lightning-invoice",
217  "lightning-net-tokio",
218  "lightning-persister",
219  "lightning-rapid-gossip-sync",
220  "rand",
221  "serde_json",
222  "tokio",
223 ]
224
225 [[package]]
226 name = "libc"
227 version = "0.2.126"
228 source = "registry+https://github.com/rust-lang/crates.io-index"
229 checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
230
231 [[package]]
232 name = "lightning"
233 version = "0.0.109"
234 source = "registry+https://github.com/rust-lang/crates.io-index"
235 checksum = "740348ba79a57039390b13236e6a3d7fe5f5c1627702178b9c19cd397e45d07e"
236 dependencies = [
237  "bitcoin",
238 ]
239
240 [[package]]
241 name = "lightning-background-processor"
242 version = "0.0.109"
243 source = "registry+https://github.com/rust-lang/crates.io-index"
244 checksum = "bb6fed7a24f94ff2755bed7443ef637bc5dfb917738374a9669719ccc75aff18"
245 dependencies = [
246  "bitcoin",
247  "lightning",
248  "lightning-rapid-gossip-sync",
249 ]
250
251 [[package]]
252 name = "lightning-block-sync"
253 version = "0.0.109"
254 source = "registry+https://github.com/rust-lang/crates.io-index"
255 checksum = "526e92067f3f034733619fbc38a0082590e0804a38ae9390bf217681a7ac00ac"
256 dependencies = [
257  "bitcoin",
258  "chunked_transfer",
259  "futures",
260  "lightning",
261  "serde",
262  "serde_json",
263 ]
264
265 [[package]]
266 name = "lightning-invoice"
267 version = "0.17.0"
268 source = "registry+https://github.com/rust-lang/crates.io-index"
269 checksum = "c87c47064c865a3e2f204837279a9a48c5f18ea4db8a56e813921793dc1f3cc5"
270 dependencies = [
271  "bech32",
272  "bitcoin_hashes",
273  "lightning",
274  "num-traits",
275  "secp256k1",
276 ]
277
278 [[package]]
279 name = "lightning-net-tokio"
280 version = "0.0.109"
281 source = "registry+https://github.com/rust-lang/crates.io-index"
282 checksum = "1726bdb0d82e53861e89d0d34c0a7a575bf64f874dcf276805fccb847c883728"
283 dependencies = [
284  "bitcoin",
285  "lightning",
286  "tokio",
287 ]
288
289 [[package]]
290 name = "lightning-persister"
291 version = "0.0.109"
292 source = "registry+https://github.com/rust-lang/crates.io-index"
293 checksum = "3dc72fee1a517de6dce3bf2a5817314e0b2f8c80bf7bb0bc52f7aaa654714292"
294 dependencies = [
295  "bitcoin",
296  "libc",
297  "lightning",
298  "winapi",
299 ]
300
301 [[package]]
302 name = "lightning-rapid-gossip-sync"
303 version = "0.0.109"
304 source = "registry+https://github.com/rust-lang/crates.io-index"
305 checksum = "4bf4769cdd6024aef9d6c016afb70ea76ae572e6313216aac72f6a5b4f9f8ecb"
306 dependencies = [
307  "bitcoin",
308  "lightning",
309 ]
310
311 [[package]]
312 name = "log"
313 version = "0.4.17"
314 source = "registry+https://github.com/rust-lang/crates.io-index"
315 checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
316 dependencies = [
317  "cfg-if",
318 ]
319
320 [[package]]
321 name = "memchr"
322 version = "2.5.0"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
325
326 [[package]]
327 name = "mio"
328 version = "0.7.14"
329 source = "registry+https://github.com/rust-lang/crates.io-index"
330 checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
331 dependencies = [
332  "libc",
333  "log",
334  "miow",
335  "ntapi",
336  "winapi",
337 ]
338
339 [[package]]
340 name = "miow"
341 version = "0.3.7"
342 source = "registry+https://github.com/rust-lang/crates.io-index"
343 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
344 dependencies = [
345  "winapi",
346 ]
347
348 [[package]]
349 name = "ntapi"
350 version = "0.3.7"
351 source = "registry+https://github.com/rust-lang/crates.io-index"
352 checksum = "c28774a7fd2fbb4f0babd8237ce554b73af68021b5f695a3cebd6c59bac0980f"
353 dependencies = [
354  "winapi",
355 ]
356
357 [[package]]
358 name = "num-integer"
359 version = "0.1.45"
360 source = "registry+https://github.com/rust-lang/crates.io-index"
361 checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
362 dependencies = [
363  "autocfg",
364  "num-traits",
365 ]
366
367 [[package]]
368 name = "num-traits"
369 version = "0.2.15"
370 source = "registry+https://github.com/rust-lang/crates.io-index"
371 checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
372 dependencies = [
373  "autocfg",
374 ]
375
376 [[package]]
377 name = "num_cpus"
378 version = "1.13.1"
379 source = "registry+https://github.com/rust-lang/crates.io-index"
380 checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
381 dependencies = [
382  "hermit-abi",
383  "libc",
384 ]
385
386 [[package]]
387 name = "pin-project-lite"
388 version = "0.2.9"
389 source = "registry+https://github.com/rust-lang/crates.io-index"
390 checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
391
392 [[package]]
393 name = "pin-utils"
394 version = "0.1.0"
395 source = "registry+https://github.com/rust-lang/crates.io-index"
396 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
397
398 [[package]]
399 name = "proc-macro2"
400 version = "1.0.40"
401 source = "registry+https://github.com/rust-lang/crates.io-index"
402 checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
403 dependencies = [
404  "unicode-ident",
405 ]
406
407 [[package]]
408 name = "quote"
409 version = "1.0.20"
410 source = "registry+https://github.com/rust-lang/crates.io-index"
411 checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
412 dependencies = [
413  "proc-macro2",
414 ]
415
416 [[package]]
417 name = "rand"
418 version = "0.4.6"
419 source = "registry+https://github.com/rust-lang/crates.io-index"
420 checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
421 dependencies = [
422  "fuchsia-cprng",
423  "libc",
424  "rand_core 0.3.1",
425  "rdrand",
426  "winapi",
427 ]
428
429 [[package]]
430 name = "rand_core"
431 version = "0.3.1"
432 source = "registry+https://github.com/rust-lang/crates.io-index"
433 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
434 dependencies = [
435  "rand_core 0.4.2",
436 ]
437
438 [[package]]
439 name = "rand_core"
440 version = "0.4.2"
441 source = "registry+https://github.com/rust-lang/crates.io-index"
442 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
443
444 [[package]]
445 name = "rdrand"
446 version = "0.4.0"
447 source = "registry+https://github.com/rust-lang/crates.io-index"
448 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
449 dependencies = [
450  "rand_core 0.3.1",
451 ]
452
453 [[package]]
454 name = "ryu"
455 version = "1.0.10"
456 source = "registry+https://github.com/rust-lang/crates.io-index"
457 checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
458
459 [[package]]
460 name = "secp256k1"
461 version = "0.22.1"
462 source = "registry+https://github.com/rust-lang/crates.io-index"
463 checksum = "26947345339603ae8395f68e2f3d85a6b0a8ddfe6315818e80b8504415099db0"
464 dependencies = [
465  "secp256k1-sys",
466 ]
467
468 [[package]]
469 name = "secp256k1-sys"
470 version = "0.5.2"
471 source = "registry+https://github.com/rust-lang/crates.io-index"
472 checksum = "152e20a0fd0519390fc43ab404663af8a0b794273d2a91d60ad4a39f13ffe110"
473 dependencies = [
474  "cc",
475 ]
476
477 [[package]]
478 name = "serde"
479 version = "1.0.138"
480 source = "registry+https://github.com/rust-lang/crates.io-index"
481 checksum = "1578c6245786b9d168c5447eeacfb96856573ca56c9d68fdcf394be134882a47"
482 dependencies = [
483  "serde_derive",
484 ]
485
486 [[package]]
487 name = "serde_derive"
488 version = "1.0.138"
489 source = "registry+https://github.com/rust-lang/crates.io-index"
490 checksum = "023e9b1467aef8a10fb88f25611870ada9800ef7e22afce356bb0d2387b6f27c"
491 dependencies = [
492  "proc-macro2",
493  "quote",
494  "syn",
495 ]
496
497 [[package]]
498 name = "serde_json"
499 version = "1.0.82"
500 source = "registry+https://github.com/rust-lang/crates.io-index"
501 checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
502 dependencies = [
503  "itoa",
504  "ryu",
505  "serde",
506 ]
507
508 [[package]]
509 name = "slab"
510 version = "0.4.6"
511 source = "registry+https://github.com/rust-lang/crates.io-index"
512 checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
513
514 [[package]]
515 name = "syn"
516 version = "1.0.98"
517 source = "registry+https://github.com/rust-lang/crates.io-index"
518 checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
519 dependencies = [
520  "proc-macro2",
521  "quote",
522  "unicode-ident",
523 ]
524
525 [[package]]
526 name = "time"
527 version = "0.1.44"
528 source = "registry+https://github.com/rust-lang/crates.io-index"
529 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
530 dependencies = [
531  "libc",
532  "wasi",
533  "winapi",
534 ]
535
536 [[package]]
537 name = "tokio"
538 version = "1.14.1"
539 source = "registry+https://github.com/rust-lang/crates.io-index"
540 checksum = "b9d0183f6f6001549ab68f8c7585093bb732beefbcf6d23a10b9b95c73a1dd49"
541 dependencies = [
542  "autocfg",
543  "bytes",
544  "libc",
545  "memchr",
546  "mio",
547  "num_cpus",
548  "pin-project-lite",
549  "tokio-macros",
550  "winapi",
551 ]
552
553 [[package]]
554 name = "tokio-macros"
555 version = "1.8.0"
556 source = "registry+https://github.com/rust-lang/crates.io-index"
557 checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
558 dependencies = [
559  "proc-macro2",
560  "quote",
561  "syn",
562 ]
563
564 [[package]]
565 name = "unicode-ident"
566 version = "1.0.1"
567 source = "registry+https://github.com/rust-lang/crates.io-index"
568 checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
569
570 [[package]]
571 name = "wasi"
572 version = "0.10.0+wasi-snapshot-preview1"
573 source = "registry+https://github.com/rust-lang/crates.io-index"
574 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
575
576 [[package]]
577 name = "winapi"
578 version = "0.3.9"
579 source = "registry+https://github.com/rust-lang/crates.io-index"
580 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
581 dependencies = [
582  "winapi-i686-pc-windows-gnu",
583  "winapi-x86_64-pc-windows-gnu",
584 ]
585
586 [[package]]
587 name = "winapi-i686-pc-windows-gnu"
588 version = "0.4.0"
589 source = "registry+https://github.com/rust-lang/crates.io-index"
590 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
591
592 [[package]]
593 name = "winapi-x86_64-pc-windows-gnu"
594 version = "0.4.0"
595 source = "registry+https://github.com/rust-lang/crates.io-index"
596 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"