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