Fix signmessage offset calculation
[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.0.1"
8 source = "registry+https://github.com/rust-lang/crates.io-index"
9 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
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.27.0"
26 source = "registry+https://github.com/rust-lang/crates.io-index"
27 checksum = "8a427b27dae305157520d86673f2393b3eb08d880609abfcffc6e3c3c820e764"
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.0.1"
52 source = "registry+https://github.com/rust-lang/crates.io-index"
53 checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
54
55 [[package]]
56 name = "cc"
57 version = "1.0.69"
58 source = "registry+https://github.com/rust-lang/crates.io-index"
59 checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
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.16"
95 source = "registry+https://github.com/rust-lang/crates.io-index"
96 checksum = "1adc00f486adfc9ce99f77d717836f0c5aa84965eb0b4f051f4e83f7cab53f8b"
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.16"
110 source = "registry+https://github.com/rust-lang/crates.io-index"
111 checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9"
112 dependencies = [
113  "futures-core",
114  "futures-sink",
115 ]
116
117 [[package]]
118 name = "futures-core"
119 version = "0.3.16"
120 source = "registry+https://github.com/rust-lang/crates.io-index"
121 checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99"
122
123 [[package]]
124 name = "futures-executor"
125 version = "0.3.16"
126 source = "registry+https://github.com/rust-lang/crates.io-index"
127 checksum = "4d0d535a57b87e1ae31437b892713aee90cd2d7b0ee48727cd11fc72ef54761c"
128 dependencies = [
129  "futures-core",
130  "futures-task",
131  "futures-util",
132 ]
133
134 [[package]]
135 name = "futures-io"
136 version = "0.3.16"
137 source = "registry+https://github.com/rust-lang/crates.io-index"
138 checksum = "0b0e06c393068f3a6ef246c75cdca793d6a46347e75286933e5e75fd2fd11582"
139
140 [[package]]
141 name = "futures-macro"
142 version = "0.3.16"
143 source = "registry+https://github.com/rust-lang/crates.io-index"
144 checksum = "c54913bae956fb8df7f4dc6fc90362aa72e69148e3f39041fbe8742d21e0ac57"
145 dependencies = [
146  "autocfg",
147  "proc-macro-hack",
148  "proc-macro2",
149  "quote",
150  "syn",
151 ]
152
153 [[package]]
154 name = "futures-sink"
155 version = "0.3.16"
156 source = "registry+https://github.com/rust-lang/crates.io-index"
157 checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53"
158
159 [[package]]
160 name = "futures-task"
161 version = "0.3.16"
162 source = "registry+https://github.com/rust-lang/crates.io-index"
163 checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2"
164
165 [[package]]
166 name = "futures-util"
167 version = "0.3.16"
168 source = "registry+https://github.com/rust-lang/crates.io-index"
169 checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78"
170 dependencies = [
171  "autocfg",
172  "futures-channel",
173  "futures-core",
174  "futures-io",
175  "futures-macro",
176  "futures-sink",
177  "futures-task",
178  "memchr",
179  "pin-project-lite",
180  "pin-utils",
181  "proc-macro-hack",
182  "proc-macro-nested",
183  "slab",
184 ]
185
186 [[package]]
187 name = "hermit-abi"
188 version = "0.1.19"
189 source = "registry+https://github.com/rust-lang/crates.io-index"
190 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
191 dependencies = [
192  "libc",
193 ]
194
195 [[package]]
196 name = "hex"
197 version = "0.3.2"
198 source = "registry+https://github.com/rust-lang/crates.io-index"
199 checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
200
201 [[package]]
202 name = "itoa"
203 version = "0.4.7"
204 source = "registry+https://github.com/rust-lang/crates.io-index"
205 checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
206
207 [[package]]
208 name = "ldk-tutorial-node"
209 version = "0.1.0"
210 dependencies = [
211  "base64",
212  "bech32",
213  "bitcoin",
214  "bitcoin-bech32",
215  "chrono",
216  "futures",
217  "hex",
218  "lightning",
219  "lightning-background-processor",
220  "lightning-block-sync",
221  "lightning-invoice",
222  "lightning-net-tokio",
223  "lightning-persister",
224  "rand",
225  "serde_json",
226  "tokio",
227 ]
228
229 [[package]]
230 name = "libc"
231 version = "0.2.99"
232 source = "registry+https://github.com/rust-lang/crates.io-index"
233 checksum = "a7f823d141fe0a24df1e23b4af4e3c7ba9e5966ec514ea068c93024aa7deb765"
234
235 [[package]]
236 name = "lightning"
237 version = "0.0.103"
238 source = "registry+https://github.com/rust-lang/crates.io-index"
239 checksum = "9f4cc6a6bc500226fe2716b8557fe66b57fd8d86348e4478b57de13a4dd6b8f0"
240 dependencies = [
241  "bitcoin",
242  "secp256k1",
243 ]
244
245 [[package]]
246 name = "lightning-background-processor"
247 version = "0.0.103"
248 source = "registry+https://github.com/rust-lang/crates.io-index"
249 checksum = "2c0cded269444c0b1d19d92b79a60b1d9188f377c2e7ddd6d0c8860b80f3ea4a"
250 dependencies = [
251  "bitcoin",
252  "lightning",
253  "lightning-persister",
254 ]
255
256 [[package]]
257 name = "lightning-block-sync"
258 version = "0.0.103"
259 source = "registry+https://github.com/rust-lang/crates.io-index"
260 checksum = "0af7169b0f238dd5c845ee1d95201fbb69acb2b93d9aea5a75b6d593abcd674f"
261 dependencies = [
262  "bitcoin",
263  "chunked_transfer",
264  "lightning",
265  "serde",
266  "serde_json",
267 ]
268
269 [[package]]
270 name = "lightning-invoice"
271 version = "0.11.0"
272 source = "registry+https://github.com/rust-lang/crates.io-index"
273 checksum = "8f7cc25650f634e074b0b64a793ac535f7ad2ae418dd7f0ac88972832d2f22bc"
274 dependencies = [
275  "bech32",
276  "bitcoin_hashes",
277  "lightning",
278  "num-traits",
279  "secp256k1",
280 ]
281
282 [[package]]
283 name = "lightning-net-tokio"
284 version = "0.0.103"
285 source = "registry+https://github.com/rust-lang/crates.io-index"
286 checksum = "af4ba9c57851bfaa872a9fbea41065812d03da30bf24680e08c074b972cb3e8d"
287 dependencies = [
288  "bitcoin",
289  "lightning",
290  "tokio",
291 ]
292
293 [[package]]
294 name = "lightning-persister"
295 version = "0.0.103"
296 source = "registry+https://github.com/rust-lang/crates.io-index"
297 checksum = "5ea68c7b0a8b0bc01103d189206bd09c8501bd0fad721229d1e36743a80ed010"
298 dependencies = [
299  "bitcoin",
300  "libc",
301  "lightning",
302  "winapi",
303 ]
304
305 [[package]]
306 name = "log"
307 version = "0.4.14"
308 source = "registry+https://github.com/rust-lang/crates.io-index"
309 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
310 dependencies = [
311  "cfg-if",
312 ]
313
314 [[package]]
315 name = "memchr"
316 version = "2.4.0"
317 source = "registry+https://github.com/rust-lang/crates.io-index"
318 checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
319
320 [[package]]
321 name = "mio"
322 version = "0.7.13"
323 source = "registry+https://github.com/rust-lang/crates.io-index"
324 checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
325 dependencies = [
326  "libc",
327  "log",
328  "miow",
329  "ntapi",
330  "winapi",
331 ]
332
333 [[package]]
334 name = "miow"
335 version = "0.3.7"
336 source = "registry+https://github.com/rust-lang/crates.io-index"
337 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
338 dependencies = [
339  "winapi",
340 ]
341
342 [[package]]
343 name = "ntapi"
344 version = "0.3.6"
345 source = "registry+https://github.com/rust-lang/crates.io-index"
346 checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
347 dependencies = [
348  "winapi",
349 ]
350
351 [[package]]
352 name = "num-integer"
353 version = "0.1.44"
354 source = "registry+https://github.com/rust-lang/crates.io-index"
355 checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
356 dependencies = [
357  "autocfg",
358  "num-traits",
359 ]
360
361 [[package]]
362 name = "num-traits"
363 version = "0.2.14"
364 source = "registry+https://github.com/rust-lang/crates.io-index"
365 checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
366 dependencies = [
367  "autocfg",
368 ]
369
370 [[package]]
371 name = "num_cpus"
372 version = "1.13.0"
373 source = "registry+https://github.com/rust-lang/crates.io-index"
374 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
375 dependencies = [
376  "hermit-abi",
377  "libc",
378 ]
379
380 [[package]]
381 name = "pin-project-lite"
382 version = "0.2.7"
383 source = "registry+https://github.com/rust-lang/crates.io-index"
384 checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
385
386 [[package]]
387 name = "pin-utils"
388 version = "0.1.0"
389 source = "registry+https://github.com/rust-lang/crates.io-index"
390 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
391
392 [[package]]
393 name = "proc-macro-hack"
394 version = "0.5.19"
395 source = "registry+https://github.com/rust-lang/crates.io-index"
396 checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
397
398 [[package]]
399 name = "proc-macro-nested"
400 version = "0.1.7"
401 source = "registry+https://github.com/rust-lang/crates.io-index"
402 checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
403
404 [[package]]
405 name = "proc-macro2"
406 version = "1.0.28"
407 source = "registry+https://github.com/rust-lang/crates.io-index"
408 checksum = "5c7ed8b8c7b886ea3ed7dde405212185f423ab44682667c8c6dd14aa1d9f6612"
409 dependencies = [
410  "unicode-xid",
411 ]
412
413 [[package]]
414 name = "quote"
415 version = "1.0.9"
416 source = "registry+https://github.com/rust-lang/crates.io-index"
417 checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7"
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.5"
462 source = "registry+https://github.com/rust-lang/crates.io-index"
463 checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
464
465 [[package]]
466 name = "secp256k1"
467 version = "0.20.3"
468 source = "registry+https://github.com/rust-lang/crates.io-index"
469 checksum = "97d03ceae636d0fed5bae6a7f4f664354c5f4fcedf6eef053fef17e49f837d0a"
470 dependencies = [
471  "secp256k1-sys",
472 ]
473
474 [[package]]
475 name = "secp256k1-sys"
476 version = "0.4.1"
477 source = "registry+https://github.com/rust-lang/crates.io-index"
478 checksum = "827cb7cce42533829c792fc51b82fbf18b125b45a702ef2c8be77fce65463a7b"
479 dependencies = [
480  "cc",
481 ]
482
483 [[package]]
484 name = "serde"
485 version = "1.0.127"
486 source = "registry+https://github.com/rust-lang/crates.io-index"
487 checksum = "f03b9878abf6d14e6779d3f24f07b2cfa90352cfec4acc5aab8f1ac7f146fae8"
488 dependencies = [
489  "serde_derive",
490 ]
491
492 [[package]]
493 name = "serde_derive"
494 version = "1.0.127"
495 source = "registry+https://github.com/rust-lang/crates.io-index"
496 checksum = "a024926d3432516606328597e0f224a51355a493b49fdd67e9209187cbe55ecc"
497 dependencies = [
498  "proc-macro2",
499  "quote",
500  "syn",
501 ]
502
503 [[package]]
504 name = "serde_json"
505 version = "1.0.66"
506 source = "registry+https://github.com/rust-lang/crates.io-index"
507 checksum = "336b10da19a12ad094b59d870ebde26a45402e5b470add4b5fd03c5048a32127"
508 dependencies = [
509  "itoa",
510  "ryu",
511  "serde",
512 ]
513
514 [[package]]
515 name = "slab"
516 version = "0.4.4"
517 source = "registry+https://github.com/rust-lang/crates.io-index"
518 checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
519
520 [[package]]
521 name = "syn"
522 version = "1.0.74"
523 source = "registry+https://github.com/rust-lang/crates.io-index"
524 checksum = "1873d832550d4588c3dbc20f01361ab00bfe741048f71e3fecf145a7cc18b29c"
525 dependencies = [
526  "proc-macro2",
527  "quote",
528  "unicode-xid",
529 ]
530
531 [[package]]
532 name = "time"
533 version = "0.1.44"
534 source = "registry+https://github.com/rust-lang/crates.io-index"
535 checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
536 dependencies = [
537  "libc",
538  "wasi",
539  "winapi",
540 ]
541
542 [[package]]
543 name = "tokio"
544 version = "1.10.0"
545 source = "registry+https://github.com/rust-lang/crates.io-index"
546 checksum = "01cf844b23c6131f624accf65ce0e4e9956a8bb329400ea5bcc26ae3a5c20b0b"
547 dependencies = [
548  "autocfg",
549  "bytes",
550  "libc",
551  "memchr",
552  "mio",
553  "num_cpus",
554  "pin-project-lite",
555  "tokio-macros",
556  "winapi",
557 ]
558
559 [[package]]
560 name = "tokio-macros"
561 version = "1.3.0"
562 source = "registry+https://github.com/rust-lang/crates.io-index"
563 checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
564 dependencies = [
565  "proc-macro2",
566  "quote",
567  "syn",
568 ]
569
570 [[package]]
571 name = "unicode-xid"
572 version = "0.2.2"
573 source = "registry+https://github.com/rust-lang/crates.io-index"
574 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
575
576 [[package]]
577 name = "wasi"
578 version = "0.10.0+wasi-snapshot-preview1"
579 source = "registry+https://github.com/rust-lang/crates.io-index"
580 checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
581
582 [[package]]
583 name = "winapi"
584 version = "0.3.9"
585 source = "registry+https://github.com/rust-lang/crates.io-index"
586 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
587 dependencies = [
588  "winapi-i686-pc-windows-gnu",
589  "winapi-x86_64-pc-windows-gnu",
590 ]
591
592 [[package]]
593 name = "winapi-i686-pc-windows-gnu"
594 version = "0.4.0"
595 source = "registry+https://github.com/rust-lang/crates.io-index"
596 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
597
598 [[package]]
599 name = "winapi-x86_64-pc-windows-gnu"
600 version = "0.4.0"
601 source = "registry+https://github.com/rust-lang/crates.io-index"
602 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"