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