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