Make everything unreadable so rustfmt is happy
[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.4.1"
24 source = "registry+https://github.com/rust-lang/crates.io-index"
25 checksum = "4408a9bf5c378a42ca9039e4ef3e3d8df3443f76d2ebe249fd720a2c5e17d2da"
26
27 [[package]]
28 name = "bech32"
29 version = "0.7.2"
30 source = "registry+https://github.com/rust-lang/crates.io-index"
31 checksum = "cdcf67bb7ba7797a081cd19009948ab533af7c355d5caf1d08c777582d351e9c"
32
33 [[package]]
34 name = "bitcoin"
35 version = "0.26.0"
36 source = "registry+https://github.com/rust-lang/crates.io-index"
37 checksum = "1ec5f88a446d66e7474a3b8fa2e348320b574463fb78d799d90ba68f79f48e0e"
38 dependencies = [
39  "bech32 0.7.2",
40  "bitcoin_hashes",
41  "secp256k1",
42 ]
43
44 [[package]]
45 name = "bitcoin-bech32"
46 version = "0.7.0"
47 source = "registry+https://github.com/rust-lang/crates.io-index"
48 checksum = "b5791779c83cf6bde070a92c22505f2faa06487fc8f372e4d485c41a71351105"
49 dependencies = [
50  "bech32 0.4.1",
51 ]
52
53 [[package]]
54 name = "bitcoin_hashes"
55 version = "0.9.4"
56 source = "registry+https://github.com/rust-lang/crates.io-index"
57 checksum = "0aaf87b776808e26ae93289bc7d025092b6d909c193f0cdee0b3a86e7bd3c776"
58
59 [[package]]
60 name = "bumpalo"
61 version = "3.6.0"
62 source = "registry+https://github.com/rust-lang/crates.io-index"
63 checksum = "099e596ef14349721d9016f6b80dd3419ea1bf289ab9b44df8e4dfd3a005d5d9"
64
65 [[package]]
66 name = "bytes"
67 version = "1.0.1"
68 source = "registry+https://github.com/rust-lang/crates.io-index"
69 checksum = "b700ce4376041dcd0a327fd0097c41095743c4c8af8887265942faf1100bd040"
70
71 [[package]]
72 name = "cc"
73 version = "1.0.66"
74 source = "registry+https://github.com/rust-lang/crates.io-index"
75 checksum = "4c0496836a84f8d0495758516b8621a622beb77c0fed418570e50764093ced48"
76
77 [[package]]
78 name = "cfg-if"
79 version = "1.0.0"
80 source = "registry+https://github.com/rust-lang/crates.io-index"
81 checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
82
83 [[package]]
84 name = "chunked_transfer"
85 version = "1.4.0"
86 source = "registry+https://github.com/rust-lang/crates.io-index"
87 checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
88
89 [[package]]
90 name = "const_fn"
91 version = "0.4.5"
92 source = "registry+https://github.com/rust-lang/crates.io-index"
93 checksum = "28b9d6de7f49e22cf97ad17fc4036ece69300032f45f78f30b4a4482cdc3f4a6"
94
95 [[package]]
96 name = "discard"
97 version = "1.0.4"
98 source = "registry+https://github.com/rust-lang/crates.io-index"
99 checksum = "212d0f5754cb6769937f4501cc0e67f4f4483c8d2c3e1e922ee9edbe4ab4c7c0"
100
101 [[package]]
102 name = "fuchsia-cprng"
103 version = "0.1.1"
104 source = "registry+https://github.com/rust-lang/crates.io-index"
105 checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba"
106
107 [[package]]
108 name = "futures"
109 version = "0.3.12"
110 source = "registry+https://github.com/rust-lang/crates.io-index"
111 checksum = "da9052a1a50244d8d5aa9bf55cbc2fb6f357c86cc52e46c62ed390a7180cf150"
112 dependencies = [
113  "futures-channel",
114  "futures-core",
115  "futures-executor",
116  "futures-io",
117  "futures-sink",
118  "futures-task",
119  "futures-util",
120 ]
121
122 [[package]]
123 name = "futures-channel"
124 version = "0.3.12"
125 source = "registry+https://github.com/rust-lang/crates.io-index"
126 checksum = "f2d31b7ec7efab6eefc7c57233bb10b847986139d88cc2f5a02a1ae6871a1846"
127 dependencies = [
128  "futures-core",
129  "futures-sink",
130 ]
131
132 [[package]]
133 name = "futures-core"
134 version = "0.3.12"
135 source = "registry+https://github.com/rust-lang/crates.io-index"
136 checksum = "79e5145dde8da7d1b3892dad07a9c98fc04bc39892b1ecc9692cf53e2b780a65"
137
138 [[package]]
139 name = "futures-executor"
140 version = "0.3.12"
141 source = "registry+https://github.com/rust-lang/crates.io-index"
142 checksum = "e9e59fdc009a4b3096bf94f740a0f2424c082521f20a9b08c5c07c48d90fd9b9"
143 dependencies = [
144  "futures-core",
145  "futures-task",
146  "futures-util",
147 ]
148
149 [[package]]
150 name = "futures-io"
151 version = "0.3.12"
152 source = "registry+https://github.com/rust-lang/crates.io-index"
153 checksum = "28be053525281ad8259d47e4de5de657b25e7bac113458555bb4b70bc6870500"
154
155 [[package]]
156 name = "futures-macro"
157 version = "0.3.12"
158 source = "registry+https://github.com/rust-lang/crates.io-index"
159 checksum = "c287d25add322d9f9abdcdc5927ca398917996600182178774032e9f8258fedd"
160 dependencies = [
161  "proc-macro-hack",
162  "proc-macro2",
163  "quote",
164  "syn",
165 ]
166
167 [[package]]
168 name = "futures-sink"
169 version = "0.3.12"
170 source = "registry+https://github.com/rust-lang/crates.io-index"
171 checksum = "caf5c69029bda2e743fddd0582d1083951d65cc9539aebf8812f36c3491342d6"
172
173 [[package]]
174 name = "futures-task"
175 version = "0.3.12"
176 source = "registry+https://github.com/rust-lang/crates.io-index"
177 checksum = "13de07eb8ea81ae445aca7b69f5f7bf15d7bf4912d8ca37d6645c77ae8a58d86"
178 dependencies = [
179  "once_cell",
180 ]
181
182 [[package]]
183 name = "futures-util"
184 version = "0.3.12"
185 source = "registry+https://github.com/rust-lang/crates.io-index"
186 checksum = "632a8cd0f2a4b3fdea1657f08bde063848c3bd00f9bbf6e256b8be78802e624b"
187 dependencies = [
188  "futures-channel",
189  "futures-core",
190  "futures-io",
191  "futures-macro",
192  "futures-sink",
193  "futures-task",
194  "memchr",
195  "pin-project-lite",
196  "pin-utils",
197  "proc-macro-hack",
198  "proc-macro-nested",
199  "slab",
200 ]
201
202 [[package]]
203 name = "hermit-abi"
204 version = "0.1.18"
205 source = "registry+https://github.com/rust-lang/crates.io-index"
206 checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c"
207 dependencies = [
208  "libc",
209 ]
210
211 [[package]]
212 name = "hex"
213 version = "0.3.2"
214 source = "registry+https://github.com/rust-lang/crates.io-index"
215 checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
216
217 [[package]]
218 name = "itoa"
219 version = "0.4.7"
220 source = "registry+https://github.com/rust-lang/crates.io-index"
221 checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736"
222
223 [[package]]
224 name = "lazy_static"
225 version = "1.4.0"
226 source = "registry+https://github.com/rust-lang/crates.io-index"
227 checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
228
229 [[package]]
230 name = "ldk-tutorial-node"
231 version = "0.1.0"
232 dependencies = [
233  "base64",
234  "bech32 0.7.2",
235  "bitcoin",
236  "bitcoin-bech32",
237  "futures",
238  "hex",
239  "lightning",
240  "lightning-background-processor",
241  "lightning-block-sync",
242  "lightning-invoice",
243  "lightning-net-tokio",
244  "lightning-persister",
245  "rand",
246  "serde_json",
247  "time",
248  "tokio",
249 ]
250
251 [[package]]
252 name = "libc"
253 version = "0.2.86"
254 source = "registry+https://github.com/rust-lang/crates.io-index"
255 checksum = "b7282d924be3275cec7f6756ff4121987bc6481325397dde6ba3e7802b1a8b1c"
256
257 [[package]]
258 name = "lightning"
259 version = "0.0.14"
260 source = "registry+https://github.com/rust-lang/crates.io-index"
261 checksum = "6f99cce0a9a62b73144dad86cf9d722379db3de049fec5df8f5437a6c92542ab"
262 dependencies = [
263  "bitcoin",
264 ]
265
266 [[package]]
267 name = "lightning-background-processor"
268 version = "0.0.14"
269 source = "registry+https://github.com/rust-lang/crates.io-index"
270 checksum = "7cd5d18b3f9c4f7ab6c5554411f2e6618f98e4b7dcb6426be2266267dfa8d499"
271 dependencies = [
272  "bitcoin",
273  "lightning",
274  "lightning-persister",
275 ]
276
277 [[package]]
278 name = "lightning-block-sync"
279 version = "0.0.14"
280 source = "registry+https://github.com/rust-lang/crates.io-index"
281 checksum = "40a773c6711f798c04e14bff4a83220c7d47d9f76cecf6cc5754693b2600f7d1"
282 dependencies = [
283  "bitcoin",
284  "chunked_transfer",
285  "futures",
286  "lightning",
287  "serde",
288  "serde_json",
289 ]
290
291 [[package]]
292 name = "lightning-invoice"
293 version = "0.5.0"
294 source = "registry+https://github.com/rust-lang/crates.io-index"
295 checksum = "c0738f41c16a3501726c4ada573cad59835e4ee66c1e7d08a4ae4d6b7baa9268"
296 dependencies = [
297  "bech32 0.7.2",
298  "bitcoin_hashes",
299  "lightning",
300  "num-traits",
301  "secp256k1",
302 ]
303
304 [[package]]
305 name = "lightning-net-tokio"
306 version = "0.0.14"
307 source = "registry+https://github.com/rust-lang/crates.io-index"
308 checksum = "c593aacfff258a317513a409088b92bc1dc8fb28a4a8f2826b827553435e8d9b"
309 dependencies = [
310  "bitcoin",
311  "lightning",
312  "tokio",
313 ]
314
315 [[package]]
316 name = "lightning-persister"
317 version = "0.0.14"
318 source = "registry+https://github.com/rust-lang/crates.io-index"
319 checksum = "83dc14f2dfed0a6eaddae9e2b54998e327f63fc0bcb64bdb3133a7f20c1536e0"
320 dependencies = [
321  "bitcoin",
322  "libc",
323  "lightning",
324  "winapi",
325 ]
326
327 [[package]]
328 name = "log"
329 version = "0.4.14"
330 source = "registry+https://github.com/rust-lang/crates.io-index"
331 checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
332 dependencies = [
333  "cfg-if",
334 ]
335
336 [[package]]
337 name = "memchr"
338 version = "2.3.4"
339 source = "registry+https://github.com/rust-lang/crates.io-index"
340 checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
341
342 [[package]]
343 name = "mio"
344 version = "0.7.7"
345 source = "registry+https://github.com/rust-lang/crates.io-index"
346 checksum = "e50ae3f04d169fcc9bde0b547d1c205219b7157e07ded9c5aff03e0637cb3ed7"
347 dependencies = [
348  "libc",
349  "log",
350  "miow",
351  "ntapi",
352  "winapi",
353 ]
354
355 [[package]]
356 name = "miow"
357 version = "0.3.6"
358 source = "registry+https://github.com/rust-lang/crates.io-index"
359 checksum = "5a33c1b55807fbed163481b5ba66db4b2fa6cde694a5027be10fb724206c5897"
360 dependencies = [
361  "socket2",
362  "winapi",
363 ]
364
365 [[package]]
366 name = "ntapi"
367 version = "0.3.6"
368 source = "registry+https://github.com/rust-lang/crates.io-index"
369 checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
370 dependencies = [
371  "winapi",
372 ]
373
374 [[package]]
375 name = "num-traits"
376 version = "0.2.14"
377 source = "registry+https://github.com/rust-lang/crates.io-index"
378 checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
379 dependencies = [
380  "autocfg",
381 ]
382
383 [[package]]
384 name = "num_cpus"
385 version = "1.13.0"
386 source = "registry+https://github.com/rust-lang/crates.io-index"
387 checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
388 dependencies = [
389  "hermit-abi",
390  "libc",
391 ]
392
393 [[package]]
394 name = "once_cell"
395 version = "1.5.2"
396 source = "registry+https://github.com/rust-lang/crates.io-index"
397 checksum = "13bd41f508810a131401606d54ac32a467c97172d74ba7662562ebba5ad07fa0"
398
399 [[package]]
400 name = "pin-project-lite"
401 version = "0.2.4"
402 source = "registry+https://github.com/rust-lang/crates.io-index"
403 checksum = "439697af366c49a6d0a010c56a0d97685bc140ce0d377b13a2ea2aa42d64a827"
404
405 [[package]]
406 name = "pin-utils"
407 version = "0.1.0"
408 source = "registry+https://github.com/rust-lang/crates.io-index"
409 checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
410
411 [[package]]
412 name = "proc-macro-hack"
413 version = "0.5.19"
414 source = "registry+https://github.com/rust-lang/crates.io-index"
415 checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
416
417 [[package]]
418 name = "proc-macro-nested"
419 version = "0.1.7"
420 source = "registry+https://github.com/rust-lang/crates.io-index"
421 checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086"
422
423 [[package]]
424 name = "proc-macro2"
425 version = "1.0.24"
426 source = "registry+https://github.com/rust-lang/crates.io-index"
427 checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
428 dependencies = [
429  "unicode-xid",
430 ]
431
432 [[package]]
433 name = "quote"
434 version = "1.0.8"
435 source = "registry+https://github.com/rust-lang/crates.io-index"
436 checksum = "991431c3519a3f36861882da93630ce66b52918dcf1b8e2fd66b397fc96f28df"
437 dependencies = [
438  "proc-macro2",
439 ]
440
441 [[package]]
442 name = "rand"
443 version = "0.4.6"
444 source = "registry+https://github.com/rust-lang/crates.io-index"
445 checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293"
446 dependencies = [
447  "fuchsia-cprng",
448  "libc",
449  "rand_core 0.3.1",
450  "rdrand",
451  "winapi",
452 ]
453
454 [[package]]
455 name = "rand_core"
456 version = "0.3.1"
457 source = "registry+https://github.com/rust-lang/crates.io-index"
458 checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
459 dependencies = [
460  "rand_core 0.4.2",
461 ]
462
463 [[package]]
464 name = "rand_core"
465 version = "0.4.2"
466 source = "registry+https://github.com/rust-lang/crates.io-index"
467 checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
468
469 [[package]]
470 name = "rdrand"
471 version = "0.4.0"
472 source = "registry+https://github.com/rust-lang/crates.io-index"
473 checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2"
474 dependencies = [
475  "rand_core 0.3.1",
476 ]
477
478 [[package]]
479 name = "rustc_version"
480 version = "0.2.3"
481 source = "registry+https://github.com/rust-lang/crates.io-index"
482 checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
483 dependencies = [
484  "semver",
485 ]
486
487 [[package]]
488 name = "ryu"
489 version = "1.0.5"
490 source = "registry+https://github.com/rust-lang/crates.io-index"
491 checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e"
492
493 [[package]]
494 name = "secp256k1"
495 version = "0.20.1"
496 source = "registry+https://github.com/rust-lang/crates.io-index"
497 checksum = "733b114f058f260c0af7591434eef4272ae1a8ec2751766d3cb89c6df8d5e450"
498 dependencies = [
499  "secp256k1-sys",
500 ]
501
502 [[package]]
503 name = "secp256k1-sys"
504 version = "0.4.0"
505 source = "registry+https://github.com/rust-lang/crates.io-index"
506 checksum = "67e4b6455ee49f5901c8985b88f98fb0a0e1d90a6661f5a03f4888bd987dad29"
507 dependencies = [
508  "cc",
509 ]
510
511 [[package]]
512 name = "semver"
513 version = "0.9.0"
514 source = "registry+https://github.com/rust-lang/crates.io-index"
515 checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
516 dependencies = [
517  "semver-parser",
518 ]
519
520 [[package]]
521 name = "semver-parser"
522 version = "0.7.0"
523 source = "registry+https://github.com/rust-lang/crates.io-index"
524 checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
525
526 [[package]]
527 name = "serde"
528 version = "1.0.123"
529 source = "registry+https://github.com/rust-lang/crates.io-index"
530 checksum = "92d5161132722baa40d802cc70b15262b98258453e85e5d1d365c757c73869ae"
531 dependencies = [
532  "serde_derive",
533 ]
534
535 [[package]]
536 name = "serde_derive"
537 version = "1.0.123"
538 source = "registry+https://github.com/rust-lang/crates.io-index"
539 checksum = "9391c295d64fc0abb2c556bad848f33cb8296276b1ad2677d1ae1ace4f258f31"
540 dependencies = [
541  "proc-macro2",
542  "quote",
543  "syn",
544 ]
545
546 [[package]]
547 name = "serde_json"
548 version = "1.0.62"
549 source = "registry+https://github.com/rust-lang/crates.io-index"
550 checksum = "ea1c6153794552ea7cf7cf63b1231a25de00ec90db326ba6264440fa08e31486"
551 dependencies = [
552  "itoa",
553  "ryu",
554  "serde",
555 ]
556
557 [[package]]
558 name = "sha1"
559 version = "0.6.0"
560 source = "registry+https://github.com/rust-lang/crates.io-index"
561 checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d"
562
563 [[package]]
564 name = "slab"
565 version = "0.4.2"
566 source = "registry+https://github.com/rust-lang/crates.io-index"
567 checksum = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8"
568
569 [[package]]
570 name = "socket2"
571 version = "0.3.19"
572 source = "registry+https://github.com/rust-lang/crates.io-index"
573 checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
574 dependencies = [
575  "cfg-if",
576  "libc",
577  "winapi",
578 ]
579
580 [[package]]
581 name = "standback"
582 version = "0.2.15"
583 source = "registry+https://github.com/rust-lang/crates.io-index"
584 checksum = "a2beb4d1860a61f571530b3f855a1b538d0200f7871c63331ecd6f17b1f014f8"
585 dependencies = [
586  "version_check",
587 ]
588
589 [[package]]
590 name = "stdweb"
591 version = "0.4.20"
592 source = "registry+https://github.com/rust-lang/crates.io-index"
593 checksum = "d022496b16281348b52d0e30ae99e01a73d737b2f45d38fed4edf79f9325a1d5"
594 dependencies = [
595  "discard",
596  "rustc_version",
597  "stdweb-derive",
598  "stdweb-internal-macros",
599  "stdweb-internal-runtime",
600  "wasm-bindgen",
601 ]
602
603 [[package]]
604 name = "stdweb-derive"
605 version = "0.5.3"
606 source = "registry+https://github.com/rust-lang/crates.io-index"
607 checksum = "c87a60a40fccc84bef0652345bbbbbe20a605bf5d0ce81719fc476f5c03b50ef"
608 dependencies = [
609  "proc-macro2",
610  "quote",
611  "serde",
612  "serde_derive",
613  "syn",
614 ]
615
616 [[package]]
617 name = "stdweb-internal-macros"
618 version = "0.2.9"
619 source = "registry+https://github.com/rust-lang/crates.io-index"
620 checksum = "58fa5ff6ad0d98d1ffa8cb115892b6e69d67799f6763e162a1c9db421dc22e11"
621 dependencies = [
622  "base-x",
623  "proc-macro2",
624  "quote",
625  "serde",
626  "serde_derive",
627  "serde_json",
628  "sha1",
629  "syn",
630 ]
631
632 [[package]]
633 name = "stdweb-internal-runtime"
634 version = "0.1.5"
635 source = "registry+https://github.com/rust-lang/crates.io-index"
636 checksum = "213701ba3370744dcd1a12960caa4843b3d68b4d1c0a5d575e0d65b2ee9d16c0"
637
638 [[package]]
639 name = "syn"
640 version = "1.0.60"
641 source = "registry+https://github.com/rust-lang/crates.io-index"
642 checksum = "c700597eca8a5a762beb35753ef6b94df201c81cca676604f547495a0d7f0081"
643 dependencies = [
644  "proc-macro2",
645  "quote",
646  "unicode-xid",
647 ]
648
649 [[package]]
650 name = "time"
651 version = "0.2.25"
652 source = "registry+https://github.com/rust-lang/crates.io-index"
653 checksum = "1195b046942c221454c2539395f85413b33383a067449d78aab2b7b052a142f7"
654 dependencies = [
655  "const_fn",
656  "libc",
657  "standback",
658  "stdweb",
659  "time-macros",
660  "version_check",
661  "winapi",
662 ]
663
664 [[package]]
665 name = "time-macros"
666 version = "0.1.1"
667 source = "registry+https://github.com/rust-lang/crates.io-index"
668 checksum = "957e9c6e26f12cb6d0dd7fc776bb67a706312e7299aed74c8dd5b17ebb27e2f1"
669 dependencies = [
670  "proc-macro-hack",
671  "time-macros-impl",
672 ]
673
674 [[package]]
675 name = "time-macros-impl"
676 version = "0.1.1"
677 source = "registry+https://github.com/rust-lang/crates.io-index"
678 checksum = "e5c3be1edfad6027c69f5491cf4cb310d1a71ecd6af742788c6ff8bced86b8fa"
679 dependencies = [
680  "proc-macro-hack",
681  "proc-macro2",
682  "quote",
683  "standback",
684  "syn",
685 ]
686
687 [[package]]
688 name = "tokio"
689 version = "1.2.0"
690 source = "registry+https://github.com/rust-lang/crates.io-index"
691 checksum = "e8190d04c665ea9e6b6a0dc45523ade572c088d2e6566244c1122671dbf4ae3a"
692 dependencies = [
693  "autocfg",
694  "bytes",
695  "libc",
696  "memchr",
697  "mio",
698  "num_cpus",
699  "pin-project-lite",
700  "tokio-macros",
701 ]
702
703 [[package]]
704 name = "tokio-macros"
705 version = "1.1.0"
706 source = "registry+https://github.com/rust-lang/crates.io-index"
707 checksum = "caf7b11a536f46a809a8a9f0bb4237020f70ecbf115b842360afb127ea2fda57"
708 dependencies = [
709  "proc-macro2",
710  "quote",
711  "syn",
712 ]
713
714 [[package]]
715 name = "unicode-xid"
716 version = "0.2.1"
717 source = "registry+https://github.com/rust-lang/crates.io-index"
718 checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
719
720 [[package]]
721 name = "version_check"
722 version = "0.9.2"
723 source = "registry+https://github.com/rust-lang/crates.io-index"
724 checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
725
726 [[package]]
727 name = "wasm-bindgen"
728 version = "0.2.70"
729 source = "registry+https://github.com/rust-lang/crates.io-index"
730 checksum = "55c0f7123de74f0dab9b7d00fd614e7b19349cd1e2f5252bbe9b1754b59433be"
731 dependencies = [
732  "cfg-if",
733  "wasm-bindgen-macro",
734 ]
735
736 [[package]]
737 name = "wasm-bindgen-backend"
738 version = "0.2.70"
739 source = "registry+https://github.com/rust-lang/crates.io-index"
740 checksum = "7bc45447f0d4573f3d65720f636bbcc3dd6ce920ed704670118650bcd47764c7"
741 dependencies = [
742  "bumpalo",
743  "lazy_static",
744  "log",
745  "proc-macro2",
746  "quote",
747  "syn",
748  "wasm-bindgen-shared",
749 ]
750
751 [[package]]
752 name = "wasm-bindgen-macro"
753 version = "0.2.70"
754 source = "registry+https://github.com/rust-lang/crates.io-index"
755 checksum = "3b8853882eef39593ad4174dd26fc9865a64e84026d223f63bb2c42affcbba2c"
756 dependencies = [
757  "quote",
758  "wasm-bindgen-macro-support",
759 ]
760
761 [[package]]
762 name = "wasm-bindgen-macro-support"
763 version = "0.2.70"
764 source = "registry+https://github.com/rust-lang/crates.io-index"
765 checksum = "4133b5e7f2a531fa413b3a1695e925038a05a71cf67e87dafa295cb645a01385"
766 dependencies = [
767  "proc-macro2",
768  "quote",
769  "syn",
770  "wasm-bindgen-backend",
771  "wasm-bindgen-shared",
772 ]
773
774 [[package]]
775 name = "wasm-bindgen-shared"
776 version = "0.2.70"
777 source = "registry+https://github.com/rust-lang/crates.io-index"
778 checksum = "dd4945e4943ae02d15c13962b38a5b1e81eadd4b71214eee75af64a4d6a4fd64"
779
780 [[package]]
781 name = "winapi"
782 version = "0.3.9"
783 source = "registry+https://github.com/rust-lang/crates.io-index"
784 checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
785 dependencies = [
786  "winapi-i686-pc-windows-gnu",
787  "winapi-x86_64-pc-windows-gnu",
788 ]
789
790 [[package]]
791 name = "winapi-i686-pc-windows-gnu"
792 version = "0.4.0"
793 source = "registry+https://github.com/rust-lang/crates.io-index"
794 checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
795
796 [[package]]
797 name = "winapi-x86_64-pc-windows-gnu"
798 version = "0.4.0"
799 source = "registry+https://github.com/rust-lang/crates.io-index"
800 checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"