sample no clone
[ldk-sample] / Cargo.lock
1 # This file is automatically @generated by Cargo.
2 # It is not intended for manual editing.
3 [[package]]
4 name = "autocfg"
5 version = "1.0.1"
6 source = "registry+https://github.com/rust-lang/crates.io-index"
7 checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
8
9 [[package]]
10 name = "base-x"
11 version = "0.2.8"
12 source = "registry+https://github.com/rust-lang/crates.io-index"
13 checksum = "a4521f3e3d031370679b3b140beb36dfe4801b09ac77e30c61941f97df3ef28b"
14
15 [[package]]
16 name = "base64"
17 version = "0.13.0"
18 source = "registry+https://github.com/rust-lang/crates.io-index"
19 checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
20
21 [[package]]
22 name = "bech32"
23 version = "0.8.1"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
25 checksum = "cf9ff0bbfd639f15c74af777d81383cf53efb7c93613f6cab67c6c11e05bbf8b"
26
27 [[package]]
28 name = "bitcoin"
29 version = "0.27.0"
30 source = "registry+https://github.com/rust-lang/crates.io-index"
31 checksum = "8a427b27dae305157520d86673f2393b3eb08d880609abfcffc6e3c3c820e764"
32 dependencies = [
33  "bech32",
34  "bitcoin_hashes",
35  "secp256k1",
36 ]
37
38 [[package]]
39 name = "bitcoin-bech32"
40 version = "0.12.1"
41 source = "registry+https://github.com/rust-lang/crates.io-index"
42 checksum = "754eb4c7f35c031f33c95cc257b4c4192a5c9d3de637d3ee78ab052a3f35da57"
43 dependencies = [
44  "bech32",
45 ]
46
47 [[package]]
48 name = "bitcoin_hashes"
49 version = "0.10.0"
50 source = "registry+https://github.com/rust-lang/crates.io-index"
51 checksum = "006cc91e1a1d99819bc5b8214be3555c1f0611b169f527a1fdc54ed1f2b745b0"
52
53 [[package]]
54 name = "bumpalo"
55 version = "3.7.0"
56 source = "registry+https://github.com/rust-lang/crates.io-index"
57 checksum = "9c59e7af012c713f529e7a3ee57ce9b31ddd858d4b512923602f74608b009631"
58
59 [[package]]
60 name = "bytes"
61 version = "1.0.1"
62 source = "registry+https://github.com/rust-lang/crates.io-index"
63 checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
64
65 [[package]]
66 name = "cc"
67 version = "1.0.69"
68 source = "registry+https://github.com/rust-lang/crates.io-index"
69 checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
70
71 [[package]]
72 name = "cfg-if"
73 version = "1.0.0"
74 source = "registry+https://github.com/rust-lang/crates.io-index"
75 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
76
77 [[package]]
78 name = "chunked_transfer"
79 version = "1.4.0"
80 source = "registry+https://github.com/rust-lang/crates.io-index"
81 checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
82
83 [[package]]
84 name = "const_fn"
85 version = "0.4.8"
86 source = "registry+https://github.com/rust-lang/crates.io-index"
87 checksum = "f92cfa0fd5690b3cf8c1ef2cabbd9b7ef22fa53cf5e1f92b05103f6d5d1cf6e7"
88
89 [[package]]
90 name = "discard"
91 version = "1.0.4"
92 source = "registry+https://github.com/rust-lang/crates.io-index"
93 checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
94
95 [[package]]
96 name = "fuchsia-cprng"
97 version = "0.1.1"
98 source = "registry+https://github.com/rust-lang/crates.io-index"
99 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
100
101 [[package]]
102 name = "futures"
103 version = "0.3.16"
104 source = "registry+https://github.com/rust-lang/crates.io-index"
105 checksum = "1adc00f486adfc9ce99f77d717836f0c5aa84965eb0b4f051f4e83f7cab53f8b"
106 dependencies = [
107  "futures-channel",
108  "futures-core",
109  "futures-executor",
110  "futures-io",
111  "futures-sink",
112  "futures-task",
113  "futures-util",
114 ]
115
116 [[package]]
117 name = "futures-channel"
118 version = "0.3.16"
119 source = "registry+https://github.com/rust-lang/crates.io-index"
120 checksum = "74ed2411805f6e4e3d9bc904c95d5d423b89b3b25dc0250aa74729de20629ff9"
121 dependencies = [
122  "futures-core",
123  "futures-sink",
124 ]
125
126 [[package]]
127 name = "futures-core"
128 version = "0.3.16"
129 source = "registry+https://github.com/rust-lang/crates.io-index"
130 checksum = "af51b1b4a7fdff033703db39de8802c673eb91855f2e0d47dcf3bf2c0ef01f99"
131
132 [[package]]
133 name = "futures-executor"
134 version = "0.3.16"
135 source = "registry+https://github.com/rust-lang/crates.io-index"
136 checksum = "4d0d535a57b87e1ae31437b892713aee90cd2d7b0ee48727cd11fc72ef54761c"
137 dependencies = [
138  "futures-core",
139  "futures-task",
140  "futures-util",
141 ]
142
143 [[package]]
144 name = "futures-io"
145 version = "0.3.16"
146 source = "registry+https://github.com/rust-lang/crates.io-index"
147 checksum = "0b0e06c393068f3a6ef246c75cdca793d6a46347e75286933e5e75fd2fd11582"
148
149 [[package]]
150 name = "futures-macro"
151 version = "0.3.16"
152 source = "registry+https://github.com/rust-lang/crates.io-index"
153 checksum = "c54913bae956fb8df7f4dc6fc90362aa72e69148e3f39041fbe8742d21e0ac57"
154 dependencies = [
155  "autocfg",
156  "proc-macro-hack",
157  "proc-macro2",
158  "quote",
159  "syn",
160 ]
161
162 [[package]]
163 name = "futures-sink"
164 version = "0.3.16"
165 source = "registry+https://github.com/rust-lang/crates.io-index"
166 checksum = "c0f30aaa67363d119812743aa5f33c201a7a66329f97d1a887022971feea4b53"
167
168 [[package]]
169 name = "futures-task"
170 version = "0.3.16"
171 source = "registry+https://github.com/rust-lang/crates.io-index"
172 checksum = "bbe54a98670017f3be909561f6ad13e810d9a51f3f061b902062ca3da80799f2"
173
174 [[package]]
175 name = "futures-util"
176 version = "0.3.16"
177 source = "registry+https://github.com/rust-lang/crates.io-index"
178 checksum = "67eb846bfd58e44a8481a00049e82c43e0ccb5d61f8dc071057cb19249dd4d78"
179 dependencies = [
180  "autocfg",
181  "futures-channel",
182  "futures-core",
183  "futures-io",
184  "futures-macro",
185  "futures-sink",
186  "futures-task",
187  "memchr",
188  "pin-project-lite",
189  "pin-utils",
190  "proc-macro-hack",
191  "proc-macro-nested",
192  "slab",
193 ]
194
195 [[package]]
196 name = "hermit-abi"
197 version = "0.1.19"
198 source = "registry+https://github.com/rust-lang/crates.io-index"
199 checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
200 dependencies = [
201  "libc",
202 ]
203
204 [[package]]
205 name = "hex"
206 version = "0.3.2"
207 source = "registry+https://github.com/rust-lang/crates.io-index"
208 checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
209
210 [[package]]
211 name = "itoa"
212 version = "0.4.7"
213 source = "registry+https://github.com/rust-lang/crates.io-index"
214 checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
215
216 [[package]]
217 name = "lazy_static"
218 version = "1.4.0"
219 source = "registry+https://github.com/rust-lang/crates.io-index"
220 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
221
222 [[package]]
223 name = "ldk-tutorial-node"
224 version = "0.1.0"
225 dependencies = [
226  "base64",
227  "bech32",
228  "bitcoin",
229  "bitcoin-bech32",
230  "futures",
231  "hex",
232  "lightning",
233  "lightning-background-processor",
234  "lightning-block-sync",
235  "lightning-invoice",
236  "lightning-net-tokio",
237  "lightning-persister",
238  "rand",
239  "serde_json",
240  "time",
241  "tokio",
242 ]
243
244 [[package]]
245 name = "libc"
246 version = "0.2.99"
247 source = "registry+https://github.com/rust-lang/crates.io-index"
248 checksum = "a7f823d141fe0a24df1e23b4af4e3c7ba9e5966ec514ea068c93024aa7deb765"
249
250 [[package]]
251 name = "lightning"
252 version = "0.0.99"
253 source = "git+https://github.com/jkczyz/rust-lightning.git?branch=2021-07-network-update-handler#de7cb1d4fe22cc46eb0a59ebefb15017c43ba711"
254 dependencies = [
255  "bitcoin",
256  "secp256k1",
257 ]
258
259 [[package]]
260 name = "lightning-background-processor"
261 version = "0.0.99"
262 source = "git+https://github.com/jkczyz/rust-lightning.git?branch=2021-07-network-update-handler#de7cb1d4fe22cc46eb0a59ebefb15017c43ba711"
263 dependencies = [
264  "bitcoin",
265  "lightning",
266  "lightning-persister",
267 ]
268
269 [[package]]
270 name = "lightning-block-sync"
271 version = "0.0.99"
272 source = "git+https://github.com/jkczyz/rust-lightning.git?branch=2021-07-network-update-handler#de7cb1d4fe22cc46eb0a59ebefb15017c43ba711"
273 dependencies = [
274  "bitcoin",
275  "chunked_transfer",
276  "futures",
277  "lightning",
278  "serde",
279  "serde_json",
280 ]
281
282 [[package]]
283 name = "lightning-invoice"
284 version = "0.7.0"
285 source = "git+https://github.com/jkczyz/rust-lightning.git?branch=2021-07-network-update-handler#de7cb1d4fe22cc46eb0a59ebefb15017c43ba711"
286 dependencies = [
287  "bech32",
288  "bitcoin_hashes",
289  "lightning",
290  "num-traits",
291  "secp256k1",
292 ]
293
294 [[package]]
295 name = "lightning-net-tokio"
296 version = "0.0.99"
297 source = "git+https://github.com/jkczyz/rust-lightning.git?branch=2021-07-network-update-handler#de7cb1d4fe22cc46eb0a59ebefb15017c43ba711"
298 dependencies = [
299  "bitcoin",
300  "lightning",
301  "tokio",
302 ]
303
304 [[package]]
305 name = "lightning-persister"
306 version = "0.0.99"
307 source = "git+https://github.com/jkczyz/rust-lightning.git?branch=2021-07-network-update-handler#de7cb1d4fe22cc46eb0a59ebefb15017c43ba711"
308 dependencies = [
309  "bitcoin",
310  "libc",
311  "lightning",
312  "winapi",
313 ]
314
315 [[package]]
316 name = "log"
317 version = "0.4.14"
318 source = "registry+https://github.com/rust-lang/crates.io-index"
319 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
320 dependencies = [
321  "cfg-if",
322 ]
323
324 [[package]]
325 name = "memchr"
326 version = "2.4.0"
327 source = "registry+https://github.com/rust-lang/crates.io-index"
328 checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc"
329
330 [[package]]
331 name = "mio"
332 version = "0.7.13"
333 source = "registry+https://github.com/rust-lang/crates.io-index"
334 checksum = "8c2bdb6314ec10835cd3293dd268473a835c02b7b352e788be788b3c6ca6bb16"
335 dependencies = [
336  "libc",
337  "log",
338  "miow",
339  "ntapi",
340  "winapi",
341 ]
342
343 [[package]]
344 name = "miow"
345 version = "0.3.7"
346 source = "registry+https://github.com/rust-lang/crates.io-index"
347 checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
348 dependencies = [
349  "winapi",
350 ]
351
352 [[package]]
353 name = "ntapi"
354 version = "0.3.6"
355 source = "registry+https://github.com/rust-lang/crates.io-index"
356 checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
357 dependencies = [
358  "winapi",
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 = "rustc_version"
461 version = "0.2.3"
462 source = "registry+https://github.com/rust-lang/crates.io-index"
463 checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
464 dependencies = [
465  "semver",
466 ]
467
468 [[package]]
469 name = "ryu"
470 version = "1.0.5"
471 source = "registry+https://github.com/rust-lang/crates.io-index"
472 checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
473
474 [[package]]
475 name = "secp256k1"
476 version = "0.20.3"
477 source = "registry+https://github.com/rust-lang/crates.io-index"
478 checksum = "97d03ceae636d0fed5bae6a7f4f664354c5f4fcedf6eef053fef17e49f837d0a"
479 dependencies = [
480  "secp256k1-sys",
481 ]
482
483 [[package]]
484 name = "secp256k1-sys"
485 version = "0.4.1"
486 source = "registry+https://github.com/rust-lang/crates.io-index"
487 checksum = "827cb7cce42533829c792fc51b82fbf18b125b45a702ef2c8be77fce65463a7b"
488 dependencies = [
489  "cc",
490 ]
491
492 [[package]]
493 name = "semver"
494 version = "0.9.0"
495 source = "registry+https://github.com/rust-lang/crates.io-index"
496 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
497 dependencies = [
498  "semver-parser",
499 ]
500
501 [[package]]
502 name = "semver-parser"
503 version = "0.7.0"
504 source = "registry+https://github.com/rust-lang/crates.io-index"
505 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
506
507 [[package]]
508 name = "serde"
509 version = "1.0.127"
510 source = "registry+https://github.com/rust-lang/crates.io-index"
511 checksum = "f03b9878abf6d14e6779d3f24f07b2cfa90352cfec4acc5aab8f1ac7f146fae8"
512 dependencies = [
513  "serde_derive",
514 ]
515
516 [[package]]
517 name = "serde_derive"
518 version = "1.0.127"
519 source = "registry+https://github.com/rust-lang/crates.io-index"
520 checksum = "a024926d3432516606328597e0f224a51355a493b49fdd67e9209187cbe55ecc"
521 dependencies = [
522  "proc-macro2",
523  "quote",
524  "syn",
525 ]
526
527 [[package]]
528 name = "serde_json"
529 version = "1.0.66"
530 source = "registry+https://github.com/rust-lang/crates.io-index"
531 checksum = "336b10da19a12ad094b59d870ebde26a45402e5b470add4b5fd03c5048a32127"
532 dependencies = [
533  "itoa",
534  "ryu",
535  "serde",
536 ]
537
538 [[package]]
539 name = "sha1"
540 version = "0.6.0"
541 source = "registry+https://github.com/rust-lang/crates.io-index"
542 checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
543
544 [[package]]
545 name = "slab"
546 version = "0.4.4"
547 source = "registry+https://github.com/rust-lang/crates.io-index"
548 checksum = "c307a32c1c5c437f38c7fd45d753050587732ba8628319fbdf12a7e289ccc590"
549
550 [[package]]
551 name = "standback"
552 version = "0.2.17"
553 source = "registry+https://github.com/rust-lang/crates.io-index"
554 checksum = "e113fb6f3de07a243d434a56ec6f186dfd51cb08448239fe7bcae73f87ff28ff"
555 dependencies = [
556  "version_check",
557 ]
558
559 [[package]]
560 name = "stdweb"
561 version = "0.4.20"
562 source = "registry+https://github.com/rust-lang/crates.io-index"
563 checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
564 dependencies = [
565  "discard",
566  "rustc_version",
567  "stdweb-derive",
568  "stdweb-internal-macros",
569  "stdweb-internal-runtime",
570  "wasm-bindgen",
571 ]
572
573 [[package]]
574 name = "stdweb-derive"
575 version = "0.5.3"
576 source = "registry+https://github.com/rust-lang/crates.io-index"
577 checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
578 dependencies = [
579  "proc-macro2",
580  "quote",
581  "serde",
582  "serde_derive",
583  "syn",
584 ]
585
586 [[package]]
587 name = "stdweb-internal-macros"
588 version = "0.2.9"
589 source = "registry+https://github.com/rust-lang/crates.io-index"
590 checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
591 dependencies = [
592  "base-x",
593  "proc-macro2",
594  "quote",
595  "serde",
596  "serde_derive",
597  "serde_json",
598  "sha1",
599  "syn",
600 ]
601
602 [[package]]
603 name = "stdweb-internal-runtime"
604 version = "0.1.5"
605 source = "registry+https://github.com/rust-lang/crates.io-index"
606 checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
607
608 [[package]]
609 name = "syn"
610 version = "1.0.74"
611 source = "registry+https://github.com/rust-lang/crates.io-index"
612 checksum = "1873d832550d4588c3dbc20f01361ab00bfe741048f71e3fecf145a7cc18b29c"
613 dependencies = [
614  "proc-macro2",
615  "quote",
616  "unicode-xid",
617 ]
618
619 [[package]]
620 name = "time"
621 version = "0.2.27"
622 source = "registry+https://github.com/rust-lang/crates.io-index"
623 checksum = "4752a97f8eebd6854ff91f1c1824cd6160626ac4bd44287f7f4ea2035a02a242"
624 dependencies = [
625  "const_fn",
626  "libc",
627  "standback",
628  "stdweb",
629  "time-macros",
630  "version_check",
631  "winapi",
632 ]
633
634 [[package]]
635 name = "time-macros"
636 version = "0.1.1"
637 source = "registry+https://github.com/rust-lang/crates.io-index"
638 checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
639 dependencies = [
640  "proc-macro-hack",
641  "time-macros-impl",
642 ]
643
644 [[package]]
645 name = "time-macros-impl"
646 version = "0.1.2"
647 source = "registry+https://github.com/rust-lang/crates.io-index"
648 checksum = "fd3c141a1b43194f3f56a1411225df8646c55781d5f26db825b3d98507eb482f"
649 dependencies = [
650  "proc-macro-hack",
651  "proc-macro2",
652  "quote",
653  "standback",
654  "syn",
655 ]
656
657 [[package]]
658 name = "tokio"
659 version = "1.10.0"
660 source = "registry+https://github.com/rust-lang/crates.io-index"
661 checksum = "01cf844b23c6131f624accf65ce0e4e9956a8bb329400ea5bcc26ae3a5c20b0b"
662 dependencies = [
663  "autocfg",
664  "bytes",
665  "libc",
666  "memchr",
667  "mio",
668  "num_cpus",
669  "pin-project-lite",
670  "tokio-macros",
671  "winapi",
672 ]
673
674 [[package]]
675 name = "tokio-macros"
676 version = "1.3.0"
677 source = "registry+https://github.com/rust-lang/crates.io-index"
678 checksum = "54473be61f4ebe4efd09cec9bd5d16fa51d70ea0192213d754d2d500457db110"
679 dependencies = [
680  "proc-macro2",
681  "quote",
682  "syn",
683 ]
684
685 [[package]]
686 name = "unicode-xid"
687 version = "0.2.2"
688 source = "registry+https://github.com/rust-lang/crates.io-index"
689 checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
690
691 [[package]]
692 name = "version_check"
693 version = "0.9.3"
694 source = "registry+https://github.com/rust-lang/crates.io-index"
695 checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
696
697 [[package]]
698 name = "wasm-bindgen"
699 version = "0.2.75"
700 source = "registry+https://github.com/rust-lang/crates.io-index"
701 checksum = "b608ecc8f4198fe8680e2ed18eccab5f0cd4caaf3d83516fa5fb2e927fda2586"
702 dependencies = [
703  "cfg-if",
704  "wasm-bindgen-macro",
705 ]
706
707 [[package]]
708 name = "wasm-bindgen-backend"
709 version = "0.2.75"
710 source = "registry+https://github.com/rust-lang/crates.io-index"
711 checksum = "580aa3a91a63d23aac5b6b267e2d13cb4f363e31dce6c352fca4752ae12e479f"
712 dependencies = [
713  "bumpalo",
714  "lazy_static",
715  "log",
716  "proc-macro2",
717  "quote",
718  "syn",
719  "wasm-bindgen-shared",
720 ]
721
722 [[package]]
723 name = "wasm-bindgen-macro"
724 version = "0.2.75"
725 source = "registry+https://github.com/rust-lang/crates.io-index"
726 checksum = "171ebf0ed9e1458810dfcb31f2e766ad6b3a89dbda42d8901f2b268277e5f09c"
727 dependencies = [
728  "quote",
729  "wasm-bindgen-macro-support",
730 ]
731
732 [[package]]
733 name = "wasm-bindgen-macro-support"
734 version = "0.2.75"
735 source = "registry+https://github.com/rust-lang/crates.io-index"
736 checksum = "6c2657dd393f03aa2a659c25c6ae18a13a4048cebd220e147933ea837efc589f"
737 dependencies = [
738  "proc-macro2",
739  "quote",
740  "syn",
741  "wasm-bindgen-backend",
742  "wasm-bindgen-shared",
743 ]
744
745 [[package]]
746 name = "wasm-bindgen-shared"
747 version = "0.2.75"
748 source = "registry+https://github.com/rust-lang/crates.io-index"
749 checksum = "2e0c4a743a309662d45f4ede961d7afa4ba4131a59a639f29b0069c3798bbcc2"
750
751 [[package]]
752 name = "winapi"
753 version = "0.3.9"
754 source = "registry+https://github.com/rust-lang/crates.io-index"
755 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
756 dependencies = [
757  "winapi-i686-pc-windows-gnu",
758  "winapi-x86_64-pc-windows-gnu",
759 ]
760
761 [[package]]
762 name = "winapi-i686-pc-windows-gnu"
763 version = "0.4.0"
764 source = "registry+https://github.com/rust-lang/crates.io-index"
765 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
766
767 [[package]]
768 name = "winapi-x86_64-pc-windows-gnu"
769 version = "0.4.0"
770 source = "registry+https://github.com/rust-lang/crates.io-index"
771 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"